{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "<div style=\"float:right\"><i>Peter Norvig<br>29 December 2015</i></div>\n",
    "\n",
    "# Refactoring a Crossword Game Program\n",
    "\n",
    "In my [CS 212 class](https://www.udacity.com/course/design-of-computer-programs--cs212) on Udacity, the [most complex lesson](https://www.udacity.com/course/viewer#!/c-cs212/l-48634860) involved a crossword game program (for games such as Scrabble&reg; and Words with Friends&reg;). The program was developed *incrementally*. First I asked \"what words can be made with a rack of seven letters?\", then I asked \"how can you place words onto a single row?\", and finally, I, with the help of the students, developed a program to find the highest scoring play anywhere on the board. This approach made for a good sequence of exercises, each building on the previous one.  But the code ended up being overly complicated&mdash;it accumlated [technical debt](https://en.wikipedia.org/wiki/Technical_debt)&mdash;because it kept around ideas from each iteration.\n",
    "\n",
    "In this notebook I will refactor the program to pay off the debt.\n",
    "\n",
    "# Vocabulary\n",
    "\n",
    "Our program uses these concepts:\n",
    "\n",
    "* **Dictionary**: A set of all legal words.\n",
    "* **Word**: a string of letters. Words in the dictionary are all uppercase.\n",
    "* **Tile**: a letter (or a blank) that can be played on the board to form words. \n",
    "* **Blank**: a tile with no letter on it; the player who places it on the board gets to choose which letter it will represent. \n",
    "* **Rack**: a collection of up to seven tiles that a player may use to make words.\n",
    "* **Board**: a grid of squares onto which players play tiles to make words. \n",
    "* **Square**: a location on the board; a square can hold one tile. (The variable `s` will stand for a square number, and `sq` for the contents of a square.)\n",
    "* **Bonus**: some squares give you bonus scores: double or triple letter or word scores.\n",
    "* **Play**: a play consists of placing some tiles on the board to form a continuous string of letters in one direction (across or down), such that only valid words are formed, and such that one of the letters is placed on an anchor square.\n",
    "* **Anchor square**: Every play must place a letter on an anchor square: either the center start square or a square that is adjacent to a tile previously played on the board. \n",
    "* **Direction:** Every play must be in either the `ACROSS` or `DOWN` direction. (The variable `dir`  stands for a direction.)\n",
    "* **Cross word**: a word formed in the other direction from a play. For example, a play forms a word in the across direction, and in doing so, places a letter that extends a word in the down direction. This new extended *cross word* must be in the dictionary.\n",
    "* **Score**: the points awarded for a play, consisting of the sum of the word scores for each word made (the main word and possibly any cross words), plus a bingo bonus if all seven letters are used. \n",
    "* **Word score**: Each word scores the sum of the letter scores for each tile (either placed by the player or already on the board but part of the word) times the word bonus score. The word bonus score starts at 1, and is multiplied by 2 for each double word square and 3 for each triple word square covered by a tile on this play.\n",
    "* **Letter score**: The letter score is the value on the letter tile (for example, 1 for `A` and 10 for `Q`) times the letter bonus score. The letter bonus is 2 when a tile is first placed on a double letter square (or the center star) and 3 when first placed on a triple letter square; it is 1 for a tile already on the board, or for a new tile played on a non-letter-bonus square. The letter score for a blank tile is always zero.\n",
    "* **Bingo**: a bonus gained by using all seven tiles in one play. In Words with Friends&reg; the bingo bonus is 35; in Scrabble&reg; it is 50.\n",
    "* **Game**: players take turns making plays until one player has no more tiles. After making a play, the player's\n",
    "rack is replenished with tiles until the player has 7 tiles or until the bag of tiles is empty.\n",
    "* **Prefix**: a string of zero or more letters that starts some word in the dictionary. Not a concept that has to do\n",
    "with the *rules* of the game; it will be important in our *algorithm* that finds valid plays.\n",
    "\n",
    "This notebook uses these imports:\n",
    "\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "from __future__  import division, print_function\n",
    "from collections import defaultdict, namedtuple\n",
    "from IPython.display import HTML, display\n",
    "import random"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "\n",
    "# Dictionary and Words\n",
    "\n",
    "We will represent the dictionary as a set of words. A word is an uppercase string of letters, like `'WORD'`. There are several standard dictionaries used by different communities of players; we will use the ENABLE dictionary&mdash;we can cache a local copy with this shell command:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "! [ -e enable1.txt ] || curl -O http://norvig.com/ngrams/enable1.txt"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Now we can define a word and load the dictionary:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "def Word(w) -> str: return w.strip().upper()\n",
    "\n",
    "DICTIONARY = {Word(w) for w in open('enable1.txt')}\n",
    "\n",
    "def is_word(word) -> bool: \n",
    "    \"Is this a legal word in the dictionary?\"\n",
    "    return word.upper() in DICTIONARY"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "172820"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "len(DICTIONARY)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "['DECIPHER',\n",
       " 'ROUGHLY',\n",
       " 'DULLSVILLES',\n",
       " 'INDEHISCENT',\n",
       " 'SAGEBRUSHES',\n",
       " 'COMES',\n",
       " 'WITCHERIES',\n",
       " 'HOMES',\n",
       " 'PECK',\n",
       " 'GEEZ']"
      ]
     },
     "execution_count": 5,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "list(DICTIONARY)[:10]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "'WORD' in DICTIONARY"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Tiles, Blanks, and Racks\n",
    "\n",
    "We'll represent a tile as a one-character string, like `'W'`.  We'll represent a rack as a string of tiles, usually of length 7, such as `'EELRTTS'`. (I also considered a `collections.Counter` to represent a rack, but felt that `str` was simpler, and with the rack size limited to 7, efficiency was not a major issue.)\n",
    "\n",
    "The blank tile causes some complications. We'll represent a blank in a player's rack as the underscore character, `'_'`.  But once the blank is played on the board, it must be used as if it was a specific letter. However, it doesn't score the points of the letter. I chose to use the lowercase version of the letter to represent this.  That way, we know what letter the blank is standing for, and we can distingush between scoring and non-scoring tiles.  For example, `'EELRTT_'` is a rack that contains a blank; and `'LETTERs'` is a word played on the board that uses the blank to stand for the letter `S`. \n",
    "\n",
    "We'll define `letters` to give all the distinct letters that can be made by a rack, and `remove` to remove letters from a rack (after they have been played)."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "BLANK    = '_'     # The blank tile (as it appears in the rack)\n",
    "cat      = ''.join # Function to concatenate strings\n",
    "\n",
    "def letters(rack) -> str:\n",
    "    \"All the distinct letters in a rack (including lowercase if there is a blank).\"\n",
    "    if BLANK in rack:\n",
    "        return cat(set(rack.replace(BLANK, ''))) + 'abcdefghijklmnopqrstuvwxyz'\n",
    "    else:\n",
    "        return cat(set(rack))\n",
    "    \n",
    "def remove(tiles, rack) -> str:\n",
    "    \"Return a copy of rack with the given tile(s) removed.\"\n",
    "    for tile in tiles:\n",
    "        if tile.islower(): tile = BLANK\n",
    "        rack = rack.replace(tile, '', 1)\n",
    "    return rack"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 8,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "is_word('LETTERs')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'TLRSE'"
      ]
     },
     "execution_count": 9,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "letters('LETTERS')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'TLREabcdefghijklmnopqrstuvwxyz'"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "letters('EELRTT_')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'LTER'"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "remove('SET', 'LETTERS')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'LE'"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "remove('TREaT', 'LETTER_') "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# The Board, Squares, Directions, and Bonus Squares\n",
    "\n",
    "In the [previous version](https://www.udacity.com/course/viewer#!/c-cs212/l-48634860) of this program, the board was a two-dimensional matrix, and a square on the board was denoted by a `(row, col)` pair of indexes. There's nothing wrong with that representation, but for this version we will choose a different representation that is simpler in most ways:\n",
    "\n",
    "* The board is represented as a one-dimensional list of squares.\n",
    "* The default board is 15&times;15 squares, but\n",
    "we will include a *border* around the outside, making the board  of size 17&times;17. \n",
    "* Squares are denoted by integer indexes, from 0 to 288.\n",
    "* To move in the `ACROSS` direction from one square to the next, increment the square index by 1.\n",
    "* To move in the `DOWN` direction from one square to the next, increment the square index by 17.\n",
    "* The border squares are filled with a symbol, `OFF`, indicating that they are off the board.\n",
    "The advantage of the border is that the code never has to check if it is at the edge of the board; it can always\n",
    "look at the neighboring square without fear of indexing off the end of the board.\n",
    "* Each square on the board is initially filled by a symbol indicating the bonus value of the square. When a tile is placed on a square,\n",
    "the tile replaces the bonus value.\n",
    "\n",
    "How will we implement this? We'll define `Board` as a subclass of `list` and give it two additional attributes: \n",
    "\n",
    "- `down`: the increment to move in the down direction; 17 for a standard board.\n",
    "- `directions`: the four increments to move to any neighboring square; `(1, 17, -1, -17)` in a standard board.\n",
    "\n",
    "Jupyter/Ipython notebooks have a special convention for displaying objects in HTML. We will adopt it as a method of `Board`:\n",
    "\n",
    "- `_repr_html_`: return a string of HTML that displays the board as a table."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "ACROSS = 1   # The 'across' direction; 'down' depends on the size of the board\n",
    "OFF    = '#' # A square that is off the board\n",
    "SL, DL, TL, STAR, DW, TW = EMPTY = '.:;*-=' # Single/double/triple letter; star, double/triple word bonuses\n",
    "\n",
    "Square    = int # Squares are implemented as integer indexes.\n",
    "Direction = int # Directions are implemented as integer increments\n",
    "\n",
    "class Board(list):\n",
    "    \"\"\"A Board is a (linear) list of squares, each a single character.\n",
    "    Note that board[s + down] is directly below board[s].\"\"\"\n",
    "\n",
    "    def __init__(self, squares):\n",
    "        list.__init__(self, squares)\n",
    "        down = int(len(squares)**0.5)\n",
    "        self.down = down\n",
    "        self.directions = (ACROSS, down, -ACROSS, -down)\n",
    "        \n",
    "    def _repr_html_(self) -> str: return board_html(self)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We'll define `WWF` as the standard board for Words with Friends&reg;."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "WWF = Board(\"\"\"\n",
    "# # # # # # # # # # # # # # # # #\n",
    "# . . . = . . ; . ; . . = . . . #\n",
    "# . . : . . - . . . - . . : . . #\n",
    "# . : . . : . . . . . : . . : . #\n",
    "# = . . ; . . . - . . . ; . . = #\n",
    "# . . : . . . : . : . . . : . . #\n",
    "# . - . . . ; . . . ; . . . - . #\n",
    "# ; . . . : . . . . . : . . . ; #\n",
    "# . . . - . . . * . . . - . . . #\n",
    "# ; . . . : . . . . . : . . . ; #\n",
    "# . - . . . ; . . . ; . . . - . #\n",
    "# . . : . . . : . : . . . : . . #\n",
    "# = . . ; . . . - . . . ; . . = #\n",
    "# . : . . : . . . . . : . . : . #\n",
    "# . . : . . - . . . - . . : . . #\n",
    "# . . . = . . ; . ; . . = . . . #\n",
    "# # # # # # # # # # # # # # # # #\n",
    "\"\"\".split())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "assert len(WWF) == 17 * 17"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Displaying the Board in HTML\n",
    "\n",
    "I want to diaplay the board in HTML, as a table with different background colors for the bonus squares; and gold-colored letter tiles. I also want to display the point values for each letter on the tiles; I'll use a `defaultdict` of `{letter: int}` named `POINTS` for that."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 60,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "def board_html(board) -> str:\n",
    "    \"An HTML representation of the board.\"\n",
    "    size = board.down - 2\n",
    "    squares = [square_html(sq) for sq in board if sq != OFF]\n",
    "    row = ('<tr>' + '{}' * size)\n",
    "    return ('<table>' +  row * size + '</table>').format(*squares)\n",
    "    \n",
    "board_colors = {\n",
    "     DL: ('lightblue',  66, 'DL'),\n",
    "     TL: ('lightgreen', 66, 'TL'),\n",
    "     DW: ('lightcoral', 66, 'DW'),\n",
    "     TW: ('orange',     66, 'TW'),\n",
    "     SL: ('whitesmoke', 66, ''),\n",
    "     STAR: ('violet',  100, '&#10029;')}\n",
    "\n",
    "def square_html(sq) -> str:\n",
    "    \"An HTML representation of a square.\"\n",
    "    color, size, text = board_colors.get(sq, ('gold', 120, sq))\n",
    "    if text.isupper(): \n",
    "        text = '<b>{}</b><sup style=\"font-size: 60%\">{}</sup>'.format(text, POINTS.get(text, ''))\n",
    "    style = \"background-color:{}; font-size:{}%; width:25px; height:25px; text-align:center; padding:0px\"\n",
    "    return ('<td style=\"' + style + '\">{}').format(color, size, text)\n",
    "\n",
    "POINTS = defaultdict(int, \n",
    "         A=1, B=3, C=3, D=2,  E=1, F=4, G=2, H=4, I=1, J=8, K=5, L=1, M=3, \n",
    "         N=1, O=1, P=3, Q=10, R=1, S=1, T=1, U=1, V=4, W=4, X=8, Y=4, Z=10)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 61,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '*',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 61,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "WWF"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Plays\n",
    "\n",
    "A `Play` describes the placement of tiles on the board. We will implement `Play` as a named tuple  of four components:\n",
    "- `start`: the index number of the square that holds the first letter in the word.\n",
    "- `dir`: the direction, with 1 indicating `ACROSS` and `board.down` (normally, 17) indicating `DOWN`.\n",
    "- `letters`: the letters of the word, in order, as a `str`. Blanks are lowercase. Some letters are from the rack; some may have been on the board.\n",
    "- `rack`: the letters that would remain in the player's rack after making this play. Not strictly necessary as part of the play, but useful information.\n",
    "\n",
    "The function `make_play` returns a new board with the play made on it. It does not do any checking to see if the play follows the rules."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "Play = namedtuple('Play', 'start, dir, letters, rack')\n",
    "\n",
    "def make_play(board, play) -> Board:\n",
    "    \"Make the play on a copy of board and return the copy.\"\n",
    "    copy = Board(board)\n",
    "    end = play.start + len(play.letters) * play.dir\n",
    "    copy[play.start:end:play.dir] = play.letters\n",
    "    return copy"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Example Board\n",
    "\n",
    "Let's test out what we've done so far. I'll put some words on a board, which I will call `board`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'B',\n",
       " 'E',\n",
       " '.',\n",
       " 'C',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 19,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "DOWN = WWF.down\n",
    "plays = {Play(145, DOWN,   'ENTER', ''),\n",
    "         Play(144, ACROSS, 'BE', ''),\n",
    "         Play(138, DOWN,   'GAVE', ''),\n",
    "         Play(158, DOWN,   'MUSES', ''),\n",
    "         Play(172, ACROSS, 'VIRULeNT', ''),\n",
    "         Play(213, ACROSS, 'RED', ''),\n",
    "         Play(198, ACROSS, 'LYTHE', ''),\n",
    "         Play(147, DOWN,   'CHILDREN', ''),\n",
    "         Play(164, ACROSS, 'HEARD', ''),\n",
    "         Play(117, DOWN,   'BRIDLES', ''),\n",
    "         Play(131, ACROSS, 'TOUR', '')}\n",
    "\n",
    "board = Board(WWF)\n",
    "for play in plays:\n",
    "    board = make_play(board, play)\n",
    "board"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Strategy for Finding Legal Plays\n",
    "\n",
    "This is our strategy for finding all possible legal plays on a board:\n",
    "\n",
    "- Find all *anchor squares* on the board. An anchor square is a square that is adjacent to a letter on the board&mdash;every legal move must place a letter on an anchor square. (On the game's first play, there are no letters on the board, and the `STAR` square in the center counts as the only anchor square.)\n",
    "- Using just the letters in the rack, find all *prefixes* of words in the dictionary. For example, with the rack `ABC`, we find that `B`, `BA`, and `BAC` are all prefixes of the word `BACK` (and the rack contains other prefixes of other words  as well).\n",
    "- For each anchor square and for both directions (across and down):\n",
    "  - Try each prefix before the anchor (that is, to the left or above the anchor). Don't allow a prefix to extend to another anchor or off the board. That means we won't have to worry about *cross words* for the prefix. If there are already letters on the board before the anchor point, use them as the prefix rather than prefixes from the rack.\n",
    "  - Starting at the anchor, march forward one square at a time, trying to fill empty squares with each possible letter from the rack that forms a valid word prefix. If the march forward hits letters that are already on the board, make sure they form a valid prefix too. Also check that any cross words are valid words. When we make a complete word (with an empty or `OFF` square ahead), yield the play that made the word.\n",
    "  \n",
    "So, each legal play will have a prefix of zero or more letters, followed by one letter from the rack covering an anchor square, followed by zero or more additional letters, which can be from the rack or already on the board."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Prefixes\n",
    "\n",
    "Here we define the set of all prefixes of all words in the dictionary:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def dict_prefixes(dictionary) -> set:\n",
    "    \"The set of all prefixes of each word in a dictionary.\"\n",
    "    return {word[:i] for word in dictionary for i in range(len(word))}\n",
    "\n",
    "PREFIXES = dict_prefixes(DICTIONARY)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "276374"
      ]
     },
     "execution_count": 21,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "len(PREFIXES)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "That's too many prefixes to look at; let's try a smaller example below. Note that the empty string is a prefix, and we include `HELP` because it is a prefix of `HELPER`, but we don't include `HELPER`, because there is nothing we can add to it to make a word in this dictionary:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'', 'H', 'HE', 'HEL', 'HELL', 'HELP', 'HELPE'}"
      ]
     },
     "execution_count": 22,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dict_prefixes({'HELLO', 'HELP', 'HELPER'})"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The function `rack_prefixes` gives the set of prefixes that can be made just from the letters in the rack. Most of the work is done by `extend_prefixes`, which accumulates a set of prefixes into `results`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def rack_prefixes(rack) -> set: \n",
    "    \"All word prefixes that can be made by the rack.\"\n",
    "    return extend_prefixes('', rack, set())\n",
    "\n",
    "def extend_prefixes(prefix, rack, results) -> set:\n",
    "    if prefix.upper() in PREFIXES:\n",
    "        results.add(prefix)\n",
    "        for L in letters(rack):\n",
    "            extend_prefixes(prefix+L, remove(L, rack), results)\n",
    "    return results"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'', 'A', 'AB', 'AC', 'B', 'BA', 'BAC', 'C', 'CA', 'CAB'}"
      ]
     },
     "execution_count": 24,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "rack = 'ABC'\n",
    "rack_prefixes(rack)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The number of prefixes in a rack is usually on the order of a hundred, unless there is a blank in the rack:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "155"
      ]
     },
     "execution_count": 25,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "len(rack_prefixes('LETTERS'))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "1590"
      ]
     },
     "execution_count": 26,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "len(rack_prefixes('LETTER_'))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Anchor Squares\n",
    "\n",
    "An anchor square is either the star in the middle of the board, or an empty square that is adjacent to a letter:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "def is_anchor(board, s) -> bool:\n",
    "    \"Is this square next to a letter already on the board? (Or is it a '*')?\"\n",
    "    return (board[s] == STAR or\n",
    "            board[s] in EMPTY and any(board[s + d].isalpha() for d in board.directions))\n",
    "\n",
    "def all_anchors(board) -> list:\n",
    "    \"A list of all anchor squares on the board.\"\n",
    "    return [s for s in range(len(board)) if is_anchor(board, s)]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[144]"
      ]
     },
     "execution_count": 28,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "all_anchors(WWF)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Plays on Example Board\n",
    "\n",
    "Let's work through the process of finding plays on the example `board`. First, we'll find all the anchors:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 29,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "53"
      ]
     },
     "execution_count": 29,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "anchors = all_anchors(board)\n",
    "len(anchors)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "To visualize these anchors, we'll make each one be a star, on a copy of `board`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 62,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '*',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '*',\n",
       " '*',\n",
       " '*',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '*',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '*',\n",
       " '*',\n",
       " '.',\n",
       " '*',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '*',\n",
       " 'G',\n",
       " '*',\n",
       " '-',\n",
       " '*',\n",
       " '.',\n",
       " '*',\n",
       " 'B',\n",
       " 'E',\n",
       " '*',\n",
       " 'C',\n",
       " '*',\n",
       " '*',\n",
       " '*',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '*',\n",
       " 'A',\n",
       " '*',\n",
       " '*',\n",
       " 'M',\n",
       " '*',\n",
       " '*',\n",
       " '*',\n",
       " 'N',\n",
       " '*',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '*',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " '*',\n",
       " 'I',\n",
       " '*',\n",
       " '*',\n",
       " '*',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '*',\n",
       " 'E',\n",
       " '*',\n",
       " '*',\n",
       " 'S',\n",
       " '*',\n",
       " '*',\n",
       " '*',\n",
       " 'E',\n",
       " '*',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '*',\n",
       " '.',\n",
       " '*',\n",
       " 'E',\n",
       " '*',\n",
       " '.',\n",
       " '*',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " '*',\n",
       " '*',\n",
       " '*',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '*',\n",
       " 'S',\n",
       " '*',\n",
       " '.',\n",
       " '.',\n",
       " '*',\n",
       " '*',\n",
       " 'R',\n",
       " '*',\n",
       " '.',\n",
       " ':',\n",
       " '*',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '*',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '*',\n",
       " 'E',\n",
       " '*',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '*',\n",
       " 'N',\n",
       " '*',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 62,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "board2 = Board(board)\n",
    "for a in anchors:\n",
    "   board2[a] = STAR\n",
    "    \n",
    "board2"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Now we'll define a rack, and find all the prefixes for the rack:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 31,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "88"
      ]
     },
     "execution_count": 31,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "rack = 'ABCHKNQ'\n",
    "\n",
    "prefixes = rack_prefixes(rack)\n",
    "len(prefixes)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 32,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "' ANKH ACN CANK BHA ACK HA HACKN A HACKB AN ABN KAC AQ AK AC BH CAN BAK BAC HANC CN N NAB H ANC C ANK CHAN CHAK KH KHAN NAK HAK BA QAN HANK CAH Q BACK CAB KHA BACH HAC BAH BANK CAK CA NACH AHC KAN NAC KAH KACH AH HACK BANKC CHAQ BANQ ANCH BHAK KANB BAN KAB ACKN NA K AB BACKH ANH KN KB HAB KNA KNAC B KA ABH CHA CHAB HAN ACQ CH BANC KBA ACH QA BHAN'"
      ]
     },
     "execution_count": 32,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "' '.join(prefixes)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We wont go through all the anchor/prefix combinations; we'll just pick one: the anchor above the `M` in `MUSES`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 63,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " '-',\n",
       " '*',\n",
       " '.',\n",
       " '.',\n",
       " 'B',\n",
       " 'E',\n",
       " '.',\n",
       " 'C',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 63,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "board3 = Board(board)\n",
    "anchor = 141\n",
    "board3[anchor] = STAR\n",
    "board3"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "There's only room for prefixes of length 0 or 1, because anything longer than that would hit the anchor to the right of the `G` in `GAVE`; to avoid duplication of effort, we only allow words to run into other anchors on the right, not the left. Let's try the 1-letter prefix `B` first:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 64,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:violet; font-size:100%; width:25px; height:25px; text-align:center; padding:0px\">&#10029;<td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " 'B',\n",
       " '*',\n",
       " '.',\n",
       " '.',\n",
       " 'B',\n",
       " 'E',\n",
       " '.',\n",
       " 'C',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 64,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "board3[140] = 'B'\n",
    "board3"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Now we can start to march forward. On the anchor square we can place any letter from the rack that makes a valid prefix, and that also turns `.MUSES` into a valid word. There's only one such letter, `A`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 35,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " 'B',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'B',\n",
       " 'E',\n",
       " '.',\n",
       " 'C',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 35,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "board3[141] = 'A'\n",
    "assert 'BA' in PREFIXES and is_word('A' + 'MUSES')\n",
    "board3"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We can continue marching forward, trying letters from the rack that form valid prefixes. Let's try the combination `CK`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " 'B',\n",
       " 'A',\n",
       " 'C',\n",
       " 'K',\n",
       " 'B',\n",
       " 'E',\n",
       " '.',\n",
       " 'C',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 36,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "board3[142:144] = 'CK'\n",
    "assert 'BACKBE' in PREFIXES\n",
    "board3"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We've spelled the word `BACK`, but we can't count it as a legal play, because we've hit two adjacent letters, `BE`, that are already on the board. We check that `BACKBE` froms a valid prefix, and continue to the next empty square, where we can choose an `N`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " 'B',\n",
       " 'A',\n",
       " 'C',\n",
       " 'K',\n",
       " 'B',\n",
       " 'E',\n",
       " 'N',\n",
       " 'C',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 37,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "board3[146] = 'N'\n",
    "assert 'BACKBENC' in PREFIXES\n",
    "board3"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We continue to the next square (a double word square), and place an `H`, which completes a word, `BACKBENCH`, and simultaneously makes a cross word, `THE`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 38,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " 'B',\n",
       " 'A',\n",
       " 'C',\n",
       " 'K',\n",
       " 'B',\n",
       " 'E',\n",
       " 'N',\n",
       " 'C',\n",
       " 'H',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 38,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "board3[148] = 'H'\n",
    "assert is_word('BACKBENCH') and is_word('THE')\n",
    "board3"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We would record this play, and backtrack to consider other letters for this and other prefix/anchor combinations. Now let's code this up! \n",
    "\n",
    "# Code for Finding All Plays\n",
    "\n",
    "The function `all_plays` generates all legal plays by first trying all prefix plays, and then trying to extend each one, one letter at a time. (Note that it also generates the empty play, because a player always has the option of passing.)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 39,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def all_plays(board, rack):\n",
    "    \"\"\"Generate all plays that can be played on board with this rack.\n",
    "    Try placing every possible prefix before every anchor point; \n",
    "    then extend one letter at a time, looking for valid plays.\"\"\"\n",
    "    anchors  = all_anchors(board)\n",
    "    prefixes = rack_prefixes(rack)\n",
    "    yield Play(0, 1, '', rack) # The empty play (no letters, no points)\n",
    "    for anchor in anchors:\n",
    "        for dir in (ACROSS, board.down):\n",
    "            for play in prefix_plays(prefixes, board, anchor, dir, rack):\n",
    "                yield from extend_play(board, play)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Note the syntax `yield from`, new in Python 3.3: \"`yield from c`\" is the same as \"`for x in c: yield x`\". \n",
    "\n",
    "Now for the function `prefix_plays`, which returns a list of all partial plays consisting of a prefix placed before the anchor. Note that these are not *legal* plays; they are *partial* plays, some of which will end up being extended into legal plays. \n",
    "\n",
    "There are two cases: if there are letters on the board immediately before the anchor, then those letters form the only allowable prefix. If not, we can use any prefix from the rack up to `maxlen`, which is the number of empty squares that do not run into another anchor, nor off the board."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "def prefix_plays(prefixes, board, anchor, dir, rack) -> list:\n",
    "    \"Return all Plays of a prefix to the left/above anchor.\"\n",
    "    if board[anchor-dir].isalpha(): # Prefix already on the board; only 1 prefix\n",
    "        start = scan_letters(board, anchor, -dir)\n",
    "        return [Play(start, dir, cat(board[start:anchor:dir]), rack)]\n",
    "    else: # Prefixes from rack fit in space before anchor\n",
    "        maxlen = (anchor - scan_to_anchor(board, anchor, -dir)) // dir\n",
    "        return [Play(anchor - len(prefix) * dir, dir, prefix, remove(prefix, rack))\n",
    "                for prefix in prefixes if len(prefix) <= maxlen]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Now `extend_play` takes a partial play, determines the square, `s`, that is one square past the end of the play, and tries all possible letters there. If adding a letter forms a valid prefix (and also does not form an invalid cross word), then we continue on (by calling `extend_play` recursively). If adding the letter forms a valid word, we yield the play."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 41,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def extend_play(board, play):\n",
    "    \"Explore all ways of adding to end of play; return ones that form full words.\"\n",
    "    s = play.start + play.dir * len(play.letters)\n",
    "    if board[s] == OFF: return\n",
    "    cword = crossword(board, s, play.dir)\n",
    "    possible_letters = board[s].upper() if board[s].isalpha() else letters(play.rack)\n",
    "    for L in possible_letters:\n",
    "        prefix2 = play.letters + L\n",
    "        if prefix2.upper() in PREFIXES and valid_crossword(cword, L):\n",
    "            rack2 = play.rack if board[s].isalpha() else remove(L, play.rack)\n",
    "            play2 = Play(play.start, play.dir, prefix2, rack2)\n",
    "            if is_word(prefix2) and not board[s + play.dir].isalpha():\n",
    "                yield play2\n",
    "            yield from extend_play(board, play2)\n",
    "\n",
    "def scan_letters(board, s, dir) -> Square:\n",
    "    \"Return the last square number going from s in dir that is a letter.\"\n",
    "    while board[s + dir].isalpha():\n",
    "        s += dir\n",
    "    return s\n",
    "\n",
    "def scan_to_anchor(board, s, dir) -> Square:\n",
    "    \"Return the last square number going from s in dir that is not an anchor nor off board.\"\n",
    "    while board[s + dir] != OFF and not is_anchor(board, s + dir):\n",
    "        s += dir\n",
    "    return s"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Crosswords\n",
    "\n",
    "If adding a letter in, say, the `ACROSS` direction also adds on to a word in the `DOWN` direction, then we need to make sure that this *cross word* is also valid. The function `crossword` finds the cross word at square `s` and returns it with a `'.'` indicating the empty square where the new letter will be placed, so we would get `'.MUSES'` and `'T.E'` for the two crosswords in the `'BACKBENCH'` play."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 42,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def crossword(board, s, dir) -> str:\n",
    "    \"\"\"The word that intersects s in the other direction from dir.\n",
    "    Use '.' for the one square that is missing a letter.\"\"\"\n",
    "    def canonical(L): return L if L.isalpha() else '.'\n",
    "    d = other(dir, board)\n",
    "    start = scan_letters(board, s, -d)\n",
    "    end = scan_letters(board, s, d)\n",
    "    return cat(canonical(board[s]) for s in range(start, end+d, d))\n",
    "\n",
    "def valid_crossword(cword, L) -> bool:\n",
    "    \"Is placing letter L valid (with respective to the crossword)?\"\n",
    "    return len(cword) == 1 or cword.replace('.', L).upper() in DICTIONARY\n",
    "\n",
    "def other(dir, board) -> Direction:\n",
    "    \"The other direction (across/down) on the board.\"\n",
    "    return board.down if dir == ACROSS else ACROSS"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 43,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'.MUSES'"
      ]
     },
     "execution_count": 43,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "crossword(board, 141, ACROSS)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 44,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'T.E'"
      ]
     },
     "execution_count": 44,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "crossword(board, 148, ACROSS)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The function `valid_crossword` checks if replacing the empty square with a specific letter will form a valid word:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 45,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 45,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "valid_crossword('.MUSES', 'A')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We can now see all the prefix plays for the anchor at 141 (just above `MUSES`):"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[Play(start=141, dir=1, letters='', rack='ABCHKNQ'),\n",
       " Play(start=140, dir=1, letters='A', rack='BCHKNQ'),\n",
       " Play(start=140, dir=1, letters='N', rack='ABCHKQ'),\n",
       " Play(start=140, dir=1, letters='H', rack='ABCKNQ'),\n",
       " Play(start=140, dir=1, letters='C', rack='ABHKNQ'),\n",
       " Play(start=140, dir=1, letters='Q', rack='ABCHKN'),\n",
       " Play(start=140, dir=1, letters='K', rack='ABCHNQ'),\n",
       " Play(start=140, dir=1, letters='B', rack='ACHKNQ')]"
      ]
     },
     "execution_count": 46,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "prefix_plays(rack_prefixes(rack), board, 141, 1, rack)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "And we can see all the ways to extend the play of `'B'` there:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 47,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{Play(start=140, dir=1, letters='BA', rack='CHKNQ'),\n",
       " Play(start=140, dir=1, letters='BACKBENCH', rack='Q'),\n",
       " Play(start=140, dir=1, letters='BAH', rack='CKNQ'),\n",
       " Play(start=140, dir=1, letters='BAN', rack='CHKQ')}"
      ]
     },
     "execution_count": 47,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "set(extend_play(board, Play(start=140, dir=1, letters='B', rack='ACHKNQ')))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Scoring\n",
    "\n",
    "Now we'll show how to count up the points made by a play. The score is the sum of the word score for the play, plus a bingo score if all seven letters are used, plus the sum of the word scores for any cross words. The word score is the sum of the letter scores (where each letter score may be doubled or tripled by a bonus square when the letter is first played on the square), all multiplied by any word bonus(es) encountered by the newly-placed letters."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 48,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "def score(board, play) -> int:\n",
    "    \"The number of points scored by making this play on the board.\"\n",
    "    return (word_score(board, play) \n",
    "            + bingo(board, play) \n",
    "            + sum(word_score(board, cplay) \n",
    "                  for cplay in cross_plays(board, play)))\n",
    "\n",
    "def word_score(board, play) -> int:\n",
    "    \"Points for a single word, counting word- and letter-bonuses.\"\n",
    "    total, word_bonus = 0, 1\n",
    "    for (s, L) in enumerate_play(play):\n",
    "        sq = board[s]\n",
    "        word_bonus *= (3 if sq == TW else 2 if sq == DW else 1)\n",
    "        total += POINTS[L] * (3 if sq == TL else 2 if sq == DL else 1)\n",
    "    return word_bonus * total\n",
    "\n",
    "def bingo(board, play) -> int:\n",
    "    \"A bonus for using 7 letters from the rack.\"\n",
    "    return BINGO if (play.rack == '' and letters_played(board, play) == 7) else 0\n",
    "\n",
    "BINGO = 35"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Here are the various helper functions:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 49,
   "metadata": {
    "collapsed": false
   },
   "outputs": [],
   "source": [
    "def letters_played(board, play) -> int:\n",
    "    \"The number of letters played from the rack.\"\n",
    "    return sum(board[s] in EMPTY for (s, L) in enumerate_play(play))\n",
    "    \n",
    "def enumerate_play(play) -> list:\n",
    "    \"List (square_number, letter) pairs for each tile in the play.\"\n",
    "    return [(play.start + i * play.dir, L) \n",
    "            for (i, L) in enumerate(play.letters)]\n",
    "            \n",
    "def cross_plays(board, play):\n",
    "    \"Generate all plays for words that cross this play.\"\n",
    "    cross = other(play.dir, board)\n",
    "    for (s, L) in enumerate_play(play):\n",
    "        if board[s] in EMPTY and (board[s-cross].isalpha() or board[s+cross].isalpha()):\n",
    "            start, end = scan_letters(board, s, -cross), scan_letters(board, s, cross)\n",
    "            before, after = cat(board[start:s:cross]), cat(board[s+cross:end+cross:cross])\n",
    "            yield Play(start, cross, before + L + after, play.rack)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "What should the `BACKBENCH` play score? The word covers two double-word bonuses, but no letter bonuses. The sum of the letter point values is 3+1+3+5+3+1+1+3+4 = 24, and 24&times;2&times;2 = 96. The cross word `AMUSES` scores 8, and `THE` is on a double word bonus, so it scores 6&times;2 = 12. There is one letter remaining in the rack, so no bingo, just a total score of 96 + 8 + 12 = 116."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 50,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "116"
      ]
     },
     "execution_count": 50,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "score(board, Play(start=140, dir=1, letters='BACKBENCH', rack='Q'))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "We can find the highest scoring play by enumerating all plays and taking the one with the maximum score:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 51,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def highest_scoring_play(board, rack) -> Play: \n",
    "    \"Return the Play that gives the most points.\"\n",
    "    return max(all_plays(board, rack), key=lambda play: score(board, play))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 52,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Play(start=140, dir=1, letters='BACKBENCH', rack='Q')"
      ]
     },
     "execution_count": 52,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "highest_scoring_play(board, rack)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 53,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">e<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'B',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " 'O',\n",
       " 'U',\n",
       " 'R',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'G',\n",
       " '.',\n",
       " 'B',\n",
       " 'A',\n",
       " 'C',\n",
       " 'K',\n",
       " 'B',\n",
       " 'E',\n",
       " 'N',\n",
       " 'C',\n",
       " 'H',\n",
       " '.',\n",
       " '.',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " 'H',\n",
       " 'E',\n",
       " 'A',\n",
       " 'R',\n",
       " 'D',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'V',\n",
       " 'I',\n",
       " 'R',\n",
       " 'U',\n",
       " 'L',\n",
       " 'e',\n",
       " 'N',\n",
       " 'T',\n",
       " ';',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " 'L',\n",
       " 'Y',\n",
       " 'T',\n",
       " 'H',\n",
       " 'E',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'R',\n",
       " 'E',\n",
       " 'D',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'E',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'N',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "execution_count": 53,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "make_play(board, Play(start=140, dir=1, letters='BACKBENCH', rack='Q'))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Playing a Game\n",
    "\n",
    "Now let's play a complete game. We start with a bag of tiles:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 54,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "100"
      ]
     },
     "execution_count": 54,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "BAG = 'AAAAAAAAABBCCDDDDEEEEEEEEEEEEFFGGGHHIIIIIIIIIJKLLLLMMNNNNNNOOOOOOOOPPQRRRRRRSSSSTTTTTTUUUUVVWWXYYZ__'\n",
    "len(BAG)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Then the function `play_game` will take a list of *player strategies* as input, and play those strategies against each other over the course of a game. A strategy is a function that takes a board and a rack as input and returns a play. For example, `highest_scoring_play` is a strategy. If the optional argument `verbose` is true, then the board is displayed after each play."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 55,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "def play_game(strategies=[highest_scoring_play, highest_scoring_play], verbose=True) -> list:\n",
    "    \"A number of players play a game; return a list of their scores.\"\n",
    "    board = Board(WWF)\n",
    "    bag = list(BAG)\n",
    "    random.shuffle(bag)\n",
    "    scores = [0 for _ in strategies]\n",
    "    racks = [replenish('', bag) for _ in strategies]\n",
    "    while True:\n",
    "        old_board = board\n",
    "        for (p, strategy) in enumerate(strategies):\n",
    "            board = make_one_play(board, p, strategy, scores, racks, bag, verbose)\n",
    "            if racks[p] == '':\n",
    "                # Player p has gone out; game over\n",
    "                return subtract_remaining_tiles(racks, scores, p)\n",
    "        if old_board == board:\n",
    "            # No player has a move; game over\n",
    "            return scores\n",
    "\n",
    "def make_one_play(board, p, strategy, scores, racks, bag, verbose) -> Board:\n",
    "    \"\"\"One player, player p, chooses a move according to the strategy.\n",
    "    We make the move, replenish the rack, update scores, and return the new Board.\"\"\"\n",
    "    rack = racks[p]\n",
    "    play = strategy(board, racks[p])\n",
    "    racks[p] = replenish(play.rack, bag)\n",
    "    points = score(board, play)\n",
    "    scores[p] += points\n",
    "    board = make_play(board, play)\n",
    "    if verbose:\n",
    "        display(HTML('Player {} with rack {} makes {}<br>for {} points; draws: {}; scores: {}'\n",
    "                     .format(p, rack, play, points, racks[p], scores)),\n",
    "                board)\n",
    "    return board\n",
    "\n",
    "def subtract_remaining_tiles(racks, scores, p) -> list:\n",
    "    \"Subtract point values from each player and give them to player p.\"\n",
    "    for i in range(len(racks)):\n",
    "        points = sum(POINTS[L] for L in racks[i])\n",
    "        scores[i] -= points\n",
    "        scores[p] += points\n",
    "    return scores\n",
    "\n",
    "def replenish(rack, bag) -> str:\n",
    "    \"Fill rack with 7 letters (as long as there are letters left in the bag).\"\n",
    "    while len(rack) < 7 and bag:\n",
    "        rack += bag.pop()\n",
    "    return rack"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 56,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "application/javascript": [
       "IPython.OutputArea.auto_scroll_threshold = 9999;"
      ],
      "text/plain": [
       "<IPython.core.display.Javascript object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "%%javascript\n",
    "IPython.OutputArea.auto_scroll_threshold = 9999;"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 57,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "Player 0 with rack YVUGOED makes Play(start=144, dir=1, letters='DOGEY', rack='VU')<br>for 20 points; draws: VUONPAA; scores: [20, 0]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack AESOEUD makes Play(start=162, dir=1, letters='SODA', rack='EEU')<br>for 22 points; draws: EEULGAO; scores: [20, 22]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack VUONPAA makes Play(start=128, dir=1, letters='NAP', rack='VUOA')<br>for 24 points; draws: VUOARRN; scores: [44, 22]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack EEULGAO makes Play(start=178, dir=1, letters='LEG', rack='EUAO')<br>for 22 points; draws: EUAOIIN; scores: [44, 44]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack VUOARRN makes Play(start=113, dir=1, letters='ARVO', rack='URN')<br>for 21 points; draws: URNVLER; scores: [65, 44]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack EUAOIIN makes Play(start=178, dir=17, letters='LIANE', rack='UOI')<br>for 10 points; draws: UOINEKA; scores: [65, 54]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack URNVLER makes Play(start=241, dir=1, letters='VENULE', rack='RR')<br>for 26 points; draws: RRCIENT; scores: [91, 54]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack UOINEKA makes Play(start=208, dir=17, letters='KNEE', rack='UOIA')<br>for 54 points; draws: UOIAPOG; scores: [91, 108]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack RRCIENT makes Play(start=48, dir=17, letters='TRICORNE', rack='')<br>for 46 points; draws: O_IAUDS; scores: [137, 108]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack UOIAPOG makes Play(start=205, dir=1, letters='PAIK', rack='UOOG')<br>for 30 points; draws: UOOGLJR; scores: [137, 138]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack O_IAUDS makes Play(start=58, dir=1, letters='DInOSAUR', rack='')<br>for 44 points; draws: UIFATL_; scores: [181, 138]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack UOOGLJR makes Play(start=44, dir=1, letters='JO', rack='UOGLR')<br>for 38 points; draws: UOGLRRE; scores: [181, 176]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack UIFATL_ makes Play(start=168, dir=17, letters='FIsTULA', rack='')<br>for 99 points; draws: IDFHWMM; scores: [280, 176]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " '.',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack UOGLRRE makes Play(start=29, dir=17, letters='EGAL', rack='UORR')<br>for 32 points; draws: UORRQER; scores: [280, 208]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack IDFHWMM makes Play(start=39, dir=1, letters='WHIM', rack='DFM')<br>for 31 points; draws: DFMISCE; scores: [311, 208]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack UORRQER makes Play(start=214, dir=1, letters='ROQUET', rack='RR')<br>for 35 points; draws: RRTAITE; scores: [311, 243]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack DFMISCE makes Play(start=72, dir=1, letters='DEISM', rack='FC')<br>for 42 points; draws: FCEXBWH; scores: [353, 243]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack RRTAITE makes Play(start=74, dir=17, letters='IRRITATE', rack='')<br>for 47 points; draws: NYOEOTS; scores: [353, 290]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack FCEXBWH makes Play(start=222, dir=1, letters='EX', rack='FCBWH')<br>for 38 points; draws: FCBWHIA; scores: [391, 290]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>X</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " 'E',\n",
       " 'X',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack NYOEOTS makes Play(start=263, dir=1, letters='STONY', rack='EO')<br>for 36 points; draws: EOTZB; scores: [391, 326]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>X</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " 'E',\n",
       " 'X',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'S',\n",
       " 'T',\n",
       " 'O',\n",
       " 'N',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack FCBWHIA makes Play(start=248, dir=1, letters='WAB', rack='FCHI')<br>for 35 points; draws: FCHI; scores: [426, 326]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>X</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'I',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " 'E',\n",
       " 'X',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " 'W',\n",
       " 'A',\n",
       " 'B',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'S',\n",
       " 'T',\n",
       " 'O',\n",
       " 'N',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack EOTZB makes Play(start=124, dir=1, letters='ZIT', rack='EOB')<br>for 22 points; draws: EOB; scores: [426, 348]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Z</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>X</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'Z',\n",
       " 'I',\n",
       " 'T',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " 'E',\n",
       " 'X',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " 'W',\n",
       " 'A',\n",
       " 'B',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'S',\n",
       " 'T',\n",
       " 'O',\n",
       " 'N',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack FCHI makes Play(start=94, dir=1, letters='HIC', rack='F')<br>for 22 points; draws: F; scores: [448, 348]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Z</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>X</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " 'H',\n",
       " 'I',\n",
       " 'C',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'Z',\n",
       " 'I',\n",
       " 'T',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " 'E',\n",
       " 'X',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " 'W',\n",
       " 'A',\n",
       " 'B',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'S',\n",
       " 'T',\n",
       " 'O',\n",
       " 'N',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 1 with rack EOB makes Play(start=21, dir=1, letters='BO', rack='E')<br>for 17 points; draws: E; scores: [448, 365]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Z</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>X</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'B',\n",
       " 'O',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " '=',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " 'H',\n",
       " 'I',\n",
       " 'C',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'Z',\n",
       " 'I',\n",
       " 'T',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " 'E',\n",
       " 'X',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " 'W',\n",
       " 'A',\n",
       " 'B',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'S',\n",
       " 'T',\n",
       " 'O',\n",
       " 'N',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "Player 0 with rack F makes Play(start=82, dir=1, letters='IF', rack='')<br>for 15 points; draws: ; scores: [463, 365]"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<table><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>J</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">n<td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:orange; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>M</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>H</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>C</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Z</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><tr><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>D</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>F</b><sup style=\"font-size: 60%\">4</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>G</b><sup style=\"font-size: 60%\">2</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightcoral; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DW</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\">s<tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>P</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>I</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>K</b><sup style=\"font-size: 60%\">5</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>R</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Q</b><sup style=\"font-size: 60%\">10</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>X</b><sup style=\"font-size: 60%\">8</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>V</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>U</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>W</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>B</b><sup style=\"font-size: 60%\">3</sup><td style=\"background-color:lightblue; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>DL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>L</b><sup style=\"font-size: 60%\">1</sup><tr><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>E</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:lightgreen; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><b>TL</b><sup style=\"font-size: 60%\"></sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>S</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>T</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>O</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>N</b><sup style=\"font-size: 60%\">1</sup><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>Y</b><sup style=\"font-size: 60%\">4</sup><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:whitesmoke; font-size:66%; width:25px; height:25px; text-align:center; padding:0px\"><td style=\"background-color:gold; font-size:120%; width:25px; height:25px; text-align:center; padding:0px\"><b>A</b><sup style=\"font-size: 60%\">1</sup></table>"
      ],
      "text/plain": [
       "['#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'B',\n",
       " 'O',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'W',\n",
       " 'H',\n",
       " 'I',\n",
       " 'M',\n",
       " '.',\n",
       " 'J',\n",
       " 'O',\n",
       " 'G',\n",
       " ':',\n",
       " 'T',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 'D',\n",
       " 'I',\n",
       " 'n',\n",
       " 'O',\n",
       " 'S',\n",
       " 'A',\n",
       " 'U',\n",
       " 'R',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '=',\n",
       " '.',\n",
       " '.',\n",
       " 'D',\n",
       " 'E',\n",
       " 'I',\n",
       " 'S',\n",
       " 'M',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'L',\n",
       " '.',\n",
       " 'I',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ':',\n",
       " '.',\n",
       " 'H',\n",
       " 'I',\n",
       " 'C',\n",
       " '.',\n",
       " ':',\n",
       " 'C',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'A',\n",
       " 'R',\n",
       " 'V',\n",
       " 'O',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'Z',\n",
       " 'I',\n",
       " 'T',\n",
       " '.',\n",
       " 'N',\n",
       " 'A',\n",
       " 'P',\n",
       " '.',\n",
       " '.',\n",
       " 'R',\n",
       " ';',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'D',\n",
       " 'O',\n",
       " 'G',\n",
       " 'E',\n",
       " 'Y',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '#',\n",
       " '#',\n",
       " ';',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'A',\n",
       " '.',\n",
       " '.',\n",
       " 'S',\n",
       " 'O',\n",
       " 'D',\n",
       " 'A',\n",
       " '.',\n",
       " 'E',\n",
       " 'F',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '-',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'T',\n",
       " '.',\n",
       " 'L',\n",
       " 'E',\n",
       " 'G',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " '-',\n",
       " 'I',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " ':',\n",
       " 'I',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " 's',\n",
       " '#',\n",
       " '#',\n",
       " 'P',\n",
       " 'A',\n",
       " 'I',\n",
       " 'K',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '.',\n",
       " 'R',\n",
       " 'O',\n",
       " 'Q',\n",
       " 'U',\n",
       " 'E',\n",
       " 'T',\n",
       " '#',\n",
       " '#',\n",
       " 'E',\n",
       " 'X',\n",
       " '.',\n",
       " 'N',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " 'N',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " '.',\n",
       " '.',\n",
       " ':',\n",
       " 'U',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " 'V',\n",
       " 'E',\n",
       " 'N',\n",
       " 'U',\n",
       " 'L',\n",
       " 'E',\n",
       " '.',\n",
       " 'W',\n",
       " 'A',\n",
       " 'B',\n",
       " ':',\n",
       " '.',\n",
       " 'L',\n",
       " '#',\n",
       " '#',\n",
       " '.',\n",
       " '.',\n",
       " '.',\n",
       " 'E',\n",
       " '.',\n",
       " '.',\n",
       " ';',\n",
       " 'S',\n",
       " 'T',\n",
       " 'O',\n",
       " 'N',\n",
       " 'Y',\n",
       " '.',\n",
       " '.',\n",
       " 'A',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#',\n",
       " '#']"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/plain": [
       "[464, 364]"
      ]
     },
     "execution_count": 57,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "play_game()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "That was an exciting game, with four bingos: TRICORNE, DINOSAUR, FISTULA, and IRRITATE. The FISTULA play garnered 99 points, from the bingo, the triple word score, and a sextuple bonus from the 4-point letter F (triple letter score in both directions).\n",
    "\n",
    "But that was just one game; Let's get statistics for both players over, say, 10 games:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 58,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "min: 253, median: 367, mean: 370.45, max: 485\n",
      "CPU times: user 35.4 s, sys: 103 ms, total: 35.5 s\n",
      "Wall time: 35.5 s\n"
     ]
    }
   ],
   "source": [
    "%%time\n",
    "\n",
    "games = 10\n",
    "\n",
    "scores = sorted(score for game in range(games) \n",
    "                      for score in play_game(verbose=False))\n",
    "\n",
    "print('min: {}, median: {}, mean: {}, max: {}'.format(\n",
    "    min(scores), scores[games], sum(scores)/(2*games), max(scores)))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Tests\n",
    "\n",
    "I *should* have a complete test suite. Instead, all I have this minimal suite, plus the confidence I gained from seeing the game play."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 59,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'ok'"
      ]
     },
     "execution_count": 59,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "def sames(A, B): return sorted(A) == sorted(B)\n",
    "\n",
    "def test():\n",
    "    \"Unit tests.\"\n",
    "    assert is_word('WORD')\n",
    "    assert is_word('LETTERs')\n",
    "    assert is_word('ETHyLENEDIAMINETETRAACETATES')\n",
    "    assert not is_word('ALFABET')\n",
    "    \n",
    "    rack = 'ABCHKNQ'\n",
    "    \n",
    "    assert sames(letters(rack), rack)\n",
    "    assert sames(letters('ABAC_'), 'ABCabcdefghijklmnopqrstuvwxyz')\n",
    "    \n",
    "    assert dict_prefixes({'HELLO', 'HELP', 'HELPER'}) == {\n",
    "        '', 'H', 'HE', 'HEL', 'HELL', 'HELP', 'HELPE'}\n",
    "    \n",
    "    assert rack_prefixes('ABC') == {'', 'A', 'AB', 'AC', 'B', 'BA', 'BAC', 'C', 'CA', 'CAB'}\n",
    "    assert len(rack_prefixes('LETTERS')) == 155\n",
    "    assert len(rack_prefixes('LETTER_')) == 1590\n",
    "    \n",
    "    DOWN = WWF.down\n",
    "    plays = {\n",
    "         Play(145, DOWN,   'ENTER', ''),\n",
    "         Play(144, ACROSS, 'BE', ''),\n",
    "         Play(138, DOWN,   'GAVE', ''),\n",
    "         Play(158, DOWN,   'MUSES', ''),\n",
    "         Play(172, ACROSS, 'VIRULeNT', ''),\n",
    "         Play(213, ACROSS, 'RED', ''),\n",
    "         Play(198, ACROSS, 'LYTHE', ''),\n",
    "         Play(147, DOWN,   'CHILDREN', ''),\n",
    "         Play(164, ACROSS, 'HEARD', ''),\n",
    "         Play(117, DOWN,   'BRIDLES', ''),\n",
    "         Play(131, ACROSS, 'TOUR', '')}\n",
    "\n",
    "    board = Board(WWF)\n",
    "    for play in plays:\n",
    "        board = make_play(board, play)\n",
    "        \n",
    "    assert len(WWF) == len(board) == 17 * 17\n",
    "    assert all_anchors(WWF) == [144]\n",
    "    assert all_anchors(board) == [\n",
    "        100, 114, 115, 116, 121, 127, 128, 130, 137, 139, 141, 143, 146, 148, 149, 150, 154, 156, 157, 159, 160, \n",
    "        161, 163, 171, 180, 182, 183, 184, 188, 190, 191, 193, 194, 195, 197, 206, 208, 210, 212, 216, 217, 218, \n",
    "        225, 227, 230, 231, 233, 236, 243, 248, 250, 265, 267]\n",
    "    \n",
    "    assert crossword(board, 141, ACROSS) == '.MUSES'\n",
    "    assert crossword(board, 148, ACROSS) == 'T.E'\n",
    "    assert valid_crossword('.MUSES', 'A')\n",
    "    assert not valid_crossword('.MUSES', 'B')\n",
    "    \n",
    "    assert sames(prefix_plays(rack_prefixes(rack), board, 141, 1, rack),\n",
    "                 [Play(start=141, dir=1, letters='', rack='ABCHKNQ'),\n",
    "                  Play(start=140, dir=1, letters='C', rack='ABHKNQ'),\n",
    "                  Play(start=140, dir=1, letters='K', rack='ABCHNQ'),\n",
    "                  Play(start=140, dir=1, letters='B', rack='ACHKNQ'),\n",
    "                  Play(start=140, dir=1, letters='A', rack='BCHKNQ'),\n",
    "                  Play(start=140, dir=1, letters='H', rack='ABCKNQ'),\n",
    "                  Play(start=140, dir=1, letters='N', rack='ABCHKQ'),\n",
    "                  Play(start=140, dir=1, letters='Q', rack='ABCHKN')])\n",
    "    \n",
    "    assert sames(extend_play(board, Play(start=140, dir=1, letters='B', rack='ACHKNQ')),\n",
    "                 {Play(start=140, dir=1, letters='BA', rack='CHKNQ'),\n",
    "                  Play(start=140, dir=1, letters='BACKBENCH', rack='Q'),\n",
    "                  Play(start=140, dir=1, letters='BAH', rack='CKNQ'),\n",
    "                  Play(start=140, dir=1, letters='BAN', rack='CHKQ')})\n",
    "\n",
    "    assert len(BAG) == 100\n",
    "    \n",
    "    assert replenish('RACK', ['X', 'B', 'A', 'G']) == 'RACKGAB'\n",
    "    assert replenish('RACK', []) == 'RACK'\n",
    "    assert replenish('RACK', ['A', 'B']) == 'RACKBA'\n",
    "    \n",
    "    assert score(WWF, Play(144, ACROSS, 'BE', '')) == (3 + 1)\n",
    "    assert score(board, Play(140, ACROSS, 'BACKBENCH', 'Q')) == 116\n",
    "    \n",
    "    return 'ok'\n",
    "\n",
    "test()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Conclusion: How Did We Do?\n",
    "\n",
    "We can break that into three questions:\n",
    "    \n",
    "- **Is the code easy to follow?** <br>I'm biased, but I think this code is easy to understand, test, and modify.\n",
    "- **Does the strategy score well?** <br>Yes: the mean and median are both well over 350, which is enough for [the elite club](https://www.facebook.com/WWF350Club) of high scorers. No: this is not quite world-champion caliber.\n",
    "- **Is the code fast enough?** <br>It takes less than 4 seconds to play a complete game for both players; that's fast enough for me. If desired, the code could be made about 100 times faster, by using multiprocessing, by caching more information, by not building explicit lists for intermediate results (although those results make the code easier to test), by using PyPy or Cython, or by porting to another language.\n",
    "\n",
    "We can also ask: What's left to do?\n",
    "\n",
    "   - We could modify the program to play on a Scrabble&reg; board. \n",
    "   - We could give players the option of trading in tiles.\n",
    "   - We could explore better strategies. A better strategy might:\n",
    "     - Plan ahead to use high-scoring letters only with bonuses.\n",
    "     - Manage letters to increase the chance of a bingo.\n",
    "     - Use blank tiles strategically.\n",
    "     - Play defensively to avoid giving the opponent good chances at bonus squares.\n",
    "     - Think ahead in the end game to go out before the opponent (or at least avoid being stuck with high-scoring letters in the rack).\n",
    "     - In the end game, know which tiles have not been played and thus which ones the opponent could have.\n",
    "   - The display could be prettier.\n",
    "   - The game could be interfaced to an online game server.\n",
    "   - More complete unit tests would be appreciated.\n",
    "   - We could compare this program to those of the [giants](https://www.cs.cmu.edu/afs/cs/academic/class/15451-s06/www/lectures/scrabble.pdf) whose [shoulders](http://ericsink.com/downloads/faster-scrabble-gordon.pdf) we [stood](http://web.archive.org/web/20040116175427/http://www.math-info.univ-paris5.fr/~bouzy/ProjetUE3/Scrabble.pdf) [upon](http://www.gtoal.com/wordgames/scrabble.html).\n",
    "   \n",
    "Thanks to Markus Dobler for correcting one bug and making another useful suggestion.\n",
    "\n",
    "<hr>\n",
    "*[Peter Norvig](http://norvig.com)*"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.5.0"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 0
}
