challenging-america-word-ga.../zad8.ipynb

12210 lines
5.0 MiB
Plaintext
Raw Normal View History

2023-06-28 19:20:16 +02:00
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "8b023ab4",
"metadata": {},
"outputs": [],
"source": [
"train_file ='train/in.tsv.xz'\n",
"test_file = 'dev-0/in.tsv.xz'\n",
"out_file = 'dev-0/out.tsv'"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "39b223cf",
"metadata": {},
"outputs": [],
"source": [
"from itertools import islice\n",
"import regex as re\n",
"import sys\n",
"from torchtext.vocab import build_vocab_from_iterator\n",
"import lzma\n",
"import pickle\n",
"import re\n",
"import torch\n",
"from torch import nn\n",
"from torch.utils.data import IterableDataset\n",
"import itertools\n",
"from torch.utils.data import DataLoader\n",
"import yaml"
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "a0b0b73e",
"metadata": {},
"outputs": [],
"source": [
"epochs = 3\n",
"embed_size = 200\n",
"device = 'cuda'\n",
"vocab_size = 30000\n",
"batch_s = 1600\n",
"learning_rate = 0.01\n",
"k = 20 #top k words\n",
"wildcard_minweight = 0.01"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "2ac3a353",
"metadata": {},
"outputs": [],
"source": [
"params = {\n",
"'epochs': 3,\n",
"'embed_size': 100,\n",
"'device': 'cuda',\n",
"'vocab_size': 30000,\n",
"'batch_size': 3200,\n",
"'learning_rate': 0.0001,\n",
"'k': 15, #top k words\n",
"'wildcard_minweight': 0.01\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "9668da9f",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/ipykernel_37433/1141171476.py:1: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.\n",
" params = yaml.load(open('config/params.yaml'))\n"
]
}
],
"source": [
"params = yaml.load(open('config/params.yaml'))\n",
"#then, entire code should go about those params with params[epochs] etc"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "01a6cf33",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'epochs': 3,\n",
" 'embed_size': 100,\n",
" 'device': 'cuda',\n",
" 'vocab_size': 30000,\n",
" 'batch_size': 3200,\n",
" 'learning_rate': 0.0001,\n",
" 'k': 15,\n",
" 'wildcard_minweight': 0.01}"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"params"
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "7526e30c",
"metadata": {},
"outputs": [],
"source": [
"def get_words_from_line(line):\n",
" line = line.rstrip()\n",
" yield '<s>'\n",
" line = preprocess(line)\n",
" for t in line.split(' '):\n",
" yield t\n",
" yield '</s>'\n",
"\n",
"\n",
"def get_word_lines_from_file(file_name):\n",
" n = 0\n",
" with lzma.open(file_name, 'r') as fh:\n",
" for line in fh:\n",
" n+=1\n",
" if n%1000==0:\n",
" print(n)\n",
" yield get_words_from_line(line.decode('utf-8'))\n"
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "01cde371",
"metadata": {},
"outputs": [],
"source": [
"def look_ahead_iterator(gen):\n",
" prev2 = None\n",
" prev1 = None\n",
" for item in gen:\n",
" if prev2 is not None and prev1 is not None:\n",
" yield (prev2, prev1, item)\n",
" prev2 = prev1\n",
" prev1 = item\n",
"\n",
"class Trigrams(IterableDataset):\n",
" def __init__(self, text_file, vocabulary_size):\n",
" self.vocab = build_vocab_from_iterator(\n",
" get_word_lines_from_file(text_file),\n",
" max_tokens = vocabulary_size,\n",
" specials = ['<unk>'])\n",
" self.vocab.set_default_index(self.vocab['<unk>'])\n",
" self.vocabulary_size = vocabulary_size\n",
" self.text_file = text_file\n",
"\n",
" def __iter__(self):\n",
" return look_ahead_iterator(\n",
" (self.vocab[t] for t in itertools.chain.from_iterable(get_word_lines_from_file(self.text_file))))\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "198b1dd3",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1000\n",
"2000\n",
"3000\n",
"4000\n",
"5000\n",
"6000\n",
"7000\n",
"8000\n",
"9000\n",
"10000\n",
"11000\n",
"12000\n",
"13000\n",
"14000\n",
"15000\n",
"16000\n",
"17000\n",
"18000\n",
"19000\n",
"20000\n",
"21000\n",
"22000\n",
"23000\n",
"24000\n",
"25000\n",
"26000\n",
"27000\n",
"28000\n",
"29000\n",
"30000\n",
"31000\n",
"32000\n",
"33000\n",
"34000\n",
"35000\n",
"36000\n",
"37000\n",
"38000\n",
"39000\n",
"40000\n",
"41000\n",
"42000\n",
"43000\n",
"44000\n",
"45000\n",
"46000\n",
"47000\n",
"48000\n",
"49000\n",
"50000\n",
"51000\n",
"52000\n",
"53000\n",
"54000\n",
"55000\n",
"56000\n",
"57000\n",
"58000\n",
"59000\n",
"60000\n",
"61000\n",
"62000\n",
"63000\n",
"64000\n",
"65000\n",
"66000\n",
"67000\n",
"68000\n",
"69000\n",
"70000\n",
"71000\n",
"72000\n",
"73000\n",
"74000\n",
"75000\n",
"76000\n",
"77000\n",
"78000\n",
"79000\n",
"80000\n",
"81000\n",
"82000\n",
"83000\n",
"84000\n",
"85000\n",
"86000\n",
"87000\n",
"88000\n",
"89000\n",
"90000\n",
"91000\n",
"92000\n",
"93000\n",
"94000\n",
"95000\n",
"96000\n",
"97000\n",
"98000\n",
"99000\n",
"100000\n",
"101000\n",
"102000\n",
"103000\n",
"104000\n",
"105000\n",
"106000\n",
"107000\n",
"108000\n",
"109000\n",
"110000\n",
"111000\n",
"112000\n",
"113000\n",
"114000\n",
"115000\n",
"116000\n",
"117000\n",
"118000\n",
"119000\n",
"120000\n",
"121000\n",
"122000\n",
"123000\n",
"124000\n",
"125000\n",
"126000\n",
"127000\n",
"128000\n",
"129000\n",
"130000\n",
"131000\n",
"132000\n",
"133000\n",
"134000\n",
"135000\n",
"136000\n",
"137000\n",
"138000\n",
"139000\n",
"140000\n",
"141000\n",
"142000\n",
"143000\n",
"144000\n",
"145000\n",
"146000\n",
"147000\n",
"148000\n",
"149000\n",
"150000\n",
"151000\n",
"152000\n",
"153000\n",
"154000\n",
"155000\n",
"156000\n",
"157000\n",
"158000\n",
"159000\n",
"160000\n",
"161000\n",
"162000\n",
"163000\n",
"164000\n",
"165000\n",
"166000\n",
"167000\n",
"168000\n",
"169000\n",
"170000\n",
"171000\n",
"172000\n",
"173000\n",
"174000\n",
"175000\n",
"176000\n",
"177000\n",
"178000\n",
"179000\n",
"180000\n",
"181000\n",
"182000\n",
"183000\n",
"184000\n",
"185000\n",
"186000\n",
"187000\n",
"188000\n",
"189000\n",
"190000\n",
"191000\n",
"192000\n",
"193000\n",
"194000\n",
"195000\n",
"196000\n",
"197000\n",
"198000\n",
"199000\n",
"200000\n",
"201000\n",
"202000\n",
"203000\n",
"204000\n",
"205000\n",
"206000\n",
"207000\n",
"208000\n",
"209000\n",
"210000\n",
"211000\n",
"212000\n",
"213000\n",
"214000\n",
"215000\n",
"216000\n",
"217000\n",
"218000\n",
"219000\n",
"220000\n",
"221000\n",
"222000\n",
"223000\n",
"224000\n",
"225000\n",
"226000\n",
"227000\n",
"228000\n",
"229000\n",
"230000\n",
"231000\n",
"232000\n",
"233000\n",
"234000\n",
"235000\n",
"236000\n",
"237000\n",
"238000\n",
"239000\n",
"240000\n",
"241000\n",
"242000\n",
"243000\n",
"244000\n",
"245000\n",
"246000\n",
"247000\n",
"248000\n",
"249000\n",
"250000\n",
"251000\n",
"252000\n",
"253000\n",
"254000\n",
"255000\n",
"256000\n",
"257000\n",
"258000\n",
"259000\n",
"260000\n",
"261000\n",
"262000\n",
"263000\n",
"264000\n",
"265000\n",
"266000\n",
"267000\n",
"268000\n",
"269000\n",
"270000\n",
"271000\n",
"272000\n",
"273000\n",
"274000\n",
"275000\n",
"276000\n",
"277000\n",
"278000\n",
"279000\n",
"280000\n",
"281000\n",
"282000\n",
"283000\n",
"284000\n",
"285000\n",
"286000\n",
"287000\n",
"288000\n",
"289000\n",
"290000\n",
"291000\n",
"292000\n",
"293000\n",
"294000\n",
"295000\n",
"296000\n",
"297000\n",
"298000\n",
"299000\n",
"300000\n",
"301000\n",
"302000\n",
"303000\n",
"304000\n",
"305000\n",
"306000\n",
"307000\n",
"308000\n",
"309000\n",
"310000\n",
"311000\n",
"312000\n",
"313000\n",
"314000\n",
"315000\n",
"316000\n",
"317000\n",
"318000\n",
"319000\n",
"320000\n",
"321000\n",
"322000\n",
"323000\n",
"324000\n",
"325000\n",
"326000\n",
"327000\n",
"328000\n",
"329000\n",
"330000\n",
"331000\n",
"332000\n",
"333000\n",
"334000\n",
"335000\n",
"336000\n",
"337000\n",
"338000\n",
"339000\n",
"340000\n",
"341000\n",
"342000\n",
"343000\n",
"344000\n",
"345000\n",
"346000\n",
"347000\n",
"348000\n",
"349000\n",
"350000\n",
"351000\n",
"352000\n",
"353000\n",
"354000\n",
"355000\n",
"356000\n",
"357000\n",
"358000\n",
"359000\n",
"360000\n",
"361000\n",
"362000\n",
"363000\n",
"364000\n",
"365000\n",
"366000\n",
"367000\n",
"368000\n",
"369000\n",
"370000\n",
"371000\n",
"372000\n",
"373000\n",
"374000\n",
"375000\n",
"376000\n",
"377000\n",
"378000\n",
"379000\n",
"380000\n",
"381000\n",
"382000\n",
"383000\n",
"384000\n",
"385000\n",
"386000\n",
"387000\n",
"388000\n",
"389000\n",
"390000\n",
"391000\n",
"392000\n",
"393000\n",
"394000\n",
"395000\n",
"396000\n",
"397000\n",
"398000\n",
"399000\n",
"400000\n",
"401000\n",
"402000\n",
"403000\n",
"404000\n",
"405000\n",
"406000\n",
"407000\n",
"408000\n",
"409000\n",
"410000\n",
"411000\n",
"412000\n",
"413000\n",
"414000\n",
"415000\n",
"416000\n",
"417000\n",
"418000\n",
"419000\n",
"420000\n",
"421000\n",
"422000\n",
"423000\n",
"424000\n",
"425000\n",
"426000\n",
"427000\n",
"428000\n",
"429000\n",
"430000\n",
"431000\n",
"432000\n"
]
}
],
"source": [
"vocab = build_vocab_from_iterator(\n",
" get_word_lines_from_file(train_file),\n",
" max_tokens = params['vocab_size'],\n",
" specials = ['<unk>'])"
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "6136fbb9",
"metadata": {},
"outputs": [],
"source": [
"with open('filename.pickle', 'wb') as handle:\n",
" pickle.dump(vocab, handle, protocol=pickle.HIGHEST_PROTOCOL)"
]
},
{
"cell_type": "code",
"execution_count": 23,
"id": "30a5b26b",
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1000\n",
"2000\n",
"3000\n",
"4000\n",
"5000\n",
"6000\n",
"7000\n",
"8000\n",
"9000\n",
"10000\n",
"11000\n",
"12000\n",
"13000\n",
"14000\n",
"15000\n",
"16000\n",
"17000\n",
"18000\n",
"19000\n",
"20000\n",
"21000\n",
"22000\n",
"23000\n",
"24000\n",
"25000\n",
"26000\n",
"27000\n",
"28000\n",
"29000\n",
"30000\n",
"31000\n",
"32000\n",
"33000\n",
"34000\n",
"35000\n",
"36000\n",
"37000\n",
"38000\n",
"39000\n",
"40000\n",
"41000\n",
"42000\n",
"43000\n",
"44000\n",
"45000\n",
"46000\n",
"47000\n",
"48000\n",
"49000\n",
"50000\n",
"51000\n",
"52000\n",
"53000\n",
"54000\n",
"55000\n",
"56000\n",
"57000\n",
"58000\n",
"59000\n",
"60000\n",
"61000\n",
"62000\n",
"63000\n",
"64000\n",
"65000\n",
"66000\n",
"67000\n",
"68000\n",
"69000\n",
"70000\n",
"71000\n",
"72000\n",
"73000\n",
"74000\n",
"75000\n",
"76000\n",
"77000\n",
"78000\n",
"79000\n",
"80000\n",
"81000\n",
"82000\n",
"83000\n",
"84000\n",
"85000\n",
"86000\n",
"87000\n",
"88000\n",
"89000\n",
"90000\n",
"91000\n",
"92000\n",
"93000\n",
"94000\n",
"95000\n",
"96000\n",
"97000\n",
"98000\n",
"99000\n",
"100000\n",
"101000\n",
"102000\n",
"103000\n",
"104000\n",
"105000\n",
"106000\n",
"107000\n",
"108000\n",
"109000\n",
"110000\n",
"111000\n",
"112000\n",
"113000\n",
"114000\n",
"115000\n",
"116000\n",
"117000\n",
"118000\n",
"119000\n",
"120000\n",
"121000\n",
"122000\n",
"123000\n",
"124000\n",
"125000\n",
"126000\n",
"127000\n",
"128000\n",
"129000\n",
"130000\n",
"131000\n",
"132000\n",
"133000\n",
"134000\n",
"135000\n",
"136000\n",
"137000\n",
"138000\n",
"139000\n",
"140000\n",
"141000\n",
"142000\n",
"143000\n",
"144000\n",
"145000\n",
"146000\n",
"147000\n",
"148000\n",
"149000\n",
"150000\n",
"151000\n",
"152000\n",
"153000\n",
"154000\n",
"155000\n",
"156000\n",
"157000\n",
"158000\n",
"159000\n",
"160000\n",
"161000\n",
"162000\n",
"163000\n",
"164000\n",
"165000\n",
"166000\n",
"167000\n",
"168000\n",
"169000\n",
"170000\n",
"171000\n",
"172000\n",
"173000\n",
"174000\n",
"175000\n",
"176000\n",
"177000\n",
"178000\n",
"179000\n",
"180000\n",
"181000\n",
"182000\n",
"183000\n",
"184000\n",
"185000\n",
"186000\n",
"187000\n",
"188000\n",
"189000\n",
"190000\n",
"191000\n",
"192000\n",
"193000\n",
"194000\n",
"195000\n",
"196000\n",
"197000\n",
"198000\n",
"199000\n",
"200000\n",
"201000\n",
"202000\n",
"203000\n",
"204000\n",
"205000\n",
"206000\n",
"207000\n",
"208000\n",
"209000\n",
"210000\n",
"211000\n",
"212000\n",
"213000\n",
"214000\n",
"215000\n",
"216000\n",
"217000\n",
"218000\n",
"219000\n",
"220000\n",
"221000\n",
"222000\n",
"223000\n",
"224000\n",
"225000\n",
"226000\n",
"227000\n",
"228000\n",
"229000\n",
"230000\n",
"231000\n",
"232000\n",
"233000\n",
"234000\n",
"235000\n",
"236000\n",
"237000\n",
"238000\n",
"239000\n",
"240000\n",
"241000\n",
"242000\n",
"243000\n",
"244000\n",
"245000\n",
"246000\n",
"247000\n",
"248000\n",
"249000\n",
"250000\n",
"251000\n",
"252000\n",
"253000\n",
"254000\n",
"255000\n",
"256000\n",
"257000\n",
"258000\n",
"259000\n",
"260000\n",
"261000\n",
"262000\n",
"263000\n",
"264000\n",
"265000\n",
"266000\n",
"267000\n",
"268000\n",
"269000\n",
"270000\n",
"271000\n",
"272000\n",
"273000\n",
"274000\n",
"275000\n",
"276000\n",
"277000\n",
"278000\n",
"279000\n",
"280000\n",
"281000\n",
"282000\n",
"283000\n",
"284000\n",
"285000\n",
"286000\n",
"287000\n",
"288000\n",
"289000\n",
"290000\n",
"291000\n",
"292000\n",
"293000\n",
"294000\n",
"295000\n",
"296000\n",
"297000\n",
"298000\n",
"299000\n",
"300000\n",
"301000\n",
"302000\n",
"303000\n",
"304000\n",
"305000\n",
"306000\n",
"307000\n",
"308000\n",
"309000\n",
"310000\n",
"311000\n",
"312000\n",
"313000\n",
"314000\n",
"315000\n",
"316000\n",
"317000\n",
"318000\n",
"319000\n",
"320000\n",
"321000\n",
"322000\n",
"323000\n",
"324000\n",
"325000\n",
"326000\n",
"327000\n",
"328000\n",
"329000\n",
"330000\n",
"331000\n",
"332000\n",
"333000\n",
"334000\n",
"335000\n",
"336000\n",
"337000\n",
"338000\n",
"339000\n",
"340000\n",
"341000\n",
"342000\n",
"343000\n",
"344000\n",
"345000\n",
"346000\n",
"347000\n",
"348000\n",
"349000\n",
"350000\n",
"351000\n",
"352000\n",
"353000\n",
"354000\n",
"355000\n",
"356000\n",
"357000\n",
"358000\n",
"359000\n",
"360000\n",
"361000\n",
"362000\n",
"363000\n",
"364000\n",
"365000\n",
"366000\n",
"367000\n",
"368000\n",
"369000\n",
"370000\n",
"371000\n",
"372000\n",
"373000\n",
"374000\n",
"375000\n",
"376000\n",
"377000\n",
"378000\n",
"379000\n",
"380000\n",
"381000\n",
"382000\n",
"383000\n",
"384000\n",
"385000\n",
"386000\n",
"387000\n",
"388000\n",
"389000\n",
"390000\n",
"391000\n",
"392000\n",
"393000\n",
"394000\n",
"395000\n",
"396000\n",
"397000\n",
"398000\n",
"399000\n",
"400000\n",
"401000\n",
"402000\n",
"403000\n",
"404000\n",
"405000\n",
"406000\n",
"407000\n",
"408000\n",
"409000\n",
"410000\n",
"411000\n",
"412000\n",
"413000\n",
"414000\n",
"415000\n",
"416000\n",
"417000\n",
"418000\n",
"419000\n",
"420000\n",
"421000\n",
"422000\n",
"423000\n",
"424000\n",
"425000\n",
"426000\n",
"427000\n",
"428000\n",
"429000\n",
"430000\n",
"431000\n",
"432000\n"
]
}
],
"source": [
"with open('filename.pickle','rb') as handle:\n",
" vocab = pickle.load(handle)\n",
" \n",
"train_dataset = Trigrams(train_file, params['vocab_size'])"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "eaa681b4",
"metadata": {},
"outputs": [],
"source": [
"data = DataLoader(train_dataset, batch_size=params['batch_size']) #load data "
]
},
{
"cell_type": "code",
"execution_count": 16,
"id": "3aea0574",
"metadata": {},
"outputs": [],
"source": [
"class SimpleTrigramNeuralLanguageModel(nn.Module):\n",
" def __init__(self, vocabulary_size, embedding_size):\n",
" super(SimpleTrigramNeuralLanguageModel, self).__init__()\n",
" self.embeddings = nn.Embedding(vocabulary_size, embedding_size)\n",
" self.linear = nn.Linear(2*embedding_size, vocabulary_size)\n",
" self.linear_matrix_2 = nn.Linear(embedding_size*2, embedding_size*2)\n",
" self.relu = nn.ReLU()\n",
" self.softmax = nn.Softmax()\n",
" \n",
" #for each word in vocabulary theres a separate embedding vector, consisting of embedding_size entries\n",
" #self.linear is linear layer consisting of concatenated embeddings of left, and right context words\n",
" #self.linear_matrix_2 is linear layer \n",
" \n",
" def forward(self, x): #x is list of prev and following embeddings\n",
" emb_left = self.embeddings(x[0])\n",
" emb_right = self.embeddings(x[1])\n",
" #create two embeddings vectors, for word before and after, respectively\n",
" \n",
" first_layer_size_2 = self.linear_matrix_2(torch.cat((emb_left, emb_right), dim=1))\n",
" first_relu = self.relu(first_layer_size_2)\n",
" concated = self.linear(first_relu)\n",
" out = self.softmax(concated)\n",
" return out"
]
},
{
"cell_type": "code",
"execution_count": 24,
"id": "e4757295",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import gc\n",
"torch.cuda.empty_cache()\n",
"gc.collect()"
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "0a41831e",
"metadata": {},
"outputs": [],
"source": [
"device = 'cuda'\n",
"model = SimpleTrigramNeuralLanguageModel(params['vocab_size'], params['embed_size']).to(device)\n",
"optimizer = torch.optim.Adam(model.parameters(), lr=params['learning_rate'])\n",
"criterion = torch.nn.NLLLoss()"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "281b9010",
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"epoch: = 0\n",
"0 tensor(5.3414, device='cuda:0', grad_fn=<NllLossBackward0>)\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/ipykernel_37433/606935597.py:22: UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.\n",
" out = self.softmax(concated)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"1000\n",
"100 tensor(5.4870, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"200 tensor(5.3542, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"2000\n",
"300 tensor(5.3792, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"3000\n",
"400 tensor(5.5982, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"4000\n",
"500 tensor(5.4045, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"5000\n",
"600 tensor(5.5620, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"6000\n",
"700 tensor(5.5428, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"7000\n",
"800 tensor(5.3684, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"8000\n",
"900 tensor(5.4198, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"9000\n",
"1000 tensor(5.4100, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"10000\n",
"1100 tensor(5.4554, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"11000\n",
"1200 tensor(5.5284, device='cuda:0', grad_fn=<NllLossBackward0>)\n",
"12000\n",
"1300 tensor(5.5495, device='cuda:0', grad_fn=<NllLossBackward0>)\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/gedin/.local/lib/python3.10/site-packages/torch/autograd/__init__.py:200: UserWarning: Error detected in LogBackward0. Traceback of forward call that caused the error:\n",
" File \"/usr/lib/python3.10/runpy.py\", line 196, in _run_module_as_main\n",
" return _run_code(code, main_globals, None,\n",
" File \"/usr/lib/python3.10/runpy.py\", line 86, in _run_code\n",
" exec(code, run_globals)\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel_launcher.py\", line 17, in <module>\n",
" app.launch_new_instance()\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/traitlets/config/application.py\", line 1043, in launch_instance\n",
" app.start()\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel/kernelapp.py\", line 725, in start\n",
" self.io_loop.start()\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/tornado/platform/asyncio.py\", line 195, in start\n",
" self.asyncio_loop.run_forever()\n",
" File \"/usr/lib/python3.10/asyncio/base_events.py\", line 600, in run_forever\n",
" self._run_once()\n",
" File \"/usr/lib/python3.10/asyncio/base_events.py\", line 1896, in _run_once\n",
" handle._run()\n",
" File \"/usr/lib/python3.10/asyncio/events.py\", line 80, in _run\n",
" self._context.run(self._callback, *self._args)\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel/kernelbase.py\", line 513, in dispatch_queue\n",
" await self.process_one()\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel/kernelbase.py\", line 502, in process_one\n",
" await dispatch(*args)\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel/kernelbase.py\", line 409, in dispatch_shell\n",
" await result\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel/kernelbase.py\", line 729, in execute_request\n",
" reply_content = await reply_content\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel/ipkernel.py\", line 422, in do_execute\n",
" res = shell.run_cell(\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/ipykernel/zmqshell.py\", line 540, in run_cell\n",
" return super().run_cell(*args, **kwargs)\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/IPython/core/interactiveshell.py\", line 3009, in run_cell\n",
" result = self._run_cell(\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/IPython/core/interactiveshell.py\", line 3064, in _run_cell\n",
" result = runner(coro)\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/IPython/core/async_helpers.py\", line 129, in _pseudo_sync_runner\n",
" coro.send(None)\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/IPython/core/interactiveshell.py\", line 3269, in run_cell_async\n",
" has_raised = await self.run_ast_nodes(code_ast.body, cell_name,\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/IPython/core/interactiveshell.py\", line 3448, in run_ast_nodes\n",
" if await self.run_code(code, result, async_=asy):\n",
" File \"/home/gedin/.local/lib/python3.10/site-packages/IPython/core/interactiveshell.py\", line 3508, in run_code\n",
" exec(code_obj, self.user_global_ns, self.user_ns)\n",
" File \"/tmp/ipykernel_37433/1707264841.py\", line 13, in <module>\n",
" loss = criterion(torch.log(ypredicted), x) #x is to_predict\n",
" (Triggered internally at ../torch/csrc/autograd/python_anomaly_mode.cpp:114.)\n",
" Variable._execution_engine.run_backward( # Calls into the C++ engine to run the backward pass\n"
]
},
{
"ename": "RuntimeError",
"evalue": "Function 'LogBackward0' returned nan values in its 0th output.",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mRuntimeError\u001b[0m Traceback (most recent call last)",
"Cell \u001b[0;32mIn[26], line 19\u001b[0m\n\u001b[1;32m 16\u001b[0m step \u001b[38;5;241m+\u001b[39m\u001b[38;5;241m=\u001b[39m \u001b[38;5;241m1\u001b[39m\n\u001b[1;32m 17\u001b[0m \u001b[38;5;66;03m# if step % 10000 == 0:\u001b[39;00m\n\u001b[1;32m 18\u001b[0m \u001b[38;5;66;03m# torch.save(model.state_dict(), f'model-tri-2following-{step}.bin')\u001b[39;00m\n\u001b[0;32m---> 19\u001b[0m \u001b[43mloss\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mbackward\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 20\u001b[0m optimizer\u001b[38;5;241m.\u001b[39mstep()\n\u001b[1;32m 21\u001b[0m \u001b[38;5;66;03m# torch.save(model.state_dict(), f'model-tri-2following-{i}.bin') \u001b[39;00m\n\u001b[1;32m 22\u001b[0m \u001b[38;5;66;03m# torch.save(model.state_dict(), f'model-tri-2following-final.bin')\u001b[39;00m\n",
"File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/_tensor.py:487\u001b[0m, in \u001b[0;36mTensor.backward\u001b[0;34m(self, gradient, retain_graph, create_graph, inputs)\u001b[0m\n\u001b[1;32m 477\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m has_torch_function_unary(\u001b[38;5;28mself\u001b[39m):\n\u001b[1;32m 478\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m handle_torch_function(\n\u001b[1;32m 479\u001b[0m Tensor\u001b[38;5;241m.\u001b[39mbackward,\n\u001b[1;32m 480\u001b[0m (\u001b[38;5;28mself\u001b[39m,),\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 485\u001b[0m inputs\u001b[38;5;241m=\u001b[39minputs,\n\u001b[1;32m 486\u001b[0m )\n\u001b[0;32m--> 487\u001b[0m \u001b[43mtorch\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mautograd\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mbackward\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 488\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mgradient\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mretain_graph\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcreate_graph\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43minputs\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43minputs\u001b[49m\n\u001b[1;32m 489\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n",
"File \u001b[0;32m~/.local/lib/python3.10/site-packages/torch/autograd/__init__.py:200\u001b[0m, in \u001b[0;36mbackward\u001b[0;34m(tensors, grad_tensors, retain_graph, create_graph, grad_variables, inputs)\u001b[0m\n\u001b[1;32m 195\u001b[0m retain_graph \u001b[38;5;241m=\u001b[39m create_graph\n\u001b[1;32m 197\u001b[0m \u001b[38;5;66;03m# The reason we repeat same the comment below is that\u001b[39;00m\n\u001b[1;32m 198\u001b[0m \u001b[38;5;66;03m# some Python versions print out the first line of a multi-line function\u001b[39;00m\n\u001b[1;32m 199\u001b[0m \u001b[38;5;66;03m# calls in the traceback and some print out the last line\u001b[39;00m\n\u001b[0;32m--> 200\u001b[0m \u001b[43mVariable\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_execution_engine\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrun_backward\u001b[49m\u001b[43m(\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;66;43;03m# Calls into the C++ engine to run the backward pass\u001b[39;49;00m\n\u001b[1;32m 201\u001b[0m \u001b[43m \u001b[49m\u001b[43mtensors\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mgrad_tensors_\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mretain_graph\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcreate_graph\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43minputs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 202\u001b[0m \u001b[43m \u001b[49m\u001b[43mallow_unreachable\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maccumulate_grad\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n",
"\u001b[0;31mRuntimeError\u001b[0m: Function 'LogBackward0' returned nan values in its 0th output."
]
}
],
"source": [
"torch.autograd.set_detect_anomaly(True)\n",
"model.load_state_dict(torch.load(f'model-tri-2following-40000.bin'))\n",
"for i in range(params['epochs']):\n",
" print('epoch: =', i)\n",
" model.train()\n",
" step = 0\n",
" for x, y, z in data: # word, following, 2nd_following words\n",
" x = x.to(device)\n",
" y = y.to(device)\n",
" z = z.to(device)\n",
" optimizer.zero_grad()\n",
" ypredicted = model([y, z]) #following, 2nd_following word\n",
" loss = criterion(torch.log(ypredicted), x) #x is to_predict\n",
" if step % 100 == 0:\n",
" print(step, loss)\n",
" step += 1\n",
"# if step % 10000 == 0:\n",
"# torch.save(model.state_dict(), f'model-tri-2following-{step}.bin')\n",
" loss.backward()\n",
" optimizer.step()\n",
"# torch.save(model.state_dict(), f'model-tri-2following-{i}.bin') \n",
"# torch.save(model.state_dict(), f'model-tri-2following-final.bin')"
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "54b018d8",
"metadata": {},
"outputs": [],
"source": [
"torch.save(model.state_dict(), f'model-tri-2following-final.bin')"
]
},
{
"cell_type": "code",
"execution_count": 30,
"id": "7dd5e6f8",
"metadata": {},
"outputs": [],
"source": [
"def get_first_word(text):\n",
" \"\"\"Return the first word of a string.\"\"\"\n",
" word = \"\"\n",
" for i in range(len(text)-1):\n",
"# if text[i] in [' ', ',', '.']\n",
" if text[i] == ' ':\n",
" return word.rstrip()\n",
" else:\n",
" word += text[i]\n",
" return word.rstrip()\n",
"\n",
"def get_values_from_model(context: list, model, vocab, k=10):\n",
" words = [vocab.forward([word]) for word in context]\n",
" ixs = torch.tensor(words).to(device)\n",
" out = model(ixs)\n",
" top = torch.topk(out[0], k)\n",
" top_indices = top.indices.tolist()\n",
" top_probs = top.values.tolist()\n",
" top_words = vocab.lookup_tokens(top_indices)\n",
" return list(zip(top_words, top_probs))\n",
"\n",
"def summarize_probs_unk(dic, const_wildcard=True):\n",
" ''' \n",
" dic: dictionary of probabilities returned by model \n",
" returns: tab of probabilities, with <unk> specificly as last element\n",
" '''\n",
" if const_wildcard or '<unk>' not in dic.keys(): \n",
" if '<unk>' in dic.keys():\n",
" del dic['<unk>']\n",
" probsum = sum(float(val) for key, val in dic.items())\n",
" for key in dic:\n",
" dic[key] = dic[key]/probsum*(1-wildcard_minweight) ###leave some space for wildcard\n",
" tab = [(key, val) for key, val in dic.items()]\n",
" tab.append(('<unk>', wildcard_minweight))\n",
" else:\n",
" probsum = sum(float(val) for key, val in dic.items())\n",
" for key in dic:\n",
" dic[key] = dic[key]/probsum*(1-wildcard_minweight) ###leave some space for wildcard\n",
" wildcard_value = dic['<unk>']\n",
" del dic['<unk>']\n",
" tab = [(key, val) for key, val in dic.items()]\n",
" tab.append(('<unk>', wildcard_value))\n",
" \n",
" return tab\n",
"\n",
"def gonito_format(dic, const_wildcard = True):\n",
" tab = summarize_probs_unk(dic, const_wildcard)\n",
" result = ''\n",
" for element in tab[:-1]:\n",
" result+=str(element[0])+':'+str(element[1])+'\\t'\n",
" result+=':'+ str(tab[-1][1]) + '\\n'\n",
" return result"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "2b7513f3",
"metadata": {},
"outputs": [],
"source": [
"###preprocessing\n",
"def preprocess(line):\n",
" line = get_rid_of_header(line)\n",
" line = replace_endline(line)\n",
" return line\n",
"\n",
"def get_rid_of_header(line):\n",
" line = line.split('\\t')[6:]\n",
" return \" \".join(line)\n",
" \n",
"def replace_endline(line):\n",
" line = line.replace(\"\\\\n\", \" \")\n",
" return line"
]
},
{
"cell_type": "code",
2023-06-28 19:45:31 +02:00
"execution_count": 44,
2023-06-28 19:20:16 +02:00
"id": "4b0e66e2",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
2023-06-28 19:45:31 +02:00
"/tmp/ipykernel_4654/606935597.py:22: UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.\n",
2023-06-28 19:20:16 +02:00
" out = self.softmax(concated)\n"
]
},
{
"data": {
"text/plain": [
2023-06-28 19:45:31 +02:00
"[('<unk>', 0, 0.09396536648273468),\n",
" ('he', 20, 0.06469981372356415),\n",
" ('I', 25, 0.05796860530972481),\n",
" ('have', 28, 0.03896494582295418),\n",
" ('had', 35, 0.03859648108482361),\n",
" ('who', 46, 0.03718526288866997),\n",
" ('and', 3, 0.03539585694670677),\n",
" ('we', 51, 0.028498027473688126),\n",
" ('they', 41, 0.027544576674699783),\n",
" ('has', 36, 0.02714056707918644)]"
2023-06-28 19:20:16 +02:00
]
},
2023-06-28 19:45:31 +02:00
"execution_count": 44,
2023-06-28 19:20:16 +02:00
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\n",
2023-06-28 19:45:31 +02:00
"ixs = torch.tensor([vocab.forward(['met']), vocab.forward(['the'])]).to(device)\n",
2023-06-28 19:20:16 +02:00
"\n",
"out = model(ixs)\n",
"top = torch.topk(out[0], 10)\n",
"top_indices = top.indices.tolist()\n",
"top_probs = top.values.tolist()\n",
"top_words = vocab.lookup_tokens(top_indices)\n",
"list(zip(top_words, top_indices, top_probs))"
]
},
{
"cell_type": "code",
"execution_count": 18,
"id": "a92abbf2",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<All keys matched successfully>"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"model.load_state_dict(torch.load(f'model-tri-2following-final.bin'))"
]
},
{
"cell_type": "code",
2023-06-28 19:45:31 +02:00
"execution_count": 80,
2023-06-28 19:20:16 +02:00
"id": "fc7cf293",
2023-06-28 19:45:31 +02:00
"metadata": {
"scrolled": true
},
2023-06-28 19:20:16 +02:00
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/ipykernel_4654/606935597.py:22: UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.\n",
" out = self.softmax(concated)\n"
]
}
],
"source": [
"with lzma.open(test_file, 'rt') as file:\n",
" predict_words = []\n",
" results = []\n",
" for line in file:\n",
" line = replace_endline(line) #get only relevant\n",
" line = line.split('\\t')[6:]\n",
" context = line[1].rstrip().split(\" \")[:2]\n",
" predict_words.append(context) #get_first_word(split[1cd \n",
" vocab = train_dataset.vocab\n",
" for context_words in predict_words:\n",
" results.append(dict(get_values_from_model(context_words, model, vocab, k=10)))\n",
" with open(out_file, 'w') as outfile:\n",
" for elem in results: \n",
2023-06-28 19:45:31 +02:00
" outfile.write(gonito_format(elem, const_wildcard=True))\n"
2023-06-28 19:20:16 +02:00
]
},
{
"cell_type": "code",
2023-06-28 19:45:31 +02:00
"execution_count": 46,
"id": "b6eea81b",
"metadata": {},
"outputs": [],
"source": [
"results = list(results)"
]
},
{
"cell_type": "code",
"execution_count": 47,
2023-06-28 19:20:16 +02:00
"id": "1c31c8ba",
2023-06-28 19:45:31 +02:00
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[{'the': 0.10045935900113911, 'of': 0.09020703498174018, 'to': 0.07924349156201368, 'and': 0.0687043339508765, 'in': 0.035015639993431324, 'a': 0.02811431086085686, 'was': 0.026999271757820558, 'be': 0.026419852650704238, 'is': 0.023909866992206572}, {'hundred': 0.20690368234980644, 'dred': 0.016862763374890333, 'eight': 0.013369172273239058, 'degrees': 0.012332104811390751, 'due': 0.010984631321651445, 'north': 0.010787863089447845, 'long': 0.010781825654392464, 'men': 0.010748705564928452, 'dollars': 0.010353799961502293}, {'a': 0.31913240489183115, 'the': 0.29517514506313536, 'this': 0.03733548506569633, 'other': 0.03346940461082642, 'of': 0.029560266108464378, 'and': 0.027238732099718253, 'his': 0.02464437327147875, 'The': 0.022107688801149376, 'tho': 0.019238808380424022}, {'it': 0.12313666494965082, 'they': 0.09809807147696818, 'and': 0.09538885794663812, 'which': 0.07856739159691196, 'he': 0.07315362717066948, 'you': 0.05933349337797105, 'It': 0.05768125116308933, 'I': 0.05325317144734862, 'who': 0.05107053678019961}, {'able': 0.07961428813139447, 'and': 0.06436580425535794, 'order': 0.05944584661270446, 'enough': 0.05535994189099476, 'is': 0.05259523130255037, 'him': 0.04783945150003834, 'right': 0.04600587504040582, 'was': 0.04175523211107633, 'attempt': 0.04150709254376553}, {'is': 0.2608770755724768, 'be': 0.20575276031986306, 'are': 0.1338398713547665, 'was': 0.1118212203408189, 'and': 0.07193410912133091, 'been': 0.03780245983287595, 'Is': 0.03569511082801162, 'not': 0.03503930345481243, 'were': 0.03471570687239965}, {'and': 0.11466261124671324, 'was': 0.04183008781999923, 'held': 0.03556966805171333, 'Beginning': 0.02896819071614559, 'is': 0.02752856476682257, 'look': 0.026279900325162895, 'arrived': 0.02597799389057782, 'that': 0.025271294744426742, 'interest': 0.023893646310221173}, {'and': 0.16957236400787742, 'of': 0.15506373174177102, 'is': 0.05972843394247045, 'are': 0.054696326302563894, 'it': 0.053547222446006154, 'after': 0.05183126867257247, 'in': 0.044955435420652556, 'that': 0.030219711613628224, 'was': 0.029089699684159868}, {'of': 0.3287840108669292, 'in': 0.1476102622703524, 'and': 0.09287489857842618, 'to': 0.07326467224134693, 'with': 0.06666276053146637, 'for': 0.06049905777628176, 'that': 0.03937292847428804, 'In': 0.03436891606486899, 'on': 0.029590420196550105}, {'and': 0.1916144003594524, 'that': 0.1563949444429718, 'as': 0.15293878062521685, 'but': 0.0470765399601518, 'even': 0.03760902868782509, 'or': 0.023812013359426402, 'But': 0.023581596614490816, 'And': 0.020098171397989948, 'and,': 0.019637785089070197}, {'the': 0.13076105450013367, 'of': 0.07932046947702465, 'and': 0.06342011000830029, 'a': 0.04719279250755952, 'to': 0.03434272517566016, 'in': 0.02287173009664328, 'at': 0.01565478400803208, '.': 0.013742326351524834, '<s>': 0.013617783682502283}, {'the': 0.6393111587022597, 'a': 0.10767817154861956, 'be-': 0.0555827194410335, 'The': 0.04178207944040472, 'tho': 0.03302689921850989, 'be¬': 0.019300467391603498, 'be\\xad': 0.017527640536319732, 'no': 0.015098851914992942, 'and': 0.014877314298270666}, {'of': 0.15786307631865973, 'and': 0.09250487917070395, 'to': 0.07076873636574574, 'the': 0.06835458641123807, 'for': 0.0453165033737888, 'a': 0.04042067157826448, 'be': 0.03635896748170421, 'in': 0.036297053106387714, 'was': 0.028164325797017387}, {'<s>': 0.05372299671472597, 'and': 0.0440015126417723, 'made': 0.02147776545770418, 'was': 0.020722601671332417, 'recorded': 0.01721332982044608, 'that': 0.016451625802595585, 'be': 0.014674645262778993, 'is': 0.013649312208410971, \"o'clock\": 0.013164741234437755}, {'to': 0.4237042010146807, 'and': 0.09692563225112366, 'we': 0.08156115576813223, 'I': 0.06631791784129659, 'will': 0.06319941215941968, 'not': 0.060431779169219046, 'would': 0.04945880964420607, 'they': 0.035273200121302695, 'you': 0.03394613646981348}, {'and': 0.06600055005904051, 'of': 0.04573176154825926, 'to': 0.03740627307784408, 'the': 0.034478558933606754, '<s>': 0.019362990957125792, 'a': 0.01754170116395031, 'his': 0.016445400170589472, 'in': 0.01602957312
]
}
],
"source": [
"print(results)"
]
},
{
"cell_type": "code",
"execution_count": 74,
"id": "e5aabcc8",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"the:0.2075982821656445\tof:0.18641195492052776\tto:0.16375589974544083\tand:0.1419768336902786\tin:0.07235947734331605\ta:0.058097948235152734\twas:0.05579373084177645\tbe:0.05459636692777878\tis:0.04940950613008435\t:0.01\n",
"hundred:0.6757441672297904\tdred:0.05507351954564642\teight:0.04366350604170379\tdegrees:0.04027646004808544\tdue:0.03587563285715768\tnorth:0.035232990910443074\tlong:0.03521327274265905\tmen:0.03510510305220571\tdollars:0.03381534757230845\t:0.01\n",
"a:0.3910634709171287\tthe:0.3617063481722642\tthis:0.04575074218211916\tother:0.04101326388674283\tof:0.03622302244589748\tand:0.0333782246961355\this:0.030199108590644053\tThe:0.027090666394293545\ttho:0.023575152714774478\t:0.01\n",
"it:0.17675553355714846\tthey:0.14081408629938666\tand:0.1369251675661277\twhich:0.11277892922943723\the:0.10500778470392592\tyou:0.08516978500368706\tIt:0.08279808722888964\tI:0.07644183587914444\twho:0.07330879053225287\t:0.01\n",
"able:0.16135098933162126\tand:0.13044751689027728\torder:0.12047644195204926\tenough:0.11219570761860198\tis:0.10659258286384826\thim:0.09695424037295979\tright:0.09323820669708727\twas:0.0846236042426778\tattempt:0.08412071003087702\t:0.01\n",
"is:0.2784631131670363\tbe:0.2196228014885983\tare:0.1428621781409449\twas:0.11935922336568351\tand:0.07678327398015508\tbeen:0.040350769140349345\tIs:0.038101361203158074\tnot:0.03740134506575619\twere:0.03705593444831832\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"and:0.2587876600214367\tof:0.23664575608429053\tis:0.09115271670092913\tare:0.08347312003595064\tit:0.08171945044538946\tafter:0.0791007002479149\tin:0.06860735831467818\tthat:0.04611888559063895\twas:0.044394352558771576\t:0.01\n",
"of:0.37283592046886466\tin:0.16738772624345097\tand:0.10531868082220948\tto:0.0830809911982244\twith:0.0755945266870176\tfor:0.06860498426928782\tthat:0.044648284417965\tIn:0.038973812694768954\ton:0.03355507319821109\t:0.01\n",
"and:0.2819688105509132\tthat:0.2301418702249719\tas:0.22505597689475598\tbut:0.06927514817526978\teven:0.0553432991736943\tor:0.03504039921417471\tBut:0.0347013310889262\tAnd:0.029575321440918265\tand,:0.028897843236375672\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.6703324500442436\ta:0.11290303879098454\tbe-:0.058279759387684996\tThe:0.04380947101890577\ttho:0.03462946324204335\tbe¬:0.02023698384973438\tbe­:0.0183781341280763\tno:0.015831493411717704\tand:0.015599206126609378\t:0.01\n",
"of:0.2713041771166653\tand:0.15897929210516643\tto:0.12162346150241224\tthe:0.11747449277509675\tfor:0.07788114196389266\ta:0.06946714391215615\tbe:0.06248668139168508\tin:0.06238027507401627\twas:0.048403334158909184\t:0.01\n",
"<s>:0.24728533594793464\tand:0.20253763753382348\tmade:0.0988615075741576\twas:0.09538551140811594\trecorded:0.07923243876425153\tthat:0.07572633810967984\tbe:0.06754695020072057\tis:0.06282737303055098\to'clock:0.06059690743076549\t:0.01\n",
"to:0.46053881942473246\tand:0.10535183777274285\twe:0.08865165438156905\tI:0.07208324939001232\twill:0.06869363719909811\tnot:0.065685400729279\twould:0.05375849885166945\tthey:0.03833966692398743\tyou:0.036897235326909306\t:0.01\n",
"and:0.24375788641111382\tof:0.16889976715177063\tto:0.13815148594694573\tthe:0.12733864558157276\t<s>:0.07151276384945796\ta:0.06478624793209892\this:0.0607373117827336\tin:0.0592015500274423\tat:0.05561434131686416\t:0.01\n",
"of:0.41423916949970646\tto:0.15132104071022856\tand:0.10874929347751575\tfor:0.07131192514304915\twith:0.07117782824129337\tby:0.0641198672951466\tthat:0.03758189736686034\tfrom:0.03750168565790937\ton:0.033997292608290354\t:0.01\n",
"and:0.26958579283201645\tthem:0.11612667884598861\tput:0.11344325375628718\tout:0.1013617992958137\tcarry:0.08227680625552684\twas:0.07994197358382521\twork:0.07720203559131127\tit:0.07531599500828415\tthat:0.07474566483094668\t:0.01\n",
"of:0.3241150061345983\tand:0.1774251949735989\tin:0.10544507048740555\tto:0.10116454824675855\tthat:0.07659656642832684\ton:0.06455299454022724\tfor:0.06273561211239223\tthings:0.04287039325002043\tthose:0.03509461382667204\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.24738383723470325\tof:0.19203822110083657\tas:0.10987989596377462\tthat:0.09956181767917707\tall:0.09205302262274494\tbut:0.08064260519657017\tfor:0.07500863673578351\tso:0.05332938232021526\tfact:0.04010258114619455\t:0.01\n",
"to:0.3654474410099953\twill:0.2003951863899563\tnot:0.09837915490302267\tmay:0.06278904609064165\tthe:0.05736604149022529\tand:0.05539018039091507\tshall:0.05437404002895165\ta:0.04877939372652326\twould:0.04707951596976878\t:0.01\n",
"with-:0.14105775367139364\tand:0.13434116781737443\tfind:0.13400974181205136\tpointed:0.11694065988780132\tgo:0.10421914379622045\tcarry:0.10315983714917693\tget:0.08609281170529563\tbrought:0.08534438894165561\twent:0.08483449521903062\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"and:0.2322863021107167\tto:0.15124778176563825\twill:0.10855322503039304\tnot:0.10165334863627778\tI:0.09539587338510726\tthe:0.09261715385794266\twould:0.0717232282216183\the:0.06932636746394916\tis:0.06719671952835693\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.4450542207523196\tof:0.16450133778327172\ta:0.1156910986974663\tand:0.06433713111281826\tby:0.0567674140666121\tfor:0.05396616187638563\tto:0.04261884665193784\tThe:0.025852380388849166\twith:0.021211408670339455\t:0.01\n",
"and:0.20921559173314935\tit:0.2002507861785411\tto:0.1281696310205618\tthat:0.10104121777462508\tis:0.0948109607295494\tIt:0.07189786648918096\tof:0.06256452819378282\twas:0.06243893496665761\twhich:0.05961048291395182\t:0.01\n",
"the:0.3323475914517543\tof:0.30429733953970206\this:0.05912057999500091\tto:0.05787339399165412\tin:0.05315061670519715\ttheir:0.05271140435322497\tgood:0.050581384808583985\tpublic:0.04169566223407192\tperfect:0.03822202692081057\t:0.01\n",
"was:0.16000634436631433\tlooked:0.12992216642528343\tand:0.12861012418271928\theld:0.12413082898767072\tarrived:0.11539053322824105\tpresided:0.09299934296655213\tlaughed:0.08829151807731832\tcalled:0.07818764169862265\tbe:0.07246150006727811\t:0.01\n",
"to:0.20561394749759682\tthe:0.2035124044356328\tof:0.16642006910341298\tand:0.13092953679922395\tin:0.07409286695411728\tbe:0.0618425766741021\twas:0.054477010016655565\tthat:0.04738715030533824\tfor:0.04572443821392009\t:0.01\n",
"we:0.19518728513705555\tI:0.14104367184427397\tthey:0.11186642990136639\tand:0.10943603382182511\the:0.10263725464971135\twho:0.09758694134273097\twhich:0.09634607648504812\tit:0.09240949941809264\tthat:0.0434868073998958\t:0.01\n",
"the:0.4688302487407949\ta:0.19140895771735264\tat:0.07410696944848191\tof:0.05992745776733672\tThe:0.059309912437552736\tan:0.03885462192770621\tfor:0.038173998968084516\tand:0.033152147814163195\ttho:0.026235685178527417\t:0.01\n",
"the:0.30066537045736186\tof:0.18083337303704702\tand:0.14849071523579158\tto:0.13697527746982274\tfor:0.05023447445190032\tin:0.049590724586391306\tbe:0.04591187306033971\tis:0.04039018647411833\twas:0.03690800522722708\t:0.01\n",
"and:0.15898645693009783\tmen:0.13092657476152608\tin:0.12116039789715445\t;:0.11579251612560522\tthere:0.09958744460946345\tto:0.09498754381929934\t:0.09015686854101437\tright:0.08926479398275061\tman:0.08913740333308875\t:0.01\n",
"of:0.2759248916315242\tand:0.1697610281212568\tor:0.14188210103775667\tthe:0.09977216595042722\tabout:0.07533567221551868\tto:0.07029508950663647\tfor:0.06430139578657754\tby:0.051465790463847985\tin:0.04126186528645438\t:0.01\n",
"and:0.18256157749026333\tto:0.16433979570443547\tof:0.15457884979586445\tthe:0.1277827385426324\twas:0.08436879473166353\tbe:0.0802923412409957\tfor:0.07572785229194459\tis:0.06129413214409847\tin:0.05905391805810186\t:0.01\n",
"feet;:0.2807567469855497\t;:0.10987123625000587\trunning:0.10412492020173009\tfeet,:0.10313000520156666\t2;:0.09803596238770867\t3;:0.08433886765739775\t4;:0.07636036253895638\t5;:0.06697745013470016\tfeet::0.06640444864238465\t:0.01\n",
"No.:0.29488140101299964\tand:0.18171527787482267\tthe:0.13267233967362788\tsection:0.10393674592608021\tSection:0.07795009570498498\tBook:0.06493809786746192\tlot:0.047013880490497297\t.:0.04540097440663386\tof:0.04149118704289178\t:0.01\n",
"of:0.2778400933265141\tin:0.16678880995056908\tand:0.14055969554398734\tby:0.11453096564935437\tfor:0.07941601014808067\tare:0.06593218379247984\tIn:0.06357414218267705\tis:0.046327342760806946\twith:0.03503075664553061\t:0.01\n",
"the:0.3218467846617875\tof:0.1828529761416146\tand:0.1232207420947663\ta:0.09674086771067118\tto:0.08641160396374103\tin:0.0783857202791078\tbe:0.0377967086794569\tfor:0.032157504111148996\twas:0.030587092357705764\t:0.01\n",
"this:0.3929356176836259\tthe:0.36424601323021805\tsaid:0.09414190068706371\tthat:0.03753440582408945\tYork:0.026231767757883453\ta:0.02237588191203227\tThe:0.017941106112704355\ttho:0.017415915087168058\tof:0.017177391705214543\t:0.01\n",
"the:0.37187944314166066\tof:0.21822276201447038\tand:0.09870390738986175\tlive:0.07494301272908574\ta:0.07333997548628592\tThe:0.05779809301703656\ttho:0.03267097363620426\tcapital:0.031927562906532876\this:0.030514269678861828\t:0.01\n",
"to:0.7024000589479982\tand:0.06996025561352545\tnot:0.05701693970580414\twill:0.050513955150583975\twould:0.030838828714624823\tthey:0.02300760969384441\tmay:0.021181127051492252\tshall:0.017902742252210103\tthe:0.01717848286991666\t:0.01\n",
"the:0.29819298779611636\tand:0.18265256702547322\tof:0.13010962881005228\twas:0.08121404933282633\ta:0.07950844863130475\tbe:0.07306667256403139\tMr.:0.04983112978909311\tis:0.048908826139216106\tThe:0.04651568991188633\t:0.01\n",
"the:0.3604816967038009\tan:0.18810788842905138\tany:0.10104650430676647\tthat:0.07110430009798853\tlast:0.06476138138830902\tsuch:0.05560260855085649\tand:0.05210506746450436\tof:0.04857506406351707\ta:0.04821548899520581\t:0.01\n",
"the:0.3141697498569716\tof:0.13596872111181624\tThe:0.13148451940784603\tMr.:0.12071271065510487\tand:0.08466951013671548\tthat:0.08137847559446529\ta:0.05140346651734129\tMrs.:0.04087284649549475\this:0.029340000224244486\t:0.01\n",
"of:0.4462011261961158\tin:0.12615857041583559\tto:0.10151451743748324\tfor:0.07791159196235205\tby:0.060895391762437356\tat:0.05259110860597668\twith:0.04542090039680382\tfrom:0.04507390992515402\tIn:0.03423288329784133\t:0.01\n",
"and:0.14196626315420005\tis:0.13191941841171387\tnecessary:0.12661393014455413\tas:0.11766702610463461\tenough:0.10630327272751415\table:0.10295740592408963\torder:0.09495553892699914\twas:0.0844179777274438\thave:0.0831991668788506\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"It:0.3518094924334861\tit:0.2678488056688095\twhich:0.1196257858703605\tthere:0.07504565876367791\tthat:0.04329008572208309\tThere:0.038763618378575275\the:0.037870743173773994\tand:0.029959160005544043\twho:0.02578664998368973\t:0.01\n",
"to:0.339998491568882\tand:0.17862942938941825\tin:0.09645871574618903\tof:0.07300886513584802\tknow:0.06978339603776378\tthat:0.060659395822263235\tor:0.060017894017237394\tdetermine:0.05572191288296831\tquestion:0.05572189939943004\t:0.01\n",
"part:0.21496902104278678\tone:0.20912369233988043\tsome:0.12867331343811736\tout:0.1057303116879626\tmembers:0.07618604502434112\tand:0.06636584999188522\ttion:0.06479865598258486\tportion:0.06226235532256281\tside:0.061890755169878825\t:0.01\n",
"the:0.7485433708759772\ta:0.07685791523846566\this:0.034234262117647\ttho:0.0265248312460864\tThe:0.024179040699663493\tof:0.023399957872552522\tand:0.02195502056078829\tthis:0.01738796356752577\tsaid:0.016917637821293633\t:0.01\n",
"of:0.38584408291504757\tto:0.14069506157967437\tin:0.11555995124509574\ton:0.0666740960500469\tby:0.06293274185329573\tand:0.0611615714351081\tfor:0.059066043181918604\tthat:0.049725150575367416\tfrom:0.04834130116444544\t:0.01\n",
"the:0.7559393270397994\ta:0.058884612386848785\tThe:0.0520373620001795\tof:0.04540461220436005\ttho:0.037409900764266195\tand:0.013279028057778999\tin:0.01040631584700489\ttbe:0.009951186756089638\tby:0.006687654943672375\t:0.01\n",
"the:0.22381119370846944\ta:0.20871162620806843\tof:0.11693573883522197\tand:0.10350678467831491\tto:0.09964853259846065\tfrom:0.0657361923996471\tis:0.06400838781527757\tare:0.05526362168574228\telectric:0.052377922070797674\t:0.01\n",
"to:0.22988122603357508\tand:0.20058956339280717\tthe:0.13943594362559414\tof:0.11588460464002817\tin:0.08564574985575985\tnot:0.08091011806611492\tI:0.05163104866330221\ta:0.044341704528836644\tor:0.041680041193981845\t:0.01\n",
"the:0.3141697498569716\tof:0.13596872111181624\tThe:0.13148451940784603\tMr.:0.12071271065510487\tand:0.08466951013671548\tthat:0.08137847559446529\ta:0.05140346651734129\tMrs.:0.04087284649549475\this:0.029340000224244486\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.19458744861213628\tas:0.14324513006329825\table:0.11959067928157642\torder:0.1089229649511284\tbegan:0.10194159028383548\tenough:0.10140718155181282\ttime:0.08476846183095126\tright:0.0703634981771008\tgoing:0.06517304524816034\t:0.01\n",
"I:0.3309237919371256\tthey:0.13482461165699694\the:0.13255422255073715\tand:0.0940476098420605\twe:0.09149059453040209\tthat:0.05898483932147132\tit:0.055089524674295294\tWe:0.04944456604673864\twho:0.0426402394401724\t:0.01\n",
"the:0.5267678717722712\tcourt:0.16022203691487596\ta:0.10324996762491358\tThe:0.04400523312772195\this:0.04296167922209614\tschool:0.039716940384348136\ttho:0.03011769607907944\tdwelling:0.022520855248790706\topera:0.020437719625902812\t:0.01\n",
"the:0.19682318224879045\ta:0.15449655009044305\twas:0.13562407021699657\tis:0.12840370160083583\tare:0.09888365426369451\tbe:0.07894663002375656\tand:0.07466819829273663\twere:0.06893001972466437\this:0.053223993538081944\t:0.01\n",
"his:0.21894703158796283\tthe:0.18264790899453054\ther:0.13827523905799824\tJohn-:0.11311727555833886\tsea-:0.08476136834117008\tJack-:0.06970482862575639\tof:0.06344104957190784\tper-:0.061688531563803585\tper:0.05741676669853159\t:0.01\n",
"and:0.44041259200264676\tthat:0.159931933011043\tbut:0.14586877621092428\tBut:0.05901469057608011\ttime:0.053670320440024406\tAnd:0.043181375110983154\tor:0.0330580108512853\teven:0.030784353672919505\tday:0.024077948124093418\t:0.01\n",
"and:0.27831826245921804\tthe:0.1874591621891938\ta:0.1089904285490432\tof:0.09221883337514625\tto:0.08219757499755052\tin:0.07839460045959269\tI:0.06306050002550222\twill:0.05608634523425606\tfor:0.04327429271049725\t:0.01\n",
"the:0.427561309245529\tthis:0.1831555087317798\ta:0.11717490185893094\tany:0.0528244364740101\this:0.04723206823173748\tgood:0.04398899839557983\tsame:0.041898581112810716\tno:0.0387515445730513\tof:0.03741265137657097\t:0.01\n",
"a:0.3313422361088812\tthe:0.3278401262672178\this:0.0946721880887907\tand:0.0735909643883204\tThe:0.04961560303988544\ther:0.03600783639635226\tmy:0.026402283170568676\ttheir:0.025676887372071185\tno:0.024851875167912367\t:0.01\n",
"and:0.23376230153998281\taccording:0.15315600787659986\tas:0.12144090210172613\twent:0.10858274273938238\tgo:0.10051550792293389\tsubject:0.09106781120811656\tthem:0.0647199055131176\tor:0.061419438694066394\taddition:0.0553353824040744\t:0.01\n",
"up:0.23125554051255054\tin:0.12150819273358947\thim:0.10685540009910666\tthem,:0.09720665495542939\t;:0.09444833554401104\tit,:0.09084185634227125\ttime:0.09050963156794468\tdown:0.079671634226532\tout:0.07770275401856494\t:0.01\n",
"and:0.22185700374069803\twas:0.1900001595976018\tis:0.17643194800966508\tare:0.12434909320688763\tbe:0.06061095361275472\twere:0.05674838133189997\tnot:0.054954840341256535\tbeen:0.053500485446452035\tor:0.051547134712784125\t:0.01\n",
"and:0.31272371936252696\tthat:0.11921912925090902\twas:0.10826785512344439\tmade:0.08867020288276366\tis:0.08441813412767785\tas:0.07363540620555147\tit:0.07061351793988456\tup:0.06868550907362354\tbut:0.06376652603361857\t:0.01\n",
"not:0.40845664964626577\thas:0.182573373424387\thave:0.1183539389121284\thad:0.07288192171216794\tas:0.0695089190950349\tand:0.063626612333958\tis:0.03390477890936437\twhich:0.02161629508804038\tit:0.01907751087865319\t:0.01\n",
"the:0.46743960586215993\tsaid:0.25902485690697763\ta:0.062234094872626024\tof:0.05894410305517061\tthis:0.04173797499910366\this:0.03882269035759103\ttho:0.027121099224896812\tin:0.018178630098256248\ttheir:0.016496944623218074\t:0.01\n",
"and:0.43204730350408316\tthe:0.11833042400730066\tI:0.08480944165630178\twas:0.08033879673846188\thad:0.06087545942563571\tis:0.0598488552061699\the:0.05720247379115774\thave:0.05092986935493545\tthat:0.045617376315953695\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"the:0.25765778793899907\tour:0.17367117111530345\ttheir:0.15028747803141582\tof:0.12031286682646963\tand:0.09688953170758684\this:0.07409684711848145\tin:0.05984584850116237\tits:0.0293771994783007\tmy:0.027861269282280453\t:0.01\n",
"one:0.3364059647869196\ton:0.11551329446855124\treceipt,:0.10920701475463775\ttwo:0.10871045932190965\tperson:0.0702608845378907\tlaw:0.06553145068802452\tand:0.06514487299292186\tday:0.06048883264641693\tman:0.05873722580272774\t:0.01\n",
"the:0.25695934968586615\tof:0.21922637213809554\ton:0.12804312982711988\tto:0.0951547980912599\tand:0.08198692911706908\tin:0.06416288100409133\tby:0.051950174695015804\ta:0.046952007516405825\tfor:0.04556435792507651\t:0.01\n",
"amount:0.23984195764684887\tnumber:0.2164623931780495\tpower:0.10138468282735567\tout:0.08731433012463992\tpiece:0.07649008324180284\tboard:0.07399743987979315\tstate:0.07109895744410898\tplace:0.06489914461640572\tplenty:0.05851101104099533\t:0.01\n",
"the:0.8832112829175117\ttho:0.03528485410393855\tThe:0.03083782508923617\ttbe:0.013247915276302924\tand:0.008754250525740368\tthis:0.005232034949857542\tits:0.005148395184797346\ttheir:0.004304222427519745\tof:0.003979219525095451\t:0.01\n",
"the:0.5500332056317281\tof:0.14906075178772366\this:0.054795602242944275\ttheir:0.0486491195665222\tin:0.04449793374421966\ta:0.03797419481170894\tour:0.03684946450825992\tand:0.03677911211248516\tall:0.03136061559440804\t:0.01\n",
"the:0.2346302632543477\tof:0.21039298293066766\tsai:0.16083942427947093\tin:0.09591260308636763\ta:0.0956602813134547\tand:0.06399076322165466\tNew:0.061791071316304916\tan:0.037201015981895645\tto:0.02958159461583618\t:0.01\n",
"<s>:0.5372084998588389\tit.:0.11096820960258527\tthem.:0.07749910601157048\tcountry.:0.04946190615608941\ttime.:0.047317552159012906\thim.:0.0439157251752922\tyears.:0.042294507845568416\tof:0.041169676941872436\t.:0.040164816249170066\t:0.01\n",
"to:0.30053626483136625\thas:0.16333184308401946\thad:0.10889147327258762\twill:0.10024893128777927\thave:0.0936074642111335\tand:0.09318912070490915\twould:0.059415013208979836\tshall:0.037067738076931436\tmay:0.033712151322293486\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.2728240839597611\tto:0.2178542328327642\tin:0.1514324934899788\tfor:0.10740021799711444\twith:0.07981603309214091\ton:0.05924555029778187\tfrom:0.04134561157226675\tby:0.031163542350695992\tIn:0.02891823440749592\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"of:0.29953428984735786\tto:0.14926208721564527\tin:0.14827436447156125\twith:0.09953175919983766\tand:0.08988708094447684\tfor:0.05850028447848208\tall:0.0566389660099866\ton:0.05344708124606166\tby:0.03492408658659076\t:0.01\n",
"not:0.2991594707203639\tto:0.19703208949379988\tI:0.15177050522245317\tdon't:0.09402872071458823\twe:0.0769703016002484\tyou:0.06353546409444628\tWe:0.04110568244235947\tthey:0.034423323051495563\tdidn't:0.03197444266024505\t:0.01\n",
"the:0.2558739099083218\tof:0.19259972413997709\tto:0.14716765857315706\tand:0.09248499117422139\tin:0.08921734614999502\tat:0.07944361932903729\ta:0.058471116586262833\t.:0.03938594581755894\tfor:0.0353556883214686\t:0.01\n",
"and:0.45261818426960093\tis:0.09144143881370145\tor:0.07972992024466752\tbut:0.07741983993119399\tbe:0.06320450305523397\twas:0.0608451214015662\tnot:0.06059282188558547\tthat:0.05223482541364221\tdone:0.05191334498480831\t:0.01\n",
"they:0.23364138526239633\twho:0.13900208200299138\twe:0.12732876218965317\twhich:0.12275187738233093\tthere:0.10656228561072974\tthat:0.07477931782100233\tThey:0.06349607118679011\tand:0.06127631025927464\tWe:0.061161908284831416\t:0.01\n",
"the:0.3187533310365806\tof:0.19153223533904776\tand:0.13333775657562166\ta:0.08569118153695421\tto:0.07805362827458312\this:0.04896787193732948\tbe:0.04728575140178597\tmy:0.044784222538298106\tI:0.041594021359798936\t:0.01\n",
"the:0.6774407302218779\ta:0.11117750593928251\tand:0.05416417454939913\tThe:0.03442611226189506\ttho:0.03079612212032316\tin:0.029421519321184364\tal-:0.02120826564476721\tof:0.016730983681291778\tour:0.014634586259978877\t:0.01\n",
"of:0.38356379297119453\tin:0.15427585480191305\tto:0.1086826038618956\tby:0.08803383227313695\tfor:0.061494704077270965\tthat:0.058410982527225895\tand:0.052176912248772044\twith:0.04206109753453797\ton:0.041300219704052836\t:0.01\n",
"the:0.42944729384850305\tof:0.22516648736013473\ta:0.08006603615781954\tfor:0.07053865246310148\tin:0.061320825766747564\tour:0.044931866788877096\tand:0.028930170536971125\twith:0.026964271401447398\tThe:0.02263439567639787\t:0.01\n",
"to:0.6888905776695221\tnot:0.08751477215345498\twill:0.053119609409550524\twould:0.045532748981620554\tand:0.03306394115616492\tcan:0.029135397596233122\tcould:0.018224051577649707\tshould:0.01786955695105071\tmay:0.0166493445047534\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.24534901571123702\tof:0.19198092365184333\tto:0.13970081277914326\tand:0.12062271959344861\ta:0.09610298426469713\tin:0.05877192899134927\tby:0.04861106846841909\tor:0.046298622960343386\tthat:0.04256192357951899\t:0.01\n",
"and:0.19594456638132776\tmake:0.164195267857309\tfor:0.11519010139822934\tthat:0.11415034681265734\tof:0.0973541051164457\twith:0.09611331774603121\tto:0.07298446985038608\tgive:0.07056313485935614\tbut:0.06350468997825735\t:0.01\n",
"was:0.19293386621323436\tbe:0.14228056963877456\the:0.13246850636032628\tand:0.10572311106480928\tbeen:0.0971597369075684\thad:0.08382131913806617\tis:0.08360675578594906\tabove:0.08027539492289651\thas:0.07173073996837546\t:0.01\n",
"of:0.3017274896402684\tto:0.14873173808656742\ton:0.09840881845255475\tby:0.09135552473296783\tin:0.08622559687155036\twith:0.0861484289537251\tand:0.06871205270556482\tthat:0.06393199076702777\tfrom:0.04475835978977363\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.7477460179045424\tthis:0.07641669962309228\ttho:0.0322138113337618\tThe:0.02819134121252394\tto:0.027509310667302944\tour:0.023691349450035277\tand:0.022215905460876994\tthat:0.016041232186085934\tany:0.01597433216177849\t:0.01\n",
"<s>:0.5911664716768236\t.:0.09254162861311349\tit.:0.07581705834204039\tthem.:0.05818195815929814\tday.:0.037726686386629994\thim.:0.034790603659583\ttime.:0.03473040556580825\tof:0.0340401802064035\tcountry.:0.03100500739029967\t:0.01\n",
"to:0.5457552147720407\tthe:0.13701835507142504\ta:0.09471528121449667\tand:0.05218458120028613\twill:0.045520261486460524\tof:0.038873407557610304\tin:0.030533656171530064\tcould:0.02317807188001807\tcan:0.02222117064613264\t:0.01\n",
"covered:0.21598528021716795\tfilled:0.17907185553528282\ttogether:0.15304088577388478\tand:0.12863481727510884\tup:0.11117770378436569\tcharged:0.06041415569299562\tloaded:0.050400087148177355\tthence:0.04567769900806649\tdown:0.04559751556495045\t:0.01\n",
"as:0.1952650740024546\tup:0.17563098292342963\tand:0.1426315086738868\tback:0.09448678680837065\tdown:0.08310198427347133\twent:0.08195026217821093\tcame:0.07305674511223162\taccording:0.07233387308449139\tregard:0.07154278294345304\t:0.01\n",
"amount:0.18452536647632076\tnumber:0.1655105900398474\tout:0.1262877653565467\tpoint:0.12258078603183378\ttime:0.12218781526251082\tplenty:0.08566649966848794\tdeal:0.06370835869001576\tmeans:0.059895279385970314\tthousands:0.059637539088466564\t:0.01\n",
"the:0.4848333140392124\ta:0.13083153353487362\tand:0.11467042235524809\tof:0.0794070052821952\tin:0.0463916749675865\tto:0.0426359520435628\tThe:0.040249605568998995\ttho:0.03109049716360249\tby:0.019889995044719843\t:0.01\n",
"the:0.32347341512985717\tof:0.1899360155781862\tyoung:0.12289632645647658\ttwo:0.09291340983373414\tand:0.09129391178876169\tThe:0.057321423217600025\tgood:0.03957154315831112\tthree:0.03885458154598966\tour:0.033739373291083515\t:0.01\n",
"to:0.43957119653398213\twill:0.1136308670110114\thad:0.09279649511323117\thave:0.07562527073458644\thas:0.06616663404092599\tbe-:0.06595580180281968\twould:0.05431903589886525\tnot:0.04467194678933092\tand:0.037262752075246985\t:0.01\n",
"and:0.17242398561069028\tas:0.14671919886062282\tis:0.12617046029401924\tright:0.11510593609863622\thim:0.0996423111481772\table:0.09079721249751993\ttime:0.08979454579528022\tthem:0.0749387315413511\tenough:0.074407618153703\t:0.01\n",
"the:0.4832939666996756\tSupreme:0.2019945942522685\tsaid:0.0627883149687794\tCircuit:0.043391200147150186\tthis:0.042971806703088346\tPolice:0.042133654260225695\tDistrict:0.04132922792237565\ttho:0.03776861747068088\tThe:0.03432861757575552\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"they:0.306512961763953\twho:0.18992891553728264\twhich:0.10030669516804225\tand:0.09469368380015818\twe:0.08629897019560478\tthere:0.0661586790974406\tThey:0.06333552797907654\tthat:0.04377010142177894\tyou:0.03899446503666313\t:0.01\n",
"of:0.34437857421343043\tfor:0.15195922870475037\tby:0.09547219189093713\tin:0.09193462226448101\tthat:0.07769761544702074\tto:0.0706006337345032\tand:0.0705176094763319\twith:0.04646495262450817\tall:0.04097457164403702\t:0.01\n",
"the:0.23075178912378314\tof:0.19593304988733096\tand:0.16720951205846837\tto:0.135373019057764\tin:0.07221136695482343\ta:0.06308867618413609\tfor:0.053249383256185126\tor:0.03936539274483695\tfour:0.03281781073267201\t:0.01\n",
"the:0.2384416744738608\tof:0.17635581647632845\tin:0.1593614755505285\tand:0.10421425684180445\tto:0.08683748198855372\tfor:0.07120567344919557\ta:0.06697422588647106\tIn:0.04367323033545751\tthat:0.04293616499779998\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"is:0.1799083183618913\tnot:0.1246245741715308\table:0.1245356473997609\ttime:0.11011110256003491\tright:0.09723351122395306\thave:0.09233882271283618\thim:0.09048635414015883\tenough:0.08619270480261113\tand:0.0845689646272229\t:0.01\n",
"and:0.33353890069751263\twas:0.1680788178505281\tis:0.1464927602184309\tare:0.09218316951471581\tbut:0.08079014990752888\twere:0.07656145209264209\tHe:0.040819367731266216\tbe:0.026345268997705763\thas:0.025190112989669562\t:0.01\n",
"of:0.21245906708290566\tand:0.12606372071232969\tis:0.11958274744521444\twith:0.11158088448020982\tto:0.10343742435270589\tby:0.08387305340935727\tas:0.08137802550947228\tin:0.0773411578823006\tfor:0.07428391912550437\t:0.01\n",
"of:0.3878760090375568\tin:0.11198132191954722\tand:0.08818088715465099\twith:0.08555147636783818\tfor:0.07888160855403113\tto:0.07540246605452956\tthat:0.06370207680638026\tby:0.05074230512314004\talmost:0.04768184898232562\t:0.01\n",
"of:0.32342270374369236\tthat:0.12340065779351093\tand:0.12169136685200176\tto:0.10800882208868755\tin:0.10071994371735231\tfor:0.07588784971632406\tby:0.05820416411239488\twith:0.043903107576545926\tas:0.034761384399490246\t:0.01\n",
"to:0.23008159810559534\tof:0.2107810922941533\tthe:0.16906327894441375\tin:0.13771210148939386\ta:0.057436790198402324\tand:0.055698842500077395\this:0.04739636972947382\tfor:0.04571059473545909\tI:0.03611933200303108\t:0.01\n",
"It:0.25678987927758057\tthat:0.13532712784564827\tit:0.13086878615288045\twhich:0.12389964967121372\tthere:0.11205719896758304\tThis:0.07749322860633542\tand:0.06476751103055411\the:0.04974909457564794\tthis:0.03904752387255646\t:0.01\n",
"fifteen:0.1732211825841299\thundred:0.16013427611887088\ttwenty:0.12529131464059257\tten:0.11003968705180868\t100:0.10289723596999537\tsix:0.09237153995896782\teight:0.08273014188077174\t50:0.08172792635465471\t30:0.06158669544020827\t:0.01\n",
"more:0.31709481749674184\tperson:0.14906939994554802\tone:0.11309810607549355\tman:0.11002731711719632\tlaw:0.09444411203859646\twhether:0.05458024464520361\taction:0.0518583532851957\tright:0.05058232583933851\ttime:0.049245323556685885\t:0.01\n",
"the:0.6813231373424599\tand:0.08925441882374724\tThe:0.056613857297762804\ttho:0.04225814397625024\tin:0.03296730630561122\ta:0.025531885665381563\tgreat:0.024386951003889462\tof:0.021724542380621076\this:0.015939757204276525\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"it:0.17775983277111523\tthey:0.17649536759106535\the:0.12213194630361732\twhich:0.09913036587956449\tyou:0.08534137356219772\tas:0.08307750258961558\twe:0.08301208568153509\twho:0.08262586526119252\tthat:0.08042566036009674\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"there:0.25041383595202027\tthey:0.14769682013293223\tyou:0.09948292079218433\twho:0.09398332041920061\twhich:0.09153017599121885\tthat:0.09101526561568746\tThere:0.07622316072841923\tand:0.07366344090114178\twe:0.06599105946719543\t:0.01\n",
"the:0.28497649448846474\tand:0.1514823575156436\tto:0.13099486172294514\ta:0.11430273190651027\tof:0.10696486710509166\tbe:0.0649188191707342\this:0.04813099987403198\twas:0.045973956544127566\tThe:0.042254911672450726\t:0.01\n",
"to:0.6151815977335553\tthe:0.17415808043928088\tand:0.05185871141046788\tthat:0.03402507385106896\tthis:0.0331154379853417\twhich:0.026141015559597934\tof:0.024951186273249538\ta:0.01946470153605189\tTo:0.011104195211386092\t:0.01\n",
"and:0.24413116292889298\tclosing:0.18173686344826198\twas:0.10859381659603785\tvalued:0.08665763038641584\theld:0.07932710425709101\tsold:0.07518688429361538\t2:0.07335995221601971\tis:0.07241280837793868\tarrived:0.06859377749572665\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"well:0.2260703266991755\tand:0.17805485592404377\tfar:0.1364423165460318\tsuch:0.10116679509679227\tmuch:0.07546127694216162\tjust:0.07039912097633969\tbut:0.06782103094663079\tso:0.06745517766574176\tit:0.06712909920308269\t:0.01\n",
"the:0.26631771811439525\tand:0.20187492102926918\tof:0.1589843633303804\tto:0.11059027842715602\tin:0.0571012098710703\tthat:0.051462395651177245\tsaid:0.050581573006078746\tfor:0.04673165755322649\this:0.04635588301724631\t:0.01\n",
"of:0.5284577802237567\tin:0.2010708706282143\tto:0.0637692850313051\tthat:0.04965785173660936\tIn:0.04544893863609211\tfor:0.03705143247717979\tby:0.023673673579988754\tand:0.022673515253748965\tfrom:0.018196652433104976\t:0.01\n",
"was:0.2623948960518687\tbe:0.1988292169977526\tbeen:0.13236244362955374\tis:0.10933375681106025\twere:0.08419330295077498\tand:0.05595165099560337\tare:0.051674290661893094\thave:0.047803987975700936\thad:0.04745645392579224\t:0.01\n",
"the:0.25777513293375004\tand:0.18028310187603475\tof:0.13328444228028083\tto:0.11272695735318854\tin:0.08231384653522324\tat:0.059295137183380406\twas:0.055424286991704375\tis:0.05485256934422892\tthat:0.054044525502208916\t:0.01\n",
"the:0.5951823419376905\tand:0.10401096262273102\ta:0.10389120092868659\tThe:0.06689240991611885\ttho:0.032345377660556965\tof:0.03158681120713697\tto:0.02191866002327787\tat:0.018123130932378276\tthis:0.016049104771422948\t:0.01\n",
"Mr.:0.17605462646552683\tA.:0.1716844071622243\t.:0.1688877397488133\tJohn:0.10202842143897108\tof:0.10005131659748695\tMrs.:0.07727642077987185\tand:0.07478403725963248\t<s>:0.0651656472038054\tC.:0.05406738334366788\t:0.01\n",
"the:0.6057111633911043\tThe:0.09690522525631327\tand:0.07718448450768767\ta:0.04698202354435702\tsaid:0.037217551011127614\ttho:0.03517309768592615\tif:0.03505688497682489\tof:0.030991594765494103\tthat:0.024777974861164925\t:0.01\n",
"of:0.24297123427416584\tto:0.1416401993232398\tthat:0.1400585931992294\tand:0.13773727284968296\tin:0.07172686818836181\ton:0.06875135975236676\tfor:0.06698082307289445\twas:0.060244634092375425\twith:0.05988901524768351\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"any:0.29004480613689787\ta:0.2679324094267834\tthe:0.14687867458170753\tno:0.07005885436236044\tAny:0.06584725683227856\tother:0.042992618436971324\tevery:0.04091625837703198\tsome:0.034296745828120846\tof:0.03103237601784817\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"the:0.25608235413161745\tof:0.21430420336695166\tand:0.1539170511674696\tto:0.08516477536554258\tin:0.06442420016696311\tbe:0.060510029785907846\tfor:0.05908546367091282\ttheir:0.050423739786130184\twas:0.04608818255850469\t:0.01\n",
"and:0.3744082619325628\twas:0.15078198853002944\tas:0.08774894101295673\tis:0.0780726849846514\the:0.0702444905144563\tbe:0.06570752588107649\tnot:0.05808543493037325\tthat:0.05531197997768851\tto:0.04963869223620504\t:0.01\n",
"a:0.2873350234716249\tthis:0.20607518362193175\tthe:0.1734957310602264\tto:0.15387946373593556\tlast:0.053889279133890494\tnext:0.03860915578949409\this:0.027104028992935434\tthat:0.025446993200138043\tand:0.02416514099382343\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"and:0.39374688118394197\tto:0.22349962865051812\tnot:0.07325808986714295\tthat:0.054342221381652435\tor:0.0516867063609947\twho:0.04990290645230247\tof:0.048965821591113116\twill:0.04819592503119137\tre-:0.046401819481142845\t:0.01\n",
"as:0.2625666998180363\tand:0.1603646464042952\tis:0.1127782657124414\torder:0.0825173784442732\tnecessary:0.07898886142847032\ttime:0.07650810294239473\tnot:0.07338280480532441\tright:0.07292504012849517\tenough:0.06996820031626916\t:0.01\n",
"the:0.2197845750146409\this:0.17086381820749233\tour:0.16804905424106484\ta:0.11767260773460372\ttheir:0.09073142347026483\tof:0.06334029101902033\ther:0.05998983025261467\tmy:0.052686312661753464\tother:0.04688208739854483\t:0.01\n",
"part:0.17054134734511595\tone:0.16864554102609366\tout:0.14439268635263805\tside:0.11771631661078728\tline:0.08462409997600932\tamount:0.0811904136773103\tall:0.08050194711423171\tand:0.07564091159298654\ttion:0.06674673630482723\t:0.01\n",
"Los:0.9110490584674461\tthe:0.030451662929454816\tand:0.018927658866145936\tof:0.017658443944237535\tcom¬:0.002896154033983669\tto:0.002545171456136129\tcom-:0.002496611111064621\tall:0.0022287637718031803\tthese:0.0017464754197281734\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.2953544238323081\tof:0.1905502356800568\tand:0.11048656488447613\t.:0.10430984015895757\ta:0.10238929871975465\tto:0.06490874828103697\tat:0.041108323707966465\t<s>:0.04061879714325807\tin:0.040273767592185164\t:0.01\n",
"A.:0.5863073435472371\t.:0.12636944791136717\tMrs.:0.056530654897888395\tJ.:0.05089092182551912\tW.:0.03862945211863481\tS.:0.03717027822402591\tM.:0.03339581718368461\tC.:0.0308420271602623\tN.:0.02986405713138059\t:0.01\n",
"I:0.17587560868284302\tthey:0.11746070276225445\tit:0.11511463385847173\tand:0.11466590077479265\tyou:0.11368166269939266\the:0.11015790777220869\twhich:0.09583454184378609\tthat:0.09455437768014616\twe:0.052654663926104676\t:0.01\n",
"to:0.3471885027613698\tthat:0.11195320919233384\tmay:0.0974932553517612\tcan:0.09628328494816306\twill:0.0917250811353003\tnot:0.09155705653505533\tshould:0.060903158312504646\tmust:0.04818807364632393\tcould:0.044708378117187884\t:0.01\n",
"the:0.19973673748319962\tsouth:0.18702779361968208\tnorth:0.15982485632839313\teast:0.14416008078002449\twest:0.1271368694625307\tone:0.06117723817628734\tother:0.050782521233723094\teither:0.03197613557020537\ta:0.028177767345954213\t:0.01\n",
"provisions:0.16627098017731173\tcopy:0.15165327534695813\tdate:0.12617568642366098\tpart:0.12388683156619237\tone:0.1044724200406653\tout:0.09585475097905363\tpeople:0.09019386903076457\tpublication:0.0773301702042243\tmembers:0.054162016231169084\t:0.01\n",
"the:0.34351035899420623\tof:0.11601856728710269\tpublic:0.09258806102987949\tSunday:0.0859252032792926\thigh:0.08356529223930771\tThe:0.08011558867545134\tthis:0.0729009175457177\ta:0.06106961056167636\tthat:0.054306400387365804\t:0.01\n",
"and:0.3251243842154309\tas:0.11996151887212793\tof:0.10544685758710862\tto:0.08558964769876477\tor:0.08083048696960791\tthe:0.07373403786871574\tthat:0.0726217697038474\tit:0.0660729723417961\tin:0.0606183247426007\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.3433664815884728\tsaid:0.18004805898072027\tof:0.15998353461292078\tand:0.09039654485837716\tsuch:0.07171980273403604\tThe:0.064185547080263\tthat:0.031945157105533986\tor:0.02553170316307781\tthis:0.022823169876598104\t:0.01\n",
"the:0.3077782568895084\the:0.12053942544812866\ta:0.11857384269299666\tI:0.11615745440337769\tand:0.1132879032390152\twas:0.07206965615098306\tbe:0.050749503431042085\tnever:0.04861974672006707\tis:0.04222421102488117\t:0.01\n",
"it:0.3349641634608517\tIt:0.2821273905989333\the:0.07518402809182298\tthere:0.07313812428280234\twhich:0.06380231169616617\tthat:0.051641987265936634\tthis:0.037152031399155926\tThis:0.03608899998186505\tand:0.03590096322246592\t:0.01\n",
"of:0.18739725268669097\tto:0.1807617630353847\tand:0.1751735361372847\tthe:0.13400279328149498\tin:0.11965612230579166\tfor:0.06383932025510801\tthat:0.05194580490062087\tor:0.038827466665521844\tIn:0.03839594073210224\t:0.01\n",
"of:0.38413689096012693\tthis:0.16059456844937592\tin:0.12012821492715414\tthe:0.10551734426966498\tthat:0.08291575630241725\tsaid:0.04711049816294927\tto:0.04248934857173932\tIn:0.0240438407131785\tand:0.023063537643393535\t:0.01\n",
"feet;:0.20317279970179644\t2;:0.1616354114075714\t3;:0.14708887094975326\t4;:0.14139070182301908\t5;:0.09682810864293497\t6;:0.06988891837140393\t7;:0.06556962154286078\t;:0.054949930297410084\tfeet,:0.04947563726324997\t:0.01\n",
"of:0.21015918041671386\tand:0.1790073964365297\tin:0.16885540541764665\tthat:0.10893469525474345\tto:0.08186557722793636\ton:0.08047304347530342\tnearly:0.0552101135935322\tby:0.0542671115119065\twith:0.0512274766656878\t:0.01\n",
"that:0.30290327158295705\tand:0.17574162318930542\twhich:0.12282287964148736\tas:0.11562164629465072\tbut:0.06871700045818657\twhat:0.06334553190481479\twhen:0.05618519283448438\tif:0.052224647008474415\tIf:0.03243820708563923\t:0.01\n",
"the:0.4007882469987831\tof:0.14149914796481478\ttwo:0.07618023983106047\tthree:0.07540692113346954\tseveral:0.06382740984303098\ta:0.06377526428014554\ttheir:0.05742084461326995\tother:0.0573597377388368\tfor:0.053742187596588706\t:0.01\n",
"one:0.23605402837694317\tpart:0.17194359534856798\tsome:0.13057929531661294\tout:0.12609862768167032\tall:0.08237599258252051\tportion:0.07212181862165871\tany:0.059401597507645225\tmuch:0.056366864893261065\tthat:0.05505817967112018\t:0.01\n",
"the:0.4319858855560845\tthis:0.10779689732030921\tThe:0.10276914647242258\tNational:0.09888068450449033\tState:0.08436444613735797\tsaid:0.05917161983829576\tthat:0.03749149679506636\tCity:0.035201700803094635\ta:0.032338122572878714\t:0.01\n",
"southeast:0.23611623983277436\tthe:0.20483223042944695\tnorthwest:0.17237173193182947\tnortheast:0.14631640660966547\tsouthwest:0.07710962791380263\ta:0.05432181578067691\teast:0.03822111268949895\twest:0.03795831496719287\tand:0.022752519845112503\t:0.01\n",
"two:0.19029245257588628\tfew:0.12391066236752231\tfour:0.11754544254576457\tmany:0.11527380083569434\tten:0.11271088551475901\tthree:0.09640966424095357\tfive:0.0824539407316281\ttwenty:0.08218687336948208\tof:0.06921627781830969\t:0.01\n",
"the:0.32601648739560724\tthis:0.16574617677633374\ta:0.13792660726810865\tThe:0.09280951319933216\this:0.07772878595272428\tthat:0.06637415659307079\tour:0.04897355530501663\tone:0.03893329194451453\tsaid:0.03549142556529196\t:0.01\n",
"up:0.19052471191755593\t;:0.12190227193156043\thim,:0.10970069109341941\thundred:0.1079369788257501\thim:0.10460288691336976\tmade:0.10371692417761405\ttime:0.08755732422023657\tthem:0.08387005617036825\tthem,:0.08018815475012558\t:0.01\n",
".:0.20215052228256694\tof:0.16333934104918074\tand:0.15055656010116772\tthe:0.13051729287666705\tby:0.08253177459092514\tH.:0.06860187460536739\tMrs.:0.06725994984517841\tJ.:0.06587351208493328\tto:0.05916917256401322\t:0.01\n",
"two:0.3294994507079569\tfew:0.17670097285821093\tsix:0.09315623177012125\tthree:0.08521318916000238\tseveral:0.07847221952710612\tfour:0.06907438496034528\ttwenty-four:0.05672724373907475\tfive:0.051155766814480454\teight:0.05000054046270198\t:0.01\n",
"he:0.32096178263742736\tI:0.20814772595352332\twho:0.11913510567536341\tthey:0.1012362374318389\tshe:0.06976704291138333\twhich:0.04401182014027198\twe:0.04353998892560716\tHe:0.04293636989208722\tand:0.040263926432497335\t:0.01\n",
"set:0.6324859659982723\tnot:0.08391373832597822\tlay:0.050763748969066116\tlaid:0.049119563155945734\tsetting:0.048193603005102524\tput:0.0378638334794617\tand:0.0353813526314881\tto:0.029402340535246277\tbrought:0.022875853899439063\t:0.01\n",
"the:0.33234301859327503\tof:0.16511810112924477\tand:0.14359386254401948\ta:0.07809521494992094\tthat:0.07723479213752328\tThe:0.052790940042757695\tin:0.051550293467254364\tno:0.0449303041329755\tMr.:0.04434347300302878\t:0.01\n",
"and:0.2165381807466691\tthe:0.18724203922351226\tof:0.14904754853675403\tto:0.11548725602063734\tbe:0.07888300539379994\twas:0.07500647985195938\tin:0.06698318540006265\tis:0.055634215838476345\tare:0.04517808898812875\t:0.01\n",
"that:0.2994240904225421\tand:0.21670346937709573\twhich:0.14122881951388647\tbut:0.09192054755653989\tas:0.07340828337400185\twhen:0.06241604775346419\tto:0.03709501725824319\twhere:0.03572550459949674\tif:0.03207822014472997\t:0.01\n",
"in:0.42847363320286264\tof:0.14393029689732253\tIn:0.09393897926472873\tto:0.08714011196680098\tfor:0.05948672335082321\tand:0.05301018068393991\twith:0.05142257031110866\tat:0.04063128784645755\thave:0.03196621647595591\t:0.01\n",
"one:0.21303943994489263\tout:0.1698340805609801\tpart:0.1472687798153334\tsome:0.10564771493692295\taccount:0.1047360670487683\tany:0.0723917686949588\tall:0.06334962810761698\tthat:0.06091520523433158\ttion:0.052817315656195345\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"one:0.22043979554334728\tpart:0.17073202577386606\tout:0.1504453831229998\tsome:0.08943673051487451\tside:0.0779259956881897\tend:0.07349403345130155\tmembers:0.07129904224908563\tportion:0.07021530842224585\tall:0.06601168523408947\t:0.01\n",
"it,:0.14249844072210638\tit:0.1283171690249335\tup:0.11630588375426512\tthem:0.10577634063577449\tin:0.10427292415050095\tmen:0.10415953316577907\tthem,:0.09759826166811475\tout:0.09554702233972374\thim:0.0955244245388019\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"the:0.7606828980618172\tof:0.062033000656655866\ttho:0.042022102195523534\tsaid:0.031184200383118428\tthis:0.029182921572264046\ta:0.02430602327287697\tfor:0.014820728889868332\ttbe:0.012905156937946652\this:0.012862968029928906\t:0.01\n",
"of:0.2460717628139802\tand:0.14744691286217174\tin:0.14405983434980116\ta:0.09843298767067889\tis:0.09125347210160978\tare:0.08111754176776678\twas:0.07206667036034738\tfor:0.05777363515955494\this:0.0517771829140892\t:0.01\n",
"W:0.14910773017956414\tM:0.12276990578542449\tJ:0.12075148222724486\tC:0.11156552709985228\tS:0.10363588713123016\tE:0.10247688778446311\tA:0.09710894198133282\tH:0.09413683549342977\tB:0.08844680231745826\t:0.01\n",
"the:0.6749229393555606\tthis:0.06915528879922793\tThe:0.05797528146378467\ta:0.04534335875626983\ttho:0.03595732315269041\tan:0.033596947667829634\tsaid:0.025406168540043576\tof:0.02447650334920776\tthat:0.02316618891538541\t:0.01\n",
"of:0.20528423458880396\tor:0.1538968724936687\tabout:0.14437846895983172\tthan:0.12616952397147538\tand:0.12089009875490095\tthe:0.09225722899570948\tnearly:0.05265026613824637\tthousand:0.04909935638991147\tover:0.0453739497074518\t:0.01\n",
"and:0.26745267416887475\tBeginning:0.22525587652116277\twas:0.11377028395927055\tCommencing:0.10809071640443553\tis:0.07344548581441636\tthat:0.051702392669663144\tlook:0.05066270801955132\tit:0.049895643535544223\thim:0.049724218907081376\t:0.01\n",
"they:0.21226560548598497\tthere:0.19716397591064685\tThere:0.1429281247606445\twe:0.1276138088451262\twho:0.07981068731693537\tThey:0.07498542625166148\tyou:0.06206621296562419\twhich:0.05064533468887049\tWe:0.042520823774506\t:0.01\n",
"to:0.33528270245205355\tthe:0.15402665504851065\tand:0.1536422133333786\tof:0.15301422031178302\tin:0.04861645238007527\tor:0.040455721515250634\t<s>:0.037515844466641954\t.:0.034526797406761775\tbe:0.03291939308554451\t:0.01\n",
"be:0.22324340392112424\twas:0.18790906311378686\tis:0.13115047359365814\tbeen:0.1277290127165919\tand:0.0869127879843747\tare:0.07171353490132941\twere:0.06910928418154214\tbeing:0.05476368165104648\tthe:0.037468757936546124\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"it:0.19490961800089515\tand:0.19176679436757246\the:0.13043836183929858\tIt:0.12292232497640031\tthat:0.09966531061481447\twhich:0.08557033227227642\twho:0.06011933991395717\tnor:0.05426104682492604\tWhat:0.05034687118985947\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"to:0.17662257462718098\twho:0.17524188618985256\tI:0.14811519192260572\tthey:0.12324191348063034\twe:0.11041956698069366\tand:0.08342352879050317\twould:0.06523245131173165\tWe:0.05564222833847325\tnot:0.052060658358328765\t:0.01\n",
"get:0.1466179279908691\twas:0.13816166858847523\tand:0.13411725524820045\thim:0.10611862598008347\tit:0.10231181039389517\tthem:0.09727726821367766\tare:0.09515897845536371\tgo:0.08768078124059613\tcome:0.08255568388883913\t:0.01\n",
"one:0.3096860623795016\tpart:0.1233872823864265\tout:0.10161611011344554\taccount:0.08846414010808969\tthat:0.07857280823449284\tcause:0.07591668159447267\tany:0.07403292883705044\tsome:0.07294777123004341\ttion:0.06537621511647734\t:0.01\n",
"they:0.28446044335967363\twe:0.14608640806754447\twho:0.14522931627121702\twhich:0.11620069898910895\tThey:0.0745944596136138\tthat:0.058586226749931254\tthere:0.056075725703926216\tyou:0.055895328771538744\tand:0.05287139247344584\t:0.01\n",
"of:0.3134958089864644\tin:0.13299929441144953\tto:0.12823688870248\tand:0.09736693258021493\twith:0.09437651611491048\tthat:0.07238629145022925\ton:0.054809350080435346\tfor:0.05420997482493492\tby:0.04211894284888123\t:0.01\n",
"the:0.32020998227583497\tto:0.13522116753475766\twill:0.11113349481903008\tand:0.10932463514828092\tan:0.07277003507943874\tnot:0.06699437766785483\tof:0.05951910548050354\tno:0.0579352928940435\ta:0.0568919091002556\t:0.01\n",
"of:0.2394459909603569\tthe:0.1947621424096186\tand:0.19355548233287825\tto:0.1019519776606147\tbe:0.05930911108984446\twas:0.05095346787872063\tin:0.050616436498381434\the:0.050249655166503523\ta:0.0491557360030814\t:0.01\n",
"the:0.27673912176074406\tand:0.23941193564225666\tto:0.11927631160041899\ta:0.0943564774357278\tcan:0.07311142547045796\twill:0.05667328032057674\tof:0.044952110899149716\tthat:0.04312932332252169\twhich:0.042350013548146215\t:0.01\n",
"and:0.277041036265273\twas:0.15210578627000415\tare:0.1121927649091567\tis:0.0988897953410956\tbe:0.08476845902434825\tor:0.07869584624404423\twere:0.07063898567099396\tthat:0.05992418052452087\tit:0.055743145750563196\t:0.01\n",
"a:0.2843983119971356\tthe:0.18388533658932824\tA:0.1315001596655834\tOne:0.09153109079796391\tthat:0.06884733478718379\tone:0.0622414212039712\tof:0.06179949209573944\tand:0.05864005362538858\tlast:0.04715679923770579\t:0.01\n",
"and:0.2546616383805921\tthe:0.238231152364289\tof:0.23072813369022166\twith:0.05905024256428715\tor:0.051242976319429305\tno:0.04650622734214275\tfor:0.04016635915667988\tby:0.03651381082981262\tin:0.03289945935254558\t:0.01\n",
"of:0.41879060163610415\ton:0.13836690129069246\tin:0.13490713470392\tto:0.10633750347183464\tfrom:0.054599341177610956\tby:0.04578874496310946\tand:0.03252381045710034\talong:0.029401338940533046\tacross:0.029284623359094878\t:0.01\n",
"there:0.31792060553551105\tThere:0.2289986106408456\tIt:0.12723188543055353\tit:0.12505343413185893\twhich:0.048489575379316786\tThis:0.04517066265750571\tthat:0.04385909080490402\tthis:0.031144485852852247\the:0.0221316495666521\t:0.01\n",
"of:0.23263405770696685\tat:0.15112258939896792\tin:0.13071599623158883\tto:0.10950454781810545\tfor:0.101239446110944\ton:0.10013154685253053\tand:0.07507416717033927\tfrom:0.04755879529717124\tIn:0.042018853413385876\t:0.01\n",
"said:0.21811251752064983\tthe:0.2005658809109547\tof:0.19559264325250703\tto:0.14353455047120336\ton:0.09253421714515478\tby:0.04006134258613858\this:0.037559554142721226\tin:0.034672569754686904\tany:0.027366724215983615\t:0.01\n",
"the:0.41278941349222126\ta:0.12855070738836297\tof:0.12250304876249758\tin:0.08629834225307474\tand:0.07228980890319561\tto:0.05075232290350121\tThe:0.04856794117789731\tan:0.0348096174991363\tfor:0.03343879762011298\t:0.01\n",
"the:0.6305443002617414\tat:0.14772676994102527\ttho:0.03848645658234538\tits:0.03559422975183326\tThe:0.034016556201952534\tour:0.029940434937526066\ttheir:0.027213208085179273\tto:0.025148630422465873\this:0.021329413815930894\t:0.01\n",
"has:0.33333702863715825\thave:0.3228425110935221\thad:0.21242768928722014\tnot:0.04475958616135297\thaving:0.036412240452270685\tlias:0.0108107693705246\tever:0.010240910698968788\tbad:0.009790534037515718\tnever:0.009378730261466729\t:0.01\n",
"the:0.8001754830200196\ttho:0.03632353297677438\tof:0.030979382822141268\tThe:0.026931291276810754\ton:0.02419012428512811\tan:0.02215247975045158\tin:0.018109842952733265\tand:0.015575583077064742\ttbe:0.015562279838876203\t:0.01\n",
"is:0.15987667133876307\table:0.1227424241965867\tand:0.11681047036202968\twas:0.11081336994704045\thim:0.10956682876057978\tas:0.106658200864509\ttime:0.09537320116115974\tnot:0.0881907477461626\tready:0.07996808562316893\t:0.01\n",
"and:0.1951060423070764\tcalled:0.17141350145046255\tbased:0.1163678018584929\tdown:0.11153637060501025\tplaced:0.09821204492419602\tdepend:0.07852066283373466\tput:0.0766750233378742\tinsist:0.07205212018520861\tdepends:0.07011643249794439\t:0.01\n",
";:0.24189029576339335\tit,:0.14447455886319682\thim,:0.13078560541511702\tthem,:0.09615167478019503\tit:0.08115502745303596\thim:0.07882403108585184\tin:0.07795527625761661\ttime,:0.06946212330919997\tStates,:0.06930140707239349\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"and:0.2315462136386334\tthe:0.22490479087931559\tof:0.1618698701604011\tto:0.08182285887689063\tthat:0.07060516472593711\ta:0.06500623663700784\tfor:0.05634309481314048\twhich:0.05164305651158436\tin:0.04625871375708931\t:0.01\n",
"be:0.21935538795095208\twas:0.1457728582237208\tis:0.14245178627606475\tare:0.1395906134063093\tbeen:0.10368525156602346\twere:0.08772653448457474\tso:0.06060406283610804\tand:0.05535008479067488\thave:0.03546342046557191\t:0.01\n",
"of:0.2626102075218878\tthe:0.24551604448371958\tin:0.14669470586451852\ta:0.1293728564385278\tto:0.05536068505211036\tand:0.05135085456535152\tas:0.034438395782427245\tthat:0.0339885602665288\tfrom:0.030667690024928265\t:0.01\n",
"a:0.4072227353037553\tthe:0.2578414265843989\tvery:0.06552587351252222\tand:0.057929767941718974\this:0.051367806119372826\ttheir:0.049021827449328995\tof:0.03894381240871593\tmost:0.03569302901174672\tits:0.02645372166843991\t:0.01\n",
"it:0.17996999397799696\tand:0.1467717683447611\the:0.1418893356853653\tthey:0.12187243234760438\twhich:0.10517417096667325\tIt:0.07987872563752177\tI:0.07603323103872063\twho:0.06995382099532323\tthat:0.0684565210060334\t:0.01\n",
"the:0.29027738760679683\tof:0.17716815220706592\tand:0.12389038224294513\tin:0.11626368332365436\ta:0.10954135482806564\tthat:0.04877337808863228\tto:0.04317460948485827\tfor:0.041338307360486985\tbe:0.03957274485749461\t:0.01\n",
"sell:0.20083825146821063\tand:0.14265409820514965\to'clock:0.13619560671602668\tday:0.13247129658145468\tsold:0.09887543189495547\theld:0.0849487489503578\twas:0.07861219197171969\tdied:0.06678369289519716\tsale:0.048620681316928156\t:0.01\n",
"of:0.21136299159128716\tthe:0.17753213940010656\tin:0.12419605282446165\tfor:0.10434749788854623\tto:0.0902155832610982\tand:0.0880223694023487\tat:0.08063342385042982\ta:0.06711930753512325\tby:0.04657063424659833\t:0.01\n",
"and:0.3212444796392059\the:0.14031779706165592\thad:0.13910760855173987\twas:0.09972299841624532\tI:0.08286377862778121\twho:0.06414159159040593\thave:0.05629488176847202\tbe:0.04379533941881559\tHe:0.04251152492567806\t:0.01\n",
"of:0.3221623304139265\tto:0.25885058565574487\tfrom:0.09540830564224477\tin:0.089309833763548\tat:0.07889341506321629\tand:0.056940749041919154\tthe:0.03159307376887882\tIn:0.029748346687921905\tby:0.0270933599625998\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"it:0.1912037633768029\tand:0.14181893477537585\tthey:0.12842954853076882\twhich:0.10681691350284597\the:0.10149412192147439\tIt:0.09453437728173905\tthat:0.08217827055419531\tyou:0.07728264721486483\tI:0.06624142284193282\t:0.01\n",
"of:0.25152664055298124\tthe:0.20134356932632202\tand:0.13591350786013764\tto:0.12051753700374553\tin:0.0743518891587371\ta:0.0632346414166317\tbe:0.05213397851899265\tat:0.046627234082953314\tas:0.04435100207949871\t:0.01\n",
"it:0.2131788841045554\the:0.1867324812779885\tIt:0.14093961810063965\twhich:0.10085580692903923\tI:0.09523457785691533\tand:0.0799079407626281\twho:0.06284443033512091\tHe:0.05697400216718626\tthat:0.05333225846592657\t:0.01\n",
"of:0.6729952527195047\tin:0.17830495209648706\tto:0.035634952803339844\tIn:0.03052144015093276\tand:0.027706978406152244\tthe:0.014685686626840925\tby:0.011215361337421962\tfor:0.010384748348137822\ton:0.008550627511182856\t:0.01\n",
"will:0.42760784964598064\twould:0.13449120027508205\tmay:0.08231730523065031\tcould:0.06688105747215166\tshould:0.060823294047405975\tshall:0.060569627665220296\tand:0.05943352776273611\tcan:0.0499442397349203\tnot:0.04793189816585279\t:0.01\n",
"the:0.389272800813676\tof:0.17210485164621478\tand:0.17082175439220343\tThe:0.11627151869807545\tthat:0.04169052592452665\this:0.028205704258302672\ttho:0.025059907039819838\tthese:0.023323544818787702\tto:0.023249392408393497\t:0.01\n",
"have:0.18545774911546717\thas:0.16777596421390242\thad:0.15822469169637085\tand:0.14000326005752978\twas:0.08152936259167116\tbeen:0.07480275218574646\tbe:0.07350399824326127\tis:0.06170803679289689\tare:0.046994185103153924\t:0.01\n",
"to:0.1884421318084709\tat:0.1791241369076127\tof:0.15986728414702567\tand:0.12364118260446284\tthe:0.11731561949949443\ton:0.06966401037099171\t.:0.05365882301519473\tin:0.05329389679943893\tfor:0.04499291484730806\t:0.01\n",
"that:0.2635729510579734\tand:0.20831154859468598\tas:0.13207683413561966\twhich:0.12508465137986644\tbut:0.09342121002229281\twhat:0.05136412459144457\tif:0.04989727424936807\twhen:0.03377957587088903\tIf:0.03249183009786002\t:0.01\n",
"the:0.29263217746943415\tof:0.17550736750386745\ta:0.16310624620330552\tand:0.11000549737375898\tto:0.08285668737538564\tin:0.0647814373835329\tthat:0.03765473659652297\tThe:0.03728147018580662\twith:0.026174379908385753\t:0.01\n",
"day:0.19066187710328347\tState:0.15913847844616635\tstate:0.1275273692182786\tline:0.1257413516629429\tside:0.10220907569578667\tcity:0.08366591591554945\tcounty:0.08296329756108911\tCounty:0.07369526852383089\tcorner:0.044397365873072664\t:0.01\n",
"that:0.2635729510579734\tand:0.20831154859468598\tas:0.13207683413561966\twhich:0.12508465137986644\tbut:0.09342121002229281\twhat:0.05136412459144457\tif:0.04989727424936807\twhen:0.03377957587088903\tIf:0.03249183009786002\t:0.01\n",
"the:0.6575697637458343\tof:0.15888776707621566\ta:0.03681498001822668\tThe:0.03243435698330911\tand:0.03030126854055607\ttho:0.02723892932775947\ton:0.021533530510232112\tto:0.012804913501207455\this:0.012414490296659034\t:0.01\n",
"to:0.3653528718918377\tand:0.25680221006856235\tof:0.08012951898789845\tthe:0.06850713937309004\twill:0.048319219294582536\tnot:0.04797118394530643\the:0.043547347336427844\tI:0.04072748648990365\tin:0.03864302261239108\t:0.01\n",
"the:0.2742520692555786\tof:0.20474024814225336\ta:0.16428546387840995\tin:0.10590741782189382\tto:0.07375140213215406\tand:0.06771460110801009\tfor:0.0369222748253858\tas:0.03370502944413624\tIn:0.028721493392178075\t:0.01\n",
"the:0.178773384293596\tand:0.15905693441419114\tof:0.1507009654572478\tto:0.12785537177660436\tbe:0.1151551695765266\ta:0.09109342413565304\tin:0.05932541876549419\twas:0.0550093693954189\tis:0.05302996218526802\t:0.01\n",
"to:0.22337251680495837\tand:0.1921394379853872\twas:0.15025284833697586\tbe:0.11238537940533079\twere:0.08723898035104712\tbeen:0.06965370393643183\tare:0.05563097139248967\tnot:0.050903973418586754\twill:0.048422188368792585\t:0.01\n",
"and:0.32537711780257433\twas:0.12220052021919645\tis:0.10742138220363176\tare:0.08885861767224797\tit:0.0829633053855797\tbe:0.07787982284930554\tthat:0.0718773326858391\twere:0.058683061923616366\tas:0.05473883925800886\t:0.01\n",
"said:0.21461392154490835\tthe:0.21148293762877837\tthis:0.13068621703186262\tand:0.12707565099743212\ta:0.11384558049992428\tsame:0.06373636218209854\tof:0.054994347014542144\tnext:0.03823713321867716\ttheir:0.035327849881776265\t:0.01\n",
"the:0.33601536274839616\tof:0.16958902826991312\tMr.:0.10573912457216135\tThe:0.10541590539910746\tand:0.08531333366099246\tthat:0.07291914405203645\ta:0.05455260066519831\tthis:0.03190090597915657\tin:0.028554594653037953\t:0.01\n",
"of:0.22930634563853414\tby:0.19285529939235008\tand:0.15912643559902095\tRev.:0.1432169905132942\tto:0.070790210355669\t<s>:0.060062718694457916\tin:0.04670068045319359\tsaid:0.04636697018878571\tthat:0.04157434916469446\t:0.01\n",
"the:0.22665523914659386\ta:0.21450981610920097\tof:0.1660967237202124\this:0.10404132847407499\tthis:0.07917769376118919\ttheir:0.05884424313274001\tno:0.04805925005334726\tany:0.047288619724169804\tgood:0.04532708587847141\t:0.01\n",
"to:0.27081586931002627\twill:0.12594712842888114\tthat:0.11669512860813844\twould:0.10994680962695072\tmay:0.09588100207792505\tshould:0.08178903954320044\tand:0.0774806142857418\twhich:0.05955375320997588\tcan:0.05189065490916024\t:0.01\n",
"in:0.3523579276949166\tof:0.2765686372185567\tIn:0.0886960471775618\tto:0.06378242933217942\tfor:0.047164314224571596\tand:0.04675751339105833\twith:0.039821136229830065\tthat:0.03853585057742096\tby:0.03631614415390464\t:0.01\n",
"of:0.32117316915588207\tin:0.15284031028226666\tand:0.14584767224091738\tfor:0.10728830362192186\tthat:0.0940085153028219\tto:0.06485621751073173\tbut:0.0381403820940134\twith:0.035456632968404914\tby:0.030388796823040052\t:0.01\n",
"he:0.2242417762609109\tit:0.12878114764035253\tIt:0.11070307587847002\tand:0.10564988555751101\twhich:0.10232161646221498\twho:0.09484333164450745\tHe:0.09323569244568171\tthat:0.07116527912425154\tthere:0.05905819498609983\t:0.01\n",
"the:0.35574206846072637\tand:0.15896810210873036\tof:0.15679853650912498\ta:0.11251704719713505\tto:0.06578086643409745\tThe:0.04207241453792848\tby:0.035829787389200514\twith:0.0322015310475615\t.:0.030089646315495436\t:0.01\n",
"to:0.35256640420913954\twould:0.12470208334270645\twill:0.09852700743323406\tI:0.0940406788053392\twe:0.07727529580889596\twho:0.0687503143320535\tshall:0.06248211170563952\tand:0.05942381843578939\tthey:0.052232285927202464\t:0.01\n",
"he:0.24195324444002686\tthey:0.1693088876990264\tI:0.16560996234368525\twho:0.14723786825167695\twe:0.06922178732482465\tshe:0.06726927340866284\tand:0.04682115062642908\tHe:0.04212754511819978\twhich:0.04045028078746814\t:0.01\n",
"of:0.2912844283672652\tthe:0.19999747355476455\tand:0.14048733695162877\tto:0.12014683557006417\ta:0.07247347119681663\this:0.05267187154297584\tfor:0.04252882897866759\tat:0.036546610039992204\tall:0.033863143797824874\t:0.01\n",
"the:0.6433679084630854\tThe:0.06499665804745895\tof:0.055371085566324696\tour:0.04542089967060675\this:0.044010094164882683\tAmerican:0.03837634773506639\ttheir:0.034953196560141786\tand:0.03179397284014683\ttho:0.03170983695228652\t:0.01\n",
"of:0.2314787866626774\tin:0.1635415441364617\tat:0.13623310511628933\tto:0.12475822205396489\tand:0.08174569600768211\ton:0.07648236697015053\tIn:0.06384841914428711\tAt:0.062453483901137044\twith:0.04945837600734988\t:0.01\n",
"be:0.2705778452236402\twas:0.2659008720854407\tbeen:0.14336397713106783\tis:0.09000877504575129\twere:0.07021376170509477\tare:0.05226439299609866\tand:0.044437921017882936\the:0.027873897620904472\tbeing:0.025358557174119136\t:0.01\n",
"the:0.4319105958634098\ta:0.2884825987965892\tof:0.07549590017184842\tthis:0.04801532225118098\tThe:0.044079693271758265\twith:0.032493405498834366\tA:0.027691618965203207\ttho:0.021353694520013178\tand:0.020477170661162426\t:0.01\n",
"the:0.3727091127604743\ttake:0.3418219748606355\ttaking:0.08317299974613886\tto:0.03436967747849446\ta:0.03421368093946092\ttook:0.03284930344696243\ttaken:0.03214761627662365\tand:0.029446035000314022\tor:0.029269599490895647\t:0.01\n",
"made:0.17295908650123606\ttake:0.14477461809886874\tmake:0.1267309868606757\ttook:0.10985375975440086\tput:0.10143447680216158\tgive:0.09391292622724075\ttaken:0.0920634518130242\tpicked:0.07452197373783816\tkeep:0.07374872020455392\t:0.01\n",
"the:0.4323132820292852\tof:0.12336782166790543\ta:0.0971811176975688\this:0.08037639407356527\ttheir:0.07667506328810779\tits:0.054012898690094756\tand:0.04661757829136398\tThe:0.041817827917040494\tour:0.03763801634506828\t:0.01\n",
"it:0.19549328618000633\tand:0.14240551424094677\tI:0.12396452388203216\the:0.10837075534165982\twhich:0.09917829359620355\tthey:0.09882972305776178\tIt:0.08057606199899532\tthat:0.07393722861085704\tyou:0.06724461309153713\t:0.01\n",
"to:0.4066178088404131\tand:0.1491737150604443\twill:0.1458703693910693\twould:0.09684688027778628\tnot:0.05090171066850671\tcould:0.037941396627322224\tI:0.03663147918730246\tcan:0.03319480386135016\tthe:0.0328218360858054\t:0.01\n",
"the:0.2910452763504238\ta:0.2118411243553457\tand:0.13865746327248113\tof:0.12280623968687575\tto:0.0782434836624875\tThe:0.04436794788474623\tor:0.03590544277743593\tan:0.03569880465726704\tin:0.031434217352936965\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.8317291756483433\tThe:0.09706860606175377\ttho:0.02677408977834049\this:0.010047275422924376\ttbe:0.009829269494173199\ta:0.0038244692351635744\tits:0.00381290258966392\ttheir:0.003569888240446021\tTho:0.0033443235291914595\t:0.01\n",
"of:0.34519319734920884\tin:0.1740796979419874\tto:0.13006151880460723\twith:0.08186616628090776\tfor:0.061058474369524544\tthat:0.05773650080404843\tby:0.05418565308948003\tat:0.04739171217430812\tIn:0.038427079185927734\t:0.01\n",
"<s>:0.4315669548231229\t.:0.1742289381058952\tlots:0.06529748357417822\tMr.:0.059873837809766135\tPresident:0.05694685314495568\tit.:0.05692241658015827\tand:0.05126260175847215\tSt.:0.04867295403988803\tfrom:0.045227960163563286\t:0.01\n",
"of:0.37257385012193533\tto:0.15456205200825693\tin:0.11620413706528723\tby:0.07825771689581237\tand:0.06115176371234089\twith:0.060047017247118036\tfor:0.0563551453152064\tfrom:0.05336532636867095\tthat:0.037482991265371884\t:0.01\n",
"of:0.2798832710788444\tthat:0.2541133273430641\tand:0.1380592042185119\tif:0.06265842800735161\tas:0.060019599495054206\tto:0.05163446237429426\tIf:0.05056458286320224\tall:0.04702925641265599\tbut:0.046037868207021236\t:0.01\n",
"place:0.87556942693188\tpoint:0.04382782726088425\tday:0.014230189360568971\tpower:0.013127474107945857\tcity:0.011520233769646573\tout:0.01121667587732746\tstate:0.009955561081106406\tand:0.005849249161869026\tthe:0.00470336244877134\t:0.01\n",
"the:0.46789732203587214\ta:0.24702586273752475\tdining:0.09714701150655729\tthis:0.054605591282142166\this:0.03342364080969264\tand:0.02353469880627065\tother:0.0224234801099776\ttho:0.022057578301063294\tof:0.021884814410899518\t:0.01\n",
"and:0.17968039240673853\tput:0.13780222804809772\twork:0.11680109377889591\tit:0.11478777540367306\tout:0.10523378076168087\tplaced:0.0896116603340918\tthat:0.08526578906705683\thim:0.08183663854022741\tthem:0.07898064165953794\t:0.01\n",
"to:0.5956093113726959\twill:0.1248387570180116\twould:0.05866511497950865\tand:0.05185690394907447\tnot:0.04049479457136248\tcan:0.03044729542099438\tmust:0.03019589107515853\tshall:0.029266940160839545\tshould:0.028624991452354382\t:0.01\n",
"the:0.33247259990505845\tof:0.17295725165747103\tand:0.1667719904180001\tto:0.09554346634445841\ta:0.051222721012191004\tin:0.04744853347408344\twas:0.04393996506570028\ton:0.04092355012125116\the:0.03871992200178614\t:0.01\n",
"and:0.2275568136184341\tof:0.198357135738386\tthe:0.1750661188511791\tto:0.07855314553146203\tfor:0.06714821591926588\ta:0.0663876628110636\tthat:0.06195441710685245\twhich:0.06002681078592804\tor:0.05494967963742877\t:0.01\n",
"at:0.4925372573387184\tthe:0.2011019346779313\tof:0.06439392021220189\tand:0.05971907922967461\tto:0.046955524706209166\tAt:0.0467380947710893\ta:0.03125603658296562\tso:0.025753925472691955\tthat:0.021544227008517887\t:0.01\n",
"and:0.22043221216889355\tor:0.1402435894492591\tappear:0.13388606094278052\tdays:0.124708957017998\tthat:0.09367849322853246\ttime:0.08957390444209595\tbrought:0.06392370992962311\tjust:0.062112643107892156\tlong:0.06144042971292521\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.5464568945796572\tto:0.11582806220430915\tfor:0.06119090249964772\tthat:0.05228355858824332\tin:0.04901525436697713\twith:0.046526469625056036\tby:0.04259449325945424\tall:0.04044091432340798\tas:0.03566345055324718\t:0.01\n",
"the:0.7832320812241133\tThe:0.034994765375564875\ttho:0.034248167636084056\tin:0.03398518441840311\ta:0.027055969153015284\tand:0.026887077682553787\tno:0.02065298669590591\tto:0.014997236856731327\ttbe:0.013946530957628381\t:0.01\n",
"the:0.33601536274839616\tof:0.16958902826991312\tMr.:0.10573912457216135\tThe:0.10541590539910746\tand:0.08531333366099246\tthat:0.07291914405203645\ta:0.05455260066519831\tthis:0.03190090597915657\tin:0.028554594653037953\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.407300758899599\tof:0.23576753961832833\tand:0.14258954446526978\tThe:0.06138098928097866\tto:0.04105281580942266\tfor:0.02661739792888378\tan:0.026541568663651163\tby:0.024414995465284833\ttheir:0.024334389868581854\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.15862241364981214\tand:0.15751333905624854\tto:0.15637447451180367\tthe:0.14620390380107715\tin:0.129532116122774\ta:0.0677699611842351\twas:0.06062990956871154\tis:0.06058567911506544\tfor:0.0527682029902725\t:0.01\n",
"I:0.4520348112499833\tto:0.11241668274729089\tnot:0.09108312908628932\tyou:0.08867032898289916\twe:0.06448579587140611\tand:0.05649340176365031\t1:0.05506522450554836\tWe:0.04232286252940478\tthey:0.027427763263527652\t:0.01\n",
"be:0.18596561433059947\thave:0.1733814739710572\the:0.1341276266413393\thad:0.10773849307990521\tand:0.10592335935769895\twas:0.07747335852198195\thas:0.07668357080626835\tI:0.07569419524102929\tis:0.05301230805012041\t:0.01\n",
"men:0.17720100873507577\thim:0.13778241106576816\ttime:0.1178033853144854\tout:0.11327047520822671\tup:0.10971171881460749\tcity:0.08567922927992858\tthem:0.08432435341805966\tcan:0.08234286146629949\tin:0.08188455669754867\t:0.01\n",
"the:0.5190061059306472\ta:0.1777625006821103\tof:0.07625901455717495\ton:0.06407247248262031\tand:0.03904723927801755\tin:0.03556573324443519\tThe:0.027344377289893886\tfor:0.02562141881944103\ttho:0.02532113771565949\t:0.01\n",
"the:0.3158408192967073\tof:0.21994251758856873\tand:0.1003583695997111\tin:0.09695672547539042\ta:0.08113682500390351\tto:0.0635818677061302\tas:0.037860623230459994\tfor:0.03759735826284289\tthat:0.03672489383628577\t:0.01\n",
"and:0.17414382311366458\tit:0.1332014681172871\thim:0.13163738263447378\thim,:0.11583660135941246\ttime:0.09320389569296608\tthem:0.08995606629616448\tmen:0.08711775958018796\tthem,:0.08325949605566184\tit,:0.08164350715018179\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"it:0.19087407342617227\tit,:0.12713147329124722\thim:0.12005954907577947\tup:0.11935455593136396\tthem,:0.09800116203247214\tthem:0.09041938593804895\t;:0.08813441427053831\tand:0.08070779420573153\ttime:0.07531759182864615\t:0.01\n",
"of:0.4867197351404902\tin:0.16352154209430358\tto:0.07041765230056345\tIn:0.05228793022091132\tby:0.04703260947398028\tthat:0.046686251988778446\ton:0.04622369742820212\tfrom:0.0412145774782885\tat:0.03589600387448219\t:0.01\n",
"of:0.41387618861087605\tin:0.2482324655587682\tto:0.0784091673704518\tand:0.06658829921264824\tfrom:0.0576756240059797\tIn:0.04310275678806003\ton:0.04206347320816675\tat:0.02192752339826676\tfor:0.018124501846782555\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"the:0.3815039958496735\tof:0.1775850791910821\tand:0.11696029018755366\ta:0.07779102455404187\tin:0.06270769571925004\tto:0.0565555002363238\t.:0.04684603512525859\tan:0.03809697142664876\tThe:0.031953407710167615\t:0.01\n",
"the:0.3406988508306554\ta:0.2545864663724193\tof:0.14212782220540512\tand:0.08948304876145342\tthis:0.04792272812843418\this:0.032839296662892405\tvery:0.03243050048388012\tmost:0.02501918602371206\tby:0.024892100531148254\t:0.01\n",
"the:0.5942344849936285\tThe:0.0890754376827932\tthis:0.08012227640219699\tof:0.07335437156093966\tsaid:0.03982341627302276\tour:0.029849700075998777\tsuch:0.029357283915717847\tany:0.02740946858211304\this:0.026773560513589166\t:0.01\n",
"that:0.3206005447582862\tand:0.14029219895670667\twhich:0.11571779895744334\twhen:0.11007850155200313\tbut:0.07750892545040071\tif:0.072449996605486\tas:0.06679490706112401\twhere:0.05031297074891964\twhat:0.03624415590963029\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.4583638387205192\tto:0.10334740792384976\tin:0.08120894466927439\twith:0.0641051991359694\tand:0.06354877428088508\tby:0.06161256058969246\tfor:0.05846447622167487\tthat:0.05601015909356688\tat:0.0433386393645679\t:0.01\n",
"of:0.43497373686009055\tin:0.10943599308165079\tto:0.09786990874557734\ton:0.08567786308535341\tby:0.07789378813517403\tand:0.05345678999417756\tthat:0.051371486062612104\tfrom:0.043187127605810664\twith:0.03613330642955356\t:0.01\n",
"of:0.47690685519650555\tthe:0.137655129217878\tand:0.09397019195697173\tin:0.0693970652834722\twith:0.05387668943371414\tit:0.051290446055519974\ta:0.03792817449955502\tfor:0.03643878170673864\tar-:0.03253666664964461\t:0.01\n",
"the:0.7034796475381144\tThe:0.08101223811846885\tand:0.061485984827939634\ttho:0.0499213516547758\ta:0.03257332405117143\tother:0.02325214733577753\ttbe:0.01930607949457224\tof:0.011264397644606412\tan:0.007704829334573769\t:0.01\n",
"of:0.28257475053132186\tto:0.1563998891818066\tin:0.14516919600023287\tand:0.10392155756860162\twith:0.10086456050731026\tthat:0.0700560694969397\ton:0.049409017899068146\tfrom:0.044201861248779284\tall:0.03740309756593975\t:0.01\n",
"it:0.19607017306149033\tand:0.16058581433301125\tthere:0.1265723458376324\tthem:0.09865932803144394\tday:0.09298119172999561\thim:0.0926653614908627\tmade:0.07979447656269983\tyear:0.07135664270162474\t<s>:0.0713146662512392\t:0.01\n",
"a:0.43387233116657375\tso:0.1655038599136487\tthe:0.1356602870431119\tvery:0.07574313231743487\this:0.04261995134629696\tnot:0.04047121230953369\tand:0.03840115255759181\tas:0.031930648981003736\thave:0.02579742436480468\t:0.01\n",
"of:0.34820354389133334\tthe:0.31954696961184775\ta:0.0963919010716767\tand:0.04683146099362693\ttheir:0.044379873398685384\tin:0.04309380014278059\this:0.039729940232888596\tto:0.027487816931491344\tgreat:0.024334693725669397\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"is:0.20986921952382295\twas:0.20121819468303812\tbe:0.15983960806717007\tas:0.15362798113556725\tare:0.06753229249224542\twere:0.059062648352731506\tand:0.053872059724295256\tbeen:0.04629086017679622\tIs:0.03868713584433323\t:0.01\n",
"and:0.3274567467080461\tplace:0.1537603770353304\twas:0.0906424583977484\theld:0.07870082061445474\tnot:0.07136889565304963\tarrived:0.06999765875318927\tthat:0.06992803243691739\tthem:0.06413339551123619\tare:0.06401161489002795\t:0.01\n",
"<s>:0.47586635172640585\t.:0.12482876411395696\tit.:0.108465767776175\tthem.:0.065264285885455\tClerk.:0.05334397719035086\thim.:0.04654279826941615\tthereof.:0.041958788041951\tand:0.03756142800460194\ttime.:0.0361678389916873\t:0.01\n",
"the:0.3127947146552279\ta:0.277448694746578\tof:0.12974170098669316\tin:0.09394736321451502\tand:0.043212337791598845\tvery:0.03817876394497628\tto:0.03768831134545429\tfor:0.02878920342338471\tThe:0.02819890989157177\t:0.01\n",
"from:0.35320388718922985\tand:0.1677897095896351\tof:0.16747770149380525\tat:0.09455085116969557\tin:0.06161301949405432\twith:0.04145674961995477\tfor:0.03564790807437408\tby:0.03429850941343685\tto:0.03396166395581435\t:0.01\n",
"the:0.3720023252143413\tof:0.1941351269845523\tother:0.08339116526973617\tall:0.07284883675003435\tan:0.06774626718063424\ta:0.05547803778364883\ttheir:0.04948154705747781\tgood:0.047613571045660295\tthis:0.04730312271391485\t:0.01\n",
"and:0.18893461884206197\tthe:0.1261547008425753\tpersons:0.11023421670679852\tfeet:0.10375292928068346\ta:0.10297732604554524\tline:0.09433627045982453\tlot:0.09365102191108401\t<s>:0.09145848192003468\twhich:0.0785004339913924\t:0.01\n",
"<s>:0.5930996081218914\tit.:0.11558309854571526\tthem.:0.05201422891130757\t::0.04517249631746882\t.:0.0429691969067057\tcountry.:0.04057876477199891\tpeople.:0.033966835444693755\ttime.:0.03357506222097869\tyear.:0.03304070875923984\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"line:0.1965432942671781\tState:0.13953875255908724\tnumber:0.13557916325175678\tname:0.12397482093275528\testate:0.08301169097696506\tcorner:0.0788675673065939\tcity:0.07886694068464112\tdaughter:0.07865715577772517\tstate:0.0749606142432975\t:0.01\n",
"be:0.451025841202669\tis:0.10893640433301859\twas:0.1044175739506102\tand:0.08585344231835261\tbeen:0.07652531619327671\thave:0.043078450289414004\tare:0.04105284460658349\tnot:0.040819002257699154\thad:0.038291124848376136\t:0.01\n",
"of:0.3082829537921129\tthe:0.2989721630814486\ta:0.09404747059983959\tin:0.08260674074739109\tto:0.061832341135629\tand:0.048022748985164954\tfrom:0.032283644498497\tThe:0.03211856512158717\tfor:0.031833372038329664\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"thousands:0.3720665206051326\tmillions:0.3415792067045099\tnumber:0.09132226560445933\thundreds:0.08458010579428411\tsum:0.034921926533505177\tcouple:0.02332806765994161\tbillions:0.019268839181274165\tsands:0.012025480085990404\tMillions:0.010907587830902616\t:0.01\n",
"made:0.26265731267074843\tand:0.22961398020134133\tor:0.13449682185445072\tcaused:0.075849899788273\tthat:0.07503884018094473\tit:0.062327912179133096\taccompanied:0.051037555378563755\twas:0.0509414177167287\tsurrounded:0.04803626002981649\t:0.01\n",
"to:0.40263887624942435\twill:0.1837249641967022\tmay:0.10612733769400423\tshall:0.0659507050743825\tshould:0.059175323943519854\twould:0.05269416011728895\tcan:0.043831175366826604\tmust:0.04236569554773388\tnot:0.03349176181011739\t:0.01\n",
"went:0.1794974806493376\tgo:0.15454708545878776\tcame:0.11151278596248962\tback:0.09777108854160564\tit:0.09728390677389735\tout:0.0959887918454101\tput:0.09227887075263337\tdown:0.08367866714280338\tcome:0.07744132287303515\t:0.01\n",
"or:0.27762553005288093\tand:0.13064399316300915\tnot:0.12877463652398705\tbe:0.11041845872744177\twas:0.08160641197461242\tthe:0.07510636362592868\tis:0.0673168584903593\tare:0.06567323368171052\twith:0.05283451376007018\t:0.01\n",
"the:0.3134046250914595\tand:0.1639811262901994\tof:0.14219853618777395\ta:0.08796748462862844\tbe:0.06957567662122315\tto:0.06819117620207864\tin:0.05948443407937532\twas:0.04595601497713156\this:0.039240925922130146\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"that:0.35293185256899967\twhich:0.12489922641677852\tif:0.09882764445054558\tas:0.09153220831481992\tand:0.0870562662839039\twhen:0.07289888995907191\twhere:0.06153747893122891\tbut:0.05206554947727277\twhom:0.048250883597378856\t:0.01\n",
"W:0.14910773017956414\tM:0.12276990578542449\tJ:0.12075148222724486\tC:0.11156552709985228\tS:0.10363588713123016\tE:0.10247688778446311\tA:0.09710894198133282\tH:0.09413683549342977\tB:0.08844680231745826\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"and:0.3099153085789093\tfact:0.1409983175313677\tsaid:0.10921240888874081\tso:0.10269451629753672\tbelieve:0.08424140254149144\tsay:0.0787722869319005\tknow:0.07483722232436053\tstated:0.04648170615106685\tshow:0.04284683075462619\t:0.01\n",
"of:0.2654522165841424\t<s>:0.19862647392326596\tthe:0.154629475187492\tto:0.14704281933471025\tin:0.06002964745614592\tand:0.05151217817309042\tsaid:0.04294730601809345\tfor:0.038781725325944864\tby:0.030978157997114546\t:0.01\n",
"and:0.2802179654686674\ttogether:0.17581662481571086\tcovered:0.10720042995908446\thim:0.0945742991305398\tup:0.08880677792452797\tit:0.06615739106357521\tmet:0.06358405713054323\tthem:0.061624174380125664\tbut:0.05201828012722528\t:0.01\n",
"and:0.3523939258864828\tthat:0.14440617334781114\tof:0.13432379754418652\tor:0.07271324377315667\tit:0.06470797582669009\tthe:0.056574811812524155\thim:0.05598146673497821\t<s>:0.055058044944473555\tfor:0.05384056012969703\t:0.01\n",
"an:0.5876076461554917\tthe:0.19015657010609027\tproposed:0.0494347173757425\tthis:0.046025160952994325\tsaid:0.02979183966261769\tAn:0.027093902598660617\tfrom:0.02246355180453608\ta:0.019881859791559604\tand:0.0175447515523072\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"<s>:0.32285616252127114\tand:0.19134587213807477\twas:0.08226218979507015\tthat:0.08188763720483351\tmade:0.07382141432160089\tit.:0.06895875144309487\tfile:0.06813787898337534\tis:0.05420556549123636\tbe:0.046524528101443\t:0.01\n",
"and:0.1752194112158736\tIt:0.164397091843824\tit:0.1564792644062396\the:0.14204123805770047\tI:0.12114492216676215\twhich:0.06684302849290157\tHe:0.05820732425195346\twho:0.05617829578604995\t1:0.049489423778695155\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"day:0.3128355846104806\tState:0.19043915393877026\tside:0.1011462924149628\tcorner:0.07798768867928023\tcounty:0.06746820417600793\tstate:0.06264231430431227\tline:0.060383939676556385\tpart:0.05864216227648048\tHouse:0.05845465992314889\t:0.01\n",
"the:0.7596050559209467\tThe:0.05026823054312067\ta:0.038520693318354636\ttho:0.03364015082533928\this:0.027687979576756335\ttheir:0.0256121790195622\tits:0.021298540747927384\tour:0.01676424162793483\tand:0.016602928420057797\t:0.01\n",
"and:0.3460033457654268\tlooked:0.09678391852634671\tlook:0.08634026244828517\tdown:0.08311339396150949\tcalled:0.08138127793074361\timposed:0.08028773867012932\tbestowed:0.07594290020046159\tthat:0.07074452616663428\tconferred:0.06940263633046306\t:0.01\n",
"was:0.26869391692137634\tis:0.2326076611312287\tare:0.08900452759477528\tand:0.08805363365568818\tbe:0.07386993473653548\thad:0.07319222466492704\twere:0.06288988815278722\tbeen:0.05328272029595672\thas:0.04840549284672516\t:0.01\n",
"and:0.30937248239004295\tthat:0.14926177207768093\tas:0.12706581059587674\twhich:0.07533535813185005\tthe:0.0745852795685487\tof:0.06797592753701469\tbut:0.06524530027187\t<s>:0.06371476663143535\twhen:0.05744330279568063\t:0.01\n",
"to:0.2608050133660507\ttold:0.13422315811046726\tof:0.12752100298749514\twith:0.10843456833005494\ttell:0.08926698675012805\ttells:0.08600900729138009\tfor:0.08124118116198432\tupon:0.055449761758186694\tby:0.04704932024425275\t:0.01\n",
"of:0.33406129049648303\tto:0.12049264072633424\twith:0.0963336285288878\tand:0.0939645479779181\tis:0.0864883967561169\tin:0.08226092310789548\tthat:0.061430624386753084\tby:0.057631216891386707\tfor:0.057336731128224655\t:0.01\n",
"and:0.4543151232130634\ttime:0.10991304300581424\tweek:0.09783194347582366\tup:0.06402108600180087\tone:0.056230007348955974\tthat:0.05611572989303736\tdemand:0.051928754261596266\tbut:0.050594459444250554\tday:0.04904985335565755\t:0.01\n",
"of:0.23809024330009088\tin:0.20395289149196297\twithout:0.10488925072650404\tto:0.09834598227273955\thave:0.08046261376735458\tmake:0.07586026898415055\tby:0.07189567888065938\tfor:0.059834136859378814\tor:0.05666893371715934\t:0.01\n",
"in:0.20715768094177783\tup:0.18279332003914164\t;:0.11837694749579784\thim,:0.10739149963476594\thim:0.08666239110162094\tit,:0.08591651498111183\tthem,:0.0703075200507604\tup,:0.06704658566797499\t,:0.06434754008704854\t:0.01\n",
"of:0.2274042971499361\tthe:0.20271664897545216\tand:0.12808673703200713\tto:0.1053491150950283\tin:0.09190963150906721\tbe:0.0654098204832012\ta:0.05828099837938107\tor:0.05692500395274872\tfor:0.053917747423178175\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"of:0.19389415824707545\t<s>:0.17480584302893035\tand:0.1220569618522596\t::0.11598777633947527\tin:0.09637487847233091\tthe:0.0942821361479222\tto:0.06736932966974353\t.:0.062947777598045\tas:0.062281138644217617\t:0.01\n",
"of:0.21112298787460043\tand:0.1268007032289016\tin:0.11960276911317111\twith:0.11137493023639405\tas:0.1094195021528035\tto:0.10442486971420085\tfor:0.07556059526255895\tis:0.06715317570594696\tby:0.06454046671142247\t:0.01\n",
"the:0.3056440501436695\tof:0.21942091526728236\ta:0.09413241271656307\tat:0.09411132106905583\tand:0.09139617446567275\tto:0.06381818928201986\tin:0.05135937259409206\t.:0.040599636946573106\t<s>:0.029517927515071388\t:0.01\n",
"and:0.30924221119967327\tthat:0.12611015277008547\tmade:0.09865062957046655\tis:0.0920144699599962\twas:0.09128595813112018\tplaced:0.07404370378857507\tas:0.06709678931603316\tbe:0.06629358245444635\tor:0.06526250280960379\t:0.01\n",
"the:0.3329721013539439\tand:0.25651972343127316\tto:0.12072045430493479\tof:0.08806351808779532\tThe:0.062295371436308485\tthat:0.03706078180899946\twhich:0.03206213298026458\tor:0.0313456854058164\tan:0.028960231190663988\t:0.01\n",
"of:0.3486280861620671\tin:0.1468269712005727\tto:0.14487171783267996\tand:0.09148294369327596\tfor:0.06377061144610693\tby:0.052121558663597335\tthat:0.049997668225807014\twith:0.04936708428095276\tfrom:0.04293335849494025\t:0.01\n",
"and:0.20851945862709836\tof:0.16878208029476602\tthat:0.13627854277709975\tin:0.12391513790504691\tfor:0.10965460500897561\tto:0.09707232525239877\tby:0.051655323839282\tor:0.05086214626293857\twith:0.04326038003239407\t:0.01\n",
".:0.2467609886558455\tand:0.18786578608887547\tbe-:0.09593656520296871\t<s>:0.09516664969176968\tof:0.08215335909316042\tMrs.:0.08074520358931268\tMr.:0.07643960083894641\tsaid:0.06526265170662662\tW.:0.0596691951324944\t:0.01\n",
"the:0.23285012614857864\tand:0.19902298815546074\tin:0.12541761993675493\tof:0.12239348965660173\ttheir:0.07704175612286181\tfor:0.07091884389537952\ta:0.05766811898923951\tor:0.05384007074736403\tto:0.05084698634775907\t:0.01\n",
"of:0.2608111582496926\tto:0.14355399635632238\tin:0.12949521813744466\tfor:0.12250530727704553\tthat:0.10428359843888321\tand:0.07795206853334154\tby:0.05758463798375296\twith:0.057130904389482436\tIn:0.03668311063403488\t:0.01\n",
"and:0.19583342605332962\tthat:0.1838994050203063\tas:0.12119181844284553\tof:0.12112615315282578\tto:0.08831964160181255\tmake:0.08098984926957423\twhich:0.07701187457248801\tbut:0.06372021473945984\tif:0.05790761714735823\t:0.01\n",
"the:0.30038881848626026\tof:0.23780738348722516\tto:0.1105949953489272\tand:0.10869992504082715\tin:0.06712772709781926\ta:0.05278164734219167\twith:0.03998107913169259\ton:0.03859315335779836\tThe:0.03402527070725842\t:0.01\n",
"of:0.20509868068331527\tthe:0.18992360083848198\tand:0.1627077320911976\tto:0.11166884988859471\tbe:0.0979632635341338\tin:0.06540848799261574\tor:0.058966420912407294\tfor:0.05013839373631626\tre-:0.048124570322937356\t:0.01\n",
"min.:0.21387768087694958\t.:0.14534811897605376\tN.:0.12828920927216542\tMrs.:0.11977050400294109\tM.:0.08175723876506644\tW.:0.08104982423184785\tmln.:0.07926197942909027\tJ.:0.07771226609708258\tdeg.:0.06293317834880302\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.18788202439181775\tof:0.17449925888010945\tto:0.14832844820280902\tin:0.12756778395382545\tand:0.12231010734010056\ta:0.0961679741983244\tIn:0.048028718167453945\tby:0.04272645651769303\tfor:0.04248922834786647\t:0.01\n",
"and:0.48784503513644056\tthat:0.12198789492159642\twas:0.06821331213233192\tor:0.062226670235054904\tit:0.057877917654126525\tis:0.05359025236370969\tbut:0.050092695344111926\tthem:0.04518566700118262\tas:0.04298055521144539\t:0.01\n",
"the:0.5640742773294856\ta:0.25660221166229674\tThe:0.06921584328562555\ttho:0.030338260969875824\tthis:0.023007261686816407\tand:0.012167979679654412\this:0.011721656499705692\twhole:0.011577589688958206\tA:0.011294919197581452\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"be:0.1487539229361705\tHe:0.1456774989273792\tis:0.14420435391229106\tand:0.13441473568740875\twas:0.13392760463164483\the:0.12999120857265808\talso:0.055670980871974175\tso:0.05060579567044155\tbeen:0.046753898790031806\t:0.01\n",
"of:0.5022863984408036\tto:0.12852380253180154\tin:0.09870388629302378\tby:0.07756319318422096\twith:0.04512069153719358\tthat:0.0411607197060372\tand:0.03872694362996148\tfor:0.031390146082763935\tas:0.026524218594194158\t:0.01\n",
"and:0.255581263403598\twas:0.20348769425752422\tbe:0.16236719806353406\the:0.06768228173735523\tis:0.06744697099429234\twere:0.06519561869338544\tit:0.05847211079208237\tHe:0.05570139979564505\tyears:0.05406546226258336\t:0.01\n",
"of:0.3427591455493146\tand:0.14546532158467343\tthat:0.11416173474085349\tin:0.10502310970731549\tto:0.09490624459881616\twith:0.06374994467725066\tat:0.04366810639582066\tby:0.042093239619794665\tfor:0.03817315312616095\t:0.01\n",
"2;:0.19164908377584747\tfeet;:0.18717148032323802\t3;:0.16402693294282925\t4;:0.15514934428077923\t5;:0.11854186979075633\t6;:0.060036321151824466\t8;:0.042276289538117066\t;:0.03783017597976879\tlode,:0.03331850221683955\t:0.01\n",
"the:0.4022963624445306\tof:0.19825329933385272\tin:0.0956839441685514\tKey:0.06449981982105656\tto:0.0586475013470521\tfrom:0.05259510599669844\tat:0.046677276861248486\tand:0.0394121584751027\tIn:0.031934531551906974\t:0.01\n",
"a:0.3910120490317824\tthe:0.354044780602689\ther:0.04159635784346277\this:0.03957758910541759\tThe:0.03854557719754284\tvery:0.03717951400881449\tand:0.032337297360072556\ton:0.03190087511322821\tA:0.023805959736990064\t:0.01\n",
"to:0.2809449605855412\ta:0.216632802838675\tand:0.1263128446045133\tthe:0.0995853712865105\tof:0.08623842475079808\this:0.05954450546528537\ttheir:0.04967971166250935\twill:0.041490570416367833\tnot:0.029570808389799412\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"be:0.32152003531674533\twas:0.1821266273359404\tbeen:0.16055588299008294\tare:0.07254018411668006\tis:0.07236711092437557\twere:0.07209418315345219\tnot:0.03784288297600566\tand:0.03709313827332663\tbeing:0.03385995491339119\t:0.01\n",
"the:0.33234301859327503\tof:0.16511810112924477\tand:0.14359386254401948\ta:0.07809521494992094\tthat:0.07723479213752328\tThe:0.052790940042757695\tin:0.051550293467254364\tno:0.0449303041329755\tMr.:0.04434347300302878\t:0.01\n",
"and:0.19051943986217015\tof:0.1720639792232348\tas:0.16747509158597676\tthe:0.13450047028301987\tto:0.09096766000852802\tbe:0.06575526900119626\tsuch:0.06334143169216884\tmuch:0.055005516582227666\tin:0.05037114176147772\t:0.01\n",
"to:0.3201170735657341\twill:0.26679301450498494\twould:0.12965145946066245\tnot:0.05929650919372776\tshall:0.05856718193794411\tmay:0.057533231405250296\tshould:0.04860522701663104\tmust:0.026608999250668102\tcan:0.022827303664397135\t:0.01\n",
"and:0.2663591603566405\tof:0.1444134399277054\tto:0.13965468279450494\tthe:0.11545288046294258\tin:0.09784587664794714\tor:0.0675387383038842\tthat:0.06504972812634334\tfor:0.04685738216435673\ton:0.0468281112156753\t:0.01\n",
"a:0.3795083530096512\tmost:0.244614609372852\tthe:0.11182563500377957\tand:0.10138712282958527\tmore:0.047357606282636036\tof:0.02863451351256961\tvery:0.028083852429685138\tare:0.024467884353248277\tnot:0.024120423205992707\t:0.01\n",
"would:0.20295306292312673\twill:0.14885933253128625\tto:0.1487490142493471\tI:0.12831565611217413\twe:0.11879801451514217\tthey:0.07659681471171363\twho:0.06120136322467247\tyou:0.05374159989007216\tnot:0.05078514184246533\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.2742792874027179\tof:0.1927038208666229\tand:0.13178418514435533\tto:0.12574694036492268\tin:0.06569727832729276\ta:0.06552783895488037\tbe:0.05457765110028662\tfor:0.04048153641103007\this:0.03920146142789139\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"to:0.391785141732397\twill:0.19496680564114854\twould:0.08852249516447276\tnot:0.07368922977761438\tshall:0.06855200990591417\tmay:0.06057907700927154\tshould:0.05402905441199173\tand:0.03290185693412314\tmust:0.024974329423066797\t:0.01\n",
"of:0.27328658422590446\tin:0.2071788715607879\tto:0.14497291544938498\tIn:0.08062970970417228\tfor:0.07887484748805323\ton:0.06296508628633228\t<s>:0.05219523442414231\tand:0.04884223642840857\tat:0.04105451443281394\t:0.01\n",
"the:0.5058519325091402\this:0.15866207202891747\tmy:0.0824849257524449\ttheir:0.056029344091464164\tThe:0.050732467939711506\ther:0.04284746863449331\tand:0.034176916853115406\tof:0.03385238903734921\ttho:0.025362483153363726\t:0.01\n",
"thereof:0.2698030010731136\tsuch:0.18268523023832675\twell:0.12966776309955635\tfar:0.11948142473804692\tand:0.11351203955970615\tthat:0.045334258308591946\tbut:0.043750847085996546\tsoon:0.04341075682466114\tmuch:0.04235467907200061\t:0.01\n",
"out:0.22746638687362125\tpurpose:0.20552903037276465\tmeans:0.10669452787393785\tnumber:0.09938023037308479\tone:0.08292082881933213\tall:0.07582461931215649\tsome:0.06538793050974262\tand:0.06420580622691995\tpoint:0.06259063963844014\t:0.01\n",
"as:0.635645302868923\tso:0.1315698162344852\tand:0.06999578326294506\tof:0.04173757410688585\tthe:0.028953787587317956\tis:0.028778043763741493\tvery:0.022128089028091862\ta:0.01646784309055135\tbe:0.014723760057058284\t:0.01\n",
"the:0.2903031850674522\ta:0.21531330514219996\this:0.15118503219149296\tof:0.12101707124989668\ttheir:0.07955068392952523\tour:0.047642881235437466\tto:0.03139203534913796\tmy:0.03042039231581797\tand:0.02317541351903957\t:0.01\n",
"is:0.34674550172007534\twas:0.1895164086119105\tand:0.11702050428411866\tare:0.11194509269525767\tIs:0.055943391071021656\thad:0.04958859420254199\twere:0.043485997447954845\thave:0.043237135783641904\thas:0.032517374183477325\t:0.01\n",
"thence:0.3579219479572175\tcame:0.1066788042453648\tget:0.0999199587720028\tgoing:0.09142537579801817\twent:0.07880826426678088\tfeet:0.07312612202077128\twalked:0.06588480279907388\tgo:0.062243108175397105\tall:0.05399161596537349\t:0.01\n",
"of:0.2921417268414436\tthe:0.20109624025138534\tto:0.10837257756477664\tin:0.09153893314929461\ton:0.0681499083572193\ta:0.06502602872384239\tand:0.06213141585352934\tby:0.05778514318695228\tfor:0.04375802607155669\t:0.01\n",
"and:0.2310256917358574\tof:0.15988632569153033\twas:0.14742444792604728\tare:0.10615280783807769\tis:0.08023044955786404\tbeen:0.07555580405039992\tthe:0.0700765281399517\tby:0.06219270158297156\twere:0.05745524347729997\t:0.01\n",
"the:0.37741509138326523\tof:0.14913786033704424\tand:0.11744361253408252\ta:0.10966483406264173\tto:0.056370589213101195\tin:0.05245959318974914\tThe:0.051749093687914825\tMr.:0.039562321212088095\tby:0.036197004380113015\t:0.01\n",
"the:0.5208484922599077\tand:0.14524656387014817\tan:0.0693985569221281\tThe:0.05080573654921767\tor:0.04995979004036366\tfirst:0.046832720184137124\ta:0.038582016765608115\tas:0.03854916838365942\ttho:0.029776955024830003\t:0.01\n",
"of:0.34968916598468386\ta:0.16023761836805614\tto:0.11352525070391356\tin:0.07504848469521276\twith:0.06923386965461903\tthe:0.06755863682788775\tand:0.06400297252570752\tby:0.04879032524647602\tthat:0.041913675993443485\t:0.01\n",
"a:0.5499543034589908\tthe:0.27913843125209875\tlarge:0.04077323909104808\tgreat:0.037720772816916034\tThe:0.02320500384585568\tvast:0.01690412268161264\ttho:0.015661604393579238\this:0.013451007985979261\tA:0.01319151447391942\t:0.01\n",
"the:0.23461550299651543\tof:0.17252948833182508\tand:0.1594625552338497\tto:0.13464689459031873\tin:0.0725469741969774\ta:0.06852565506073854\tat:0.05257237039160294\tor:0.05023665816368985\tfor:0.04486390103448236\t:0.01\n",
"of:0.4157474621588315\tto:0.15430195603316227\tin:0.1510163665610803\tby:0.07915418494320586\ton:0.04228261711840488\twith:0.042265726682126824\tfrom:0.03920413825884777\tand:0.03469129548863466\tthat:0.031336252755705896\t:0.01\n",
"and:0.34645702671198586\tdepend:0.12516363858513868\tthat:0.0839027168560696\tdepends:0.08258515921762419\tcalled:0.07616536190125896\tbased:0.076126523464667\tlook:0.07331578949501216\tdown:0.06525488390728047\tcall:0.061028899860963035\t:0.01\n",
"and:0.18363282820901694\tthe:0.12124915320812743\tto:0.11727909452132212\twill:0.1049323296525499\twhich:0.10304301242018114\tsaid:0.10255730649379331\tof:0.10121423398487817\tthat:0.07967799157623706\tmay:0.07641404993389389\t:0.01\n",
"more:0.41477506862706526\tlaw:0.09202509249280486\tone:0.09095323280800532\tbe:0.07204576692876592\tgood:0.07152088848383967\tman:0.06610007984438242\tit:0.06516478421656302\tand:0.06243228465409523\tis:0.054982801944478396\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"of:0.16492276617263188\tas:0.14235554292803532\tfor:0.12012550391965679\tto:0.11804304888088328\tis:0.10765903754448344\tby:0.10577900950707529\twith:0.08013865166494041\tat:0.07638712849796497\tand:0.07458931088432864\t:0.01\n",
"It:0.23127912378197046\tthere:0.21240176058284072\tit:0.19501212350781538\tThere:0.10713821937054821\tThis:0.06595333365099705\twhich:0.04771265982771375\the:0.04597925216904934\tthat:0.04565003547638064\tthis:0.038873491632684394\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.29858092045500545\tof:0.1807231836449305\tat:0.11324637540312534\tto:0.1031447595881243\this:0.07114973974976263\ttheir:0.06999995701002926\tthis:0.06642064192449493\tin:0.04413341432823939\ta:0.04260100789628817\t:0.01\n",
"that:0.38457105279790577\tand:0.1577821204568523\twhich:0.10845930577745296\tas:0.08716717497951534\tbut:0.06805912677201673\tif:0.061829841333886824\twhat:0.05304923395820697\tIf:0.034608588073090266\twhere:0.034473555851072805\t:0.01\n",
"and:0.3626377995400968\tfeet:0.11516165556945626\tnorth:0.11099829106498926\tcommittee:0.09097450338243562\tput:0.06647501677231765\tMortgages,:0.06584923065449706\tmortgages,:0.061519443981057825\tmortgages:0.05821274179539492\tmen:0.05817131723975453\t:0.01\n",
"the:0.49696686957080133\tof:0.10770942361513829\tsaid:0.1059821376788638\tthis:0.09468297128078497\tand:0.05374648628747954\tThe:0.04548051450598641\ta:0.03189346770966687\tthat:0.02765377235929692\tCuster:0.025884356991981876\t:0.01\n",
"and:0.3076298163893266\twas:0.1161459077378706\tis:0.10479315024611129\tthat:0.09863256466998649\tas:0.09203202829757628\tbe:0.08027794226199989\tare:0.06581897861021957\tor:0.06307914019379122\tit:0.061590471593118076\t:0.01\n",
"cut:0.258044220321437\tcutting:0.10896462077241231\tit:0.10047757611948809\tand:0.09304398266768055\ttaken:0.0910223578406389\twent:0.08944772269246574\tthem:0.08805028156779354\tof:0.0816626763718687\tfalling:0.07928656164621535\t:0.01\n",
"matter:0.19397716184506195\tbushels:0.14323318283354156\tpurpose:0.1376206051060301\tnumber:0.11924831444344337\tout:0.09079262450380855\tpoint:0.0856810658522138\tcost:0.07869432484516165\tamount:0.07098770788783573\tpounds:0.06976501268290322\t:0.01\n",
"and:0.28093874506673566\tit:0.14565130730806355\tpain:0.12965325697815863\twas:0.07902862677541422\thim:0.07510760859958082\tnot:0.07499663083941865\tthat:0.07293660584681616\tup:0.06709553384498941\tis:0.06459168474082283\t:0.01\n",
"the:0.2851263094811963\tand:0.20198525185383956\ta:0.1671930101948936\tof:0.1080056149287238\tto:0.07381765694109406\tfor:0.0520045406327364\twill:0.038087477327676776\tin:0.03485252240346103\ttheir:0.028927616236378264\t:0.01\n",
"up:0.14379276265105118\tdue:0.1306594330965311\thundred:0.11761620987023358\tquiet:0.10493946178662528\tout:0.10086175993494477\t;:0.09971681507457311\tmade:0.09934880124684825\thim:0.09864144908524422\tit:0.09442330725394857\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"Section:0.282895141470037\t<s>:0.17458881070746485\t.:0.1261070362508514\tlot:0.09468393282399157\tand:0.07814251415370398\tSec.:0.06759109115529119\tApril:0.05743516686797581\tof:0.05431917278947994\tMay:0.05423713378120431\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"of:0.4142924536627084\tin:0.16734428039627613\tthe:0.1225977741532536\tand:0.09190977960880549\tto:0.05002501481966264\twith:0.03695320692243829\tfor:0.03642086588859703\tfrom:0.03585012406360331\tIn:0.03460650048465511\t:0.01\n",
"years,:0.15449330871960454\tman:0.12384837269790851\tit,:0.1157835407283277\thim:0.11228451673184255\tit:0.10469188035257686\tthem,:0.09973801007744183\t;:0.09964140399044373\thim,:0.09130477125438492\ttime:0.08821419544746925\t:0.01\n",
"in:0.31870890249722467\tof:0.26669929926802194\tIn:0.10378360123134776\tby:0.08102561191913141\tand:0.0584063522175372\twith:0.05239912849679071\tto:0.04157388025836791\tfor:0.040037740532300865\tfrom:0.02736548357927745\t:0.01\n",
"and:0.3025641267728491\tof:0.18769280950595296\tfact:0.10757189565208604\tto:0.10286182651341143\tall:0.06254888528180087\tin:0.05977362339474213\ton:0.05605658461381657\tat:0.05586772453948032\tis:0.05506252372586056\t:0.01\n",
"of:0.37606617075753496\tto:0.1221618544474121\tand:0.10829756380599606\tthat:0.0808876642395684\tin:0.06809665537009453\tfor:0.06771693519425252\tby:0.06165622918252059\tat:0.05930042957046505\tfrom:0.045816497432155746\t:0.01\n",
"he:0.3014496785017962\twho:0.1269067822185716\twhich:0.12604437206540864\tHe:0.10451170717295258\tand:0.09405466857263753\tshe:0.07032792138302074\tthat:0.06301603900361417\tit:0.056306292144514145\tIt:0.04738253893748441\t:0.01\n",
"of:0.3260085621366655\tto:0.16001707838342538\tin:0.15965205778044234\tand:0.08640905878171666\tfor:0.07947086818376009\twith:0.05121363134149026\tby:0.046298913239593946\ton:0.0410707345597891\toi:0.039859095593116844\t:0.01\n",
"is:0.2398291219596248\tand:0.2016442815612472\twas:0.12752608815304456\tare:0.09348098859772107\tbe:0.0814231213007434\tor:0.07915475599509697\thad:0.057943810643998506\tnot:0.05773364531252278\twere:0.05126418647600086\t:0.01\n",
"it:0.23758907387370712\tIt:0.22466732129188907\tthere:0.133994632356764\tthat:0.08184768611606356\twhich:0.07047269319355498\tThere:0.06854109664882012\tand:0.06269506105462146\tthis:0.05809779452346093\tThis:0.05209464094111867\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.29237950918743855\tto:0.17716942761303364\tof:0.099021191564675\tre-:0.09088536501253566\tthat:0.07083086860883162\twhich:0.06939463277575889\tin:0.06609805346610023\tfor:0.06347704537429572\tor:0.0607439063973308\t:0.01\n",
"of:0.28126635387311494\tto:0.1418097537146432\tfor:0.10966993246486875\tand:0.09593738888777519\tin:0.09523318242292965\ton:0.09018517455631601\twith:0.08020999089473235\tat:0.0492849521472289\tthat:0.04640327103839089\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.7520847964275207\ta:0.08073904756360864\tThe:0.04053002994675314\ttho:0.03872534529482169\tand:0.025237229467666867\tof:0.014930028241615014\tother:0.014001193748112626\ttbe:0.011896061140801157\tgreat:0.011856268169100308\t:0.01\n",
"went:0.1794974806493376\tgo:0.15454708545878776\tcame:0.11151278596248962\tback:0.09777108854160564\tit:0.09728390677389735\tout:0.0959887918454101\tput:0.09227887075263337\tdown:0.08367866714280338\tcome:0.07744132287303515\t:0.01\n",
"go:0.18515971159043543\twent:0.1668840020603558\tgoing:0.1356058712204716\tcarried:0.12257297629823181\tand:0.09208974061692847\twas:0.08443561371326988\tgoes:0.07585555010545136\tcame:0.06714821656280351\tput:0.06024831783205195\t:0.01\n",
"the:0.7634584197526549\ta:0.06329577585461788\tThe:0.061429456423410016\ttho:0.04807763004669178\ttbe:0.01957905773553283\tand:0.011031810428949126\tgreat:0.00884372216022454\tthis:0.0074869329828123965\this:0.00679719461510649\t:0.01\n",
"all:0.41358793152723605\tthe:0.10875134126616712\tmany:0.08896334911268991\tthese:0.08811747073693912\tother:0.08574251354326116\tas:0.0554003792129194\tand:0.05220600088679132\tdifferent:0.04866001454512296\tsome:0.04857099916887307\t:0.01\n",
"Survey:0.28231993697964064\tsurvey:0.22613686907329184\tCor.:0.11940673308754991\tlot:0.07593396066962148\tand:0.069127598998757\tof:0.06808225042242456\tDistrict:0.053060309246456994\tvey:0.049693019406125666\tmarked:0.04623932211613192\t:0.01\n",
"the:0.447236332504349\tan:0.15774433816843872\this:0.12201013757979677\ttheir:0.06437619435496467\tany:0.05011882049736274\ta:0.03903649126934272\tof:0.038845575710088696\tThe:0.038154530877039856\tin:0.03247757903861672\t:0.01\n",
"the:0.27062320004381646\tof:0.244933599512342\tin:0.17285403786536904\tand:0.07539962645363833\tare:0.06358005587406663\tall:0.04344275157804371\tIn:0.04202135264216405\ta:0.041502081244620306\tis:0.035643294785939604\t:0.01\n",
"of:0.32364964369914895\tin:0.23003237096621826\ton:0.09083353770281115\tIn:0.08569881573882421\tto:0.057062265082713115\tthat:0.05627335459347035\tfrom:0.05410825460268493\tand:0.04999215450498822\tat:0.042349603109140696\t:0.01\n",
"of:0.2765001205154513\ton:0.16769141466965135\tthe:0.15138471258254876\tin:0.09254899483189932\tto:0.07867336201759745\tand:0.07549790406970079\t<s>:0.06159481536903043\tat:0.04484508247194716\tby:0.041263593472173496\t:0.01\n",
"and:0.258951241513675\tpay:0.10802738337654869\tdemand:0.10268455996040908\tready:0.09463324239250348\tit:0.08973277076873667\tused:0.08512057511074042\tpaid:0.0845286061767821\tis:0.08364261522523582\tnot:0.08267900547536858\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.6195717964702582\tand:0.14725484924398743\tof:0.05211157383447938\tThe:0.048871295053146774\ttho:0.042675778897429476\tsaid:0.02523937229069472\ta:0.022539643445112813\tan:0.016093509398911965\ttbe:0.015642181365979262\t:0.01\n",
"a:0.21252299432684227\tof:0.20629792250271145\tthe:0.20591744656545843\tin:0.11047499952880463\tto:0.1034641765650845\tand:0.05058316023306845\tby:0.039825258432188405\tan:0.030587509374252923\tfrom:0.03032653247158885\t:0.01\n",
"the:0.36563367244267914\ta:0.2910897477608144\tof:0.17248971527656823\tin:0.06860335127232102\tand:0.02471769167346589\ttho:0.021115593674296253\tThe:0.019579780542288833\tIn:0.01671797603660079\tfor:0.010052471320965437\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.4930452128787449\tof:0.13684158859449905\ta:0.1321816675777721\tThe:0.0500294973674197\this:0.04342585357791495\tour:0.040081392232506924\ttheir:0.03714697790280974\tin:0.0289410997296758\ttho:0.028306710138656717\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
";:0.30060019918587233\tand:0.2502728530744943\t<s>:0.09773618899925732\tthat:0.06881223315613899\twas:0.05987194639725836\tit,:0.05602978176502565\tas:0.05595782596216031\t,:0.0514769792827767\tthem,:0.04924199217701595\t:0.01\n",
"the:0.37594160651474295\tof:0.15696887182802663\tto:0.12986365789689555\tin:0.09148928052407483\tand:0.07364465146832581\this:0.04297728013118123\twas:0.04079303284389533\tbe:0.03954146191535643\ta:0.03878015687750123\t:0.01\n",
"the:0.554732492631748\tsaid:0.23738153019877556\tState:0.03213026438329071\tthis:0.031103464034816928\tof:0.030239785621755902\tand:0.02958314215211099\tThe:0.026651209644613223\ttho:0.02557096852151579\ta:0.02260714281137309\t:0.01\n",
"is:0.16167548822858277\tnot:0.13255420003656498\tand:0.12471861838753757\table:0.12133136714293247\thave:0.10169855498872463\tenough:0.09669070651973197\twas:0.08838641914091167\tought:0.08167556029431293\tright:0.08126908526070105\t:0.01\n",
"of:0.22311886839934636\tand:0.16674976463989752\ta:0.1326518741071075\tthe:0.12904482491503577\tas:0.11756217419998327\tso:0.07659548773433372\tis:0.05175678304726475\tthat:0.04813122375634109\tvery:0.044388999200690046\t:0.01\n",
"at:0.21588461537998552\tthe:0.20600555140409593\twas:0.1451071489204375\tbe:0.12532744259874248\tto:0.09391835347160175\twere:0.06828820763398917\tis:0.05502315896520865\tnot:0.043800734205793904\tand:0.03664478742014515\t:0.01\n",
"be:0.2590688789934382\tis:0.19608003959664588\tmore:0.10586988600935208\tvery:0.09603836486158374\twas:0.07248527012119792\tand:0.06864520383288587\tare:0.05176305231493095\tas:0.04944885329703195\tbeen:0.04584313803418818\ttoo:0.04475731293874509\t:0.01\n",
"of:0.3882431429048721\tand:0.14347987969434153\tto:0.11585134145008441\tin:0.08198566223444038\ton:0.08042491746378136\tas:0.05005123811605865\tthe:0.04759861451571088\tfor:0.042038358868878446\t-:0.04032684475183224\t:0.01\n",
"the:0.6307319507404864\tof:0.064164805120518\ttheir:0.06323754374203164\tand:0.04487693122034637\ta:0.04380025352476637\tin:0.04230034601472437\this:0.03606211586206258\ttho:0.03259301129486646\tour:0.03223304248019784\t:0.01\n",
"they:0.20137192051989908\tand:0.18984860531383294\twho:0.13763487119952234\twhich:0.11172457808560647\tthere:0.0823718508351075\tthat:0.07629605861962553\twe:0.07628128948523882\tThey:0.05997662993309833\tmen:0.054494196008069026\t:0.01\n",
"the:0.42543442163051476\ta:0.31706585309482477\tthis:0.08016159231710568\this:0.05209474885951633\tThe:0.03367280141627925\ttho:0.028261604244056864\ttheir:0.021889897427812815\tits:0.016136878793329614\tan:0.015282202216559838\t:0.01\n",
"and:0.16515772534573928\ta:0.16392803359635721\tbe:0.16195700911875904\tso:0.12131876204060653\tare:0.09905843366961162\tis:0.08131332582112157\twas:0.0806274898827924\tthe:0.06791762174607377\tbeen:0.04872159877893851\t:0.01\n",
"of:0.20509868068331527\tthe:0.18992360083848198\tand:0.1627077320911976\tto:0.11166884988859471\tbe:0.0979632635341338\tin:0.06540848799261574\tor:0.058966420912407294\tfor:0.05013839373631626\tre-:0.048124570322937356\t:0.01\n",
"of:0.24725594680560653\tthe:0.18584911523879222\tand:0.16349152422254645\tto:0.13553132494129236\tby:0.06253474531327397\tMrs.:0.0597100344938952\t.:0.05117650569055963\t<s>:0.04975459237161025\tsaid:0.03469621092242327\t:0.01\n",
"and:0.29802134546614345\tdays:0.23065053584134165\tthat:0.07867266737496452\tsoon:0.07423074024625996\tday:0.0715458148713141\tyears:0.06472737640560322\ttime:0.05976221760844339\timmediately:0.0576142122036037\tmonths:0.05477508998232603\t:0.01\n",
"and:0.39374688118394197\tto:0.22349962865051812\tnot:0.07325808986714295\tthat:0.054342221381652435\tor:0.0516867063609947\twho:0.04990290645230247\tof:0.048965821591113116\twill:0.04819592503119137\tre-:0.046401819481142845\t:0.01\n",
"they:0.24421943082111547\twho:0.15691329072683877\tthere:0.1451001799145695\tThere:0.09505257560896441\twe:0.08957862379842198\twhich:0.0777520180980137\tThey:0.07125601799396847\tand:0.05792692749616463\tthat:0.05220093554194316\t:0.01\n",
"the:0.3859984201034766\tof:0.21536533541163322\tand:0.07873351722863703\tthat:0.06177240778203799\tthis:0.05710805373833122\tfor:0.05648590013622595\tin:0.05365061855291326\ta:0.05028685554201684\ttheir:0.03059889150472794\t:0.01\n",
"the:0.39484562080492264\this:0.21814132602212707\tan:0.08076288562186945\tThe:0.07629335469620385\ttheir:0.05718173576050566\tmy:0.055932242331663246\ther:0.051174235194808515\tHis:0.02843093043227098\ttho:0.02723766913562859\t:0.01\n",
"thousand:0.3472921910017896\thundred:0.2694232259062018\tof:0.10567367887602833\tfifty:0.0810336528471746\tmillion:0.056125468857668004\tten:0.04394459124078979\tfive:0.04365403607937043\tthe:0.021639173538611615\tto:0.021213981652365866\t:0.01\n",
"the:0.6362389529820774\ta:0.16260982353477335\tin:0.041098194900825995\tThe:0.040772477859094006\ttho:0.0337618086187946\tof:0.027222581607553822\tand:0.019441245081486654\tour:0.015008409647902541\ttbe:0.013846505767491597\t:0.01\n",
"the:0.2786459912771844\tand:0.1678635356900059\tThe:0.11017739931926157\tof:0.10503225434551518\tor:0.09650400640804702\twith:0.06692476917020217\tby:0.05816486066228461\tthese:0.057221251789946755\tThese:0.04946593133755248\t:0.01\n",
"the:0.3606750289546943\ta:0.3500500940577297\tof:0.07410282846997587\tsaid:0.04945610900610706\tany:0.042817975514901976\tor:0.03169299654493053\tand:0.030817956127016707\tthis:0.026896451052899898\tby:0.02349056027174399\t:0.01\n",
"his:0.3459866185129008\ttheir:0.16925739035342838\ther:0.14806501802755975\tthe:0.08892160054677457\tmy:0.08516457063396121\tour:0.060015523837254704\tof:0.033836432308969905\tits:0.030939682802838975\tyour:0.027813162976311628\t:0.01\n",
"be:0.4258346080862889\twas:0.1186012089289948\tis:0.11421024319243323\tbeen:0.10625495452585698\tare:0.06678673459728743\tbeing:0.049450935752899876\twere:0.042242513835419486\tnot:0.04028533437568195\tand:0.026333466705137407\t:0.01\n",
"of:0.29633572450437873\tin:0.14608538748858488\tto:0.1415677969515685\tfor:0.0941246122349261\tand:0.08474980319055245\twith:0.07400648853301359\ton:0.05839473007661018\tfrom:0.05014706301412718\tby:0.044588394006238215\t:0.01\n",
"and:0.2875177924610121\tmade:0.183649541853114\tor:0.1384676247545613\tdone:0.07914779731712702\tthat:0.06442587389141943\tbut:0.06359448822553486\tup:0.06186775604068335\tit:0.05740212988374609\tthem:0.05392699557280186\t:0.01\n",
"be:0.2548731915990184\tis:0.17390151590101782\twas:0.13798723646854816\the:0.12179471730515277\tand:0.0977564630836264\thad:0.06295692659418932\tthey:0.049320937179649395\thave:0.047806126530110946\tbeen:0.043602885338686795\t:0.01\n",
"the:0.180751757101819\tand:0.13915089410730358\tbe:0.12497448200240038\tare:0.11591586361982203\tis:0.09773778715113073\tof:0.0915899141003609\tin:0.08205757906709071\twas:0.08090996115816088\tbeen:0.07691176169191169\t:0.01\n",
"of:0.45549330214188366\tin:0.11068937920635966\tto:0.08678426889868246\tand:0.08317886664743557\tfrom:0.05586542307139499\ton:0.05465872568169104\tby:0.05413987124693158\tthat:0.05025545003403378\twith:0.0389347130715874\t:0.01\n",
"and:0.2634406048823141\tresale:0.1520499947081301\twas:0.11634558573748464\tis:0.09185667312709239\tthat:0.08478174504295355\tinserted:0.08286456950804665\tbe:0.06920606682123413\tit:0.06538422921613014\tbut:0.0640705309566142\t:0.01\n",
"the:0.44470994861599394\ta:0.20448960552865691\tof:0.11055144147453227\twith:0.052301786475376914\tin:0.04160809583799396\tand:0.0399127123837467\tthis:0.038331113540040464\tThe:0.02996178682467079\tvery:0.028133509318988063\t:0.01\n",
"of:0.24749395160232096\tin:0.22154483371428538\tto:0.10094538260351753\twith:0.08183825686948244\tat:0.08007631532296301\tas:0.06821441570477668\tby:0.06362438308939855\ton:0.06357335305152083\tand:0.06268910804173464\t:0.01\n",
"of:0.17191115259975753\tfor:0.16750925369011743\tand:0.13160992533822738\tin:0.11184996172687091\tto:0.10103395281198697\twith:0.08496023593233523\tas:0.07573051960182103\twas:0.07396318978577687\tis:0.07143180851310658\t:0.01\n",
"it:0.28317097636256594\tIt:0.1933445733650809\twhich:0.11975718942031284\the:0.08582788806916335\tand:0.08528961719502678\tthat:0.0777183143097221\tthere:0.06238640793109829\twho:0.045422113965186965\twhat:0.03708291938184284\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.4456777840806273\tto:0.09560895113887723\tin:0.09284068819157618\tfor:0.08486881655226551\tand:0.07299337516704156\tthat:0.06857975944056091\tby:0.05542877245174271\twith:0.04558075691807833\ton:0.028421096059230225\t:0.01\n",
"of:0.32566515809900526\tthe:0.21079802620318405\tto:0.12546373198882546\tand:0.07823092292907527\ta:0.06869484084889743\tin:0.055906700927206135\ton:0.049869274313263545\tat:0.04038675688012711\tfor:0.03498458781041569\t:0.01\n",
"that:0.38314639234260467\twhen:0.13078830405217987\tand:0.10494735551057087\twhich:0.08901523310559767\tas:0.07679054931488127\tif:0.05540889644007941\twhere:0.05373268422396405\tbut:0.05232720105559394\tsaid:0.0438433839545282\t:0.01\n",
"he:0.2786894588456654\tI:0.2187993863736224\tand:0.15978193519185846\tthey:0.07111906565666115\tshe:0.06405979132619377\tHe:0.06285818932007263\twe:0.052995435898579975\twho:0.0411665986351086\tthen:0.04053013875223757\t:0.01\n",
"of:0.373790027318163\tand:0.11064651762657035\tby:0.0979476469116305\tto:0.09608424347949548\tthat:0.09365692350098351\tin:0.08591511003978067\tfrom:0.04868450381138683\tfor:0.047314028860021354\twith:0.035960998451968235\t:0.01\n",
"of:0.34823255409375964\tand:0.13807414806110588\tto:0.12951697609390606\tby:0.08903143990926371\tin:0.07102352909774921\tthat:0.06479148551400096\tfrom:0.05445002648480907\ton:0.05421708475490136\twith:0.040662755990504104\t:0.01\n",
"it:0.18996776648825836\twhich:0.16693146919859034\tIt:0.1638838509302785\tthat:0.1088783226660808\twho:0.09754653858074362\the:0.09729440751502057\tthere:0.07644641877125938\tand:0.047844242933137104\tThere:0.041206982916631135\t:0.01\n",
"the:0.3145022110013187\ta:0.2133182464640774\tof:0.13359811545773048\tand:0.09301361905223515\tto:0.06518461796493535\tThe:0.04690887074187319\tin:0.04661787235741845\tas:0.0391305005261126\tthat:0.03772594643429875\t:0.01\n",
"hundred:0.35336013417757556\tone:0.13711185870628317\tdollars:0.09329222430666431\tup:0.07931017795829219\tlarge:0.07855198625223522\tfeet:0.06949643299386159\tmore:0.06402394552546256\tday:0.059638441026769705\tmen:0.05521479905285569\t:0.01\n",
"the:0.6347289727198613\tThe:0.08728956959985272\tnot:0.07466190744740027\tis:0.054791672973384296\ta:0.033495826329829066\twas:0.031036172352623785\tand:0.03073916043856145\ttho:0.022843259050079584\tare:0.020413459088407672\t:0.01\n",
"soon:0.2426814767942125\tlong:0.1415768751267958\tfar:0.13621723306579414\tand:0.11041211223691932\twell:0.09764264919542717\tjust:0.08357457573615662\tmuch:0.07036434694853533\tsuch:0.061134035458288355\tbut:0.04639669543787088\t:0.01\n",
"it:0.21175262889566568\the:0.19014680904145959\tIt:0.18982028099853918\tI:0.10966414085604292\tthere:0.07299980840495356\tHe:0.06663726083701502\tand:0.05018674089608051\tshe:0.049644215904146693\twhich:0.049148114166096796\t:0.01\n",
"on:0.36462405982731916\tof:0.21460163093497536\tin:0.1076867277913149\tto:0.09232309199179667\tfrom:0.05552831367758234\tat:0.04627027854294281\tIn:0.04501534726369095\tand:0.03239810647205358\tOn:0.031552443498324194\t:0.01\n",
".:0.2628798608311942\tand:0.13024559420228365\tof:0.09086589635576595\tS.:0.08952086489797086\tW.:0.0864054960978683\tM.:0.08517603986898505\tA.:0.08405607115613971\tthe:0.08386080776570792\tMrs.:0.07698936882408448\t:0.01\n",
"and:0.502681231645293\tis:0.10963935596744491\twas:0.09629791757665482\tare:0.08160020324237519\tbe:0.052684464793553584\tmore:0.051464865960177034\twere:0.03845295976530208\tbut:0.028999740970391975\tbeen:0.028179260078807406\t:0.01\n",
"Mr.:0.4470535084886719\tMrs.:0.13687250084923214\tDr.:0.11665889872768552\tof:0.0605909163858635\t.:0.055498685721170164\tA.:0.05004589560826756\tthe:0.04846233032404394\tJohn:0.0408029152523015\tM.:0.03401434864276372\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.2719743605330609\tas:0.16800643742734495\tthat:0.1634542209542748\tbut:0.1018846445613826\twhen:0.06978351739125627\tif:0.0662599875620249\twhich:0.05743891273201191\tdo:0.04984205874283489\twhat:0.041355860095808876\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"and:0.1715161835985111\tis:0.1701504783439962\tas:0.11082801560618431\twas:0.10049374719407791\table:0.0995782405371278\tnot:0.0959529126271294\tenough:0.08218526606313246\thim:0.08082377757804238\torder:0.07847137845179847\t:0.01\n",
"the:0.43439508446097824\tof:0.2671413281941097\tsaid:0.07276928838823575\tand:0.04245625627977481\tEng-:0.04231119773036824\tfor:0.03631112050372329\ttho:0.034496902629884946\tin:0.030298372360859423\tour:0.02982044945206574\t:0.01\n",
"and:0.20771464893631011\tto:0.18096553871673537\tof:0.14796324725583812\tthe:0.10533935478756268\tin:0.08337463360271641\tnot:0.07016451879643541\tfor:0.0681979883495749\tthat:0.06363335106245646\tI:0.06264671849237062\t:0.01\n",
"and:0.2844817020759523\tdemand:0.10445240592434848\tnot:0.09371571454109041\tused:0.08988354855682705\twas:0.08862731686400085\tpaid:0.08838663251599428\tis:0.08248559261205128\tthem:0.08219250315756757\tbeen:0.07577458375216783\t:0.01\n",
"he:0.25198171637962846\tI:0.17595181159302134\tit:0.15367418375112055\tthey:0.1357950357191324\twe:0.07010041843523133\tthat:0.059333084411069735\twho:0.050893720812568564\tshe:0.04960231804572695\tIt:0.04266771085250064\t:0.01\n",
"do:0.4073920634372706\tdid:0.284128342968943\tdoes:0.09208032765552798\tcould:0.07625772309167943\twould:0.058231286019578776\twill:0.041782779794746885\tshould:0.010770069332925028\tshall:0.009822814750573868\tmay:0.00953459294875449\t:0.01\n",
"the:0.4833235654848357\ta:0.1563193898979147\tthis:0.0848545060630656\tThe:0.06124970734115365\tthat:0.046618804157380754\tgood:0.044414367400538245\tany:0.04145089806199629\tof:0.03728251413605392\tcorn:0.03448624745706122\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"the:0.5860629956089372\tthis:0.0983979176207592\tsaid:0.0813578935349036\tThe:0.0764202924727155\tthat:0.0377547210138571\tof:0.034447880108558905\tand:0.03159260253901632\ttho:0.025129934005804242\ta:0.018835763095447898\t:0.01\n",
"a:0.32604138715830727\tthe:0.15622165113647768\tso:0.10838436729276128\tof:0.10675518357544658\tis:0.07767645012701599\twith:0.06071953341004756\tare:0.05436159187604381\tbe:0.052600130243798025\tand:0.04723970518010178\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.20401081332371668\tthe:0.196147042137073\tof:0.16725462661689366\tto:0.1617878090207775\tin:0.059628046262606656\tbe:0.058807960927110346\the:0.05185468117181505\twas:0.04525618697763944\ta:0.045252833562367624\t:0.01\n",
"of:0.30485174787696523\twith:0.15487645447384996\tas:0.10225205679026755\tby:0.0950571197069721\tand:0.09014491859255958\tfor:0.06337214947332456\tin:0.061825496199811515\tto:0.06098450815715406\tis:0.05663554872909548\t:0.01\n",
"of:0.3241150061345983\tand:0.1774251949735989\tin:0.10544507048740555\tto:0.10116454824675855\tthat:0.07659656642832684\ton:0.06455299454022724\tfor:0.06273561211239223\tthings:0.04287039325002043\tthose:0.03509461382667204\t:0.01\n",
"the:0.21684225904079849\tcon-:0.1961640421429038\ta:0.18618850398131187\tcertain:0.07414844066307516\tand:0.07268836315214185\tacre:0.07199279977074091\tcon­:0.058960819997709364\tcon¬:0.05770856079142224\tsaid:0.055306210459896116\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"of:0.29633572450437873\tin:0.14608538748858488\tto:0.1415677969515685\tfor:0.0941246122349261\tand:0.08474980319055245\twith:0.07400648853301359\ton:0.05839473007661018\tfrom:0.05014706301412718\tby:0.044588394006238215\t:0.01\n",
"the:0.6044766287533595\ta:0.15321895633459084\tThe:0.07607715900019386\tof:0.04641888510225562\ttho:0.038954605155482346\tand:0.025903239787953006\tthat:0.015749327022595773\ttbe:0.014930005853280814\tthis:0.014271192990288136\t:0.01\n",
"It:0.23127912378197046\tthere:0.21240176058284072\tit:0.19501212350781538\tThere:0.10713821937054821\tThis:0.06595333365099705\twhich:0.04771265982771375\the:0.04597925216904934\tthat:0.04565003547638064\tthis:0.038873491632684394\t:0.01\n",
"a:0.7643652467789775\tthe:0.0686020318823501\tin:0.050324843350916054\tvery:0.0264801234907271\tof:0.021335521494465756\tA:0.01760101006409866\tany:0.01405529445162208\tsome:0.014014900429024868\tIn:0.013221028057817896\t:0.01\n",
"number:0.1993035433666009\tout:0.17164570243795654\tmeans:0.12228146298876669\tpurpose:0.097795086188926\tplace:0.08803917386802938\tand:0.0807227246632584\tfull:0.07884389119208189\tform:0.07690367572896076\tamount:0.07446473956541945\t:0.01\n",
";:0.2633432770106504\tand:0.23385235345870986\t<s>:0.08600887497956729\tit,:0.07708643159572248\tthat:0.07209131293757613\tI:0.0703097259688966\tthem,:0.06361029154571093\tis:0.0622441666281334\tit:0.0614535658750329\t:0.01\n",
"to:0.5788703338094542\twill:0.10938656075181567\tand:0.1003045380867277\twould:0.05236292609538889\tI:0.038324428926954986\tmay:0.03380272615913116\tnot:0.0315046928088357\tcould:0.023338367003694058\tcan:0.022105426357997743\t:0.01\n",
"of:0.5239765114751146\tin:0.1702267903450619\tto:0.0811529353492475\ton:0.048024807656489525\tby:0.04695182867049136\tfrom:0.03566917530225409\tfor:0.032483293387558614\tIn:0.026560707173251406\tand:0.02495395064053101\t:0.01\n",
"Mr.:0.5247442016244126\tMrs.:0.11170462526655212\tW.:0.08686884653298363\tJ.:0.06863070575638627\t.:0.05684103294586353\tH.:0.04339489716707798\tE.:0.034081876068406486\tDr.:0.032264700246096116\tJohn:0.03146911439222132\t:0.01\n",
"of:0.3316564494611932\tin:0.11387712365034705\tthe:0.11054447881894976\tand:0.10663980810154719\tto:0.08569910107398887\tat:0.07244802930593351\tfor:0.0670704447566988\ton:0.06059358889493732\ta:0.04147097593640426\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"the:0.737069273612422\tThe:0.07395903668814847\ttho:0.03548324470805108\tof:0.03489408946293943\tthat:0.030691032057526366\tthis:0.021837583276952555\tto:0.02073672809677244\tand:0.018256765938502433\tany:0.01707224615868527\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"I:0.2972347413548833\twe:0.1596737443819009\tthey:0.15880401414132647\tWe:0.10767922019127868\twho:0.06816921463312631\tto:0.061192502960840944\tand:0.051231682532044916\tyou:0.048807689139557305\tThey:0.037207190665041176\t:0.01\n",
"the:0.3324283493725754\tof:0.31886067581131716\tand:0.07397744131367469\tfor:0.05752848343354825\tThe:0.05164563848191211\tplant:0.04938900304305969\tthat:0.04018955508204177\tor:0.03401524259841949\tas:0.03196561086345148\t:0.01\n",
"the:0.3995194221222794\tof:0.1437392511688354\ta:0.0980880033449963\tand:0.09757146452239814\tto:0.08142817880089032\tin:0.06724887599353455\tThe:0.037844996736282395\tthat:0.0346436710273211\tan:0.02991613628346218\t:0.01\n",
"of:0.2748977404920769\tand:0.25271345426082886\tbut:0.09899002016181306\tknow:0.09441812747199292\tthat:0.0610455388137525\tBut:0.05636036823448344\tto:0.05564221765098659\tfor:0.0497347525335465\tknew:0.046197780380519284\t:0.01\n",
"of:0.23945418833128768\tand:0.1742214940561542\tto:0.11870577932564276\tbe:0.1098243425835481\tthe:0.09482974550801357\ta:0.09129356628079216\twas:0.06519437384503556\tin:0.05388818376075651\tat:0.04258832630876939\t:0.01\n",
"I:0.29168188171603987\tto:0.14246453168012804\twe:0.12512399906766933\tthey:0.09264781655709249\twould:0.0851083107798543\tWe:0.07638683068926663\twho:0.06452271763319462\tyou:0.06067599916542702\twill:0.05138791271132766\t:0.01\n",
"the:0.3141851326653973\tand:0.19167765925860014\tof:0.15718791465525597\ta:0.10432141854101121\tThe:0.05222863130314414\tto:0.0509906179472751\twas:0.04147442319523843\tthat:0.04022194382478292\tMr.:0.03771225860929474\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"of:0.2428396225603548\tthe:0.23573964747253218\tand:0.10560424815593601\tin:0.09714258978595561\ta:0.09573008175952882\tfor:0.07637683593661301\tto:0.06415112981898621\tthat:0.03908089853712225\tIn:0.033334945972971104\t:0.01\n",
"and:0.6325195266336076\twas:0.08515076435349535\tSince:0.08265418921075633\tAnd:0.06628663559356911\tis:0.03257242049649194\twere:0.023822733477359123\tbut:0.02272425669018772\t;:0.02242005893825233\tare:0.021849414606280523\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.2795577484890098\tof:0.17138515288587403\ta:0.10545348980101767\tand:0.10358081425281415\tto:0.09316370237569993\this:0.07970422801247463\tin:0.06393496375745417\twas:0.047215012524109104\tbe:0.046004887901546415\t:0.01\n",
";:0.2588611970709363\tit,:0.18447127095098959\tthem,:0.11050048845933373\thim,:0.09235461919102587\tin:0.0782856933389489\ttime,:0.072401539945486\thim:0.0695881080642391\tcountry,:0.06453690861971835\tyears,:0.05900017435932212\t:0.01\n",
"the:0.30888473763208296\tof:0.19299518966183768\tand:0.17531981901460586\ta:0.09188606624070315\ttwo:0.07196355012628719\tmost:0.053896627612356314\tmany:0.03256942132742718\tthree:0.03190676259677856\tTwo:0.030577825787920898\t:0.01\n",
"and:0.2110320418290533\tmeth-:0.19826834562048015\tof:0.1590897837145534\tto:0.1060041409947288\t.:0.08364416558145578\t<s>:0.06418400009059713\tis:0.061255661765556385\tby:0.05845895402347496\twith:0.04806290638009999\t:0.01\n",
"of:0.2057458570827741\tthe:0.19112295486352576\tand:0.12345276996534585\ta:0.1098497949766843\tto:0.10106635125867985\tfor:0.09678695744071149\tin:0.07422219508954495\tthat:0.05569814677286694\tor:0.03205497254986672\t:0.01\n",
"not:0.45960322169894996\tor:0.13529148685017728\tmuch:0.0722221782409795\tbe:0.06946579956495734\tin:0.05676421812607143\tof:0.056346575267564605\tno:0.050297591632922634\tfor:0.04770740666486885\tand:0.042301521953508336\t:0.01\n",
"<s>:0.36010224151349435\tit.:0.19598518736950649\tthem.:0.1183180592626738\thim.:0.07740642337043321\tcountry.:0.05606305258754787\ttime.:0.05357605016813266\tagain.:0.04667894859729664\tpeople.:0.04187439621549609\tlife.:0.03999564091541899\t:0.01\n",
"he:0.33497020051957277\tthey:0.1778771303347434\tI:0.15189152577687665\tshe:0.08989930890698636\twho:0.06878003457698566\twe:0.056863202495264505\tit:0.045037616741138625\twhich:0.032516228439450304\tand:0.03216475220898171\t:0.01\n",
"it:0.20453342557631088\the:0.19365227341519892\tIt:0.1295646619901996\tI:0.09795460557343169\tand:0.0930070480435623\twhich:0.08584489372664113\tHe:0.07174336918657041\twho:0.07022272555683952\tshe:0.04347699693124545\t:0.01\n",
"the:0.31464401505476164\tof:0.1398138821048198\tand:0.12714466495604915\tother:0.1136591356712046\tThe:0.09452317769553649\ta:0.05627386041914181\tsuch:0.055995452743393084\this:0.05246107997901957\ttheir:0.03548473137607382\t:0.01\n",
"and:0.19809879165699038\twas:0.14390276707093314\tnot:0.10666158099179648\tin:0.10622107822841519\tbe:0.0923463386434243\tto:0.0910527973310327\tof:0.08451896871245287\ta:0.08385607451741554\tis:0.08334160284753944\t:0.01\n",
"that:0.26452617460119154\tas:0.1831875187293137\tand:0.14542535767404574\tbut:0.10358852884801907\twhen:0.0775899123151861\tif:0.0679818696560506\twhich:0.06008565518642138\twhat:0.058184942126600844\tIf:0.029430040863171032\t:0.01\n",
"the:0.7184355988902057\ta:0.09625069659804711\tThe:0.03242331198097496\tfirst:0.03120069382588804\ttho:0.027521297979520843\tsome:0.024146463257909086\tin:0.023473967365877233\tany:0.019965273414143652\tthis:0.016582696687433358\t:0.01\n",
"Mr.:0.3115396885308305\tAbraham:0.15439522824831495\tof:0.14269867615026413\tin:0.09571342639286051\tand:0.08560304724006275\tthe:0.07264677478735881\tso:0.059201412299005496\t.:0.034378130571484186\tPresident:0.03382361577981868\t:0.01\n",
"there:0.5371427139059691\tThere:0.2663857354612595\tthey:0.07877609325220594\tThey:0.026964207312453078\twho:0.018570586899102064\twe:0.018223930004193194\tand:0.015285344963537503\tit:0.015057766587858663\twhich:0.013593621613421016\t:0.01\n",
"a:0.2827446988212994\tthe:0.19996735259682474\tThe:0.13353554360318906\tyoung:0.10342047853756366\tthat:0.07819474588551524\tThis:0.05856545848147658\tthis:0.0576889670705255\tone:0.039153134255769696\tA:0.03672962074783619\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.4519755791092656\tof:0.1420412692576566\tand:0.1165439051184359\ta:0.08441638329833974\this:0.04930413615143297\tin:0.042623788452442385\tto:0.0386092343137484\ttho:0.03306908890526338\twith:0.03141661539341502\t:0.01\n",
"and:0.42186447535950783\tthat:0.14687156068958368\tbut:0.1444960842705073\ttime:0.0777533572878275\tBut:0.05865722638700542\tAnd:0.04174637107118044\tme:0.03839422703509098\tago,:0.03195447904189178\teven:0.028262218857405125\t:0.01\n",
"to:0.2917736879765236\tthis:0.14547764259358612\tin:0.12960346049073507\tof:0.12216954952434068\tand:0.066617070036036\tthat:0.0657509948093488\tthe:0.06103007679010306\tIn:0.054016720949581966\twithout:0.053560796829744704\t:0.01\n",
"of:0.36439356001077994\tin:0.13098462740195044\tto:0.10139230654229021\tfor:0.0899976765916506\tthat:0.07110140610217491\tand:0.07036997037652298\tby:0.06039159650922464\tfrom:0.05144688120092326\twith:0.04992197526448301\t:0.01\n",
"the:0.5289927959029942\tthis:0.22338446726640374\ta:0.077351065228168\this:0.032900718724432246\ttho:0.03224235970786303\tother:0.025178897388389427\tour:0.024786405926679304\tThe:0.02296135494706274\tof:0.02220193490800722\t:0.01\n",
"the:0.21208974139547232\tand:0.1623276013225891\tbe:0.144154915572945\thave:0.0884236278572897\thad:0.08545876430641969\twas:0.0802481334128933\tof:0.07856594544075533\thas:0.07103189995203739\tan:0.06769937073959807\t:0.01\n",
"be:0.33849627382249037\twas:0.1695739292704247\tbeen:0.15250045390158148\twere:0.08752572864008734\tis:0.08101516604072363\tare:0.07517339128807086\tso:0.03350836858073044\tbeing:0.0297694744273428\tas:0.022437214028548275\t:0.01\n",
"the:0.7296255838283392\tand:0.0624433964004433\tThe:0.05429603391747309\ttho:0.04247318759453409\ta:0.0325489480993286\tof:0.025387141285884953\tin:0.017931156854343204\ttbe:0.014072268254475943\tor:0.011222283765177742\t:0.01\n",
"the:0.695452713587759\tThe:0.0859502768940115\ta:0.06742989212435839\tand:0.05483874680311623\ttho:0.03981639358753\ttbe:0.017200965026878377\tby:0.01007934167615745\tin:0.010005220378422983\tlarge:0.009226449921766267\t:0.01\n",
"of:0.36491903841072393\tto:0.11665261062803754\tand:0.09836913478184489\ton:0.07716886399099933\tin:0.07503438383150358\twith:0.07310364602816136\tfor:0.07102967613423496\tthat:0.06886818540194961\tby:0.04485446079254483\t:0.01\n",
"get:0.1466179279908691\twas:0.13816166858847523\tand:0.13411725524820045\thim:0.10611862598008347\tit:0.10231181039389517\tthem:0.09727726821367766\tare:0.09515897845536371\tgo:0.08768078124059613\tcome:0.08255568388883913\t:0.01\n",
"to:0.43060535997750093\twith:0.157542426253894\tof:0.09523655271221546\tfor:0.09186114518059721\tupon:0.0595598577644083\ttold:0.04430345840192467\tby:0.0430189690258097\tbefore:0.03463893972213532\ton:0.03323329096151451\t:0.01\n",
"and:0.1715161835985111\tis:0.1701504783439962\tas:0.11082801560618431\twas:0.10049374719407791\table:0.0995782405371278\tnot:0.0959529126271294\tenough:0.08218526606313246\thim:0.08082377757804238\torder:0.07847137845179847\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"and:0.2503179771193183\tit:0.1191931764009684\tthat:0.11111674088683451\tmade:0.09607595369407342\twas:0.09224657807501195\tthem:0.09209259261588562\tfound:0.08802579283705521\tis:0.07319718064234634\tup:0.06773400772850624\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.2545957234573011\twas:0.22959422896219753\tcommittee:0.1104815735808707\twent:0.07481191558189353\tout:0.06887577827994566\tbe:0.06555230818255356\tthat:0.06346671192542905\tis:0.061464289418613614\tup:0.061157470611195384\t:0.01\n",
"is:0.16974042935602554\tas:0.13768418657724416\ttoo:0.11999166146325552\tand:0.11117653588744111\tare:0.10701073954271882\ta:0.10549953033259808\tbe:0.09098503766074416\tof:0.07646707167258016\tso:0.0714448075073924\t:0.01\n",
"a:0.30963306523741785\tthe:0.2401205407578964\tThe:0.1330046462940024\tA:0.09608029684103725\this:0.06383906490177256\tthis:0.061855821277848486\tThis:0.03130550197480003\tHis:0.029518919612296628\tmy:0.02464214310292829\t:0.01\n",
"not:0.5191246571077446\twas:0.10609024597525991\tis:0.09535155923810798\tbe:0.0610212251251566\tand:0.057253425016291735\tare:0.047871276916389364\tthe:0.036978732545358446\twere:0.03363314140221917\tNot:0.03267573667347209\t:0.01\n",
"the:0.48018735733213536\tof:0.2980717820226205\tand:0.0493785453500608\tThe:0.04886378449284879\ttho:0.03082048422367185\tan:0.024455339690713875\tin:0.021060025298386815\tSouth:0.019847868842916123\tNorth:0.01731481274664579\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"and:0.2617482264953263\the:0.14322643956038017\tbe:0.11251835066680185\twho:0.10846273383779215\tit:0.10164075247690649\tone:0.09134773987689947\tman:0.06165843453827552\twas:0.05549531664968602\tall:0.053902005897932065\t:0.01\n",
"are:0.19350820755495962\tis:0.18236982191002687\tby:0.15573185204141224\tand:0.08928439309141883\tof:0.07942879596687018\twas:0.07605943538785305\tthe:0.07280655110832798\tbe:0.07081250117798916\tmore:0.0699984417611421\t:0.01\n",
"more:0.47452127157758767\trather:0.15282943066489887\tless:0.11177666295799826\tbetter:0.07463107969867074\tgreater:0.0641203789849371\tother:0.03680715962539486\tand:0.026120553408354837\thigher:0.025458521252361265\tworse:0.023734941829796425\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.37061044533864124\tof:0.1517560164915446\tand:0.11288138806177102\tThe:0.08104015756912003\tthat:0.06702249094998507\ta:0.06516892751803607\tMr.:0.053315344398384604\tin:0.048958292727447096\twhich:0.039246936945070476\t:0.01\n",
"the:0.5068205874075351\tof:0.13136398421203646\tat:0.10621754697681998\ta:0.08823818957823507\tfor:0.03863141590444501\tin:0.03414082869881765\tto:0.029879269463720243\tand:0.029424898484979038\tThe:0.025283279273411598\t:0.01\n",
"the:0.564615656544795\ta:0.11782622581623398\tof:0.06705085220576523\tthis:0.05447362859240859\tan:0.049691709271416945\tThe:0.03554922523339816\tsuch:0.03475778494011661\ttho:0.03331662759072531\tother:0.03271828980514017\t:0.01\n",
"of:0.44127607440216804\tin:0.10884815920437528\tto:0.099412012316377\ton:0.0779745050925863\tthat:0.06749589525157422\tfrom:0.05335007031496983\tfor:0.049475984659252875\tand:0.04873631871712135\tby:0.043430980041575154\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"of:0.24373151028703827\tin:0.2126519040879478\tthe:0.2079418907744951\tto:0.08457807818478726\ta:0.08339877153019665\tIn:0.05287718745764576\tand:0.04848617826018974\tfrom:0.031756559837145315\tthat:0.024577919580554126\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"of:0.21376855101140999\tand:0.1708220470029499\tknow:0.15562994944636593\tto:0.12945543455832637\tsee:0.07765792294057425\tfor:0.06993356551669888\tjust:0.05999525562114776\tin:0.059377480140041586\twith:0.05335979376248533\t:0.01\n",
";:0.19144271596780793\tit,:0.16073763154027443\there:0.12049437696626474\thim,:0.11804649775025872\tthem,:0.09400661208989028\thim:0.08015674650162938\tup:0.08012724368830139\ttime,:0.07692296664228485\tin:0.06806520885328828\t:0.01\n",
"of:0.3490124854372051\tand:0.1510237090476072\tin:0.14043569227794847\tthat:0.1307424858986167\tfor:0.07626604288645794\tto:0.041501430834301564\ton:0.03682615937123134\tbut:0.0333280556738184\tfrom:0.030863938572813217\t:0.01\n",
"six:0.1432243266307033\tfour:0.13132695764116986\ttwo:0.12765022450658808\tthe:0.11440845952819052\thundred:0.11414304752348403\tthree:0.1117961244952885\tfive:0.08423462588028392\tfifty:0.08227381680550983\ttheir:0.08094241698878188\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.2851714087046994\tand:0.2383144603057143\ton:0.10691214488043142\tto:0.08380535784981538\tthat:0.07644110076192266\tfor:0.0752225897585097\tin:0.044389879378518966\twith:0.04008949046791728\tfrom:0.03965356789247076\t:0.01\n",
"the:0.2903197091904407\tthat:0.13621054323082318\tthis:0.11396567187916634\tsame:0.11156981655514027\tshort:0.09731594000396372\ta:0.08153137137906755\tsome:0.06783181961254439\tlong:0.0508358239667041\tfirst:0.04041930418214991\t:0.01\n",
"in:0.4012325547276402\tthe:0.19555487390010848\tIn:0.10784192508028345\ta:0.09698861188200332\ttake:0.08225988669629536\ttook:0.03851085684635368\tand:0.023770822769100815\tor:0.022475270875718448\thave:0.021365197222496152\t:0.01\n",
"was:0.19492866066111977\tbe:0.14230256705948147\tand:0.13802567688132678\tis:0.13144320211790078\tI:0.09418701317250593\tnot:0.08628756631012924\thad:0.07472410635973735\tthat:0.06814820100141623\tbut:0.05995300643638251\t:0.01\n",
"the:0.7080254699773773\tand:0.0621746565497915\ta:0.05852444265544859\tThe:0.04219046519036727\tto:0.04016824492390225\ttho:0.03725796401612218\ttbe:0.015486324866337551\tin:0.013391105929597009\this:0.012781325891056553\t:0.01\n",
"and:0.28894039373058844\tthat:0.21599345219943586\tas:0.17646709896580495\twhich:0.07782015205508785\tbut:0.06371015144059206\twhen:0.052412362719232865\tof:0.04623855392545518\tfor:0.036282107776453056\tthe:0.03213572718734969\t:0.01\n",
"an:0.3221554171663661\ton:0.23735704185524184\tto:0.10871122694555625\tthe:0.06907450958856452\tno:0.059491482863650816\tthis:0.05470427212634053\tand:0.04867688322998556\this:0.045792328376492775\tof:0.04403683784780149\t:0.01\n",
"the:0.38743484320920946\tof:0.2015753417722917\tin:0.1349739753274139\tThe:0.11516569731856131\tIn:0.04241987269463432\tand:0.030983482578272676\tthat:0.030406086137754508\tMr.:0.02428616156251735\ttho:0.022754539399344728\t:0.01\n",
"the:0.22638387294033666\tof:0.18114458898746313\t<s>:0.1597032852824237\tand:0.14723666332332958\ta:0.07191657127044683\tas:0.0676470429027498\tto:0.04864983945690844\tthat:0.04407144548887333\t::0.04324669034746854\t:0.01\n",
"the:0.23353271610322898\tof:0.20386971466756187\tsuch:0.11382038249025216\tin:0.10718902709802425\this:0.10357113331293702\ta:0.08297373998476867\ttheir:0.05949602693242851\tand:0.0563270091789167\tdoing:0.02922025023188185\t:0.01\n",
"and:0.24413116292889298\tclosing:0.18173686344826198\twas:0.10859381659603785\tvalued:0.08665763038641584\theld:0.07932710425709101\tsold:0.07518688429361538\t2:0.07335995221601971\tis:0.07241280837793868\tarrived:0.06859377749572665\t:0.01\n",
"that:0.2512067581766573\tand:0.22617010275396474\twhich:0.11824170287803305\tas:0.11042612664546063\tbut:0.07915632732441186\tif:0.06551086215618873\twhat:0.05767914343147025\twhen:0.054572148699000345\tIf:0.027036827934813195\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"be:0.2673721628353414\twas:0.2293044472269825\tis:0.1311724187935845\tbeen:0.09237276586286039\thave:0.0607628404273927\twere:0.05551836780317386\tand:0.05471452214303481\the:0.05131087662577376\thad:0.04747159828185606\t:0.01\n",
"the:0.7914397788474244\tthis:0.04603716852355882\ttho:0.030607719304396035\tAmerican:0.023111766693071394\tof:0.02250462418248604\tMississippi:0.02066673636124806\t<s>:0.019343658225791635\tYork:0.018186378789562203\tStates:0.0181021690724615\t:0.01\n",
"went:0.15346380362740233\tmade:0.13638640620639564\ttaken:0.13546337047865747\tcame:0.13307667634673748\tit:0.10640805829100759\tcome:0.09612208509579995\tput:0.08493417572777472\tbrought:0.07807843290193678\tand:0.06606699132428816\t:0.01\n",
"of:0.6115223943099491\tin:0.1834888672109184\tthe:0.054772954320965815\tIn:0.03590459584658582\tand:0.03203536319921714\tfor:0.024864575349850628\tthat:0.023791900134160434\tor:0.011854464865778062\tby:0.011764884762574463\t:0.01\n",
"and:0.14072035149837744\table:0.12391264501324505\tenough:0.12160921525026529\tis:0.1177979612119986\tnecessary:0.1097692051266795\thim:0.10728297805906593\tnot:0.09472503808621861\tright:0.09070493598250984\tme:0.08347766977163973\t:0.01\n",
"the:0.2341315655093572\tof:0.176247320751933\tin:0.1396405314555729\ta:0.13866617787361082\tand:0.09024369976382253\tby:0.05931795624909807\tfrom:0.058943972772387346\ttheir:0.0479821230846341\this:0.04482665253958392\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.2330076173378824\tin:0.16241038392467472\tthe:0.1479597045470189\tand:0.12303000067861414\tat:0.11497060976152607\tto:0.05939485357016231\t<s>:0.053322053636038945\tIn:0.04937744655787983\ta:0.046527329986202744\t:0.01\n",
"be:0.2005461200486136\twas:0.1907418170973874\the:0.1315656453184953\tand:0.1161247042170254\tI:0.10831595024122793\tis:0.08469072905101728\tbeen:0.058320002972680286\tthey:0.05064273752045304\thave:0.0490522935330998\t:0.01\n",
"and:0.37398785440151966\tto:0.11527502243745602\tso:0.09015406622303004\tfact:0.0898542481620436\tsay:0.0751400020392526\tknow:0.06763542728723893\tof:0.06124242316638865\tbut:0.060047523292703284\tthan:0.05666343299036728\t:0.01\n",
"and:0.2217867067544159\tof:0.16289670249670699\tthe:0.1453416635544658\tin:0.1258571180514924\ta:0.1020676641006371\tto:0.0816576372413416\tfor:0.05429134056640788\tthat:0.051143817686813\tan:0.044957349547719384\t:0.01\n",
"in:0.25751935785666946\tto:0.21588405092208485\tof:0.15485163874384575\ton:0.10890075314778562\tIn:0.0734896319947577\tat:0.07073647253888363\twith:0.0385377792852647\tand:0.0363676629325743\tfrom:0.033712652578134016\t:0.01\n",
"part:0.21496902104278678\tone:0.20912369233988043\tsome:0.12867331343811736\tout:0.1057303116879626\tmembers:0.07618604502434112\tand:0.06636584999188522\ttion:0.06479865598258486\tportion:0.06226235532256281\tside:0.061890755169878825\t:0.01\n",
"the:0.597878662327278\tof:0.06180732308576595\tAmerican:0.05654684882918161\tmany:0.051508769763478866\tour:0.050632658848094786\tThe:0.0502674367584051\tyoung:0.04835598321246723\ta:0.04151442431160872\tcolored:0.031487892863719814\t:0.01\n",
"of:0.385172511888595\tand:0.1985284491402263\tthe:0.14057683058469217\tthat:0.056462206496629586\tin:0.047858978943760955\tas:0.04467684917013073\tfor:0.04059909984649974\tor:0.03931795343289804\tThe:0.03680712049656749\t:0.01\n",
"the:0.37573850849684676\tof:0.1875913053673063\tand:0.14417153945796143\tto:0.06975804520274409\tin:0.06047778469698129\ta:0.047125644093363575\tat:0.0453870548294848\tor:0.032072187108213475\t.:0.027677930747098206\t:0.01\n",
"the:0.3308162184315038\tof:0.16966964773089072\tto:0.10704039964657876\tand:0.10668551044478329\ta:0.09940308099005661\tin:0.05525536586325709\tbe:0.04380313950800813\this:0.04174117051452463\tis:0.0355854668703971\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"be:0.2889919803164346\tdebt:0.22070514308781236\tbeen:0.1038219898492564\tand:0.09961116637999307\twas:0.07777237814926502\twere:0.0523902063959151\tis:0.0522386158747252\tare:0.048946054682181335\the:0.04552246526441679\t:0.01\n",
"and:0.2690579893900818\theirs:0.11687412789778394\twas:0.11540143522084703\tproceeding:0.10961617001167677\tthat:0.09573458676988196\theld:0.07607115781283655\tas:0.07347844632898146\tsold:0.06828922319432404\tclosing:0.06547686337358644\t:0.01\n",
"and:0.353436235005758\twas:0.1189442880086054\tto:0.11640873806574288\tis:0.0953546839140978\tare:0.0629829955200864\tnot:0.06147133259713752\thad:0.06132035710761894\tthat:0.06034316984918035\tof:0.05973819993177263\t:0.01\n",
"and:0.2435480540352145\tas:0.15690527802913024\tup:0.10296734321529094\tit:0.09647376793670022\taddition:0.09422686599691245\taccording:0.08116819529026177\tthem:0.07910602684310672\thim:0.0685702474069357\tentitled:0.06703422124644733\t:0.01\n",
"that:0.4248767727810632\tand:0.21696169084527836\tbut:0.07728732858024093\tif:0.05209935182685942\twhen:0.05161873506627446\twhere:0.04967867968515334\twhich:0.04575344605788949\tas:0.042465679687247924\tThen:0.029258315469992895\t:0.01\n",
"and:0.33619729087320405\tdemand:0.12849405957726603\tmade:0.08831425341828668\tvote:0.08621435573552065\tprovided:0.07692341415961682\tprovide:0.07274763785088897\tnecessary:0.07135992415160904\treason:0.06601189773979796\tready:0.06373716649380977\t:0.01\n",
"give:0.23570605915335252\tgave:0.20255454496736586\tto:0.18597120078177778\twith:0.09553426843664588\tfor:0.07885881652191004\tmake:0.06935938873768362\tmade:0.04236356755546103\ttold:0.04190680651674967\tby:0.0377453473290537\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"W.:0.15655084291013258\tJ.:0.13126272892166171\t.:0.12056460401241754\tA.:0.1101769879459065\tMrs.:0.10967031596348974\tMr.:0.10797213630431063\tC.:0.09533525866594722\tM.:0.08613529179773456\tJohn:0.07233183347839947\t:0.01\n",
"of:0.3166698837010217\tto:0.14184878151269795\tthat:0.13321958129343778\tin:0.08940399305007286\tand:0.07991109416274988\ton:0.06624495395025656\tat:0.06376061442955977\tfor:0.052473238164963805\tis:0.04646785973523961\t:0.01\n",
"of:0.26453813804376336\tthe:0.24624491121432474\tand:0.170694016957451\tto:0.0814665782935049\ta:0.07427792899595678\tfor:0.04083164162325159\tat:0.040304551125875034\tor:0.03835610939527796\tin:0.03328612435059464\t:0.01\n",
"the:0.39290087366146526\tof:0.22408205824789962\tThe:0.14327173810604055\tthat:0.05602605951170179\tin:0.042622620001386335\tand:0.04148275450319187\ta:0.032621272949112615\tsuch:0.02867348992071311\tan:0.028319133098488915\t:0.01\n",
"and:0.42996504518928474\tso:0.11585445759176433\tfact:0.09309441273830815\tto:0.08903747718364562\tis:0.05783681506165707\tof:0.055537584284084694\tdo:0.0541811917717591\tsay:0.047663732540509124\tthan:0.04682928363898721\t:0.01\n",
"and:0.26693600506383824\tto:0.19083270467752667\tthe:0.14752451001999692\tof:0.11671418884761661\tin:0.07110961318209995\tthat:0.06266372338204144\tor:0.04951727861009427\ta:0.04274108016123478\tan:0.041960896055551096\t:0.01\n",
"a:0.19695323005005633\tthe:0.16816913302810177\tof:0.14822321855124101\tand:0.13939369829278436\tto:0.08838261293154283\tin:0.07993288548178436\tfor:0.0784798399018892\tthat:0.05177581610431104\tby:0.03868956565828905\t:0.01\n",
"has:0.406484026380845\thad:0.3068390169791535\thave:0.21902083529806424\tlias:0.013789957518499348\tis:0.012062252574657362\tcould:0.009062870647198441\tit:0.008526968395247482\twas:0.007563569168611841\tbad:0.006650503037722821\t:0.01\n",
".:0.17921948508185798\tthe:0.17865536667754417\tand:0.13285770609564276\tof:0.12271096677171323\tto:0.0925927148441608\tMr.:0.0733407735702612\tMrs.:0.07282868314789696\tMiss:0.07266232258346225\ta:0.06513198122746064\t:0.01\n",
"the:0.49355302599804124\tand:0.13682901533278802\tany:0.07051760369869217\tof:0.06520766070292479\tno:0.060212561826785624\tthat:0.046497013032572504\ta:0.04309407439685173\tto:0.03837731178877429\tthis:0.035711733222569625\t:0.01\n",
"the:0.2670123284680612\ta:0.18116684148308265\tand:0.15913419604555176\tof:0.13930591650627042\tto:0.08299934887262268\tis:0.04574116673600148\tare:0.03961182960548521\tor:0.039411145690206886\tin:0.0356172265927176\t:0.01\n",
"<s>:0.30777600225134644\tit.:0.1309186390150994\tthat:0.11932510108681373\thim.:0.10819509881306064\tand:0.09251668246129488\tthem.:0.06990089447252769\tyears.:0.06340352221402214\ttime.:0.04981760595411786\ther.:0.04814645373171722\t:0.01\n",
"the:0.5352556739853958\ta:0.12965588005661263\tand:0.10539726239198638\tof:0.06073427022535768\tto:0.04023249874780924\tin:0.035618023762127124\tThe:0.03249994111049118\ttho:0.028060169044888936\tor:0.022546280675331064\t:0.01\n",
"the:0.4113130048500799\tof:0.15740638429839654\tand:0.13234400762777854\ta:0.07845128853204274\tat:0.055556045759133615\tto:0.04948619086383694\tThe:0.04268319534679701\tin:0.033151065470406436\ttho:0.02960881725152828\t:0.01\n",
"he:0.2322016336984786\tit:0.1669075223082371\tthey:0.10660387704011784\tthat:0.09287466004315888\tI:0.08912921800163373\tand:0.08103075734170172\tIt:0.07721091712064736\twho:0.0747157546460944\twhich:0.06932565979993037\t:0.01\n",
"and:0.23339211020080516\tthe:0.22918898322362166\tof:0.16867434046767293\tto:0.08741516158313252\ta:0.05999479299999524\the:0.05927637953064081\twhich:0.0556388482419628\tthat:0.049002011568879886\tbe:0.047417372183289085\t:0.01\n",
"the:0.36652950927581524\tsuch:0.17822848915327075\tsaid:0.10310194379135022\tno:0.08649733730130287\tthis:0.06878721669937475\tthat:0.058142301777103146\tand:0.05259382052549014\tany:0.04171676066265999\tThe:0.034402620813633066\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"and:0.2969331951263288\tto:0.20946930067587013\tof:0.12977193473072346\tthe:0.10266923479916312\tnot:0.06863252547762862\tor:0.04930601769006356\the:0.048945400237971594\thave:0.04307472682550299\twho:0.0411976644367477\t:0.01\n",
"of:0.23494125166646218\tin:0.19207618212564018\tand:0.1275251036653209\twith:0.10031893035677995\tby:0.08299383959861666\ton:0.07036856088557468\tfor:0.06206359998717266\tto:0.06132629203330452\tIn:0.05838623968112828\t:0.01\n",
"those:0.3332541418605557\tand:0.12605158134173597\tmen:0.11827729983392558\tman:0.10266598822516056\tall:0.08357832629755675\tone:0.06691069160831001\tpeople:0.06676521148116644\tpersons:0.04764630343925801\tperson:0.04485045591233094\t:0.01\n",
"they:0.299954136663756\tthere:0.12336587267808473\tand:0.11314861125863297\twho:0.10672175143008082\twe:0.08393458953724554\twhich:0.08312392011761544\tThey:0.06637683112029098\tThere:0.057531833544174966\tthat:0.05584245365011847\t:0.01\n",
"to:0.5030063077631872\tthe:0.09701083524723668\tand:0.07869056994815403\tin:0.07640956930233421\twill:0.0681350775226935\ta:0.0653800687326731\tof:0.03996002799598358\twould:0.03110212067183458\tre-:0.030305422815903076\t:0.01\n",
"of:0.22217746446276032\tto:0.1508841308139507\tin:0.12730141068773745\twith:0.119193622628509\tfor:0.10893020059994243\ton:0.08689056648206667\tand:0.06862924092126783\tby:0.06618792417919889\tfrom:0.03980543922456658\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"the:0.3155550940156394\tof:0.17283600545787453\tand:0.09391174685980018\ta:0.08793236260243929\tto:0.0865512570009515\tbe:0.07748327797896089\tin:0.052626231371751035\this:0.052024488566849304\twas:0.05107953614573394\t:0.01\n",
"the:0.364352207834094\tof:0.2520309680535179\tand:0.11201428937613438\ta:0.06424798731907944\tfor:0.05307906574277135\tto:0.04449557090166584\tat:0.0358714155436636\tby:0.033170693623372355\t<s>:0.03073780160570131\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.325931705642055\tthe:0.3089125032417568\tin:0.16730272613949604\tIn:0.06084950683025233\tand:0.03705931491752949\tfor:0.025829601414038224\tto:0.023530254866934604\tat:0.021063171388690197\tThe:0.019521215559247393\t:0.01\n",
"they:0.22313882392343704\tthere:0.15104994100433458\twe:0.12471039120081231\twho:0.11432504128069725\tyou:0.09118664827607413\twhich:0.08160497270209016\tand:0.06997468120732415\tThere:0.06808394137121582\tthat:0.06592555903401448\t:0.01\n",
"the:0.30882721106827393\tof:0.25846217965398677\ta:0.11238144286400571\tthis:0.0890196909406041\tcivil:0.0767271342369977\tfor:0.049848850919317185\tin:0.04827608357074159\tfrom:0.023349969263107492\tto:0.023107437482965388\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.4039591549359863\twas:0.2862229062548431\tis:0.09370824249486438\tHe:0.07888071709094964\twere:0.04389595004857157\tare:0.032521874230431125\the:0.021936040503648575\tbe:0.01478072068155715\tI:0.014094393759148038\t:0.01\n",
"the:0.2895740290395114\tof:0.17373506185125653\tand:0.16506367628021845\tto:0.10360219768344171\ta:0.09228084386837633\tin:0.055230445114867514\tat:0.04724247957281733\tor:0.036136735864220254\tThe:0.027134530725290443\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"the:0.37680513217923667\ta:0.222376102783062\tof:0.12173761224710833\tand:0.07121976612173277\tThe:0.05931923894989865\tto:0.04212380242120946\tan:0.04149625059616208\this:0.02944453909364028\tA:0.025477555607949735\t:0.01\n",
"the:0.312282266932705\tand:0.16944824565144906\tof:0.1593777605979419\tan:0.08688012530425042\tin:0.0637312714237423\tto:0.059027345805707086\tthat:0.05186549846684027\tfor:0.04746469288161878\t<s>:0.039922792935745195\t:0.01\n",
"has:0.3499535929898403\thave:0.28758937821775876\thad:0.20932980763855338\tnot:0.04817168082061808\thaving:0.03111178558749524\tbad:0.018614968640569874\tlias:0.017155950656620213\tnever:0.016514907761902623\tever:0.011557927686641455\t:0.01\n",
"and:0.20374376759586063\tof:0.17994731824491628\tit:0.12057252071308992\tdo:0.10393448480897638\tby:0.08421898243927409\tfor:0.07833486229722483\tbe:0.07541730055238506\twas:0.07496381316472894\the:0.06886695018354376\t:0.01\n",
"and:0.2900564289119661\tto:0.26058835113860934\tof:0.09692745352180078\tthe:0.07829146470724194\the:0.07523693972166287\tbe:0.05611305576213118\twho:0.04749816044579656\tin:0.046322024829013535\tI:0.038966120961777616\t:0.01\n",
"more:0.15875904832059262\ttwo:0.1571115787020781\tday:0.1522854670052106\tone:0.10535782580309344\ton:0.10221115696690729\tthree:0.07997021539932847\tten:0.07980678907139259\tstate:0.07968415999015566\tlot:0.07481375874124122\t:0.01\n",
"the:0.5176699375767989\ta:0.2704747999771494\tThe:0.06918752155217872\tand:0.047160932010035024\tvery:0.025696163316792052\ttho:0.0247360391489162\tof:0.015365910290229478\tbe:0.009913524141790399\tno:0.009795171986109777\t:0.01\n",
"of:0.2889346246961594\tto:0.13187293293942204\tin:0.12240733800154517\tand:0.11765182258668865\tthat:0.10671073381619828\tfor:0.08891260586867632\twith:0.04963892623381643\tby:0.04902437341753352\tIn:0.03484664243996028\t:0.01\n",
"of:0.2775823654949323\tin:0.14015884515621155\twith:0.121582681636841\tis:0.09897663119884043\tto:0.08864696712774395\tand:0.07963801328291438\tfor:0.07606510035879992\twas:0.059050824946662\tby:0.048298570797054324\t:0.01\n",
"the:0.3591074923870438\ta:0.1850563696228182\tat:0.11325821497845276\tand:0.10946968949700599\tof:0.0656430483825805\tin:0.05829795607695116\tto:0.04912869723228261\tan:0.02664624876441451\tfor:0.02339228305845042\t:0.01\n",
"the:0.41576235437135717\tto:0.1562054311362458\this:0.11643838419165375\ttheir:0.07286764253023026\tof:0.06151561328888121\tin:0.055202536362147024\ta:0.05249775972770642\tat:0.03022849537105238\tand:0.029281783020725947\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"is:0.14718928262907086\tof:0.13170794563777122\tin:0.12710192051385508\tas:0.11924413591454289\tat:0.10474715147360844\twas:0.0968921422569932\tto:0.0925948507042897\twith:0.08706151471365697\tand:0.08346105615621169\t:0.01\n",
"that:0.22894298162916124\tand:0.18389959895169808\twhich:0.14233538044387992\twhen:0.10658309596613334\tas:0.09538865855949213\tto:0.09182559855047093\tif:0.04809103819452874\twill:0.04780503333124626\tbut:0.04512861437338917\t:0.01\n",
"time:0.15520861518725457\tit:0.13595801910082134\tup:0.12480536320750094\thim:0.11223428636581699\tlying:0.10677672672005974\tday:0.09325959433300715\t;:0.09158530705558501\tdollars:0.08900568955407193\tit,:0.08116639847588232\t:0.01\n",
"he:0.3876308955485732\tHe:0.1630686277787865\twho:0.09040358851920033\tone:0.07693586732826871\tit:0.07040776338451296\tshe:0.059814856579256045\tI:0.05726876368170903\teverybody:0.04834320270249929\tIt:0.03612643447719403\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.21827711254745671\tof:0.19319788751543396\tto:0.17665008869864662\tthe:0.169946469789289\tin:0.0644494177586194\tor:0.04577135576859088\tbe:0.04393324812225755\ta:0.04079975831705609\twas:0.03697466148264986\t:0.01\n",
"and:0.21393118168975353\twas:0.1710833746853868\tare:0.1515840598490382\tis:0.138088794600852\twere:0.0801349079188026\tbe:0.07236224295920221\tbeen:0.06574638203862893\tthat:0.0536369200134429\tit:0.04343213624489278\t:0.01\n",
"and:0.2634406048823141\tresale:0.1520499947081301\twas:0.11634558573748464\tis:0.09185667312709239\tthat:0.08478174504295355\tinserted:0.08286456950804665\tbe:0.06920606682123413\tit:0.06538422921613014\tbut:0.0640705309566142\t:0.01\n",
"Secretary:0.2348367142254619\tout:0.13403019845299338\tstate:0.13132868121475522\tcity:0.10282377214190552\tState:0.09726180151235433\tline:0.0776965472491378\tCity:0.07150008559620788\tnumber:0.07094474097371897\tday:0.069577458633465\t:0.01\n",
"of:0.3577082092466367\tto:0.1483776838352247\tin:0.0904212631663372\tfor:0.08708914697557243\tand:0.08461198017368168\tby:0.06531094350216048\twith:0.06328302752311864\tthat:0.05998994091644453\tfrom:0.03320780466082364\t:0.01\n",
"per:0.9199204266613642\tre-:0.01946488480009797\tone:0.012606991173404494\ta:0.011893272757537493\tpor:0.006236709209635304\tre¬:0.005706683205617318\tten:0.005570138500305849\tthe:0.0047169822012680645\tsix:0.003883911490769433\t:0.01\n",
"to:0.6486717817241453\tand:0.12839542336477877\twill:0.056892150743772366\tnot:0.044981558692214575\tat:0.040551177240150664\twould:0.018629892441550503\tthe:0.01793179422687073\ta:0.017809517877131028\tthey:0.016136703689386012\t:0.01\n",
"it:0.19098738899443296\tthat:0.14858923717751657\the:0.11861159650347006\tthey:0.11668493644236243\twhich:0.11311474604325064\tI:0.08874370294804595\tthere:0.08838217498361485\tand:0.06616777705533793\tIt:0.05871843985196871\t:0.01\n",
"and:0.25811154675930364\the:0.253763478426916\tHe:0.1201104626949756\tI:0.08143874752544174\tit:0.07589601636927597\tshe:0.06012027780871931\twhich:0.05020184573637136\tIt:0.04570215304402376\tthat:0.044655471634972535\t:0.01\n",
"<s>:0.24728533594793464\tand:0.20253763753382348\tmade:0.0988615075741576\twas:0.09538551140811594\trecorded:0.07923243876425153\tthat:0.07572633810967984\tbe:0.06754695020072057\tis:0.06282737303055098\to'clock:0.06059690743076549\t:0.01\n",
"and:0.14760161091992244\tas:0.14569173689273976\torder:0.1314117946957403\table:0.12120725674721548\tis:0.10407782949177481\tenough:0.09876455927868695\tnecessary:0.0916173196955863\thim:0.07824790662161216\twas:0.07137998565672181\t:0.01\n",
"and:0.2500608016779212\twait:0.14195551901140657\tthem:0.09764003780343258\tthere:0.0920464199633956\tup:0.09047153139285861\tretained:0.08218332982386663\tcontinued:0.08148892688697039\thim:0.07838089508626145\tnot:0.07577253835388696\t:0.01\n",
"of:0.41681937331576485\tto:0.1263253782575961\tfor:0.0828289246397539\tin:0.08087880321083661\tand:0.06874613565678322\tby:0.06871089360617309\tthat:0.056705934512968334\twith:0.055658259024311305\tfrom:0.03332629777581253\t:0.01\n",
"to:0.517766108874699\tin:0.093642421889327\ta:0.08943679685717139\tthe:0.08443268363371725\tand:0.07428101510285748\tof:0.0675332153759054\tIn:0.025627052255265077\tnot:0.019031507570472235\tthis:0.018249198440585195\t:0.01\n",
"the:0.21903001783201745\tand:0.17371305390027073\tof:0.14163243329731337\tbe:0.0936513641782006\tto:0.09067955192171692\tin:0.07371460703854865\ta:0.0707011955568166\twas:0.06966019363004261\tor:0.05721758264507287\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"he:0.3211659203675496\tHe:0.2767626675333912\twho:0.10728960193656309\tshe:0.060639377753053225\tIt:0.05553238592760243\tand:0.05455249440793107\tI:0.04987085902805163\tit:0.03678747467361292\tShe:0.027399218372244908\t:0.01\n",
"to:0.35083762051871736\twill:0.17772763983783682\twould:0.09863797290910963\tmay:0.0873681994381256\tshould:0.06979164687271441\tnot:0.05451907952598224\tcan:0.052878012778392394\tshall:0.05184209509888355\tmust:0.04639773302023814\t:0.01\n",
"and:0.32751045643584464\tbut:0.18192411719107923\tthat:0.1739811540035672\tas:0.061787124498430955\ttime:0.0530000424370868\tBut:0.05294396992736473\tand,:0.05258010277645318\tthat,:0.04330814923404952\twhich,:0.04296488349612383\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.3264980278642012\tto:0.1742209951136574\tand:0.12254678917113908\ta:0.11293949410053393\tof:0.105958681557415\tthis:0.05543960591471189\tthat:0.039307639689694016\tone:0.027518866049078515\tas:0.025569900539568986\t:0.01\n",
"the:0.21501311870910184\tof:0.1616533965583637\tand:0.14687667518623362\tto:0.09112534414427519\tbe:0.08638891957445122\twas:0.085258270847408\this:0.07755827435338995\ta:0.07070275961721886\tis:0.05542324100955753\t:0.01\n",
"of:0.32708904764381214\tin:0.27324969799703114\tto:0.06787992770259284\tfor:0.06225208371626658\tby:0.05620308861102228\ton:0.05599412105716457\tand:0.05541883555833023\twith:0.04935603611831035\tthat:0.04255716159546973\t:0.01\n",
"of:0.31491611802736\tand:0.16536446605430496\tto:0.11252692935413486\tin:0.1063618931369843\tthat:0.07686035122460318\tfor:0.07582411655082749\twith:0.06785192445798668\tby:0.03833068973265236\tfrom:0.03196351146114609\t:0.01\n",
"and:0.29620947667043135\tto:0.23634985382622073\tof:0.09130877569252484\tthe:0.08860921924252235\tin:0.07308934636002466\the:0.06448108915535594\tI:0.05232062087953821\twould:0.04675221886701074\thad:0.040879399306371154\t:0.01\n",
"the:0.2629875846501129\tand:0.2399202483069978\tof:0.1266657900677201\tto:0.10140741534988713\tin:0.08186589729119641\ta:0.046940835214446947\tfor:0.04430974322799098\tas:0.04313494920993227\tthat:0.04276753668171557\t:0.01\n",
"he:0.21236976584642633\twho:0.15091908100628376\twhich:0.13423069933853982\tthey:0.1114226506626021\tit:0.10310378443593025\tthat:0.08782466281035546\tI:0.07127377388196328\tthere:0.06045635920866448\tshe:0.058399222809234465\t:0.01\n",
"and:0.32311634278934404\thim:0.09870937808207801\tapplication:0.09552818008284919\twas:0.09108249895321115\tit:0.08441184299744424\tup:0.08234572242630689\tmade:0.07437354501364973\tout:0.0712836163279344\ttime:0.0691488733271823\t:0.01\n",
"of:0.2691367067271336\tand:0.16852322501007622\tin:0.11978612081773768\ton:0.10709962378765099\tfor:0.08796386611534418\tto:0.07760916332610819\tthat:0.07457339097478331\twith:0.053992746199511076\tor:0.03131515704165463\t:0.01\n",
"the:0.2546313750174671\tof:0.2245171975489206\tand:0.22273214733658964\tto:0.09611055457508319\tas:0.04380905710791078\ta:0.04282288775581365\tbe:0.03873950067265366\tin:0.034601109698216385\twas:0.03203617028734499\t:0.01\n",
"his:0.3942776997178689\ther:0.24622435055241731\tthe:0.0944256312611282\ta:0.06284603018933782\tand:0.06261027702771375\tmy:0.05147274098461504\ttheir:0.02706731458161021\tbis:0.02679471406103306\tyour:0.0242812416242757\t:0.01\n",
"the:0.265503121945857\tand:0.14502324934483757\ta:0.12671218166184434\tof:0.118173690774372\tbe:0.08618146888746488\tin:0.06994387033864473\tto:0.0681431699178818\twas:0.05968115913219388\tis:0.05063808799690371\t:0.01\n",
"be:0.3290770194107081\twas:0.21920407550200716\tbeen:0.08740845855681856\twere:0.0834714898094603\tis:0.07267397441341918\tand:0.05926460188887267\the:0.051969532002449866\tare:0.045822248731533996\tI:0.0411085996847302\t:0.01\n",
"the:0.6443968448178707\tThe:0.05932547996299251\tof:0.05328197422419921\ta:0.05290788779302477\tnational:0.043861296924080286\tsaid:0.037995771312099254\tand:0.036784495056410085\ttho:0.034069388047818505\tour:0.027376861861504592\t:0.01\n",
";:0.26982423479029183\tin:0.12421921415382323\tit,:0.10091353863499242\tup:0.08870569427543676\tand:0.08567578122410208\thim:0.08386884354588749\t,:0.080572458917477\tthem,:0.07957011286843131\thim,:0.07665012158955792\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.23741050164724228\tof:0.15103848091896638\tand:0.14364399595667138\tto:0.14131229231086168\tin:0.12100263766684852\tthat:0.056473360649373305\tIn:0.048196505765769906\ton:0.04605185884852737\twas:0.0448703662357392\t:0.01\n",
"and:0.28561690127213024\tto:0.1869204538596067\tthe:0.09775440933890517\tof:0.09496705331980801\tcon-:0.07327995322246086\tre-:0.068197515056845\tthat:0.06699404774274713\tor:0.06380515870951274\twhich:0.05246450747798409\t:0.01\n",
"to:0.208533879342462\tof:0.18951504669950905\tan:0.13337849899918114\tin:0.1187972511315392\tthe:0.11605778121937467\this:0.07596814260876678\ta:0.07153760674493599\tIn:0.03819111108361347\tand:0.03802068217061777\t:0.01\n",
"of:0.3373250044362194\ta:0.25338841548279495\tin:0.1110567368111114\tthe:0.07168122282518605\twith:0.059420627407165576\tand:0.05173292587636725\tfor:0.04995576861263673\tto:0.03269130083717983\tmake:0.022747997711338678\t:0.01\n",
"J:0.2101564496939517\t.:0.18382028648293403\tW:0.13709082582033902\tA:0.1321096987915477\tand:0.09548233609901083\tE:0.06819865530285778\tMrs.:0.0568006574340635\tMrs:0.05418028822917928\tW.:0.0521608021461162\t:0.01\n",
"<s>:0.4847461794472124\tit.:0.13410885396413333\tthem.:0.0838598819980007\tcountry.:0.054345237291286035\ttime.:0.05347833366620371\tyear.:0.04876704460623961\thim.:0.04693669249819056\tday.:0.04509900670525874\tyears.:0.038658769823475096\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"the:0.3488881507126581\tof:0.1413547893567562\this:0.11354814261651444\tand:0.1023599314308023\tto:0.06019430231416081\tfor:0.06016395101248148\tan:0.058466078762894474\tall:0.057228115943645276\ta:0.04779653785008696\t:0.01\n",
"that:0.3294308741046761\tas:0.153244906030312\twhich:0.1337712537162838\tand:0.12314626264849338\tif:0.06773353770831946\tbut:0.05645199182524176\twhat:0.05158178351797282\tbecause:0.03863810312508325\twhen:0.03600128732361744\t:0.01\n",
"the:0.3239667272817299\ta:0.16284640314007814\tof:0.13659688966023228\tand:0.092841661909691\tin:0.08361383682028932\tto:0.06739840211934249\tan:0.05303645784875989\tthat:0.0361609991049448\tby:0.03353862211493208\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.37843598726543887\thim:0.09456583956367422\tbut:0.08511066741165517\treason:0.08212673720014511\tasked:0.08030751739632071\tor:0.06873933064636312\tthem:0.06865985676984579\tit:0.06626182536291327\tpay:0.06579223838364384\t:0.01\n",
"in:0.5757398704455129\tIn:0.15098607067936895\tof:0.05332128425166934\twithout:0.049924613518185584\tto:0.03715130576747943\tand:0.03617470566360262\tfrom:0.03534003846028925\twith:0.034397468336547526\tnot:0.01696464287734449\t:0.01\n",
"will:0.27165267068440196\tto:0.2230987931235231\twould:0.1609609338181935\tshould:0.07617212912472292\tshall:0.07567030736362462\tmay:0.06231357918139416\tnot:0.0545933031392302\tmust:0.03442186249976982\tcan:0.03111642106513966\t:0.01\n",
"the:0.2932814145489466\ta:0.19859611366404784\tand:0.12002089727311983\tof:0.10812473108230912\tfor:0.06944725249582687\tin:0.06417684778195269\tto:0.05668844636791935\tan:0.043124108897969186\tThe:0.03654018788790853\t:0.01\n",
"a:0.3644609779067628\tthe:0.31018201621234043\tto:0.09656430593488483\tand:0.06808567270478816\tas:0.03880586126696391\tvery:0.03503225819502865\tThe:0.027293430157902563\tof:0.026739182242784022\tso:0.022836295378544556\t:0.01\n",
"a:0.31892304758935397\tthe:0.16107072125652994\tof:0.11844188418102775\tand:0.0923233230108748\this:0.06552239488747773\tin:0.06545845027815432\tto:0.06424856819703627\tthat:0.056091901740394565\tI:0.047919708859150464\t:0.01\n",
"be:0.2613572430843675\twas:0.16013952240670964\thave:0.10960430864347745\thas:0.09806862880877963\tbeen:0.08702116485487633\thad:0.08144224492469347\tis:0.08102431665915848\ta:0.05808640323802796\tare:0.05325616737990958\t:0.01\n",
"the:0.3439865230932211\tand:0.1458854115074425\tof:0.1341109670607927\ta:0.07863993025420293\tbe:0.06536689997372996\twas:0.060997355245292144\tto:0.05804495461843789\tin:0.05343860897066103\tis:0.04952934927621987\t:0.01\n",
"the:0.3546886227726201\tof:0.10981589215745212\tand:0.10344790998847027\tan:0.08656519083341876\thave:0.08067500993778615\tThe:0.0682791895189363\ttheir:0.06698719119548346\this:0.06579475445483511\tbe:0.05374623914099767\t:0.01\n",
"and:0.3359723945695816\tfact:0.1316189254902583\tsaid:0.10667449643560811\tso:0.08713045707286649\tis:0.07379644658727269\tsay:0.0657800671011853\twas:0.06486039920086528\thim:0.06351804887687972\tfound:0.06064876466548251\t:0.01\n",
"his:0.2805017924642567\ther:0.1674845727335896\ttheir:0.1592755738882358\tthe:0.12192133181799668\tour:0.07625765310066375\tmy:0.06181872916025513\ta:0.05961812110631899\tyour:0.03414407009190044\tor:0.028978155636782885\t:0.01\n",
"and:0.3498291916416472\tis:0.17139349256221306\twas:0.14578056088813515\tbut:0.09183943748980652\tare:0.07274393635657897\tHe:0.053330412713739055\twere:0.05064740523667609\thas:0.03125346912178746\twill:0.02318209398941645\t:0.01\n",
"due:0.17000058877254792\tin:0.1562863953699291\tcosts:0.1382531295690939\tland:0.106942652996951\tlife:0.08893574982867124\tpower:0.08754682779425606\t;:0.0834195443831985\ttime:0.0807679948102965\tStates:0.07784711647505571\t:0.01\n",
"filled:0.22226362353547632\tand:0.20874790130255824\tcovered:0.11604343578112274\ttogether:0.09725907236794047\tcharged:0.08370105478821518\tup:0.07638978347485154\tin:0.06848752447380968\tthem:0.06148304815559451\tit:0.05562455612043131\t:0.01\n",
"of:0.19130463767822078\tand:0.18202609416294604\tthe:0.16756123745623605\tto:0.1004442971022553\ta:0.09372073103956835\tin:0.07330459909817671\t<s>:0.06550722009661952\tI:0.06024881199851979\t1:0.055882371367457245\t:0.01\n",
"the:0.3769056850373054\tof:0.20896427800799208\ta:0.12023311617098979\tin:0.08164515286698856\tby:0.048844015293449616\tat:0.04676588115094426\tfor:0.044958164142050006\tand:0.03478885194958528\this:0.026894855380694988\t:0.01\n",
"the:0.3762318171392101\tand:0.15576842819659872\ta:0.12803408907287184\tof:0.09818430037828407\tin:0.06717673233107657\tto:0.06648813611466078\tbe:0.03754412745955579\tat:0.032252028644523395\tor:0.02832034066321872\t:0.01\n",
"the:0.42264024967728814\ta:0.17288606264754322\tof:0.146589427390797\tto:0.07916988794753192\tand:0.05218887739612497\twith:0.039584986185991156\tfor:0.0322654285494121\ttho:0.022561371386120643\ton:0.022113708819190697\t:0.01\n",
"that:0.2234357277432803\tand:0.18611042545248058\tby:0.14514760974134402\tto:0.1363106652941377\tof:0.12162089009086148\tsaid:0.050825233554307514\t<s>:0.04839230795485743\twith:0.04024740370414216\tas:0.037909736464588874\t:0.01\n",
"of:0.37708313170102586\tto:0.20997045084102614\tby:0.07691459287638348\tthat:0.07492732437062806\tand:0.06280671014885386\twith:0.05669819086859722\tin:0.05285029385369187\tfrom:0.04115970575878996\tfor:0.03758959958100363\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"time:0.19980617221917837\tin:0.16918178017062308\tup:0.0993642605683788\tright:0.09822803768624534\tgood:0.09705749898074055\tout:0.08843593286488086\thundred:0.083241287561679\tdull:0.07870065633094468\ton:0.07598437361732924\t:0.01\n",
"in:0.19884735091664044\tof:0.19151748848265465\tfor:0.14647845964854728\tto:0.10595812897837946\tat:0.09998126243165793\twith:0.0735345460624122\tand:0.06670559939330972\tIn:0.05655667713091853\tsuch:0.05042048695547995\t:0.01\n",
";:0.18300319277613822\tin:0.18257629932383762\t,:0.11232142205472151\thim:0.10268976228377968\tup:0.09423688024337112\tit:0.08876919098604623\t.:0.07847133337971973\tone:0.07447020261740503\thundred:0.07346171633498079\t:0.01\n",
"he:0.20508252698550608\tand:0.2041892752429233\tbe:0.12182462595359538\twho:0.11159427771186399\tit:0.08818912139829839\tI:0.07252629844343181\tHe:0.06892263448730794\tshe:0.060748968231049076\tthey:0.05692227154602402\t:0.01\n",
"came:0.1523191604179997\tmade:0.15036812380465048\tput:0.1454353232249268\ttaken:0.12283160295967452\tset:0.09174857814565936\tpicked:0.08855919698345079\twent:0.08542802692168527\tit:0.07753339866851137\tcome:0.07577658887344163\t:0.01\n",
"was:0.17966764566261528\tbe:0.14376765108469966\thave:0.12996989404574558\tbeen:0.11417836159459245\thad:0.1108687483700173\the:0.10998570347242904\tand:0.08127452987111008\thas:0.06176976755373612\twere:0.058517698345054506\t:0.01\n",
"Resolved,:0.36993674320406655\tenacted,:0.17179762260417894\tenacted.:0.10528155102087353\t<s>:0.0956954360798559\tProvided,:0.06384724749359434\t2.:0.06160552924613037\t1.:0.0508786959181047\t4.:0.0386072267049102\tit.:0.03234994772828538\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.25403229838461605\tin:0.2370918992149811\ton:0.11622995310491588\tand:0.08929848267236239\tat:0.08119847910115353\tIn:0.058437106025329984\twith:0.058389522080383935\tis:0.04778455679886134\twas:0.0475377026173958\t:0.01\n",
"this:0.3937779144686792\tthe:0.34458786180278894\tsaid:0.1052167688122547\ta:0.05521541801108866\tYork:0.024340821902217986\tthat:0.021945780981884773\ttho:0.0182257919924272\tof:0.014372334499195321\this:0.012317307529463247\t:0.01\n",
"the:0.16938203582781092\ta:0.13296620175446924\tthree:0.1293661425061454\tthousand:0.11161491628777481\ttwo:0.10424751891336564\tsix:0.09949892848516563\tfew:0.09122217076113384\tseveral:0.07908689243693535\thundred:0.07261519302719924\t:0.01\n",
"be:0.22688769533433342\tbeen:0.20553910212022836\twas:0.2024998579895623\twere:0.0916344658788493\tare:0.08518922653995209\tis:0.062302782217645535\tand:0.056109917704599874\tresolution:0.030208611957893722\tbeing:0.029628340256935545\t:0.01\n",
"of:0.2978271839266243\tfor:0.166629757351961\thalf:0.12187841820566377\tin:0.09443060258245409\tand:0.08839086336349329\tto:0.06172068665783434\tas:0.057920626812837134\twas:0.057456142352772445\tis:0.04374571874635963\t:0.01\n",
"the:0.35231796464983606\tof:0.3146151036437194\tin:0.07453742609748137\tfor:0.051127116085492384\tby:0.0479616837732203\tto:0.04352550545972874\tand:0.03994028590136901\twith:0.03341468556149377\tfrom:0.032560228827658994\t:0.01\n",
"number:0.3128743903148122\tplace:0.09970327142010625\tline:0.09806502904278927\tpounds:0.09378688582127291\tbushels:0.09205268227085328\tpoint:0.08745474324020625\tfull:0.07276209050657834\tday:0.06706042465971501\tmeans:0.0662404827236665\t:0.01\n",
"of:0.16689876246059102\tto:0.1659837772645449\tin:0.14466538399021744\ton:0.10661469003106396\tby:0.10094519340125459\tand:0.09024129128291737\tis:0.07854382990982334\tfor:0.07295511983706512\tthat:0.0631519518225222\t:0.01\n",
"and:0.19009001366917605\tthe:0.18064764425829336\twas:0.16515084504599598\tare:0.0951817070805586\ta:0.09419356802792761\twere:0.07385707794787066\tis:0.07288184367907834\tby:0.059679889807419395\tbeen:0.05831741048367997\t:0.01\n",
"time:0.13064218374537684\tup:0.12573595628147205\thim:0.11330701295672524\thim,:0.11054501382843579\tit,:0.10942532644676572\t;:0.10553097932343962\tday:0.10256164346852442\tyears,:0.09614516788333727\tnight:0.09610671606592308\t:0.01\n",
"it,:0.14655437048479533\t;:0.14651261782270228\tin:0.1279986539089979\thim:0.11899667414945188\thim,:0.10719169468918927\tit:0.09551640005551054\tme:0.08715278686365513\tme,:0.08200452814831055\tthem,:0.07807227387738713\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"to:0.30596795450205916\tI:0.147592968665063\twe:0.11962875551364648\twould:0.09761429041036046\tthey:0.0920345917273465\twill:0.08388403432101545\twho:0.05098722922168975\tWe:0.04671755826788209\tyou:0.04557261737093714\t:0.01\n",
"the:0.22474110874305311\tto:0.21163047591653383\tand:0.16440436934190822\tof:0.15232532812671112\tin:0.07489615808393242\tnot:0.04572174599547668\tI:0.03958829247081032\ta:0.03849676889680186\tor:0.03819575242477245\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"the:0.2529199342654884\tof:0.22614730499998043\tin:0.21525723520323806\tto:0.07644665803712172\tIn:0.054633659433317494\tfrom:0.051691489256650854\tand:0.03925713263725379\tThe:0.03842110928588035\tfor:0.03522547688106888\t:0.01\n",
"the:0.7026766655728051\ta:0.08299081897799619\tThe:0.06025991747436177\tand:0.04346419077480182\ttho:0.03953983176414604\tlarge:0.01822044012091094\ttbe:0.017174942162671816\tin:0.013800163871228373\tfirst:0.011873029281078036\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"and:0.1826657805719094\tit:0.14673041733443457\the:0.12084498470505321\tthey:0.11168085764010535\tyou:0.09834880363908075\twhich:0.09822341114286422\tI:0.08042463389924823\tthat:0.07988786818806527\tIt:0.07119324287923894\t:0.01\n",
"and:0.27896776847231236\thim:0.165339413698242\twas:0.11226980831190811\tman:0.096438896839694\tit:0.09281578859421534\tup:0.06562583647316447\tthat:0.0651909040662511\tfound:0.05717470234619706\tmade:0.05617688119801571\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.35315218645721114\tthat:0.11835483459355085\tit:0.1153408044233801\tfound:0.07013930176251786\tmade:0.06891855340915606\tis:0.06851004504571005\thim:0.06692019640895636\twas:0.064989940361327\tbut:0.06367413753819051\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"and:0.3079069995791492\tof:0.15703359043111892\tthe:0.09695346957938135\tbe:0.08008775556196854\ta:0.07801796281644585\tin:0.06960382693033287\tis:0.06885254681667448\twas:0.06803906530008293\the:0.0635047829848459\t:0.01\n",
"to:0.3548403184805539\twill:0.1333168021789357\twould:0.12122784519095127\twe:0.08108199688603294\tshall:0.06834708183527094\tI:0.06540152298117494\tand:0.057751847486967135\tshould:0.05448285904832425\tnot:0.053549725911788845\t:0.01\n",
"the:0.25802489168648585\this:0.21968838579577507\ther:0.11011416749601136\tmy:0.10898113689396405\tThe:0.08659804639932284\tHis:0.06828077716472944\tMy:0.06341509235461151\tand:0.037449291180822936\tof:0.037448211028276925\t:0.01\n",
"an:0.40418182963888716\tthe:0.2089066782693091\tto:0.12313630983105688\twill:0.06286053468565116\ta:0.0506572545110514\tof:0.043880885614346436\tand:0.03755293005073974\tThe:0.03437752541006744\tAn:0.024446051988890674\t:0.01\n",
"that:0.24677572073761153\tif:0.17303966932997317\tas:0.13424327547427195\tand:0.11704602122935767\twhen:0.10530066548883969\twhich:0.0783597645458745\tbut:0.05698351146838483\twhere:0.041169871179002095\tIf:0.037081500546684604\t:0.01\n",
"the:0.6527331634610065\tcorporate:0.201227336900061\ttho:0.03881249879634909\tThe:0.028531133453428163\ta:0.02263522899646332\ttbe:0.01572850950187536\tfirst:0.01262343560633708\tporate:0.009325891112627624\tpresent:0.008382802171851923\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"and:0.44994873171136046\tthat:0.17761565454107683\tbut:0.11074461812330363\ttime:0.08868371356291876\tBut:0.03795096165203054\tago,:0.03420159926385981\tAnd:0.03413687484940691\tme:0.030869751557148335\tmorning:0.02584809473889484\t:0.01\n",
"hundred:0.309510995331569\thereditaments:0.12015410008215749\ttime:0.10507473122521943\tdollars:0.08323057096269393\tup:0.07664083936594931\tmen:0.07532533931102367\tout:0.07469796584324143\tinterest:0.07273009168800572\tmade:0.07263536619013998\t:0.01\n",
"of:0.41231413698441366\tto:0.10581462476797719\tand:0.10449061363256326\tthat:0.09335401726106798\tin:0.08158366223362018\tall:0.05582872335151423\tby:0.0550089750495136\tfor:0.047846245915180274\ton:0.03375900080414964\t:0.01\n",
"the:0.2991097760115331\testi-:0.1681902856653378\tof:0.11550658478930254\ta:0.10532077010702035\tthis:0.08058117427673166\tinti-:0.06276419868756099\tto:0.05892511031123389\tany:0.05266560903637303\tsaid:0.04693649111490666\t:0.01\n",
"of:0.4307202305448516\tin:0.1366266394081457\tto:0.11609508575888125\tand:0.06940172567006951\tthat:0.06682949978335008\ton:0.049322688811680275\tfor:0.04382105725242178\twith:0.04183246092021816\tby:0.0353506118503816\t:0.01\n",
"of:0.2210614938410365\tand:0.1741006502435473\tby:0.16793283668707462\tto:0.1599005810214749\t<s>:0.0656357252206312\tthe:0.06345433566091002\ta:0.06046283037265945\tfrom:0.038876281920594835\tsaid:0.03857526503207124\t:0.01\n",
"the:0.28865923124454435\tof:0.2068754207559842\ta:0.11749461914510359\tto:0.11415910449325448\tin:0.10935305850991252\tand:0.05924931810128215\tfor:0.04303354184472689\ton:0.028921939345004144\tThe:0.022253766560187606\t:0.01\n",
"the:0.2909254367442219\ta:0.1833228261278791\tof:0.14428875362004925\tand:0.09841057780662715\tto:0.09143517129578368\tin:0.0666161198507835\tMr.:0.046008746844666305\tfor:0.034837369315433256\tThe:0.034154998394555956\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2100242179743842\tis:0.12134026501651778\tin:0.11305932376937369\tto:0.10903024752415862\twas:0.10573307653868708\tand:0.09992951454917966\twith:0.08532045025238197\tas:0.07839193680703785\tbe:0.06717096756827928\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.2269218532801222\tto:0.140030321864563\twith:0.1261368968031589\tis:0.11254613251130309\tand:0.0864403258706423\tby:0.08223676661196123\tin:0.07915159794019339\tfor:0.06839764657515257\twas:0.06813845854290335\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.3339968210933673\tnot:0.16452499078931296\tto:0.10484912575114956\twait:0.08852330015339838\ton:0.06862514937805389\tin:0.0656760778039206\tup:0.0583119904746712\tof:0.05819149403510506\tthat:0.04730105052102106\t:0.01\n",
"the:0.5215899291799826\tof:0.09709758729737951\tin:0.07644740982342049\tThe:0.06162613163903939\tor:0.05793441401384304\tand:0.05191172215219521\tfor:0.04217595534786699\tall:0.041782840676252576\ttho:0.03943400987002027\t:0.01\n",
"for:0.25425475245282964\tor:0.16071420572958645\tabout:0.10728742964725758\tpast:0.09620536378566949\tof:0.09052404190611889\tlast:0.08785650094199779\tand:0.08521337895542277\tthe:0.06288080996406478\tFor:0.045063516617052615\t:0.01\n",
"and:0.1946721404649524\tthe:0.17103266571026138\tof:0.15520893330939814\tthence:0.10485886581247716\tNo.:0.07864972248391941\t.:0.07678705622421914\tat:0.07667679873289393\tto:0.07657680884492753\tin:0.05553700841695097\t:0.01\n",
"the:0.3134938197137556\ta:0.24505374109639058\tof:0.16766890774915022\tand:0.1082659990076546\twith:0.03913469396269004\tThe:0.036596173595774655\this:0.027601720967534004\tby:0.027218489594933202\tin:0.02496645431211711\t:0.01\n",
"of:0.40092915488336084\tand:0.15787938785376307\tthat:0.13172800217994882\tall:0.0757116967566641\tby:0.063952110456705\tto:0.046829009994771985\tfor:0.04340321118415379\twith:0.038338591463918666\tas:0.031228835226713603\t:0.01\n",
"and:0.23508080358669195\twas:0.17685867914253156\tis:0.09953813720576171\tbe:0.09327310336320531\tput:0.07973531934282714\tare:0.07970109410373706\tbeen:0.07949849798446341\tcame:0.07621526330691016\twere:0.07009910196387162\t:0.01\n",
"of:0.3490124854372051\tand:0.1510237090476072\tin:0.14043569227794847\tthat:0.1307424858986167\tfor:0.07626604288645794\tto:0.041501430834301564\ton:0.03682615937123134\tbut:0.0333280556738184\tfrom:0.030863938572813217\t:0.01\n",
"to:0.27335621488650336\twill:0.18768277140807535\tshall:0.11720930946409908\tmay:0.10753180577134468\tshould:0.09301321337593126\twould:0.0762881326646077\tmust:0.057420641190441886\tcan:0.0425325012040699\tnot:0.034965410034926696\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.2599093666606724\tin:0.20246974730303874\tto:0.15744141578004137\tfor:0.10118248239172323\twith:0.07036258043336965\tand:0.06955049289156741\tat:0.051666781009183066\tby:0.039255065096251186\tIn:0.03816206843415298\t:0.01\n",
"Mutual:0.48623114331185807\tof:0.16201008179204238\tthe:0.129153779911534\t<s>:0.06526163560365916\tand:0.04644282210207759\tat:0.03523962519714397\tState:0.024894799686965313\ta:0.022147969724013162\tin:0.018618142670706432\t:0.01\n",
"he:0.39153043781291325\tI:0.16534888223314728\tHe:0.11999225618329017\tand:0.09908397412231411\tshe:0.06538045855709239\tIt:0.050279680386674304\tit:0.04426940041733429\twhich:0.027501707634310216\tthey:0.026613202652923742\t:0.01\n",
"to:0.6324216708253344\twill:0.0776022454192874\tand:0.060440739295192135\twould:0.05927656775404374\tnot:0.040165095378014076\tthey:0.03551512870596397\tyou:0.03027663566865274\tI:0.029427122526643586\twe:0.02487479442686806\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"in:0.4235280305643709\tof:0.2558578303706808\tIn:0.09073148965270443\tto:0.08269033720331626\tfor:0.051636981882844955\tand:0.024173228739032413\tby:0.02308793910398463\ton:0.01964700439585367\tfrom:0.0186471580872119\t:0.01\n",
".:0.23885881477763438\tJ.:0.13064141176339034\tMrs.:0.12086618605402671\tW.:0.10940192464589404\tD.:0.1015136782949876\tA.:0.09543158754629698\tC.:0.07153194255682507\tS.:0.06641000266395872\tMr.:0.05534445169698625\t:0.01\n",
"and:0.23089387572846115\tto:0.17178883763977174\tmatter:0.12728603975896688\tof:0.11899762385397775\tknow:0.0821750576156059\tsee:0.08068266174700074\tis:0.061994429381202656\tin:0.06182385159369869\tor:0.0543576226813143\t:0.01\n",
"miles:0.24773673116181916\tand:0.12040443740605976\taway:0.12032689652036756\tfeet:0.10696377346227547\tdown:0.09701659542233468\tfar:0.07898561028954795\thim:0.07360310670578714\tfree:0.07312611534470222\tup:0.07183673368710608\t:0.01\n",
"of:0.32364221694587053\tto:0.1571706490304156\tin:0.1316667805232421\tfor:0.08146371590104425\tthat:0.07997859708419178\tand:0.07035843170719414\tby:0.05810140711051619\twith:0.04504374352968455\tis:0.04257445816784089\t:0.01\n",
"the:0.3298927299907812\ta:0.2875723419642981\tof:0.14226738958186602\tand:0.05524371915006144\tin:0.048318501875079294\ton:0.035385853963505874\tto:0.03276983430927218\tThe:0.03214801053025859\tthat:0.02640161863487727\t:0.01\n",
"the:0.5014032695207907\teach:0.2800568519518406\tany:0.08988941203855888\tno:0.03631798001668547\tof:0.018838321845367642\ta:0.01776459038274553\tan-:0.015945150038785758\tan:0.015507985467238153\ttho:0.014276438737987326\t:0.01\n",
"and:0.19141795777657655\thim:0.11458167999070708\tright:0.11320016266600093\tnot:0.10956260499120021\tis:0.104675117302231\twas:0.09735100489691612\tas:0.0924744917833147\tthem:0.08518072682851308\tdo:0.08155625376454037\t:0.01\n",
"It:0.49750080843755007\tit:0.21813202304050677\twhich:0.06318627836977658\tthere:0.058503505912710405\tthat:0.04998544278183894\tThere:0.0335093463928405\the:0.028524610326075426\tThis:0.023116075407822973\twhat:0.017541909330878337\t:0.01\n",
"I:0.22791771630559712\twe:0.13569660988480176\twho:0.13060973002967416\tthey:0.11652754126691303\twould:0.11368785577522811\tto:0.0942012455231101\tWe:0.07206167874946996\tyou:0.058417778785024764\tnot:0.04087984368018093\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"together:0.2441199266666228\tand:0.23451481476581137\tcovered:0.10465961337140395\tfilled:0.08242810025736753\tthence:0.07092467806512888\tcharged:0.06893004775480285\tconnection:0.06688859900741381\tit:0.06041322913073279\tup:0.057120990980716026\t:0.01\n",
"and:0.2735530001583401\tready:0.1573737665709107\tcandidate:0.10607221038789338\tdemand:0.09743826276693944\tcalled:0.07886090329482458\tcall:0.07587350423445106\tup:0.07321188759486692\tused:0.06490900340655843\thim:0.06270746158521538\t:0.01\n",
"<s>:0.5510687378888615\tit.:0.08512623514853772\tthem.:0.084115151128874\ttime.:0.05427840009271459\tyear.:0.04653198723407419\t.:0.04628986090259489\tcountry.:0.04280146530321269\thim.:0.04011495435180903\tday.:0.03967320794932151\t:0.01\n",
"it:0.3521748995993552\tIt:0.2727899491596311\twhich:0.06205182583842351\tand:0.06071093814659448\tThis:0.05663506219973648\tthis:0.04987385511968029\the:0.04567242640560236\tthere:0.04540694365833785\tthat:0.04468409987263872\t:0.01\n",
"the:0.3632075376617625\ttoo:0.19473791667807341\tof:0.12662982816501692\tand:0.07703548154412579\ta:0.07303577969515783\this:0.04037870027794306\tas:0.03880226454030153\tfor:0.0382388819176954\tuntil:0.0379336095199235\t:0.01\n",
"the:0.34825423155363944\tof:0.16617095001393953\tand:0.11286310840258942\tthat:0.09950163101593293\tMr.:0.069192427731586\tThe:0.06747202200814982\ta:0.0641964283367045\tthis:0.03296247283026255\tor:0.02938672810719585\t:0.01\n",
"to:0.37173011858554755\tthe:0.2010072938047187\tand:0.14878023392894726\tfor:0.06351594207104518\tof:0.062305501573518635\ttheir:0.04586581778794047\twith:0.03764387806475779\tin:0.03091008085636262\ta:0.02824113332716178\t:0.01\n",
"was:0.30944997422537196\tbe:0.16875005505589621\tbeen:0.12761929518001625\tis:0.10575183733776854\twere:0.08725070011259589\tso:0.07266703342145815\tare:0.06772631284501944\tbeing:0.025637387484658766\tand:0.025147404337214734\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"a:0.5464779153607113\tthe:0.2644730208819107\tThe:0.04432179841146516\tA:0.03770514307012664\tof:0.028905765590722072\this:0.02643261554329754\ttho:0.014189411878872979\tin:0.014163965094984294\tour:0.013330364167909205\t:0.01\n",
"at:0.44659958304188835\tfor:0.13512240030818584\tof:0.09415066394754064\tto:0.07954829232875775\tand:0.05386871356290936\tAt:0.05022258079577466\tduring:0.04413469830326203\tthat:0.043380736563209045\tin:0.04297233114847239\t:0.01\n",
"from:0.329391742828446\tof:0.14418177269198482\tin:0.13162344210120452\tat:0.11124255119911045\tand:0.08727932546614585\tIn:0.05763502414258932\tto:0.049946535594965265\tfor:0.04425990810486629\twith:0.03443969787068745\t:0.01\n",
"the:0.2949000761468014\tof:0.2592268909910863\ta:0.11124472757010143\tand:0.06639076261961865\tin:0.06606835217742849\tto:0.06461364488919405\tfor:0.04664874354598948\tthat:0.04111063780872951\tby:0.03979616425105077\t:0.01\n",
"the:0.15315417542670548\tof:0.1474619205254358\tand:0.1434895081163942\tbe:0.1380101494701949\tto:0.11257930602342806\twas:0.10680730325663455\tis:0.07750856055039425\tor:0.0558112570911162\tare:0.05517781953969663\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"of:0.3915557446164883\tand:0.12935391603802668\twith:0.11144077946122992\tto:0.07508259836882927\tin:0.07039196677474609\tfor:0.0610665662262644\tis:0.05484948001565705\tthat:0.05044088316355347\ton:0.04581806533520491\t:0.01\n",
"a:0.5435363018629247\tper:0.12637319792911667\tthe:0.07164481003465091\tin:0.06958757209699651\tand:0.06856549378721755\tto:0.036041269425377734\tIn:0.026132888668148512\tof:0.0247160007756713\tone:0.023402465419895973\t:0.01\n",
"the:0.6477545163161716\tand:0.12069452931849385\twith:0.0683713204088583\tThe:0.03246732990024456\tan:0.02900429461820884\tof:0.028302292610854207\ttho:0.024970505404440003\tor:0.02189535331067626\tby:0.01653985811205211\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"that:0.2795537149247718\tand:0.16784669293687343\twhich:0.13288961414759906\tas:0.12870312394288416\tbut:0.06747648447971248\tif:0.06495889756531509\twhen:0.05641663027445595\twhere:0.0503865815579276\tbecause:0.04176826017046037\t:0.01\n",
"him.:0.25763587876868305\t<s>:0.17838326636023988\tit.:0.13513861560982446\tthem.:0.08435174230787197\tyears.:0.08157928704874974\tlife.:0.06866897366994776\ttime.:0.06549646569595455\thimself.:0.06396853262162888\tman.:0.05477723791709963\t:0.01\n",
"of:0.29363256894459416\tin:0.17526010112477716\tand:0.14269342929166312\tto:0.11051685604638978\ton:0.08336113284097382\twith:0.05608901430539143\tby:0.04695693161969392\tIn:0.04313311767249603\tat:0.03835684815402052\t:0.01\n",
"and:0.1598857938911757\table:0.12590194039783267\torder:0.1256679304807483\thim:0.1101909414478911\tright:0.10337941085815852\tenough:0.0939515503330811\thad:0.09347896527654151\tis:0.09328699717854569\twilling:0.08425647013602537\t:0.01\n",
"one:0.3896011381416399\ta:0.17519152028631546\ttwo:0.11988776513487401\tthree:0.09503525138681848\tfive:0.059900604546314504\tfour:0.051529710853496516\tOne:0.03754732163753431\tsix:0.03263566853955245\tseveral:0.02867101947345439\t:0.01\n",
"the:0.8199097854323046\ta:0.05062988613919024\tThe:0.039743142467081334\ttho:0.03476856847151243\this:0.017074782513001256\ttbe:0.010138457389273301\tfull:0.008348643124860796\tfirm:0.004869653353663713\ttheir:0.00451708110911218\t:0.01\n",
"thousand:0.29822753815171954\thundred:0.25495838030957546\tof:0.11473747987625867\tmillion:0.07947236613530156\tfifty:0.07913002970938916\tfive:0.04521664920415848\tten:0.04417397426584653\ttwo:0.040413885998391484\tbillion:0.03366969634935904\t:0.01\n",
"in:0.24333994743612922\tof:0.18871067140801695\tthe:0.14254258973892459\tand:0.10760876324558527\tfor:0.09174081455919122\ta:0.06366595919272895\tto:0.061841865908333744\tIn:0.05733705309984939\twas:0.03321233541124056\t:0.01\n",
"and:0.2802179654686674\ttogether:0.17581662481571086\tcovered:0.10720042995908446\thim:0.0945742991305398\tup:0.08880677792452797\tit:0.06615739106357521\tmet:0.06358405713054323\tthem:0.061624174380125664\tbut:0.05201828012722528\t:0.01\n",
"the:0.22044468060288389\ta:0.17763080572070472\this:0.15697565192385846\ther:0.12034739421946293\tat:0.08852438932848841\tand:0.07051750751788459\ttheir:0.05809396825035558\tof:0.055997608020419136\tfor:0.041467994415942254\t:0.01\n",
"be:0.2134620562026483\tis:0.19497675566671932\twas:0.1713341118120119\tare:0.08349155557886705\tbeen:0.07855217188264854\tI:0.06894237009536784\tand:0.06513614802988817\twere:0.061285685442328486\the:0.05281914528952038\t:0.01\n",
"nothing:0.2641247484238648\tis:0.17759252308164133\t;:0.1538993015085438\tanything:0.0898394300592201\tit,:0.0731564363533971\twas:0.06134541862246875\tand:0.05812399575675912\tof:0.05727063838803619\tare:0.05464750780606891\t:0.01\n",
"the:0.22766359616564438\tand:0.18063286072609452\tof:0.14262422951970857\tto:0.11710430442474838\ta:0.09263284590627294\tfor:0.0749641950310016\tin:0.060729191080171906\tbe:0.04812131362141648\tis:0.04552746352494118\t:0.01\n",
"that:0.20702571008318724\tand:0.1977258918944837\tis:0.17576300467859157\twas:0.13011129069383504\tbut:0.07896961818988923\thad:0.0627738381981591\thave:0.0521192167785041\tbe:0.04888460668624861\twith:0.03662682279710155\t:0.01\n",
"the:0.3229089781389671\tof:0.20029674855822047\tand:0.14752001001695184\tto:0.07326618056665847\tThe:0.0671563513507734\ta:0.06387375947176595\tthat:0.04355326888135818\twhich:0.04174431002465928\tor:0.02968039299064523\t:0.01\n",
"and:0.19051943986217015\tof:0.1720639792232348\tas:0.16747509158597676\tthe:0.13450047028301987\tto:0.09096766000852802\tbe:0.06575526900119626\tsuch:0.06334143169216884\tmuch:0.055005516582227666\tin:0.05037114176147772\t:0.01\n",
"well:0.21955149374142727\tknown:0.18951305156917167\tand:0.15690538091025333\tfar:0.09242064711844897\tsoon:0.08595734317411527\tsuch:0.07906133021899348\tjust:0.05928608936319597\tlong:0.055847839836393846\tmuch:0.051456824068000145\t:0.01\n",
"and:0.21148373426422987\tthe:0.20283711921122868\tof:0.11347218795975528\tto:0.10113765799027087\tbe:0.09302877310258988\tin:0.08551388723821418\tor:0.06652750414825546\tfor:0.061377765336550316\the:0.054621370748905385\t:0.01\n",
"the:0.5330819960781544\tThe:0.11941560719509543\tof:0.1049786505276506\ttheir:0.04643165150166848\tour:0.045553572043457245\tthese:0.041717080203693566\tand:0.038579210245564384\ttho:0.03014495339309272\tsuch:0.030097278811623027\t:0.01\n",
"of:0.26758263234421126\tthe:0.16078958567201318\tand:0.14361462355436952\tto:0.14258284505293312\ton:0.061105004330222916\tthat:0.06102817584677708\tfrom:0.06092771694530299\tin:0.04743569216031018\tby:0.044933724093859706\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.3998300744173473\tand:0.2272392901734208\tof:0.08264485741165764\tor:0.05508680701423621\ttheir:0.05281826589716984\ther:0.04498483308334825\this:0.04475504222275189\tan:0.04399436476719462\tfor:0.0386464650128735\t:0.01\n",
"have:0.35328946251732735\thas:0.26744366091419525\thad:0.24268234427973348\tnot:0.03551493986454824\thaving:0.03354582231468265\tbad:0.016242173594263446\tever:0.014998571799669675\tnever:0.014904747853835004\thavo:0.011378276861744826\t:0.01\n",
"and:0.2786288504792098\ta:0.1433250358669638\tthe:0.14097810827254073\tof:0.09898452433593942\tthat:0.0850767114144923\tto:0.07508324036942374\twhich:0.07229786110995177\tor:0.056632655659313205\tall:0.03899301249216515\t:0.01\n",
"and:0.23039828720326325\the:0.22934873788594073\tit:0.1381403141278375\twho:0.11752060201413249\tIt:0.06511480689957831\tHe:0.06313646884550944\tthat:0.053545254387785624\tshe:0.046867088605204846\twhich:0.04592844003074776\t:0.01\n",
"is:0.16709356513222995\twith:0.16134198936254526\tof:0.15641961627145623\twas:0.12220855008521954\tto:0.0932920381712428\tand:0.08982900598396468\tby:0.0704934001965011\tfor:0.06664715487971255\tin:0.06267467991712795\t:0.01\n",
"and:0.22867817179891042\the:0.2286428891007427\tHe:0.10469987641169165\tI:0.0904061124438626\twho:0.08977992107143329\thave:0.06938694586894913\tshe:0.06299805060436554\tthey:0.05842519866569977\thad:0.05698283403434492\t:0.01\n",
"and:0.17315597143452863\tof:0.16637869625842683\tthe:0.15683063197646174\tat:0.14298704574166834\tto:0.13060059258742768\tin:0.08634496767850208\ton:0.05189382024348472\ta:0.050328885237990284\tfor:0.031479388841509595\t:0.01\n",
"of:0.2582561825937394\tto:0.13585046369155654\tfor:0.13303188488606682\tand:0.12994792158592855\tin:0.09376087026291298\twith:0.07980722825214887\tthat:0.06519229104941107\tby:0.05162538926645721\tall:0.042527768411778626\t:0.01\n",
"of:0.21667236460043998\tthe:0.21657452178341624\tand:0.14979057218409078\tto:0.10478093414853785\tnorth:0.08252582471967262\tsouth:0.08126782982369034\tat:0.05286369204502646\ta:0.04928871518324271\ton:0.03623554551188302\t:0.01\n",
"to:0.16889050230180563\tand:0.15891446437031911\tof:0.15884397483632715\tin:0.13518036410011175\twas:0.09121132328425902\tthe:0.07807638466717513\tis:0.07460290674742219\tbe:0.06880460638737085\tfor:0.05547547330520909\t:0.01\n",
"Railroad:0.23755130301922162\tMining:0.2033795414894667\tRailway:0.17270833252711434\tTrust:0.10847750120097628\tCoal:0.0636683348323206\tthe:0.06078158129074567\tLumber:0.05013990430331614\tInsurance:0.04702320504684259\tManufacturing:0.04627029628999606\t:0.01\n",
"who:0.19034416578153818\the:0.15980527780101364\tI:0.15722124885591085\tthey:0.11958231074593748\tand:0.105244364591451\thad:0.07808236730931911\twe:0.0650537755671802\tshe:0.06397846862413924\thave:0.05068802072351027\t:0.01\n",
"sale:0.17254913779047273\tinterest:0.1462738999015984\tand:0.1312201435618795\testate:0.11209651497806115\tpremises:0.10278845579037955\tCourt:0.08876915475604061\tbe:0.07976150446059471\tline:0.07906632782439003\tit:0.07747486093658333\t:0.01\n",
"Mr.:0.4340868189789594\tof:0.14917334328267037\tthe:0.08294409665070814\t.:0.07211211694561248\tMrs.:0.0697791785006478\tand:0.05442260546080191\tby:0.04526965629331167\tDr.:0.04118915902559312\tto:0.04102302486169503\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.4633982961154053\ta:0.1913082138716986\tThe:0.06425288763593119\tsome:0.056453838068569316\tall:0.050380549716988965\tand:0.047506756999806506\tof:0.04540318405553122\this:0.03612080810036362\tin:0.03517546543570516\t:0.01\n",
"of:0.17170575657298137\tthe:0.16600528511302798\tand:0.14906167111747806\ta:0.12851551270446532\tto:0.1131525545334105\tfor:0.09257986881500266\tbe:0.06283142112290467\tin:0.05822793352522526\twas:0.04791999649550413\t:0.01\n",
"the:0.391404271733033\tand:0.16572796127238826\tof:0.1479668946544385\tThe:0.08969244899382996\tthese:0.047204586800515924\tthat:0.04695328111326683\tin:0.038444374680263536\tto:0.0323271190940047\ta:0.03027906165825925\t:0.01\n",
"of:0.21206553693735367\tthe:0.18687278776870683\tand:0.16759733436898436\tto:0.10922686137392804\tby:0.08974509749192143\tMrs.:0.07798876143759252\t.:0.061666232056777216\t<s>:0.050441989308977524\twas:0.034395399255758484\t:0.01\n",
"be:0.23632398146666755\twas:0.19124750191202972\tis:0.14028068106176755\tare:0.12695633088334107\tbeen:0.0912363209751462\twere:0.09102078529842428\thad:0.047756223833861015\thave:0.033407952421884234\tbo:0.03177022214687847\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"a:0.43488202510361645\tthe:0.22977638894583546\tto:0.11317172479352339\tat:0.08123868557743395\tof:0.05435505054204497\tin:0.022560283211184404\tand:0.020031781290972286\tthis:0.018658794464033394\ttho:0.015325266071355646\t:0.01\n",
"and:0.20231333810284724\tof:0.13635533972024547\tmake:0.11558286167760476\tto:0.10730538435756591\twith:0.09873204769992243\tthat:0.09576793103200869\tfor:0.0887005273968601\tas:0.08266004670262934\tin:0.062582523310316\t:0.01\n",
"is:0.41933063652943436\tare:0.1779299079453589\tand:0.12691876300168825\twas:0.05494072036438313\tit:0.05343360623095963\tIs:0.052762726266499714\tbut:0.04318162239558152\tIt:0.03641213434239749\tnot:0.02508988292369692\t:0.01\n",
"the:0.22710631245604745\tand:0.20389355712661253\tof:0.10471357643823978\tto:0.09910162619706014\tbe:0.08912981572190791\tre-:0.07532096275730675\twas:0.06905578222516086\tis:0.06685671167725499\tor:0.05482165540040948\t:0.01\n",
"of:0.4208930175520062\tto:0.09518268739722718\tfor:0.08799122425150871\tall:0.08483632026445624\tand:0.08075580768189063\tthat:0.07922533371071121\tin:0.05931598062683129\tby:0.05779702796556192\twith:0.024002600549806633\t:0.01\n",
"the:0.31961958505134924\tand:0.17095891170854766\tof:0.10775901417361049\tin:0.10730381968959647\tto:0.09571269153024536\tI:0.06042949976187324\ta:0.052606786884763106\tthat:0.03798561800758042\tIn:0.0376240731924341\t:0.01\n",
"I:0.20100426017154227\twe:0.16345511043713498\tthey:0.1443556601135657\twho:0.11811616937557991\twould:0.10708417348627745\tto:0.07740997279536344\tWe:0.0658137762479557\tyou:0.06401911047233823\tand:0.048741766900242366\t:0.01\n",
"it:0.25822787940164843\tIt:0.1970831919380463\tthere:0.16045274093014836\tThere:0.10537893177568708\twhich:0.08231844242311137\tthat:0.07636225315229704\tand:0.04647240500083737\the:0.03914011150261947\tman:0.024564043875604583\t:0.01\n",
"of:0.20836587996889466\tand:0.141420152491752\tfor:0.12544674598998007\tas:0.09403006653066721\twith:0.09295652189644384\tis:0.08987028359043216\tto:0.08264501404702235\ton:0.08057813431860426\twas:0.07468720116620349\t:0.01\n",
"<s>:0.5754748215575997\t.:0.09696647017650266\tit.:0.0791228809412217\tthem.:0.06032093724857955\thim.:0.038461454738650376\tcountry.:0.03666409377799028\ttime.:0.03663331544221524\tday.:0.035862346314243544\tyear.:0.03049367980299701\t:0.01\n",
"<s>:0.572328889568839\tit.:0.08740005212324928\t.:0.07442699585663436\tthem.:0.062240697327318475\tday.:0.04550372712937161\ttime.:0.039860966709428756\tcountry.:0.038232877670486554\tyear.:0.03536628877332597\thim.:0.034639504841346\t:0.01\n",
"be:0.38377012343378114\twas:0.140198004576577\tis:0.12041768148332613\tare:0.10103895305241431\tbeen:0.07936201455982601\twere:0.05264629182780072\tnot:0.04099159477377916\tand:0.03746697549476483\tbeing:0.03410836079773071\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"and:0.3041191474224857\tmade:0.13856710134455744\tas:0.09571553102057913\twas:0.0909312837228091\tis:0.08203867828763362\tnot:0.07808346296991898\tbut:0.06880892483415298\tone:0.06659810492052712\tgiven:0.06513776547733595\t:0.01\n",
"be:0.27620193530944676\tmore:0.2658069422557247\tbeen:0.08307161169268258\twas:0.07441078020667233\tis:0.06746659780341879\tand:0.06644123669183719\tnot:0.05503117670024897\tit:0.051689615729071284\the:0.04988010361089734\t:0.01\n",
"the:0.3744773782543259\tother:0.21641124724871724\tof:0.08608192747667094\tall:0.07461850710497178\tand:0.06773572997757082\ta:0.05247434231490701\tor:0.047643077067008564\tthis:0.03622815382707394\ttho:0.0343296367287538\t:0.01\n",
"the:0.3253788850529249\ta:0.12964342034674342\tcon-:0.12229065526876146\tThe:0.09852839149116284\tthis:0.08929155911116876\tThis:0.07842792391040897\tthat:0.062132964888166865\tsaid:0.0523530438282948\tof:0.03195315610236805\t:0.01\n",
"the:0.2840473867081886\tof:0.2325416396036047\tand:0.09110157135057623\tto:0.09073524185517041\ta:0.08477076361269936\tin:0.08475793559688648\tthat:0.046208034589646244\tfor:0.0388370891209226\tbe-:0.03700033756230523\t:0.01\n",
"and:0.2953876189038615\twas:0.16428490131166157\tis:0.1170663883818668\tup:0.07776716508545514\tit:0.07559106251500251\tmade:0.0665568090126541\tput:0.06578409847025994\tplaced:0.06489134807601946\tthat:0.0626706082432191\t:0.01\n",
"and:0.2708555229503238\tof:0.16875357166365473\tthe:0.15806028549716694\tto:0.1266985020119527\tbe:0.06506136079902888\ta:0.05367233913074959\tmore:0.052564597091336124\tin:0.048713423836331086\twas:0.04562039701945622\t:0.01\n",
"the:0.7553606697874816\tThe:0.0631479246932145\ttho:0.041867312836765064\ta:0.035056852307793214\tand:0.032729154339355554\ttbe:0.019223750345041184\tassistant:0.016327625926613385\tor:0.013273323400773931\tby:0.013013386362961567\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"all:0.20869729263580586\tit:0.15532856205648216\tlooked:0.12036994723660631\tarms:0.0954412938214101\tgathered:0.09459485478096037\tlook:0.0916670422904707\tlooking:0.09078458284908196\tturned:0.0701726998914334\tand:0.06294372443774914\t:0.01\n",
"is:0.3109692369522405\twas:0.18202833349307254\tare:0.1581440285968818\tbe:0.10520799599867105\tnot:0.06148443062110055\twere:0.05604036149402988\tIs:0.04295878351441914\tbeen:0.036813895306251586\tand:0.03635293402333294\t:0.01\n",
"to:0.6379762482120653\tand:0.0815670645221455\twill:0.05501403616695361\tnot:0.04810627941565448\tTo:0.03901885488454467\tI:0.03862061325576179\tthey:0.03700695872726517\tcan:0.028372336386020422\twe:0.024317608429588834\t:0.01\n",
"and:0.4021537073102102\the:0.1056537278633932\tbe:0.08372228777877243\thas:0.08011287701996349\thad:0.078993979376008\thave:0.07144466605785045\twho:0.0614143898933502\twas:0.05629820931388039\tis:0.050206155386571555\t:0.01\n",
"is:0.16889356017179724\tthat:0.15822054336582714\tand:0.14916467177202136\thave:0.13728361371714023\thad:0.10623259355129644\twas:0.10298966069350461\thas:0.06319645646012767\tbut:0.05210207137848232\tbe:0.05191682888980297\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"was:0.21254621673730964\tbe:0.1866954699935678\the:0.16492866179933102\tbeen:0.11627934646797873\tis:0.08194619460508079\tand:0.06522785242014073\thad:0.05945494182169472\twere:0.05197716919100009\twho:0.05094414696389643\t:0.01\n",
"they:0.22127417117087472\twho:0.2115255292047395\tand:0.1431967097907504\twhich:0.09436101440430117\tmen:0.0921584894984171\twe:0.08734434248497762\tThey:0.05675516639021886\tthat:0.05075191509864493\tpeople:0.03263266195707572\t:0.01\n",
"to:0.7751823682168935\tand:0.10186004225329796\twill:0.026119000703318376\tnot:0.022261096139366634\tin:0.01749695874121504\tfor:0.013804129449662875\tthat:0.011885034172036601\tof:0.011477918821638067\tI:0.00991345150257091\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.27160062912448996\tto:0.2681803687295565\this:0.12829901835970114\tand:0.06932872860926323\ta:0.055310709444887265\ttheir:0.05506135636213381\ther:0.052774796798580347\tnot:0.0453878069620508\tof:0.044056585609336944\t:0.01\n",
"Young:0.7178066681522555\tthe:0.1207958454726353\tBusiness:0.049337089933346887\tand:0.020668873073198656\tof:0.019481006954663746\tA:0.017854861264211777\ta:0.01704630899393199\t<s>:0.014274223253612254\tNew:0.012735122902143998\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"a:0.38528244149925944\tthe:0.14091279418455807\tand:0.11893924520015775\tis:0.09063849167422663\tvery:0.08328051863830813\twas:0.0575201197327543\tare:0.040598158714064865\tof:0.037898228946801345\tmost:0.034930001409869585\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"and:0.17550168008208752\tbe:0.1520353546848492\tto:0.14478870603809085\twas:0.12123107555652601\tof:0.10736795628139374\tthe:0.08162279351795065\tis:0.07321907787995124\tare:0.06771593345996738\twere:0.0665174224991833\t:0.01\n",
"is:0.3177621446621577\tare:0.20301759307683845\twas:0.14010787002029831\tbe:0.12589228145793038\twere:0.054662811746668656\tit:0.042883854573562384\tIs:0.037454137308088116\tbeen:0.03501911654497554\tand:0.03320019060948048\t:0.01\n",
"was:0.18991453451619122\tbe:0.1543658617072605\tis:0.11157448049837697\tbeen:0.10680483280190002\tof:0.10335038683907469\tthe:0.09898389482971728\tand:0.09751034532941251\twere:0.06497103383901073\tare:0.06252462963905607\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"part:0.21496902104278678\tone:0.20912369233988043\tsome:0.12867331343811736\tout:0.1057303116879626\tmembers:0.07618604502434112\tand:0.06636584999188522\ttion:0.06479865598258486\tportion:0.06226235532256281\tside:0.061890755169878825\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.26752232742120874\tto:0.16977217679524817\tin:0.13069569282204807\tor:0.11264809803479155\tby:0.07687175314514932\tthan:0.06662230711831907\tfor:0.05934322485417717\tat:0.05330894883999923\twithout:0.053215470969058626\t:0.01\n",
"J.:0.15517223178391137\tC.:0.1407098639843662\tW.:0.14010259074229123\tJohn:0.1366129461625529\t.:0.1290357425654202\tJames:0.08590368104254713\tMrs.:0.07884923234078639\tWilliam:0.06648203487226177\tMary:0.05713167650586278\t:0.01\n",
"and:0.25593775325453366\the:0.20311664021217649\tit:0.15198271447990425\tis:0.07826210280468544\tI:0.06864865042226949\tHe:0.0606033949689175\twas:0.05854152925782447\tshe:0.056878572145332346\tIt:0.056028642454356445\t:0.01\n",
"as:0.2501266913833019\tup:0.1235250048817903\twent:0.11945535719699676\tand:0.11561808595962257\tcame:0.09189456872695793\treturned:0.07802108487478537\tbelonging:0.07256133442787675\tback:0.07176565035439232\tfeet:0.06703222219427608\t:0.01\n",
"he:0.19621304626853336\twho:0.17273952602042644\tI:0.14366839695691894\tand:0.10112598148069298\thad:0.09817461674273929\tthey:0.08818489935731968\tshe:0.06813663055015468\tHe:0.06445183661194157\tit:0.05730506601127301\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.2743117504284168\tof:0.2031732249473093\tand:0.14156060019767566\ta:0.11316385342595574\tto:0.09406860272246842\tin:0.06522342661104139\tfor:0.03681377254659395\tat:0.03404798977090624\tor:0.027636779349632518\t:0.01\n",
"and:0.27831202825744067\tthat:0.2014912923231381\tas:0.19171886246482517\twhich:0.09892874134467476\twhen:0.06494844963057149\tif:0.05667925564742387\tbut:0.04507849795664818\tIf:0.026898723929375756\twhile:0.02594414844590212\t:0.01\n",
"and:0.2306773901185383\the:0.18333869538180486\twho:0.13000420393029097\tit:0.10800635040536286\tHe:0.07897404748757593\tthat:0.0704526283756586\twhich:0.06741970699567026\tIt:0.06342017999427177\tthey:0.05770679731082635\t:0.01\n",
"to:0.6029234748158575\tnot:0.10685677045378247\twill:0.0805053125791318\twould:0.07348435472152394\tand:0.058714604224932194\tmay:0.01928356596757802\tmust:0.017761258017253204\tI:0.01655037912139117\twe:0.013920280098549686\t:0.01\n",
"the:0.3476298225330875\tminutes:0.23381288292347527\tthence:0.17522416795050658\tdegrees:0.11780069790882919\ttho:0.029704545350293345\tsouth:0.023561408279132074\tand:0.023376331803621392\tThe:0.020239799336660116\tsouth-:0.018650343914394518\t:0.01\n",
"for:0.3892183589362009\tof:0.11913750363550386\tin:0.10137467977733451\tto:0.08383434430761823\tat:0.07311841211217496\tFor:0.06960929180772962\tand:0.05572438901822577\tthat:0.050875939132115286\tby:0.04710708127309678\t:0.01\n",
"was:0.20618434372908653\tand:0.17287857964426004\tis:0.14527519974141745\tbe:0.08631746152598767\tit:0.079626824924312\tthe:0.07813304209662032\thave:0.07585281200053723\tbeen:0.07537462217449112\the:0.0703571141632877\t:0.01\n",
"a:0.49227251715434406\tthe:0.26199364175621204\tof:0.06271572127677767\tThe:0.043618009706847274\tin:0.03630556542929413\twith:0.031388709285064965\tand:0.027064263367672824\tno:0.02076575705749701\tA:0.013875814966289859\t:0.01\n",
"to:0.16889050230180563\tand:0.15891446437031911\tof:0.15884397483632715\tin:0.13518036410011175\twas:0.09121132328425902\tthe:0.07807638466717513\tis:0.07460290674742219\tbe:0.06880460638737085\tfor:0.05547547330520909\t:0.01\n",
"and:0.2560685023728083\tto:0.23357380523186577\tin:0.11172173386222319\tI:0.10297610406359924\tof:0.07128657961369883\tre-:0.06683461187359818\tthe:0.055888440060669675\tnot:0.04822441188759685\the:0.0434258110339399\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
";:0.22552061085251554\tit,:0.14460487634878158\thim,:0.10273966044521114\tthem,:0.10271208862228533\tone:0.09578134161408765\tyears,:0.0854283008988403\t,:0.0843560863432732\tcounty,:0.0751412819957593\tcity,:0.0737157528792461\t:0.01\n",
"<s>:0.5069245693228005\tit.:0.11609693551689033\tthem.:0.08936848617780252\t.:0.059799816327899824\ttime.:0.04874720052052366\tcountry.:0.048584136985803855\thim.:0.0458567546155706\tday.:0.03879701913671151\tyear.:0.035825081395997035\t:0.01\n",
"and:0.24965773768928365\tthat:0.21770214176697975\tas:0.1248234123757925\tbut:0.10461977572374195\twhen:0.09942712059554992\twhich:0.057580046673598353\tif:0.05137722891957415\tWhen:0.04397086691852374\twhat:0.04084166933695596\t:0.01\n",
"and:0.20269517605798137\tof:0.16226319151786942\tthe:0.14317801436843935\tbe:0.12935187257247696\tis:0.09383572468257857\twas:0.08127493003716695\tto:0.06738858250550278\tin:0.06068745003410979\tas:0.0493250582238747\t:0.01\n",
"and:0.2688078358568699\tof:0.2151250577753985\tthe:0.16555624675245167\tto:0.13049233885688846\ta:0.05928189568131012\tin:0.04272389407150121\tthat:0.03919522589630722\tas:0.03738481957384539\tor:0.031432685535427406\t:0.01\n",
"the:0.3082901855110443\tof:0.1720330467459777\tand:0.16091449344567846\ta:0.09151664152349588\tto:0.06622933849153428\tin:0.05627415702644834\tby:0.05054680251298426\tfor:0.04243914134569659\t.:0.04175619339714007\t:0.01\n",
"the:0.622643311238426\tan:0.10484280110453627\ta:0.08168569288772978\tof:0.051345140442248444\tThe:0.033136344813409005\ttho:0.032799487301733085\tour:0.023882301112038786\tin:0.021984000358411665\tgood:0.017680920741466977\t:0.01\n",
"the:0.34565553455151293\tand:0.20227335046153935\tof:0.121251300964672\tto:0.09576439165374159\ta:0.06220906407200751\tthat:0.049900176439266315\tI:0.042659854682969824\t.:0.03531294637850778\twill:0.03497338079578271\t:0.01\n",
"the:0.32921052029541054\ta:0.22626968536199824\tof:0.1386083730233855\tand:0.09590024218279262\tthat:0.047199236786498185\tin:0.044047738823209226\tan:0.04005035139628578\tThe:0.034398573786565724\tto:0.03431527834385432\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.23130804761455173\ta:0.2273821814852447\twas:0.13015738354437628\tis:0.08898221468605677\tand:0.08389984215421041\tthat:0.06266458828523427\tare:0.05879736666691836\tbut:0.05509111675598091\tbe:0.05171725880742661\t:0.01\n",
"the:0.7336297643459014\tof:0.07788399766573502\ta:0.06215966203279223\ttho:0.03165942210455518\tevery:0.018950612095071952\tand:0.017726175221876327\tfor:0.01692599289360398\tThe:0.015954002045766302\tthis:0.01511037159469756\t:0.01\n",
"is:0.1936087435691293\twas:0.1438323593143901\tare:0.12186296434341748\tdid:0.11746438789983729\tdo:0.10721052931890086\tcould:0.08616034692945328\tand:0.07546047057592255\tdoes:0.07227133429734382\twill:0.07212886375160546\t:0.01\n",
"the:0.4164699767658302\tan:0.12574985658692384\ta:0.10403452382046219\tto:0.08921982261913505\tand:0.0792594646121232\this:0.06878158390489293\tper:0.03601383331684096\tfrom:0.03562069965491332\tmy:0.034850238718878226\t:0.01\n",
"the:0.6045115196001516\tWhite:0.1266837363791268\ta:0.06434940596466297\tOpera:0.05786695941640492\tthis:0.053802288786885706\ttho:0.02587357422448273\tCourt:0.020114154048110025\tStates:0.01956651953564572\tthat:0.01723184204452951\t:0.01\n",
"the:0.3831617630248545\ta:0.3049854639424217\tlarge:0.1350045959005506\tThe:0.05111886317653865\tgreat:0.040356824516150455\ttho:0.035445674088495305\tone:0.015729771253346722\tsmall:0.012912318785982754\tother:0.011284725311659388\t:0.01\n",
"the:0.5907735727816995\tof:0.13184152275677746\tin:0.07793553804542702\this:0.046756660863091035\ttho:0.039744376365815064\tfor:0.030683762006767205\ta:0.025968193712397235\tThe:0.02399552913215563\tthis:0.022300844335869728\t:0.01\n",
"of:0.20842841051795283\tas:0.14084324628132877\tto:0.10116315622935514\tfor:0.09995371781610993\tis:0.09616470210900886\tand:0.09084436877873116\tin:0.08786189245598046\twas:0.08519796535207776\twith:0.07954254045945507\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"more:0.6176000411531449\trather:0.1238694450156466\tless:0.08905485649874782\tbetter:0.08642814322056666\tgreater:0.019417826315381723\tother:0.017971650542191714\tworse:0.01713136207594643\tand:0.010951580482578589\tlarger:0.007575094695795504\t:0.01\n",
"of:0.216055253896522\tin:0.17229733335444053\tfor:0.12409616526052378\twith:0.10670531294098652\twas:0.08331065506271544\tto:0.08142138886367109\tand:0.07945834427005331\tby:0.06760602123085883\tis:0.059049525120228485\t:0.01\n",
"and:0.21212631028523773\tof:0.1493392282514495\tset:0.1326502386010728\twas:0.1229506311465777\tthem:0.08213820212705446\twell:0.07837214712042673\tfor:0.0751002171756046\t.:0.07000796076685528\tare:0.0673150645257211\t:0.01\n",
"the:0.29456612071867977\tHood:0.26108698602837876\tHudson:0.10358446210331024\tFall:0.07694902361334112\tRed:0.06670257733595338\tand:0.06271125060116556\tMississippi:0.04677362011953559\tThe:0.040367400726961586\tSnake:0.03725855875267406\t:0.01\n",
"he:0.2792120799628436\twhich:0.1533086222802487\tand:0.11573257956207397\twho:0.10605843505664954\tthat:0.08368334331099643\tit:0.08018631350899101\tHe:0.07983407266782179\tIt:0.05974290669872719\tshe:0.032241646951647794\t:0.01\n",
"and:0.18397708026827517\tof:0.15020429495842322\tthe:0.1232877716292359\twas:0.11111774622434255\tabout:0.09488931799278416\tbe:0.0897269751914843\tto:0.08614037525634916\twest:0.07872363688273308\teast:0.07193280159637246\t:0.01\n",
"to:0.19446902204616487\tthe:0.1468740232132353\tof:0.13208782829927648\tbe:0.10345575301045071\twas:0.10122261734268671\tand:0.09476108080812475\tin:0.08987896606367062\tis:0.06468005923453271\ton:0.06257064998185785\t:0.01\n",
"the:0.3794080912471981\ta:0.23854171100700788\tof:0.08586404966870276\tand:0.06890861713878245\tin:0.057982693762866404\tThe:0.055044231177677\tan:0.052457745607819704\tto:0.029031595608139855\tMr.:0.022761264781805974\t:0.01\n",
"of:0.3893288103332097\tfor:0.14352366776195166\tto:0.09262865776459257\tin:0.08537295365749774\tby:0.06886564561729344\tthat:0.06841074804761407\tand:0.06360211440614791\tall:0.039482646395803137\twith:0.038784756015889724\t:0.01\n",
"the:0.28911769851370467\tof:0.15034482710262848\tand:0.14727364343021293\ta:0.12256378698685642\tto:0.11180388212332248\tbe:0.05566769946958989\twas:0.044440704312762515\tor:0.03660687066406267\tis:0.032180887396860036\t:0.01\n",
"of:0.2821460375784853\tand:0.18473405914849075\tin:0.12447922250489919\tthat:0.0884984401274122\tfrom:0.07759572790791804\tone:0.06962780278901586\tto:0.05820653987182564\tby:0.05449908137699827\tat:0.05021308869495468\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.2298087334044965\tthe:0.20014555321920866\tto:0.11509335046286724\tof:0.10320204081403925\ta:0.07282770408580694\tor:0.07077397981313034\tbe:0.06771830557229142\twas:0.06698191984524497\tis:0.06344841278291471\t:0.01\n",
"the:0.19357000936025168\tof:0.19161727312321297\tto:0.13178021671534051\tand:0.11973232970236156\tbe:0.08026391825149468\twas:0.07357801228680229\tin:0.06841129754985271\tis:0.06787669563025195\ton:0.06317024738043162\t:0.01\n",
";:0.20587306186118823\t.:0.14388100633870393\tin:0.1250276407690616\tcity:0.09619665452465706\t,:0.0954906038178916\tState:0.09175367415434696\thim:0.08898815123424185\t:0.07140122224935934\tup:0.0713879850505494\t:0.01\n",
"and:0.3212617378419542\twas:0.13665734396961302\tput:0.10817258003378548\tplaced:0.09589482937707522\tis:0.07574630834550047\tthat:0.07495439045440873\tpayable:0.06710396053627729\tone:0.05536045474803293\tcommittee:0.054848394693352495\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"<s>:0.24643505364970167\tthat:0.22567481111489607\tand:0.11986402130738497\tit.:0.10509411761497947\tbut:0.07308474448235741\tas:0.06237988616146023\tthem.:0.06028718069699419\tcountry.:0.04939834692648971\tof:0.04778183804573639\t:0.01\n",
"to:0.737230885326702\twould:0.06776446550102361\twill:0.057874276038002194\tnot:0.03606792598872498\tand:0.022008185982041795\tcan:0.01948558892970548\tcould:0.01928876996415717\tmay:0.016704540691852156\tshould:0.013575361577790485\t:0.01\n",
"of:0.42292185470073906\tin:0.1318615967812803\ton:0.10169212376014362\tto:0.08627018104908725\tfor:0.06361544881755571\tfrom:0.053804179983613455\tat:0.048043673694435116\tand:0.04662024649547168\twith:0.035170694717673895\t:0.01\n",
"W.:0.2769580530654228\t.:0.14346515349358635\tJ.:0.10906677352889224\tH.:0.08741060365787023\tE.:0.08278011131108295\tMiss:0.07877665439452967\tA.:0.07758555603623302\tMrs.:0.07049480120453208\tF.:0.06346229330785065\t:0.01\n",
"of:0.3131313711510661\tin:0.10918084355392085\tfor:0.10136372914486755\tand:0.10098309388562525\tto:0.08539000441344113\tas:0.0771769820924516\twith:0.07643643838341461\tby:0.07042190250576529\tthat:0.055915634869447534\t:0.01\n",
"a:0.4146081829408622\tthe:0.1857304928687581\teach:0.0835452866587867\tThe:0.07306292336726214\tone:0.06579931156570633\tthis:0.04798078622783316\tevery:0.040327808817474074\tEach:0.0397989378085564\tand:0.03914626974476088\t:0.01\n",
"the:0.3149405942718434\ta:0.1871452046710166\tof:0.14586315700680155\tand:0.08236373683350486\tthat:0.06212114557310722\tany:0.055628813808399645\tto:0.05180161214306983\tby:0.05175635523865949\tThe:0.038379380453597414\t:0.01\n",
"protest:0.2352275405538314\tand:0.15084612289817434\tup:0.09955781058262712\tmade:0.09751014825504264\tvoted:0.08841298176843052\tclaims:0.08439363287706252\tvote:0.078620499699835\tguard:0.07798548506815406\tfight:0.0774457782968424\t:0.01\n",
"of:0.5381622551136112\tto:0.11306058341559586\tby:0.06054393229821317\tin:0.06015121439677117\tand:0.056188973469367964\tthat:0.043247450055053746\twith:0.04304352801106099\tat:0.041992998446192385\tis:0.033609064794133336\t:0.01\n",
"of:0.24590017323344435\tfor:0.21081597581090278\tto:0.12739683204312616\tin:0.12074175067049693\twith:0.1118849116098531\tdo:0.05784099035671013\tfrom:0.04064337554455535\tand:0.037745663277693284\ton:0.03703032745321797\t:0.01\n",
"feet:0.27152176672585254\tand:0.12245093243922514\tsent:0.09819161925130993\taccording:0.0980301503948565\tdown:0.08537633445929832\twent:0.08515647745537308\tas:0.07849577394000774\tup:0.07696446352070685\tregard:0.07381248181336984\t:0.01\n",
"the:0.2687090875739415\tof:0.18157187767638497\ta:0.14252482539868977\tand:0.10514903632870864\tto:0.09311788939217851\tin:0.06807136408067711\ton:0.0499454048381513\tbe-:0.04406320857669359\this:0.03684730613457465\t:0.01\n",
"an:0.3768860231615702\tto:0.19883264283844568\tthe:0.13719127141728713\tno:0.0643393735922084\tI:0.0495189555660877\twill:0.047914889188239544\tand:0.045110424587688915\tnot:0.03835550570456891\tany:0.03185091394390353\t:0.01\n",
"the:0.664475373350853\tThe:0.07595399774796409\tcon-:0.06390467065940314\ttho:0.04462605196998424\ta:0.04324336278632394\tand:0.04130700231687955\ttbe:0.020286059275017563\tof:0.018325410060354888\tan:0.017878071833219454\t:0.01\n",
"to:0.2907989276723902\twill:0.20490827637539968\tshould:0.08795939248339395\tmay:0.07683826349050771\twould:0.07458814615333378\tcan:0.06747581060864412\tcould:0.052828423284637764\tmust:0.04784627237592873\tshall:0.045072299830390385\tnot:0.04168418772537365\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.40092915488336084\tand:0.15787938785376307\tthat:0.13172800217994882\tall:0.0757116967566641\tby:0.063952110456705\tto:0.046829009994771985\tfor:0.04340321118415379\twith:0.038338591463918666\tas:0.031228835226713603\t:0.01\n",
"and:0.28198478366542257\tmore:0.12230945413273066\tthat:0.11062641385723855\tof:0.0920646057493625\tit:0.08519635912990588\tas:0.08437092751346209\tbe:0.075501645273913\twas:0.07486594344507307\tis:0.06307986723289175\t:0.01\n",
"the:0.7093558455680248\tand:0.12733991387045757\tThe:0.04160490866987563\ttho:0.030534205888976255\tsaid:0.019800247934032688\tcertain:0.017048333671742525\tof:0.015481827140638258\tor:0.015449555192253082\ttbe:0.013385162063999189\t:0.01\n",
"that:0.40444666898574005\tand:0.1556520134624469\twhich:0.10681878743655877\tas:0.07480836542495635\tbut:0.06919510530906807\twhere:0.05697363467389352\twhen:0.04776860075367366\tif:0.04605596138290215\twhat:0.028280862570760665\t:0.01\n",
"the:0.404517921880392\ta:0.10755565710387727\this:0.1059278118505998\tThe:0.09929232598314491\tand:0.0843747499297348\tthat:0.048636100514583405\ttheir:0.04826678257769412\tmy:0.045808166793502636\tour:0.04562048336647112\t:0.01\n",
"as:0.4785715125583874\tis:0.14550778058787123\tbe:0.08288369044734915\tbest:0.061977228112817584\twas:0.05871072863560822\tit:0.05071335063644127\tand:0.04591646938612609\tim-:0.03723580884560907\tnot:0.028483430789790046\t:0.01\n",
"of:0.2690973379332274\tin:0.17489595511165643\tat:0.1397744922732028\tto:0.11532012859220254\ton:0.07348349985636267\tand:0.05771006172238542\tthat:0.05479498099159621\tfrom:0.05266994999001901\tfor:0.05225359352934739\t:0.01\n",
"and:0.29794779627837653\tmade:0.14146259516346116\tor:0.13134721094894639\tthat:0.10328562780978796\thim:0.07439839430817427\tonly:0.07439637068115776\tit:0.06250293502037621\tbut:0.05250487901392215\taccompanied:0.052154190775797464\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"that:0.34182566437041073\tand:0.18115370716487933\tbut:0.10041591264151546\tif:0.07721036095086257\tas:0.07301549417647918\twhich:0.0702896553358804\twhen:0.06960607298894744\twhat:0.039159281978583996\tIf:0.03732385039244101\t:0.01\n",
"in:0.394594539733673\tof:0.29283894254489734\tIn:0.07022030852546274\tto:0.06688717547656077\tfor:0.04508384993555076\tby:0.03161045232029972\tthat:0.03122591994587788\tinto:0.028977001945322628\ton:0.0285618095723552\t:0.01\n",
"the:0.66639067658029\tof:0.07624031451342869\ta:0.06109514680728842\tAmerican:0.04113952046309771\tour:0.0340552933500224\tother:0.03397490043979989\ttho:0.0319419854527454\tThe:0.026151810475150635\this:0.0190103519181767\t:0.01\n",
"her.:0.27204831191228107\t<s>:0.19446389745286338\tit.:0.15343123223062266\thim.:0.1012445617036719\tthem.:0.07291846961514017\tday.:0.05201047169339489\tlife.:0.0492823504289404\tyears.:0.04867791266476081\ttime.:0.04592279229832465\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"of:0.3241150061345983\tand:0.1774251949735989\tin:0.10544507048740555\tto:0.10116454824675855\tthat:0.07659656642832684\ton:0.06455299454022724\tfor:0.06273561211239223\tthings:0.04287039325002043\tthose:0.03509461382667204\t:0.01\n",
"be:0.2334579668265576\tis:0.1767876260356519\tare:0.1445934336562302\twas:0.10598622870244315\tand:0.08650707446200001\tnot:0.07790557612998471\tbeen:0.07404010731550054\twere:0.04673286627884466\twell:0.043989120592787236\t:0.01\n",
"the:0.3417261069628012\tand:0.1961843143966825\tof:0.13580045504308527\tto:0.12417907741196067\ta:0.04381443853369315\tThe:0.041905200213776146\tnot:0.03673330499441611\tin:0.035943515884572515\ttheir:0.03371358655901248\t:0.01\n",
"the:0.29715172332573025\ttheir:0.1988316840611587\this:0.17042810095525962\tof:0.08621885062841146\ther:0.074546961527572\tmy:0.05299650966991661\tand:0.037220542249930176\tour:0.03672001347159398\tits:0.035885614110426976\t:0.01\n",
"would:0.2434804672154779\tand:0.22758224912585995\tbut:0.10977034220806442\twill:0.09423738203944668\tthe:0.07564186917475425\tdo:0.06997621153926897\tor:0.058462170566868525\ta:0.056194244285281116\tis:0.054655063844978286\t:0.01\n",
"and:0.2660378235993845\tthat:0.18423125722905456\tCommittee:0.14091950879089932\tcommittee:0.13047109115338562\twas:0.060498870188458106\tgoing:0.05463544641802012\twork:0.05435679074821919\tone:0.051724275573894904\tor:0.047124936298683674\t:0.01\n",
"the:0.2682140307123581\tof:0.22280706344730478\tand:0.20560279937332707\tto:0.06131644236603923\tin:0.05662711671951798\tbe:0.049754344904034256\tthat:0.04309794890589693\twhich:0.04206890266433711\tmuch:0.040511350907184426\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.30735359476081114\tto:0.22522162155475015\the:0.10662948316921289\tof:0.07884913974184656\tin:0.0597246616761408\tthe:0.057550992930262716\twas:0.055200078540659045\tthat:0.0503361973709718\tfor:0.049134230255344906\t:0.01\n",
"and:0.19879773614850196\tjust:0.16633269095941064\tis:0.1403301559557449\tbe:0.08390742319103878\tmuch:0.08362213436544579\tfar:0.08323668198037833\tare:0.08162366376106057\tnot:0.07625243613275628\tbut:0.07589707750566273\t:0.01\n",
"the:0.3785199221598226\this:0.11259400010111191\ttheir:0.10610172463970631\tof:0.10159474608102173\ther:0.06986346364816937\tour:0.06867794452302488\tits:0.06438916948298101\tgreat:0.04614117505979745\tthis:0.04211785430436481\t:0.01\n",
"the:0.6467450252457034\this:0.08341344450075426\ta:0.07988774860096941\ttheir:0.0360315135218128\tthis:0.03380241497315103\ttho:0.03239025955583996\ther:0.030051420580393635\tof:0.02428428730065152\tThe:0.023393885720723994\t:0.01\n",
"of:0.22403420600549523\tin:0.14516170479825935\tand:0.13212057878410222\twith:0.1101450228669899\tto:0.09261782204281765\tfor:0.08424706121080791\tby:0.06881763727215481\tsuch:0.06729939123844483\tas:0.06555657578092805\t:0.01\n",
"to:0.2799803483997887\tthe:0.20127314161606732\ta:0.1641423661931268\tand:0.0836626819352849\twill:0.07181278144379641\twe:0.05436312297028892\tnot:0.053493375091600334\twould:0.042799764045099935\tyou:0.038472418304946625\t:0.01\n",
"the:0.562390416804139\ta:0.13980035464469745\tgold:0.059889923508740936\tThe:0.052197881942427415\ttho:0.05164959824355564\tand:0.04642104053964787\thigh:0.034106764547635955\tany:0.025708614008495275\tother:0.01783540576066043\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"<s>:0.312180090915302\tit.:0.225886426312419\tthem.:0.10900423768345378\thim.:0.0941755755897342\tcountry.:0.0615896300062552\ttime.:0.052500523711349494\tagain.:0.04606717255220915\tyears.:0.0447597027856032\tlife.:0.04383664044367397\t:0.01\n",
"a:0.15959650225222863\tthe:0.15286265189072934\tthis:0.1372934852266084\tsome:0.1225860575597741\tthat:0.08381763719332834\tshort:0.08049397507562282\tsame:0.07705533045691546\tany:0.06764897540696073\tin:0.0605900662491634\tof:0.04805531868866878\t:0.01\n",
"the:0.48143768949712884\ta:0.10536018086063081\tand:0.06679787118135405\tof:0.06468141021685773\tthis:0.06237400394305833\tany:0.058513019435160754\tto:0.05395511308585392\tour:0.05183934517607021\tThe:0.04504136660388534\t:0.01\n",
"they:0.284929412044446\twho:0.17731503253663047\twe:0.11159017014240037\twhich:0.10035717888755122\tand:0.08448736916719424\tThey:0.06921557299860846\tthat:0.06396994874632686\tWe:0.05344224379696364\tthere:0.04469307167987865\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.3014323429178846\tSupreme:0.2043870385229573\tsaid:0.13175849644787646\tDistrict:0.06702284923962984\tCircuit:0.06203727357497081\tCounty:0.0598171556059907\tProbate:0.05719650530030323\tof:0.05603892611959717\tthis:0.05030941227078993\t:0.01\n",
"it:0.25963858208860846\twhich:0.14112918128503316\tand:0.13477755288321686\tIt:0.11476539973660434\tthere:0.09895590903510543\tthey:0.0762137180117906\twho:0.057804780239370954\twe:0.05506058752131994\tthat:0.05165428919895035\t:0.01\n",
"of:0.41033700711952237\tto:0.10040482029615216\tand:0.09456676640131279\tthat:0.08816330449922112\tin:0.07488330867200273\twith:0.06997033945092133\tby:0.05418137895879856\tfor:0.05403029603212323\tfrom:0.04346277856994571\t:0.01\n",
"he:0.17992660251482065\tI:0.16120748431309095\thave:0.10835935863822743\thad:0.10733467858641761\twho:0.10341015885710439\tand:0.09843391992954145\twe:0.07925143778037227\tthey:0.07659994385706699\thas:0.07547641552335824\t:0.01\n",
"in:0.2679623029560077\tof:0.19860565711965802\tto:0.10935611265367001\twith:0.09323545892094129\tfrom:0.07770932718409249\tfor:0.06993863671210758\tby:0.06751657484375599\tupon:0.05456850346081428\ton:0.051107426148952466\t:0.01\n",
"New:0.7393911602849581\tthe:0.06049053880246553\tand:0.04683612543824188\tof:0.03661554557832219\tin:0.02996386726315448\ton:0.021706224481823595\tto:0.020281247226765477\ta:0.017461182125661563\tfor:0.01725410879860713\t:0.01\n",
"and:0.22418626870572414\trecorded:0.14696855719497356\tis:0.1164009857744855\twas:0.11417173427692236\tthat:0.09022877928991793\tup:0.08168741102747688\theld:0.07739200539885249\tmade:0.06957680399645043\ttime:0.0693874543351966\t:0.01\n",
"and:0.369231889415931\twas:0.11480310006181424\tup:0.10703657753819923\tthat:0.0875213583648481\tis:0.06746493834556037\trecorded:0.06493480778210341\tthem:0.06110063327486428\tfeet:0.060075372665693835\tsituated:0.05783132255098555\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"the:0.352671563036859\tof:0.16344948700295048\ta:0.11551625653603613\tand:0.11060227896373748\t.:0.09244110092089382\t<s>:0.05109952294356078\tThe:0.03895776874924977\tA:0.033588017944623606\ton:0.03167400390208892\t:0.01\n",
"in:0.29274919589730575\tand:0.17619872193465835\twell:0.15321197569736983\tof:0.11410827189488251\tknown:0.07317255740829251\ton:0.05790810700105711\tmade:0.05165437213587322\tIn:0.041022364796080346\tfar:0.029974433234480416\t:0.01\n",
"the:0.3858600256623073\ta:0.1497956256722839\tthis:0.0992675033706635\tnext:0.080524849995188\tto-:0.061847610581575924\tper:0.0579850412741419\tthat:0.05429492253045319\tone:0.050461851345765106\tevery:0.049962569567621\t:0.01\n",
"was:0.28410195253518433\tis:0.230465939714903\tand:0.11066578549435654\tbe:0.09145079291885817\tit:0.06307453883794507\tare:0.05647817770955752\twere:0.05503008612070955\tas:0.051284022962875084\tbeen:0.04744870370561062\t:0.01\n",
"and:0.1557202738443079\tit:0.15292783325934847\thim:0.13069278480628765\tthe:0.12160734480318545\tmade:0.10954879960090735\tthem:0.10251631745078534\twell:0.08051192368506191\tup:0.07038070547457391\tme:0.06609401707554208\t:0.01\n",
"the:0.27780365800655765\tof:0.19100701368335354\traw:0.1692622819897339\tand:0.09302219967453983\this:0.057961821281014334\twith:0.05766532779888385\ta:0.05616400218145517\ttheir:0.0445159147692166\tor:0.042597780615245155\t:0.01\n",
"a:0.5761959804967745\tthe:0.23333186897201372\this:0.03391651031075588\tand:0.03322937739960941\tThe:0.028763902439728848\ttheir:0.02598562989102852\tevery:0.020505681224021625\tA:0.01916764690450623\tof:0.01890340236156139\t:0.01\n",
"of:0.26486171639242767\tfor:0.12379126932789944\tto:0.11502682146568612\tor:0.10320717601910744\tby:0.09650105910735157\tin:0.09634970345919544\twithout:0.08213189703755319\tthat:0.05645918897084747\twith:0.05167116821993157\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.6171870884957907\ta:0.12760825629170497\tThe:0.08135216220957857\tin:0.039548182048182424\ttho:0.03713189370620866\tand:0.029604727932748664\tof:0.02221712204979258\ton:0.01952903248724177\ttbe:0.015821534778751603\t:0.01\n",
"J.:0.15517223178391137\tC.:0.1407098639843662\tW.:0.14010259074229123\tJohn:0.1366129461625529\t.:0.1290357425654202\tJames:0.08590368104254713\tMrs.:0.07884923234078639\tWilliam:0.06648203487226177\tMary:0.05713167650586278\t:0.01\n",
"was:0.26106345209632753\tand:0.1615926463272312\tis:0.14926582324943155\tthe:0.08873010779007179\tare:0.07910387801909266\twere:0.07668941873584377\tan:0.06766694410247932\tbe:0.06414208980750774\tI:0.04174563987201439\t:0.01\n",
"all:0.2817467754549738\tand:0.13866980003166035\tit:0.10912812850065001\twent:0.098474213899284\tgo:0.07794149254212782\tlooking:0.07600713917236554\tturned:0.07555119914301633\twas:0.06771655535477568\tget:0.06476469590114643\t:0.01\n",
"W:0.14910773017956414\tM:0.12276990578542449\tJ:0.12075148222724486\tC:0.11156552709985228\tS:0.10363588713123016\tE:0.10247688778446311\tA:0.09710894198133282\tH:0.09413683549342977\tB:0.08844680231745826\t:0.01\n",
"a:0.6184605957167127\tthe:0.16174252731876174\tyoung:0.05587412343459336\tchair-:0.035224021113427886\tevery:0.02927808868469002\tA:0.026674336573004526\tany:0.023318849933792008\tThe:0.02146542475892556\tno:0.01796203246609204\t:0.01\n",
"<s>:0.2515850059809436\tit.:0.19353872239114625\tyou.:0.18446203019758417\tthem.:0.10249009170574473\tme.:0.06643287048920696\tletter.:0.05416107030367487\thim.:0.050256473431770275\ttime.:0.046546342467754326\tlife.:0.04052739303217466\t:0.01\n",
"the:0.687155698161224\ta:0.09926412524647917\tand:0.057834974113474553\ttho:0.039826053971739654\tThe:0.03679760787972348\this:0.020658307277497578\ttheir:0.016927207345608434\tof:0.01578368179288227\tor:0.015752344211370655\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"was:0.22002636265127315\tand:0.17470488313649699\tbe:0.14965647015878764\tbeen:0.13551786225509604\tday:0.09425440065845268\tis:0.08026221041518598\tcomplaint:0.050932293338254296\twere:0.04997049081002784\tduly:0.034675026576425336\t:0.01\n",
"of:0.3526385491742855\tto:0.13103707010491314\tin:0.11549089879728176\tand:0.10989597192834455\tthat:0.09765435494094213\tas:0.05432796679015035\tby:0.04509500743811956\twith:0.04244055753114449\tfor:0.0414196232948184\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.268563356187192\tplace:0.19763649145749707\tpoint:0.10900414669138928\tplaces:0.09156843115676226\tknow:0.08779810459606877\tor:0.06814347546305578\tthat:0.06084108009900061\tspot:0.057084733352071454\tcases:0.04936018099696284\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"is:0.15693200988701747\twas:0.12437983444286471\table:0.12124315460698393\tand:0.1130877466894836\thim:0.111201609007873\thad:0.10669981862934202\thave:0.10056465621645723\tenough:0.08254049511913548\tas:0.07335067540084243\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"the:0.39061153225281686\ta:0.20578738864179644\tRepublican:0.12157589057162638\tDemocratic:0.09411185095111645\tdemocratic:0.04884458342251399\trepublican:0.04323115387600638\tThe:0.030144247240888097\tof:0.028691028074458592\this:0.027002324968776976\t:0.01\n",
"the:0.4599927872615986\tof:0.1634562097807633\ta:0.1406618748001771\tand:0.06639694701307704\tin:0.05683406702093617\this:0.027178148902089763\tto:0.026021976383832496\ttho:0.02474449742633486\tthis:0.024713491411190506\t:0.01\n",
"provisions:0.16627098017731173\tcopy:0.15165327534695813\tdate:0.12617568642366098\tpart:0.12388683156619237\tone:0.1044724200406653\tout:0.09585475097905363\tpeople:0.09019386903076457\tpublication:0.0773301702042243\tmembers:0.054162016231169084\t:0.01\n",
"it:0.20687419694626064\tIt:0.2041185812592859\the:0.13331434700697872\twhich:0.10094655584395615\tand:0.08473585855072227\tThis:0.08385958200134508\tthere:0.061722523003561965\tthat:0.057831559521612695\tHe:0.05659679586627654\t:0.01\n",
"the:0.2699167513597936\tof:0.22863414607389043\ta:0.19567764476164773\tand:0.08012155706952374\tin:0.06648174290277829\tto:0.04141639845562095\tthat:0.04057890955687606\tfor:0.03777775842672882\tThe:0.029395091393140352\t:0.01\n",
"and:0.25185878883423884\tthe:0.20724526367795862\tof:0.15112589901721624\tto:0.11438239617512233\ta:0.0793657549186268\t.:0.0659747012212246\tMr.:0.04986098764367698\this:0.03714276033701832\tin:0.03304344817491739\t:0.01\n",
"the:0.5482517723804013\tin:0.10741815570253402\tan:0.09960163901175909\tand:0.05905484159515788\tof:0.04405043935253889\ttho:0.0371270364664374\tThe:0.03505258737422286\tIn:0.032267295784704234\tany:0.027176232332244216\t:0.01\n",
"a:0.3255052262781405\tthe:0.3087597682196027\tand:0.12601521406860194\tmost:0.05968582038335042\tThe:0.041492328212898895\tall:0.03748416492780581\tsome:0.03417038857912965\tof:0.030555132334639697\tor:0.026331956995830193\t:0.01\n",
"there:0.2740496566197586\tThere:0.1772329545054314\tthey:0.15534843854080438\tyou:0.08800592379828925\twho:0.0826317217689927\twe:0.06036332144999159\twhich:0.05462337782344627\tThey:0.050900072517853084\tand:0.046844532975432666\t:0.01\n",
"have:0.35328946251732735\thas:0.26744366091419525\thad:0.24268234427973348\tnot:0.03551493986454824\thaving:0.03354582231468265\tbad:0.016242173594263446\tever:0.014998571799669675\tnever:0.014904747853835004\thavo:0.011378276861744826\t:0.01\n",
"he:0.36344374102182747\tI:0.13157381415302533\twho:0.10981486652824843\tand:0.08461387234011652\tshe:0.08286708567003692\tHe:0.06824356390193378\tthey:0.06276980176163764\twhich:0.04723877411624074\tthat:0.03943448050693317\t:0.01\n",
"the:0.22172023892309115\tof:0.1544891538036754\tand:0.1135846508689145\ta:0.09386538603318526\tan:0.08847174821825282\t-:0.08766195108438138\ti:0.08336830757296743\t.:0.07459740798853859\tto:0.0722411555069935\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"of:0.31101947367550115\tin:0.20921426767011903\tfor:0.1148471869491308\tthat:0.07668721685020059\tby:0.06348196936772815\tto:0.05920693872818296\tIn:0.05855394053588155\tand:0.051242664034404486\twith:0.04574634218885127\t:0.01\n",
"of:0.4567792055317271\tin:0.195571951777953\ton:0.11682660122731528\tto:0.07163715345213989\tfrom:0.04861819879234171\tIn:0.03320399511386378\tfor:0.023801391649834466\tand:0.022599561494651327\tby:0.020961940960173613\t:0.01\n",
"and:0.44041259200264676\tthat:0.159931933011043\tbut:0.14586877621092428\tBut:0.05901469057608011\ttime:0.053670320440024406\tAnd:0.043181375110983154\tor:0.0330580108512853\teven:0.030784353672919505\tday:0.024077948124093418\t:0.01\n",
"the:0.36607440056592166\ta:0.1206726139929553\tthis:0.11846607832365261\tof:0.09586192260531981\tin:0.07087262514001848\tquarter:0.0699348578883592\tevery:0.05601517811335796\tthat:0.04940470498579102\tfirst:0.04269761838462403\t:0.01\n",
"number:0.31512312387996216\tmen:0.17229968969123002\tplace:0.10988395833308089\tline:0.10172534584100218\tpeople:0.0595510882617014\tand:0.058886226579927224\tout:0.05876135183634695\tcase:0.057204101019378235\tboard:0.05656511455737077\t:0.01\n",
"they:0.2920790825207049\twe:0.1676192807591628\tand:0.09114719991682553\tyou:0.08976365771910488\twho:0.08197059636375331\twhich:0.07240034505594667\tthat:0.06870135276315271\tThey:0.0653886468311585\tthere:0.06092983807019062\t:0.01\n",
"the:0.4790366739829067\ta:0.11370506167381011\tof:0.09440040826175841\tand:0.08354887372366622\tin:0.05767655295845941\tThe:0.05420090682184144\tMr.:0.04484670994321282\ttho:0.03305456906627049\t.:0.029530243568074283\t:0.01\n",
"the:0.4746267265053566\ta:0.131907483651067\tof:0.10075901908654489\tto:0.08910379844883509\tand:0.06201913141775022\tin:0.041381178250679766\tan:0.03520509424521904\tThe:0.029277029391030933\tat:0.025720539003516413\t:0.01\n",
"of:0.21570058734606717\tin:0.17287290599153762\twith:0.11189587087684337\tis:0.11146700495359302\tfor:0.09601496085793075\tand:0.09067536895922884\twas:0.08303741096033672\tto:0.05722590135037264\tby:0.051109988704089775\t:0.01\n",
"was:0.18609210225558076\tbe:0.17626256083489128\tbeen:0.11713550526545646\the:0.10977763222090388\tis:0.10435434563569165\thave:0.08552884006206818\tand:0.07688131440645275\twere:0.06934451711809964\tare:0.06462318220085538\t:0.01\n",
"the:0.3865743142737061\ta:0.15809553049707567\tby:0.13046022031856155\tof:0.13006274991044894\tat:0.054381108677808196\tany:0.04121068743486792\tin:0.03198730931413779\tfrom:0.028907926847249892\tThe:0.028320152726144004\t:0.01\n",
"the:0.34276932402602095\tof:0.21602836901853545\tand:0.11438287019823322\tby:0.07906031001802383\tAssistant:0.07868958465865544\tfor:0.05046041861854934\tat:0.046139450256963956\tto:0.03480786954590888\tThe:0.02766180365910902\t:0.01\n",
"an:0.5511589795883921\tthe:0.16279241623096996\tAn:0.09660635235658192\tThe:0.051206358143988856\tthat:0.03283618867218284\tof:0.032471135473506704\tand:0.026388352464213775\tthis:0.020184565277204785\tany:0.016355651792959044\t:0.01\n",
"the:0.6100044772242764\tof:0.11000701681646093\tand:0.0613158358959093\ta:0.05431474031693976\tto:0.05261938159270192\tby:0.033096519072140916\tThe:0.031083783735471007\ttho:0.019191795543115862\tA:0.018366449802983683\t:0.01\n",
"and:0.22458167922187433\twas:0.15845754335842702\tis:0.15354270397073008\tbe:0.10167950708594856\tare:0.09874780213142718\tthat:0.07830957835228297\thad:0.06279708169084898\tor:0.06275160902085997\tnot:0.04913249516760088\t:0.01\n",
"a:0.24580596669659693\tthe:0.21392435819367955\tto:0.17353992207852967\tof:0.11842530520464335\tand:0.09849366756785694\this:0.041934346827291115\twill:0.03288031864573486\tfor:0.032852507156231635\twith:0.0321436076294359\t:0.01\n",
"it:0.23939408018857478\tIt:0.16828534012759358\the:0.1645450135709951\twhich:0.0902688174425402\tI:0.08004437355512885\tand:0.07938802779302434\tHe:0.07395771847278129\teffort:0.047940905990124544\twho:0.04617572285923735\t:0.01\n",
"the:0.606669990683497\tthence:0.08936048745329643\tof:0.08435293689678722\tat:0.06056471064823885\ttho:0.03590418821680713\ton:0.03050162625709461\tand:0.02989801789806787\talong:0.026643841830429855\tfeet:0.026104200115781004\t:0.01\n",
"for:0.1904275258994517\tof:0.18076167403246413\twith:0.13520594799391122\tto:0.11565724229176087\tdo:0.09480001307818248\tin:0.08706730488045017\tupon:0.0826322603955146\ton:0.051988040082004534\tabout:0.05145999134626023\t:0.01\n",
"of:0.39069519806903263\tin:0.2996688582352778\tto:0.07226490385681052\tIn:0.06125235605787519\tfor:0.060811880032801115\tby:0.03640068529315855\tthat:0.028829920282709656\tfrom:0.024633936286291767\tand:0.01544226188604281\t:0.01\n",
"it:0.1921278232971985\tI:0.16353672814364642\the:0.14828097751304353\tIt:0.12009222869643395\twe:0.11874289695586418\tthey:0.11459528351250944\tWe:0.047894328539064\tand:0.04657853342455461\tyou:0.03815119991768531\t:0.01\n",
"men:0.22138520218205968\thundred:0.1558942795559107\tnorth:0.10685697554134092\tcity:0.1011969083901475\ttime:0.10104458013162132\twife:0.09063836038824036\tgold:0.07617105277490645\tup:0.07172578973742141\tland:0.06508685129835164\t:0.01\n",
"of:0.2899422124457265\tthe:0.2669786708795728\ta:0.10820700959838014\tOf:0.10299973273875702\this:0.07715121731116066\tthis:0.04996423768273851\tmy:0.03618936930178237\tin:0.031044141834272645\tour:0.027523408207609294\t:0.01\n",
"the:0.24870750539414407\tand:0.1528092138471497\tof:0.1496307601952608\tto:0.14167234312807156\ta:0.07424214706605249\twas:0.0740657615284091\tin:0.05438561664327943\tbe:0.0509659885524462\tat:0.043520663645186565\t:0.01\n",
"with-:0.46632044646735804\tthe:0.1539085863958493\tand:0.08596017255087202\twith¬:0.06723834848740935\tsent:0.05472696095044099\twith­:0.048038754090793404\tit:0.045898502810535244\twent:0.037172742373853394\tgo:0.0307354858728882\t:0.01\n",
"<s>:0.4458746059749089\tit.:0.11780244766415972\tthem.:0.10803539018274377\thim.:0.08881126762075177\ther.:0.053775800289173954\tcountry.:0.04581172414059134\t.:0.044862622161405095\tlife.:0.04364347368662916\ttime.:0.041382668279636346\t:0.01\n",
"a:0.21970941759205212\tsome:0.18006921700799924\tany:0.16843077267227866\tthe:0.15388554440113666\tin:0.062056888259922977\tand:0.060769406925832936\tthis:0.05279967877442409\tof:0.047910717766909146\tno:0.04436835659944432\t:0.01\n",
"he:0.2046795339294043\tit:0.17352503062908356\twhich:0.12427682101891604\twho:0.11450803170646717\tIt:0.10623926897970519\tand:0.08774926960631164\tHe:0.07544002955486519\tthat:0.06822902221926003\tshe:0.03535299235598682\t:0.01\n",
"of:0.25110008680856005\tto:0.16744332014316266\tand:0.1622400921721766\twith:0.09544071025413058\tfor:0.08459037388239334\tby:0.060715013485822686\tis:0.06010677878913491\tthat:0.05944536247664489\tin:0.04891826198797427\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"the:0.8806090680672324\tThe:0.033923303132548904\ttho:0.031292131321869934\tof:0.013544302279215756\ttbe:0.011117242043315882\tthat:0.0057140247092154085\tthis:0.005269696849502974\tin:0.0047566042079046685\tand:0.003773627389194097\t:0.01\n",
"the:0.4238741542787785\tof:0.1637416687087459\tfellow:0.08105829617968346\tand:0.07760805768747463\tother:0.06246050601416272\tmany:0.05044250192930765\tthese:0.04717971220006908\tour:0.04394742878281457\this:0.039687674218963485\t:0.01\n",
"p.:0.6020914823384438\ta.:0.24948273637872626\tp:0.042653452574294516\tand:0.03378638887832207\tthe:0.025224453602801563\tof:0.01423217038676491\ta:0.012019616217549711\tfor:0.005745865149918827\tdis-:0.004763834473178169\t:0.01\n",
"for:0.37084304946778357\tFor:0.34825188804472973\tof:0.09460090389027315\tby:0.03580642000414916\tand:0.03546843818444796\tto:0.034965627912957147\tin:0.0327851678372496\tso:0.020579669177683863\tthe:0.01669883548072592\t:0.01\n",
"of:0.4468065481333237\tin:0.25498645207829945\tto:0.06584627851651553\tIn:0.06111585976589205\tthat:0.05067302138547657\tfor:0.03344342961836897\tand:0.028264986661587194\tby:0.026820730348017345\tfrom:0.022042693492519094\t:0.01\n",
"was:0.20412182450603952\tand:0.20169165137129313\tis:0.1294782887439942\tare:0.10175590872617728\twere:0.10073473205662961\tbe:0.07904296505976681\tbeen:0.07613469255728672\tto:0.05995154331148197\tof:0.03708839366733058\t:0.01\n",
"the:0.2932409016870283\ta:0.23998928172580805\tat:0.15034919759650225\tand:0.07182154388193047\tfor:0.0666322168819539\tof:0.05584523135313212\tan:0.04384379936494866\tto:0.03932135472048775\tin:0.02895647278820852\t:0.01\n",
"to:0.602644014728768\tthe:0.09755961911125957\tof:0.09195344666440451\ta:0.05742684296121752\this:0.032394754530588904\tand:0.03201431610473031\tfor:0.02831015743957643\tor:0.02606295764713373\tin:0.021633890812320946\t:0.01\n",
"the:0.4461692203566345\tof:0.14632936042277622\ta:0.1352649169718063\tand:0.10866647053161566\tThe:0.038425028257777355\tthat:0.03384604098467835\tto:0.029822141814817092\ttho:0.026213018071044227\tas:0.025263802588850238\t:0.01\n",
"more:0.24909029276575095\thundred:0.134690266933597\ttime:0.12263157115822501\tit:0.10794115522609625\tone:0.101524313187105\tand:0.07488886690434852\tgood:0.06723530496956324\tup:0.06695252341214793\tdue:0.06504570544316614\t:0.01\n",
"North:0.13111784523567155\tmen:0.12713026361383212\tgood:0.12223213007737146\trights:0.11603360763305577\t;:0.11248937097616772\thundred:0.11064013261731231\tone:0.09319961030774508\ttime:0.09026249751989895\tstreet:0.0868945420189451\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.373790027318163\tand:0.11064651762657035\tby:0.0979476469116305\tto:0.09608424347949548\tthat:0.09365692350098351\tin:0.08591511003978067\tfrom:0.04868450381138683\tfor:0.047314028860021354\twith:0.035960998451968235\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.5218671725517096\ta:0.22926142040048453\tat:0.0971351343555956\tof:0.03789980923057573\tThe:0.036974510470523296\ttho:0.023250438109019327\tin:0.016794064946276388\this:0.013769221151170522\tfor:0.01304822878464514\t:0.01\n",
";:0.38402633879831644\tit,:0.154974016475155\thim,:0.07954898492673562\tnothing:0.07708431625029438\tthem,:0.07485407417374607\tand:0.06654846466907731\ttime,:0.06309009911455096\t,:0.049742583396273805\tis:0.04013112219585062\t:0.01\n",
"the:0.563928614948719\tan:0.18062880401504466\tThe:0.10029305416345587\ttho:0.03530236346825236\tAn:0.03381885176880536\tof:0.028375655839573556\ta:0.016541392974855337\tand:0.015698979897856683\tthat:0.015412282923437028\t:0.01\n",
"he:0.18445082775010657\tI:0.15710561152912345\tbe:0.14996479679083113\tand:0.13884661129474915\thave:0.1127973539474954\twas:0.07355239049895101\thad:0.06961889218449677\thas:0.05296174208083489\tthey:0.050701773923411415\t:0.01\n",
"to:0.4163928763069553\tI:0.1174040509928423\twill:0.10107728573336956\twe:0.07030954123135345\tcan:0.06986242202464286\tthey:0.06023130381486347\twould:0.058965797886766945\tand:0.050638722488508175\tcould:0.04511799952069787\t:0.01\n",
"the:0.5482572488591566\ta:0.0841989353068151\tand:0.08378957766868562\tof:0.07848222583720926\tThe:0.05345950920168888\this:0.040390397354862884\ttho:0.038687025210585514\tto:0.035087892638117714\tin:0.02764718792287831\t:0.01\n",
"the:0.1872430650764113\tto:0.18077131898187315\tof:0.15258123624921413\tand:0.13849688479985894\ta:0.12798809496438832\tfor:0.06052393248033261\tin:0.05940955402818503\tthat:0.046976854328930215\twith:0.03600905909080633\t:0.01\n",
"a:0.5277503219798749\tthe:0.19344212701295332\tand:0.06534025628671498\tof:0.05238532507227174\tA:0.0486930165113133\tThe:0.02961091395956489\tI:0.028059657919546732\this:0.023703526461418\tthis:0.021014854796341936\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"it:0.22325425354406936\tIt:0.18073812601551803\the:0.13727858521627864\tI:0.11191228799780635\tand:0.08870640983891162\tthat:0.08161767685932302\twhich:0.07717730284444549\tHe:0.04629648082110498\t.:0.043018876862542535\t:0.01\n",
"the:0.42705841369591097\ta:0.1430977773744797\tand:0.13194236359863104\tof:0.0881691592209272\tto:0.05878313179956523\tin:0.05243461749308482\tThe:0.03854873095005714\ttho:0.025718331359892915\tan:0.024247474507450965\t:0.01\n",
"of:0.2517877187637788\tin:0.11862893944457926\tand:0.11019374097904168\tby:0.10115177251456758\tas:0.0993963729095034\twith:0.09036254022029051\tto:0.08210389171537745\tfor:0.07060070573615879\tsuch:0.06577431771670234\t:0.01\n",
"the:0.507933432415535\tof:0.13341231104320542\tin:0.07936604865389499\ttheir:0.055110577303331874\tand:0.04796204374129679\tto:0.047231497587135754\ta:0.04465159728577732\tour:0.04040448290484978\this:0.03392800906497306\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.48418249689778065\twas:0.12164717504817876\tto:0.08832599986692406\tis:0.0580366343817556\tnot:0.055702842082418304\twill:0.054845656584932186\tbut:0.045030662583615134\tthat:0.04317406489546547\tI:0.039054467658929795\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"is:0.22301489735339172\tand:0.22228219177237302\tthat:0.14464741245660026\thave:0.08555992119807337\twas:0.07695120368029754\tbut:0.0675974400481729\thad:0.06295209377835263\tbe:0.05471855712677103\tof:0.052276282585967636\t:0.01\n",
"to:0.31999042639567954\tand:0.16762155863003034\ta:0.10536380127142606\tbe:0.08872539083623004\tthe:0.07733797992910578\twas:0.07646677301500278\tof:0.05586081651552707\twere:0.051933026745868915\tbeen:0.04670022666112947\t:0.01\n",
"let:0.29618821472107515\tLet:0.1668918465107833\tto:0.10725998975269602\twith:0.09991758401048546\tof:0.09020054999938383\tgive:0.08191363529587657\tfor:0.060616396113363606\tmake:0.05188251099659501\tupon:0.0351292725997411\t:0.01\n",
"to:0.34783171586156336\ta:0.23012735766194542\tthe:0.16067129331658986\tand:0.05444727395613892\this:0.04404320674415505\twill:0.043004316120444044\tnot:0.039030550910061704\twater:0.03641639977122087\tgood:0.034427885657880644\t:0.01\n",
"I:0.205836635992229\tmay:0.14005540753689455\tand:0.11410119660520185\twe:0.10785438444078473\tthey:0.09741096361594798\twho:0.09437546482641358\tnot:0.08613870978119739\tWe:0.07584478842025025\twill:0.06838244878108052\t:0.01\n",
"and:0.2808865126133064\tof:0.18110105178426195\tby:0.0890019322958133\tafter:0.08628254589152268\tto:0.08481509878285397\tin:0.08017321435285803\twith:0.06690692854729512\tfor:0.06454438091842529\twithout:0.0562883348136632\t:0.01\n",
"to:0.3090601878195527\ttold:0.14278894841878886\ttell:0.12860424837849577\twith:0.09865692941968929\tof:0.08690267099343688\tfor:0.0749197094603541\tasked:0.05886894386127228\tlet:0.0463850883448258\tgave:0.0438132733035844\t:0.01\n",
"the:0.3228698187643638\tex-:0.11459347670936303\thave:0.10965667180511406\thas:0.0975578782043028\tand:0.0945332151397745\ta:0.09189759785132105\thad:0.07250167266071433\tim-:0.043557942217359404\tof:0.04283172664768702\t:0.01\n",
"he:0.38849891655495333\tI:0.17034026599450466\twho:0.10764818183127707\tshe:0.08687619162378196\tthey:0.05686182628798716\tHe:0.05356136149383486\tand:0.051278433715959276\tthat:0.037994284847385956\twhich:0.036940537650315554\t:0.01\n",
"and:0.33688675732220197\the:0.15497694127892736\twho:0.1033877167170746\twhich:0.09091957163842317\tthey:0.0801704496582459\tI:0.07126511057150876\thave:0.05577489734492613\tbe:0.04943197835374534\tHe:0.04718657711494696\t:0.01\n",
"that:0.24070356897177692\tand:0.20663739542455684\tbut:0.11249245088808989\twhich:0.08495451539749249\tif:0.07978775183952877\tas:0.07882064849224737\twhen:0.07322290696827845\twhat:0.06140855944929351\tIf:0.05197220256873586\t:0.01\n",
"the:0.2899795600254739\tof:0.1925437567589803\tand:0.12243096533024841\tto:0.11386310768867343\tfor:0.09375048998506735\tin:0.07126045959287809\tor:0.03837028848854728\tbe:0.03525126191285086\tthat:0.032550110217280326\t:0.01\n",
"to:0.3776743323375729\twill:0.18654030884254372\tshall:0.12031851619161153\tmay:0.06825075784830757\tnot:0.05705956812877981\tshould:0.05452124660478965\twould:0.043956399419077766\tcan:0.04089235063449645\tmust:0.04078651999282059\t:0.01\n",
"spite:0.1487507634548454\tout:0.1458209698160799\tand:0.13969007688794002\tthat:0.10391708813818727\tvalue:0.10208382150396517\tpart:0.09633133876814114\tone:0.08915362516772866\tsum:0.08654755829201861\tamount:0.07770475797109394\t:0.01\n",
"the:0.2730064410655565\tof:0.2061915982928831\tand:0.15730310785276436\tto:0.11328772494832275\ta:0.06157042052140126\tbe:0.05994582659933578\twas:0.042261216958039194\tin:0.03888758922582677\tis:0.03754607453587027\t:0.01\n",
"the:0.5127272789304042\ta:0.23517497611423513\this:0.05489953664360392\tThe:0.045167783313503324\tone:0.035139930679735254\ttho:0.03104808852321817\tany:0.02727557078485782\tthis:0.026504297917232505\tevery:0.022062537093209593\t:0.01\n",
"the:0.3015884484456103\tand:0.2564232357588628\tan:0.1062708988104478\this:0.0744521307960159\tto:0.061082932037619574\ta:0.06092789979618994\tnot:0.057958468671233394\ttheir:0.03626432469099976\twill:0.03503166099302073\t:0.01\n",
"the:0.3839176705725045\tan:0.26507021518905566\tin:0.07947250393724045\tof:0.07250479359108833\tand:0.06927770300643729\tThe:0.0465270778173641\ttho:0.025861171121499528\ta:0.02421955054749795\tIn:0.02314931421731221\t:0.01\n",
"and:0.2708555229503238\tof:0.16875357166365473\tthe:0.15806028549716694\tto:0.1266985020119527\tbe:0.06506136079902888\ta:0.05367233913074959\tmore:0.052564597091336124\tin:0.048713423836331086\twas:0.04562039701945622\t:0.01\n",
"a:0.5472232738122395\tthe:0.10842550523653095\tthis:0.08927046355413626\tthat:0.05308081961577931\tsome:0.05145681132144479\tany:0.051326223933317906\tone:0.03317775311719475\tevery:0.030743169203946874\tand:0.025295980205409845\t:0.01\n",
"in:0.2335867042216249\t;:0.18180926332834607\tit,:0.1340430896871974\tthem,:0.09254351752819094\tone:0.07978662201318663\tit:0.07120360777468793\teach:0.06887856934156845\tcountry,:0.06722110733653862\ttime,:0.060927518768659074\t:0.01\n",
"set:0.5464406566180147\tlaid:0.10853300540929887\tnot:0.07685737887788532\tlay:0.05260218006214363\tbrought:0.05044672759855534\tcome:0.043456139994180354\tand:0.04094714425402938\tput:0.0399844333667316\tthrown:0.03073233381916061\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.4603341297677344\ta:0.3601758993142861\ttho:0.03460400684205309\tThe:0.03309691376371026\tthis:0.02287758801363226\tany:0.020767153979808887\tevery:0.02018205545705526\ttbe:0.019232185946481177\twhole:0.01873006691523852\t:0.01\n",
"he:0.3390078559396793\tand:0.23460826252026018\tHe:0.130080662308148\tI:0.08204761783944348\tshe:0.06151609560227265\tthey:0.041951215204439625\twho:0.04102932608802959\tit:0.03176962273236586\tbe:0.02798934176536127\t:0.01\n",
"the:0.3630437732915212\tof:0.306425250583049\tand:0.08430237719193066\this:0.07563121391564365\ta:0.04269945854931228\ttheir:0.037158877849172565\twith:0.03468210901713125\tin:0.024077677224499827\tfor:0.021979262377739645\t:0.01\n",
"enter:0.15707859451169695\twent:0.1356682559624822\tput:0.1320759020253611\tit:0.11418668608397749\tgo:0.11173622366522463\tdown:0.08711492391028465\tcame:0.08442360978451803\tthem:0.08398051124388721\tentered:0.08373529281256772\t:0.01\n",
"to:0.34739097116669293\tnot:0.15410702214796962\tand:0.13930222606997114\tthey:0.13914602541423912\tbe:0.05379866854308464\twill:0.04815990718475611\twe:0.04667703199673606\the:0.03319167618911382\tI:0.028226471287436473\t:0.01\n",
"be:0.22788456098513138\twas:0.2237450680693865\tis:0.11421013764356235\the:0.11030471795849184\tand:0.08189933011953018\tI:0.08104948251744343\tbeen:0.07291465745726625\twere:0.0409482661708114\thave:0.03704377907837664\t:0.01\n",
"of:0.19263333378134312\tand:0.18135533826935732\tany:0.10085683705783882\tthat:0.10060974795795616\tthe:0.09319827636714863\tin:0.08555474616569952\tno:0.08007226056475591\tis:0.0794003647539128\tby:0.07631909508198778\t:0.01\n",
"the:0.7662407475416705\tin:0.0867533478117192\ttho:0.03828050465988184\tIn:0.025676253657966233\ta:0.017987272952194558\tof:0.015353875157795365\ttbe:0.014365905258533375\tThe:0.012911139872560276\tto:0.012430953087678581\t:0.01\n",
"the:0.8678710279810203\ttho:0.029483012255888924\this:0.021780451468762917\tThe:0.01972406662994336\ttheir:0.016078340322547447\tand:0.01325370357238667\ttbe:0.008407804459876688\tin:0.0077834450852429715\ther:0.005618148224330793\t:0.01\n",
"the:0.4552464530266764\tin:0.30179780446801047\tIn:0.10174953151761061\ttho:0.02933233575468551\tof:0.027577790142245626\ta:0.026028634438036085\tand:0.020957368298853113\ttbe:0.015359865777543839\tto:0.01195021657633827\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"<s>:0.6492982155015994\tit.:0.07853896143876415\tthem.:0.053124750990971276\tday.:0.04446674231809223\ttime.:0.03708839517432012\tcountry.:0.03434974887523695\tyear.:0.0342304900116842\t.:0.03128113046441826\tyears.:0.027621565224913366\t:0.01\n",
"of:0.4061718721844183\tto:0.12549127481807346\tthat:0.11646835314454528\tby:0.09842653733529988\tand:0.09807313009608123\twith:0.04982855422007516\tfor:0.033121613173140343\tas:0.03243387979934149\tall:0.02998478522902498\t:0.01\n",
"will:0.2314864949605809\tto:0.22902111758308233\tmay:0.10891355019453598\twould:0.10850275698671287\tshall:0.09873092185867911\tshould:0.0735300070915607\tnot:0.05362039445388323\tmust:0.052449064313358294\tcan:0.0337456925576066\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"and:0.3634141544211113\t<s>:0.12328289904923408\tthat:0.096847732934901\tmen:0.08157220027204976\tthem:0.07157924329124107\tof:0.0691920685253098\t:0.06355906914139596\tone:0.06108162000188266\tor:0.059471012362874456\t:0.01\n",
"a:0.33752273760951884\tthe:0.2159790624462365\tand:0.11215036501996944\tof:0.08385073496078962\tmost:0.08126947048179928\tin:0.046743929066921916\tan:0.039724578001056554\tvery:0.037696819570954054\tThe:0.03506230284275364\t:0.01\n",
"foreclosed:0.21354426481975966\taccompanied:0.15326393402647306\tmade:0.13791131994204262\tand:0.13215418511823615\tfollowed:0.12340081914410177\tsurrounded:0.0697778146110107\tup:0.05787632017490193\tcaused:0.051337079258656944\tsecured:0.050734262904817265\t:0.01\n",
"more:0.4500788600062063\tless:0.16900716644448105\tbetter:0.08289749761439143\tgreater:0.07115848974331247\trather:0.07103038283837584\tworse:0.03862141159128229\tlarger:0.036206064534620795\thigher:0.03591796783111622\tother:0.035082159396213466\t:0.01\n",
"of:0.4466015844269855\tby:0.12729871029891673\tto:0.09888604239265325\tin:0.08860970207563297\tand:0.06919424034955875\tthat:0.06568702388412934\tfrom:0.033253762731907055\ton:0.03115082761394746\tfor:0.029318106226268747\t:0.01\n",
"so:0.32083196461786323\tare:0.1415911288946824\tand:0.1316657116840263\tas:0.11503279089203586\tof:0.08048529411413095\thow:0.05303614260614504\twere:0.05228468329384491\thad:0.04819914816066517\thave:0.04687313573660602\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"purpose:0.37733917341731454\tinstead:0.09819396728465433\tcost:0.09148072139326437\tmeans:0.08969382980505945\tnumber:0.08912303002812705\tamount:0.07373767961386134\tout:0.06290247248285935\tcapable:0.054408724621174506\tmethod:0.05312040135368498\t:0.01\n",
"be:0.3285016124555877\twas:0.21585764172326458\tbeen:0.13650032687852162\tis:0.08966340750133171\twere:0.062019265780243873\tare:0.055244316792661216\tand:0.04870200421138481\tbeing:0.027050905008995485\thad:0.026460519648008978\t:0.01\n",
"of:0.359798493356762\tto:0.14574332540129797\tin:0.12225210686770445\tand:0.09250020907122009\t<s>:0.081059489790197\tfrom:0.05118238803048259\tat:0.050087684588505064\tIn:0.04384176711984436\tfor:0.043534535773986395\t:0.01\n",
"the:0.5302647342717776\ta:0.09379040849225811\this:0.08653167655656367\tthis:0.06068074572265209\tof:0.05673828037177203\ttheir:0.04321116325159296\tThe:0.04199312193181504\tand:0.04052723752014907\tin:0.03626263188141946\t:0.01\n",
"and:0.16749924709343733\tout:0.1456539198251155\tknown:0.12534583499375518\tmade:0.10013516281350524\tup:0.09724793368394277\tmen:0.09607413223767551\tit:0.08860926082279433\tthem:0.08758909713195738\thim:0.0818454113978168\t:0.01\n",
"the:0.34308040956892405\tof:0.22607572958109032\tand:0.10859322234510588\tto:0.06740740167436086\tbe:0.052773548997891495\twas:0.049347904824061685\ttheir:0.04900935454528536\tfor:0.04758354197688166\this:0.046128886486398714\t:0.01\n",
"it:0.18996776648825836\twhich:0.16693146919859034\tIt:0.1638838509302785\tthat:0.1088783226660808\twho:0.09754653858074362\the:0.09729440751502057\tthere:0.07644641877125938\tand:0.047844242933137104\tThere:0.041206982916631135\t:0.01\n",
"of:0.287458900755063\tWest:0.19793570058413573\tthe:0.17340369709888576\tand:0.1352812785317711\tin:0.07869330011157703\tby:0.0395482310685724\tfrom:0.03067257632487149\tto:0.025484861426447653\tfor:0.021521454098675778\t:0.01\n",
"up:0.18784817241181564\thim:0.1379893177524732\tmade:0.10264202715188682\tmen:0.10201710279215713\tthem:0.09620596658941419\ttime:0.09421834293644565\tright:0.09205460387281905\tout:0.09059386969571255\tit,:0.08643059679727584\t:0.01\n",
"to:0.2289381636593331\tand:0.2192717513017156\ta:0.13044495051147903\tthe:0.10455834179792871\tof:0.10112613089841178\tnot:0.0771920522945969\tmost:0.04816885945488862\tor:0.04415662684441343\tin:0.036143123237232705\t:0.01\n",
"he:0.20999095849564725\twhich:0.13994856696027386\tit:0.12467601249833851\twho:0.10787117938575444\tand:0.10302585195074533\tHe:0.09074100677468912\tthat:0.09065361366615368\tIt:0.0870777946673486\tshe:0.036015015601049305\t:0.01\n",
"the:0.2937627657220809\t.:0.17134530985259755\tsaid:0.1537592256043615\tof:0.08272409744354313\tand:0.07129465678483368\t<s>:0.06476326068198768\tW.:0.0601724588420952\tMr.:0.04846581534136762\tE.:0.043712409727132695\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.2415177786886019\tbe:0.22162191064265233\twas:0.11218206542882786\the:0.08556831953736074\thave:0.08202933259870304\tbeen:0.07365512728838007\tis:0.0697854292434405\thad:0.05236969389416214\thas:0.05127034267787137\t:0.01\n",
"<s>:0.48511790102509256\t.:0.12190847012452044\tit.:0.09718665845214784\tthem.:0.07584715059411823\thim.:0.04733775978303207\ttime.:0.045525826789683546\tof:0.04253708239082295\tday.:0.03772311027039188\tcountry.:0.03681604057019031\t:0.01\n",
"of:0.3463617661224352\tto:0.13371672413562832\tand:0.10322387083542395\tin:0.0882992557273436\ton:0.08212807313414629\tthat:0.07262316533185112\tat:0.062298837297304725\tby:0.05226651861755747\twith:0.0490817887983094\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.24396549952477586\tof:0.2387055419113165\tand:0.16867944032370094\tto:0.09602054029006402\ta:0.0860594658571435\tby:0.042985735678672955\tbe:0.041766764615108136\tin:0.039650273917566196\tas:0.03216673788165189\t:0.01\n",
"the:0.6886622143861706\ttheir:0.06079946702012311\ttho:0.04090571585711634\tof:0.03753947035307753\this:0.037271569100104956\tin:0.03367203721781362\ta:0.03222613430262321\tand:0.03158984082480506\tits:0.02733355093816544\t:0.01\n",
"the:0.2920206063550032\tvarious:0.16893164814783385\tall:0.13184520332112018\tother:0.11983024834571737\tand:0.10752906840918997\tby:0.047077190387755576\ta:0.045447281643376296\tmany:0.04016509199507486\ttwo:0.03715366139492857\t:0.01\n",
"and:0.17722291469113738\tof:0.1320986679916092\tput:0.12922151543728752\tas:0.12006344742945622\tmake:0.10394397296081156\tthat:0.09994954798090332\tfor:0.08271405305777428\tto:0.07588001229998377\twith:0.06890586815103679\t:0.01\n",
"of:0.28857126887919654\tto:0.2610554573815797\tby:0.13538119302038915\tand:0.12009298652543944\tthat:0.059113442526050775\t<s>:0.03896396987735579\tat:0.032284535125433333\tin:0.02998718371779933\tfrom:0.02454996294675593\t:0.01\n",
"tak-:0.4782721499252589\tgiv-:0.17037590218265095\tgiv­:0.06409163406788328\twas:0.06176940002568712\tbe:0.05070492348904951\tand:0.04954604077176617\ttak:0.04242778007012745\twom-:0.03826287112186382\tfall-:0.03454929834571277\t:0.01\n",
"and:0.2809266111445266\twas:0.17900214778011597\tis:0.0945251456025579\tbe:0.08014558148011883\tbeen:0.07686580796122694\tthat:0.0738556429142002\tmen:0.07171313538046635\tfound:0.06685817018390401\twere:0.06610775755288323\t:0.01\n",
"a:0.29758910663305543\tthe:0.27423539380877837\tany:0.11748842211131856\tthat:0.08968490661350281\tthis:0.054721926404863785\tevery:0.04658436821377061\tgreater:0.04460875833254082\tlatter:0.03430552952077778\tno:0.030781588361391832\t:0.01\n",
"of:0.3716924261869277\tto:0.17193924987089773\tin:0.1193535323057648\tby:0.0853320514935088\tthat:0.08165966200872264\tand:0.04600443211720446\tfor:0.043455005293559466\tfrom:0.03743283839818228\twith:0.03313080232523197\t:0.01\n",
"and:0.2708555229503238\tof:0.16875357166365473\tthe:0.15806028549716694\tto:0.1266985020119527\tbe:0.06506136079902888\ta:0.05367233913074959\tmore:0.052564597091336124\tin:0.048713423836331086\twas:0.04562039701945622\t:0.01\n",
"and:0.2745085733614055\t<s>:0.2616208471456284\tthat:0.16993421331784278\tor:0.055767763091307244\tthe:0.049368029570340366\tas:0.04638537533991362\tbut:0.0458512211373731\tit.:0.04576658046552354\tthem.:0.04079739657066547\t:0.01\n",
"I:0.2308654075964329\twho:0.14925482731446135\tthey:0.13058427908829323\twe:0.11932986473664363\tto:0.11370738096737318\tWe:0.07067216971575685\twhich:0.06063801984309635\twould:0.05870200153213072\tand:0.05624604920581183\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"be:0.26971507229507197\tand:0.23248807470937385\twas:0.12142753494127824\tis:0.08844418386101738\tare:0.06598468883793729\twere:0.06054546306121178\the:0.060036355504733414\tthe:0.04656404401279457\tbeen:0.044794582776581576\t:0.01\n",
"of:0.410931132735847\tto:0.12363286140947104\tin:0.09654701169880535\tby:0.06754995806087415\tand:0.06599732598478976\tthat:0.06571057222679622\ton:0.06125812784775176\twith:0.057414135166623824\tfrom:0.040958874869040734\t:0.01\n",
"the:0.527078934682733\ta:0.15225564582038037\tThe:0.1468923731780621\tannual:0.052796198007862456\tand:0.033926998477043724\ttho:0.026078067181713974\tto:0.02501957430027673\tA:0.015345005899799006\ttbe:0.010607202452128473\t:0.01\n",
"was:0.150793122812353\tand:0.128923201046156\tbe:0.1281932696795663\tare:0.11849748009984638\tis:0.11717414714935542\tvery:0.10833468733583619\tbeen:0.09492681337171816\tthe:0.07808909440529015\tso:0.0650681840998785\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.6306070272208348\tThe:0.11100249883533848\tof:0.05947252705561823\ttho:0.044563486587964454\tour:0.034502773730184275\ta:0.03375126442123598\tand:0.03125011525589155\tthat:0.025054138454302367\tthis:0.019796168438629653\t:0.01\n",
"of:0.3659720664357756\tin:0.18231432835175218\tto:0.12382778770500485\ton:0.09100975044733062\tby:0.057702654815446064\tIn:0.04571798197709014\tfrom:0.04233329359558029\tfor:0.041566627769389526\tand:0.039555508902630564\t:0.01\n",
"they:0.3392024735004142\twhich:0.12118407359814243\twho:0.11815342309856956\tand:0.09183938307199783\twe:0.0855906139993737\tThey:0.08047925341627658\tmen:0.05701719245668254\tthat:0.054512408456425396\tthere:0.04202117840211774\t:0.01\n",
"and:0.30132020239915897\tis:0.11119746070334267\tbe:0.10342383628277005\tserved:0.08924283171230943\tthat:0.08794619158593868\ttime:0.07790541440461883\twas:0.07681424830763602\tor:0.07597111826904795\tnow:0.06617869633517741\t:0.01\n",
"to:0.6247354854669194\twill:0.11350799950024257\tand:0.05517861641908905\twould:0.04495011017254534\tnot:0.04081232325128098\tthe:0.03825074671268737\ta:0.029215690618604923\tthat:0.02184094617812494\twhich:0.02150808168050549\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"at:0.9029605927761987\tthat:0.015017249046676395\tAt:0.014049693192665486\tto:0.011311625106861236\tof:0.010420820757350307\tor:0.00999059237441174\tand:0.009886145502600556\tnt:0.008993707827522216\twas:0.007369573415713436\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.22154144942409315\tin:0.17518470157154056\tof:0.17326155368628327\tto:0.12617456948815445\tthat:0.09796003053355466\tat:0.057823312230028234\tfor:0.05690399318780436\tnearly:0.04106679620263339\tIn:0.040083593675907955\t:0.01\n",
"the:0.38489692704492023\tnot:0.25309895436503543\tis:0.08049586543360475\tThe:0.06666606115667226\twas:0.06157699334400126\tand:0.05014147968100144\tare:0.0355566998920736\tof:0.03272328629210211\ttho:0.02484373279058889\t:0.01\n",
"the:0.3409949041121723\tand:0.1565851333724624\tof:0.1220470208051339\ta:0.1073399822552686\tMr.:0.06812607787115152\tto:0.0632222629247171\tThe:0.05315973059712354\t.:0.040054833919016514\twas:0.038470054142954076\t:0.01\n",
"well:0.26100882173378187\tis:0.12706465464591285\tand:0.12479899526424612\tsuch:0.11271106012114859\tfar:0.09310908289722412\tsoon:0.09205111820651243\tbe:0.06264986800560328\twas:0.06005928471977991\tbut:0.05654711440579091\t:0.01\n",
"the:0.7671690872974315\ta:0.07321876706274165\tThe:0.06998052364219105\ttho:0.035378444269377515\this:0.01657806335119618\ttbe:0.010232838675094579\tour:0.005992348029543759\tof:0.0059331207667471875\ttheir:0.005516806905676514\t:0.01\n",
"it:0.20687419694626064\tIt:0.2041185812592859\the:0.13331434700697872\twhich:0.10094655584395615\tand:0.08473585855072227\tThis:0.08385958200134508\tthere:0.061722523003561965\tthat:0.057831559521612695\tHe:0.05659679586627654\t:0.01\n",
"<s>:0.6400511223546401\t.:0.0709313879917318\tit.:0.06711720443580216\tthem.:0.043139201040287845\tof:0.039253640317857566\thim.:0.03884930182090156\ttime.:0.034402787640680534\tday.:0.029863919568001256\tcountry.:0.02639143483009712\t:0.01\n",
"of:0.407674785398844\tto:0.1277612093619651\tin:0.0981100127674003\tand:0.07987385520716705\tfor:0.06192213266467773\tby:0.059814335151744225\ton:0.0571953785601922\tthat:0.05542901686480434\tIn:0.04221927402320507\t:0.01\n",
"the:0.557461331453639\ta:0.12279282956952883\tand:0.08953298869576322\tThe:0.06089563246587472\tof:0.05772084403336681\ttho:0.030157168399956493\tat:0.02498290423304081\tstreet:0.0234155096838943\tto:0.023040791464935772\t:0.01\n",
"is:0.1833625449342424\tand:0.16261568824059883\tfor:0.12513630765687603\tit:0.12167891851589262\tthe:0.10256216924325934\tof:0.08143217335119214\twas:0.07793968671481834\tno:0.07165541845470025\ta:0.06361709288842013\t:0.01\n",
"of:0.2234419438063892\tthe:0.1831346070030075\ta:0.11224303086564748\tin:0.10325079628044039\tand:0.10090485403658338\ton:0.07803679364194172\tto:0.07448846898828099\tBlock:0.06824989879763523\tby:0.04624960658007411\t:0.01\n",
"the:0.4974604752497802\ta:0.1531732324932956\tand:0.1072636646438851\tThe:0.057559537220838675\tin:0.049778344339558175\tof:0.0361987888825459\twith:0.03368169541364676\tthat:0.028928872659250416\tsome:0.025955389097199206\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.29242299376304715\tsame:0.13239317614802068\tthat:0.1281123900074392\tsome:0.11771260359614567\tany:0.07870866864566574\tthis:0.075807157918519\ta:0.06410079654467474\tshort:0.058058039525015384\tlong:0.042684173851472336\t:0.01\n",
"they:0.2546521839887731\twho:0.13828826579684964\twe:0.12518837572895375\tthere:0.1116152942797866\twhich:0.08749207623852752\tThey:0.07640094200774886\tand:0.0674874873962165\tThere:0.06707657581183858\tthat:0.06179879875130557\t:0.01\n",
"such:0.23654042860977972\tfar:0.18160669674994573\tand:0.1656350917631207\twell:0.11267453631111059\tbut:0.07162293676184679\tmuch:0.05784527231409269\tit:0.056208745923966484\tso:0.0550190271895161\tthat:0.05284726437662123\t:0.01\n",
"have:0.272851362053406\thad:0.2624373841304089\thas:0.24604284376243907\tbe:0.07028832007197476\thaving:0.034368675722044426\twas:0.030884601251570384\tand:0.027503791043796653\tbeen:0.026876629530169414\tnot:0.01874639243419067\t:0.01\n",
"to:0.20902957655457752\tI:0.16655200030199052\t1:0.11770690458188567\tre-:0.11136263162798808\this:0.10239043797028881\ta:0.09405729129221148\tand:0.07980297581912119\tof:0.054726851908434127\tthe:0.05437132994350247\t:0.01\n",
"in:0.18748581496340025\tof:0.18423244885590992\tto:0.1573011247700228\tfor:0.13799613394199625\ton:0.0840348768867624\tat:0.07927984924882012\tand:0.06021195698595258\twith:0.054629682417875934\tfrom:0.044828111929259874\t:0.01\n",
"carry:0.2531501453566949\tthrough-:0.22987000183719142\twith-:0.1450204013714821\tcarrying:0.08293987265271313\tpointed:0.06672683102072541\tand:0.059369703054731424\tsent:0.05515216574947199\tbrought:0.049249105518804445\tcarried:0.04852177343818517\t:0.01\n",
"of:0.41295093921729686\tto:0.11990500541163829\tthat:0.0895911907598342\tin:0.08643545798081824\tby:0.07458037983631866\tand:0.06933577586268833\tfor:0.056204514412750484\twith:0.04347534129150476\tfrom:0.03752139522715013\t:0.01\n",
"virtue:0.2531118323784269\tone:0.13783951179045353\tout:0.13781151302830072\tpart:0.095641585586563\tpursuance:0.08911439945977416\tresult:0.07412670930619975\tall:0.07128278395402765\ttion:0.06738851371312381\tmeans:0.06368315078313051\t:0.01\n",
"in:0.36741301022936734\tthe:0.306636512522947\tIn:0.09960758933503545\tand:0.05634684002294841\tof:0.04530582614910073\ta:0.03619049219165578\tto:0.0324136508253891\twith:0.02707207458397405\tfrom:0.019014004139582107\t:0.01\n",
"it:0.23204502001293215\the:0.18765002605837577\tIt:0.18344252609944198\tI:0.10040823419784756\twhich:0.09209489367834257\tHe:0.055623629726409454\tand:0.05033030329012504\twho:0.04541235279631012\tshe:0.04299301414021546\t:0.01\n",
"of:0.20866201254320826\tsuch:0.13442344006003665\tin:0.12225921162042327\tas:0.1139524941246192\tto:0.10095302234974585\twith:0.08511636218624308\tfor:0.08026719715052424\tat:0.07459268879412438\tand:0.06977357117107504\t:0.01\n",
"the:0.7001355484257515\tThe:0.0971252529660804\tand:0.0573688270638737\ta:0.040533231156767054\ttho:0.04003951688606809\tof:0.019333510484075854\ttbe:0.014798629077194663\tin:0.010974457424059527\tor:0.009691026516129112\t:0.01\n",
"want:0.13730234775444214\tand:0.12849906441009235\thim:0.11827474395563463\table:0.11603193328707655\tenough:0.11148322268590737\tis:0.10430757478864866\tright:0.09699959145920163\tme:0.0893034866934016\tnot:0.08779803496559496\t:0.01\n",
"<s>:0.506094054992253\tit.:0.11022051438151417\t.:0.07985866588391309\tthem.:0.07488603320414092\thim.:0.0544840748886087\ttime.:0.044641607244588453\tcountry.:0.04378582246711113\tof:0.0386597652998989\tday.:0.03736946163797157\t:0.01\n",
"and:0.27219024079039217\twhich:0.17338738770050577\tI:0.1377195394297396\the:0.10954476549676717\tit:0.08884411690584307\tIt:0.0722600303608032\twho:0.053085876956624665\tthat:0.049970432816167455\tHe:0.03299760954315695\t:0.01\n",
"feet:0.20369910497051205\thundred:0.13885787882952882\ttime:0.13881344903869058\tmen:0.10485961158169452\tdollars:0.10279516636190753\tday:0.09013823871055368\tcity:0.08363606810351575\tcounty:0.06360745730856465\tup:0.06359302509503242\t:0.01\n",
"the:0.47911636853392614\tand:0.10078480860105794\tof:0.09954079331996062\ta:0.08696531253960743\tin:0.08219915636699002\tthat:0.04998438521116081\ttho:0.032216955252757626\tno:0.029856704288588637\tany:0.02933551588595079\t:0.01\n",
"more:0.41161164146810636\tless:0.18362374950924784\tbetter:0.13599912322140092\trather:0.05983419842875673\tgreater:0.05765890386352618\tworse:0.0482809898086628\thigher:0.03623970215530858\tother:0.028809056396717214\tlarger:0.027942635148273283\t:0.01\n",
"and:0.37763363992266946\thave:0.11089182590411581\thad:0.08944197591477922\the:0.0870338454366333\tnot:0.0843208986679955\tit:0.07684407704179934\twho:0.0654067330334365\thas:0.05084086006385274\tIt:0.047586144014718126\t:0.01\n",
"the:0.6077366731494058\tThe:0.13336262168206606\tof:0.07873612056181115\ta:0.0526800701663647\ttho:0.03751435388605632\tthis:0.028207280533686888\this:0.020089550317942094\tto:0.016212021690227955\tin:0.015461308012439034\t:0.01\n",
"a:0.38982607858325125\tthe:0.17310068393146516\tand:0.13757758952628132\tvery:0.07823815188346392\tof:0.059829638815090735\ttoo:0.04460228850871441\twith:0.04321157279419196\tis:0.033465293800068796\twas:0.03014870215747229\t:0.01\n",
"a:0.4342103493686322\tthe:0.28127427940390076\tlarge:0.13107432102392513\tA:0.04765830538767432\tThe:0.04331646657401486\tgreat:0.017644277772326085\ttotal:0.013916780429481905\tand:0.011073407679680021\ttho:0.00983181236036464\t:0.01\n",
"of:0.4456777840806273\tto:0.09560895113887723\tin:0.09284068819157618\tfor:0.08486881655226551\tand:0.07299337516704156\tthat:0.06857975944056091\tby:0.05542877245174271\twith:0.04558075691807833\ton:0.028421096059230225\t:0.01\n",
"and:0.2299411041209767\tof:0.15074220750171066\tthe:0.13609398973530612\tgo:0.09101913019175782\tit:0.0882202051602568\tto:0.0862144796042364\t<s>:0.07631032913177821\tthat:0.06762861521539874\this:0.06382993933857864\t:0.01\n",
"the:0.6643561816974463\tof:0.07554437574782254\tSchool:0.0641629900638247\ttho:0.039571635019924625\tand:0.0390160643199022\tsaid:0.035295587255170444\tJudicial:0.02869126366358156\tThe:0.02228614655781154\t<s>:0.021075755674515965\t:0.01\n",
"and:0.19781435269461353\tto:0.14466106909272458\tI:0.12517963212322608\tnot:0.12257520833491432\the:0.11632195933358676\twho:0.10664595957338145\twas:0.06440451393336206\tor:0.056235737955808364\twhich:0.056161566958382654\t:0.01\n",
"a:0.48473617204259756\tthe:0.131723925330754\tand:0.0795954944404236\tmost:0.06950671871679158\tthis:0.06714033165647862\tof:0.05235663714026378\tmore:0.040370611198584525\tan:0.03608152851067539\tor:0.028488580963430973\t:0.01\n",
"the:0.4683789316335395\tof:0.19266679123214767\this:0.0759051333109318\tthis:0.059175531217577175\ta:0.048311421669451945\tand:0.03768881277452629\tThe:0.036596324324416556\ttheir:0.0356632533042016\ttho:0.035613800533207424\t:0.01\n",
"the:0.2584915186472168\tof:0.14281346037336012\ta:0.13707013932066836\tand:0.13577938254337027\tto:0.10223324267269843\tfor:0.07851662265653192\tin:0.06124767985536818\tas:0.037344412941561954\tor:0.03650354098922388\t:0.01\n",
"be:0.16941498865227175\tand:0.1639055107700193\the:0.13754692744368893\twas:0.12116292269877052\thad:0.09115645473692861\thas:0.08322244124331735\thave:0.08315543936463533\tbeen:0.07194575902956372\tis:0.06848955606080459\t:0.01\n",
";:0.27420800686232105\thim,:0.17737404957553712\tit,:0.12315888676290337\ther,:0.09702503718414962\ttime,:0.07368920820762186\tand:0.07026947959500657\tthem,:0.06937552138339675\tman,:0.05855265829341169\tme,:0.04634715213565194\t:0.01\n",
"of:0.4061718721844183\tto:0.12549127481807346\tthat:0.11646835314454528\tby:0.09842653733529988\tand:0.09807313009608123\twith:0.04982855422007516\tfor:0.033121613173140343\tas:0.03243387979934149\tall:0.02998478522902498\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"it:0.19000958881462757\the:0.1611032502429305\twhich:0.15311706561543723\tIt:0.11848383192016272\tand:0.1179570800433267\tthat:0.0673149623449609\twho:0.06485775346284847\tHe:0.06136725348354962\tI:0.05578921407215611\t:0.01\n",
"and:0.24071477033649374\tof:0.14483685893981987\tin:0.13605665964036137\tby:0.13109891963922796\tfor:0.08206045742998255\tthat:0.07364198888901566\tto:0.07246591375488964\twith:0.06447335070149642\tor:0.04465108066871276\t:0.01\n",
"and:0.20985953749929157\t<s>:0.19655907591634078\thim:0.14562357523866687\twas:0.13081175984509055\tout:0.06888656479548368\tis:0.06378433190510589\tbe:0.06228516144860735\tit:0.05743414475324811\tmade:0.054755848598165305\t:0.01\n",
"the:0.2191964634038101\tof:0.21808534141663974\tand:0.14216558001463114\tto:0.12496468060450602\tat:0.09587163473629061\ta:0.06131232564407417\t.:0.051114949878341163\t<s>:0.04140729045389009\tby:0.035881733847816864\t:0.01\n",
"of:0.3420422053370365\tto:0.1388434664336376\tin:0.13786264416522526\tand:0.08027954924229379\twith:0.07123181302638898\tfor:0.06369579859368074\ton:0.06135083543937238\tby:0.04859824571313037\tfrom:0.04609544204923423\t:0.01\n",
"the:0.298217976211665\tof:0.1551488962279768\tand:0.11022646645326513\tto:0.10806076870808985\ta:0.08566635339214888\tin:0.0693053126286597\tas:0.06422676447068883\tbe:0.055996025589401754\twas:0.043151436318103906\t:0.01\n",
"the:0.2740597899224893\tand:0.16819347676945415\tof:0.14959249176154793\tto:0.08955528211699255\tbe:0.07249954314540305\tin:0.07002756505712975\twas:0.06530555940660156\tfor:0.05300277867790141\ta:0.04776351314248035\t:0.01\n",
"<s>:0.24671182559661217\tand:0.20112243102936497\tthat:0.10121479852359354\tit:0.10019658219129267\twas:0.08661432370720633\tthem:0.07618982158187139\tis:0.06437390257107117\tbe:0.058704157144088435\thim:0.054872157654899306\t:0.01\n",
"of:0.276593823505341\tthe:0.22904881665308102\tin:0.1299659186314893\tother:0.07919909902840937\twhite:0.06218357585957539\tand:0.058429068901502325\ton:0.054386632761011244\this:0.05374039708735937\tan:0.046452667572231016\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"called:0.6989690392971751\tdepended:0.06784725000117099\tagreed:0.064445230094255\trelied:0.06075569553389275\tlooked:0.03618610811376424\twent:0.02063485173947466\tlevied:0.014420548732403197\tdue:0.013643896317551585\tlook:0.01309738017031246\t:0.01\n",
"the:0.3750384762589013\tand:0.15576776943066303\tof:0.11608042505907364\tMr.:0.08439344936867432\tThe:0.0792024172348829\ta:0.061633308384532494\this:0.0442242362747654\tI:0.03748669960758615\tthat:0.03617321838092082\t:0.01\n",
"the:0.27406754032465286\this:0.18858943517702526\ttheir:0.15385372546191314\tour:0.09547071380502052\ther:0.07430318349032826\tmy:0.05797710405564233\tits:0.051891447637362344\tyour:0.047348844648223996\tof:0.04649800539983133\t:0.01\n",
"of:0.19141594771183146\tand:0.1683906335326966\tsuch:0.1117248738899915\tall:0.10015746455435351\tthree:0.08555952904865911\tmany:0.08555372626619262\tthe:0.08540595679879859\ttwo:0.08393769740309492\tor:0.07785417079438164\t:0.01\n",
"of:0.35285517222883295\tand:0.15074086227886466\tthat:0.10573925556427922\tin:0.0876649328126259\tfor:0.08033526615083397\tto:0.07918465191164793\tby:0.04938216274313855\tfrom:0.04404277256241283\twith:0.040054923747363996\t:0.01\n",
"the:0.5548194392288006\tof:0.1407976319241318\tan:0.07998220584320886\ta:0.046931917121458236\tThe:0.039662295856803156\tto:0.03414622896379321\tand:0.03274701466001261\ttho:0.031710996262691145\tin:0.0292022701391004\t:0.01\n",
"the:0.26358920341114905\tand:0.22247837184209107\tof:0.10956735851370902\tto:0.07232054457748906\the:0.06999120373090943\twas:0.06651369884694273\tthat:0.06332353782515143\tbe:0.06312110156437874\twhich:0.05909497968817936\t:0.01\n",
"went:0.149761658615052\tbrought:0.14942738348440895\tgo:0.13643566576570176\tcame:0.1289840586247301\tput:0.10421133375710219\tenter:0.10272776065590386\tand:0.07479320458739686\tit:0.07351964022232434\tthem:0.07013929428737989\t:0.01\n",
"he:0.18439554537529163\twe:0.17411526059557733\tthey:0.16366668237796356\tI:0.13007758849163434\tit:0.10489832537168435\tyou:0.06947447338555374\tIt:0.05632386369924676\tWe:0.05596363433214236\tand:0.051084626370905876\t:0.01\n",
"in:0.27491975879897823\tof:0.25055775993326446\tto:0.13759898026396558\tat:0.07492845160838572\tor:0.05365651005110351\tby:0.05289536899312548\ton:0.05138919596931304\tfor:0.04764861892621108\tIn:0.046405355455652955\t:0.01\n",
"to:0.3207121250979801\tand:0.21375187088370687\tnot:0.12939142216265911\tthe:0.08101259716266937\tof:0.06425013492321091\tin:0.06237854147608914\tI:0.041041347781365915\tit:0.04034953346026776\tor:0.03711242705205075\t:0.01\n",
"of:0.22161317184245044\tto:0.1440733024278153\tfor:0.1330542117905565\tin:0.10590072061720249\twith:0.08555920648509445\tat:0.08101921951794565\tas:0.07726333038235435\tand:0.07234030289596569\tby:0.06917653404061519\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"in:0.42491855588137334\tof:0.2604186618099256\tIn:0.09479368520374605\tfrom:0.052946120026655205\tfor:0.05125993595821761\tto:0.047227833867237036\tand:0.026160659138508697\ton:0.019761933522016453\tat:0.012512614592319787\t:0.01\n",
"be:0.3215665769706784\tis:0.15683302893746387\thave:0.08754088404422368\twas:0.08565483519231518\tare:0.08034143472356571\tand:0.07398682099436457\thas:0.06706642404199213\tbeen:0.06427556358340863\the:0.0527344315119877\t:0.01\n",
"was:0.2200709723461217\tis:0.14418104471534238\tbe:0.13860391668106078\tand:0.12238913741482675\tare:0.10579914474946055\tas:0.08443818948781101\twere:0.06393388380587779\tbeen:0.060799610939974914\tthe:0.049784099859524165\t:0.01\n",
"it:0.15567811871116852\tthey:0.1445559325410381\tand:0.1184491868441527\twhich:0.1181035235347431\the:0.11219145577320813\tI:0.08839970325081575\tyou:0.08768468196965797\tthat:0.08334659137627826\tIt:0.08159080599893746\t:0.01\n",
"and:0.33608506607029787\tthe:0.21529329851803855\tof:0.20260542764551523\tor:0.04880243951788241\tby:0.04557098473670627\tmany:0.043325208206084494\tfor:0.034972156103886765\tthose:0.0317569265460429\tthat:0.031588492655545516\t:0.01\n",
"Kansas:0.2419235274062442\tYork:0.20204718214072487\tthe:0.14645645397981108\tJersey:0.11242635250090745\tLake:0.06686019827611298\tSioux:0.06681204025849127\tof:0.06392713479947768\tAtlantic:0.04746921718208356\tCarson:0.04207789345614691\t:0.01\n",
"the:0.297492901961497\tof:0.17741408266195474\ta:0.14645768029163828\tand:0.09158810426380848\tor:0.07279359814981\tto:0.06981668528850316\tin:0.0589873299937157\tany:0.0419198791673564\tbe:0.03352973822171621\t:0.01\n",
"he:0.40631202622772916\tand:0.16358711329535994\twho:0.07839092266421754\tit:0.0662456879800417\tHe:0.0630308354947407\tman:0.06203013151814866\tIt:0.053578453338270195\tshe:0.05198216896990302\tas:0.04484266051158919\t:0.01\n",
"and:0.1975647219137437\tto:0.16907305955240778\t<s>:0.15427334652004354\tthe:0.09756035676727966\tMr.:0.09655888129056023\tSt.:0.0860623172553797\t.:0.08074459945592269\tthat:0.05775931527564688\tit.:0.05040340196901567\t:0.01\n",
"was:0.24200121866158691\tbe:0.20382208209811248\tis:0.1979278783850731\tbeen:0.0792348263081028\tnot:0.06491108457002308\twere:0.05843800385283713\tare:0.050608191043375085\tit:0.049134349133591444\tso:0.04392236594729788\t:0.01\n",
"the:0.2727566375617429\ta:0.2164425752629676\tto:0.128073443688416\tand:0.08590145220534968\tsoutheast:0.07363709309279445\tnorthwest:0.06650768479973741\tsection:0.062082024318136524\tof:0.04820280815706006\tnortheast:0.036396280913795404\t:0.01\n",
"and:0.2153587075802431\t;:0.11922285953410493\t.:0.1144942793660527\tit:0.10909403337719908\tthat:0.101271211508559\t<s>:0.09389979818878712\t,:0.09077719436832993\tthem:0.07458335020026904\tit,:0.07129856587645504\t:0.01\n",
"in:0.378772442722139\tIn:0.10745921186594277\tthe:0.09358155903086147\tinto:0.0758972997835431\tof:0.07567799321613855\tand:0.07314686314933046\ttheir:0.06614896150833718\tits:0.06583065838826548\this:0.053485010335442035\t:0.01\n",
"and:0.2854264651535844\twas:0.1199371907304285\tmade:0.10613345733596058\tthat:0.0990842628268067\tis:0.07922806179484164\tout:0.07754549482770905\tup:0.07620427238330926\twork:0.07579316491126531\tbut:0.07064763003609449\t:0.01\n",
"May,:0.15682513485162528\tD.:0.1458607825946499\tJanuary,:0.12478352808228112\tAugust,:0.11191671639503176\tApril,:0.10960756029006054\tMarch,:0.09510097679456046\tand:0.0833637325442707\tJune,:0.08174843823854756\tOctober,:0.08079313020897268\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"in:0.19251291019226324\ton:0.1606229382477864\tof:0.12176339236240093\tthe:0.10019052926164995\tand:0.09212161000896578\tat:0.08620086097637968\tto:0.08445429587437069\talong:0.08257357916963465\tIn:0.0695598839065487\t:0.01\n",
"the:0.28902363059981356\tof:0.17593165687854917\tand:0.13487934685845232\tto:0.11571139010764564\tat:0.09107703037630034\ta:0.06865240533232894\tin:0.0501539119385692\this:0.034084947202443774\ton:0.03048568070589699\t:0.01\n",
"and:0.3198238921630681\tof:0.15960391414308947\tto:0.11027367998179559\tfor:0.07689806423854516\tthe:0.07589420012617806\twi:0.07036934175147526\tI:0.06734863880605986\t<s>:0.05936046500734497\tthat:0.050427803782443444\t:0.01\n",
"of:0.4534292371844012\tin:0.32540566910182117\tIn:0.11693891493125916\ton:0.023892047553444772\tfrom:0.01721205467292114\tthe:0.014523628168673272\tat:0.014415826157853938\tand:0.013146981933728928\twith:0.011035640295896492\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"be:0.21173345442161426\twas:0.20380423619830226\tbeen:0.11870408380681109\tand:0.10250945008524834\the:0.09555217903838804\tis:0.07385701173743746\twere:0.07290927519745027\tthe:0.05856239762650729\tI:0.05236791188824097\t:0.01\n",
"a:0.30249290864794176\tthe:0.1974057982167877\tand:0.10836866720498886\tmore:0.09759698824744399\tan:0.06718989347695589\ttheir:0.06608933415059491\tvery:0.05827060797492827\this:0.04833755967191588\tof:0.044248242408442724\t:0.01\n",
"and:0.24450790453368804\tthat:0.19100973831142737\tas:0.1312787695426846\twhich:0.10007526448822142\tbut:0.09142801229915751\tif:0.07881151212781712\twhen:0.06772802275698957\twhat:0.05016470161486357\tIf:0.034996074325150804\t:0.01\n",
"of:0.2879095906736429\tby:0.15147283143704135\tto:0.13226073003663077\tthat:0.1285469390652348\tand:0.12636804441264757\twith:0.05074601143565901\t<s>:0.04360499343411609\twhich:0.037163493311764606\tas:0.03192736619326302\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"be:0.3968664771485683\twas:0.16351985087298476\tis:0.0913910722933337\the:0.07367113792143404\tare:0.058755377958417156\tbeen:0.05857393013555027\tand:0.056766480613009894\twere:0.05658530835166147\thave:0.033870364705040554\t:0.01\n",
"number:0.17500923902984578\tstate:0.14823313197342397\tamount:0.11773985628084181\tState:0.11352957709246989\tsum:0.09881407663640368\tboard:0.09469904310548297\tout:0.08999762914645744\tline:0.07962192824446165\trate:0.07235551849061271\t:0.01\n",
"a:0.5571175052985184\tthe:0.25693392323785913\tand:0.045184986862295766\tvery:0.03232219185741342\tThe:0.030339069598990832\tof:0.019040647775713123\this:0.018588309830089696\tmost:0.015606421311653507\tsome:0.014866944227466046\t:0.01\n",
"the:0.3141697498569716\tof:0.13596872111181624\tThe:0.13148451940784603\tMr.:0.12071271065510487\tand:0.08466951013671548\tthat:0.08137847559446529\ta:0.05140346651734129\tMrs.:0.04087284649549475\this:0.029340000224244486\t:0.01\n",
"the:0.4232498860561606\tThe:0.13716649437641384\ta:0.11226261023989041\this:0.09629190662173172\tof:0.06599523684775953\tan:0.05800652212108843\tat:0.033364188213551145\tand:0.03293728603417995\tNo:0.03072586948922431\t:0.01\n",
"a:0.7855270038428781\tthe:0.10843110075528772\tA:0.0366846753530374\tThe:0.01775287814948813\tyoung:0.013001015990614635\tone:0.012607634036040434\ttho:0.006480270029123675\tany:0.004885809015891465\tfirst:0.00462961282763844\t:0.01\n",
"to:0.3122469870921608\twill:0.20485207897649774\twould:0.10217401539184749\tnot:0.0847424183929901\tmay:0.07385012372252263\tshould:0.06998515730852457\tshall:0.05981425406312099\tcan:0.041262580581240854\tmust:0.04107238447109475\t:0.01\n",
";:0.1956087101764827\thundred:0.18734824832200453\tin:0.12206350913687183\thim:0.0997693333743997\t.:0.08312133453057588\tit,:0.07689453919982184\tup:0.07680896320848368\t,:0.07619677265738092\tit:0.07218858939397887\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"be:0.3178855599425475\twas:0.2470501677531483\tbeen:0.09954756831572337\tis:0.07610151833945207\twere:0.07195893831771638\the:0.05685795137236281\tI:0.04204545597316422\tare:0.04151033620898685\tand:0.03704250377689836\t:0.01\n",
"the:0.26991401513534163\tof:0.17758310881913575\tand:0.1132165170202487\tbe:0.10651158488158954\tto:0.08172942900656562\this:0.06483671170343962\twas:0.06424434113642574\tre-:0.057268642520917214\ttheir:0.05469564977633614\t:0.01\n",
"No.:0.1933586283182993\tand:0.15676749055908437\tthe:0.13393812525374674\tof:0.1264478384532672\tat:0.08881292736526274\t.:0.08094643297346761\ta:0.08008049067163032\tsaid:0.06664873799122828\tto:0.06299932841401341\t:0.01\n",
"real:0.5503519720092609\tthe:0.297281622444104\tsaid:0.047029909020652905\tand:0.025560953655861494\tThe:0.0220997424879726\ttho:0.014402094347120998\ta:0.014233197610004819\tan:0.01300107073571977\tof:0.006039437689302385\t:0.01\n",
"the:0.4120376622209003\tThe:0.15992101481930826\tof:0.1359821497044457\tand:0.06975351737182434\tno:0.06707027655185739\tmore:0.03916440146153698\tan:0.03592839005421461\ta:0.035124364656095496\this:0.03501822315981699\t:0.01\n",
"the:0.2161423204811599\tand:0.20990934386273175\tadjoining:0.1273846419825258\tof:0.12183320337136568\ttheir:0.09705634519564449\the:0.07374078656922675\this:0.05478146755112004\tor:0.054749765868044795\tis:0.03440212511818086\t:0.01\n",
"of:0.2491342968063796\ton:0.1863194877503726\tin:0.15912037733914042\talong:0.12906100249938385\tto:0.10594922826768384\tat:0.045717820226317464\tIn:0.03949969212586573\tfrom:0.03870358109929881\tby:0.03649451388555766\t:0.01\n",
"the:0.34039051485312716\tand:0.16659851149759874\tof:0.13116392200896862\ta:0.09639762150594987\tto:0.07305075389892439\tin:0.06502167312187218\tThe:0.054186631065786375\tor:0.032195262228691665\tfor:0.030995109819081067\t:0.01\n",
"the:0.4674199934767546\tof:0.20889783548664828\ta:0.09564271335825031\tand:0.05955978078087502\ttheir:0.035128054512738996\tThe:0.034097344415926226\ttho:0.03067258300163228\this:0.02953417428869872\twith:0.029047520678475446\t:0.01\n",
"they:0.2544178442645591\tThere:0.22373089371346083\twe:0.09660721890196075\tand:0.09439339941937588\tThey:0.08373820747316887\tthere:0.06642448319695794\twho:0.06501410351225388\tI:0.06188933887969361\tyou:0.04378451063856914\t:0.01\n",
"and:0.28905894539035043\tfact:0.1747083301409929\tsay:0.11253810832358295\tsaid:0.0912049284532288\tbelieve:0.07930045219409566\tknow:0.07644438943481721\tso:0.060570153986121464\tall:0.05512445087235804\tis:0.051050241204452514\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"is:0.2886452395922832\twas:0.16933152055155848\tand:0.1048242516527738\tare:0.10235740095505151\tbut:0.06950835789498845\thas:0.06540553462125907\tit:0.06484502596599319\twill:0.06299047004929506\thad:0.062092198716797255\t:0.01\n",
"he:0.29500987484408203\tI:0.19376324032223383\twho:0.1125784489564256\tnever:0.08593073808983333\tHe:0.07631551042939896\tand:0.07238469514327239\tshe:0.07083838596467334\tthey:0.04723871189799819\t1:0.0359403943520823\t:0.01\n",
"get:0.1466179279908691\twas:0.13816166858847523\tand:0.13411725524820045\thim:0.10611862598008347\tit:0.10231181039389517\tthem:0.09727726821367766\tare:0.09515897845536371\tgo:0.08768078124059613\tcome:0.08255568388883913\t:0.01\n",
"the:0.7362775675072111\tThe:0.07017880030734062\ttho:0.044082046281810096\tat:0.03625282547516953\tof:0.03612165390794826\tand:0.019846959137892414\ta:0.01618274263545178\ttbe:0.016176710396298498\this:0.014880694350877612\t:0.01\n",
"law:0.16218267092714145\tone:0.14556723921392092\tdruggists,:0.13232240255366615\tperson:0.11234231917965817\taction:0.104824856729166\tman:0.09403780487015162\tyear:0.092438423945039\tthat:0.07522461816800771\twhether:0.07105966441324908\t:0.01\n",
"the:0.2934620670631732\tof:0.2141593332667423\tand:0.15945002087278187\tto:0.06780370218056998\tthat:0.06419988100345989\tThe:0.06058387775262816\tin:0.0583461619364558\twhich:0.03917179644278349\tor:0.03282315948140535\t:0.01\n",
"and:0.3306180242931978\tthe:0.1767625438498928\tto:0.13689414650170464\tof:0.08138673707942752\tthat:0.05724599870862382\ta:0.05593567434879071\tor:0.05349106388258672\tas:0.05222450798352553\tI:0.04544130335225059\t:0.01\n",
"and:0.1792655031315317\twas:0.16628087709068293\thave:0.14866277187461746\tbe:0.13567589038686034\thad:0.10665876559019574\tis:0.07426900646011181\tbeen:0.06920912049558833\the:0.06563633343813495\thas:0.04434173153227679\t:0.01\n",
"of:0.43580142754149404\tto:0.15310937312911016\tand:0.08040415029648905\tby:0.06289461336991556\twith:0.06274588427243205\tthat:0.061599743224094304\tfor:0.05071508507695289\tfrom:0.043730519772986545\tin:0.03899920331652537\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.3857537221777004\tto:0.1274970363140913\tthe:0.08327298951416362\tor:0.07839401701236307\tis:0.07150390314177353\tof:0.06957668997556904\twas:0.06249555105519553\tare:0.05719013146982268\twith:0.05431595933932092\t:0.01\n",
"the:0.3451306091772989\tother:0.12662729981696894\tof:0.12259741749204245\tsuch:0.08450001342363098\tin:0.0832005730343743\tany:0.06553778575019732\tpublic:0.057052268818911976\tand:0.053235496613346825\ttwo:0.05211853587322831\t:0.01\n",
"the:0.2953544238323081\tof:0.1905502356800568\tand:0.11048656488447613\t.:0.10430984015895757\ta:0.10238929871975465\tto:0.06490874828103697\tat:0.041108323707966465\t<s>:0.04061879714325807\tin:0.040273767592185164\t:0.01\n",
"<s>:0.28959282112107226\tit.:0.2102246522241461\tthem.:0.11239194466960022\thim.:0.09858905609399621\t.:0.09464855767027978\t?:0.05463746146655853\ther.:0.046137129110367804\tme.:0.04272151964455287\tlife.:0.04105685799942615\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"it:0.35505309117815476\tIt:0.2256851548211504\twhich:0.09186997500389063\the:0.07427712557156563\tand:0.06860291172058657\tthat:0.06252393229388647\tthere:0.045646756155683414\twho:0.03881624702318383\tThis:0.027524806231898347\t:0.01\n",
"be:0.3165855358986849\twas:0.19806118958828492\tbeen:0.13830702710670267\tis:0.10389228061505444\tare:0.06511657973760925\twere:0.06137127801363572\tand:0.03916078365446688\tbeing:0.03632773584870169\thave:0.031177589536859483\t:0.01\n",
"the:0.3620523228938268\ttheir:0.11641603190724382\ta:0.11020829734808012\this:0.10860803444771482\thave:0.0730103693654177\tof:0.06836627044075913\tand:0.05463401661146124\tno:0.054353742299615974\tits:0.04235091468588037\t:0.01\n",
"the:0.2501550870616374\tof:0.17327320107306704\tand:0.14388289249475147\tto:0.11475751953988338\ta:0.09038001401223485\tin:0.07346713906469314\tbe:0.06537517806815311\tis:0.042347954547891406\tor:0.036361014137688295\t:0.01\n",
"State:0.48516267501828\tstate:0.11382629769278049\tCounty:0.07464197106053203\tcity:0.07314915251400973\tdeed:0.05795292972465242\tcounty:0.05471151444263428\tday:0.04883483738593812\tCity:0.04542161393026802\tline:0.03629900823090495\t:0.01\n",
"part:0.21496902104278678\tone:0.20912369233988043\tsome:0.12867331343811736\tout:0.1057303116879626\tmembers:0.07618604502434112\tand:0.06636584999188522\ttion:0.06479865598258486\tportion:0.06226235532256281\tside:0.061890755169878825\t:0.01\n",
"to:0.20824004866035978\tthe:0.2040097545902015\tand:0.19980432728505823\tof:0.15978957334487476\tin:0.06337877849958568\ta:0.05463758289552893\tnot:0.03746152227349155\tI:0.031804518390908185\tbe:0.030873894059991417\t:0.01\n",
"the:0.25533460727049956\tand:0.20610306713581766\tof:0.12083930905472434\tto:0.09606507596447902\tfor:0.07692082258265392\tor:0.06305416228986642\tin:0.06256745572774812\tbe:0.05983040214564902\tare:0.049285097828561934\t:0.01\n",
"to:0.2291599023600459\tI:0.13871946602755938\twould:0.1330455404601739\tthey:0.11537319596311135\twe:0.10498230354658346\twho:0.08173080463455146\twill:0.07730390766292998\tyou:0.05776733890846799\tand:0.0519175404365766\t:0.01\n",
"and:0.19396328468818805\the:0.13365383260949587\tbe:0.11806085430041525\thave:0.10614162871845492\thad:0.10296288022868405\tre-:0.10205391325344308\twas:0.09560052359529136\thas:0.07351152497054814\tHe:0.06405155763547932\t:0.01\n",
"to:0.23090650016367734\tor:0.2213485533999857\tand:0.15817835130364993\tnot:0.08565977709869413\tof:0.07757705371130531\tthere:0.05662018253673487\tthe:0.0564554375395424\tnor:0.05269989987556751\tthat:0.050554244370842806\t:0.01\n",
"of:0.7704670414623825\tin:0.08410069789098448\tand:0.023562903674285856\tIn:0.021562097605687554\tfor:0.020948368070855185\tto:0.020402411088782994\ton:0.01844847103196917\tby:0.01572211702242854\tfrom:0.01478589215262373\t:0.01\n",
"the:0.37720785757464537\ta:0.13352058254078977\tsame:0.10396549509983745\tthis:0.08585507385488907\tany:0.07569160803987775\tsome:0.07443381334643433\tthat:0.06809169460489287\tin:0.03851400191420548\tfirst:0.03271987302442787\t:0.01\n",
"the:0.6441949354831031\ta:0.13314543296683976\tThe:0.07019736486477647\this:0.04347877121592439\ttho:0.03205045406619371\tand:0.022957530293930557\ttheir:0.017564704392708463\tits:0.014844471825225223\ttbe:0.0115663348912984\t:0.01\n",
"an:0.5350895995198338\tthe:0.33259141945902676\tand:0.03219023834702909\tThe:0.023248960564139626\ttho:0.015271596503208324\tto:0.01427520322908516\this:0.012978268335188333\ttheir:0.012316018469069344\tfair:0.0120386955734195\t:0.01\n",
"the:0.27822339295388077\tof:0.17148416018172988\tto:0.16579699066053727\tand:0.09961601000483424\tbe:0.0757146188840659\tis:0.055974772635520684\twas:0.05344171784257728\tin:0.04789553186835625\tfor:0.04185280496849776\t:0.01\n",
"it:0.250973334597908\tIt:0.2176541700899006\the:0.1311540454517954\tthere:0.12120230720663004\tI:0.06941485828457919\tThere:0.06680822164937165\tand:0.04604893483140866\twhich:0.04354115213238312\tHe:0.04320297575602343\t:0.01\n",
"of:0.32647624327627356\tdeprive:0.14958020731633473\twith:0.11603167015733604\tto:0.08373334408907589\tupon:0.08282820460043942\tfor:0.07933566352658347\tby:0.07107643872081175\tmake:0.041611497456854\tgive:0.03932673085629125\t:0.01\n",
"and:0.2712036552885177\tof:0.2188435888598018\tfor:0.10098045936083726\tto:0.09387665395253708\tin:0.07091223433498646\tdo:0.06543447855452027\tor:0.06277370140691006\twith:0.05956018720819932\tthe:0.04641504103369007\t:0.01\n",
"and:0.2275568136184341\tof:0.198357135738386\tthe:0.1750661188511791\tto:0.07855314553146203\tfor:0.06714821591926588\ta:0.0663876628110636\tthat:0.06195441710685245\twhich:0.06002681078592804\tor:0.05494967963742877\t:0.01\n",
"of:0.24154188555195136\tand:0.17304237601845698\tby:0.16067827088997907\tthat:0.13187717922165462\tto:0.12562545643049144\twith:0.05639936317199463\t<s>:0.03923997264814014\twhich:0.03754629138117386\tfor:0.024049204686157857\t:0.01\n",
"have:0.18485434417454974\tbe:0.17656677006850313\thad:0.1702394606110656\thas:0.1540325496340527\twas:0.10104992764692054\tand:0.07140707470773457\tbeen:0.06168405850413478\thaving:0.03596030390708446\twere:0.034205510745954425\t:0.01\n",
"of:0.43367588416535513\tin:0.18198945878128966\tto:0.08593692627201452\tfrom:0.07268217448810713\ton:0.047132076030598394\tand:0.04629463717442626\tIn:0.04427137854320853\tby:0.043379093600198544\tat:0.03463837094480181\t:0.01\n",
"of:0.30276290336098427\tin:0.17373070699581358\tand:0.13568525275055712\twith:0.08434661399621207\tall:0.06845724320055331\tfor:0.06369570354113539\tto:0.06297147020028784\tfrom:0.05046437720855154\ton:0.04788572874590481\t:0.01\n",
"able:0.14511234966528908\tand:0.13172820859723178\tis:0.1247686614230459\thave:0.11730326646781511\thim:0.11082659939939717\thad:0.0955401572626202\tright:0.09040877079752839\tenough:0.08874364021609925\twilling:0.08556834617097307\t:0.01\n",
"a:0.34598725464759816\tthe:0.32835017784554044\tof:0.09846787096716494\twith:0.0548625526729733\tthis:0.041521199089276914\tand:0.03507760480954689\tin:0.032406961593652236\tA:0.02759301902458879\tso:0.02573335934965828\t:0.01\n",
"and:0.3178995508161559\tof:0.16358606292870745\tto:0.13691460109544495\tthe:0.08644963190126365\tfor:0.07099377802019305\tin:0.06222996015954023\tbe:0.05394763601971608\tis:0.05104014644654924\tthat:0.04693863261242955\t:0.01\n",
"and:0.36589722240622385\tthat:0.11879104527843783\twas:0.0808321569096629\tthem:0.0758169660651014\tmade:0.07343615971296241\tas:0.07226863543357233\tit:0.06934005464314696\tup:0.06798728477283876\tor:0.06563047477805344\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"Provided,:0.24644062284530985\tprovided,:0.13147875694719013\tprobable,:0.124164628559132\t;:0.10165909247333556\tis,:0.09395304785497587\tnot,:0.08126377474949688\tand:0.07681205152383601\tvided,:0.07617883209823591\tare,:0.058049192948487705\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"to:0.3450145402883448\tfor:0.15055317088344503\tof:0.14692073252046967\twith:0.09077090886718044\tupon:0.06781586361479995\tabout:0.05433488245062121\ttold:0.04623333154274716\tand:0.046201474828783\tin:0.04215509500360876\t:0.01\n",
"can:0.18098901248605528\tto:0.16596950461582366\tcannot:0.15808000669320924\tnot:0.14213350860808077\twill:0.07634708129153069\tcould:0.07414555074282375\tmay:0.07089403193888263\twould:0.06706704231569628\twell:0.05437426130789768\t:0.01\n",
"the:0.44659049076610746\tThe:0.12404601092590727\tof:0.09374944352364632\tand:0.0839490507861838\tour:0.06558140274255206\ttheir:0.05894593646069792\twhose:0.04095331905140395\tor:0.039463535255455116\tthese:0.0367208104880461\t:0.01\n",
"the:0.5883396130897794\ta:0.07503032728594342\this:0.07198244691007162\tof:0.06540436634609044\tno:0.04337883192676094\tall:0.04068284365031736\ttheir:0.03884940461324831\tand:0.03613749321613871\twas:0.030194672961649772\t:0.01\n",
"to:0.19422964350110636\tof:0.153463162362621\tin:0.1498624172605325\twith:0.11532042492079263\tis:0.10068276498994976\twas:0.08936257099748342\tand:0.08077115614549236\tfor:0.05444008091069593\tas:0.05186777891132598\t:0.01\n",
"and:0.23183133418765586\tthe:0.13842903994752387\ta:0.13744558683808816\tto:0.12266981619559358\twas:0.10811592603170028\tof:0.08400626301946437\tis:0.0671585756349982\tbe:0.06124511336723199\twill:0.03909834477774367\t:0.01\n",
"and:0.4162827671405096\twas:0.12024829337141718\tbut:0.09736328321631767\tthat:0.08175425546610225\tis:0.07069528269203695\tbe:0.05669742233657562\tor:0.05192989983919824\tfor:0.04771454213559816\tit:0.04731425380224426\t:0.01\n",
"and:0.21642584433739415\tthe:0.188857679008017\tto:0.18295619766489257\tof:0.17590457566188464\tor:0.0598191581918418\tMr.:0.04713004865049867\tin:0.0437372215412144\tat:0.037874282386880835\tfor:0.03729499255737595\t:0.01\n",
"to:0.6194380468106148\tthe:0.07238411457568587\twill:0.07192472989289117\tand:0.053668957018073435\tnot:0.050838692867740495\twould:0.04929800511207573\ta:0.025936858475754904\twho:0.025233650487327845\tin:0.021276944759835863\t:0.01\n",
";:0.20001527898824836\tit,:0.14877559242951097\tin:0.12835553907260505\tthem,:0.12593272057487867\tit:0.10305320470409958\tand:0.07956995347202288\thim,:0.07299083279436135\tcountry,:0.06910355977411442\thim:0.06220331819015869\t:0.01\n",
"and:0.15530937392777586\twas:0.15137634111133316\tbe:0.1487442486421533\tthe:0.1279647475229059\tof:0.08903807697582503\twere:0.0818399995614259\tfor:0.08099005293109082\tis:0.07883259730964697\tare:0.07590456201784317\t:0.01\n",
"is:0.21195456106380806\twas:0.18594806840711084\tand:0.12458818270878293\tare:0.10792044490391378\tbe:0.10144608060811114\tnot:0.09733829024010968\tbeen:0.08094473760390436\twere:0.04303418097637434\tor:0.03682545348788488\t:0.01\n",
"of:0.19381311708231033\tin:0.13240262203516157\twas:0.12077952196646936\tis:0.11894943926782861\twith:0.11269108025424517\tto:0.09070902869366251\tand:0.08833499517502995\tfor:0.07458665233341359\tas:0.05773354319187894\t:0.01\n",
"the:0.7112809646207012\ta:0.06224123930305567\ttho:0.04654865014661705\tThe:0.04054136951780921\tof:0.03287029346012305\tthis:0.031118357627258723\tand:0.030991338681147347\twhole:0.017217941631221454\ttbe:0.01718984501206631\t:0.01\n",
"they:0.2595653296807585\twe:0.1521400782738606\twho:0.12500425308399937\twhich:0.11989538953713953\tThey:0.08060046956785757\tand:0.0776533057073991\tthat:0.06314875875840069\tWe:0.06286480250372295\tyou:0.04912761288686163\t:0.01\n",
"a:0.43986142181815896\tand:0.09949409326576679\tthe:0.08341991100097333\tas:0.08145051347669885\tis:0.07045150935387658\tbe:0.0688706770740935\twas:0.06763473168803592\tvery:0.04070898719340259\tA:0.038108155128993515\t:0.01\n",
"the:0.4463849584975542\ttheir:0.28254640983532703\this:0.11306450890872315\tour:0.038063557156004645\ther:0.025395369660383475\tits:0.023267032797950837\tmy:0.022617502014132932\tyour:0.02111211954597108\tand:0.01754854158395274\t:0.01\n",
"and:0.15102446943273357\tare:0.14854899004163236\twas:0.12412994394505582\tof:0.12399017547321088\tin:0.10709134682524878\tis:0.10343911594973665\tby:0.08361657999282232\tnot:0.082471368959914\twere:0.06568800937964554\t:0.01\n",
"to:0.20527369532103776\tand:0.14880207268286827\tthrown:0.1423574989352598\tas:0.1064497675960136\tthe:0.08842552599357814\tbe:0.07859477347501508\tis:0.07800568349858024\tnot:0.07404538955020999\tan:0.06804559294743714\t:0.01\n",
"one:0.2501549507978757\tmany:0.1757390329727802\tsome:0.17337378259433658\tmost:0.07828004008705718\tall:0.07823258544774273\tMany:0.06550115768656498\tSome:0.06179705054453487\tnone:0.058771085161482946\tany:0.04815031470762493\t:0.01\n",
"as:0.32534795360424856\tis:0.25718267498295616\twas:0.07651146423974801\tare:0.07638520780675219\tso:0.07623780218664908\tbe:0.05902347664986762\tvery:0.04459914832068952\tnot:0.03751516159636231\tIs:0.03719711061272671\t:0.01\n",
"is:0.27895089347394464\twas:0.1828479818298837\tare:0.13445381363945924\tought:0.12584359622938077\tand:0.06513450641913238\twere:0.05719786316946085\tdo:0.053382213845106594\tit:0.04754020861463743\tIs:0.04464892277899437\t:0.01\n",
"the:0.6261244812284219\tThe:0.12712941704000233\tan:0.09870552677078395\ttho:0.03331558561014029\this:0.03297333868908418\tand:0.02444796336718147\tthis:0.01927743059608986\tour:0.01426675219270871\tmy:0.013759504505587388\t:0.01\n",
"to:0.30102863785986816\tand:0.20724594162951251\tof:0.11561430117577177\tthe:0.08949931874126583\tin:0.06780950692820926\tis:0.05678672479774325\tI:0.05395775487226535\tfor:0.04939417435915029\tnot:0.048663639636213486\t:0.01\n",
"hundred:0.6389868143918725\tsix:0.08088672398022753\tone:0.06116866387430243\tseven:0.04018900659987839\tdred:0.038886899065741644\teight:0.038335755955455554\ttwo:0.03305614024225165\tfour:0.031662822252967175\tthree:0.026827173637303057\t:0.01\n",
"the:0.29348734035947927\tand:0.21800905869438575\tof:0.15798693257990812\tThe:0.07098336672023307\tthat:0.06016316734182636\tthese:0.05256309489874121\tThese:0.04957857554119429\tin:0.047710532982857816\tsuch:0.039517930881374175\t:0.01\n",
"more:0.3872045432007985\tless:0.1274678320325706\tbetter:0.12158741757974659\trather:0.121420937489238\tother:0.08832922506272661\tworse:0.04437335553269276\tgreater:0.03996358276254126\tand:0.03015629192197644\tlarger:0.029496814417709353\t:0.01\n",
"the:0.384474127601055\ta:0.3347151515652912\this:0.09796736014343982\tThe:0.042598925216608456\tmy:0.0335442716858072\tother:0.02564354258473353\tany:0.024346761200172904\ttho:0.023565946916658507\tand:0.023143913086233304\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"the:0.46292400564847713\tof:0.1408888935902379\tand:0.09662029428034556\ta:0.08706327361212383\this:0.043236958026979404\tto:0.04306757256142888\tthis:0.04135601908202062\tin:0.04089234333616177\tsaid:0.03395063986222496\t:0.01\n",
"him.:0.31692484018989875\tit.:0.1394991139238113\t<s>:0.1250696913852333\tman.:0.0782792263899811\tthem.:0.07537644556736484\thimself.:0.06726313432168332\ttime.:0.06509369886937051\tyears.:0.061925090795403176\ther.:0.06056875855725369\t:0.01\n",
"able:0.14958117835872448\tand:0.13040836033028883\tsufficient:0.11994031207783663\tnecessary:0.11688007835974755\tenough:0.1045505884320622\twilling:0.09522206599104219\tas:0.09235881522695012\torder:0.09070201900010363\thave:0.09035658222324433\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"be:0.2571645315874598\tare:0.14924447153706805\tbeen:0.1378768362758317\tis:0.11838536690518435\twas:0.10435595743715866\tand:0.07431285818282263\twere:0.06712033533255245\tall:0.042888580294942684\tof:0.0386510624469797\t:0.01\n",
"of:0.30493196567265496\tin:0.1607404700320962\tto:0.15651357991303957\twith:0.07592812289576902\tand:0.07237570133419094\tfor:0.06708036666267708\ton:0.054948050334347166\tfrom:0.050042813248900656\tby:0.04743892990632431\t:0.01\n",
"of:0.21273320864402664\tin:0.21166732525992338\tto:0.13842336259586488\tand:0.1276486456637503\tthe:0.0722694611383091\tfor:0.0686287327494052\tIn:0.06440110323789765\twith:0.048027266763426384\tor:0.046200893947396474\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.3294047220715406\tsell:0.13117314771691085\tsold:0.11389993313276538\tthat:0.09923629982502086\theld:0.06660724859773821\twas:0.06614582821402237\tsale:0.0635457169078945\tthe:0.06142115258416391\tout:0.05856595094994333\t:0.01\n",
"I:0.4208523058892846\tto:0.11833748804942416\twe:0.10093117896127532\tnot:0.09600938038249417\tyou:0.07443592845010684\tWe:0.04810254140413765\tthey:0.04481914819529914\tand:0.04457015953235623\twould:0.041941869135621875\t:0.01\n",
"be:0.1492674548338055\tde-:0.14635272172283215\tI:0.144668652770975\twas:0.13815516418869722\tand:0.11161447717183819\twho:0.08567764239321123\thave:0.07876177208883686\the:0.07792125474175589\thad:0.05758086008804792\t:0.01\n",
"of:0.36226013485795494\tthat:0.11220426843255647\tand:0.11046656645039243\tto:0.10016033931618205\tin:0.07679062975241427\tfor:0.0698724422054618\tby:0.06859827749999092\twith:0.055422573453300046\tat:0.0342247680317471\t:0.01\n",
"the:0.24532168858997558\tand:0.16201373497773278\tof:0.1480249964756765\tto:0.09143878973251968\ta:0.09134777440121443\tis:0.07327943306749635\twas:0.06763514483225813\tbe:0.06123111571734052\tare:0.049707322205786164\t:0.01\n",
"of:0.34008421507601916\tto:0.14245170551518715\tin:0.09821383389610319\twith:0.08562937222312633\tand:0.08356845559392521\tby:0.07420884523753815\tfor:0.0724034955357133\tat:0.047279505657183134\ton:0.04616057126520448\t:0.01\n",
"have:0.16937240790068525\thad:0.15238298488133425\thas:0.1498722999789704\twas:0.12379529102399679\tand:0.10098620054057116\tbeen:0.09795510293512803\tbe:0.08500000407867403\tnot:0.05792646901194775\tor:0.05270923964869238\t:0.01\n",
"the:0.7421208747197329\tThe:0.08731140054733215\ttho:0.047343719242868905\tand:0.029332267622238565\ttbe:0.0200992589236571\tof:0.01998143295896958\this:0.017703164535152957\tin:0.013862226003862761\tI:0.01224565544618504\t:0.01\n",
"the:0.25902991300484424\tand:0.19229253322926146\tof:0.15200133789812978\ta:0.11409576332505228\tto:0.0907524324597557\tin:0.05682246385942079\tMr.:0.0501021595777551\tI:0.03870996291441568\tor:0.03619343373136493\t:0.01\n",
"and:0.247907146411235\ta:0.2243451211530669\tthat:0.18502506708728908\tthe:0.07769141856089239\tfor:0.05969860726509257\tworth:0.05347961006883459\twhich,:0.05047186681939452\tbut:0.04885645226548191\tand,:0.04252471036871283\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.2744444130928031\tbe:0.12345591986975628\twas:0.11370676435240681\tis:0.08387600113083488\tbeen:0.08283879200040299\tput:0.08214892651684683\tfeet:0.07773528657796573\tare:0.07655147956221409\tengaged:0.07524241689676936\t:0.01\n",
"the:0.15315417542670548\tof:0.1474619205254358\tand:0.1434895081163942\tbe:0.1380101494701949\tto:0.11257930602342806\twas:0.10680730325663455\tis:0.07750856055039425\tor:0.0558112570911162\tare:0.05517781953969663\t:0.01\n",
"the:0.2357040423047656\tand:0.2116693938542404\tof:0.18855223785339154\tto:0.11273607281375625\ta:0.07464987090796713\tin:0.07091596806632809\tfor:0.04336301227595873\tis:0.02647726548799999\tMr.:0.02593213643559206\t:0.01\n",
"made:0.24045435542744667\tand:0.23464210073409186\tor:0.1200765638048787\tit:0.07362996342121234\tpaid:0.06765443619763342\taccompanied:0.0676382050027566\tthat:0.06328132990515498\ted:0.062213755465309065\tdone:0.060409290041516336\t:0.01\n",
"a:0.7038653707072384\tof:0.05159583750373923\tin:0.051594549175363685\tthe:0.039674486430471965\tA:0.037368910648847085\tvery:0.03512685980877533\tsome:0.032428677457634884\tno:0.019324252711664432\tand:0.01902105555626513\t:0.01\n",
"have:0.2564643451164013\thad:0.20503723815050193\thas:0.19901048861202172\tand:0.09948435867721134\the:0.05599936186248046\twas:0.054575568583014\tto:0.047181360653532685\tis:0.03762187696364684\tbeen:0.03462540138118967\t:0.01\n",
"that:0.23133529299716066\tand:0.1455467768570496\tas:0.13855843602922888\twhich:0.12962450073616846\twhen:0.12158027153775615\twhat:0.07139832008184537\tto:0.05303969309400853\tbut:0.05215324775526151\tif:0.04676346091152075\t:0.01\n",
"with-:0.32947356609523276\tsent:0.12249209755219008\twent:0.11138474984797313\tcarry:0.09257129873312459\tgo:0.08597935103613076\tand:0.07544523771438562\tbrought:0.06123258234126134\tit:0.05974849918813548\tcarried:0.051672617491566146\t:0.01\n",
"the:0.5640648124426096\ta:0.13185406712291045\tsaid:0.06809080004971169\tof:0.06000867203558315\tthis:0.04321210747080295\tThe:0.03726453529965075\tnational:0.028686223157238414\tstate:0.028683324658206222\ttho:0.028135457763286673\t:0.01\n",
"and:0.22664861652671292\tas:0.1934422667972694\treferred:0.1207436898698292\taccording:0.08073166665105852\thim:0.07930815903864512\tthem:0.07519512347493011\tregard:0.07386185075655892\tup:0.0725130281666349\tback:0.06755559871836103\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"as:0.3193870440018066\tof:0.1274155696417627\tto:0.12425073508623133\tand:0.10219002223470812\tso:0.08766325524152806\tsuch:0.07203918087376686\tin:0.06852451201064277\tnot:0.05363444458844262\tby:0.03489523632111097\t:0.01\n",
"of:0.22871137441962766\tin:0.20116997686987206\ton:0.1970654909515564\tthe:0.11927585330170389\tto:0.05997824932177168\tand:0.05563761399860393\tIn:0.055082089661524405\tat:0.05204744622290157\tfrom:0.02103190525243851\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"in:0.36797370135840796\tof:0.24684038641517164\tthe:0.12614981250136761\tIn:0.07374787436192652\ttheir:0.04781001779692664\tto:0.03487714275252987\this:0.03322971962123464\tand:0.03146299115030143\tits:0.027908354042133772\t:0.01\n",
"was:0.2019360343041661\tbe:0.1950082635773047\tbeen:0.153137432860304\thave:0.10520633734007284\twere:0.08690370962202162\tand:0.07408833708934001\thas:0.06064158246132065\tare:0.05884818018824541\thad:0.0542301225572246\t:0.01\n",
"is:0.249388183398844\tand:0.17470086472406934\twas:0.12300638101664428\tare:0.11237245590725609\tbe:0.09685869862858827\tnot:0.08430211360329395\thave:0.05625680344140522\tbut:0.05121592218602621\twere:0.041898577093872603\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.6439944484813407\tof:0.08487287765202342\ta:0.05475492494007887\ttho:0.0435719563538492\tthis:0.037820469564751893\ttheir:0.035499399287083205\tThe:0.03340049691868224\tand:0.028695391433148056\tour:0.02739003536904235\t:0.01\n",
"it:0.29661847309004447\the:0.20627930897279043\tIt:0.1712772104924651\tand:0.08343957979389993\twho:0.05460018820514974\tHe:0.05423108874939179\tthat:0.04784992185095355\tshe:0.03864014143725655\twhich:0.03706408740804831\t:0.01\n",
"and:0.3210441358767376\theld:0.11913627744537648\tBeginning:0.09356489044308801\tarrived:0.08791619246759277\twas:0.0870651844552015\tmade:0.08250334337502356\tlook:0.07066734238521885\tis:0.06479898094200456\tup:0.06330365260975668\t:0.01\n",
"Mrs.:0.2626248691184198\tof:0.21463577314294935\tand:0.1700582359691535\tMr.:0.1291759122070845\tto:0.07019888883577809\tby:0.04858508762272752\t<s>:0.037232561390046506\tDr.:0.03402689517132181\tsaid:0.023461776542518742\t:0.01\n",
"the:0.4488908441655084\tof:0.1378143116145162\ta:0.1275532547448513\tand:0.07380706786468029\tin:0.05901549127962672\tto:0.04445461870596513\tThe:0.037908583893187346\ttho:0.03250442892711475\tan:0.02805139880454978\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"in:0.24333994743612922\tof:0.18871067140801695\tthe:0.14254258973892459\tand:0.10760876324558527\tfor:0.09174081455919122\ta:0.06366595919272895\tto:0.061841865908333744\tIn:0.05733705309984939\twas:0.03321233541124056\t:0.01\n",
"part:0.21361158070694775\tone:0.17380084287165434\tout:0.1373975162565351\tside:0.09101456173050995\tthat:0.08719614736605438\tsome:0.08124242756234751\tend:0.07179676690489906\tmembers:0.07134260443302046\tportion:0.06259755216803148\t:0.01\n",
"the:0.677758424695925\tThe:0.06915165470174503\tand:0.04842016432690057\tassessed:0.045516747625198126\tpar:0.04420237735750635\ttho:0.032961749051453666\tin:0.02540120118173747\tof:0.023414569170016337\ta:0.023173111889517532\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.4259339050426438\tthis:0.1820643919178795\tand:0.10875265204531975\tto:0.0678258352059486\ta:0.05436279429422576\tthat:0.04794057606991555\tThe:0.039413535907890006\twill:0.0323932745450831\tof:0.03131303497109397\t:0.01\n",
"of:0.403165313104898\tto:0.12736372892410702\tin:0.10154153487178227\ton:0.0712528521888804\tand:0.0703598536060374\tby:0.0683588507079546\tthat:0.06685322347755784\tfrom:0.05109680215086357\twith:0.030007840967918965\t:0.01\n",
"and:0.2953876189038615\twas:0.16428490131166157\tis:0.1170663883818668\tup:0.07776716508545514\tit:0.07559106251500251\tmade:0.0665568090126541\tput:0.06578409847025994\tplaced:0.06489134807601946\tthat:0.0626706082432191\t:0.01\n",
"of:0.3124951714525789\tin:0.13003655724697222\tto:0.12344850859765635\tthat:0.11209186957322427\tand:0.09754412661615616\tby:0.07061621767256791\tfrom:0.052553843162545834\twith:0.04756546238764162\tfor:0.04364824329065681\t:0.01\n",
"of:0.3989036664639626\ton:0.13843942064466522\tto:0.1248882469342737\tin:0.09317210224440976\tfrom:0.06773716470692583\tby:0.06296905924729021\tand:0.04042338979755727\tat:0.032210157132134785\tthat:0.031256792828780675\t:0.01\n",
"not:0.48672713880827767\tis:0.14194347155789808\twas:0.11531716010435229\tand:0.05778390870455028\tare:0.05691081277955486\tthe:0.03849975395931737\tbe:0.03504871590196745\twere:0.03328554598104264\thad:0.024483492203039213\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"I:0.2731076843793878\twe:0.1593311358276296\the:0.15648002229428754\tthey:0.10057778365832153\tyou:0.09529397351832634\tit:0.07899457658743933\tWe:0.04629343800466312\tshe:0.04371167388567432\tand:0.03620971184427032\t:0.01\n",
"was:0.17584493089030287\tas:0.16443101964905726\thas:0.13234520231417712\tis:0.12644395331522404\thave:0.10123395717999978\tbe:0.09370249981688841\tand:0.07731566920750205\thad:0.06448463978186816\tbeen:0.054198127844980355\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"a:0.5347695878634164\tthe:0.14439402095615028\tof:0.1118142165060303\tvery:0.046038573133182374\tand:0.04010013624384312\tin:0.038127891774981285\tA:0.03311745653708694\twith:0.02249093201157338\tsome:0.01914718497373582\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"It:0.24612309943433333\twhich:0.15624772724583405\tit:0.1389235490078086\tThere:0.11864799852327103\the:0.08736842706875796\tHe:0.08146436082796094\tthere:0.05554555692574891\tthat:0.05417947326622932\tand:0.051499807700055925\t:0.01\n",
"the:0.486256017920014\tthis:0.12699226624334792\this:0.10475030701433913\tany:0.06094828343074871\ta:0.0538507794449179\tthat:0.049775567303109274\ther:0.039561371571433385\ttheir:0.03524167297283129\tsome:0.0326237340992585\t:0.01\n",
"the:0.3273937360618406\tof:0.17154315531338243\tand:0.11457586309098997\tthat:0.08825401814028669\ta:0.06769471082179541\tor:0.0676601352380678\tMr.:0.05450162227189653\tin:0.05136141633743256\tThe:0.04701534272430806\t:0.01\n",
"a:0.5729986426676754\tto:0.1522611765199855\this:0.07420467543922267\tthe:0.062420031441195026\twill:0.03626251476986206\tnot:0.026905766712651137\tno:0.022724680623935345\ttheir:0.02187359582667176\twould:0.020348915998801117\t:0.01\n",
"of:0.35796474690506286\tin:0.18242506847414064\tto:0.11509581180698815\twith:0.07482727780129385\ta:0.06374045167626073\tand:0.05340914456130074\tby:0.04868100332507169\tIn:0.04720463511630781\tfrom:0.04665186033357345\t:0.01\n",
"the:0.3248011041242151\this:0.1659546133328772\tdeaf:0.10684513007931866\ta:0.09760199291013953\tan:0.07234003559304786\ttheir:0.06926407178482155\tand:0.05537373642984673\tany:0.052839340787233804\tno:0.044979974958499744\t:0.01\n",
"of:0.23897896941438565\tin:0.1473687800709734\tor:0.1241006045417599\tto:0.12245093798757783\tfor:0.0926312730069561\tby:0.08465844924066224\twith:0.06310156749724584\tthan:0.06038160389902459\twithout:0.056327814341414525\t:0.01\n",
"of:0.18242760989038811\this:0.1655089557892093\tto:0.13246705234292103\ttheir:0.10864221375430747\tand:0.0938697481800076\tthe:0.08827065202011274\ton:0.07915151995661937\tfor:0.07166782863381425\tin:0.06799441943262013\t:0.01\n",
"and:0.28597110709384166\twas:0.15209778801823107\tis:0.11318621211829073\tthat:0.09899005776040866\tbe:0.08751947588476208\tit:0.07540492705405653\tmade:0.061245281477476335\tare:0.059109215274831414\tbeen:0.05647593531810168\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"for:0.2414062679370533\tduring:0.19231343715245586\tof:0.14465502715335166\tat:0.11400731514317924\tin:0.10699592583044878\tto:0.09416183970439253\tthat:0.034718719883976616\tIn:0.0316049385783951\tby:0.03013652861674699\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"the:0.22172023892309115\tof:0.1544891538036754\tand:0.1135846508689145\ta:0.09386538603318526\tan:0.08847174821825282\t-:0.08766195108438138\ti:0.08336830757296743\t.:0.07459740798853859\tto:0.0722411555069935\t:0.01\n",
"and:0.2953876189038615\twas:0.16428490131166157\tis:0.1170663883818668\tup:0.07776716508545514\tit:0.07559106251500251\tmade:0.0665568090126541\tput:0.06578409847025994\tplaced:0.06489134807601946\tthat:0.0626706082432191\t:0.01\n",
"a:0.7111798593475791\tthe:0.10704412807900003\tto:0.05153678972521329\this:0.03464118747937616\tno:0.02038953042496328\tand:0.018158880252680008\tA:0.016617045006806986\tin:0.016160795333255748\tor:0.014271784351125399\t:0.01\n",
"the:0.24299096642388374\tof:0.17944178124292026\ta:0.14711227117666437\tand:0.0973916978147186\tto:0.09535608284625502\tat:0.07619903937954134\tin:0.06526911809219721\tthat:0.04377847233925868\tan:0.042460570684560696\t:0.01\n",
"time:0.13064218374537684\tup:0.12573595628147205\thim:0.11330701295672524\thim,:0.11054501382843579\tit,:0.10942532644676572\t;:0.10553097932343962\tday:0.10256164346852442\tyears,:0.09614516788333727\tnight:0.09610671606592308\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.28272708891957427\thalf:0.18088430977260264\tfor:0.1351171012514247\tin:0.11172813880162866\tand:0.06630852434043231\tabout:0.06320155018041856\tas:0.05796581370807036\tto:0.046802267138643\tcents:0.045265205887205354\t:0.01\n",
"of:0.25984067209560074\tand:0.17442274625049692\tin:0.14929081280303838\tto:0.11915842599096312\twith:0.09850658388411322\tfor:0.08129115424453193\tthat:0.041216673250161755\tfrom:0.033549611433839624\tby:0.032723320047254166\t:0.01\n",
"the:0.39253980715584635\tof:0.16504323883934688\ta:0.10764249000073334\tand:0.1042805234784817\tin:0.0745719575378781\tan:0.0467115076987836\tto:0.04012872818785866\ton:0.03075852117026464\twith:0.028323225930806738\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"the:0.7035234799171926\tThe:0.05968973679738253\tAssistant:0.05416326427501457\tand:0.04469511145105874\ttho:0.038463477427280984\tby:0.034812492842386245\tof:0.02510565062931404\ttbe:0.018068946487600903\tin:0.011477840172769297\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"and:0.24480150934910483\tof:0.19831800793855617\tthe:0.15503471541294492\tto:0.12421354508199411\ta:0.08795833645796104\tfor:0.04918084978502393\tmore:0.04701501648138087\twith:0.04234441851998724\tthat:0.04113360097304692\t:0.01\n",
"was:0.4220177887678498\tbe:0.16859316572816344\tbeen:0.1313840160627158\twere:0.08824820612122063\tis:0.05621083759671001\tand:0.04481779580452215\tbeing:0.03351897141749622\tare:0.03214879573561431\tbo:0.013060422765707536\t:0.01\n",
"of:0.47092472345283126\tto:0.10710907481470838\ton:0.10443302613520368\tin:0.10076163009324696\tand:0.05004898068857059\tby:0.04623607448315895\tthat:0.043989736091607924\tfrom:0.034082051242215736\tfor:0.03241470299845666\t:0.01\n",
".:0.15438664456730353\t-:0.153629434932728\tthe:0.11933625733393634\tand:0.11296240035600534\ta:0.10895012607202666\tof:0.09520941932943469\tre-:0.0950070993387054\tto:0.08672690330200529\t<s>:0.06379171476785474\t:0.01\n",
"and:0.2689151139273388\tof:0.18130938382326992\tthe:0.1760208226090948\tto:0.11104422014641269\ta:0.05883687834777983\tor:0.053745902650536664\tin:0.049192642891779444\tbe:0.04839534901778332\tfor:0.04253968658600446\t:0.01\n",
"of:0.42426424628800913\tin:0.19273237060249468\tto:0.0686320184328053\tfor:0.061366870896769815\tthat:0.05977452530490364\tIn:0.0562826365046928\tfrom:0.050008618190843575\tand:0.039458319750946325\twith:0.0374803940285348\t:0.01\n",
"is:0.2793826715714985\twas:0.20846905625620596\tbe:0.15742764172954304\tand:0.08529372763793436\tare:0.08031508694685717\tIs:0.05014266602809595\tbeen:0.048279809114525875\the:0.04336903294871826\twere:0.037320307766620896\t:0.01\n",
"of:0.26795372999975214\tin:0.249686565038013\tthe:0.14208793242754614\tto:0.0715502629996642\tand:0.06708137909135513\tIn:0.05935380127552138\tfor:0.05203124166072336\ta:0.05174115049071752\twith:0.028513937016707156\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.32067441216919823\tof:0.1950969873863238\tand:0.16380040676288102\tto:0.07702811663089545\tin:0.07297891074665763\tat:0.051240410711176985\ta:0.040610518771225464\tfor:0.035677038228000835\tor:0.03289319859364054\t:0.01\n",
"the:0.34020716971866993\ta:0.21659343434055298\tof:0.19234187807408276\tin:0.09426131815212656\tand:0.043402889006874196\tat:0.030827003881100507\tfor:0.027131864199648775\tThe:0.023216250106938695\tto:0.022018192520005597\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.26276554424049875\twell:0.17165735638285678\tregarded:0.10215108442096366\thim:0.08688236618817878\tknown:0.08594969760882573\tsoon:0.07468266047506815\tit:0.07254659441566477\tis:0.06743217334715047\tbut:0.06593252292079285\t:0.01\n",
"it,:0.14655437048479533\t;:0.14651261782270228\tin:0.1279986539089979\thim:0.11899667414945188\thim,:0.10719169468918927\tit:0.09551640005551054\tme:0.08715278686365513\tme,:0.08200452814831055\tthem,:0.07807227387738713\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.5662368498647242\ta:0.15347911344443924\tof:0.07752140131172598\tthis:0.04607836581959223\tother:0.04367240885156655\tThe:0.033874888117090836\ttho:0.03140081044328854\this:0.020274511131963626\tnew:0.01746165101560884\t:0.01\n",
"the:0.29854557202464377\tand:0.1745190950987386\tof:0.15775938223967384\tthat:0.12083926351875786\tin:0.06834174670401257\tThe:0.04624847050183587\twhich:0.04414875418318484\ta:0.04010688611046935\tMr.:0.039490829618683276\t:0.01\n",
"the:0.6547322374994278\tof:0.11103145010647857\tour:0.055658695456357654\ttho:0.03434571568996225\ton:0.031064361998574878\tthis:0.028914827997501173\tnational:0.028338329332416295\ttheir:0.025458028084723836\tgeneral:0.02045635383455743\t:0.01\n",
"of:0.20565190925800658\tthe:0.16607463495312735\tin:0.1505340311988318\tto:0.1312465868161679\tand:0.12728372839497432\ta:0.08360530564891519\tfor:0.04430295164405376\tfrom:0.041690549361750866\tIn:0.03961030272417226\t:0.01\n",
"of:0.409878823115261\tto:0.11427802605963412\tin:0.10276287703077737\tthat:0.08587226574314684\tand:0.07620517836169619\tfor:0.06729836345788287\tby:0.04808032017624277\ton:0.04721984987769163\tfrom:0.03840429617766718\t:0.01\n",
"and:0.4082358659059083\tas:0.20173746211133045\tthat:0.17582805740589308\tbut:0.052442417101731906\tor:0.05014592785820659\tBut:0.027024808179309193\teven:0.025456712498217487\twhich,:0.024580779794228316\tAnd:0.024547969145174632\t:0.01\n",
"of:0.2877037075671917\tto:0.2817897786386796\tin:0.09386194809018836\tby:0.08604650998185538\tfrom:0.06750920683895262\tand:0.06658523455174177\twith:0.038563847188142604\tat:0.035013771951235104\tIn:0.032925995192012995\t:0.01\n",
"<s>:0.23358845970132816\tthem.:0.1890350958732\tit.:0.17249664239830642\thim.:0.10926581495440559\tday.:0.06054686408716302\ttime.:0.0576534655097202\tsaid::0.05683697691318886\tus.:0.055886872250991246\tlife.:0.05468980831169658\t:0.01\n",
"is:0.18159869945298393\tand:0.17179531053919378\table:0.10655438802395226\tnot:0.09979355570018283\tenough:0.09754236129868772\twas:0.09443533816025794\tnecessary:0.08193237885771505\tas:0.08002224408975005\tbegan:0.07632572387727644\t:0.01\n",
"and:0.2850776780408516\tthe:0.19073040138173195\tto:0.12693588429601232\twill:0.08429340490171171\ta:0.07268652572677899\tI:0.0613709024541948\tof:0.05933450778658342\tthat:0.056167770840137646\twould:0.05340292457199745\t:0.01\n",
"they:0.27137468563202044\twho:0.14360646706026395\twe:0.1367652737312479\twhich:0.09851775476155003\tThey:0.08084987608252571\tand:0.07611851499662178\tyou:0.07104204677341487\tWe:0.057582914325766586\tthat:0.05414246663658872\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"the:0.5337895079109269\tand:0.10479129547898335\ta:0.09414582408897566\tThe:0.056522237983250546\tin:0.048561637204278404\ttho:0.04049642010764207\tan:0.038684957085733516\tor:0.037641853988325626\tall:0.03536626615188383\t:0.01\n",
"the:0.47464404067718863\tof:0.26085009746620874\tin:0.10140855640289274\this:0.04051093359674551\tIn:0.02707361456816248\ta:0.02667052008545386\tthis:0.022450227841428548\tThe:0.022318231487011488\tthat:0.014073777874907932\t:0.01\n",
"was:0.22863867899744209\tis:0.1783166999820735\tare:0.14620573767902223\tbeen:0.12729010522512405\tbe:0.11560819912602942\tnot:0.05814703898748437\twere:0.056361662420133365\tand:0.0437935005847608\thave:0.03563837699793003\t:0.01\n",
"and:0.21828020561444825\tto:0.14810812633782972\tthe:0.12071102988751307\tbe:0.10684057769511977\twas:0.10284699336272367\tof:0.09856651257560425\tis:0.08491814584169231\ta:0.0635322734548411\tare:0.04619613523022795\t:0.01\n",
"the:0.7900575393048063\tof:0.07940465941530707\ttho:0.023504694097257244\tthis:0.021949161700440853\tto:0.019727131754586576\ttheir:0.017096013645578393\tour:0.014567030389908397\ttbe:0.012102915137046656\tsaid:0.011590854555068609\t:0.01\n",
"the:0.4499840393586303\tof:0.10467589123066734\tand:0.09270991647492871\ta:0.08246352135201987\tin:0.07978939990411628\ttheir:0.05757745154860734\this:0.049439403114181255\tthis:0.03950676260334243\tany:0.033853614413506476\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"was:0.2544172327013956\tand:0.19955599665715548\tis:0.19547002864059693\tof:0.07010461317583334\tare:0.0627475276870601\tin:0.055981691134265626\twere:0.05472803904289641\tbe:0.05228167172485969\tnot:0.04471319923593673\t:0.01\n",
"of:0.2924572405128456\tto:0.2013309947230306\tthe:0.14868067537977062\tin:0.09578637671013539\tand:0.06817206326196833\ttheir:0.06030178495354799\tall:0.04713843176336639\this:0.0425937961930589\tfor:0.03353863650227622\t:0.01\n",
"be:0.24990017517572466\twas:0.19738593341375577\tis:0.1429618958592757\tbeen:0.12316902054107133\tare:0.08495343071417714\twere:0.05545755897592128\tand:0.05348852066221892\tbeing:0.041939886018276605\tnot:0.040743578639578636\t:0.01\n",
"the:0.3103279440235315\tof:0.17413654868527798\tand:0.16924373084989433\tto:0.09410335785526062\ta:0.08334285316950657\tin:0.05267958019374887\tbe:0.03777522488732701\this:0.03486601099791866\tor:0.033524749337534535\t:0.01\n",
"and:0.2710696967606447\tknown:0.156941522701815\tday:0.11100125645455491\tit:0.10160713723388111\ttime:0.09755837941679073\tthat:0.07129265144458598\twas:0.06622679837591049\twell:0.05862081223223828\tup:0.055681745379578824\t:0.01\n",
"the:0.6956492008545524\tan:0.07331366937681752\tThe:0.06889258600937896\ta:0.0466683693198102\ttho:0.03931861318992829\tand:0.019505399983322222\tlarge:0.016477752013691328\ttbe:0.015626140911448788\tgreat:0.014548268341050389\t:0.01\n",
"and:0.2672217858895418\tof:0.2112789625448935\tfact:0.10196081014791072\tin:0.07916094588109823\tto:0.0784308007180104\ton:0.07168556724478214\tat:0.06837539212894798\tfrom:0.05600713728423183\tsaid:0.055878598160583506\t:0.01\n",
"it:0.1703742632983856\tand:0.14174261789677803\twe:0.1403797338520458\tI:0.10362820403401542\the:0.10039541192651863\twho:0.09371210623600677\twhich:0.09066766917666817\tthey:0.08406250956690223\tIt:0.06503748401267924\t:0.01\n",
"the:0.38022690693573014\tof:0.2368005893171391\tand:0.07278223648295776\tfor:0.06680633399571745\tno:0.05461729482527823\tmore:0.04996048202845949\tlawful:0.04703674772702043\tpurchase:0.04120679092822409\ttheir:0.0405626177594733\t:0.01\n",
"a:0.3976293721128944\tthe:0.31161552077670485\tevery:0.058067463906174704\tthis:0.04983898452338399\tone:0.04510733257072899\tnext:0.038107790130259306\tper:0.03686452437829919\tany:0.027058185324829426\tthat:0.025710826276725208\t:0.01\n",
"the:0.3401961899378751\tof:0.24015564242654405\tand:0.16013376025602907\ta:0.07170049273834139\tto:0.06296078068773417\tor:0.035215486824114024\tbe:0.03061116219968757\tat:0.02486971725883406\tin:0.024156767670840604\t:0.01\n",
"and:0.7407940785526225\tby:0.0579740300555906\tof:0.04970703625137381\tthat:0.04641745253114103\tto:0.031737023665866025\t<s>:0.02080470309927467\tsister,:0.0159707692147877\tas:0.014387246311649306\tfrom:0.012207660317694227\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.27805686067597973\tto:0.22111432623243474\tin:0.11937496125832864\tof:0.08001804520266366\tand:0.07428158183042437\ta:0.06766640196720596\ttheir:0.05717105090261416\this:0.047482241165346\tits:0.04483453076500287\t:0.01\n",
"of:0.3630350740586406\tthe:0.1652591637044575\tin:0.14689974290592145\tand:0.09288862333737676\tto:0.07357308745747566\tfor:0.0413387368613848\tfrom:0.03766019187032089\tIn:0.036407138163262964\tby:0.03293824164115942\t:0.01\n",
"the:0.32248525646726783\tthis:0.2848279540121546\this:0.09088106918864726\tthat:0.06859700697630082\tfirst:0.059471181186959224\tsame:0.0479714345584114\ttaken:0.040654171824742555\ton:0.03861619298184641\ttook:0.036495732803669814\t:0.01\n",
"the:0.5749300566611418\t.:0.09797140648806991\tand:0.07375341517721735\tMr.:0.05589455435503869\tof:0.04616207875552563\tThe:0.03830981975734198\tin:0.0379522092395776\ta:0.03260105964127539\t<s>:0.03242539992481172\t:0.01\n",
"the:0.74758940726442\ttho:0.04825115283859905\tMissouri:0.03951170062128029\tMississippi:0.03737177324677296\tthis:0.02529033350494812\tPotomac:0.025122076182633072\tof:0.02457131655566464\tThe:0.022096803806786164\ttbe:0.020195435978895615\t:0.01\n",
"to:0.5713396587176943\twould:0.10664463213504291\twill:0.09197415498835892\tand:0.05154602893074632\tmay:0.05030809285674986\tshould:0.03683502471823457\tmust:0.03446010719749397\tshall:0.02700216503629678\tcan:0.019890135419382435\t:0.01\n",
"a:0.528589415631335\tthe:0.1725532427601994\tso:0.08470015464522204\tof:0.04269362318966269\tvery:0.039102776465665484\tand:0.03813375263037399\twith:0.029981584875682938\this:0.02727875749629281\tnot:0.026966692305565552\t:0.01\n",
"of:0.4600304435958753\tin:0.20473900936933384\tIn:0.06933580610044544\tthat:0.05288902983856292\twith:0.051495200721391736\tto:0.05040786890611163\tby:0.03646003837515748\tand:0.03366583132118291\tfor:0.030976771771938742\t:0.01\n",
"that:0.17519527371920024\tof:0.15399968063749403\tand:0.1381360908575846\tas:0.11758637130900122\tmake:0.11246320939134008\tis:0.07640499637967578\thave:0.07530631215710928\tfor:0.07338481310994635\twhich:0.06752325243864829\t:0.01\n",
"it:0.2574665335298411\tIt:0.2520520121102162\tand:0.14667181899366266\tthree:0.0767695366527414\ta:0.05946744435916448\twith:0.057548928345350046\tmore:0.05122033147676269\ttwo:0.04612397821274797\tthat:0.042679416319513594\t:0.01\n",
"and:0.28081826524842834\trecorded:0.11992459715138465\tis:0.11459601146648143\tthat:0.10719611749566711\twas:0.10127129399640517\tare:0.086604104023806\tdistributed:0.0680936502147143\tbut:0.05624580094236254\tdivided:0.05525015946075051\t:0.01\n",
"in:0.23176056584564408\tthe:0.229225976761371\ta:0.1928361873172282\tIn:0.07547192777710239\tand:0.06988170885653705\tof:0.06537158545466365\tto:0.05833196853404441\ton:0.037901432790618333\tany:0.02921864666279102\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"that:0.29685993753849993\twhen:0.15715050128609484\tas:0.12795173048123437\tand:0.10951149090591757\twhich:0.0984638316299557\tif:0.07921282114607718\twhere:0.04794814267334939\tbut:0.04396335491412129\twhat:0.028938189424749742\t:0.01\n",
"of:0.31084838775391704\tand:0.13815892733162294\tto:0.1344776080676971\tthat:0.09374700529029621\tfor:0.07646731947579559\tin:0.07347617594719306\tby:0.062385447118821234\twith:0.051819490448276724\tall:0.048619638566379936\t:0.01\n",
"-:0.2522757319534289\tto:0.15710887059249148\tof:0.12345253920146988\tti:0.11113881617372436\ttl:0.09175920428620735\t.:0.0725089067703767\tt:0.0682144618335418\tI:0.056900394050879724\tw:0.05664107513787971\t:0.01\n",
"and:0.30345475426789176\tfact:0.14405658113194258\tso:0.1315237016057161\tknow:0.08260028208832157\tis:0.08095989746473181\tsaid:0.07087056127395946\tsay:0.06823789382897714\tbelieve:0.06072470125158068\tbut:0.04757162708687892\t:0.01\n",
"would:0.16373213366039766\tI:0.1627234680084594\twho:0.15526351879405156\tthey:0.13829939585563447\twe:0.10261487473663208\tto:0.09650160414444704\tyou:0.06659725641677033\tand:0.0556228819081536\twhich:0.04864486647545376\t:0.01\n",
"the:0.5929166315892009\tand:0.0941271828120204\tof:0.08923142221002686\tfor:0.04266168133123156\tThe:0.04225219893625453\ttheir:0.03310002998438261\tin:0.03256119792140087\tother:0.03251880848548636\ttho:0.03063084672999578\t:0.01\n",
"the:0.28798183721523385\tand:0.15753278854142005\tof:0.1453406848104951\ta:0.11459453407493772\tto:0.09366775566947533\tThe:0.0625261785204545\the:0.044508308886668506\tbe:0.042865151024944\tas:0.04098276125637094\t:0.01\n",
"the:0.32169226969443454\ta:0.25308329228472587\tand:0.16157406523942267\tof:0.0938185627525038\tThe:0.04573384566092835\tan:0.037546046014857386\tto:0.029525040363101832\tin:0.024364532629874137\tthat:0.02266234536015155\t:0.01\n",
"sum:0.31493408044793075\trate:0.17400702794505177\tday:0.08790673471107428\tamount:0.0856604774755793\tnumber:0.06879770470221991\tinstead:0.06854397621643124\tpart:0.063987735638917\tperiod:0.06350550857227624\tdistance:0.06265675429051952\t:0.01\n",
"of:0.40310267448122866\tin:0.11793184852163249\tto:0.1123035634083525\twith:0.07660881890752108\tthat:0.06598781648772241\tfor:0.06128273110155173\tand:0.06071900406796396\tby:0.049086066013302114\ton:0.04297747701072524\t:0.01\n",
"the:0.8863726773530108\ttho:0.04767429894468294\tThe:0.02037911013063574\ttbe:0.014848854384155502\tof:0.010704508851547225\tand:0.0029070840653533446\tby:0.0026907681676473397\ta:0.0026265092802739095\ttlie:0.0017961888226931213\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.3504444290396578\twill:0.2304633529847178\twould:0.15017001798483062\tmay:0.06048113618382543\tshould:0.053613581943932904\tshall:0.04834312830010496\tnot:0.039472904970293\tmust:0.03745622841685202\tcan:0.019555220175785405\t:0.01\n",
"the:0.27964689468410564\tof:0.2563686976829857\tWest:0.23893680022046135\tand:0.061972526425395184\tin:0.06174121919183766\tby:0.028256265475299858\tfrom:0.022055249638507867\tsaid:0.021401474727824357\tfor:0.0196208719535823\t:0.01\n",
"of:0.43553516001062287\tand:0.21062461002871755\tby:0.11957439995156405\twith:0.05929120257371001\tin:0.04915838581707449\tfor:0.04910082938300587\tthe:0.024062400138702936\tor:0.022091548175189515\tas:0.020561463921412684\t:0.01\n",
"the:0.3509240523275149\ta:0.28402301950307646\tlarge:0.1618837607503019\tthis:0.05881984173795452\tgreat:0.03954090941016881\tin:0.02489198543467903\ttho:0.02413325406973447\tsmall:0.023704921761750538\tevery:0.02207825500481928\t:0.01\n",
"and:0.22111249128563978\tthat:0.2174331088316845\twhich:0.1307517633357168\tto:0.13026181913579632\twhen:0.0740264242364343\tas:0.07080483563122837\tif:0.06263552396202532\tsaid:0.04296828096929839\twhat:0.04000575261217631\t:0.01\n",
"out:0.22440349511403931\tpurpose:0.15661113577272426\tmeans:0.150471405338216\tmatter:0.0949316807014122\tright:0.09036209733894919\tone:0.08148220186880953\tsort:0.06640756183690587\tnumber:0.06365241702057775\ttime:0.061678005008365844\t:0.01\n",
"per:0.33065838744022596\ta:0.3075034507375975\tthe:0.15738586440761415\tlast:0.05891165739412999\tevery:0.03880093245921211\tone:0.03745429272803362\tthis:0.02168348352483583\teach:0.02021186406450978\tnext:0.01739006724384105\t:0.01\n",
"the:0.234408122978364\tof:0.1828304793787199\tand:0.15070945178286432\tin:0.11802874539792416\tto:0.07447537350815517\tfor:0.06971697362682315\ta:0.06501836054781819\tthat:0.04761270286895048\tor:0.0471997899103806\t:0.01\n",
"and:0.2165381807466691\tthe:0.18724203922351226\tof:0.14904754853675403\tto:0.11548725602063734\tbe:0.07888300539379994\twas:0.07500647985195938\tin:0.06698318540006265\tis:0.055634215838476345\tare:0.04517808898812875\t:0.01\n",
"of:0.46154119731010235\tin:0.11137165717899584\tto:0.09513047033335133\tby:0.0634333271214118\tand:0.05663147022325325\tfrom:0.05456811050109913\twith:0.05190400109284523\tat:0.04889680529175253\tthat:0.04652296094718855\t:0.01\n",
"to:0.2805042201644879\tand:0.12786361473977495\tor:0.12096590304787198\tknow:0.10921157206642874\tin:0.09629825600601073\tof:0.08520573511441608\tthat:0.0687653120196395\tquestion:0.05354459834235271\tsee:0.047640788499017366\t:0.01\n",
"of:0.1838382547185336\tthe:0.17398910326181957\tto:0.15525049370627406\tand:0.11672107791500232\twas:0.1034123872197639\tbe:0.07570604815225464\ta:0.06544450239941506\tis:0.05918487794894573\tfor:0.05645325467799111\t:0.01\n",
"cents:0.4792647427772294\tbushels:0.09794502474135018\ta:0.08123742788406445\tdollars:0.07467522045593539\tcent:0.0659571695610887\tthe:0.05324282560681478\tpounds:0.05207629598126501\tfeet:0.0475578374290808\t$10:0.03804345556317125\t:0.01\n",
"of:0.3652246737007465\tin:0.22750881206088724\tto:0.15598182665747765\tfor:0.055790666473105606\tor:0.0528262842106371\tby:0.037264425055534754\tat:0.03219554393672553\tIn:0.03172744118626675\tif:0.03148032671861886\t:0.01\n",
"to:0.4385135250335698\twill:0.1632486613804118\tcan:0.0745234048776658\twould:0.07425658527585953\tand:0.047126099027859594\tnot:0.04490311662987386\tmust:0.03856020889170582\tshould:0.037827058818278\tcould:0.03670956134393319\tshall:0.03433177872084261\t:0.01\n",
"the:0.5147524550492377\ta:0.1730868151427119\this:0.09819501249635076\tno:0.0570887300080657\ttheir:0.03606467904858163\tand:0.03505336133557126\ttho:0.027722030127988694\tmy:0.024282416799627952\ther:0.023754499991864447\t:0.01\n",
"the:0.46780287458227066\tand:0.12600683507819926\tThe:0.09122706886129628\ta:0.08677684446646411\tby:0.06267888051035743\t<s>:0.04529726990196417\tin:0.04090394432079952\tsaid:0.03671892523937614\ttho:0.03258735703927238\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.3393255573743127\tand:0.21178061799709652\tof:0.18374035432791083\tthat:0.05355193750391202\tThe:0.05262746553326421\ta:0.05042822526649288\tor:0.03381932134870707\tI:0.03348309181440277\tin:0.0312434288339012\t:0.01\n",
"be:0.3125262286790988\twas:0.1674491276480626\tbeen:0.12225056648155871\twere:0.11428149616158986\tare:0.08962461743903055\tand:0.058829646934343185\tis:0.05402384369387775\tbeing:0.04230657152576341\the:0.028707901436675072\t:0.01\n",
"of:0.3187643713864802\tto:0.2039123850852113\tby:0.1484897030661187\tand:0.08937556930622113\tin:0.08244090402807665\tat:0.04837363854293881\tfrom:0.03708491368932264\tfor:0.03454445709776817\tthat:0.027014057797862204\t:0.01\n",
"be:0.2423532426621104\tnot:0.19816699655760084\twas:0.11750324736213573\tand:0.098139913805448\tI:0.08456133493179455\tbeen:0.07134618064437706\tis:0.06339308621076449\tare:0.06233541288225441\the:0.05220058494351464\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"in:0.2131866054664273\tfor:0.18278527504286687\tof:0.17465590095326441\twithin:0.09270317324720147\tand:0.08112620763954176\tonly:0.07401156421911753\tIn:0.06727676343538887\twith:0.05638982722093512\tis:0.047864682775256746\t:0.01\n",
";:0.2140406523710403\tmortgage:0.17515171653900855\tMr.:0.11907178366862219\tstreet:0.09875469644921217\tmortgage,:0.09579419019654717\tcontained,:0.07947761068705063\t,:0.07874590570648383\tfeet:0.06699557099634464\tone:0.06196787338569041\t:0.01\n",
"the:0.3166697174821796\tof:0.17198936940398363\tand:0.1703929511900278\tto:0.09468759621184349\ta:0.06394087066527633\tor:0.04607117600129529\tin:0.04596010506438174\tbe:0.0405535762073302\tfor:0.03973463777368206\t:0.01\n",
"Mr.:0.3707088402799569\tDr.:0.10141784322623172\t.:0.09298695590522031\tC.:0.08276181098787226\tJohn:0.07999455338443963\tMrs.:0.07703912347449964\tJ.:0.06371202538268078\tH.:0.06080424753327502\tM.:0.060574599825823756\t:0.01\n",
"and:0.35300645440956296\tthat:0.2031892171245079\tas:0.15692861119759352\tbut:0.06651879692357407\teven:0.05975685123398287\tAnd:0.042216136067045835\tor:0.03780334824475082\tBut:0.035631161844753456\tsee:0.03494942295422833\t:0.01\n",
"of:0.16171533164899285\tand:0.12834322834344805\tto:0.11159342813169176\twas:0.10960649845261718\tin:0.10403090544422154\tas:0.10094522988167554\tis:0.09776695379763362\tat:0.09585973654954104\ton:0.08013868775017845\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"the:0.5131603592134009\ta:0.11527568679058685\tThe:0.10070563517200991\tprotective:0.07086984136888774\tof:0.06775415174115337\tthat:0.04091370054940553\ttho:0.02904103129189646\this:0.028096256289590154\tnew:0.024183337583069047\t:0.01\n",
"they:0.26004076152708355\twho:0.12520266395751167\tthere:0.11579702370869377\twe:0.11373584132620913\twhich:0.08776419117906968\tand:0.08322440250912155\tyou:0.07598043962573241\tThere:0.06594329369292243\tThey:0.062311382473655905\t:0.01\n",
"of:0.3420422053370365\tto:0.1388434664336376\tin:0.13786264416522526\tand:0.08027954924229379\twith:0.07123181302638898\tfor:0.06369579859368074\ton:0.06135083543937238\tby:0.04859824571313037\tfrom:0.04609544204923423\t:0.01\n",
"and:0.2228553872631746\twas:0.17286508319738889\tis:0.14273502771221838\tbe:0.09765088978212884\tsucceeded:0.09724584251917125\tare:0.08563394993110225\tmade:0.059743935097233934\tthat:0.056459488672603204\twere:0.05481039582497856\t:0.01\n",
"on:0.20918125627299392\this:0.12737312723777505\ta:0.12625882510914266\tto:0.12041853840198324\tthe:0.09766052277994446\tin:0.09556025346082296\tof:0.08601222006831137\tother:0.06875055856734806\tmy:0.058784698101678384\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"feet:0.188207798264054\tnumber:0.13581018877971066\tline:0.13405977390680576\tout:0.1092588193959918\tday:0.10457358973002054\tcity:0.10338576896567012\tone:0.08474822717655585\tcost:0.06583415159954255\tamount:0.06412168218164876\t:0.01\n",
"said:0.36725523220800993\tthe:0.300570197816995\tthis:0.09136809472810978\ta:0.06542056807351146\tand:0.061837120626805915\tLake:0.03243818539158043\teach:0.02764001771826218\tof:0.02397364269412824\tany:0.01949694074259698\t:0.01\n",
"the:0.22197520014450645\tof:0.21772373905619058\tMr.:0.13143333341858318\tand:0.12863362894912672\tin:0.07541098831116166\tMrs.:0.05970398689391329\tThe:0.05432132802680129\tto:0.05231851964556479\tMiss:0.04847927555415207\t:0.01\n",
"be:0.1487539229361705\tHe:0.1456774989273792\tis:0.14420435391229106\tand:0.13441473568740875\twas:0.13392760463164483\the:0.12999120857265808\talso:0.055670980871974175\tso:0.05060579567044155\tbeen:0.046753898790031806\t:0.01\n",
"and:0.22158270743167627\twas:0.15199464461561035\tnothing:0.11095501212382969\tis:0.10855734364607733\tof:0.10829193851587912\ttalk:0.07804623821504886\tanything:0.07352763093930294\tbring:0.07110415866648015\tbrought:0.06594032584609527\t:0.01\n",
"of:0.3096856172746495\tin:0.1410048781411113\tto:0.13329306485422196\tand:0.07821901956930731\tthat:0.0769624307301442\twith:0.07483149595502306\tfor:0.07321059035763544\tby:0.06357423846538593\tall:0.0392186646525213\t:0.01\n",
"of:0.3985080413315299\tthat:0.1721156530772638\tin:0.12321207370402747\tto:0.07482790816982869\tand:0.06055651828061461\tby:0.05849128395395055\tIn:0.036150217693480424\ton:0.03526406217359937\tfrom:0.030874241615705234\t:0.01\n",
"the:0.2812044052940049\tof:0.1800381040595876\tto:0.1740636308333416\this:0.09483887052429871\tand:0.07006636267118804\tin:0.051540903536249384\ta:0.04968633933768278\twith:0.045666379315855724\ttheir:0.0428950044277913\t:0.01\n",
"of:0.22354142801815077\tthe:0.2055028193899123\tand:0.2030623833449861\t.:0.07441972313208527\tMiss:0.06830934619069569\tMrs.:0.06193753751732154\tMr.:0.05526692757326751\tto:0.05331434204463232\t<s>:0.04464549278894842\t:0.01\n",
"of:0.36546924240853723\ton:0.18804857990730692\tin:0.1354692933676715\tto:0.08760407836756379\tthat:0.05887057228299786\tby:0.051121529399757094\tand:0.045137699458042274\tIn:0.03150080499049843\tfrom:0.026778199817624852\t:0.01\n",
"and:0.2147818800961185\the:0.19330813860656126\twho:0.13138827513574453\tHe:0.11840382393038121\thave:0.10382543716136199\thas:0.0755013623698759\thad:0.05716928157214665\tbe:0.05149728414581346\tI:0.04412451698199662\t:0.01\n",
"It:0.3935832867805609\tit:0.30313957484994525\the:0.07231474942823445\twhich:0.0669361427302353\tand:0.041564112037185956\tthat:0.03380711674913524\tThis:0.028490296415007513\twho:0.02653606368793155\tHe:0.023628657321763825\t:0.01\n",
"the:0.2534392603223973\tof:0.17100735611663728\ton:0.13727359310810222\ta:0.13463513246181136\tto:0.0853529578047964\tand:0.07315426809265119\tin:0.06413492827375612\tan:0.035620581000984974\tor:0.03538192281886312\t:0.01\n",
"was:0.2957879466319811\tbe:0.26813158389066727\tbeen:0.1015348400610238\tis:0.08598282019804382\twere:0.0803464753468286\tare:0.04583303221275167\tand:0.04333546312300556\tbeing:0.03453955087783862\thad:0.03450828765785932\t:0.01\n",
"be:0.26455512398711195\tand:0.17371714310953307\twas:0.13780593030608448\tis:0.09147678120023692\twere:0.0759238483364898\tare:0.07490768378835626\tbeen:0.05993485332162293\tthe:0.0582805700899753\the:0.053398065860589324\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.669276181320507\tThe:0.06893984106593676\tan:0.058942578879077945\tno:0.05767172616164914\ttho:0.037722313514558695\tany:0.028417109712122555\ta:0.027217368294440058\tsaid:0.023201608596170365\tand:0.01861127245553736\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.4491749989899173\tto:0.1261594361122625\tand:0.0875745755637848\tin:0.0773888291198984\tfor:0.060257025684107124\tthat:0.05202350694046633\twith:0.047910877712466986\tby:0.04705797070784266\ton:0.042452779169253906\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.20487655441416144\tand:0.18246493303403308\tof:0.11584133028314693\tbe:0.10372481665333814\tthe:0.0883494160503195\twas:0.08604343124321481\tis:0.07279233720822899\tfor:0.07055170863664639\tin:0.0653554724769106\t:0.01\n",
"the:0.389272800813676\tof:0.17210485164621478\tand:0.17082175439220343\tThe:0.11627151869807545\tthat:0.04169052592452665\this:0.028205704258302672\ttho:0.025059907039819838\tthese:0.023323544818787702\tto:0.023249392408393497\t:0.01\n",
"and:0.29635189305068393\tso:0.14127294388052722\tfact:0.11934677619133646\tsaid:0.09382506667151261\tknow:0.09321340215184683\tsay:0.08466047801883074\tis:0.061229379962697866\tbut:0.05099440426762219\tbelieve:0.04910565580494222\t:0.01\n",
"the:0.26397004977439464\tof:0.15574157203250089\tand:0.14850263550729134\ta:0.10910328092713903\tto:0.08804885207533805\tbe:0.06921959297159311\twas:0.059214951570495646\tin:0.051576680980620036\tis:0.04462238416062721\t:0.01\n",
"and:0.2160840011441677\twas:0.19307515823599952\tis:0.11710328468798123\tit:0.10413802935542997\tbe:0.0821332167577536\tthat:0.08153929039311944\tmade:0.07493813651076084\thim:0.060976853873786464\tup:0.060012029041001134\t:0.01\n",
"the:0.3816807557499501\tof:0.17885201543177986\ttheir:0.09435519923129528\ta:0.07696487234189693\this:0.06890389883398437\tand:0.06023687976150515\tgreat:0.046181523268744015\tno:0.042433386570320974\tin:0.04039146881052309\t:0.01\n",
"and:0.30132020239915897\tis:0.11119746070334267\tbe:0.10342383628277005\tserved:0.08924283171230943\tthat:0.08794619158593868\ttime:0.07790541440461883\twas:0.07681424830763602\tor:0.07597111826904795\tnow:0.06617869633517741\t:0.01\n",
"the:0.8537148219419836\ta:0.03646549641959215\tThe:0.034157274392354796\ttho:0.03343211300962899\ttbe:0.013223462958107463\tand:0.0049773548095505375\tfinal:0.004847810719444482\tgreat:0.0047243038929958205\this:0.004457361856341994\t:0.01\n",
"the:0.2366695049741145\tof:0.171417182725107\tto:0.1103642950013706\tand:0.10573472350497891\t.:0.09473422559031636\tMr.:0.08825249857628616\ta:0.0777462500971279\tin:0.0620918774307186\tat:0.04298944209997995\t:0.01\n",
"the:0.29169140340864314\ta:0.17682271904931793\tof:0.15001235717298542\tin:0.11178362391156613\ton:0.07154200223172039\tother:0.05795661884925811\this:0.052653259809369135\tand:0.042227099989975245\tschool:0.03531091557716451\t:0.01\n",
"of:0.2031739616185215\tand:0.13548357950372356\tto:0.1169634844370666\tis:0.11229325087655455\twith:0.10863235700154433\tas:0.0912825709703543\twas:0.08267520742978153\tby:0.0746917706207158\tthat:0.06480381754173783\t:0.01\n",
"and:0.20441155362062136\tof:0.16327144141342842\tas:0.12887591249990382\tthat:0.0935506823628407\tto:0.08961813963778743\twith:0.08827920084503958\tfor:0.08365585488562442\tbut:0.07491240817982037\tmake:0.06342480655493389\t:0.01\n",
"the:0.684374800658647\tand:0.09607457325995261\ta:0.06566294379963716\tThe:0.04817734587786815\ttho:0.029760582997710814\tthis:0.019629211545014374\tor:0.018249888394030005\tany:0.014737698648866353\tby:0.01333295481827352\t:0.01\n",
"to:0.3170029937389608\tthe:0.22844371918683537\twill:0.1168958136925401\twould:0.09780256411812871\tand:0.05955112327239363\ta:0.057860295059639084\tmay:0.04482893272437918\tnot:0.03863726897614818\tcan:0.028977289230974927\t:0.01\n",
"the:0.4923260238685299\ta:0.2694278503914999\tof:0.09762209184444574\ttho:0.02942349932664076\tand:0.029245879564661216\tThe:0.02654712497700138\tsaid:0.018504150935478466\tA:0.015465421516017005\ttbe:0.01143795757572563\t:0.01\n",
"the:0.4284306883178776\tand:0.1370432030944743\tof:0.13642565239073168\tThe:0.09125990139267995\tthat:0.05182360861428081\this:0.048235859775367915\ta:0.03387130842865858\ttheir:0.0328017053654433\tsaid:0.03010807262048575\t:0.01\n",
"for:0.49702887677701013\tat:0.10564648975041047\tFor:0.0811939080963686\tand:0.07606969388421332\tof:0.06079672961748245\tin:0.054030443245629244\tthat:0.048962551381132036\tto:0.037605037413795665\tby:0.028666269833958133\t:0.01\n",
"it:0.25963858208860846\twhich:0.14112918128503316\tand:0.13477755288321686\tIt:0.11476539973660434\tthere:0.09895590903510543\tthey:0.0762137180117906\twho:0.057804780239370954\twe:0.05506058752131994\tthat:0.05165428919895035\t:0.01\n",
"to:0.4484124891607857\tof:0.10503332415444672\ta:0.09239098571293898\tand:0.0892769333870444\tthe:0.06253424492358145\twho:0.051563204691276794\tnot:0.04883082239053075\tI:0.048693659182018664\twill:0.043264336397376424\t:0.01\n",
"<s>:0.32719628570159937\tit.:0.10325049113195388\t.:0.09953347739113039\tSt.:0.09342446718944997\tof:0.08465610576595069\tyears.:0.07606878217389572\thim.:0.07286073740079482\tand:0.06890757655354132\tthem.:0.06410207669168383\t:0.01\n",
"be:0.23893475862471647\twas:0.13272343317214613\tis:0.12322426583270758\tand:0.10365936902192133\tare:0.10160753868608319\tthe:0.08561809761797054\the:0.0730560862131785\tbeen:0.07072200155014093\twere:0.060454449281135345\t:0.01\n",
"matter:0.1721949544746678\tnumber:0.16549517899128305\tamount:0.15890840248788105\tout:0.1163468094771826\tline:0.08760833306018107\tkind:0.08001854015275844\tsort:0.07510809172159785\tpurpose:0.06862551549191884\tlack:0.0656941741425295\t:0.01\n",
"men:0.3988728717850422\tthose:0.19816641851664418\tman:0.12380205661432733\tand:0.06230704547424623\tpeople:0.06040124982863034\tone:0.043102137100377524\twomen:0.039750242671321136\twoman:0.031880327251387744\tall:0.03171765075802319\t:0.01\n",
"<s>:0.5335445376024411\tand:0.12858360613053943\t.:0.07767429309484879\tfollows::0.06675138021982024\tof:0.058739055762358536\tthe:0.04244331580954141\tto-wit::0.030994442206746076\tto:0.029438147113404388\tin:0.021831222060299964\t:0.01\n",
"more:0.2684865675627523\tthe:0.19038862506527648\tless:0.15045372717491748\tof:0.11019234800535599\tan:0.08479253005238488\tgreater:0.06542892538288521\tbetter:0.042852573428084795\tand:0.041747285031251656\tin:0.03565741829709107\t:0.01\n",
"in:0.40267387158552537\tof:0.17344755112266863\tNew:0.11925656366735468\tIn:0.10580465679112626\tto:0.06101501640031684\tand:0.03960640502136954\tfrom:0.038238666621847155\twith:0.027476138297944454\tby:0.022481130491847023\t:0.01\n",
"the:0.37734718415064117\ta:0.18509434613327638\tof:0.10625746342855688\tand:0.0983019890747742\tto:0.06265189895823563\tThe:0.04709250310921788\tthat:0.043691517603426266\tin:0.03847534733919399\tby:0.031087750202677636\t:0.01\n",
"person:0.3232435209152325\tmore:0.2559052086025641\tone:0.10619966703476633\ttwo:0.06501802670087518\towner:0.05664963776690563\tday:0.05290623161506306\tlaw:0.05102689783353232\tthree:0.03995162509468568\tpiece:0.03909918443637515\t:0.01\n",
"the:0.3312931097520634\tand:0.21108308736221074\tof:0.14918021103800008\tan:0.10899504788457094\tin:0.05501799226046978\ta:0.04243828136697653\this:0.03892418440695907\tThe:0.02961112212161555\tcounty:0.02345696380713388\t:0.01\n",
"the:0.36232644615836734\ta:0.1931861979624286\tof:0.10697167628326669\tand:0.08798900079575751\tat:0.068282409717623\tan:0.05332547005967429\tin:0.05275409283846942\ton:0.03358000118700384\tto:0.031584704997409244\t:0.01\n",
"the:0.3227346584936367\tand:0.1940022501450567\tof:0.11403598547268404\tin:0.08996336288986952\tto:0.07329013016807916\tthat:0.06807699171598768\twhich:0.04427919217174509\tor:0.041931633278455636\t<s>:0.04168579566448552\t:0.01\n",
"of:0.3531921470021091\tand:0.1407985102351128\tthat:0.09316373522973621\tin:0.08827366925128351\twith:0.07002289924881078\tto:0.06846501287257709\tis:0.06362892294691856\tfor:0.060181591988689984\thave:0.05227351122476186\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"the:0.28911769851370467\tof:0.15034482710262848\tand:0.14727364343021293\ta:0.12256378698685642\tto:0.11180388212332248\tbe:0.05566769946958989\twas:0.044440704312762515\tor:0.03660687066406267\tis:0.032180887396860036\t:0.01\n",
"of:0.2879095906736429\tby:0.15147283143704135\tto:0.13226073003663077\tthat:0.1285469390652348\tand:0.12636804441264757\twith:0.05074601143565901\t<s>:0.04360499343411609\twhich:0.037163493311764606\tas:0.03192736619326302\t:0.01\n",
"more:0.4022429279849611\tless:0.15067137643731532\tbetter:0.1230713924831501\trather:0.08954190488344776\tother:0.057112212193785476\tgreater:0.05507528844112588\thigher:0.04136112785964676\tlower:0.04077508563802818\tlarger:0.030148684078539354\t:0.01\n",
"few:0.2796034914793986\ttwo:0.24602716038520347\tsuccessive:0.12635262339605233\tthree:0.09141175143604005\tseveral:0.07377646152133804\tsix:0.04930324721572907\tfive:0.04632869825141499\tfour:0.04058892810910521\tten:0.03660763820571819\t:0.01\n",
"and:0.5090272997432481\tthat:0.10778905250937586\tbut:0.06846398265974658\tdays:0.06334103378610689\tand,:0.062487699779472376\tsoon:0.05827063280562924\tuntil:0.04307539225482937\tshortly:0.03949720582159897\ttime:0.03804770063999251\t:0.01\n",
"that:0.22423978411691378\tas:0.20112268654969784\tand:0.16259026870353488\twhich:0.0819586020395267\tlots:0.06961765437813769\tif:0.0670298301535858\tfor:0.0635602695511304\tNo.:0.06075331589668431\tshould:0.05912758861078857\t:0.01\n",
"and:0.2217959233948369\tas:0.1796860717414515\table:0.11310397413878419\torder:0.09616887137836329\tenough:0.08845797575586795\tis:0.08164760717368208\tor:0.0778553515372209\thave:0.06728174995955606\tused:0.06400247492023718\t:0.01\n",
"and:0.3523122251038127\tdays:0.13452236480524707\tthat:0.10778518738845456\tsoon:0.09644262899501786\tyears:0.08035014631488717\tshortly:0.06959919660962034\tbut:0.0658590994223604\tmonths:0.042694882335744984\tyear:0.0404342690248548\t:0.01\n",
"he:0.20675425549140292\tit:0.1847584250045772\tIt:0.1334250418303093\twhich:0.10599705004813702\tI:0.1029833567801373\tand:0.07837946795615704\tHe:0.07222450493760499\tshe:0.05371067378718268\tthat:0.05176722416449162\t:0.01\n",
"out:0.17479152493052696\tone:0.1612745066563113\tsome:0.1543730398369646\tall:0.11549577046618895\tpart:0.104420569411086\tbecause:0.07383495211930248\taccount:0.07284118264889747\tmany:0.07000946912075943\tand:0.06295898480996275\t:0.01\n",
"the:0.7693871219273434\ttho:0.04731194227507761\tThe:0.046001976281035806\ta:0.03976273346875239\tan:0.03116183280524173\tand:0.022624081278559832\ttbe:0.013149322795398367\tany:0.010522018235222082\tno:0.010078970933368753\t:0.01\n",
"of:0.25823735451086327\tthe:0.13793974357911254\tand:0.1261945327872129\tin:0.10903247852169387\ta:0.10865155169663732\tto:0.09238292652407407\t-:0.07710713226639392\tfor:0.04331262260445606\tby:0.03714165750955609\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.19503786139835494\tis:0.13274997670602395\twith:0.11206106325011829\tto:0.10959842991036703\twas:0.10479355257071762\tin:0.09780160058672194\tas:0.08209688634186146\ton:0.07814660928628968\tand:0.07771401994954491\t:0.01\n",
"as:0.24217288743103907\ta:0.192487118632311\tany:0.12004235821020075\tthe:0.10411575443201089\tearliest:0.10127916710561756\tand:0.0704509696229719\tevery:0.06892688973918447\tno:0.04694594807527493\tim-:0.043578906751389715\t:0.01\n",
"and:0.30735359476081114\tto:0.22522162155475015\the:0.10662948316921289\tof:0.07884913974184656\tin:0.0597246616761408\tthe:0.057550992930262716\twas:0.055200078540659045\tthat:0.0503361973709718\tfor:0.049134230255344906\t:0.01\n",
"was:0.2662303657377886\tis:0.15951593365151256\tbe:0.1385011435123825\the:0.09321828823311433\tHe:0.08559786602635802\tand:0.07480901295300763\tbeen:0.062385547985023874\tI:0.056987442328591736\tare:0.052754399572220986\t:0.01\n",
"the:0.3526498906279168\tof:0.14502130279609607\ta:0.13830183942177893\tand:0.1168725067667829\tto:0.06260836580021815\tin:0.06163770053826012\tfor:0.03999566904946519\tat:0.03716143353865228\tThe:0.035751291460829726\t:0.01\n",
"of:0.21840032604439352\tfor:0.1346043907019011\twith:0.12422092993006767\tin:0.11776813624637304\tto:0.11442191603901111\tupon:0.07864262822475239\tdo:0.07707942101669678\tabout:0.071298256799251\ton:0.053563994997553474\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"a:0.3752254331028303\tthe:0.34753161586509984\tof:0.07654958676655171\tThe:0.043773316655189756\tand:0.03914281723655084\twith:0.02847254312561346\this:0.02799582530753913\tfor:0.02738846858245648\tin:0.023920393358168524\t:0.01\n",
"and:0.25055427459340973\tto:0.19788561512081754\tthe:0.19487051459150248\tof:0.09620919366618567\tat:0.05609744145762063\tor:0.051490709985108546\ta:0.050153250749725035\tfor:0.04773406540091407\twill:0.045004934434716384\t:0.01\n",
"person:0.2766733028777612\towner:0.11680070729807794\tone:0.10260056195319608\tlot:0.09529458363283674\tlaw:0.09028724150887119\tman:0.08431320878419846\tland:0.08040370166281388\tvein:0.07487358460354376\ttract:0.0687531076787007\t:0.01\n",
"the:0.39381414603745774\tand:0.17874956314955717\ta:0.10139976743193811\tthat:0.08859603852546724\tThe:0.08693418399001429\tof:0.04140089710958791\tno:0.04036971874704633\tif:0.030645712471708848\ttho:0.028089972537222202\t:0.01\n",
"that:0.36676990832500156\tand:0.2021494109104595\tbut:0.10784744981174711\tas:0.09568602346329859\twhich:0.06159835272923168\tif:0.04782769345076774\twhen:0.039627972801933566\tof:0.03607453689836179\twhere:0.0324186516091986\t:0.01\n",
"up:0.15814385675393813\taddition:0.13742981650675554\tand:0.12458187151217107\tcame:0.11414416982463267\tas:0.11250542114965958\tdue:0.08882136789922333\taccording:0.08683615157811309\treference:0.08455786721599691\tsent:0.08297947755950968\t:0.01\n",
"of:0.24436164658917967\tto:0.1643531234760542\tin:0.11684415238069956\tand:0.10866375010060321\ton:0.10010561630903958\twith:0.06756867261439999\tIn:0.06524748389156856\tfor:0.06304181195514774\tthat:0.059813742683307455\t:0.01\n",
"and:0.43468755346702337\tthat:0.09968774375368049\tsoon:0.09684465170174157\tdays:0.07219403837369409\tuntil:0.06335093878130184\tbut:0.0608364106309628\tyears:0.0590252806359112\tshortly:0.05411458282283047\tand,:0.04925879983285422\t:0.01\n",
"of:0.20993237752508137\tand:0.18156752908629392\tthe:0.1807155482430718\twas:0.09763604278896218\tto:0.09487097398635354\tbe:0.06842858040914851\twere:0.0588870968838175\tare:0.04947381235142595\tas:0.0484880387258454\t:0.01\n",
"the:0.445714713068073\tand:0.12920769746300784\ta:0.12907302108291357\tof:0.11031642532337377\this:0.04406354850620154\tother:0.03668779787034549\tThe:0.034802214437989726\tto:0.030351586090406498\tone:0.02978299615768869\t:0.01\n",
"to:0.356943770373367\tnot:0.13727417655490023\tand:0.13429564830264282\twe:0.0876753813674422\tI:0.06478107680857884\twould:0.06152308285481639\tyou:0.05227327993521022\twill:0.04984713221852048\tthey:0.04538645158452185\t:0.01\n",
"and:0.2201150155321038\tof:0.18956680384299557\twas:0.11714336304410324\tis:0.11473007219766723\tbe:0.10498014728817073\tare:0.07116894150708807\tthem:0.05857486156595032\tthe:0.05742102505034295\twell:0.05629976997157799\t:0.01\n",
"of:0.22648670452955053\tto:0.2163693185701176\tand:0.10697234843190744\tin:0.1042200303603374\ton:0.08066665556923432\twith:0.08052720281802167\tfor:0.062032289200670436\tfrom:0.05812749626373315\tthat:0.054597954256427314\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"one:0.22586711108771074\tall:0.20318924817112793\tcopy:0.13585339809724553\tsome:0.08000904611832456\tout:0.07379004803716031\tthose:0.07122279865131625\tmeans:0.06962753566551794\tpurpose:0.06649818257859248\tpart:0.06394263159300428\t:0.01\n",
"it:0.33853082227275716\tIt:0.24337835320521994\tthere:0.09520718488027768\tthat:0.07737003876586056\twhich:0.07332810869499344\the:0.05180014029682764\tThis:0.044145806979173884\tthis:0.03351125348578113\tThere:0.03272829141910858\t:0.01\n",
"the:0.2561890529191202\t.:0.18132581494084674\t<s>:0.1430425225000923\tand:0.1260444777104737\tof:0.0842168870941964\tMr.:0.08123389001749104\tMrs.:0.04199693138899891\tThe:0.03909673829229777\tde-:0.03685368513648295\t:0.01\n",
"the:0.22669854374274823\ta:0.16065144283152755\tand:0.15682055975370968\tof:0.14859189720612156\tto:0.10768267476423311\tin:0.05931814572121813\tbe:0.05857337530993183\twas:0.03748628502926306\tis:0.034177075641246855\t:0.01\n",
"cents:0.4792647427772294\tbushels:0.09794502474135018\ta:0.08123742788406445\tdollars:0.07467522045593539\tcent:0.0659571695610887\tthe:0.05324282560681478\tpounds:0.05207629598126501\tfeet:0.0475578374290808\t$10:0.03804345556317125\t:0.01\n",
"W:0.14910773017956414\tM:0.12276990578542449\tJ:0.12075148222724486\tC:0.11156552709985228\tS:0.10363588713123016\tE:0.10247688778446311\tA:0.09710894198133282\tH:0.09413683549342977\tB:0.08844680231745826\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.19051943986217015\tof:0.1720639792232348\tas:0.16747509158597676\tthe:0.13450047028301987\tto:0.09096766000852802\tbe:0.06575526900119626\tsuch:0.06334143169216884\tmuch:0.055005516582227666\tin:0.05037114176147772\t:0.01\n",
"and:0.32348604205683973\tthat:0.2301135487800333\tof:0.17832799891731946\twe:0.05898139973120361\tbut:0.045707746673411716\tto:0.042890862641266014\twhich:0.03749877887606632\tfor:0.037004820607775005\tthey:0.03598880171608489\t:0.01\n",
"of:0.2941982509542119\tthe:0.16072125870391654\tand:0.13399067353957803\this:0.09692266493711496\tin:0.08517071875238715\ttheir:0.07482011164731803\twhose:0.05317389263355513\tour:0.04579059064521459\tthat:0.045211838186703636\t:0.01\n",
"the:0.6729026134981863\tof:0.07345627494891396\tand:0.06299703913573547\tThe:0.044365426488742074\tan:0.04292392647288456\ttho:0.038810867237322424\tin:0.023144470113200828\ttbe:0.01754886971346152\tthat:0.013850512391552893\t:0.01\n",
"and:0.2202019350874184\tto:0.1887535088684466\tthe:0.15010270598437445\tof:0.1407975291470318\tin:0.08131419172057798\ta:0.0664360152684864\tat:0.0552515473130643\tis:0.04373243898477513\twas:0.04341012762582496\t:0.01\n",
"they:0.3404026872478909\twho:0.12448748302667034\twe:0.10689241023493963\tand:0.09089158376940623\twhich:0.0792564948708466\tmen:0.06662993537047472\tThey:0.0656113059680487\tthere:0.062303918262768834\tthat:0.053524181248954084\t:0.01\n",
"and:0.3041302783373273\tas:0.1892464120716832\tthem:0.09726241528116308\thim:0.07844601042661696\tis:0.06867894655758504\twas:0.06648600916832237\tup:0.06439498529403735\tright:0.062020725475111185\taccording:0.05933421738815354\t:0.01\n",
"the:0.3668959715827938\tMr.:0.1767222625569003\tof:0.13075842474549082\tThe:0.10740889850841426\tand:0.07994463174687759\tSenator:0.04026661528314151\tthat:0.03453504701709033\tMrs.:0.026920058041619805\t.:0.026548090517671617\t:0.01\n",
"to:0.2622550673996061\tI:0.169311840601925\twe:0.12346484057769216\tthey:0.09776933574499443\twould:0.08648334546755962\tyou:0.06774747933723199\twill:0.06494267316638797\twho:0.061353716257102425\tWe:0.05667170144750058\t:0.01\n",
"the:0.5605409704885159\tin:0.14939785653120585\tof:0.09611694499775511\tand:0.06057678316068419\tIn:0.055350031724419775\ttho:0.028694835697852278\tThe:0.014918762264209778\tthat:0.012412794633474233\tto:0.0119910205018829\t:0.01\n",
"<s>:0.5278114153904214\tit.:0.10189007578985017\tthem.:0.06790456485491546\t.:0.06423458543619096\tyears.:0.05152727330278201\thim.:0.048374525379909265\tyear.:0.044626301188900055\ttime.:0.04207332898979948\tcountry.:0.041557929667231014\t:0.01\n",
"the:0.20441148452194383\tof:0.1799687752985794\tand:0.15951045419787307\tto:0.14923219010775662\tin:0.07549048297677491\ta:0.07048717531546922\tbe:0.059013471069004904\twas:0.05348993675704245\tis:0.038396029755555415\t:0.01\n",
"the:0.6883150274138988\ta:0.09222116951864981\tand:0.06195337711557717\tThe:0.05377856016924538\ttho:0.023848194794420227\tis:0.021197085835257302\tof:0.019514276897375234\twas:0.014613566241211368\tare:0.014558742014364731\t:0.01\n",
"as:0.173436796673747\tup:0.13412971342767138\tcome:0.11852609360688013\tand:0.10381223245833751\tback:0.103277566060711\tcame:0.1016016249346761\tgo:0.09825838167250896\tit:0.07923533163549472\tregard:0.07772225952997326\t:0.01\n",
"at:0.2960832973121029\tand:0.1653178706984434\tto:0.13572386943498355\tof:0.10451897004383971\t.:0.07940952716214597\tthe:0.06842355307792371\ta:0.05504556952926411\tNo.:0.04290906050450695\t<s>:0.04256828223678967\t:0.01\n",
"and:0.2750436908578541\twas:0.17813731682240175\tis:0.15858763511057317\twent:0.0859500111148902\tare:0.07231122800960538\tit:0.055955787163092074\tgo:0.05512884549030008\tbe:0.05465947075880729\tthat:0.0542260146724761\t:0.01\n",
"that:0.28280257180743124\tand:0.1547146958616332\twhich:0.1113112163649611\tas:0.10906993953504172\twhen:0.09985182683911248\tif:0.07411321035990025\tbut:0.06700446249732833\twhat:0.05377735605206451\twhere:0.03735472068252723\t:0.01\n",
"as:0.26858075282354016\tof:0.19397443985604879\tand:0.1474519305487775\tto:0.08946810905326538\tis:0.07668138060114008\tall:0.06073858506828187\tin:0.05407183093101313\tfor:0.04956377793732996\tany:0.049469193180603124\t:0.01\n",
"that:0.2795537149247718\tand:0.16784669293687343\twhich:0.13288961414759906\tas:0.12870312394288416\tbut:0.06747648447971248\tif:0.06495889756531509\twhen:0.05641663027445595\twhere:0.0503865815579276\tbecause:0.04176826017046037\t:0.01\n",
"be:0.3069300697601083\twas:0.22833125568971024\tbeen:0.12590439427914904\tand:0.10376412773047115\tis:0.08201314717645813\twere:0.05133907717234386\the:0.032538454400331866\tbeing:0.02998675597505113\tare:0.02919271781637622\t:0.01\n",
"and:0.3175932226717366\tso:0.16318829802933255\tsaid:0.11580597577209897\tis:0.08137732008187601\tfact:0.0807271285051356\tknow:0.07142495230652889\tsay:0.06047208978071325\tbut:0.05002696304033166\tme:0.04938404981224638\t:0.01\n",
"and:0.3642292372262069\the:0.11721760911433343\tI:0.10095446607986532\ttwo:0.09253177656510697\tHe:0.0683431727371584\tnever:0.06538676793939677\tto:0.0637921409417012\tthen:0.05939215785451974\tever:0.05815267154171113\t:0.01\n",
"of:0.21008914129064662\tthe:0.20175451304969128\tin:0.16396054932294432\tSand:0.16064220523186082\tand:0.074406015503157\tGrand:0.06392421653985596\tto:0.04801833247608485\t<s>:0.034119749874188865\t.:0.03308527671157017\t:0.01\n",
"of:0.2710336655156713\tand:0.20337464086542859\tthat:0.122515660061006\tis:0.09459456761531373\tto:0.07659595795707096\tfor:0.06965495383668813\twould:0.05288499512228027\tnot:0.05039151031475474\tin:0.048954048711786304\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"of:0.32455640810292513\tin:0.1948584858200923\tthe:0.10758095155056183\ton:0.09605208907587039\tto:0.08259474890182572\tIn:0.05281619283818206\tand:0.04718548582357526\tfrom:0.04598869616292634\ta:0.038366941724040995\t:0.01\n",
"the:0.43651177249066164\ta:0.28490469594007417\tthis:0.10393312998632037\ttho:0.03493805425792531\tThe:0.029554902507449885\tto:0.027719833963038534\tand:0.025964380604612626\tevery:0.024918323362381534\tof:0.021554906887535957\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"is:0.162169650821934\tany:0.12171952430210581\tand:0.12054420398903785\tthe:0.1111673184024917\tonly:0.10487424003857501\tno:0.10254712877798848\tbut:0.09429406910144607\tof:0.09000943645194708\tto:0.08267442811447404\t:0.01\n",
"the:0.3486715888371081\ta:0.33553185195678514\tto:0.07543873905977201\tand:0.07103736314876219\tThe:0.04384694958686547\tnot:0.03955326573518126\tof:0.029636339505778507\this:0.02801504413312634\tin:0.018268858036621177\t:0.01\n",
"of:0.2879095906736429\tby:0.15147283143704135\tto:0.13226073003663077\tthat:0.1285469390652348\tand:0.12636804441264757\twith:0.05074601143565901\t<s>:0.04360499343411609\twhich:0.037163493311764606\tas:0.03192736619326302\t:0.01\n",
"the:0.7262895499935809\ta:0.06336948661367652\tthis:0.053902360391989694\this:0.04200302785940913\tany:0.022298711745285013\ttho:0.02178375725972367\tgood:0.021738489651801616\tsuch:0.02117908808273212\tother:0.01743552840180142\t:0.01\n",
"of:0.40816282121130404\tin:0.1663581372419813\tto:0.11283613680692166\tand:0.06357750287508196\ton:0.057654048051192494\tthat:0.05439521740337203\tby:0.048611815628254666\tfrom:0.04328517603230415\twith:0.03511914474958768\t:0.01\n",
"a:0.7141254917362713\tA:0.09131489173304716\tpast:0.05965808506483505\tvery:0.030266717117016395\tthe:0.029087521092811187\tlast:0.028252851199948335\tnext:0.017470110133820667\tis:0.012332063653107427\tare:0.007492268269142296\t:0.01\n",
"to:0.7289463817174001\tand:0.058186399087637904\tor:0.0352075957234212\tthe:0.03439075903961462\twith:0.03195345804480588\tof:0.028701046438819246\tnot:0.02675898328719847\tfor:0.023661497156460758\tat:0.022193879504641748\t:0.01\n",
"the:0.7430521822349359\tThe:0.10200771425598247\ttho:0.038399774292953597\tthis:0.036971603980595916\tthat:0.023147901617129166\tand:0.014163022933151076\ttbe:0.014015665342848614\tThis:0.00994590558212236\ta:0.008296229760280865\t:0.01\n",
"the:0.371135423698651\tand:0.19864601452824862\tof:0.1211582258806777\ta:0.10450067126904716\tthat:0.054077763594607954\this:0.052866945619786096\tThe:0.03066294046945445\tby:0.03011072248165463\tto:0.026841292457872364\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3227346584936367\tand:0.1940022501450567\tof:0.11403598547268404\tin:0.08996336288986952\tto:0.07329013016807916\tthat:0.06807699171598768\twhich:0.04427919217174509\tor:0.041931633278455636\t<s>:0.04168579566448552\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"provisions:0.16627098017731173\tcopy:0.15165327534695813\tdate:0.12617568642366098\tpart:0.12388683156619237\tone:0.1044724200406653\tout:0.09585475097905363\tpeople:0.09019386903076457\tpublication:0.0773301702042243\tmembers:0.054162016231169084\t:0.01\n",
"more:0.3129744856959424\tless:0.2618417597279203\trather:0.12876662735402436\tbetter:0.09040894727453175\tgreater:0.08096024949886096\thigher:0.03141564269588002\tother:0.03021041228074172\tworse:0.02815001935925768\tand:0.0252718561128409\t:0.01\n",
"the:0.4411418512344822\tand:0.10660738462761012\tan:0.10070338084895732\tThe:0.09816111424024515\tto:0.06471785122561623\tof:0.06101092674422022\ta:0.045555391944078996\twas:0.038848632627012\tthat:0.03325346650777787\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"to:0.5960014567228901\tthe:0.0922429649312751\tof:0.08012213852515136\tnot:0.057303263585336765\twill:0.05575280529356385\tand:0.03340883317530291\ta:0.033318846670888\tno:0.022920975828794914\tshall:0.018928715266797107\t:0.01\n",
"and:0.2256687380387921\tto:0.1960869281037485\tof:0.1841729779850611\tthe:0.11778544192554857\tor:0.06045812843199608\tbe:0.05878648226268214\tin:0.052780633363960515\twas:0.050480159565492455\tis:0.043780510322718603\t:0.01\n",
"of:0.4141232420194457\tin:0.14760655510293907\tto:0.08971566318200534\tby:0.07266953364523727\tthat:0.07024692219685608\twith:0.06127123587332129\tfor:0.053160640547402147\tand:0.05219722074512008\tIn:0.02900898668767309\t:0.01\n",
"the:0.3456937354483388\tand:0.16336610112704272\tof:0.1104085984099148\tan:0.10262132896789528\tto:0.08739133869526655\tThe:0.06516044249316873\twith:0.04591665146928726\tby:0.03692983607400955\twas:0.03251196731507631\t:0.01\n",
"a:0.2311285397753244\tof:0.19282450572902396\tthe:0.16095446733562851\tto:0.1248249868617397\tin:0.08623424496843124\tand:0.07116240810342474\tby:0.05556058722389452\twith:0.03809113591988884\tthat:0.029219124082644016\t:0.01\n",
"made:0.21130251519142332\tand:0.16952049420522514\tfollowed:0.13071593250465655\taccompanied:0.12656081236401054\tup:0.08186803086120986\tforeclosed:0.0735146696741879\tgiven:0.07096732626779255\tsurrounded:0.06674638686956419\tcaused:0.05880383206192995\t:0.01\n",
"of:0.4512988004003195\tin:0.13448528834203569\tto:0.08969591296001134\tby:0.06181195863813039\ton:0.05882569326824147\tfor:0.05612314419641881\tand:0.054004070048354655\tthat:0.049842074360831504\tIn:0.033913057785656606\t:0.01\n",
"a:0.5476171192405779\tthe:0.19981767145162072\tA:0.12097286792705816\tThe:0.03368853280211994\tthis:0.025895634437474065\tand:0.018567886837968443\tvery:0.017445350976003433\tany:0.013131560168770096\tone:0.01286337615840733\t:0.01\n",
"thousand:0.3938333363406737\thundred:0.1888433291188981\tof:0.0948037693021577\tmillion:0.07975387796171464\tfifty:0.07585398667211367\tten:0.05404964923847883\tfive:0.05124053916119846\tsand:0.027514971062327743\tto:0.0241065411424373\t:0.01\n",
"the:0.3715024034084613\tthis:0.1662612391388093\tThis:0.14535997115041405\tThe:0.1262890702491703\tthat:0.059508343966214274\ta:0.053100638802202435\this:0.02757948429272643\ttho:0.023340768981795865\twhich:0.017058080010206096\t:0.01\n",
"the:0.40858783188964637\tand:0.2262695885564932\ta:0.07964002019825198\tThe:0.06016974260012399\this:0.057845876180531455\tof:0.04426383007900908\ttwo:0.03994931087120359\ttheir:0.037397405547313925\ther:0.03587639407742624\t:0.01\n",
"the:0.6713233763945994\tof:0.11687539888944716\tand:0.05069373171965821\ttho:0.03556251707618633\ttheir:0.027491474666081272\tother:0.023777133853727865\tThe:0.02277870675652199\this:0.021009088951910747\tin:0.020488571691867172\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"per:0.33065838744022596\ta:0.3075034507375975\tthe:0.15738586440761415\tlast:0.05891165739412999\tevery:0.03880093245921211\tone:0.03745429272803362\tthis:0.02168348352483583\teach:0.02021186406450978\tnext:0.01739006724384105\t:0.01\n",
"the:0.46133766882034244\ta:0.24638355245878146\tof:0.0772964945700616\tThe:0.05679081327204602\tvery:0.042917985091996944\tand:0.031107470991970525\tas:0.029476281202605568\ttho:0.024374500795677403\tall:0.020315232796517972\t:0.01\n",
"Sec.:0.3436250065458622\tSection:0.31602192581697297\tSECTION:0.07254481270708073\tMarch:0.05427426206194818\tMay:0.05321867637453162\tJuly:0.045540540214461266\tApril:0.03657925512171409\tNo.:0.03522313329143614\tSec:0.03297238786599278\t:0.01\n",
"it:0.2196645200517994\the:0.17608013749008633\tand:0.16587607228618195\tIt:0.11639930409472837\tshe:0.0850720880778439\tI:0.061842230440706275\twhich:0.0604464519692019\tHe:0.05498471135604163\tthat:0.04963448423341025\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.22635918393835464\tand:0.1957806869688713\tthe:0.1831238563708327\tin:0.11416871286388583\tto:0.07625497705557567\tfor:0.07584096556344853\tthat:0.04967954350983974\tat:0.03747132712301445\tas:0.03132074660617702\t:0.01\n",
"of:0.2538329665598862\tto:0.2072705510977705\twith:0.13471820290941022\tat:0.1007749483591868\tin:0.06861587783672972\tfrom:0.060607236848774525\tby:0.055969813559409595\tfor:0.054745571579121174\ton:0.053464831249711374\t:0.01\n",
"the:0.6360022559632108\tof:0.125419793366355\tand:0.05745830545627975\tThe:0.037309562276570264\ttho:0.03616024440948528\ta:0.03213932528753226\tor:0.023481821991517396\tour:0.023199366450798408\this:0.01882932479825074\t:0.01\n",
"to:0.35773625818197463\tand:0.2809833289470644\tof:0.06366019721842932\tI:0.05957609902579174\tthe:0.049207004226350326\thad:0.04593436949706385\twho:0.04468909427588247\twould:0.04452726443160527\tnot:0.04368638419583798\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"a:0.3141256235319564\tthe:0.2998142764688812\tof:0.10157272840598425\tand:0.0771942319659407\tin:0.04616868817220642\tto:0.040950575232071795\ttheir:0.03870390302215533\twith:0.037297932280379746\this:0.03417204092042422\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.29348734035947927\tand:0.21800905869438575\tof:0.15798693257990812\tThe:0.07098336672023307\tthat:0.06016316734182636\tthese:0.05256309489874121\tThese:0.04957857554119429\tin:0.047710532982857816\tsuch:0.039517930881374175\t:0.01\n",
"the:0.27938885224787174\tof:0.24069353718099715\tand:0.12966152383406992\tThe:0.07267202220526256\tin:0.07258171900765914\tthat:0.06560050012973109\tto:0.05278222210859476\ta:0.039324300065401045\tMr.:0.03729532322041259\t:0.01\n",
"able:0.16476468956565668\tenough:0.11618499558449112\torder:0.1127774004433305\tand:0.10770230905684038\tright:0.10423521491986491\tis:0.10418823328546226\tunable:0.09963857793164675\tbegan:0.09074479233141822\tready:0.08976378688128922\t:0.01\n",
"to:0.3139961216415087\twill:0.21926672287967777\twould:0.1301873839303604\tshould:0.0826722257813985\tmay:0.07193022020974586\tshall:0.0506921251579966\tmust:0.04734539430017821\tnot:0.040801899473559076\tcan:0.03310790662557478\t:0.01\n",
"was:0.2608402307265201\tare:0.15394237978366046\tbeen:0.13508871331830358\tbe:0.1298906667593338\twere:0.12140704926572352\tis:0.1058934045875163\tbeing:0.03886036304357213\tand:0.023604643308868998\tnot:0.020472549206501173\t:0.01\n",
"he:0.18628532517817098\tand:0.17559309547526944\twas:0.1678993826097438\tbe:0.15910187080697216\tis:0.07014523751633732\tI:0.06223207543361713\tbeen:0.060171390447512206\tHe:0.056750072102112796\twere:0.051821550430264304\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.217460517591529\twhich:0.20516410002001464\the:0.12195350346082304\tthat:0.11223943943867985\thave:0.10480887549099864\thad:0.07840874231310277\thas:0.07174535703343392\tHe:0.04416473270987613\twho:0.03405473194154212\t:0.01\n",
"the:0.5287442165057871\tto:0.08318080446947247\tsaid:0.07965881719990922\teither:0.07118276700088486\tthis:0.06856062529935945\tany:0.05383571602779093\tthat:0.03689067591288819\ttho:0.03493780960724023\tat:0.03300856797666755\t:0.01\n",
"of:0.319326505321888\tto:0.19260952806303336\tat:0.13951872219659486\tin:0.1075681656139362\tfor:0.07630148184682067\tand:0.051621203961898704\tIn:0.04156137193362101\tthat:0.034969788656551364\twith:0.026523232405655756\t:0.01\n",
"to:0.29639323310057225\tand:0.17742488509091495\tthat:0.1553219406432185\twill:0.10195723008745027\twhich:0.07081734537495583\tas:0.06491107160138052\twould:0.05621930438166285\tbut:0.037073093657891715\tnot:0.029881896061953298\t:0.01\n",
"and:0.27169980257244286\twas:0.11184075337002325\tfile:0.10845453490691333\tthat:0.1051508243735093\tmade:0.10493328986733919\tis:0.08139378364250742\tbut:0.07267309056949599\tpeople:0.07250388573087883\tthem:0.06135003496688983\t:0.01\n",
"It:0.3684666802234462\tthere:0.1852605976529453\tit:0.11843513162829253\tThere:0.11777388257227411\tThis:0.04942591871229191\twhich:0.045985349501477764\tthat:0.04180952542028888\the:0.03927996615360411\tand:0.023562948135379038\t:0.01\n",
"a:0.3630895823899278\tone:0.16268528495597231\tthe:0.12274477225782521\tnortheast:0.10820384317181093\tsouthwest:0.062465471070983276\tnorthwest:0.047216325411286064\tsoutheast:0.044993501654069346\tthis:0.0440959706621028\tnext:0.034505248426022234\t:0.01\n",
"I:0.2299871638026027\twould:0.15059728599202413\tthey:0.13609886037386892\twho:0.12492719917717938\twe:0.0922336078049135\tto:0.07655724317347905\twill:0.062284793370464636\tand:0.06013865743661181\tyou:0.057175188868855795\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.2438581778745646\tand:0.20858868420395704\tthe:0.1997157600068909\tto:0.13107636841507064\tfor:0.05012123213400395\tin:0.049118845808747265\ta:0.03954096322027765\twhich:0.034207102007391584\tthat:0.033772866329096214\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"of:0.2678129763393076\tand:0.1399384026672033\tin:0.12658473653057448\tto:0.11205829840065999\tthat:0.1103775588441759\tby:0.07056048392971127\twith:0.06627530381848427\tfor:0.05209187045783069\tat:0.044300369012052386\t:0.01\n",
"on:0.2268865406986814\twas:0.15730957394619174\tis:0.13321595756781318\tof:0.09751025484180745\tand:0.09415732545720681\tas:0.08717812901655257\tin:0.07558875006124419\tto:0.06664508040223206\tbe:0.05150838800827073\t:0.01\n",
"and:0.3078810227098602\tthe:0.10811463794048604\tof:0.1062562930495917\tbe:0.09492755211690665\twhich:0.08395235820199855\tan:0.07781132106827078\the:0.07728194796405882\tor:0.07140926743187255\tthat:0.06236559951695467\t:0.01\n",
"and:0.23131156218470475\twas:0.15909538271218193\tto:0.15573397288949448\tthat:0.1229338166952661\tof:0.08525391397710617\tafter:0.06791006392487137\tbut:0.06259345677106797\tis:0.056738809637712814\tor:0.048429021207594576\t:0.01\n",
"and:0.2542315743163\tis:0.19065841016179877\tfact:0.1437993552448729\tknow:0.08130283477484336\tso:0.0772528193275017\tsay:0.06882345549977154\tsaid:0.059326111221560465\tbut:0.0575064667290932\twas:0.05709897272425803\t:0.01\n",
"the:0.16851635851300462\tof:0.1632659099510633\tto:0.14341948061092308\tand:0.13878918389991693\tbe:0.09604762970813724\tin:0.08579342052029841\tfor:0.07175680192759627\twas:0.06587580127138719\tis:0.056535413597673084\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"in:0.38702123536446104\tthe:0.10142855402477019\tinto:0.08565352199004972\ttheir:0.07678278092125426\this:0.07667633426662657\tits:0.07170831334040162\tIn:0.0711372168138293\tof:0.06930351727704016\tand:0.050288526001567205\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"<s>:0.3471418833699098\tit.:0.14611151537777814\tthem.:0.10698009092698701\thim.:0.07604652223531633\ttime.:0.06982571844893742\t.:0.06774271960613766\tyears.:0.06099889986584903\tday.:0.059056594136947284\tyear.:0.05609605603213733\t:0.01\n",
"for:0.6530554738298313\tFor:0.09946067353612544\tof:0.07067180305318445\tand:0.04686023841965851\tin:0.031713548098431917\tthe:0.027443565460778502\tabout:0.023329008819522185\tpast:0.019290876407275646\tto:0.018174812375192074\t:0.01\n",
"of:0.20615396164516417\tas:0.19803253787358074\tin:0.11503058802990092\tto:0.10494502158139338\tfor:0.08344074081674263\tand:0.07463986255295041\twith:0.07025521685656066\tis:0.06963354785938103\tthat:0.06786852278432606\t:0.01\n",
"J:0.21449292140077894\t.:0.179369917044106\tof:0.1114227255228526\tand:0.10662177266184691\tthe:0.09092192484287123\tW:0.08338907550931707\tto:0.07941653751890212\tJ.:0.07020474362210122\tA:0.05416038187722393\t:0.01\n",
"the:0.39502312612612495\tof:0.19617942274272676\tand:0.14040768228919076\tThe:0.07103060005907108\tper:0.04915885632548692\ta:0.041626847354139504\tby:0.03781775713744281\twith:0.02964478923807753\tthat:0.029110918727739625\t:0.01\n",
"and:0.26345609486658683\to'clock:0.11596818409597831\tmade:0.10512494192256998\trecorded:0.09847665883878828\twas:0.093288972236532\tup:0.0898792761481785\tthat:0.07815145330434257\tit:0.07748742649959083\tis:0.06816699208743267\t:0.01\n",
"necessaries:0.2321645419870604\tout:0.14978894685561298\tamount:0.11160141729187027\tnumber:0.11082342571906222\tstate:0.10677668519517809\tcost:0.07799713336275554\tpoint:0.06840499324213631\tkind:0.06800559040680766\tsystem:0.0644372659395165\t:0.01\n",
"the:0.6154685990640681\tWall:0.10726008834754658\tMain:0.07040563542269554\tof:0.04308672623718408\tat:0.03270644360762106\tThird:0.03186694087827526\tGrand:0.030933167592953444\ttho:0.029685431086847704\tFifth:0.028586967762808117\t:0.01\n",
"have:0.15140266760362328\thad:0.13781745126428405\tand:0.11798701295625025\tis:0.11245702919331754\table:0.10928472541411155\thim:0.09822222701132871\tnot:0.09511104479459966\tenough:0.08651267364281369\ttime:0.08120516811967135\t:0.01\n",
"arrived:0.15612503630053667\tand:0.15186192457036976\tbrought:0.15153952991396236\twas:0.14598670015796064\tcame:0.10421350874649563\tis:0.08182463187929212\tare:0.0771168778491237\tcome:0.0663232340146127\theld:0.055008556567646416\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.2830871888837395\ta:0.18763974055268534\tof:0.17716499261558902\tand:0.08862777746394604\tin:0.07859147241606408\tto:0.07293284411796729\tfor:0.04353539789268598\this:0.029674420450999446\ton:0.02874616560632326\t:0.01\n",
"a:0.4034682186426895\tyoung:0.18998937502894125\tthe:0.160760744041388\told:0.056027471124925135\tto:0.05189096394198523\tand:0.03970415414866053\tof:0.03404400832640496\tevery:0.029061432427579432\tA:0.02505363231742595\t:0.01\n",
"the:0.6829889000127585\ta:0.06662461514931393\tof:0.06251505016465617\tThe:0.044052688795315806\tand:0.03135961653613755\ttho:0.029664187214538302\tto:0.02648524552223653\ttheir:0.024895749945890038\tour:0.021413946659153173\t:0.01\n",
"the:0.38374108814995883\ta:0.18283464485699777\tof:0.12712135749638795\tand:0.08376327608998162\tin:0.08197485264964398\tan:0.04944504856489463\tto:0.02974641023894551\ttho:0.02682314452894664\tThe:0.02455017742424292\t:0.01\n",
"he:0.2436819698462937\tI:0.2196778728720468\tthat:0.09637870629963131\tthey:0.09297750692401031\tit:0.08640936203976556\tand:0.07069242723716085\tyou:0.06864522678405031\twe:0.061141425596483424\twho:0.05039550240055782\t:0.01\n",
"of:0.39396147309463553\ton:0.13732908550728204\tto:0.10524887488602366\tand:0.08444405029839941\tin:0.06658291668710073\tby:0.06441523042226523\tthat:0.060897422350374576\tfrom:0.03898391086526253\twith:0.03813703588865637\t:0.01\n",
"of:0.15862241364981214\tand:0.15751333905624854\tto:0.15637447451180367\tthe:0.14620390380107715\tin:0.129532116122774\ta:0.0677699611842351\twas:0.06062990956871154\tis:0.06058567911506544\tfor:0.0527682029902725\t:0.01\n",
"of:0.18463940321007144\tin:0.14617523529018236\tto:0.13514721016977785\tfor:0.10537198589835708\tand:0.10149329879781753\twith:0.09354922289429123\tis:0.07935624664322646\tas:0.0735419102963912\tby:0.0707254867998848\t:0.01\n",
"hundred:0.3571805595269563\tmen:0.11984593884522583\tland:0.09772391490493357\tgold:0.08782034733047475\tpower:0.07718876741385372\tone:0.06736903825911197\tStates:0.06343754807677279\tlife:0.06219673688074416\tBaltimore:0.057237148761926704\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"a:0.29887195480542944\twould:0.14319697463004774\twas:0.10078173936968848\tmuch:0.09982694147274049\tand:0.0835387882786119\tthe:0.08017165069117652\tlooked:0.06381973248563472\tnot:0.05992508738149783\tsomething:0.05986713088517298\t:0.01\n",
"and:0.22145487756883014\tdo:0.12809288106808575\twas:0.10729450321691962\tamended:0.10455510258209134\tas:0.09375235547389674\tis:0.08730191828083021\tbe:0.0856090667296932\tnot:0.08466774663763453\tare:0.07727154844201842\t:0.01\n",
"the:0.3852091685420713\tof:0.15029792416713433\tand:0.13361736839571411\ta:0.11891032624485717\tin:0.05055226342026037\tto:0.042450229405257604\tfor:0.03799538051249681\tor:0.03633593244546821\tthat:0.034631406866740044\t:0.01\n",
"the:0.297492901961497\tof:0.17741408266195474\ta:0.14645768029163828\tand:0.09158810426380848\tor:0.07279359814981\tto:0.06981668528850316\tin:0.0589873299937157\tany:0.0419198791673564\tbe:0.03352973822171621\t:0.01\n",
"of:0.38790476161524395\tand:0.14118527030761166\tthe:0.11759684177015473\tto:0.11534552905260037\tin:0.06437620344612742\tan:0.051477002942926564\tby:0.04649885369806057\tare:0.033521904458377876\twith:0.032093632708896834\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"to:0.21845282607008776\thave:0.15293818072830453\thad:0.1385249006341653\thas:0.11696566167295801\twill:0.11591186517679447\tnot:0.08294000235044963\twould:0.07673782018820356\tthey:0.04651873315782657\tmay:0.04101001002121007\t:0.01\n",
"within:0.6047498763205287\tor:0.057826046862568606\tand:0.05350533851528134\tof:0.052307186601590415\tabout:0.05222439214738573\tthan:0.04833823259728453\tleast:0.04135691905936194\tin:0.040078776586098076\tfor:0.03961323130990066\t:0.01\n",
"be:0.16948023794628236\the:0.15990021860690076\twas:0.11687019283859093\thad:0.1160116907223172\tand:0.11407988339858903\tI:0.10730969249574283\thave:0.0837766797878232\thas:0.07405697254865544\tHe:0.04851443165509831\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"the:0.3095144067054789\tof:0.15402692274525573\tand:0.13686184008868665\ta:0.10284841379706823\tto:0.09168608115329102\tis:0.05226952478776128\tat:0.050558781269415716\tin:0.046208022317628265\tbe:0.04602600713541425\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"to:0.42004842753226534\tof:0.15647718277724\tthe:0.12236807678373515\tby:0.0688987309075845\ta:0.06845734967098842\tin:0.057635223011748726\tand:0.05262642980567483\tfrom:0.021958159034030797\tThe:0.021530420476732315\t:0.01\n",
"is:0.2036348410086637\tbe:0.15193284635775722\tare:0.132981064050852\twas:0.1109965693110573\tvery:0.10000202744077084\tso:0.09532103805599561\tas:0.06987443773283765\tnot:0.06730749584200814\tmore:0.05794968020005768\t:0.01\n",
"more:0.46501152562273174\tless:0.11035112635787171\tbetter:0.1101723810494371\tother:0.09677648663820473\trather:0.08551247108327463\tgreater:0.035567209679909936\tand:0.032571964854178445\tworse:0.02763000116751514\thigher:0.0264068335468765\t:0.01\n",
"of:0.22721353584644982\tand:0.18520683603306562\tMrs.:0.16983097945942252\tby:0.1584930696397202\tsaid:0.062140207510201766\t.:0.057276858283587424\tMr.:0.04553350316968072\tDr.:0.043365618448930124\t<s>:0.040939391608941764\t:0.01\n",
"of:0.2697462726493114\tin:0.16343573196451427\tby:0.0998602310227403\tfor:0.09700601050383896\tas:0.08141030572659251\tand:0.07960271438915975\twith:0.07878345263017418\tto:0.06681965152092673\tthat:0.05333562959274192\t:0.01\n",
"of:0.315088443849609\tin:0.16415545257964065\tto:0.13750840409925807\tfor:0.08740143226278614\tby:0.06534038373966972\tand:0.06443688987526373\tthat:0.05556018656857204\twith:0.054695089547032096\tfrom:0.04581371747816849\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"to:0.26832184456431946\twill:0.2504376120375991\twould:0.1256113125979842\tmay:0.08795987819535153\tnot:0.07444160331725083\tshould:0.06417951422914046\tshall:0.0620491563988627\tmust:0.03041016111507201\tcan:0.026588917544419742\t:0.01\n",
"of:0.26324904809006894\tin:0.19458441455326353\tto:0.1163504029245862\tand:0.1057583906889168\tat:0.06600288252288171\tIn:0.06313500758951991\ton:0.060782084683544214\tthat:0.06048212453130647\tfrom:0.05965564441591227\t:0.01\n",
"of:0.309359016105498\tto:0.12332711534619432\tand:0.1218483732825562\tin:0.11035996846097133\ton:0.07237680652120022\tby:0.07171030772667297\twith:0.06995198942220665\tthat:0.057107225505289086\tfor:0.05395919762941143\t:0.01\n",
"of:0.19876338013405914\tsuch:0.13933996966499632\twith:0.12346715499129748\tto:0.11137192285104953\tin:0.10912495215830574\tas:0.09408945978826261\tfor:0.07616465381307505\tand:0.07508332739717427\tis:0.06259517920177995\t:0.01\n",
"the:0.4119463730922002\tand:0.14757495978390012\ta:0.12102354051140245\tof:0.11728284197595831\tto:0.05351527640907177\tin:0.049146272520604405\tThe:0.031045583373896415\this:0.030905419112918477\ttho:0.027559733220047872\t:0.01\n",
"not:0.4502275740289614\tcan:0.12887390981117233\tcould:0.11562911430609313\twould:0.07395702431534049\twill:0.06543016117083318\tthe:0.059230164545756546\tand:0.03794521053996283\tthat:0.03133831077227473\tis:0.02736853050960536\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"<s>:0.6456518123426517\tit.:0.06888425174814825\tthem.:0.06270544813543685\ttime.:0.042489150366620446\tcountry.:0.03728619003409871\tyear.:0.03538396110376599\t.:0.03392970158032471\tday.:0.0323827688505668\twork.:0.03128671583838655\t:0.01\n",
"for:0.24571839936171785\tof:0.1293301833287279\tin:0.12112418388051728\tas:0.11337711802790609\tto:0.10766904771423574\twas:0.07806117607568791\tand:0.07658585119772736\tis:0.060893317565797765\tat:0.05724072284768228\t:0.01\n",
"one:0.2621410772420017\tpart:0.13828982982918026\tout:0.09624462787694145\tsum:0.09475385185290656\tall:0.09344278936076991\tamount:0.09063463447574953\tsale:0.07587870330969793\tend:0.07005676748970087\tnumber:0.06855771856305173\t:0.01\n",
"and:0.22274765485377104\twhich:0.19266226174927828\the:0.16713057601880774\twho:0.10468272419870883\tit:0.06508485874536114\ttime:0.06478076531894178\tI:0.059298589018959985\tHe:0.05783963285754768\tIt:0.0557729372386236\t:0.01\n",
"and:0.3076605906384916\tof:0.292474589413431\tnot:0.07981088340614757\tto:0.06481846604010046\tin:0.06046391173746984\tafter:0.048412363509986026\twith:0.04682899184358888\tby:0.04659960557776859\tare:0.04293059783301614\t:0.01\n",
"the:0.41091466193149156\tto:0.13401059149647793\ta:0.09003813329777402\tone:0.07922559111310709\tand:0.06512389260194376\tan:0.0630367129955446\tthis:0.06278381291370136\tthat:0.04496297475261483\twill:0.03990362889734491\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"of:0.23718407441061976\tthe:0.18069077660368707\tMr.:0.14180543065202203\tand:0.10703492879933164\tin:0.10015671680885013\tthat:0.07642264423650107\tThe:0.05795049213255086\twhich:0.04742717838767149\tMrs.:0.04132775796876595\t:0.01\n",
"of:0.22962446404540565\tany:0.14528715695157024\tand:0.11085499159697283\tin:0.10829258373977362\tno:0.10769840783879667\tthe:0.10662535759083062\tthat:0.07401880557087032\tonly:0.05499716294162744\tsome:0.05260106972415249\t:0.01\n",
"the:0.5227780046725518\tThe:0.10525406968965566\ta:0.09559871573578431\tand:0.08102605364807076\ttwo:0.04618527143333752\tof:0.04497381941171217\tno:0.03486829137928876\this:0.03109751144359744\tmany:0.028218262586001654\t:0.01\n",
"and:0.3501170843425755\t<s>:0.10341153535501962\tit:0.09706563092914154\tthat:0.09001248996849674\tof:0.07459632729832566\tnow:0.0741766095303398\twhich:0.07219196431669903\tMr.:0.06998115980913153\tbut:0.058447198450270584\t:0.01\n",
"and:0.28649446591365485\tof:0.1515724458519273\tto:0.1241768507578696\tin:0.11097495355316382\tnearly:0.08757694057873902\tthat:0.07693173457612722\twith:0.0626968526156347\tare:0.047313403906844125\twas:0.04226235224603941\t:0.01\n",
"foreclosed:0.21354426481975966\taccompanied:0.15326393402647306\tmade:0.13791131994204262\tand:0.13215418511823615\tfollowed:0.12340081914410177\tsurrounded:0.0697778146110107\tup:0.05787632017490193\tcaused:0.051337079258656944\tsecured:0.050734262904817265\t:0.01\n",
"and:0.250605656640583\twas:0.22697866217046095\tis:0.1005172594524486\tare:0.091835749412644\tof:0.08542650667353768\twere:0.07548782157767604\tbeen:0.06059196405704986\tto:0.05757597293166519\twhile:0.04098040708393481\t:0.01\n",
"be:0.2769898582465336\twas:0.19009910620195333\tand:0.12791969051164764\tis:0.09470385883620194\tbeen:0.08981426292627143\thave:0.056056258294538135\thad:0.05358697742055024\thas:0.052725455995117146\twere:0.04810453156718657\t:0.01\n",
"p.:0.2176691803134876\ta.:0.14912279814154294\tit:0.11253824873399013\thad:0.10765992191163101\twas:0.09473221457367452\tp:0.09264482788524192\tand:0.07593860336605725\tthere:0.07437504820472644\tof:0.06531915686964831\t:0.01\n",
"the:0.38430711146777713\tof:0.271512026889966\tby:0.059912819038531594\tin:0.059362361026662216\tand:0.056906370420691584\tto:0.05332218391952024\ta:0.038932889549931016\tthat:0.034212021931069814\tThe:0.031532215755850315\t:0.01\n",
"of:0.23877314093681787\tand:0.235239762941248\tthat:0.10429293754790624\tto:0.09191787248515053\twith:0.0886801683028966\tin:0.0755747815673686\tby:0.06993248209149308\ton:0.04603715958208766\tfrom:0.03955169454503149\t:0.01\n",
"as:0.4244285524339238\tif:0.17210625710861296\tis:0.12664548850091564\twas:0.1093044499449403\tand:0.07495841861970713\tthat:0.022730348984739145\tIf:0.022543207151012587\tbut:0.019177835689320584\tbe:0.018105441566827966\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"it:0.26149550415736683\tIt:0.18967620710799346\tthey:0.1261314483333742\the:0.11652588065046235\twe:0.07401485075175981\twhich:0.06805628853842192\tthat:0.06061973167202179\twho:0.05286050526109245\tas:0.040619583527507316\t:0.01\n",
"of:0.41400728502043777\tin:0.16002189503994557\tfor:0.10219550866311994\tto:0.09855292758076471\tand:0.05735481805083199\tthat:0.045660241685728395\ton:0.03952841032274958\tfrom:0.0394566683975608\tat:0.03322224523886126\t:0.01\n",
"of:0.20832151523331424\tto:0.17519983091160538\tand:0.13556706258347118\tin:0.11004426103943639\tis:0.07746910453468746\twas:0.0749824277542987\tfor:0.0714353570849755\twith:0.07107338749185386\tthat:0.06590705336635727\t:0.01\n",
"he:0.3265715023567235\tI:0.14818804538311106\tshe:0.10427564615213737\twho:0.09236248805683384\tHe:0.07674793394424254\twhich:0.07436897365170321\tthey:0.06773841895491699\tthat:0.0539219302979333\tand:0.0458250612023984\t:0.01\n",
"have:0.35328946251732735\thas:0.26744366091419525\thad:0.24268234427973348\tnot:0.03551493986454824\thaving:0.03354582231468265\tbad:0.016242173594263446\tever:0.014998571799669675\tnever:0.014904747853835004\thavo:0.011378276861744826\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.29367349886688504\tthe:0.14911682600021922\tto:0.14071689882801586\ta:0.08489010095684711\tin:0.08282277761895393\tand:0.0808357814228669\tat:0.07568861062053932\tby:0.043912393020383786\tfrom:0.03834311266528873\t:0.01\n",
"was:0.20747992240243804\tis:0.184637751373615\tare:0.11526204319698019\tand:0.10352775572481442\thad:0.09811981102298616\tdo:0.08700119613508239\twere:0.06695632545118199\tdid:0.06622816503213629\thave:0.06078702966076574\t:0.01\n",
"to:0.4578279007081993\ta:0.1619483875631491\twill:0.09758166500396734\tthe:0.08646443354262638\tnot:0.05117953158224914\twould:0.046002311847599946\tand:0.034341192708430654\tshall:0.02754035224458743\this:0.027114224799190758\t:0.01\n",
"<s>:0.3070727732031811\tit.:0.15908384764747605\tof:0.11901925686275756\tthem.:0.09854176669291949\thim.:0.07492008305267407\tday.:0.060363021117403486\tas:0.0598913868247556\ttime.:0.05712672429106326\tthat:0.05398114030776938\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.25875009921300957\tin:0.21929609874040215\tto:0.15276999868610247\twith:0.08447873415815707\tfrom:0.07019616330127922\tby:0.060800963571779824\tfor:0.05617308958268583\tupon:0.04408458692611747\ton:0.0434502658204663\t:0.01\n",
"the:0.27062093316726427\tof:0.2058837608840983\tand:0.08834827289900334\tThe:0.0853987581870392\tMr.:0.0848051425396133\tthat:0.08185133110159959\tin:0.0776092527328897\tMrs.:0.049118875532564533\twhich:0.046363672955927845\t:0.01\n",
"to:0.7471239968977305\twill:0.06383642013749594\twould:0.04568713028598977\tand:0.027847297647644948\tnot:0.023771871959978895\tshall:0.0234568265071294\tthe:0.019968726431251062\this:0.01981424901185792\tshould:0.018493481120921584\t:0.01\n",
"and:0.24566925902674477\tthe:0.21605747548907764\tof:0.14405297185882218\ta:0.10077760204696248\tby:0.08223391920950213\twith:0.055820060720133624\tfor:0.051758842718962694\tto:0.05087278817533964\tor:0.04275708075445473\t:0.01\n",
"<s>:0.34605209033714623\tand:0.15134309942514337\t.:0.10764209489568798\twas:0.10426490179181\tsucceeded:0.06678317200227701\thome:0.05848699844849947\tcame:0.05764134562515713\thim:0.04943960676384198\tmen:0.048346690710436825\t:0.01\n",
"the:0.4567338401704819\tand:0.14300649607583335\tof:0.11570157403049539\tto:0.06943427940154659\tThe:0.0477842314829487\tor:0.04407451791193157\ttho:0.0435982444121895\tfor:0.035708048063081005\ttheir:0.03395876845149201\t:0.01\n",
"the:0.31035942280052664\tof:0.17617691217652012\tand:0.15356956026045177\tin:0.07430565695068786\tfor:0.07115046238083511\tto:0.066870011647767\ta:0.05345419446517127\ttheir:0.04258004794312745\tbe:0.041533731374912744\t:0.01\n",
"it:0.2086245609650048\tIt:0.1500969292822404\tthey:0.1198032389680483\tas:0.09533071715058293\twhich:0.09388267058250736\tthat:0.08805446043254236\the:0.08665882468405951\tand:0.07606537649497168\twe:0.07148322144004272\t:0.01\n",
"the:0.2471795353086863\tMr.:0.21851017408747236\tof:0.12446972742622825\tand:0.11294806758609241\ta:0.08801282779788938\twas:0.05940497996129902\tto:0.053410332371078124\tThe:0.047871768834603125\tbe:0.03819258662665116\t:0.01\n",
"to:0.5089575638423277\twill:0.16780926922117262\twould:0.060894319438611164\tshall:0.060821742587496355\tand:0.05969018541434151\tnot:0.05413192491700277\tshould:0.03567189724551063\tmust:0.02299460668076006\tmay:0.019028490652777133\t:0.01\n",
"of:0.3234796027445705\tthe:0.24979602481710542\tand:0.12569692663921733\ta:0.08295592334030137\tto:0.08175880701120747\tin:0.040919619414893735\tby:0.034307433668320564\ton:0.02591064156982346\tare:0.025175020794559997\t:0.01\n",
"of:0.3669901788631221\tto:0.1610035233172785\tin:0.09193685656931552\tby:0.08654639415492955\tand:0.07353785038585692\tthat:0.06514502068729933\twith:0.05372226236014357\tas:0.047748455183310466\tfor:0.04336945847874411\t:0.01\n",
"and:0.33114587356662883\tthe:0.11460272121184037\tto:0.1002764939750807\tthat:0.09744443073533511\ta:0.08405289568819717\tof:0.07999642864280476\tor:0.07950119154317303\tas:0.06347664823550365\twas:0.039503316401436395\t:0.01\n",
"protest:0.2352275405538314\tand:0.15084612289817434\tup:0.09955781058262712\tmade:0.09751014825504264\tvoted:0.08841298176843052\tclaims:0.08439363287706252\tvote:0.078620499699835\tguard:0.07798548506815406\tfight:0.0774457782968424\t:0.01\n",
"and:0.26816782232690883\tmade:0.1353453613121744\taccompanied:0.10489740320306723\tthat:0.10274232243866376\toccupied:0.08387286053848665\towned:0.07986618576242628\tside:0.07912178081426335\tfollowed:0.06919939802795592\tsecured:0.0667868655760535\t:0.01\n",
"be:0.16870708419761138\thave:0.16517355500209085\thas:0.14640883171471447\tand:0.13706253165945506\the:0.11038782312434464\thad:0.09022582768548713\twas:0.0596767353056711\tI:0.059349173285853804\twho:0.053008438024771495\t:0.01\n",
"and:0.13664957756204757\tis:0.13613780011789037\table:0.12116074363067915\torder:0.11440280789677251\thave:0.11124075169690283\tenough:0.1019765231453788\thad:0.09296051290423615\tnecessary:0.08819277438609353\tas:0.08727850865999906\t:0.01\n",
"you:0.19093663178022272\tthey:0.17573052025141678\twe:0.16939083644656283\tI:0.14338551647668044\the:0.09835885426938243\tand:0.0688941686035752\twho:0.06854913446658852\tWe:0.03784068358977454\tYou:0.036913654115796564\t:0.01\n",
"that:0.3366859453112752\tand:0.29669757814978737\tif:0.06967614692918601\tas:0.06703898932584418\tis:0.059460632141285\tbut:0.057209532390087844\tIf:0.03918262198915969\twas:0.03411200472648287\twhen:0.029936549036891694\t:0.01\n",
"to:0.523398994912164\twill:0.1219485625697037\twe:0.08975346060316748\twould:0.05086019444575466\tI:0.05004915645370384\tthey:0.04382234162695804\tcould:0.03803220999351722\tmay:0.03690503470685881\tyou:0.0352300446881722\t:0.01\n",
"<s>:0.5341107489957431\tit.:0.11806707644224784\tthem.:0.08621294198413033\tday.:0.05609416349915729\t.:0.04361965019034912\tcountry.:0.04173126606183234\tyear.:0.03953833668392983\ttime.:0.035473689109487144\tvinegar.:0.03515212703312305\t:0.01\n",
"of:0.5457410450297309\tin:0.1199432589244782\tand:0.06489004900967062\tto:0.05577834533320358\tthe:0.05127020853553704\tor:0.042186269706234694\tfor:0.04211856150509695\tat:0.036496092677187675\tabout:0.03157616927886028\t:0.01\n",
"it:0.17996999397799696\tand:0.1467717683447611\the:0.1418893356853653\tthey:0.12187243234760438\twhich:0.10517417096667325\tIt:0.07987872563752177\tI:0.07603323103872063\twho:0.06995382099532323\tthat:0.0684565210060334\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"this:0.22750575051164204\tthe:0.22129398980770737\ta:0.18000461317831748\tlast:0.17275702481455327\tnext:0.06136570369933141\tLast:0.04511944134647149\tone:0.03890803416331346\tpast:0.025208924358833276\teach:0.01783651811983016\t:0.01\n",
"together:0.41806924273470086\tand:0.20729818262112892\tconnection:0.06938401986937735\tconnected:0.06191841831840699\tit:0.05419620132344389\tdo:0.04868631902903216\tTogether:0.04814491198966658\thim:0.0434621770341045\tthem:0.03884052708013888\t:0.01\n",
"the:0.6216799843632658\tthis:0.20603137471869634\ta:0.04915845841860356\ttho:0.02318590940770176\tThe:0.02261219266203128\tsaid:0.021662207125683525\tother:0.020936533978836665\this:0.012381366283211567\tour:0.012351973041969546\t:0.01\n",
";:0.2588611970709363\tit,:0.18447127095098959\tthem,:0.11050048845933373\thim,:0.09235461919102587\tin:0.0782856933389489\ttime,:0.072401539945486\thim:0.0695881080642391\tcountry,:0.06453690861971835\tyears,:0.05900017435932212\t:0.01\n",
"he:0.21261851657975173\twho:0.14319637180260292\thave:0.12917883371989794\tI:0.1206642932995272\tand:0.11161617598669438\tthey:0.08941628715122446\thas:0.06500443158148157\twhich:0.06463852520747673\twe:0.053666564671343064\t:0.01\n",
"or:0.7249904927829421\tthe:0.08915672238229434\tand:0.05941163936837599\ta:0.05469530833423353\tof:0.019820322289059458\tthis:0.011138411943604522\tas:0.010709403863797687\tin:0.010424282686399696\tthat:0.009653416349292562\t:0.01\n",
"that:0.24070356897177692\tand:0.20663739542455684\tbut:0.11249245088808989\twhich:0.08495451539749249\tif:0.07978775183952877\tas:0.07882064849224737\twhen:0.07322290696827845\twhat:0.06140855944929351\tIf:0.05197220256873586\t:0.01\n",
"the:0.2366695049741145\tof:0.171417182725107\tto:0.1103642950013706\tand:0.10573472350497891\t.:0.09473422559031636\tMr.:0.08825249857628616\ta:0.0777462500971279\tin:0.0620918774307186\tat:0.04298944209997995\t:0.01\n",
"day:0.2128640427439615\tquarter:0.1859573760853652\tcorner:0.12001635765180989\t.:0.099122776912902\tpart:0.0897989854926846\tline:0.07683154100277699\tside:0.07510303555244574\tyears:0.06983569714768553\tout:0.06047018741036833\t:0.01\n",
"the:0.4009889255428748\tof:0.19750824558098926\ta:0.11644335758698361\tand:0.07219089007473206\tBlock:0.05757683015736242\tto:0.04557417605672398\tat:0.03634591352320231\tin:0.035953726425456516\ton:0.027417935051675058\t:0.01\n",
"to:0.6417859677638291\tand:0.08193605246672958\tof:0.06718545425850249\twill:0.041202748712049465\ta:0.038988114747276655\tunder:0.034317208296597436\tnot:0.03277738859763358\twith:0.026278863630313294\tthe:0.025528201527068403\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"in:0.17716527029683388\tand:0.1424706769959705\tfor:0.12588358528678734\tof:0.12010880453423659\twas:0.11940654860721257\tis:0.10368911283881141\tto:0.07944444188555404\twith:0.06501782257451191\tIn:0.05681373698008174\t:0.01\n",
"State:0.2767228079659295\tstate:0.1782555100879377\tcity:0.12050280083401431\tcounty:0.09809710820313691\tout:0.07946437647241622\tpart:0.07016740794698276\tline:0.057067834287051186\tSecretary:0.05649038011282105\tside:0.053231774089710374\t:0.01\n",
"the:0.38170558820508393\ta:0.13330398648647718\tof:0.13151729944617407\tand:0.11507380082190127\tto:0.08629273407169955\tin:0.051168328117980645\tThe:0.034191606175480165\tor:0.03129939213000163\ttho:0.0254472645452015\t:0.01\n",
"the:0.28598316900098664\tthis:0.12245155530051027\tThis:0.10996471727444128\tno:0.10449136297721218\tsaid:0.0957221358107657\tThe:0.08005758060365675\tof:0.06695585000079414\tsuch:0.062459909788282496\tthat:0.061913719243350394\t:0.01\n",
"of:0.23174879164876638\tin:0.2009302587753839\tto:0.14369638798377726\twith:0.09442453979807935\tby:0.08680579076690506\tfor:0.0687886915418614\twas:0.05809261265721879\tis:0.056277222952741124\tIn:0.04923570387526673\t:0.01\n",
"<s>:0.28898077594757904\tit.:0.23249985050338867\tthem.:0.13666514243598338\thim.:0.08137007689534766\ttime.:0.05355495582697516\tagain.:0.05338052269328884\tlife.:0.04819704793812784\tus.:0.04817276398626738\ther.:0.04717886377304209\t:0.01\n",
"one:0.33821170545609774\tsome:0.16364884122950468\tmany:0.09430886169472241\tall:0.09045765748417335\tOne:0.071993659024714\tSome:0.06713734538714679\tany:0.05774522523283729\tpart:0.05411293400777835\tout:0.0523837704830253\t:0.01\n",
"of:0.36269225028647795\tthe:0.1335543488945032\tto:0.10974111739382623\tand:0.09835753922570636\tby:0.08627274012252902\t<s>:0.05934437377286957\tat:0.05251670345035104\tin:0.0443191278258947\tfor:0.043201799027841964\t:0.01\n",
"not:0.20850154377871763\tis:0.18282605372547261\twas:0.17746654829443945\tand:0.11198455649754113\tare:0.09910811358993711\tbe:0.08034050753403583\twere:0.06228835902157015\tbut:0.03740937852848596\tIs:0.030074939029800022\t:0.01\n",
"and:0.30924221119967327\tthat:0.12611015277008547\tmade:0.09865062957046655\tis:0.0920144699599962\twas:0.09128595813112018\tplaced:0.07404370378857507\tas:0.06709678931603316\tbe:0.06629358245444635\tor:0.06526250280960379\t:0.01\n",
"and:0.23306188787116416\tto:0.14476052558213842\tthe:0.1438279815633128\tof:0.13044061748839889\tbe:0.10014720329629724\twas:0.09622769726485964\twere:0.05057499347009562\tis:0.046828783738384665\tbeen:0.044130309725348475\t:0.01\n",
"has:0.33877148646798827\thave:0.3365995842153589\thad:0.21195042618547938\thaving:0.027998684325870604\tnot:0.026907240623111842\tnever:0.01348057489699948\tbad:0.01241314105409844\talways:0.011357475501917022\tever:0.010521386729176033\t:0.01\n",
"a:0.5996658430342414\tmost:0.1278786362839487\tvery:0.08001827842961358\tand:0.057814760519859676\tthe:0.049551938229410196\this:0.021817295002318264\tto:0.02006137871461147\tmore:0.017218473685251003\tin:0.015973396100745774\t:0.01\n",
"of:0.4118855655127535\tin:0.19750716186588496\tto:0.07200951730890114\tfor:0.06777953286251977\tIn:0.06471382629880434\tby:0.05416184924610574\tthat:0.0450611333658029\twith:0.04048821782817717\tand:0.03639319571105036\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.435650234199424\tin:0.11286737250567418\tto:0.10252999923632494\tby:0.070174205181778\tand:0.06901612794255005\tthat:0.0546579812627926\ton:0.05150376283875779\tfrom:0.04739637619898468\tfor:0.046203940633713636\t:0.01\n",
"and:0.29425198154184773\tsale:0.162672233995046\ttherein:0.12833104752857116\twhich:0.09064337598868029\tthat:0.08732611019028493\the:0.07653729011712798\tthey:0.05183631519352127\tas:0.04990751689683606\tbe:0.0484941285480847\t:0.01\n",
"it:0.1986124144720724\tand:0.13226670871836668\twhich:0.12702790304094777\tthey:0.10192624669125538\tIt:0.09591631274075413\tthat:0.0904855583437596\the:0.08496392694000307\tthere:0.08185776888634338\tyou:0.07694316016649773\t:0.01\n",
"and:0.27934715980209673\tit:0.16976300568676034\tthat:0.11023417661449617\tis:0.09166983655449094\twhich:0.08981866710064551\the:0.06713760385623319\tbut:0.062364175001032834\tas:0.06142029100402083\tIt:0.05824508438022352\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"the:0.4189880221965892\tand:0.17069040308533043\ta:0.10452522887362609\tas:0.062371402937149524\tThe:0.05335068827171191\tof:0.052696518150344776\tto:0.04969870448107232\ttho:0.041675815637812356\tthat:0.03600321636636364\t:0.01\n",
"the:0.24967143819518636\tof:0.173954405655348\tto:0.16853828370182683\tand:0.15452032421172146\tin:0.05409168183924846\tis:0.0493164085278824\tbe:0.049290830765090825\ta:0.04655076462966391\twas:0.04406586247403171\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.26115331691038857\tthe:0.19920385708200553\tto:0.140933816194697\tand:0.1282816811178197\tin:0.0991279481785588\ta:0.05549715743701835\tas:0.03556143671948028\tthat:0.03519143287522001\twhich:0.035049353484811786\t:0.01\n",
"he:0.37749133324155076\tI:0.12763496014369502\twho:0.10419920045243757\tshe:0.08550145120888826\tand:0.07699747246022437\tthey:0.06311145262673643\tHe:0.06292470474604256\twhich:0.04614181015577358\tthat:0.04599761496465136\t:0.01\n",
"be:0.2511643500049638\tand:0.15201088205300817\the:0.1321847341511396\tI:0.09796508687529647\twas:0.09683315289282234\thave:0.0918029580901791\tbeen:0.05895983243150856\tever:0.058440374492098886\thad:0.05063862900898298\t:0.01\n",
"in:0.2882190296604175\tof:0.21152089406549265\tfor:0.12919973174128085\tto:0.10135699647322584\tat:0.07905428127982783\tIn:0.06684394128108141\ton:0.03981879964386827\tfrom:0.03753442635560941\tby:0.03645189949919622\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"to:0.27521863989684375\tof:0.220633220136453\twith:0.13778377397442032\tfor:0.08819813253104082\tupon:0.08634307320291457\tby:0.0571110278864147\tfrom:0.045844701787908615\ton:0.0423884318625308\tin:0.03647899872147357\t:0.01\n",
"the:0.444075491277282\this:0.1058972534213101\tof:0.10421144640037677\tThe:0.06157287815184232\ttheir:0.06006106803659481\tour:0.06001475785754705\ther:0.05703944414374481\ta:0.049601217504247154\tand:0.04752644320705479\t:0.01\n",
"and:0.31227723688420256\tthe:0.14675632025084748\the:0.10215591103467554\tas:0.0896686420959998\tit:0.08797824911452043\tIt:0.08001509137418243\tColum-:0.06416627488528395\tthat:0.060881153823199426\tor:0.046101120537088376\t:0.01\n",
"I:0.2997053708636389\tnot:0.17014975494880383\twe:0.1337511435044756\tyou:0.08696903947908137\tthey:0.08617604569293982\twho:0.06902633107914667\tWe:0.05553596343789606\tto:0.05499233439263926\twould:0.03369401660137821\t:0.01\n",
"about:0.22710434812142438\tof:0.2116057699860478\tand:0.14964989149510932\tthan:0.11244805224650817\tto:0.10532082607125716\tfor:0.07803099438135536\tat:0.0420652089571138\tnearly:0.03208482145419718\tover:0.03169008728698669\t:0.01\n",
"to:0.198057137488605\tof:0.11699375399543009\tare:0.11377846289307855\tand:0.10512951835246155\twas:0.10326579340544376\ta:0.09717517090836164\tis:0.09472767854200102\tthe:0.09068399383010045\tbe:0.07018849058451782\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.24784653678540802\thave:0.14936080523984158\tbe:0.14461275213302455\tI:0.09549383519514301\thad:0.0839624699187972\the:0.08356148059282041\tbeen:0.06367339069867543\twas:0.06212914356420674\thas:0.05935958587208298\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.17120523003948124\tis:0.1609791344519282\twas:0.1300192015444911\twith:0.11496398775389982\tby:0.09343276264750118\tfor:0.09097074275598953\tand:0.08538825124447084\tto:0.07229108179325534\tin:0.07074960776898281\t:0.01\n",
"seems:0.411152360615434\tseemed:0.12581902986422194\tcome:0.07724568346954201\tcame:0.07593595390034137\tas:0.06943264583655447\tup:0.06317404593321652\tand:0.05812484657750463\tit:0.05544503227250369\toccurred:0.05367040153068152\t:0.01\n",
"the:0.26014728862680986\tof:0.24220432317201404\tin:0.11903154204280668\tto:0.08848490952028924\tand:0.08749345694143737\ta:0.06236814287433011\tas:0.04599026205556184\tat:0.04363452773924402\tbe:0.040645547027506924\t:0.01\n",
"the:0.37468832132222996\tof:0.10784994556609831\ttwo:0.10637241207263173\ta:0.10128804441265721\t<s>:0.07981665252002379\tand:0.060542939561261194\tfeet:0.057069694706439564\tat:0.05571092300371758\this:0.04666106683494064\t:0.01\n",
"feet;:0.3294638704106427\trunning:0.1732090236499541\tfeet,:0.15047486162591014\t;:0.08538959805193397\tfeet::0.07052477135655162\tstreet,:0.04936640188966238\tand:0.047998167433528374\tpoint,:0.04312258726557472\t2;:0.04045071831624201\t:0.01\n",
"the:0.41507592463131454\ta:0.14558960463991416\tof:0.103665566749041\tand:0.09562540543264014\tMr.:0.06468144118791921\t.:0.044955789347190404\this:0.044596928584821297\tan:0.03944415861226824\tThe:0.03636518081489097\t:0.01\n",
"of:0.23531245396593406\tand:0.20263117590375904\tto:0.10610916169501212\tis:0.09026009560407866\twith:0.08517094653673214\tin:0.07615945896860467\tfor:0.06651532193503089\twas:0.06528375376134608\tthat:0.06255763162950234\t:0.01\n",
"as:0.4065181030854651\tthe:0.19245737054321616\tand:0.07553359728446342\tso:0.07361217490615318\tvery:0.062105111942678086\thow:0.05621228123166201\ta:0.050035146829249075\tif:0.03806939777425707\tThe:0.03545681640285592\t:0.01\n",
"of:0.30399212143103177\tthe:0.18896643332380744\tto:0.15198620140005717\tby:0.09816945292511042\tin:0.0820352570361127\tand:0.06155942930867883\twith:0.040865510895991324\twhich:0.03128142659421389\ton:0.031144167084996524\t:0.01\n",
"day:0.20240002695195258\tvein:0.12865954019524617\tone:0.1146446655310812\tline:0.10245728874463506\tside:0.09783684294897306\tpart:0.09461604759240946\tin:0.08364226947287831\ton:0.08359135138497124\tland:0.08215196717785289\t:0.01\n",
"statute:0.4186740486360634\tand:0.1773874122872153\tthat:0.07552749244437032\tor:0.07132424490596527\tas:0.05800094168043707\tis:0.05059550344693197\tit:0.04914277446266791\twas:0.04506424724176516\tbe:0.044283334894583616\t:0.01\n",
"and:0.5095190979936209\tthat:0.1419987710455082\tbut:0.1246971741808608\ttime:0.052856599086597275\tand,:0.03638756883139097\twas:0.035284877063652104\tBut:0.03157099752892951\tit:0.029068272942574316\tago,:0.028616641326865883\t:0.01\n",
"the:0.3451147836250196\tof:0.2009760485586474\tin:0.09760585083555284\tand:0.08336205092240283\tto:0.07780141922026608\ta:0.06620370538837768\t.:0.05055264998771555\tat:0.0382407398689514\tfor:0.03014275159306661\t:0.01\n",
"the:0.6469534454590343\tan:0.0887417674904894\tThe:0.08830003421090472\ta:0.05761711306591886\ttho:0.03686337576800859\tno:0.02024838065212861\tgreat:0.018181046256030186\ttbe:0.017525250765671036\tsole:0.01556958633181426\t:0.01\n",
"the:0.23884928566574878\tof:0.22841781160523592\ta:0.17386962480461948\tand:0.08876583977758414\tin:0.07856945814260011\tto:0.06637159256275596\tthat:0.0463928083853103\tfor:0.03663893533613662\tan:0.03212464372000861\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"the:0.3097079253619076\tof:0.2659434371203223\ta:0.12747387852391406\tfor:0.0633620098782895\tand:0.05779531694781473\tsuch:0.051701147594935264\tin:0.04402111053296229\tall:0.03559266730744287\tother:0.03440250673241141\t:0.01\n",
"of:0.3456534994314351\twith:0.15999752877189857\tand:0.11159215715017097\tto:0.11143029452641444\tin:0.08635871597374029\ton:0.06536797276794956\tfor:0.04136425303172227\tby:0.035592538897484476\tis:0.032643039449184376\t:0.01\n",
"the:0.3095876780584938\tof:0.17316931702614413\tto:0.12268602141238893\tand:0.12089557564332551\ta:0.08723231527611129\tin:0.05333032522055631\tbe:0.04669364142145447\tis:0.03842252484347462\tfor:0.0379826010980508\t:0.01\n",
"it:0.1921278232971985\tI:0.16353672814364642\the:0.14828097751304353\tIt:0.12009222869643395\twe:0.11874289695586418\tthey:0.11459528351250944\tWe:0.047894328539064\tand:0.04657853342455461\tyou:0.03815119991768531\t:0.01\n",
"of:0.29790080961791876\tin:0.23002241645480104\tto:0.11281211589414142\tat:0.11006271809463421\ton:0.0920873899730864\tIn:0.0509484804810526\tfrom:0.03996176466618113\tby:0.030685336717867603\twith:0.02551896810031683\t:0.01\n",
"the:0.3697654640095182\ta:0.16756524887954807\tof:0.1413033644949517\tand:0.10481993325614732\tto:0.050351094877034326\tThe:0.050204585097669466\tat:0.03789209116998818\tin:0.03440364527466175\tMr.:0.03369457294048078\t:0.01\n",
"of:0.26494060581815454\tto:0.16418065921305036\tin:0.1503491809495235\tand:0.1229783906245008\tthe:0.09740874737296835\ta:0.06121354763522007\twith:0.046354031495209884\tIn:0.044999648571575415\tfor:0.03757518831979709\t:0.01\n",
"the:0.3787533404207069\tand:0.1658341956603535\tof:0.10255045338799598\tfor:0.07751684634341297\ta:0.0730062923066815\tin:0.06899561332090348\tto:0.05050267162327506\tor:0.03686891462277409\twas:0.03597167231389657\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.3439865230932211\tand:0.1458854115074425\tof:0.1341109670607927\ta:0.07863993025420293\tbe:0.06536689997372996\twas:0.060997355245292144\tto:0.05804495461843789\tin:0.05343860897066103\tis:0.04952934927621987\t:0.01\n",
"is:0.41602376895788695\twas:0.13027387386359607\tand:0.11490051353292391\tare:0.07175062940618297\tbe:0.055794184766078274\tIs:0.05573879328121847\thas:0.05310948590439003\tnot:0.04735068667767256\tit:0.045058063610050776\t:0.01\n",
"and:0.2962669898592672\tmade:0.15510784918512732\tor:0.10615493146181892\tbut:0.08112997524598134\tit:0.07594063636413168\tdone:0.07326676586839144\tshown:0.07058165466297546\thim:0.06599543845608538\ted:0.06555575889622141\t:0.01\n",
"of:0.24101814714590317\tand:0.15853340819123674\tin:0.11398903483427462\twith:0.09131921873928764\tis:0.08769207303196974\tto:0.08442576824891843\twas:0.08384640368075044\tas:0.06734628580547813\tby:0.06182966032218088\t:0.01\n",
"of:0.25160013504100825\tfor:0.15053567505795606\tin:0.13178218703506062\tand:0.11352487717883515\tto:0.11315948459391707\ton:0.06605626396068934\tthat:0.06518593883364604\tduring:0.05117102582552417\tIn:0.04698441247336327\t:0.01\n",
"the:0.3917627351632284\tof:0.17191096405693984\tto:0.12297595959423421\tat:0.07226510522034309\tand:0.06903704402813833\tby:0.05056043780181515\t<s>:0.041124036937808854\tin:0.03697939447906569\tsaid:0.03338432271842645\t:0.01\n",
"of:0.27350123968613427\tin:0.17551693064129933\ton:0.11824941070899106\tto:0.11002006542796014\tat:0.07722916109576557\tfor:0.07254089102022633\tand:0.06450872872303744\tIn:0.05180160395396008\tby:0.04663196874262568\t:0.01\n",
"it:0.28106930323478374\tIt:0.22079703158687874\twhich:0.09733928975231702\tthat:0.09419944795994226\tThis:0.08562594454299967\the:0.059955834362739616\tthere:0.05752993539824749\tand:0.05515474481500406\tthis:0.03832846834708737\t:0.01\n",
"the:0.2754312926230506\tand:0.1611309031532695\ta:0.15778029771125415\tit:0.09008427277584523\tof:0.08178159353196576\tto:0.06191839858495566\tat:0.056307668813715996\tthat:0.054000821058812966\the:0.051564751747130134\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"he:0.2602671873223436\tit:0.20217483533329575\tand:0.10578413333132819\tI:0.09080667931344989\tIt:0.0907395135843138\tHe:0.06568756643563636\twhich:0.06196525742289797\tshe:0.0614181150601663\twho:0.05115671219656822\t:0.01\n",
"the:0.30502740263400346\ta:0.29574507514194076\tand:0.13286872432165184\tof:0.07121628459616638\tto:0.05490612886722639\tfor:0.04521199579120208\twith:0.034783378893728005\tThe:0.025396820465701384\ttho:0.024844189288379875\t:0.01\n",
"a:0.33446721328493534\tby:0.18846964517220247\tthe:0.15561775228483143\tof:0.10457134742498593\tand:0.05219154527947259\tare:0.0495767326155963\tmost:0.0397577513682632\tsome:0.03363693095969993\tis:0.03171108161001289\t:0.01\n",
"to:0.29424304609758295\tand:0.17509069669912075\twill:0.13594355957494209\tnot:0.11443145080436781\twe:0.06991770220659495\tmay:0.06191754529605525\twould:0.05558569950931631\tcan:0.04163848027480122\tyou:0.04123181953721877\t:0.01\n",
"and:0.17082046578071827\tput:0.15526386547990995\tas:0.1251933516431479\tof:0.12338248111159618\tto:0.11168370613519756\tfor:0.09576030799939818\tthat:0.08756318744957066\twith:0.06335269927170917\tmake:0.0569799351287521\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"the:0.32282502324564166\tand:0.19037863250757886\tof:0.17225686026788187\tto:0.10504189560269267\tThe:0.04863952602386456\tis:0.04017858724950789\tthat:0.03951387455255484\twas:0.03579590524360478\ta:0.0353696953066729\t:0.01\n",
"a:0.25837515361454694\tso:0.21204397014417575\tfeet:0.15618664675848032\tthe:0.08997457789642417\tvery:0.08288716458686338\ttoo:0.052064363743178126\tinches:0.04748497342524908\tas:0.04646793915255795\twas:0.044515210678524215\t:0.01\n",
"and:0.26627119886116885\tof:0.23615787191543813\tin:0.13367407937591402\tsaid:0.1044601600820278\tto:0.06311905513975115\ton:0.054279891219144276\tfact:0.04585699298474716\tfor:0.043775089152924544\tall:0.04240566126888418\t:0.01\n",
"is:0.2621660171069832\tand:0.17115498006409013\twas:0.16635879700093317\thave:0.08576262754267881\thad:0.07729937430580197\tthat:0.0641686866094928\tdo:0.06031757677249163\tsay:0.05184509583971008\tIs:0.05092684475781829\t:0.01\n",
"a:0.23620251285510865\tfor:0.187744673880631\tthe:0.1772100621910192\tof:0.11895487686638401\tand:0.0683162185363765\tto:0.05740220419953837\tat:0.056271367490556695\tin:0.04844381778611482\tvery:0.039454266194270685\t:0.01\n",
"of:0.2649070255925891\tin:0.24586399649839555\tfor:0.08045271922763904\tare:0.07999105963077054\tand:0.0752889714243079\tIn:0.07341428444210027\tby:0.06444484611885447\tthe:0.05328318091749328\twith:0.052353916147849955\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"of:0.32561122357968847\tand:0.17608964864948812\tfor:0.12674735291636488\tthe:0.10356828889207519\tto:0.07855504298214706\tin:0.05772666372214266\tat:0.05710630815984487\tbe:0.03332732979466993\ttwo:0.03126814130357888\t:0.01\n",
"number:0.21565724575094428\tbushels:0.21232991957138062\tbushel*:0.14182276153276432\tlot:0.07753457712670865\tamount:0.07310991412435328\trate:0.0726985283662198\tone:0.06857163275529857\tpiece:0.06496139973415208\tcost:0.06331402103817842\t:0.01\n",
"the:0.5569778523078637\ta:0.13009862741107892\tand:0.10097076440496779\tThe:0.055037323972442084\tof:0.044313136199435874\ttho:0.03988537402893128\tor:0.021648158527426235\ttbe:0.020595499604320125\tin:0.020473263543533984\t:0.01\n",
"the:0.36753507773552924\tof:0.14565415795429418\tto:0.10671200249806771\tand:0.09808379461992708\tbe:0.060301451713068194\tin:0.05480510069461998\tor:0.05341745427132001\tat:0.05307033823389208\ta:0.050420622279281437\t:0.01\n",
"the:0.4296733500335901\ta:0.30677805126575586\tof:0.06029590949388562\tThe:0.05322170354312578\twith:0.039216402772143465\tand:0.0350654902695585\this:0.025048632470323417\ttho:0.021419640146003824\tin:0.019280820005613347\t:0.01\n",
"those:0.2603883634814978\tman:0.15072846752267213\tone:0.14815784771062834\tand:0.14114720978654377\tmen:0.1027254816828118\tall:0.07289365326275182\tpeople:0.049218917881161305\tpersons:0.03274895452230092\tThose:0.03199110414963213\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.30365427752043556\tof:0.19764969723808876\ttheir:0.19728920952808343\this:0.07115419735409735\tour:0.06173261176163904\tgood:0.044281809789762094\tin:0.04155513139456105\tand:0.03799481899757617\ta:0.034688246415756664\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"be:0.3317420679721575\twas:0.22393253489166695\tbeen:0.13614465800040249\twere:0.07986345763372708\tis:0.07005502292238816\tare:0.0513399625661295\tbeing:0.04454482226387151\tand:0.0302158852657953\thave:0.02216158848386158\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.378847896207496\tat:0.2785891641799811\tto:0.09724149675874286\twas:0.04721736314395452\tbe:0.04482413814744208\tand:0.03747396275118103\tThe:0.03742123041645135\tnot:0.0362824428700912\tAt:0.03210230552465989\t:0.01\n",
"containing:0.2907485330480841\tof:0.2290335815430217\tabout:0.16500839975180295\tand:0.10884043361821666\tthan:0.05665206187781796\twest:0.03588851763731384\tthe:0.03542801754192513\tor:0.034927231909333334\teast:0.03347322307248439\t:0.01\n",
"of:0.42598431937852127\tin:0.1289229910457099\tto:0.11658071467902745\tand:0.08543495718541111\tby:0.061447575447941424\tthat:0.05815014874028654\twith:0.039363758173290485\tfor:0.037190433018831064\tall:0.03692510233098078\t:0.01\n",
"the:0.42004914683065936\tof:0.13466973569051718\tand:0.11122404163358073\tthat:0.07335130050379035\tThe:0.06686076414154887\ta:0.053878657084209296\tin:0.04843421049538479\tor:0.04344491920696621\tto:0.03808722441334332\t:0.01\n",
"to:0.674289708682571\tand:0.07649160332516891\twill:0.06847067181221367\tnot:0.03305813622409864\tcan:0.03217408197972449\tcould:0.030726602811419795\twould:0.029562487268582495\tI:0.024720767215461625\tmay:0.020505940680759487\t:0.01\n",
"so:0.30106764526166185\tas:0.1594142417368375\ttoo:0.14662293735068116\tvery:0.11912597325596035\ta:0.0768337391180406\thow:0.05921979456784427\tof:0.04547482314572756\tis:0.045405427348809854\tnot:0.036835418214436796\t:0.01\n",
"and:0.22951092858289457\tit:0.1512778538333323\twas:0.11219432297099576\tall:0.10409079886332842\tas:0.08303991963439632\tthat:0.08236412154492054\tthe:0.07955017585729351\tof:0.07703697220516935\ta:0.0709349065076692\t:0.01\n",
"are:0.16889760685900398\tis:0.1580038897917354\twas:0.15369986534063684\tfrom:0.14200040071951073\tthe:0.12676386734269812\tand:0.06941344371416763\twere:0.06725177495788442\tof:0.06406520268344994\tin:0.03990394859091285\t:0.01\n",
"the:0.38508053275627013\ta:0.22082176886430108\tof:0.09252088585731569\tis:0.06294892012224808\tas:0.05153625294163293\twas:0.05081124861137301\this:0.04876654347848022\tand:0.04076288087698164\tThe:0.03675096649139725\t:0.01\n",
"of:0.1923423389473129\tand:0.18855488330391665\tthe:0.1343265388445949\t-:0.12752795933168284\tthat:0.07771920218397271\tin:0.07355704690192338\tto:0.0718274602186116\ta:0.06655240074135338\tI:0.05759216952663152\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
".:0.22188304619271107\tA.:0.13314081291754126\tJ.:0.1232010355496155\tMrs.:0.12155464121767948\tW.:0.10279181993318656\tC.:0.0871387131679308\tH.:0.08174275999294972\tE.:0.06064726678529458\tMr.:0.05789990424309107\t:0.01\n",
"they:0.28031735430951304\twe:0.16774221043545073\twho:0.12957797082145023\tWe:0.08153493804751272\tyou:0.08033099325581512\twhich:0.07739365992873477\tThey:0.07713441997648454\tand:0.05804151830273411\tthat:0.03792693492230464\t:0.01\n",
"just:0.16560397216590092\tand:0.15632349367944437\tis:0.12599640747135732\tsuch:0.1016484650017462\twell:0.09791772522174456\tfar:0.09638031355853464\tit:0.09579489107342148\tare:0.07859447935027129\tnot:0.07174025247757924\t:0.01\n",
"of:0.3146203398414707\tthe:0.3010308135742531\tand:0.11042429221590083\tThe:0.09163641271600013\tin:0.04285320220602752\tsaid:0.03668159438202628\tthat:0.03289065813125698\tby:0.03149510228377484\ttho:0.028367584649289537\t:0.01\n",
"be:0.33427144011200727\tbeen:0.19771875179349419\twas:0.1740126493198979\tis:0.07980974488369767\tand:0.05726925201776004\twere:0.05181914719960441\tbeing:0.04252447765411999\tare:0.030326877160928904\tas:0.022247659858489623\t:0.01\n",
"of:0.2031739616185215\tand:0.13548357950372356\tto:0.1169634844370666\tis:0.11229325087655455\twith:0.10863235700154433\tas:0.0912825709703543\twas:0.08267520742978153\tby:0.0746917706207158\tthat:0.06480381754173783\t:0.01\n",
"made:0.24045435542744667\tand:0.23464210073409186\tor:0.1200765638048787\tit:0.07362996342121234\tpaid:0.06765443619763342\taccompanied:0.0676382050027566\tthat:0.06328132990515498\ted:0.062213755465309065\tdone:0.060409290041516336\t:0.01\n",
"in:0.45159886972343405\tIn:0.24027761420449106\tthe:0.11375618971363702\tof:0.1003788302093203\ta:0.026003833360011774\tfor:0.02268032022637342\tand:0.0157784596985973\tthis:0.009988067277186907\tany:0.009537815586948264\t:0.01\n",
"and:0.3129005956571635\tthat:0.19140349190598296\ttime:0.10438111160868258\tthem:0.09663102062914825\tall:0.07853651766771139\tit:0.05674768867633205\tmade:0.051745350253922504\tor:0.05069996896886639\thim:0.04695425463219023\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"the:0.4438434264564302\tand:0.10380451573481511\tto:0.08880536659965407\tThe:0.08609488305295737\tan:0.0634264765337338\tof:0.06148950847492813\this:0.058441947519856124\ta:0.049842608362047666\ttheir:0.034251267265577506\t:0.01\n",
"was:0.28679241511835607\tis:0.14534843103394035\tbe:0.11941020380962945\twere:0.09093205340035188\tare:0.08792238418572162\tand:0.07495714050227993\tbeen:0.0647006722531123\tnot:0.0642968787603287\tor:0.055639820936279595\t:0.01\n",
"of:0.3389740066074303\tthe:0.23012364191281118\tin:0.1103184793951763\ta:0.07819244808073063\ton:0.0645740467019648\tto:0.05858664609578327\tand:0.0454449959149119\tfor:0.0333749068003003\tby:0.03041082849089132\t:0.01\n",
"the:0.7718005595855677\tThe:0.05118134811721948\ttho:0.0389505676232282\this:0.028400936741793188\tits:0.022719477108948043\ttheir:0.02256654795727768\tand:0.022561626200781972\tour:0.01625291385614184\ta:0.015566022809041992\t:0.01\n",
"the:0.39447623537940263\tand:0.19759877609372792\ta:0.08232966065156176\tof:0.06190913726089489\tor:0.06156021279163969\tThe:0.05715504925906254\told:0.05405087785249397\tthat:0.04436345494671798\ttho:0.036556595764498594\t:0.01\n",
"is:0.19632617624270057\tof:0.14610673016430537\tas:0.1271493600699241\tand:0.10539754498734417\tto:0.0960705246646592\twas:0.09349981945793699\twith:0.08994922835353843\tin:0.0771157627479134\tbe:0.058384853311677774\t:0.01\n",
"the:0.5627421555052047\ta:0.2515905143199353\tThe:0.05073201934944475\tof:0.0274740312369221\ttho:0.02701010238028267\tgreat:0.02468768489205045\tand:0.02005681968025404\tlarge:0.013935308545183194\tany:0.011771364090722864\t:0.01\n",
"to:0.5342570118458025\ta:0.2120640742161015\tnot:0.0620817371032053\twould:0.044063919500480685\twill:0.03957435461629983\tthe:0.03559260854867281\tshall:0.024932290093763902\tmay:0.0193205148356947\tcould:0.01811348923997855\t:0.01\n",
"50:0.16849468235465817\tten:0.14825237516962173\tfifty:0.14522760423051187\t25:0.11627662161818783\t10:0.09874091367835039\tfive:0.08942429646830315\t15:0.0865667100313773\t5:0.06907261648367205\t20:0.06794417996531754\t:0.01\n",
"feet:0.15747443698855038\tup:0.15322422173060604\tout:0.13717258803134172\tsaid:0.11410201089811176\tdown:0.09207361488183084\tmade:0.08681132635523754\tand:0.084961307271445\tback:0.08371150511882033\thim:0.08046898872405626\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"it:0.28002465366503687\tand:0.1547777786133366\tIt:0.12398313708562755\the:0.10796375345733362\tthree:0.09108929433546252\tman:0.08276041035297516\tten:0.05459530659912678\tHe:0.051192475157582205\t.:0.04361319073351873\t:0.01\n",
"the:0.47628827864213524\tof:0.12652965036381308\tThe:0.07182381795963959\tyoung:0.06687118141905199\tbusiness:0.059620362957729746\tand:0.05434423330362082\tall:0.05342427884593533\tother:0.04103950683975551\ttwo:0.040058689668318576\t:0.01\n",
"the:0.2781006807555158\tMr.:0.20279267951665778\tof:0.13237428459760445\tThe:0.0866001262227909\tand:0.08328248282159866\tthat:0.07698677073899704\ta:0.05770113214848798\tMrs.:0.039502858498326084\t.:0.03265898470002127\t:0.01\n",
"it:0.35505309117815476\tIt:0.2256851548211504\twhich:0.09186997500389063\the:0.07427712557156563\tand:0.06860291172058657\tthat:0.06252393229388647\tthere:0.045646756155683414\twho:0.03881624702318383\tThis:0.027524806231898347\t:0.01\n",
"of:0.43651002471909717\tin:0.25164894339035293\tand:0.08786515080455815\tto:0.0512465343583324\tby:0.04275713535726799\tIn:0.04088452841127196\tthe:0.03460990832224486\tfor:0.0229960775487704\tNew:0.02148169708810416\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"and:0.3714032462716787\tor:0.1293828018427618\tthem:0.0830533692653885\tdone:0.07687470522004677\tonly:0.07074473524988606\tbut:0.06979708975761743\tthat:0.06689898476593081\thim:0.06277707251150139\tup:0.05906799511518849\t:0.01\n",
"the:0.4198701662031699\ta:0.3336204155201463\tthis:0.05466986453588396\tany:0.03365269635330322\tone:0.03184291510749766\this:0.031504479107048164\tThe:0.031207264857535073\ttho:0.028866991307475862\teach:0.024765207007939816\t:0.01\n",
"to:0.19840789771278963\tthe:0.16114678108014394\tof:0.13819408062443525\tin:0.13133553890416433\tand:0.1253786529831839\ta:0.09271577358059077\tat:0.0633655169001767\tfor:0.0423163546683177\twith:0.037139403546197776\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.2709209230429934\tand:0.15453410267929987\tto:0.13453765071023277\tthat:0.12692719009070444\tby:0.1121623800103856\tgirl.:0.054785111210275204\tboy.:0.04910596613668657\twith:0.046162892144821985\t<s>:0.04086378397460022\t:0.01\n",
"to:0.30102863785986816\tand:0.20724594162951251\tof:0.11561430117577177\tthe:0.08949931874126583\tin:0.06780950692820926\tis:0.05678672479774325\tI:0.05395775487226535\tfor:0.04939417435915029\tnot:0.048663639636213486\t:0.01\n",
"the:0.32154637247020473\tand:0.15402201449199623\tof:0.14205255028585398\tto:0.1086918989312306\ta:0.09152958460709819\tbe:0.04966102920900251\ttheir:0.044357774866503503\this:0.04039446568896741\tfor:0.03774430944914283\t:0.01\n",
"and:0.33423605338123746\tthat:0.17138278758600486\tas:0.16225940129579225\tbut:0.12420802109524334\tit:0.0518093980333359\tand,:0.03732999120235416\tBut:0.03727129832292548\tdo:0.036257806847872\twhich,:0.035245242235234474\t:0.01\n",
"they:0.16075476950393633\tit:0.1550230902383805\tI:0.10991514929663299\the:0.10634399749918766\tyou:0.10270584755573017\tIt:0.10006021853717872\twhich:0.0966256987942175\tand:0.08611831152310326\twe:0.0724529170516329\t:0.01\n",
"that:0.23081913998060427\twhen:0.1519324131877713\tas:0.12760140626824665\twhich:0.12682449237617033\tand:0.12017068715119081\tif:0.07884050551524553\twhere:0.0604249172355172\tbut:0.04937453680899256\tbefore:0.044011901476261314\t:0.01\n",
"Mr.:0.6271208065520876\tand:0.10182526599961059\tMrs.:0.06524742570494821\tof:0.052058839713528045\tDr.:0.04458638733882684\tthe:0.029001634734444507\tMr:0.025070509957406867\tSenator:0.022646995843876246\t.:0.022442134155271118\t:0.01\n",
"of:0.5126247196896901\tin:0.16185304930269856\tto:0.106579880489705\tby:0.04240914811681749\tfrom:0.03638281895482221\tIn:0.03309658921649156\tand:0.032634726002151795\tfor:0.032236454545220734\tthat:0.03218261368240254\t:0.01\n",
"of:0.6694481175722685\tin:0.09725745904279076\tto:0.04525434789414319\tIn:0.03439403972591451\tfrom:0.03345195281202521\ton:0.03327407377403157\tfor:0.03301024777026857\tby:0.02215862195926694\tand:0.02175113944929059\t:0.01\n",
"at:0.34162071099037644\tof:0.17049264054604993\tto:0.14523845158303975\ton:0.13077718464012406\tin:0.052980134168728585\tfrom:0.04739957809312319\tand:0.04444413748388868\tthat:0.02888445557370119\twith:0.028162706920968072\t:0.01\n",
"of:0.2047556480563323\tfor:0.1694005211985095\tenable:0.13515529519575864\tto:0.12357079414328452\tfrom:0.10345897574177258\twith:0.08971371221606815\tupon:0.06185516165493177\tgive:0.05342195749539524\tby:0.048667934297947246\t:0.01\n",
"in:0.2291796231230006\tof:0.19894604768114812\tto:0.12894122755459386\tfor:0.0981401666214376\twith:0.0799494179447224\tfrom:0.07786568636192283\tby:0.07136739601410988\tat:0.053415232000225306\tIn:0.052195202698839635\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.2970878080273246\tof:0.25737595057347007\ttwo:0.09981816629019\tyoung:0.0937862060141909\tand:0.07514021246133507\tThe:0.056372899481726337\tthese:0.04309646854827564\twhite:0.03512940189854192\tall:0.03219288670494561\t:0.01\n",
"of:0.20414768811987175\tand:0.1839695381488261\tto:0.1743375576935691\tin:0.16321301077947517\tfor:0.09971825141960501\twith:0.050463570121247095\tnot:0.04877453583825413\ta:0.03416717462750269\tis:0.03120867325164895\t:0.01\n",
"one:0.272561840834379\tsome:0.17567181277195737\tmany:0.10063293298888824\tall:0.09012185611021117\tout:0.08848657377219274\tpart:0.08783075355359866\tany:0.06250830842543066\tmost:0.05768093203675736\tportion:0.0545049895065848\t:0.01\n",
"and:0.25157976467555726\tas:0.24791883479597007\tit:0.11705236512009617\tso:0.07455984759410891\tis:0.0707093314308938\tbe:0.0616443502312598\the:0.05879789877952252\tthat:0.05752940734746212\twhich:0.05020820002512931\t:0.01\n",
"the:0.42667279810216036\tan:0.19222578425813555\tin:0.15709481832451486\tIn:0.05453519984376548\tand:0.052402592049178104\tThe:0.03191358513521491\tthis:0.029864148485242194\ttho:0.023441454086838627\tor:0.021849619714950044\t:0.01\n",
"and:0.2868283923681086\tof:0.2734541139455266\ton:0.08051798533019235\tthat:0.07392169525236238\tto:0.06796834389390678\twith:0.061112474182458056\tfor:0.058596536361262976\tin:0.04479835485184131\t<s>:0.042802103814340894\t:0.01\n",
"of:0.258583619512325\tin:0.17028710488981819\tand:0.1601448217245996\tto:0.10990610246747645\tthat:0.09627883292602053\twith:0.0553123962586878\tfor:0.05179979984485275\tIn:0.049429236143643154\tby:0.03825808623257648\t:0.01\n",
"of:0.2815836378328265\tand:0.19402609663060819\tto:0.13347816067850685\tthe:0.11376094126188174\tat:0.07842040776876832\tin:0.06380099517700348\tor:0.06371963431696513\ta:0.03207183107043338\tfrom:0.029138295263006323\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.26014728862680986\tof:0.24220432317201404\tin:0.11903154204280668\tto:0.08848490952028924\tand:0.08749345694143737\ta:0.06236814287433011\tas:0.04599026205556184\tat:0.04363452773924402\tbe:0.040645547027506924\t:0.01\n",
"the:0.37866755308102307\ta:0.30871602873550635\tdining:0.11383215843103979\tthis:0.049840526529076994\tother:0.03558847413597737\tof:0.026542074224041482\this:0.026209907900931768\tany:0.025574086800393282\tone:0.02502919016200981\t:0.01\n",
"the:0.20815353168351744\tand:0.18025247842954545\tof:0.14730818506795126\tto:0.1396308704880571\tbe:0.07057304997448326\twas:0.06942342942758628\ton:0.06116828818254944\tor:0.05784764751460129\tis:0.05564251923170847\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.25418549375648974\tthat:0.20082293093600273\tas:0.15852891768462382\twhich:0.12614343010865073\twhen:0.07219257665021513\tbut:0.05929200578391366\twhat:0.0497658475375204\tif:0.04193286290579575\twhere:0.02713593463678798\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"on:0.5769075467532128\tone:0.12170355175746585\tday:0.06065395552070419\tin:0.05781582510019731\tand:0.03947145577136259\tsooner:0.036370733368903195\ttwo:0.03507199064644293\tsold,:0.03213727742355716\tof:0.029867663658154017\t:0.01\n",
"the:0.16760014197631629\tday:0.1370631627113472\tmanner:0.13352120832253644\tand:0.12776425544398168\tway:0.11345862135131922\tof:0.0857823511172934\tyear:0.07826252520870108\ttion:0.07446597960173582\tcounty:0.07208175426676897\t:0.01\n",
"the:0.721773963061345\ta:0.0869669973237985\tThe:0.045615729592314\thigh:0.034491152881454226\ttho:0.03119082177915322\tlow:0.029462966939407902\ttbe:0.015513800926501122\tand:0.013578197509461236\taverage:0.011406369986564892\t:0.01\n",
"was:0.17752419140416842\tbe:0.1717429781398817\tto:0.1611131564626004\tand:0.13978642909915404\tof:0.0951416002995994\tis:0.07029677082119418\tbeen:0.06782012723921677\twere:0.05336967371049516\tnot:0.05320507282369008\t:0.01\n",
"Notice:0.5483417146653617\tnotice:0.1785724627797436\tit:0.06430391730339519\tIt:0.05997434598172384\tthat:0.03357646177516563\twhich:0.03180742956076193\treference:0.02603068327338274\tthere:0.025092507296849635\the:0.02230047736361583\t:0.01\n",
"the:0.5986783153368554\tand:0.09348301513757082\ther:0.05478111548205661\this:0.047372769428225166\ta:0.04500395825788202\tmy:0.04131869208796641\tcame:0.038451619742113655\ttho:0.0380660675011437\tThe:0.03284444702618604\t:0.01\n",
"<s>:0.43096532229124807\tit.:0.13333001306918557\tthem.:0.11238139749236764\ttime.:0.06953043937170357\thim.:0.06206148264299377\tlife.:0.04880448055871299\tcountry.:0.04810530873390698\tyears.:0.04424274374950268\ther.:0.040578812090378884\t:0.01\n",
"he:0.2525639766117344\tthey:0.17125488313821866\tit:0.16956186142637827\tI:0.0891240737865223\twho:0.0692002960050024\tshe:0.06625130858195873\twe:0.063884911029638\tand:0.05568204712355725\tIt:0.05247664229698989\t:0.01\n",
"a:0.500570819262776\tthe:0.29769362198622196\tlarge:0.05515782562281013\tgreat:0.05201390780632323\tThe:0.023103197107004682\tvast:0.01906800312984933\ttho:0.016590339199972676\tA:0.013828632727406283\tand:0.011973653157635692\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"a:0.2264120419083528\tis:0.14348736065038376\tand:0.11231391022108604\tnot:0.11000321656867046\tto:0.08735004853840161\tI:0.08110283706586255\tthe:0.07704124008048419\twe:0.0767376638042757\tare:0.07555168116248293\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"there:0.3140292460914838\tThere:0.2693892811735575\tIt:0.12965807175494165\tit:0.11932637920819568\twhich:0.043329418476612355\tthat:0.03539241542915168\tand:0.02839122846424099\tThis:0.028354530591198798\the:0.022129428810617576\t:0.01\n",
"to:0.4723993565473622\twill:0.08581084049603843\twould:0.07485018571555585\tnot:0.07311188621659065\tand:0.06821579925165278\tunder-:0.0674991873732589\tI:0.06601502004333419\tthe:0.04322586049804078\tthey:0.03887186385816629\t:0.01\n",
"the:0.30143390192917074\tof:0.12467890877859149\tand:0.11585781756227825\this:0.09645417715135804\tin:0.09285891857779843\ta:0.08393881697988924\tthis:0.07548144313440323\tfor:0.05038709343781509\ton:0.04890892244869544\t:0.01\n",
"<s>:0.5350679324006864\tit.:0.11801062892123784\tthem.:0.07952656695016587\t.:0.04792660271333292\thim.:0.04698740849389142\tcountry.:0.042601262447267835\ttime.:0.04108326398651712\tday.:0.04029845977690946\t?:0.038497874309991145\t:0.01\n",
"of:0.23445499164963823\tfor:0.16239666027952998\twith:0.154525837956063\tto:0.1253668304462278\tin:0.0676320538845404\tupon:0.0671768454898563\tby:0.06572909527098995\tabout:0.06468342788841162\tdo:0.04803425713474279\t:0.01\n",
"<s>:0.640106119859322\tit.:0.0706093716919901\t.:0.05494143900410211\tthem.:0.04768369636512093\tcountry.:0.04706948065501005\thim.:0.039408689767510385\ttime.:0.03463457970598247\tyear.:0.028978375184860992\twork.:0.026568247766100995\t:0.01\n",
"it:0.2131788841045554\the:0.1867324812779885\tIt:0.14093961810063965\twhich:0.10085580692903923\tI:0.09523457785691533\tand:0.0799079407626281\twho:0.06284443033512091\tHe:0.05697400216718626\tthat:0.05333225846592657\t:0.01\n",
"the:0.35072327237880707\tof:0.2078608249068904\tand:0.10502557993379773\tin:0.07686999620026491\tto:0.06510062871765702\ta:0.05625373115643907\this:0.055709768879886545\twith:0.0376877702928177\tbe:0.03476842753343954\t:0.01\n",
"of:0.21325143395057597\tfor:0.20329047328274294\tabout:0.12787858213042344\tin:0.11530467209693371\twith:0.10742897261683286\tto:0.09948477318596811\tupon:0.050152165112707266\tagainst:0.03747768056610173\tby:0.03573124705771401\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"<s>:0.34744251740961557\tit.:0.14788464002601287\t.:0.131860227883129\tResolved,:0.10381762620916161\tthem.:0.06576514243418893\t2.:0.057493918268915215\t1.:0.05038151132448334\t::0.043461034858057725\tyear.:0.0418933815864356\t:0.01\n",
"the:0.2881849584752655\tof:0.17971492413947426\tand:0.13707918239468905\tin:0.10244921505958003\tto:0.09138126056530775\ta:0.06191509319589872\tfor:0.04906319603606977\tthat:0.04753177139124504\tThe:0.03268039874247\t:0.01\n",
"feet:0.16566530055203563\tand:0.15830955822731993\tmen:0.12318583917351082\tit:0.11132728504145045\tthem:0.09491262239362781\tmade:0.09116121518246559\twell:0.09017600604476055\thim:0.08080596145667249\tup:0.07445621192815671\t:0.01\n",
"the:0.6281348543673789\ta:0.15689761357579146\tThe:0.055460055862044395\tand:0.039305674226080396\ttho:0.037635362035065394\tof:0.024025452519066567\tsaid:0.016989289490679668\ttbe:0.01680448623282624\tby:0.014747211691067125\t:0.01\n",
";:0.1776810424966606\tup:0.16824869860934652\tin:0.1585584417448523\there:0.09305294129849861\tmisdemeanor,:0.08484565313025416\tday:0.08254827047470589\tmortgage:0.07788942415496554\tyears,:0.07405004406112951\tcounty,:0.0731254840295867\t:0.01\n",
"it:0.4049601714680665\tIt:0.24504553403574914\twhich:0.0724984965393253\the:0.06436787895873493\tthere:0.05103367457039479\tthat:0.050270108088097294\tand:0.0425762002946042\twhat:0.03441972349061151\twho:0.02482821255441631\t:0.01\n",
"that:0.26923081051162095\tas:0.1241429786713435\tand:0.11409819299025309\tif:0.11029204633899473\twhich:0.10893420263851056\twhen:0.09954667732161468\tbut:0.06278220963073454\twhere:0.0625687938865258\tbecause:0.03840408801040211\t:0.01\n",
"one:0.37208554784981507\tsome:0.12174963749774224\tall:0.09885494039251233\tnone:0.0861546256318368\tmany:0.0839903462946962\tany:0.07130102331293847\tand:0.05541118987133651\teach:0.05333972248816871\tthat:0.04711296666095363\t:0.01\n",
"the:0.7486550225366531\tand:0.053408987972149546\ttho:0.05077130808371849\tThe:0.03343389637006097\tsaid:0.029509992288055016\ta:0.021335883128875376\tan:0.019643153764214973\ttbe:0.019271187093171122\tthis:0.013970568763101442\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"I:0.4245927962739406\the:0.10712002985042948\thad:0.09099773447090163\tand:0.08594954129856473\thave:0.0737143760933529\twe:0.06385671452760566\tthey:0.05223815622749169\thas:0.04924533433640361\tHe:0.04228531692130961\t:0.01\n",
"that:0.2751953978200195\tand:0.196245321574177\tit.:0.1234901626019106\t<s>:0.11944094139199907\tthem.:0.08475856768162963\tas:0.052754114176684144\t?:0.0484784177928631\teven:0.0468888355782998\tbut:0.04274824138241705\t:0.01\n",
"as:0.8489485609832734\tand:0.06122281379718515\taa:0.020285935448177\tthat:0.015149781599218157\twhich:0.011423545817414116\tthe:0.011243046475305118\tns:0.009867820824699305\tof:0.007498745579420366\tit:0.004359749475307281\t:0.01\n",
"and:0.2635869225982122\tof:0.2146296465876313\tthe:0.12384193944996685\tin:0.09477219918356568\tfor:0.08171083568547738\tor:0.06644900119792707\twith:0.04910758377754646\tto:0.04858090700667944\tby:0.04732096451299354\t:0.01\n",
"and:0.42609131794655675\tas:0.09879673011033703\tthat:0.08882865395275988\tit:0.07878615735521474\tis:0.07375380392078061\tbut:0.0654889305808678\twas:0.06543214428020483\tI:0.051249632704902744\twhich:0.04157262914837551\t:0.01\n",
"was:0.18464099503030626\tbe:0.1614192004551438\tis:0.15063268428126111\tbeen:0.12957162180973814\tare:0.1119558749216766\tand:0.11130654004812011\twere:0.05596468738648349\tnot:0.04358630833082829\tof:0.04092208773644218\t:0.01\n",
"the:0.32208107306687167\ta:0.23354988984926864\tof:0.12892771812247145\tand:0.10131444354910017\this:0.050046993643689135\ttheir:0.04880097596676989\tThe:0.037201206507703526\tits:0.03424177486326519\tto:0.03383592443086014\t:0.01\n",
"of:0.22311886839934636\tand:0.16674976463989752\ta:0.1326518741071075\tthe:0.12904482491503577\tas:0.11756217419998327\tso:0.07659548773433372\tis:0.05175678304726475\tthat:0.04813122375634109\tvery:0.044388999200690046\t:0.01\n",
"have:0.238032576645936\thas:0.13708599563146667\tnever:0.13596933911145115\tand:0.11487265688026271\tbe:0.1027483855676518\thad:0.09081593332238143\tnot:0.061063665303682034\the:0.06081746389551772\tever:0.04859398364165062\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"to:0.3312356642167465\twill:0.1851378385043994\twould:0.13895100054855106\tmay:0.0929155956851821\tnot:0.06968622687113103\tshould:0.05088792353732102\tshall:0.04482498723022929\tcan:0.038949198765611245\tmust:0.03741156464082855\t:0.01\n",
"the:0.2287225882862419\tof:0.19712244581528446\tin:0.12805354102064756\tby:0.09167469025703401\tthat:0.07979244933693669\tand:0.07658256769861903\tto:0.070959691804309\tfrom:0.06651000173170549\ton:0.05058202404922185\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"and:0.21790677046490206\tnecessary:0.12394862774850901\tready:0.12390744753093216\tcandidate:0.10069126833498508\tused:0.09864901344869566\tdemand:0.09480550327996208\tmade:0.08804447420201157\treason:0.0753070877654503\tsufficient:0.06673980722455207\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.21582039034583575\tand:0.19654972119264133\tthe:0.13728266267253494\tthat:0.12477242754293302\tas:0.10540845637568422\tto:0.06265697216827043\ton:0.04979434434032912\t<s>:0.04935715898856774\tWest:0.04835786637320335\t:0.01\n",
"to:0.1464410146092859\tof:0.1333712271346418\tin:0.1312640040837542\tis:0.1294535271890471\twith:0.10847883078897687\tfor:0.10054587395796366\tand:0.0905439246156685\tas:0.07995014962532482\twas:0.06995144799533717\t:0.01\n",
"the:0.3187533310365806\tof:0.19153223533904776\tand:0.13333775657562166\ta:0.08569118153695421\tto:0.07805362827458312\this:0.04896787193732948\tbe:0.04728575140178597\tmy:0.044784222538298106\tI:0.041594021359798936\t:0.01\n",
"the:0.44154302067349016\tof:0.26574422053165847\tThe:0.1077948216306878\tsaid:0.06114924375190959\tthat:0.037301997613311676\ttho:0.022155940082909692\tthis:0.021742251934890797\tand:0.017817367992783172\tdescribed:0.014751135788358597\t:0.01\n",
"statute:0.4186740486360634\tand:0.1773874122872153\tthat:0.07552749244437032\tor:0.07132424490596527\tas:0.05800094168043707\tis:0.05059550344693197\tit:0.04914277446266791\twas:0.04506424724176516\tbe:0.044283334894583616\t:0.01\n",
"of:0.3204868212614671\tto:0.12007122052461547\tknow:0.09761610867087289\tin:0.09680261713919291\tand:0.09462951833703091\twith:0.07695797624591265\tfor:0.07380616249092777\tis:0.06041142848563168\tsee:0.04921814684434861\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.19461949966041495\tand:0.19008882582354475\tthe:0.18970843377846167\tto:0.1444744459324772\ta:0.0631488733137441\tMr.:0.061320346203658165\t.:0.05608212555402256\tin:0.054118825973683116\tat:0.0364386237599936\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"it:0.2774822979725539\tIt:0.19754314725679648\twhich:0.12651385198976978\tthat:0.09240520006089892\the:0.06737366672562585\tthere:0.066562411311481\tand:0.06455365279069679\tThis:0.053004398814229005\twhat:0.04456137307794832\t:0.01\n",
"in:0.2518520012243235\tof:0.2444950777761337\tlarge:0.1249076376279134\tand:0.09134034229726888\tthe:0.08325840051854971\tIn:0.05144873349374095\tgreat:0.050932989956286\tfrom:0.048819276090741416\tsufficient:0.042945541015042485\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.8725553871030386\twill:0.03566771434060124\tand:0.03153780141692361\twould:0.013705495498632668\tnot:0.011870390806964837\tcan:0.008454027900669776\tTo:0.005981568533174752\tshall:0.005559339836457303\twho:0.00466827456353719\t:0.01\n",
"the:0.265503121945857\tand:0.14502324934483757\ta:0.12671218166184434\tof:0.118173690774372\tbe:0.08618146888746488\tin:0.06994387033864473\tto:0.0681431699178818\twas:0.05968115913219388\tis:0.05063808799690371\t:0.01\n",
"it:0.20232519177660643\the:0.16234484086264728\tIt:0.1554090302075327\tI:0.1435863272450962\tthere:0.07378138159381324\tand:0.07333071483799818\tHe:0.07174050734643728\twhich:0.05781177237565947\tshe:0.049670233754209356\t:0.01\n",
"Grand:0.8599409008659268\tthe:0.06408324083000606\tand:0.03709001030964869\tof:0.010895051358767768\ttwo:0.0052249439015464505\tin:0.0036341156928085786\tby:0.0032860598820669204\ttho:0.0030847266242684055\tthree:0.0027609505349604985\t:0.01\n",
"a:0.45604308230814716\tthe:0.19614474876003998\tis:0.08665571272341378\twas:0.06556475809012982\tare:0.05198010984547536\tand:0.03841278687885531\tnot:0.03529809389306367\tbe:0.030591411268605987\tin:0.029309296232268876\t:0.01\n",
"sum:0.3539514508613801\trate:0.17244903046905766\tone:0.08891524464089454\tamount:0.07331814878778507\tout:0.07066043298146303\tnumber:0.06500378352768377\tconsisting:0.060053059426700514\tinstead:0.05336354511059119\tperiod:0.05228530419444427\t:0.01\n",
"he:0.24850837663519365\tI:0.14598485741126332\tand:0.1378353728101455\thave:0.11521383017829767\tbe:0.10748600650816321\thas:0.06435646564011016\thad:0.061773267581653024\twho:0.05556148732293889\tthey:0.05328033591223452\t:0.01\n",
"and:0.28720281232973693\twas:0.13699100705051342\thim:0.12544032427762147\tit:0.10315427856286868\tup:0.08150588430725106\tman:0.07164027192781154\tfound:0.06250334011310803\tis:0.06211053685524235\ther:0.0594515445758466\t:0.01\n",
"be:0.16231793401292238\twas:0.15628465868608368\tare:0.12216089048686152\tand:0.09785294927227149\thave:0.09516561811262275\thad:0.09116134002433957\thas:0.0905015641565986\twere:0.08949146502507661\tbeen:0.08506358022322326\t:0.01\n",
"the:0.2629932192263116\ta:0.21844664921280282\tand:0.16984867257435768\tof:0.12466296670252112\tfrom:0.0567967386484945\this:0.04958883964079247\ther:0.04020956962285458\tThe:0.037278770092475946\tfor:0.030174574279389355\t:0.01\n",
"state:0.16116402223208387\tout:0.1392157611363647\tDistrict:0.12487308056124256\tState:0.12234331628256705\tday:0.10011294336802518\tdeed:0.09754164369328784\tand:0.08734681943868103\tone:0.08309887247584265\tpart:0.07430354081190513\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.39620436579544704\tof:0.16907565216974815\tat:0.08063261508505297\tfor:0.07399007519488651\tin:0.07251903239054938\tfrom:0.059916706662650185\tand:0.0494890957853563\tby:0.046549066141467955\tthis:0.04162339077484155\t:0.01\n",
"and:0.20450556845365275\tdays:0.12596459196979642\twas:0.12001441399073981\tor:0.09579385432590432\ttime:0.09472943273581123\tthat:0.09322739577872445\tnever:0.08763760886899596\tlong:0.0868116995898552\tbe:0.08131543428651984\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2575865202979192\tand:0.16564278541080382\tin:0.15968201695889675\tto:0.12379588530454701\tfor:0.08843211204171122\tby:0.05893067101534073\tthat:0.05804129541219335\twith:0.04370563617299324\tIn:0.03418307738559465\t:0.01\n",
"and:0.17494488464527436\table:0.1355537887146852\tas:0.1256936755751286\tis:0.10092694150086114\thim:0.09991732887064775\tgoing:0.09530417779630596\twas:0.0881790232321575\tenough:0.08556056427097564\torder:0.08391961539396389\t:0.01\n",
"any:0.1729878951408468\tno:0.14343171478298958\tthat:0.13568577417651623\tNo:0.12685506184059242\tof:0.09332686734103983\tthe:0.09127383297142347\tand:0.07841880951969818\tbut:0.07408701985409723\tsome:0.07393302437279613\t:0.01\n",
"and:0.3891410771730926\tthat:0.1838118405728944\tbut:0.16686986415504704\ttime:0.07706117271634955\tBut:0.06072365092951834\tor:0.032347409177408616\tAnd:0.03234518226196476\tday:0.026499748898239098\tago,:0.02120005411548543\t:0.01\n",
"of:0.2648344476968349\tthe:0.15407336577855146\tby:0.12113523132218235\tand:0.12065285925225173\twith:0.11597324808028876\tto:0.06685164792756121\tmade:0.05612785958026634\tin:0.04527829070347676\tfor:0.04507304965858651\t:0.01\n",
"the:0.3670599066838357\ta:0.25721938482137824\tof:0.0867927200132285\tand:0.08344782876204763\tThe:0.07628529567575804\tA:0.037462314740589725\tan:0.029932566974230974\ttho:0.02896654790153841\tor:0.022833434427392833\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.4231370151365672\the:0.10528806156489312\tbe:0.0805538249692879\twho:0.07427321441706551\tI:0.07330275563208138\twhich:0.06735245844385622\tthat:0.060354303650928406\tto:0.05519300244612123\tan:0.050545363739199045\t:0.01\n",
"the:0.581776475863361\ta:0.17180771534145048\tin:0.05856857954168394\tThe:0.049198559979982064\tthis:0.0419428475095955\ttho:0.033736190948880314\tof:0.01963196651091596\tany:0.01678002792092221\tthat:0.01655763638320847\t:0.01\n",
"be:0.32173945916515995\twas:0.1439065183915506\tbeen:0.1081220523034696\tare:0.10632386745126284\twere:0.09303563736700783\tis:0.07240390789002604\tnot:0.07021814041541757\tand:0.05067999625468485\tbeing:0.02357042076142073\t:0.01\n",
"the:0.3812136653835767\tand:0.16879776455030396\ta:0.12267379359483482\tof:0.09487190793934681\tto:0.060068080547924355\tin:0.049486054717056006\tThe:0.045952426961660915\this:0.036918005704012276\tI:0.03001830060128425\t:0.01\n",
"of:0.24755463529306299\ton:0.19088398856017405\tto:0.16303772196934407\tat:0.11201188179527938\tin:0.09356903869580839\tfrom:0.07587600499089336\tand:0.04814575299710645\tthat:0.0301008150077427\tfor:0.02882016069058869\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"in:0.33870336493657943\tof:0.22867825342494055\tNew:0.13149411387035123\tfrom:0.12578958132587992\tIn:0.06830074259147535\tto:0.02904543748477244\tfor:0.028008421882511316\tat:0.020813910460266084\twith:0.01916617402322377\t:0.01\n",
"of:0.22436466110841724\tand:0.22129614070440548\tto:0.15486958445852939\tthe:0.12605655276199063\tin:0.06953861603067178\tfor:0.05536754301168913\tthat:0.05236922468928433\t<s>:0.047403716387358734\tby:0.03873396084765319\t:0.01\n",
"<s>:0.24643505364970167\tthat:0.22567481111489607\tand:0.11986402130738497\tit.:0.10509411761497947\tbut:0.07308474448235741\tas:0.06237988616146023\tthem.:0.06028718069699419\tcountry.:0.04939834692648971\tof:0.04778183804573639\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.20876430888338432\taway:0.1533805899516923\ttaken:0.113137001917215\tthem:0.10345973013212396\tcome:0.09555640874079832\tfree:0.0925874872714809\treceived:0.08156431484247555\thim:0.07132824299229158\tout:0.0702219152685381\t:0.01\n",
"two:0.21895691255295768\thundred:0.11464026019373981\tsquare:0.11311003656163852\tsix:0.09998464185467038\tfive:0.09680601753185719\tthree:0.09657855292700258\tfour:0.09215266468421114\tten:0.08465270123138409\tthe:0.07311821246253862\t:0.01\n",
"the:0.8379484458135421\tThe:0.036390939325591024\ttho:0.027855680043157086\ta:0.021623724696117317\tand:0.017396795599453247\this:0.01605904147580773\tin:0.013195752892902295\tof:0.01011852335658647\ttbe:0.009411096796842745\t:0.01\n",
"the:0.7043946385709331\tsaid:0.07044850000055673\tThe:0.05429216982491694\tof:0.03973382716844926\tand:0.03320836292119303\ttho:0.02845867746664742\tthis:0.02114605180401455\tan:0.020612526399884864\tour:0.01770524584340411\t:0.01\n",
"of:0.3726165742523303\tin:0.1495683806095387\tto:0.12261671601628256\tand:0.08816856765154873\tfor:0.066583384698708\twith:0.05975007822757766\ton:0.05461917932545206\tthat:0.04018603807413134\tby:0.03589108114443055\t:0.01\n",
"the:0.3121619288613327\tof:0.18040170943559194\tand:0.14514153873434874\ta:0.14131705530088456\tto:0.04964614793275241\tMr.:0.04553689726890723\tis:0.039964707182540644\tas:0.03995048072691112\tThe:0.03587953455673064\t:0.01\n",
"I:0.2265547062429591\the:0.1868578577040488\tand:0.1626434338828027\tthey:0.0870136823849859\tHe:0.07913349412369516\tit:0.07548700696551074\tshe:0.06315880818379584\twe:0.05697737867879603\twho:0.052173631833405676\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"his:0.4848333443703283\tand:0.15725375780091844\tthe:0.13654416233430997\ta:0.05046202143128002\tof:0.04520865101005719\tmy:0.04036102674071119\ttheir:0.02817862980988162\ther:0.02699261877873239\tyour:0.0201657877237809\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"it:0.19330486123708576\tand:0.1286819126469356\twe:0.12211715346407157\tI:0.10791428267507484\tIt:0.1052209806417325\the:0.10466650684335192\twhich:0.0854579400005909\twho:0.07578410719297046\tthey:0.06685225529818639\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"is:0.1754598139421093\twas:0.1383588246458386\tas:0.12987977978521897\tare:0.12485208833719924\tand:0.11151479716853849\ta:0.08958400453539878\tvery:0.07512660762772191\ther:0.07509278830672336\twere:0.07013129565125124\t:0.01\n",
"the:0.5551899317647334\ta:0.17254925166600169\tthis:0.11092974892117569\tany:0.03485145991462502\tother:0.030196583020591798\tevery:0.026835461204583962\tand:0.024638554453884187\tgreat:0.01792284268731002\tour:0.016886166367094297\t:0.01\n",
"and:0.26561467170004904\tsaid:0.1402649772556806\tfact:0.12454175110734755\tso:0.11048675781624648\tknow:0.07824425042146248\tbelieve:0.07486255077695934\thim:0.06998995045378482\tis:0.06888556409498099\tstated:0.05710952637348863\t:0.01\n",
"the:0.6768627974896106\tin:0.06291856457056888\tThe:0.0585098913099327\tand:0.049060590157670114\ta:0.04250614034914327\ttho:0.03756680159007044\tgreat:0.021563916433142066\tIn:0.021135527735493306\tof:0.019875770364368734\t:0.01\n",
"of:0.24984771499497765\tthe:0.22671843497357402\tat:0.12524840899520465\tand:0.11153419731745215\tto:0.0688361339660361\tin:0.06387473628183954\ta:0.05805175234028244\ton:0.05357731293575162\tsaid:0.03231130819488171\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.3715952628830042\tat:0.21186422040962907\tin:0.10905423513299259\tthe:0.07404865447281872\tfrom:0.07401530553455044\tto:0.06652560868577939\tfor:0.03146995371350818\tand:0.029180546874311694\tby:0.02224621229340573\t:0.01\n",
"is:0.19779638475912692\twas:0.15534007588572926\tbe:0.15203302902639962\tthe:0.12553900588082914\ta:0.09039159714634988\tin:0.0800018745653714\tare:0.07306888230480157\tfeet:0.058416882741925795\tof:0.05741226768946639\t:0.01\n",
"the:0.3187533310365806\tof:0.19153223533904776\tand:0.13333775657562166\ta:0.08569118153695421\tto:0.07805362827458312\this:0.04896787193732948\tbe:0.04728575140178597\tmy:0.044784222538298106\tI:0.041594021359798936\t:0.01\n",
"a:0.2551570845107978\tof:0.20203394160782465\tthe:0.19630473240243151\tin:0.1037381413697302\tand:0.08413034434406347\tto:0.05029396096706828\tat:0.04018487348809883\tThe:0.029806683555191265\tthat:0.02835023775479399\t:0.01\n",
"a:0.18638787996495249\tit:0.13322047331429293\tand:0.1330118537581764\tthe:0.13077207098958746\tis:0.11085456876776649\tof:0.10871119208941288\twas:0.06539742595742086\tfor:0.06148423500887302\tno:0.06016030014951747\t:0.01\n",
"of:0.42565361507211635\tin:0.10367732050220065\tto:0.10328241386421004\tby:0.07102874605905926\tthat:0.0709039905863662\tand:0.06896859977538873\twith:0.05730108840667164\ton:0.04589853037334758\tfor:0.043285695360639566\t:0.01\n",
"in:0.21373650780547765\tit:0.13850739981255658\tup:0.10944317373066394\ttime:0.10227213162070282\tit,:0.09679665675745537\thim:0.09649896099166652\tthem:0.08903046682444143\tout:0.07299070321725615\tthem,:0.07072399923977944\t:0.01\n",
"State:0.2767228079659295\tstate:0.1782555100879377\tcity:0.12050280083401431\tcounty:0.09809710820313691\tout:0.07946437647241622\tpart:0.07016740794698276\tline:0.057067834287051186\tSecretary:0.05649038011282105\tside:0.053231774089710374\t:0.01\n",
"I:0.5892565751340088\the:0.11740373643141302\tand:0.11052164537032427\t1:0.0385872036524038\tHe:0.03168485100059682\tnever:0.02904611593849495\tshe:0.028339516236789594\tthey:0.024317697683406924\twe:0.02084265855256191\t:0.01\n",
"the:0.26569339505585005\tof:0.1888283248128456\tno:0.10471965670963142\tand:0.10053954838194651\ttheir:0.09835238784252723\tis:0.08203816352667512\tother:0.0552220011102696\tfor:0.04841482327753912\tbe:0.04619169928271544\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"sat:0.17642188978050583\tlaid:0.17471702840056696\tcame:0.11724327536698452\twent:0.10775238016697813\tput:0.10494664412919277\tcome:0.08464099126499118\tand:0.08348165711375623\tgo:0.07976456918336994\tset:0.0610315645936545\t:0.01\n",
"belonging:0.20769430499304795\tperson:0.1421659265467577\tone:0.14200847236262545\tand:0.0972154332520762\tmore:0.09681422103998628\ton:0.08560690924408772\ttwo:0.08022200869605528\tStates,:0.06917615344162241\tman:0.06909657042374098\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.3514677411801053\tof:0.250163528296315\tin:0.13424904905669854\tand:0.06265292695561138\ta:0.05227768909014789\tan:0.0486554393694839\tgreat:0.03463534202354447\tIn:0.029458084096105782\tfor:0.026440199931987755\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"to:0.18444314330409928\tof:0.16046716939255853\tand:0.14873857323278122\tthe:0.1461719587092923\tbe:0.11162960835233085\ta:0.08877800849441189\twas:0.06486602355980449\tis:0.04388927442283423\tfor:0.04101624053188725\t:0.01\n",
"and:0.24843934210821123\tof:0.13444849915306992\tthe:0.11746416156270706\tthat:0.10013823709201289\thow:0.08950367338596399\tI:0.08293251513953157\t<s>:0.07569339870242885\tbe:0.07089671328686122\tHow:0.07048345956921333\t:0.01\n",
"of:0.19361958346585978\tthe:0.16484162595781557\t.:0.14549907972290246\tand:0.13588894186658879\tW.:0.07637764331825798\tH.:0.07126355091602164\tby:0.06965439056929339\tJ.:0.06951430022067949\tJohn:0.06334088396258096\t:0.01\n",
"it:0.37092396991108434\tIt:0.24096581986743926\twhich:0.09302578504967449\tthere:0.072402812556939\tand:0.06109732124482603\tthat:0.05761518098913908\the:0.03532154287373542\twhat:0.029946025174495107\tThis:0.0287015423326672\t:0.01\n",
"the:0.33283353848048064\tof:0.24639485990047677\tto:0.09789418913959648\tand:0.09329803509921945\tin:0.061301409635722504\tfor:0.04392026682443025\tby:0.04332845977538378\tthat:0.04150460316093242\tat:0.029524637983757703\t:0.01\n",
"well:0.2204507118930139\tand:0.2114647863948206\tfar:0.11870271474661521\tso:0.10693199884465583\tknown:0.09380461646566725\tit:0.06595860880272918\tlong:0.061340628831335085\tsuch:0.05867453610923453\tbut:0.052671397911928354\t:0.01\n",
"at:0.22606604972269348\tof:0.20393953051698147\tin:0.16750080429008354\tto:0.09178212860210258\ton:0.07338281661280806\tfor:0.07328046460725855\tand:0.0653471204622718\tthat:0.045503935447936676\tfrom:0.04319714973786389\t:0.01\n",
"as:0.17481395904871108\tup:0.13266480410279496\tand:0.11423368936286925\taccording:0.10311874253127586\tback:0.09834039683776627\thim:0.09814074486700695\treturned:0.09685287995672426\twent:0.08599041765307629\tcame:0.08584436563977506\t:0.01\n",
"the:0.3625080888377889\tof:0.173185557184882\tand:0.10957156430621358\tThe:0.08602542219983034\tor:0.07182181064180884\ta:0.05291983881874349\tby:0.05124045476713641\tfor:0.041410096189086594\twith:0.04131716705450967\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.4866678168180071\tand:0.13608033712906623\ta:0.11432570835350019\tof:0.09224310905865732\tto:0.03542557627534244\ttho:0.034945536455312266\tan:0.03257335069123128\tor:0.030738590148138425\tThe:0.026999975070744812\t:0.01\n",
"and:0.3307168606030642\twas:0.22954053914223121\tbe:0.0994380356146569\tit:0.0703155515381863\tis:0.06491907884309586\tyears:0.05647617008468129\twere:0.04877772801698258\tnot:0.047224306476161104\the:0.042591729680940604\t:0.01\n",
"be:0.3942816857059841\twas:0.1368291528725402\tand:0.10764605675863667\tis:0.08124129108862888\tbeen:0.07567007833170702\tare:0.06798338851538743\twere:0.04913791240231653\tnot:0.04143513643574782\the:0.03577529788905132\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"made:0.2401254978731967\tand:0.23881098058854125\tthat:0.10136446469937367\tor:0.0994876875182793\tsecured:0.07239553571933031\ttaken:0.06660814937181041\tfollowed:0.06006170793864495\tdone:0.05602259218445818\tup:0.05512338410636528\t:0.01\n",
"provisions:0.16627098017731173\tcopy:0.15165327534695813\tdate:0.12617568642366098\tpart:0.12388683156619237\tone:0.1044724200406653\tout:0.09585475097905363\tpeople:0.09019386903076457\tpublication:0.0773301702042243\tmembers:0.054162016231169084\t:0.01\n",
"due:0.19258438618242701\tland:0.13803741451072177\tinterest:0.13061549596131183\tmortgage:0.11302949901126587\ttitle:0.10080121197035981\tline:0.0853827590103233\tplaintiff:0.08194599414404281\tmortgage,:0.07737110387678033\tdirected:0.07023213533276713\t:0.01\n",
"on:0.3937277479870082\tthird:0.11654498703311407\tfirst:0.09533622549746273\tof:0.09183315768697833\tOn:0.08779634401861186\tand:0.07353393046104746\tin:0.053085822433814225\tsecond:0.03948727454580858\tlast:0.03865451033615441\t:0.01\n",
"time:0.19115255239548837\tday:0.1446473310067834\tmen:0.12143469029435032\tpower:0.10926922657052708\tin:0.10311356629811122\tland:0.0938322215957022\tdollars:0.08350554805366955\tgood:0.0728736272153701\tlife:0.07017123656999774\t:0.01\n",
"to:0.27138077361464585\tand:0.20365025534265405\tthe:0.19353645044599635\tof:0.1409419184006364\tor:0.04275895120818839\tI:0.04119269207540155\tin:0.03419864903445623\tnot:0.03271499505662506\tthat:0.02962531482139613\t:0.01\n",
"the:0.753847811802216\tthis:0.04932469262510402\ttho:0.039583703006975925\tof:0.0377263751961823\this:0.026936661543566373\ta:0.021862541603799385\tsaid:0.021029061628830573\tto:0.020290040101897798\ttbe:0.01939911249142771\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"of:0.2871328720228738\tto:0.13509812508881724\tin:0.1345889351636981\tfor:0.10880496046247834\tby:0.10794885581606993\twith:0.06522227839488966\tthat:0.06131757877792587\tand:0.05807836341518995\tfrom:0.03180803085805708\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"and:0.20969815076307025\tas:0.14035684149470737\treferred:0.1325951335416224\tthem:0.10328796443289084\thim:0.09786880619318226\tcome:0.08394676402729487\tcame:0.07704179058043854\tgo:0.07290265994617096\tup:0.07230188902062254\t:0.01\n",
"he:0.21505617074992905\tthey:0.19076306930045583\tI:0.14852998698221465\twe:0.10340484591838611\twho:0.08466636747155042\tand:0.08115457568004732\tit:0.06057239838210039\twhich:0.055356059894642505\tWe:0.05049652562067369\t:0.01\n",
"of:0.2914158816760015\tand:0.20935709071864628\tto:0.13948555105304486\tin:0.12255092717877494\tall:0.06202880656331047\tby:0.0430389164117333\tfact:0.04262877518156041\tis:0.04025961659878457\twith:0.03923443461814381\t:0.01\n",
"he:0.19560108603535553\tand:0.16494074160646366\tbe:0.15406070700372998\twas:0.11348634301312643\tbeen:0.0799699585331031\tHe:0.0775996598886297\twho:0.07551630799866024\tis:0.06958557506946861\thave:0.05923962085146278\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.32577977883643167\tof:0.1886998309649103\tand:0.16240343730877954\tto:0.08416537232496527\tin:0.05743937958564402\ta:0.05446373459510896\tby:0.04724223179553346\this:0.03701079136818399\t.:0.03279544322044283\t:0.01\n",
"to:0.5914291154580158\twill:0.12782531430220787\tnot:0.07710206954696444\twould:0.06596230622414258\tcan:0.035828910226847706\tmay:0.02998085250320313\tcould:0.025103513443851554\tand:0.01977521701441863\ta:0.01699270128034838\t:0.01\n",
"to:0.8404249902266965\twill:0.04090322012547832\tand:0.03880032798189565\tnot:0.03098828302989508\twould:0.014038248181516638\tcan:0.0073940145633999465\tTo:0.0072381306550734015\tcould:0.005243399221100816\tmay:0.004969386014943511\t:0.01\n",
"he:0.17520352122114105\tthey:0.15581623245415474\tI:0.14725585134236024\twho:0.1233652454414141\twe:0.09875445383232585\tit:0.07856495375161171\tthat:0.07375276855377194\tand:0.07215108159833292\tyou:0.06513589180488731\t:0.01\n",
"of:0.38945661444666524\tto:0.15557974870879882\tby:0.09424296109915825\tin:0.0879776918866556\twith:0.07472182333971626\tthat:0.05855721421962254\tand:0.057562553782048914\ton:0.03654250845117803\tfrom:0.03535888406615638\t:0.01\n",
"the:0.5076628671531154\tat:0.2631376156942473\tAt:0.05297062574332165\ttho:0.034269582625248304\tof:0.032324565888802774\tto:0.03051223624735961\tand:0.030460919276258134\tThe:0.02238020677281277\ton:0.016281380598834133\t:0.01\n",
"the:0.3185606200730121\tsaid:0.20746354978692746\tand:0.09635790265567465\tof:0.08943119074756482\tthat:0.08282911280958835\ta:0.06683460554813446\tthis:0.06373833019591273\tThe:0.044364325238530365\this:0.020420362944654952\t:0.01\n",
"the:0.3886133748559853\tof:0.23734725176177476\tin:0.09045713316452622\tby:0.06392770354113571\tand:0.06103863789650247\tto:0.05520785453831315\tThe:0.032368774740121675\ton:0.03149776379327013\tfor:0.029541505708370684\t:0.01\n",
"and:0.22813005603170383\tthe:0.1572099043860072\tis:0.11521833637416955\tan:0.10420866558073172\twas:0.09504037588459194\tare:0.08564450459716828\tbe:0.08247759847336691\tthat:0.0643390720756877\tbeen:0.05773148659657292\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"<s>:0.6358724018685091\t.:0.11351770991405119\tit.:0.06265819923511344\tthem.:0.034195842115139215\tto:0.030803755296985917\tyear.:0.03047038214941823\tlaw.:0.02762838943676099\tthereof.:0.0275168848347013\tcounty.:0.027336435149320614\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"there:0.49002874002554625\tThere:0.31454168774452046\tIt:0.07093945390569317\tit:0.06400341654389598\twhich:0.013025557333672983\the:0.010218326683424893\tThis:0.009509205015537219\t\"There:0.00905645960535745\tthat:0.008677153142351676\t:0.01\n",
"of:0.21871168165864655\tin:0.21221306757813674\twith:0.15547665967781166\tto:0.14866669827991377\tby:0.0608835910332474\ton:0.060669689929320286\tIn:0.04591980826080747\tupon:0.04402009260132402\tfor:0.043438710980792127\t:0.01\n",
"of:0.3363163447485762\tin:0.20074855007983175\tto:0.13953426691025697\tfor:0.05980448578733716\tthat:0.05481144918110836\tand:0.05361744169108339\tby:0.0509361728477356\twith:0.04992268555583991\ton:0.04430860319823067\t:0.01\n",
"be:0.20318074163432065\twas:0.1810029018914728\tand:0.15446129146824508\tbeen:0.11006060645686003\tis:0.10368971627447866\tare:0.0642469846360231\twere:0.0636301636417311\tthe:0.055049235698359754\the:0.054678358298508596\t:0.01\n",
"and:0.37298965612056917\tall:0.18168578830539667\tof:0.09041304107934502\tbut:0.07193937609793191\tsaid:0.07082564861522726\tthat:0.05544260395900495\tAll:0.050390220896047534\tso:0.048442683934902316\tthan:0.047870980991575295\t:0.01\n",
";:0.19467102593909716\tin:0.1882944510200422\tColumbia,:0.1356762866005822\tup:0.12376726685932496\tday:0.08203081616041863\tthem,:0.07201378270273509\tmortgage:0.0678435149623525\t,:0.06584387817367394\thim,:0.05985897758177329\t:0.01\n",
"State:0.1837493912007417\tday:0.17166396072628892\tout:0.1379581820977931\tstate:0.1335383898136798\tact:0.12053997022818586\tpart:0.08140787683964874\tyears:0.06367293668935635\tdate:0.04937934278048437\tpower:0.04808994962382103\t:0.01\n",
"of:0.5047298646341658\tto:0.0939503630824097\tthat:0.09237773216785701\tand:0.07906007885477175\tfor:0.04922097599700487\tby:0.04900417778569819\ton:0.04442716566583872\twith:0.0399034256240844\tin:0.03732621618816959\t:0.01\n",
"the:0.4818707114714086\ta:0.14467630884731952\tof:0.1023639077704551\tThe:0.09149120797213367\tand:0.053574694384124925\tour:0.03432458357307821\ttho:0.02908204949325103\tfor:0.028294459991510593\ttheir:0.024322076496718338\t:0.01\n",
"of:0.4436117924170628\tto:0.12200208571277424\tin:0.10895957398021343\tby:0.098217428130972\tthat:0.06501486035667858\tand:0.053085526459731684\tunder:0.034239341192597576\twith:0.03310555743088111\tfor:0.031763834319088434\t:0.01\n",
"the:0.5655262129374157\twestern:0.09940842038811896\tother:0.07646352987440189\teastern:0.05203349858427185\tsouthern:0.04614677900696574\tnorthern:0.040493824648080844\tRepublican:0.03934567956409692\tsaid:0.035304945334164936\ta:0.03527710966248317\t:0.01\n",
"the:0.23766558745970914\tand:0.15830119452383326\tof:0.1555916082923392\tbe:0.09635417021679077\twas:0.09014204172917675\tto:0.07168906960816807\tin:0.06342449275153979\tfor:0.05879016674332436\tis:0.05804166867511873\t:0.01\n",
"one:0.33708984341259335\tpart:0.14875576146602673\tout:0.10384043397499726\tportion:0.09083714555922895\tside:0.07562804233059955\tsome:0.06197550487992145\tthat:0.060324718837243906\ttion:0.057990436636891\tmember:0.05355811290249791\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"did:0.30099163724856337\tdo:0.21464832548046023\tdoes:0.13834319659448763\tcould:0.11773262485052353\twill:0.08131321667580861\twould:0.06542802622958724\tcan:0.018570546598271478\tshall:0.018161695337000128\tshould:0.017654257812795535\tmay:0.017156473172502393\t:0.01\n",
"<s>:0.5543015572476636\tit.:0.0855599459619797\tthem.:0.0691641459205704\t.:0.0605526816902083\twork.:0.0491119803376664\thim.:0.04620825618246909\tday.:0.04462324708035412\ttime.:0.041965137629659754\tyear.:0.038513047949428635\t:0.01\n",
"the:0.6106065120255652\tan:0.09921495831066092\tno:0.0647816384598855\tThe:0.06054807364651215\tany:0.056132809176028454\ta:0.03802002668929278\ttho:0.03155100179273239\tthis:0.01675165253110801\tgeneral:0.012393327368214614\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"they:0.2810377164721223\twho:0.16234399753648118\twe:0.1343092423893744\twhich:0.10227181528347871\tand:0.07508952103906759\tThey:0.07179342182607719\tthat:0.05875208018113698\tWe:0.05491581044102541\tyou:0.049486394831236194\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3230985393504565\tof:0.2611189689792494\tto:0.11678188388969993\tand:0.06931370247896015\tThe:0.06130405629325659\ta:0.05134967497265416\twith:0.040303015688509504\tby:0.03704522962619045\this:0.02968492872102326\t:0.01\n",
"it:0.24112649263459637\the:0.17660792899787944\tIt:0.1713624494321809\tI:0.08209974212840981\tHe:0.07828896755119588\twhich:0.07500438521777203\tand:0.06286527553672039\twho:0.0534546761422916\tthere:0.049190082358953446\t:0.01\n",
"be:0.15909530510203124\twas:0.15456039002432395\tof:0.1280508875998115\tand:0.09920823977898925\tbeen:0.09911349359117645\tthe:0.09133684122231008\twere:0.08889831712847575\tare:0.08597704232802905\tis:0.0837594832248526\t:0.01\n",
"be:0.3536577924192689\twas:0.20288700893981285\tbeen:0.12731408011100356\tand:0.07166106277654646\twere:0.06174156031049668\the:0.05458629672780836\tis:0.04846488799340462\tare:0.03663426852351963\tbeing:0.03305304219813883\t:0.01\n",
"the:0.7271225382254948\ta:0.0446787892945516\ttho:0.0446288785908293\tThe:0.03367914955945174\tand:0.03068297197054534\tmany:0.03025450080766469\tother:0.028965459508343838\tone:0.025137299474639267\tthree:0.024850412568479398\t:0.01\n",
"and:0.2802179654686674\ttogether:0.17581662481571086\tcovered:0.10720042995908446\thim:0.0945742991305398\tup:0.08880677792452797\tit:0.06615739106357521\tmet:0.06358405713054323\tthem:0.061624174380125664\tbut:0.05201828012722528\t:0.01\n",
"when:0.22046315366464825\tthat:0.2132528036920001\tand:0.15846027197779344\twhich:0.10413483755848227\tas:0.08450696968117727\tto:0.06978004927989717\tsaid:0.049663213331347086\twhere:0.04700141380859818\tbut:0.04273728700605634\t:0.01\n",
"the:0.7791866323306111\ta:0.05314019270136492\tThe:0.03973692441214934\ttho:0.03850477825482975\tand:0.019820306942752074\tof:0.01617258913407099\tany:0.01525679170894646\tthis:0.014610700909408773\ttbe:0.013571083605866528\t:0.01\n",
"the:0.5389713397828089\tand:0.15504481523269786\tof:0.05739311599924812\tThe:0.05252002870291747\tto:0.04646747120441671\tthat:0.04466106263293157\tas:0.03632679331256095\ttho:0.03082874368341511\twhich:0.027786629449003255\t:0.01\n",
"and:0.2924472014894412\tis:0.14183108195342425\tsay:0.09744884321476471\tof:0.0941360680754679\ton:0.08088324298178601\tsaid:0.07592377876334629\tknow:0.07378169900640846\twas:0.06701844529963384\tfor:0.06652963921572726\t:0.01\n",
"the:0.21870422219454483\tof:0.19434465562336534\tto:0.16437885166272265\tand:0.11111915556109103\tbe:0.07085050940341264\tin:0.06581643542159671\tnot:0.06249329181716279\ta:0.053355857516502694\tor:0.048937020799601445\t:0.01\n",
"it:0.3624816726957815\tIt:0.2558838421638433\twhich:0.09074817472992226\tthere:0.07169129496399416\tthat:0.07042727201866095\the:0.04330189408383566\tand:0.03832227019613308\tThere:0.030055197173347818\twhat:0.02708838197448126\t:0.01\n",
"him:0.16219458724596447\tup:0.13469441979607763\thim,:0.12795639725671046\tman:0.11914490213943107\tMr.:0.09554543109514041\tit:0.09248944109611738\tit,:0.092454440919481\there:0.08727041924367143\tday:0.07824996120740614\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"do:0.5050786691766792\tdid:0.10435494262904531\tif:0.09851146411128911\tIf:0.08641772834654689\tand:0.050004663048694754\tor:0.04056336593092642\tthat:0.0405526680235155\tis:0.0380723449550982\tdoing:0.026444153778204568\t:0.01\n",
"-:0.2963575919348941\tai:0.14980255127601624\tthe:0.10633430164894705\ta:0.09600168966430504\tI:0.07716734743497988\tin:0.07712595601953744\tto:0.06710057760228469\twas:0.06012141668133705\tbe:0.05998856773769847\t:0.01\n",
"the:0.391404271733033\tand:0.16572796127238826\tof:0.1479668946544385\tThe:0.08969244899382996\tthese:0.047204586800515924\tthat:0.04695328111326683\tin:0.038444374680263536\tto:0.0323271190940047\ta:0.03027906165825925\t:0.01\n",
"and:0.23472984740800643\tof:0.1903427725499293\tto:0.1589974673691211\tthe:0.14872653581764267\ton:0.05782225657498437\tin:0.05781024492789173\t<s>:0.05127606043924979\tthat:0.04858455105407135\tfrom:0.04171026385910328\t:0.01\n",
"the:0.6339367616985244\tand:0.06763219546216824\tof:0.06561744201282914\ta:0.061664154436827164\ttho:0.042526202876051196\tThe:0.039243067213704894\tsaid:0.02995385542456665\tin:0.02693642634703791\tor:0.022489894528290297\t:0.01\n",
"the:0.30469803285215974\tof:0.20936420050235033\tand:0.11545532617184415\tin:0.09370709678236377\tto:0.08611270070845223\ta:0.06628482417618099\tfor:0.041416958488957864\t<s>:0.038824326904658174\tat:0.03413653341303272\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.1589222029925145\tand:0.14068923423890506\tman:0.13880364826365452\tin:0.12206902272778444\tthose:0.11365787178611259\tfor:0.09466788611294705\tto:0.08946675627326844\twith:0.0705959448698724\tmen:0.061127432734941034\t:0.01\n",
"and:0.2663591603566405\tof:0.1444134399277054\tto:0.13965468279450494\tthe:0.11545288046294258\tin:0.09784587664794714\tor:0.0675387383038842\tthat:0.06504972812634334\tfor:0.04685738216435673\ton:0.0468281112156753\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.2552009114226368\tthe:0.22398065458229896\tin:0.12290218843290163\tand:0.1095157226892349\tto:0.08659732992672425\ton:0.058407479789363524\tfor:0.049014212126602036\ta:0.04223564856153196\t<s>:0.04214585246870585\t:0.01\n",
"and:0.3065972317854121\tcommittee:0.12704055035506603\tfeet:0.1167858327371274\tCommittee:0.08924999249147864\tdue:0.08450448791519061\tgoing:0.07067923249763669\twas:0.07054408007980903\twent:0.06816346100426335\tthat:0.05643513113401618\t:0.01\n",
"or:0.18222770880499084\tno:0.17396092320768664\tmuch:0.16463650989056697\tthe:0.10765305411454089\tand:0.10654845233656153\tof:0.07398417822501474\tfar:0.0649253984989447\tany:0.060252426516142\tfor:0.05581134840555167\t:0.01\n",
"few:0.27601680878170964\ttwo:0.19976297864405276\tthree:0.14181962038300874\tsix:0.10032663914803432\tseveral:0.07395481696986587\tfour:0.056959477329273235\teight:0.05170039586163699\tfive:0.04641691758158266\tone:0.043042345300835526\t:0.01\n",
"is:0.19604957096596543\tof:0.12914245737792165\tsuch:0.1250733110624584\tas:0.12004674714449445\tin:0.09873145760652562\twith:0.09141021411683374\twas:0.07735803306744893\tbe:0.07634518394643135\tto:0.07584302471192039\t:0.01\n",
"of:0.2524633287262412\tthe:0.18262941606068694\ta:0.12864711830341144\tand:0.10010072521411009\tto:0.08622327628411297\tis:0.06940695883917697\twith:0.06729537811834745\tby:0.057535604509203836\tfor:0.0456981939447091\t:0.01\n",
"his:0.3429699925667107\ther:0.17329050505310475\tmy:0.12283094628432997\tthe:0.11875265654578253\ttheir:0.08133946329345472\ta:0.05417679147554799\tyour:0.04432201471042421\tand:0.027810037733912236\tour:0.02450759233673285\t:0.01\n",
"and:0.4158091583074253\tor:0.12251412089637821\tthat:0.1094757398358427\tis:0.07826092910978441\tbut:0.06428851955459146\twas:0.05251232249595756\ton:0.050034204180557124\tit:0.04973773022720315\tbe:0.04736727539225991\t:0.01\n",
"of:0.3254016644329999\tand:0.11664741194697832\tto:0.10516159248795139\tfor:0.10326689193325522\tin:0.09756759848123527\tthat:0.07057571738351548\twith:0.06527461906207334\tby:0.057951570238348335\tfrom:0.04815293403364275\t:0.01\n",
"and:0.2788534873815524\tto:0.1435451524423543\tof:0.13461447217554892\tthe:0.12220030186827203\tthat:0.07785718684489257\tin:0.06784839561234364\twhich:0.05828167705261113\tnot:0.05732114148116861\tcon-:0.04947818514125636\t:0.01\n",
"the:0.37669429779901836\tof:0.18770582931295438\tand:0.14201726066556208\tto:0.0769923418638455\tin:0.06703030166496118\tor:0.039518566905175044\ta:0.039054626291785285\tfor:0.03127690425283264\ttho:0.029709871243865524\t:0.01\n",
"to:0.6802226282353967\tand:0.08951039069856101\tnot:0.04799549331061782\tI:0.044618543345456195\twould:0.037851210551096214\twill:0.03267868295944394\tshould:0.025614138551400236\twho:0.01955804662066232\tyou:0.011950865727365485\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.8303788864205914\ttho:0.040006981273048685\tThe:0.036690915971140554\ttheir:0.02005538590332081\ta:0.017169442072097307\ttbe:0.014284147067889807\tand:0.013245772058672828\tgreat:0.009528228698889942\this:0.008640240534348665\t:0.01\n",
"with-:0.3576129679711993\tand:0.13267940693472852\twith¬:0.11451310788620381\tsent:0.08010058554602631\tit:0.07285198521077864\twent:0.07154533041769674\tgo:0.05574666501089949\tthe:0.053595847151130555\tcame:0.05135410387133665\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"no:0.2700864321942543\tthe:0.19853772381282653\tby:0.16039169290319724\tgood:0.0757961673685513\tof:0.06954996761707752\ta:0.06819951635660661\tany:0.056873914032591164\tand:0.048646804576324934\tThe:0.04191778113857037\t:0.01\n",
"the:0.46577865719715805\tand:0.13745651550593835\tis:0.07886149565356138\twas:0.059767166062466355\tare:0.059705051445344326\tThe:0.05645577974064632\tto:0.045044948924748175\thave:0.0436087230019583\tbe:0.04332166246817865\t:0.01\n",
"he:0.19782972723212214\tit:0.1857905560709005\tIt:0.1555110060468774\tHe:0.0899837367605711\twhich:0.08846941662893922\tI:0.08422678412335814\tand:0.07214075881058787\tshe:0.059525251913075033\tthere:0.05652276241356842\t:0.01\n",
"the:0.5186750911086561\tof:0.21592129822033743\ton:0.12290680344397135\tand:0.03793710744636683\tThe:0.031073009427767938\ttho:0.024044532262930525\tin:0.020364615912967454\tthis:0.00995532666661198\twith:0.009122215510390245\t:0.01\n",
"foreclosed:0.21354426481975966\taccompanied:0.15326393402647306\tmade:0.13791131994204262\tand:0.13215418511823615\tfollowed:0.12340081914410177\tsurrounded:0.0697778146110107\tup:0.05787632017490193\tcaused:0.051337079258656944\tsecured:0.050734262904817265\t:0.01\n",
"the:0.2779471363291786\tof:0.2286666249690911\tin:0.1592713753734421\tand:0.07464725533714443\tto:0.07197828043484295\ta:0.06253410075031474\tthat:0.04112245964342715\tfor:0.040355185611202514\tas:0.0334775815513563\t:0.01\n",
"of:0.21255130711330786\tthe:0.18855796455318957\tor:0.11689123276910111\tsuch:0.10938261385700289\tfor:0.10005510177078898\tany:0.08654451987594246\tsome:0.06741622652433982\tall:0.055445696792074374\tthese:0.05315533674425288\t:0.01\n",
"to:0.5362913195565779\tand:0.1169474351399203\twill:0.08177651958107876\tshall:0.0698944608390312\tnot:0.04184734566551876\tthe:0.039331664562331684\tcan:0.03865230422195634\tshould:0.03289158952296645\tmay:0.03236736091061849\t:0.01\n",
"was:0.2350855781310248\tbeen:0.19912235429192796\tbe:0.12129168758022452\tis:0.10243906696824168\tare:0.0952548935779332\twere:0.09292155425342359\tand:0.05949458225440605\tbusily:0.04652514018697807\tthose:0.03786514275584007\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"No.:0.18752904774131685\tabout:0.1826420230384655\tat:0.13608624909472097\teast:0.09880551299081057\tof:0.09260548923020712\tnorth:0.087173247289951\twest:0.07462749328330595\tNo:0.06741939641523836\tdeg.:0.06311154091598356\t:0.01\n",
"the:0.7978121961833589\tThe:0.08229996847932564\ttho:0.03097158674400089\tat:0.023211502304614665\this:0.017780625960565902\ttbe:0.012779274265227857\tits:0.009221959717933104\ttheir:0.008127634850312693\tfor:0.007795251494660285\t:0.01\n",
"the:0.4345939693535277\ta:0.2077079989722597\tof:0.07396431049342275\tThe:0.05107754351089555\tthis:0.048472638357882854\tour:0.046496475781948536\tand:0.045307434370755365\this:0.045118427842339465\ttheir:0.03726120131696802\t:0.01\n",
"and:0.21148373426422987\tthe:0.20283711921122868\tof:0.11347218795975528\tto:0.10113765799027087\tbe:0.09302877310258988\tin:0.08551388723821418\tor:0.06652750414825546\tfor:0.061377765336550316\the:0.054621370748905385\t:0.01\n",
"of:0.27390871208589157\tand:0.1686622921926402\tthe:0.11173622058317946\tto:0.11102887071976102\ta:0.10131236507692519\twas:0.06584682784265604\tin:0.05726373843350152\tbe:0.05109859598151839\tfor:0.0491423770839265\t:0.01\n",
"the:0.530406806886936\tin:0.11555787788812326\tof:0.09092926419905485\tto:0.0582940581091528\tat:0.05191980958803875\tsaid:0.04244628640471412\ttho:0.036448919203880784\tand:0.033808277546793934\tfor:0.030188700173305445\t:0.01\n",
"time:0.19643120841936787\tand:0.14603529673092738\trecorded:0.1359162858823801\tbe:0.12097485233413172\twas:0.11220532425223974\tis:0.0873666774228172\tthat:0.06766633385710645\tas:0.06508529870262017\tthem:0.05831872239840942\t:0.01\n",
"and:0.31408622291932914\tfact:0.12771419656454785\tis:0.12284592565721217\tsay:0.08591225849363\tof:0.07680104608224382\tknow:0.07124932529434912\tbelieve:0.06795507906096825\tbut:0.06542898062789378\tso:0.0580069652998258\t:0.01\n",
"of:0.2879095906736429\tby:0.15147283143704135\tto:0.13226073003663077\tthat:0.1285469390652348\tand:0.12636804441264757\twith:0.05074601143565901\t<s>:0.04360499343411609\twhich:0.037163493311764606\tas:0.03192736619326302\t:0.01\n",
"the:0.39133228078090876\ta:0.3089425211534403\tof:0.08511801066076727\tto:0.08213279583568607\tour:0.03136837218843588\tin:0.029334657280860446\tThe:0.02178675950459839\tand:0.02066320196022612\ttho:0.01932140063507666\t:0.01\n",
"as:0.23894827511107639\tup:0.16862937408992704\tand:0.09543192386177467\tit:0.09167269704709176\tback:0.08855700708348622\tcame:0.0862054585956002\tdown:0.07791410213251228\tcome:0.07311562720082963\thim:0.0695255348777018\t:0.01\n",
"the:0.43651177249066164\ta:0.28490469594007417\tthis:0.10393312998632037\ttho:0.03493805425792531\tThe:0.029554902507449885\tto:0.027719833963038534\tand:0.025964380604612626\tevery:0.024918323362381534\tof:0.021554906887535957\t:0.01\n",
"him:0.22511585349940635\t;:0.1342553032180852\tman:0.11574635372301251\thim,:0.0950718889975085\tup:0.09324255187190897\tand:0.09098934403345373\thimself:0.0835495239653671\tin:0.08043645717718255\tman,:0.07159272351407525\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"of:0.28388216505868596\tto:0.16505190372415476\tin:0.12431079839145845\tand:0.08558620001497108\tat:0.08529163328251604\tfor:0.08248414103056485\tall:0.06005799252606226\twith:0.05692896697050335\tthat:0.04640619900108319\t:0.01\n",
"and:0.3695138880011414\twell:0.18081135988693298\tthe:0.12718260576904877\t.:0.07044273957554888\tto:0.06793724641165673\tof:0.04794802284338923\t;:0.0440330372198732\t<s>:0.04163162681888745\t1:0.04049947347352119\t:0.01\n",
"in:0.16419033081102358\tup:0.13599779621943547\tit:0.11732611193944789\tit,:0.10141110556910951\tthem:0.10004001931525011\thim:0.09847660789182434\tmade:0.09712750263710768\t;:0.09099136613031948\tout:0.08443915948648203\t:0.01\n",
"as:0.4740502871347896\tfees,:0.12222309735483836\tand:0.09376662177336263\tis:0.0932858488066509\tbe:0.059667386186007455\twas:0.05661464233136796\tnot:0.036678926942096915\tso:0.030099670542256988\tfees:0.02361351892862916\t:0.01\n",
"of:0.32217407831696265\tin:0.1487226440669363\tto:0.12406545676947277\tthat:0.07795061296081324\tfor:0.07357560063536284\twith:0.0723358575316948\tat:0.0629483831656008\tand:0.060667397680374484\tby:0.04755996887278221\t:0.01\n",
"at:0.22606604972269348\tof:0.20393953051698147\tin:0.16750080429008354\tto:0.09178212860210258\ton:0.07338281661280806\tfor:0.07328046460725855\tand:0.0653471204622718\tthat:0.045503935447936676\tfrom:0.04319714973786389\t:0.01\n",
"the:0.3686918654266191\tof:0.1730172641882166\tand:0.16637331596572238\tThe:0.0531143875579843\tsuc-:0.05248521556193018\ta:0.05166399795239646\ttwo:0.04924062293712648\tin:0.038628313961760675\ttho:0.03678501644824384\t:0.01\n",
"it:0.35505309117815476\tIt:0.2256851548211504\twhich:0.09186997500389063\the:0.07427712557156563\tand:0.06860291172058657\tthat:0.06252393229388647\tthere:0.045646756155683414\twho:0.03881624702318383\tThis:0.027524806231898347\t:0.01\n",
"the:0.3253363112578563\tof:0.25929889916037463\tand:0.11704905458808958\tto:0.08016771178091942\ta:0.06687919304521713\this:0.040516417728533656\tin:0.03814834940695741\tat:0.03195657688838135\tfor:0.03064748614367055\t:0.01\n",
"be:0.2596226205113271\twas:0.15434010767792186\tis:0.1300624894347621\tbeen:0.10469561873917829\tare:0.09265781226305189\tand:0.08356035729714047\twere:0.06538214111481985\tthe:0.05693484342066538\tof:0.04274400954113301\t:0.01\n",
"of:0.2929550783344283\tto:0.1488201936564554\tand:0.1080548694430757\tfor:0.10438946156230094\tthat:0.10318075311877795\tin:0.07533936082544347\twith:0.06577728446989585\tby:0.052810497627005994\tall:0.0386725009626164\t:0.01\n",
"the:0.26831189849374637\tand:0.24218307311729517\tof:0.13141186421844625\ta:0.10590633968145054\tto:0.08634605337936771\tin:0.057567027131554205\tis:0.033399376798453284\tthat:0.03251301969761388\tfor:0.0323613474820724\t:0.01\n",
"they:0.28243612007829927\twe:0.1487186887263843\twho:0.10303403011088445\tThey:0.08362215678593318\tWe:0.08226740771845666\tthere:0.07727015519457225\twhich:0.07506570813896148\tThere:0.07043491644608563\tyou:0.06715081680042287\t:0.01\n",
"and:0.23026394766114652\tthe:0.22502949873451872\tof:0.18445548223102784\tto:0.1112657691809816\tin:0.06742454258269553\ta:0.06369251105274935\tor:0.052059846070485805\tfor:0.028002626068899344\twas:0.027805776417495334\t:0.01\n",
"five:0.21909628820030855\tten:0.21863414517621252\ttwo:0.11819692794459515\tof:0.11582100443269\tthree:0.09025878640162587\thundred:0.06150529099113512\tfour:0.05909791239755808\tfifteen:0.05725277998253555\tfifty:0.05013686447333915\t:0.01\n",
"the:0.3772441636854395\ta:0.25367080332187786\tand:0.09350520296048519\tan:0.08765451933243622\tof:0.05038575415931538\tThe:0.040213824131550245\tto:0.03400729561523257\tthat:0.02814769232661946\tthis:0.025170744467043548\t:0.01\n",
"was:0.2355348555940092\tis:0.1925741874227677\tbe:0.11479810828656922\tbeen:0.10023027641843227\tare:0.0780858809549843\tand:0.0740107982165866\twere:0.07019953678881173\thave:0.0671059948303371\thas:0.057460361487501936\t:0.01\n",
"of:0.30835495407486396\tthe:0.18755711241169215\tand:0.18067255532502174\tin:0.09082971421610399\tto:0.06830131606103124\ton:0.046048724322924096\tby:0.03777974375063844\tfor:0.03700830234480729\twith:0.033447577492917296\t:0.01\n",
"the:0.3132138250068827\tof:0.16618287453186154\tand:0.13196983491846973\ta:0.12032244067739704\tto:0.07864126666208325\tin:0.061543815159596976\this:0.045463068481703874\tMr.:0.03701977623759598\ther:0.03564309832440879\t:0.01\n",
"and:0.35394901020896374\tnot:0.1314192300174955\tor:0.12115181060307113\tthat:0.08893379806540191\twas:0.07934807141030878\tis:0.06339120778823891\tbe:0.05762569974616765\tbut:0.04811974545681011\thad:0.04606142670354232\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"in:0.3778269605521277\t;:0.10050235910876815\tup:0.08899839657869923\tfrom:0.07676498916508702\tthem,:0.07438647247016913\tthereof,:0.07121527800757294\tIn:0.06788607972251222\thim,:0.06663710614671445\tbenefit,:0.06578235824834908\t:0.01\n",
"the:0.47907523704900445\ta:0.2300369355078501\tand:0.14901717051652857\tThe:0.04041953164250196\ttho:0.022009401421866123\tor:0.021049150861464742\tto:0.018170504520793378\tof:0.016820105534382\tgreat:0.013401962945608572\t:0.01\n",
"the:0.30531964262414774\tof:0.1663584708074934\tand:0.15422940555446654\tare:0.09148297292901536\tis:0.08999081000103584\twas:0.047199178367558686\tin:0.04708411858956033\tby:0.04475963409064169\tmore:0.043575767036080404\t:0.01\n",
"of:0.3141271630165652\ton:0.1509418136977562\tto:0.11029193621475239\tand:0.10976850999528229\tin:0.10708705654891672\tthat:0.06875967531070483\tfrom:0.053628335522149184\tfor:0.04057400691302666\tall:0.03482150278084653\t:0.01\n",
"the:0.35704948455199803\tand:0.19569839124732874\tof:0.17066785543405627\tThe:0.11172442877965488\tthat:0.04277900599371835\tthese:0.03153273173181317\ta:0.028047350814569483\tor:0.027399312475863052\tto:0.025101438970998136\t:0.01\n",
"of:0.19129775724669368\tfrom:0.14531245612009172\t<s>:0.11122146644971465\tare:0.10401040522437115\tand:0.10255068440224303\tland:0.09433412440275786\tin:0.09070215806508326\tthe:0.0805074438059268\tis:0.07006350428311786\t:0.01\n",
"and:0.19563704984544114\twould:0.1472006564258207\tlooked:0.12010668412297602\tlooks:0.1084201722336976\twas:0.09583136534572757\tnot:0.0858553515043838\tsomething:0.08340620733929721\tis:0.07856492740080614\tmuch:0.07497758578184978\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"his:0.2837949779583097\tthe:0.2732943209394245\ther:0.1260458178175923\tmy:0.10398186785435022\tHis:0.06292274342274404\tThe:0.05308319966537948\tthat:0.0348939375266518\ta:0.02801444611851095\tand:0.0239686886970369\t:0.01\n",
"the:0.3009343919348128\tof:0.21842462618987796\tand:0.10824950228244595\tto:0.08921475871317744\tbe:0.07708916738375318\ta:0.06581305511235548\ttheir:0.0473386215330636\this:0.04191368284079976\tfor:0.041022194009713915\t:0.01\n",
"and:0.18363282820901694\tthe:0.12124915320812743\tto:0.11727909452132212\twill:0.1049323296525499\twhich:0.10304301242018114\tsaid:0.10255730649379331\tof:0.10121423398487817\tthat:0.07967799157623706\tmay:0.07641404993389389\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"carry:0.2531501453566949\tthrough-:0.22987000183719142\twith-:0.1450204013714821\tcarrying:0.08293987265271313\tpointed:0.06672683102072541\tand:0.059369703054731424\tsent:0.05515216574947199\tbrought:0.049249105518804445\tcarried:0.04852177343818517\t:0.01\n",
"is:0.16119863590376318\tof:0.16107417100592183\twith:0.15751349311919602\twas:0.12446953121392977\tto:0.09623101280331829\tin:0.08712320722684029\tfor:0.07738751075248625\tand:0.06606701001796125\tby:0.0589354279565831\t:0.01\n",
"of:0.25823735451086327\tthe:0.13793974357911254\tand:0.1261945327872129\tin:0.10903247852169387\ta:0.10865155169663732\tto:0.09238292652407407\t-:0.07710713226639392\tfor:0.04331262260445606\tby:0.03714165750955609\t:0.01\n",
"and:0.30937248239004295\tthat:0.14926177207768093\tas:0.12706581059587674\twhich:0.07533535813185005\tthe:0.0745852795685487\tof:0.06797592753701469\tbut:0.06524530027187\t<s>:0.06371476663143535\twhen:0.05744330279568063\t:0.01\n",
"of:0.30263722426622586\tin:0.19523343718925015\tto:0.15106677396787002\tand:0.07248858022316827\ton:0.07111285752188146\tthat:0.058677547308578076\tfor:0.05212232161923914\tby:0.043544582764711244\tIn:0.04311667513907572\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"the:0.5866180989641897\tand:0.18152312125731854\tThe:0.049106845153953214\ttho:0.04530403656189414\tof:0.02986196268946406\tor:0.02538317270584219\tas:0.02495854770541628\ta:0.024048477921043455\tsaid:0.02319573704087833\t:0.01\n",
"to:0.2693604826883398\ta:0.1827091017239264\tthe:0.1633346407465591\tgreat:0.0875797229770177\tof:0.0687589584753132\tin:0.06595249542576563\tlarge:0.05771893090981783\tand:0.05506986418094314\tfull:0.03951580287231711\t:0.01\n",
"a:0.490926651749295\tthe:0.34525983320525366\tthis:0.044145503196020806\tthat:0.022469380892741756\tlong:0.020492346644275194\tany:0.019784112426947265\ttho:0.01760400082164172\tsame:0.01584501902121498\tThe:0.013473152042609701\t:0.01\n",
"the:0.5076194540856227\tand:0.11333271599729731\tof:0.09924667995766272\ta:0.09196649964578013\tThe:0.05052838415266518\ttho:0.03879562589039692\tin:0.03394848624286275\tor:0.03070985324876685\tfor:0.02385230077894552\t:0.01\n",
"was:0.18423666489622145\tbe:0.16095617723834332\tis:0.15767427443190182\tnot:0.12493453589060834\tare:0.08255439353387735\tand:0.07859964577594578\tbeen:0.07462157757003757\tthe:0.0710537260495114\twere:0.05536900461355302\t:0.01\n",
"the:0.3119889682662673\tan:0.12164577467455352\tbe:0.10570754945416716\tin:0.09545619385223393\this:0.08833668391397556\tand:0.08644115946573343\ta:0.06429698724827668\tso:0.06374430894346872\ttheir:0.05238237418132378\t:0.01\n",
"spite:0.1487507634548454\tout:0.1458209698160799\tand:0.13969007688794002\tthat:0.10391708813818727\tvalue:0.10208382150396517\tpart:0.09633133876814114\tone:0.08915362516772866\tsum:0.08654755829201861\tamount:0.07770475797109394\t:0.01\n",
"one:0.272561840834379\tsome:0.17567181277195737\tmany:0.10063293298888824\tall:0.09012185611021117\tout:0.08848657377219274\tpart:0.08783075355359866\tany:0.06250830842543066\tmost:0.05768093203675736\tportion:0.0545049895065848\t:0.01\n",
"last:0.2169249550981018\tthe:0.16731805390332982\tthis:0.14091367695231866\tLast:0.12588183242325343\ta:0.09745888878972123\tnext:0.08767435060063\tone:0.05863658961851867\tfiscal:0.05054154798408023\tthat:0.0446501046300462\t:0.01\n",
"the:0.37586657146071345\tcapital:0.31147294631587447\tand:0.08040952631341414\ta:0.05174211946761506\tof:0.043826300403576185\tlive:0.03645729725806847\tThe:0.03335214401134112\tcommon:0.030426732618109367\tlarge:0.026446362151287674\t:0.01\n",
"in:0.3778269605521277\t;:0.10050235910876815\tup:0.08899839657869923\tfrom:0.07676498916508702\tthem,:0.07438647247016913\tthereof,:0.07121527800757294\tIn:0.06788607972251222\thim,:0.06663710614671445\tbenefit,:0.06578235824834908\t:0.01\n",
"and:0.22495397726099428\tto:0.19116297190837458\tof:0.13046791707548624\tthe:0.11989732600975414\t-:0.07708223813193583\t.:0.06542185783182526\tI:0.06472158512319183\ta:0.06091320826928238\twas:0.055378918389155436\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.2738969495084008\tand:0.2731788525102484\ta:0.1158568283904243\tof:0.10046114931148484\tto:0.05919800389208014\tbe:0.0530614569173413\tMr.:0.03901104025097202\thave:0.037904790207097826\twas:0.0374309290119503\t:0.01\n",
"the:0.2021876756688226\tand:0.1901097567724701\tof:0.1544575092287252\ta:0.11249820163304393\tto:0.08938069938656719\tat:0.08296089606882535\t.:0.06097176323615198\tin:0.05733557119658765\twas:0.04009792680880594\t:0.01\n",
"and:0.2298087334044965\tthe:0.20014555321920866\tto:0.11509335046286724\tof:0.10320204081403925\ta:0.07282770408580694\tor:0.07077397981313034\tbe:0.06771830557229142\twas:0.06698191984524497\tis:0.06344841278291471\t:0.01\n",
"number:0.20674026502619014\tout:0.12902234368728466\tone:0.11012817108755833\tline:0.1082460891179774\tpart:0.10227889072950494\tday:0.0912098771832762\tside:0.08423897941082646\tstate:0.08391121295590433\tway:0.07422417080147754\t:0.01\n",
"a:0.19046199324022342\tthe:0.18539622399840594\tand:0.16027940426072812\tof:0.11329520313880435\twas:0.08937277446825297\tis:0.07482436136714155\tto:0.0651086742844909\tbe:0.059566512489368145\tin:0.05169485275258443\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.25094264564336305\tI:0.19507273776370826\the:0.1823399357089215\tthey:0.08092641995539074\twho:0.07798131292671955\tshe:0.06394299526586414\twe:0.04801440713003142\tHe:0.04568726536258456\tit:0.04509228024341672\t:0.01\n",
"a:0.29758910663305543\tthe:0.27423539380877837\tany:0.11748842211131856\tthat:0.08968490661350281\tthis:0.054721926404863785\tevery:0.04658436821377061\tgreater:0.04460875833254082\tlatter:0.03430552952077778\tno:0.030781588361391832\t:0.01\n",
"and:0.2713949768923401\tthe:0.21373543215715796\tof:0.1440548965961616\tin:0.11211729400784605\tto:0.06805873770499855\twas:0.06533371409314596\tis:0.04415510957036887\tare:0.039882904771017344\tthat:0.03126693420696362\t:0.01\n",
"a:0.1788008191534331\tthe:0.16212342522123074\tand:0.14921345703403505\tno:0.14632463759921158\tto:0.10093215657659221\tany:0.06914456453905053\tfor:0.06403080124931201\tit:0.0626715699877262\tis:0.05675856863940834\t:0.01\n",
"and:0.35835756148209524\tthat:0.18896856358629563\tas:0.16351816304862796\teven:0.07063759194315952\tbut:0.05724154574581541\thim:0.045365751586775964\tsee:0.041191034133070084\tor:0.034091501218351444\tasked:0.030628287255808566\t:0.01\n",
"the:0.42923051230174153\ta:0.13643063311287199\this:0.09969011411358161\ttheir:0.07673863150001713\tof:0.07269289626096521\tand:0.04996633091090987\tThe:0.04646950002009398\tits:0.04053364186984172\tin:0.03824773990997691\t:0.01\n",
"of:0.4049643247052135\tto:0.11060503942655169\tin:0.09646060222650728\tby:0.08193389683221992\tand:0.07591828595923089\tfor:0.0685794106501144\tthat:0.0627809785842213\twith:0.04702791679610854\tfrom:0.04172954481983243\t:0.01\n",
"it:0.3074136572758263\tIt:0.29710099625197284\tthere:0.10949183880412501\tThere:0.06839837551585734\twhich:0.0660745173957266\tthat:0.03904954450302191\the:0.038434759197821536\tThis:0.03540552849602384\tand:0.028630782559624448\t:0.01\n",
"of:0.2385278850815901\tthe:0.16802364293714533\tand:0.12948864632017906\tto:0.12756909556412252\tin:0.08455289842744297\ta:0.07072259306338716\tbe:0.06299644397177792\tfor:0.06094683413443188\tis:0.04717196049992302\t:0.01\n",
"and:0.2527665438324861\tto:0.1633173289190507\tof:0.13919363059599127\t<s>:0.09300377387100948\tthe:0.07827709571278046\tis:0.07503184876419434\tby:0.06825491440232587\twas:0.06792846133883576\tat:0.05222640256332604\t:0.01\n",
"of:0.303372016523161\tin:0.17415997842598993\tto:0.11127151508716443\tand:0.08140738781428626\twith:0.07981818775496397\tfor:0.07371150963101958\tas:0.0582437967282237\tby:0.05494238552236087\tthat:0.05307322251283033\t:0.01\n",
"of:0.2292985794604062\tto:0.20099238953326581\tin:0.12841367131144268\tand:0.09753694617651085\tfor:0.09504475695569375\tat:0.07579221683739075\twith:0.05971338531905755\tIn:0.059634132256843615\tfrom:0.0435739221493886\t:0.01\n",
"difference:0.43709442702575063\tand:0.08632080141843143\tlying:0.08509573921437405\tline:0.07615388939684906\tout:0.0721762481489986\tit:0.06657261635775392\trelations:0.06020009481124038\tup:0.056645815970365575\tmade:0.04974036765623634\t:0.01\n",
"it:0.2629839592968598\tthat:0.22409505580545935\tIt:0.13978079302043686\tand:0.12964888135968886\twhich:0.08436079418522563\the:0.06071545172070939\tbe:0.03161268819713904\tThere:0.029889326721756718\tfact:0.026913049692724404\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"it:0.2893018368754598\tIt:0.17266460076337398\the:0.12071517707824071\tthere:0.1182646846978756\tthat:0.06604295340439117\tthey:0.06402802400586102\tI:0.05745741066766621\tand:0.05658446664581494\twhich:0.04494084586131666\t:0.01\n",
"the:0.35855248374727516\tand:0.14085135925515183\ta:0.13358430461048806\tof:0.09825395233044769\tis:0.05505736379616085\twas:0.054073294856273955\tin:0.05119698245244946\tattorney:0.050710140758326375\tbrigadier:0.047720118193426586\t:0.01\n",
"of:0.4061718721844183\tto:0.12549127481807346\tthat:0.11646835314454528\tby:0.09842653733529988\tand:0.09807313009608123\twith:0.04982855422007516\tfor:0.033121613173140343\tas:0.03243387979934149\tall:0.02998478522902498\t:0.01\n",
"of:0.45652469464942186\tfor:0.11149055051308812\tand:0.09188456198038085\tin:0.08339808188491017\tto:0.05729539656427303\twith:0.052720875232662896\ton:0.05008785743924074\tthat:0.0444945665197203\tby:0.042103415216301954\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"years:0.5074541302442366\tmonths:0.1053687588749632\tweeks:0.09182469396117628\tdays:0.07496789778115333\tlong:0.07291645134932556\tyear:0.0562359808304419\ttime:0.04388022834911218\tYears:0.020164322739120673\tweek:0.017187535870470127\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"by:0.2702625932256857\tno:0.16521706595179875\tand:0.16000539738142444\tthe:0.108855286518447\ta:0.06403481279701542\tof:0.05815601686461051\twhich:0.056026677293645105\tThis:0.05497241265625872\tthis:0.05246973731111442\t:0.01\n",
"a:0.34598725464759816\tthe:0.32835017784554044\tof:0.09846787096716494\twith:0.0548625526729733\tthis:0.041521199089276914\tand:0.03507760480954689\tin:0.032406961593652236\tA:0.02759301902458879\tso:0.02573335934965828\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"be:0.2815856699304166\tas:0.17970098062030498\twas:0.1375417579987667\tbeen:0.11225603604947382\tis:0.09946271510123118\tand:0.07804624352871534\tare:0.04098354255837544\twere:0.03368779029308702\tnot:0.026735263919628875\t:0.01\n",
"of:0.3164943333758349\tto:0.14064947480557086\tand:0.11182421724437001\tfor:0.10690283180709179\tin:0.08298624627859265\twith:0.06849062511290124\tthat:0.0618337699529164\tby:0.05323391437174945\tis:0.047584587050972856\t:0.01\n",
"and:0.3751266396003749\tdemand:0.1534824405887765\tready:0.09374438057202743\tused:0.0766240809589987\tvote:0.05977712297699161\tas:0.0593567237041942\thim:0.057379075522309364\tcandidate:0.057311849576235085\tnot:0.057197686500092125\t:0.01\n",
"in:0.2131866054664273\tfor:0.18278527504286687\tof:0.17465590095326441\twithin:0.09270317324720147\tand:0.08112620763954176\tonly:0.07401156421911753\tIn:0.06727676343538887\twith:0.05638982722093512\tis:0.047864682775256746\t:0.01\n",
"a:0.6499432116454301\tthe:0.10871510264685756\tof:0.06627533235701245\twith:0.049802681093394696\tA:0.03689231716048835\tso:0.025192841658424014\tthis:0.02216478467050196\tthat:0.016752931379360556\tand:0.014260797388530325\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.30088969448195496\tof:0.2194409226609995\tand:0.13396918761579932\tto:0.0780083464333698\ta:0.06107820433258754\tbe:0.05879284736371369\tin:0.04812400463990863\tfor:0.04529085008514499\twas:0.04440594238652154\t:0.01\n",
"of:0.31662382482780055\tthe:0.18822284322808477\tin:0.11578788137479393\tand:0.09407676728996123\tthat:0.07488917283524958\tto:0.06204412499286629\tThe:0.052928240553401264\tfor:0.045864762222283736\tMr.:0.03956238267555868\t:0.01\n",
"the:0.7116100946600262\tin-:0.08685286124806266\tThe:0.05224940748662319\ttho:0.0386131157998009\tin¬:0.028801689500061293\tin­:0.02229095565574599\ta:0.01947275992216231\tIn-:0.015184676465394903\tex-:0.014924439262122337\t:0.01\n",
"to:0.4173151003847825\twill:0.2547242342498103\twould:0.10952027194202492\tshall:0.056864281361186986\tmay:0.04051137811005727\tmust:0.0373110877215711\tshould:0.03660378912252466\tand:0.01972409023838229\tnot:0.017425766869659957\t:0.01\n",
"is:0.24414522809560332\twell:0.20312681843225824\tbe:0.1395493322425759\twas:0.08593936342546316\tnot:0.07910460228104879\tbeen:0.06807726227693138\tare:0.0616780709051422\tand:0.06120280740099837\thave:0.04717651493997867\t:0.01\n",
"Mr.:0.25972210486668906\tand:0.15448053076431278\tthe:0.12836624133273317\t.:0.11073699725176288\tsaid:0.09386207724533635\t<s>:0.07667211846696796\tof:0.06735819456557607\tat:0.05872799546147593\tto:0.04007374004514587\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"land:0.15304949460422745\tin:0.12111478034222774\tState:0.11881649907265439\tmen:0.10660418671686478\tgood:0.1054325796832424\tstate:0.1045425859180446\tpower:0.09940588065217322\trelatives:0.090976797436171\tup:0.0900571955743944\t:0.01\n",
"the:0.1949205895467081\tof:0.17951619195767718\t<:0.12158403736133648\t.:0.1041743950980085\tand:0.09054766492829876\t-:0.08332747542693358\ti:0.07585175386324074\tin:0.0729554896248367\ta:0.06712240219295998\t:0.01\n",
"the:0.1525453172886093\tMiss:0.15181535023959775\t.:0.1309252581234413\tof:0.12921674183447757\tMrs.:0.11019795476557646\tMr.:0.10051935223258629\tand:0.08833088280152863\tJ.:0.06670013274741417\tW.:0.059749009966768456\t:0.01\n",
"is:0.28994808653762494\twas:0.23206213354567198\tare:0.18119215087571813\twere:0.07096135166674271\tdo:0.05246886553046269\tam:0.046491472131020124\tand:0.039326064271565805\tIs:0.038878808624924016\thad:0.038671066816269625\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.21588170817948793\tis:0.1380464526789505\tas:0.10877198963168332\twas:0.09665974862525148\thim:0.09582558047414677\torder:0.09464522416786302\ttime:0.08412312753317606\tbegan:0.0785555734846557\table:0.07749059522478517\t:0.01\n",
"the:0.3187533310365806\tof:0.19153223533904776\tand:0.13333775657562166\ta:0.08569118153695421\tto:0.07805362827458312\this:0.04896787193732948\tbe:0.04728575140178597\tmy:0.044784222538298106\tI:0.041594021359798936\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"is:0.21192121046816265\thave:0.1632188206820735\thad:0.14961903888459446\twas:0.1030679846162458\thas:0.09368851590127052\tthat:0.09023847836297288\tand:0.07879112786008677\tbe:0.05940862590773796\tmade:0.040046197316855395\t:0.01\n",
"at:0.3935903344261987\tto:0.1663344980319732\tof:0.15170678574696486\tAt:0.07478308716164216\tin:0.07084146861909288\tfrom:0.04002386542864681\tand:0.03127305594949951\tfor:0.031089746908411178\tthat:0.030357157727570815\t:0.01\n",
"of:0.171089613922467\tas:0.13609430585224974\tis:0.12963623192888857\tto:0.12285108782570944\tfor:0.11645824108959836\tsuch:0.0940011368774798\twith:0.08815858993514146\tand:0.06929411936139948\tin:0.062416673207066106\t:0.01\n",
"the:0.1943690168017149\tand:0.1936916332992471\ta:0.15282891514379618\tto:0.1363310514939909\tof:0.12832900531028\tbe:0.05270112347343313\tis:0.045128710796899965\tin:0.04495945495816825\tor:0.04166108872246949\t:0.01\n",
"of:0.3012138251615828\tin:0.23269281309284665\tfor:0.08817929869936628\tand:0.07230279946695806\tIn:0.07147944506226979\twith:0.06776183624095163\tthe:0.057211177300570716\tto:0.0501993131676716\tis:0.04895949180778256\t:0.01\n",
"the:0.16440861012027536\ta:0.16127619032291127\tor:0.1412468478434887\tand:0.13746000350686674\tno:0.10645588971496965\tmuch:0.09170529655471517\tof:0.07882929521295744\tis:0.0625693326195363\tbe:0.0460485341042793\t:0.01\n",
"is:0.23448938274981035\twas:0.1240191970936628\tof:0.1052452012112998\tand:0.10213969365475394\tbe:0.0994762547155441\tas:0.09164530982128835\twith:0.08974794103398158\tfor:0.08368937661289079\tto:0.05954764310676833\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"it:0.21175262889566568\the:0.19014680904145959\tIt:0.18982028099853918\tI:0.10966414085604292\tthere:0.07299980840495356\tHe:0.06663726083701502\tand:0.05018674089608051\tshe:0.049644215904146693\twhich:0.049148114166096796\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"it:0.29661847309004447\the:0.20627930897279043\tIt:0.1712772104924651\tand:0.08343957979389993\twho:0.05460018820514974\tHe:0.05423108874939179\tthat:0.04784992185095355\tshe:0.03864014143725655\twhich:0.03706408740804831\t:0.01\n",
"to:0.3457198529266166\twill:0.236498394115841\twould:0.13759521963136906\tmay:0.0673944449425821\tshall:0.05905030450265586\tshould:0.04960071642528487\tmust:0.04153944623877345\tnot:0.03540599644457872\tcan:0.01719562477229838\t:0.01\n",
"do:0.46323588921528736\tdid:0.26427765978951273\tdoes:0.10823541961328483\tcould:0.04883505285665004\twould:0.04378830986826582\twill:0.031072969200934074\tand:0.011093674980324637\tis:0.01076286019224127\tshould:0.008698164283499187\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"the:0.1944170387447947\tof:0.18106283789481067\tfor:0.14257023511907493\tto:0.1227159886053612\tin:0.10130994813828766\tand:0.09827312892330022\ta:0.06221677927033259\tbe:0.048245288620864524\tthat:0.03918875468317342\t:0.01\n",
"the:0.3795570898709451\ta:0.22481419890828064\tof:0.15380049885954458\tin:0.06865740272400324\tand:0.04397374487227579\tThe:0.042069731997762774\tto:0.027731146678269824\ton:0.027015950327205353\tfrom:0.022380235761712674\t:0.01\n",
"of:0.39297418904724957\tin:0.13782929992366688\tto:0.11921830454320462\tat:0.10822785193093158\tand:0.05650556296328545\tfrom:0.05073925759619942\tby:0.043488609856173095\tfor:0.04192281602431903\ton:0.03909410811497039\t:0.01\n",
"the:0.32344792120366006\tand:0.13574983968668922\ta:0.12045919366652863\tof:0.11144736938601565\tto:0.10819936268192318\tso:0.05485077267885555\tis:0.05113804921283257\tin:0.04560258755074353\tbe:0.039104903932751574\t:0.01\n",
"the:0.7437089280887562\tThe:0.0685312877913165\this:0.04658038881170133\tand:0.03206077296587363\ttho:0.027923307482110304\ta:0.024174128866566152\tof:0.017880473754156082\tthis:0.017025735840024533\tthat:0.012114976399495317\t:0.01\n",
"of:0.18076340228610477\tas:0.15213682828887956\tto:0.11447663521443448\twith:0.1050048062674308\tis:0.10410908234887026\tand:0.10126061091010172\tfor:0.09168166844527663\tin:0.07484525587452616\tat:0.06572171036437563\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"the:0.21979772021043278\tof:0.16695071946204496\tto:0.14809720715590155\tand:0.13835271658804138\ta:0.07816852657528536\t.:0.07116758129741788\tin:0.06415096987534247\tat:0.05701748514684187\twas:0.04629707368869168\t:0.01\n",
"and:0.19905929352333704\tof:0.16007842143198178\tto:0.11018367351491487\tby:0.1081163204203422\tthat:0.10800053415391882\tfor:0.10760330853775209\tin:0.07145542260908147\twith:0.07087000112008383\twas:0.054633024688587904\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"sum:0.3539514508613801\trate:0.17244903046905766\tone:0.08891524464089454\tamount:0.07331814878778507\tout:0.07066043298146303\tnumber:0.06500378352768377\tconsisting:0.060053059426700514\tinstead:0.05336354511059119\tperiod:0.05228530419444427\t:0.01\n",
"the:0.2781006807555158\tMr.:0.20279267951665778\tof:0.13237428459760445\tThe:0.0866001262227909\tand:0.08328248282159866\tthat:0.07698677073899704\ta:0.05770113214848798\tMrs.:0.039502858498326084\t.:0.03265898470002127\t:0.01\n",
"that:0.31477914547653374\tand:0.20075168692270082\tbut:0.1078760036867674\tas:0.09014379652450287\twhen:0.0823790812736193\twhich:0.08073958256682875\tif:0.04767380552388467\twhere:0.03845583820312528\tuntil:0.027201059822037178\t:0.01\n",
"was:0.2879556677775762\tbe:0.17983138712790245\tis:0.13610436119979683\tand:0.09571055279910118\tbeen:0.08587789636958447\twere:0.06353316198452076\tas:0.059689272219505575\tare:0.04810240003134723\tbeing:0.03319530049066535\t:0.01\n",
"the:0.25387585854953526\tand:0.16573125040311912\tof:0.13220542497073806\tbe:0.11122463475364033\tto:0.10941947712111581\ta:0.09084119012214986\tin:0.046223570180919306\tor:0.04131804815602004\tis:0.03916054574276227\t:0.01\n",
"was:0.2639165813443856\tand:0.17589605196151806\tbe:0.08906168927327233\tis:0.08545090554553754\thad:0.0841667833847072\twere:0.08053657804708438\tare:0.0735553616359519\thave:0.07134958012957573\tbeen:0.06606646867796734\t:0.01\n",
"of:0.2813746091004038\tat:0.13639222568305914\tto:0.12709615687002418\tand:0.12450448759759586\tthe:0.09934535058437093\ta:0.07499128421046083\tor:0.06444835975121568\tfor:0.04276506573094608\tabout:0.03908246047192363\t:0.01\n",
"the:0.6480063399958667\ta:0.17859622246903797\this:0.04658591765924813\tThe:0.034138788224700116\ttho:0.03403768775791558\ttbe:0.012633666193349139\tto:0.01247975361523567\tof:0.012469813471598515\ttheir:0.011051810613048293\t:0.01\n",
"<s>:0.5885864903179295\tit.:0.08586360909476495\tthem.:0.06862390668325882\tyear.:0.05018870452713055\ttime.:0.045454933124106006\tcountry.:0.044789585166938185\t.:0.03820217013899944\tday.:0.0377413512229481\twork.:0.030549249723924386\t:0.01\n",
"is:0.23445941269709378\tand:0.1422868010934491\thim:0.11495175508255034\tthem:0.09299383120537091\twas:0.08805931929744108\tnot:0.08701644906721304\table:0.0868035546561515\tright:0.07978933224507312\tnecessary:0.06363954465565715\t:0.01\n",
"John:0.18168394526814913\tJames:0.14398384853373955\tWilliam:0.13709361857647606\tRobert:0.11819949703646887\tMr.:0.11225167537874155\tJoseph:0.0793957002251252\t.:0.07681016317104357\tGeorge:0.07655070313621844\tCharles:0.06403084867403754\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"in:0.17387895183430335\twas:0.15184996446754345\tis:0.1453375648334482\tand:0.1276741716421529\tare:0.09282370279024972\tbe:0.09059452307956102\tof:0.08190653171807581\tto:0.07716093769142236\tby:0.04877365194324304\t:0.01\n",
"the:0.4733533158394222\ta:0.3204624778812788\tof:0.03897110405077191\tin:0.034710468067200524\tand:0.029375505112350524\tfor:0.028335678793844587\tto:0.027120999187905715\ttho:0.02130674820517878\tfrom:0.016363702862047063\t:0.01\n",
"it:0.2131788841045554\the:0.1867324812779885\tIt:0.14093961810063965\twhich:0.10085580692903923\tI:0.09523457785691533\tand:0.0799079407626281\twho:0.06284443033512091\tHe:0.05697400216718626\tthat:0.05333225846592657\t:0.01\n",
"of:0.3713469509544565\tto:0.1514708017555304\tthat:0.10527984797247181\tin:0.08678755123882\tand:0.06990737924797069\tby:0.06375572719248994\ton:0.055288338966648115\tfor:0.04561655489153375\tfrom:0.04054684778007883\t:0.01\n",
"and:0.30049077715083417\tmade:0.11482286436311909\tnecessary:0.10365658893741406\tcare:0.08886574584705424\timpossible:0.08257114392851662\tit:0.07922658321609924\tenough:0.07725728626891652\tpay:0.07530469160740183\tresponsible:0.06780431868064431\t:0.01\n",
"be:0.20575761142967097\twas:0.203052835922566\twere:0.13415036468639918\tto:0.09276901026561232\tbeen:0.08419347559147583\tis:0.08131857673143743\tare:0.07271235289233076\tand:0.06985698146089504\tnot:0.04618879101961235\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3095876780584938\tof:0.17316931702614413\tto:0.12268602141238893\tand:0.12089557564332551\ta:0.08723231527611129\tin:0.05333032522055631\tbe:0.04669364142145447\tis:0.03842252484347462\tfor:0.0379826010980508\t:0.01\n",
"the:0.44303970884532984\ta:0.12475415131774578\tand:0.12079460160714561\this:0.08736434075552059\tof:0.0597805605038652\tin:0.04283179577345091\ttheir:0.0395199103828092\ttho:0.037117587145389784\tThe:0.03479734366874314\t:0.01\n",
"up:0.18784817241181564\thim:0.1379893177524732\tmade:0.10264202715188682\tmen:0.10201710279215713\tthem:0.09620596658941419\ttime:0.09421834293644565\tright:0.09205460387281905\tout:0.09059386969571255\tit,:0.08643059679727584\t:0.01\n",
"did:0.22824854472680423\tdo:0.21180394996441723\tcould:0.15124236451287393\tdoes:0.1287460977895312\twould:0.09042405334368667\twill:0.0833773133867951\tis:0.0402433911869674\tshould:0.02967219308755204\twas:0.02624209200137217\t:0.01\n",
"to:0.7289476602080746\tand:0.05173906586584135\tnot:0.05089969053304894\tcould:0.04200107954441387\twill:0.030113265921993326\tcan:0.028502583309713916\twe:0.021742964512619957\tyou:0.018044002819745456\tthey:0.018009687284548576\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.39186751761003824\tof:0.1402154345825708\tand:0.13293276723922778\ta:0.11212134411455146\tto:0.051483673067958924\tThe:0.04602845774404817\tthat:0.04118570299236603\this:0.03767102389062696\tMr.:0.03649407875861161\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"forenoon:0.177542069486481\tone:0.15197902685962286\tresult:0.12154738781861386\tout:0.1146226779973252\tall:0.110600438530804\tpart:0.09375218969813726\tsome:0.07435440729973954\tmuch:0.07302022176870575\tis:0.07258158054057061\t:0.01\n",
"<s>:0.35055272800643306\tit.:0.17245354707536006\thim.:0.10316421207097055\tthem.:0.09768326432086014\t.:0.07536591952341841\ttime.:0.05456616118102407\tagain.:0.04966682549179576\ther.:0.044047524173539576\tlife.:0.04249981815659834\t:0.01\n",
"the:0.4362408874175964\ta:0.2794992272455392\tof:0.05816696377381617\tand:0.04658321448035005\tfor:0.04398427965525845\tThe:0.04013326197851156\tA:0.03154003442251084\tsome:0.027086851479778105\this:0.02676527954663925\t:0.01\n",
"of:0.3920789636602389\tto:0.12246265218435792\tin:0.09507556154409814\tthat:0.08375421034229642\tall:0.0740883726245024\tand:0.07013984877795724\tby:0.06274457939342132\tfor:0.05155700098990748\twith:0.03809881048322026\t:0.01\n",
"-:0.22895178740850217\tthe:0.15810570903202412\tand:0.154500653200847\tof:0.10049794402993374\tan:0.09927591943186385\ta:0.08423143438361476\t<s>:0.059310965532659465\t.:0.056287259010409874\tit:0.04883832797014502\t:0.01\n",
"they:0.1998335772750468\tand:0.1285911753218984\tthere:0.12814134151344017\twho:0.11000642161413271\twhich:0.09779705705316387\twe:0.09513297728693008\tThey:0.08797460803454361\tThese:0.07229003956576903\tthat:0.07023280233507535\t:0.01\n",
"the:0.23849944354052557\tand:0.22225393732008122\tof:0.1258137656496592\tan:0.11516283997567414\tto:0.09710821314146077\twas:0.05978823127682273\tbe:0.05202196546450738\twith:0.043144722721973054\tor:0.03620688090929587\t:0.01\n",
"the:0.35677575719598337\tof:0.13036197153662457\tand:0.12253106944843381\tthat:0.0937974690679659\tThe:0.07692402567578875\ta:0.07516333244108345\tMr.:0.061403311834819556\tin:0.03847598291770064\tno:0.03456707988160001\t:0.01\n",
"one:0.21303943994489263\tout:0.1698340805609801\tpart:0.1472687798153334\tsome:0.10564771493692295\taccount:0.1047360670487683\tany:0.0723917686949588\tall:0.06334962810761698\tthat:0.06091520523433158\ttion:0.052817315656195345\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"number:0.29669272769487465\tbe:0.12517712203577747\tis:0.10183551968665429\tpurpose:0.08924166105991864\tout:0.07617884509313266\tboard:0.07557987657527789\tsum:0.07514471316869262\tmatter:0.07508239419228413\tare:0.07506714049338757\t:0.01\n",
"the:0.46951559820730054\tNational:0.14253362522005367\tState:0.09627178350415681\ta:0.06691439596259798\tsaid:0.06408375382879396\tCity:0.04558028726628463\tthis:0.03677061428106033\tour:0.03465453710663649\tConstitutional:0.03367540462311565\t:0.01\n",
"and:0.2639973736684975\tfilled:0.1476367548821338\tcovered:0.12123792782849127\tconnected:0.09968806546809099\tparallel:0.0853253317564553\taccordance:0.06963119264384375\tcharged:0.06900162982282379\ttogether:0.06795793569939228\tconnection:0.06552378823027141\t:0.01\n",
"and:0.3616685045934749\tof:0.24319392886031438\tthe:0.16146466970229917\tthat:0.06357161097597037\tin:0.0389088095791375\tper:0.03394081605513318\tor:0.03076991034042939\twith:0.02991148903577912\tfor:0.02657026085746186\t:0.01\n",
"be:0.2535391233401247\twas:0.25195170480925727\tis:0.13788700943440294\tbeen:0.10468270378054285\twere:0.09165856041347394\tare:0.0778484600390016\tIs:0.02776377496681634\tand:0.027571380516636202\tbeing:0.017097282699744087\t:0.01\n",
"the:0.18465011426744676\ta:0.18444789305296888\tof:0.15976656344079637\tin:0.1563009106596757\tand:0.13941470150056956\tto:0.06750066222494108\tIn:0.03722134552557393\tan:0.03139874585798706\tas:0.02929906347004065\t:0.01\n",
"three:0.26592878638369055\tsix:0.17757687724414795\ttwo:0.1415236677341999\tfew:0.12848141552555842\tfour:0.09252020381840102\tseveral:0.05953028819685697\tfive:0.05692556486754851\ttwelve:0.034206586104898844\tmany:0.0333066101246977\t:0.01\n",
"and:0.3004961996698771\tthat:0.14202414532925914\tof:0.11047709620594294\twhen:0.10757332270424912\tdo:0.07682242988081353\tif:0.06784596822099344\tas:0.06762477298015634\tbut:0.06707589118038242\tall:0.05006017382832599\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
".:0.19686796506436904\tMr.:0.13900190832957285\tAndrew:0.12449310721331042\tA.:0.11748800124013431\tC.:0.09081505613128053\tW.:0.0883268920057891\tMrs.:0.08178915118935091\tJ.:0.07992544890062063\tH.:0.07129246992557216\t:0.01\n",
"of:0.38183744328438635\tthe:0.22804171284887406\tin:0.11912192086230038\tfor:0.0629458434293955\tand:0.049551879856948616\tto:0.047912388299104346\ta:0.04637359915789573\tat:0.028430826132319217\tby:0.025784386128775916\t:0.01\n",
"had:0.19828856196122424\twas:0.14780132749699684\tcould:0.14182412825399798\tis:0.10423307030770415\thas:0.10247839359525208\thave:0.09265149738935002\tand:0.08231350942641562\tI:0.06305816671601397\tcan:0.0573513448530452\t:0.01\n",
"the:0.5569778523078637\ta:0.13009862741107892\tand:0.10097076440496779\tThe:0.055037323972442084\tof:0.044313136199435874\ttho:0.03988537402893128\tor:0.021648158527426235\ttbe:0.020595499604320125\tin:0.020473263543533984\t:0.01\n",
"and:0.2011568557429247\tthe:0.18744675197303373\tof:0.1731616281387204\tto:0.15124138919800478\tin:0.0835458167936189\tbe:0.06455039164324629\twas:0.044267193450221176\ta:0.04325789550780316\ton:0.04137207755242694\t:0.01\n",
"that:0.42298469206553535\twhich:0.14718301048178825\tand:0.09974483873807846\tas:0.07404962512175495\twhere:0.05796028628681693\tif:0.056649758189326736\tbut:0.05011016041941644\twhen:0.043901133372010445\twhat:0.037416495325272525\t:0.01\n",
"to:0.306052453481056\tnot:0.15695263098626533\tand:0.1313145365456687\twill:0.11395551366496709\ta:0.06803394491582704\twould:0.06664847099929805\tI:0.058347620352984436\tthe:0.04842739414413814\twe:0.040267434909795355\t:0.01\n",
"in:0.21255372270773373\t;:0.15221828370520518\tup:0.13427612365365588\tit,:0.09136983292627703\tdollars:0.085827056296769\tcounty,:0.08487257082961162\ttime:0.08178439475356132\thim,:0.07374521134987991\tand:0.07335280377730623\t:0.01\n",
"and:0.15051901025693476\tis:0.1342102674340775\table:0.13316103449411526\tright:0.10640530524787285\thave:0.10291429812390783\torder:0.0921751123047806\thim:0.091084125387133\tought:0.08982613236475077\tenough:0.08970471438642748\t:0.01\n",
"a:0.4126072757668925\tof:0.1593918943147373\tthe:0.1454224752813271\tand:0.08921256006133196\tfor:0.04045885277909438\tin:0.04020985353744458\twith:0.03699132717198454\tA:0.03574155274454715\tby:0.02996420834264068\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"Board:0.6253966349003294\tnumber:0.06661963511792969\tState:0.06307621699884955\tHouse:0.048627286340522796\tstate:0.04464838166627569\tline:0.04025254271954898\tout:0.03755715057334463\tcity:0.03467818415556728\tSuperintendent:0.02914396752763201\t:0.01\n",
"the:0.35861451900589214\tMr.:0.1291559629555713\tof:0.1199072506314825\tThe:0.10475232618943306\tand:0.0967371407604443\tthat:0.07632406646832235\ta:0.046895937127093126\this:0.030747167493934736\tMrs.:0.026865629367826563\t:0.01\n",
"of:0.4283683871768992\tto:0.15261585972463945\tin:0.11901514134561461\tthat:0.06478047643099777\tand:0.05623323560834077\tby:0.04944990949706894\twith:0.04302000240029788\tall:0.04091038871475838\tfrom:0.03560659910138297\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.314336583316165\ta:0.2726793739298628\tcertain:0.14795754754305052\tsaid:0.07649599989414077\tcon-:0.053776267898498896\tthis:0.034583980500485445\tand:0.030619008393512403\tany:0.030439828838478362\tor:0.029111409685805757\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2739437179719701\tand:0.25797320415696706\tabout:0.12982229857698852\tfor:0.09111321113747667\tthan:0.07792198324932562\tto:0.058830267123224984\tat:0.0441383209121477\tor:0.030368630212663044\tnearly:0.025888366659236176\t:0.01\n",
"the:0.2691733533186461\tand:0.1671314456628559\tof:0.1635261680945928\ta:0.11909445788929619\tto:0.0974564659178209\tin:0.06455607224293188\this:0.04199573225035839\tfor:0.033902132858518765\tor:0.03316417176497908\t:0.01\n",
"sale:0.6161918246325003\tand:0.09223723399842065\ttherein:0.054314275445928144\twas:0.05173885905257804\tbe:0.040525237430644186\tis:0.0380046974946491\tas:0.03710080186037897\tmortgage:0.03007538595278554\tland:0.029811684132115004\t:0.01\n",
"judgment:0.280970244270068\tand:0.18503723871099412\tprotest:0.1297418239008451\tis:0.0743884912367691\tJudgment:0.06828390343688173\twas:0.06762247368120579\taction:0.06390719209689077\tmade:0.06378447182794507\tbe:0.05626416083840034\t:0.01\n",
"his:0.30918223504120323\tthe:0.2639150092535842\ta:0.11565137252515771\ttheir:0.06712801439440345\ther:0.06697564793885176\tmy:0.0506079008740594\twhose:0.045884694845544666\tto:0.04542291809644177\tyour:0.025232207030753746\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"and:0.2256481276392676\tof:0.18890860353704783\tto:0.13324270737345084\tthe:0.12416310709208982\tby:0.0894770536833938\twas:0.07494209792629548\tbe:0.053870228167174294\tbeen:0.0503716761989148\tGenerally:0.04937639838236551\t:0.01\n",
"of:0.3068919629017157\tand:0.20779182836583962\tthe:0.11881695540159085\tto:0.07153806575974854\tat:0.07115298827921197\tSt.:0.06833345840204055\tby:0.05320509175566739\tfrom:0.049950082540743616\tMrs.:0.04231956659344168\t:0.01\n",
"the:0.606209487515394\tThe:0.14507913085305515\tto:0.0721900785013009\ta:0.06032713674352664\tand:0.03696108703911827\ttho:0.03454481662498011\ttbe:0.013405485985015567\tof:0.011227218032996505\this:0.010055558704612801\t:0.01\n",
"to:0.5017187920253362\tnot:0.11715232221420553\tand:0.11691831497155268\twill:0.08690376629163313\twould:0.06839123300225317\tor:0.0332812433129471\tshould:0.02537688487687086\twas:0.02054256978691536\tmust:0.019714873518286\t:0.01\n",
"of:0.373174663380015\tand:0.21045537123256003\tare:0.10432725675482768\tby:0.06125492952951386\tto:0.05471490655799294\tin:0.05390526516099476\tfor:0.052320429757377496\tfrom:0.04855583425862492\tas:0.03129134336809324\t:0.01\n",
"the:0.8438120097608095\ttho:0.04713951654558138\tThe:0.025497953037870225\tof:0.02535332954874462\ttbe:0.016528624465434353\tand:0.010700477695209881\tby:0.008500262674853366\tin:0.007391737091237849\tfrom:0.005076089180258902\t:0.01\n",
"line:0.13304252341774733\tcorner:0.1323397644450505\tcity:0.1288686791413634\tplace:0.12370533211097837\tside:0.12102124135707493\tout:0.0989156159699521\thalf:0.08436203248196546\tday:0.08424330582344189\tfeet:0.08350150525242589\t:0.01\n",
"the:0.6527331634610065\tcorporate:0.201227336900061\ttho:0.03881249879634909\tThe:0.028531133453428163\ta:0.02263522899646332\ttbe:0.01572850950187536\tfirst:0.01262343560633708\tporate:0.009325891112627624\tpresent:0.008382802171851923\t:0.01\n",
"that:0.31477914547653374\tand:0.20075168692270082\tbut:0.1078760036867674\tas:0.09014379652450287\twhen:0.0823790812736193\twhich:0.08073958256682875\tif:0.04767380552388467\twhere:0.03845583820312528\tuntil:0.027201059822037178\t:0.01\n",
"the:0.4533845762390266\ta:0.2554453335763509\tThe:0.08038315102811255\tof:0.07158317794519738\tand:0.04180214546297515\tA:0.024666753594039633\ttho:0.02124922053247596\tthis:0.020766053343965828\twith:0.020719588277856145\t:0.01\n",
"that:0.24135190839283496\tand:0.15410451273371661\tas:0.13871737104403684\twhen:0.1199341365272494\twhich:0.10730907660541535\tif:0.07911102343955581\twhere:0.05899958658715756\tbut:0.05239510293128908\tuntil:0.03807728173874447\t:0.01\n",
"to:0.31469607664279836\tthe:0.2357686858966837\tat:0.11963162170842984\tof:0.08638316823615026\this:0.06793847029597351\ttheir:0.057672875295741784\tand:0.044783829607010765\tno:0.034110018344238956\twill:0.02901525397297267\t:0.01\n",
"and:0.15228446575721244\tas:0.12963434512201089\tright:0.11889519489563674\tenough:0.11491453268274741\tnecessary:0.11172257684429457\torder:0.10866018026856801\tis:0.09410031659068929\table:0.08961351323871145\tmade:0.07017487460012913\t:0.01\n",
"of:0.24647376099176355\tand:0.16051610308344264\tthe:0.1542643161049607\tto:0.09744586846091977\ta:0.09194421553040645\tby:0.08277226506146108\tfor:0.07981047211802676\twith:0.038937349881789415\tthat:0.03783564876722968\t:0.01\n",
"and:0.22813005603170383\tthe:0.1572099043860072\tis:0.11521833637416955\tan:0.10420866558073172\twas:0.09504037588459194\tare:0.08564450459716828\tbe:0.08247759847336691\tthat:0.0643390720756877\tbeen:0.05773148659657292\t:0.01\n",
"the:0.2966248119120543\tMr.:0.22132203509490453\tof:0.1226738827201116\tand:0.11302427472880075\twas:0.06388460798131877\tThe:0.05124990958864499\ta:0.045412599345222765\tMrs.:0.039317253877116806\tI:0.036490624751825344\t:0.01\n",
"of:0.4362081295567595\tto:0.1396006997908111\tin:0.10492260147219248\ton:0.06262409637591969\tby:0.060145460285544586\tand:0.05646906206619488\twith:0.04827883721864318\tthat:0.04318948555453347\tfor:0.03856162767940104\t:0.01\n",
"of:0.3466379247363035\tin:0.23435289320600072\tto:0.09906280039223751\tfor:0.07862417517360568\twith:0.057282966091483464\tthat:0.053229739864214816\tand:0.04828553335367481\tIn:0.04034480622629828\tno:0.03217916095618119\t:0.01\n",
"to:0.5057068608610376\twill:0.14879134262786964\tand:0.09626073166052919\twould:0.08371087406970143\tnot:0.07310063348675463\tshall:0.02469057661580373\tmay:0.02114764831835664\tthey:0.01860261041979595\tcan:0.017988721940151168\t:0.01\n",
"the:0.8494710451419546\tthis:0.054061486790650363\ttho:0.029746881975266815\ttbe:0.013163277663396776\tour:0.012268680581456038\ta:0.012168533980575122\tThe:0.007339824458115967\tsaid:0.007285546195119463\tcivilized:0.004494723213464743\t:0.01\n",
"of:0.5279445518278946\tto:0.13958810025127888\tin:0.11831510427478474\tby:0.054551572760212656\tfor:0.04488238560909005\tfrom:0.028521907154578165\tthe:0.026287700730367833\tthat:0.02519912056763453\tand:0.024709556824158544\t:0.01\n",
"the:0.7571983289923251\tan:0.043164322527908604\ttho:0.03902980323705729\tThe:0.036675820504627775\tof:0.03026063262338174\tin:0.02938026802559089\ttbe:0.01918058964814859\tand:0.018504833453140426\ta:0.016605400987819534\t:0.01\n",
"a:0.3986650109318786\tthe:0.29484805748877047\tand:0.07185017838027151\tof:0.05624835185154688\this:0.05237265162556784\ttheir:0.037485699103102794\tThe:0.03552266262451996\tthis:0.02353008682371343\tour:0.019477301170628472\t:0.01\n",
"the:0.7298737351707609\ta:0.13103817666399165\ttho:0.03926445573166954\tThe:0.031093246162230352\ttbe:0.01398969651125185\tA:0.013214560674863604\tin:0.010982087626257447\tof:0.010649864419501257\tgreat:0.009894177039473442\t:0.01\n",
"the:0.673972122637974\tof:0.06662917881336923\tAmerican:0.052807963981777936\tour:0.04414169671391923\ta:0.04097029083888863\this:0.0402099162673699\ttho:0.030767627944601667\tother:0.023214923125729866\tthese:0.017286279676369642\t:0.01\n",
"and:0.28561690127213024\tto:0.1869204538596067\tthe:0.09775440933890517\tof:0.09496705331980801\tcon-:0.07327995322246086\tre-:0.068197515056845\tthat:0.06699404774274713\tor:0.06380515870951274\twhich:0.05246450747798409\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"it:0.16496286309747368\tthem:0.15817733813107088\thim:0.12196233187904476\tmade:0.11354086175603571\tand:0.09207573872148668\tmen:0.08765580463047876\twork:0.08676180906919843\tfeet:0.0837176895495895\tthere:0.08114556316562173\t:0.01\n",
"one:0.20274323439291767\tpart:0.14352872140583828\tout:0.1366663191385418\tand:0.10464404844884788\tthat:0.1017632121328572\tall:0.08991737930202753\tfront:0.0747489794917184\tportion:0.07349420517888788\tsome:0.06249390050836335\t:0.01\n",
"the:0.4228074094093372\this:0.19337079482541786\tThe:0.07790230088836954\tmy:0.07180082244618152\ttheir:0.06003802751605777\ther:0.048832744186815456\tno:0.046266197664003014\tour:0.03758142664952491\tan:0.03140027641429262\t:0.01\n",
"to:0.5149770475981358\twill:0.1346783393002969\tnot:0.08265277225475992\twould:0.07186959262433686\tand:0.06726130341175825\tyou:0.032577373144446926\tthey:0.03117769070819441\tshould:0.03073681247251106\tmust:0.024069068485559734\t:0.01\n",
"to:0.3533026411359388\tand:0.20435769645637908\twill:0.08797542170357056\tnot:0.08761748557193853\twould:0.06526107597838438\tbe:0.05831903743372265\tthey:0.0526573450496042\tshall:0.04258361517728598\tthe:0.03792568149317582\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"purpose:0.17263836238312708\tnumber:0.1228425847443052\tinstead:0.12052412154531697\tmeans:0.1187011720694733\tout:0.10863070488187881\tkind:0.0908544323459457\tamount:0.08876876656261867\tlack:0.08683009047865087\tmethod:0.08020976498868339\t:0.01\n",
"hundred:0.37259086288195764\tHundred:0.09577921769042368\tdull:0.08613641902970301\tquiet:0.08421163363876455\tup:0.07986224047487027\tmen:0.07450285603635709\tnorth:0.07074947024471993\tstreet:0.06972011849306052\teast:0.056447181510143406\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"of:0.350946280754555\tthe:0.16824832745541995\this:0.11047690301974969\tin:0.08051538633303038\tat:0.07323540482088407\twith:0.055317819527909214\tfor:0.054852820825267\ther:0.049973531078308604\ttheir:0.04643352618487608\t:0.01\n",
"to:0.5564594262092896\twill:0.181105106358337\twould:0.08491278620092918\tand:0.05934731640259619\tmay:0.03270169999987023\tshall:0.024361097685627157\tshould:0.01828977190706556\tcould:0.0168712207218476\tnot:0.01595157451443759\t:0.01\n",
"rea-:0.33442157180427595\tper-:0.2864656794554994\tthe:0.09366546580968849\tper¬:0.08724677918600235\tper­:0.06102435113035134\tles-:0.056467634605810633\tand:0.03164462209804047\this:0.02001110205682825\trea¬:0.01905279385350324\t:0.01\n",
"and:0.2560685023728083\tto:0.23357380523186577\tin:0.11172173386222319\tI:0.10297610406359924\tof:0.07128657961369883\tre-:0.06683461187359818\tthe:0.055888440060669675\tnot:0.04822441188759685\the:0.0434258110339399\t:0.01\n",
"the:0.25939625861296817\tof:0.18811970260647698\tand:0.1546264796115472\ta:0.12723122339542545\tto:0.09528434055907156\tin:0.0563394592453304\twith:0.04220462690624009\tby:0.033669079079623035\tfor:0.03312882998331711\t:0.01\n",
"the:0.5612477990160273\tCounty:0.27492797023233884\tThe:0.03439820656117147\ttho:0.03320395925807097\tby:0.027525269247782445\ttbe:0.016573579025941046\tLand:0.014693694561418115\tsaid:0.014493749019215137\tof:0.012935773078034675\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.21093246844756722\tand:0.17664553319233464\tre-:0.12398711496885431\tof:0.10917603361871438\ta:0.08458664074732132\t.:0.08386517600389153\t-:0.07850800713101413\t<s>:0.0676747683278245\tthat:0.054624257562477914\t:0.01\n",
"the:0.3156120566176114\tand:0.18065527291598812\tof:0.13282175656982317\tin:0.07149998222937443\tto:0.06905483533007659\tthat:0.05972209936444573\twas:0.05565071582586487\tI:0.053471938431946635\tbe:0.051511342714868964\t:0.01\n",
"time:0.5512735629235351\tand:0.10802162705403819\tas:0.09734626873724443\thim:0.050622571677268\tis:0.0420631294233941\tthem:0.040023548870586165\trequired:0.03837644295804295\tsubject:0.03164859984702799\torder:0.03062424850886309\t:0.01\n",
"in:0.3778269605521277\t;:0.10050235910876815\tup:0.08899839657869923\tfrom:0.07676498916508702\tthem,:0.07438647247016913\tthereof,:0.07121527800757294\tIn:0.06788607972251222\thim,:0.06663710614671445\tbenefit,:0.06578235824834908\t:0.01\n",
"up:0.15814385675393813\taddition:0.13742981650675554\tand:0.12458187151217107\tcame:0.11414416982463267\tas:0.11250542114965958\tdue:0.08882136789922333\taccording:0.08683615157811309\treference:0.08455786721599691\tsent:0.08297947755950968\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"that:0.29808123898816485\tand:0.2036801855313588\tif:0.11898334989523399\twill:0.08843772171283329\tIf:0.06471157267514421\tas:0.06130420837344298\twould:0.05527083735041517\tis:0.05081402560813435\tfor:0.04871685986527244\t:0.01\n",
"of:0.39107313858686\tin:0.1495368155658938\tto:0.1287326104835196\tat:0.06955471129401407\tfor:0.06041854856632456\tand:0.056980587516619705\tfrom:0.04926015891104762\tthat:0.04263147678258198\twith:0.04181195229313868\t:0.01\n",
"Mr.:0.21850429336283472\t.:0.1619486077745127\tto:0.14328502835026785\tand:0.1279874846018103\tof:0.11015297726681227\tMrs.:0.0909387255191742\t<s>:0.05262191962828554\tA.:0.046016517784772545\tJ.:0.03854444571152998\t:0.01\n",
"four:0.36976594944656954\tthree:0.21051958439884183\ttwo:0.1519351498476077\tfive:0.059250447860028733\tone:0.05676776769404966\tten:0.04201368784067481\teight:0.04048837050975367\tsix:0.03473194582120214\thundred:0.024527096581271886\t:0.01\n",
"and:0.2821332441125666\tthe:0.16168437681830283\tof:0.14013035573178564\tin:0.13317136271882857\tare:0.07931358172929279\tby:0.0637312357823543\tfor:0.04712390685477575\tis:0.04183424282547004\tIn:0.04087769342662345\t:0.01\n",
"to:0.3167052859682995\tin:0.26403659737763757\tIn:0.15858014205877005\tof:0.06281349361520629\tthe:0.055534694600684116\ta:0.04863867627297196\tthis:0.037310970803833034\tand:0.0276905304749945\twithout:0.018689608827603028\t:0.01\n",
"of:0.4554437666114562\tto:0.10069795636277351\tby:0.09553218565930596\ton:0.08197033559374474\tand:0.06842515700700434\tthat:0.06390332750274703\tin:0.05704679809521173\tfrom:0.034066120343759033\tat:0.03291435282399739\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"the:0.297492901961497\tof:0.17741408266195474\ta:0.14645768029163828\tand:0.09158810426380848\tor:0.07279359814981\tto:0.06981668528850316\tin:0.0589873299937157\tany:0.0419198791673564\tbe:0.03352973822171621\t:0.01\n",
"the:0.3479477642378994\tpro-:0.2190555915575872\ta:0.13647956020376778\tto:0.06275611087498591\tand:0.05496357303430661\tpro¬:0.05201515809027428\tpro­:0.04224329232353119\tor:0.03900438830055528\tThe:0.03553456137709234\t:0.01\n",
"the:0.19571607199849117\twas:0.18562547671523463\tof:0.1729179535300566\tand:0.11766223945159963\tbe:0.08698499177440815\twere:0.0763786940764502\tis:0.07445070725880172\tbeen:0.04169796308941413\tare:0.03856590210554376\t:0.01\n",
"the:0.22344033004216068\tN.:0.12464233829877173\t.:0.12308675046554578\tand:0.1100377588382798\tof:0.11002309457736412\tMrs.:0.07960520596879704\tA:0.07580810143551747\tThe:0.0718523269432488\t&:0.07150409343031452\t:0.01\n",
"as:0.24837157577856656\tor:0.14232166364164286\topposed:0.11230514870743818\tcome:0.09928049147584614\tand:0.09473117357100153\tup:0.0760744201179667\tregard:0.07367539801965169\tequal:0.07250608124635792\tentitled:0.07073404744152827\t:0.01\n",
"of:0.3904933699629493\tin:0.13774712925382238\tto:0.11157713832717667\tby:0.07427097858844174\tand:0.06557246650130284\tthat:0.05953434275436971\tfrom:0.05699911153560678\tfor:0.04758280790884278\twith:0.04622265516748765\t:0.01\n",
"of:0.413682311706495\tin:0.13959619613598154\tto:0.10258487763367885\ton:0.09764219253569417\tby:0.06753384947561251\twith:0.0477858007075232\tthat:0.04468094869633224\tat:0.03906389356872839\tfrom:0.037429929539954054\t:0.01\n",
"and:0.269991508107579\tthat:0.17270994492528033\twhich:0.11971759763523034\tas:0.11705874646852621\twhen:0.11546419634289284\tbut:0.08221307522300947\tif:0.052757353479282745\twhere:0.031876146156895636\tso:0.028211431661303396\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"and:0.17948162989984093\table:0.15348165602527325\tright:0.13951798193287746\torder:0.12767823564694758\thim:0.10089354474948443\tis:0.07918378100997765\tthem:0.07030556033265083\tattempt:0.07021167942553622\tenough:0.06924593097741176\t:0.01\n",
"the:0.2494518521444965\tof:0.2297311289196306\tin:0.155594273505653\ta:0.09617596825838089\tto:0.07425589474503982\tat:0.06614879410500202\tand:0.04685903946940559\tIn:0.03806279358611104\tthat:0.03372025526628059\t:0.01\n",
"of:0.4091782578154313\tthe:0.12691364878419517\tto:0.11603066267012314\tat:0.0958530553411843\tin:0.06360794308363107\tby:0.04673527048486159\twith:0.04557327519815721\tand:0.04327723842235307\ton:0.042830648200063104\t:0.01\n",
"the:0.19836175636655523\tand:0.1674130352389857\tof:0.16070716605411697\tto:0.14121474152525526\ta:0.12385002738842145\tin:0.07400006600096737\tat:0.051765895272262975\tor:0.041681126885312204\tthat:0.031006185268122963\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"on:0.26093876614682426\tof:0.2313603853521912\tin:0.14104423578423317\tat:0.07420932258423689\tto:0.0728916043730267\tfrom:0.05853650693545567\tIn:0.05391587769799201\tOn:0.05320380330039513\tand:0.043899497825645034\t:0.01\n",
"the:0.36312321450761714\tand:0.19848804090419978\ta:0.09590696347401902\tof:0.08303218790307448\t.:0.06197545463946883\tthat:0.0579458576637141\tto:0.04654520009645579\tfor:0.04337407994495109\tThe:0.03960900086649977\t:0.01\n",
"the:0.3273937360618406\tof:0.17154315531338243\tand:0.11457586309098997\tthat:0.08825401814028669\ta:0.06769471082179541\tor:0.0676601352380678\tMr.:0.05450162227189653\tin:0.05136141633743256\tThe:0.04701534272430806\t:0.01\n",
"Mr.:0.42041178122291795\tand:0.12439774935974698\tMrs.:0.10365586138817182\tMiss:0.10330471965223749\tGeneral:0.05641023695372882\tof:0.053017892118813754\tthe:0.049512501990121666\tGen.:0.0443734059957422\tDr.:0.03491585131851913\t:0.01\n",
"of:0.28272708891957427\thalf:0.18088430977260264\tfor:0.1351171012514247\tin:0.11172813880162866\tand:0.06630852434043231\tabout:0.06320155018041856\tas:0.05796581370807036\tto:0.046802267138643\tcents:0.045265205887205354\t:0.01\n",
"the:0.6640815020341746\tsaid:0.15032282700436012\tand:0.04070303835213803\ttho:0.02905554277908202\tthis:0.028718595489096835\tThe:0.023827234155262517\ta:0.021714721335162813\tof:0.016866546057654353\ttbe:0.014709992793068482\t:0.01\n",
"that:0.2994240904225421\tand:0.21670346937709573\twhich:0.14122881951388647\tbut:0.09192054755653989\tas:0.07340828337400185\twhen:0.06241604775346419\tto:0.03709501725824319\twhere:0.03572550459949674\tif:0.03207822014472997\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"the:0.33031200187647275\tand:0.1900736899932278\ta:0.09860631045101609\tor:0.09611705809557722\tall:0.07221045937271184\ttheir:0.06859114792493393\tof:0.04807405387388773\tno:0.04339152747891723\tother:0.0426237509332553\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"and:0.2085245106292117\tthe:0.20775475375317495\tto:0.1631167200493389\tof:0.12348013976316746\twas:0.06930763543801198\tbe:0.0654074719815791\ta:0.06028015441705654\tin:0.046715517135364384\tis:0.04541309683309486\t:0.01\n",
"the:0.29382344401335764\tof:0.16863474639986378\tor:0.14307906869843853\tany:0.07308664829038722\tto:0.07136481840825394\ta:0.07087270478781335\this:0.0684275315984439\ttheir:0.0509291868009022\tand:0.04978185100253929\t:0.01\n",
".:0.21939799904058205\t-:0.15074365359964684\ta:0.1425712930366459\tand:0.08608241031913261\tof:0.0858702649333043\tthe:0.0856237798956152\tre-:0.0844568429978356\tI:0.06988962492839661\t<s>:0.0653641312488409\t:0.01\n",
"Notice:0.5483417146653617\tnotice:0.1785724627797436\tit:0.06430391730339519\tIt:0.05997434598172384\tthat:0.03357646177516563\twhich:0.03180742956076193\treference:0.02603068327338274\tthere:0.025092507296849635\the:0.02230047736361583\t:0.01\n",
"of:0.2879095906736429\tby:0.15147283143704135\tto:0.13226073003663077\tthat:0.1285469390652348\tand:0.12636804441264757\twith:0.05074601143565901\t<s>:0.04360499343411609\twhich:0.037163493311764606\tas:0.03192736619326302\t:0.01\n",
"of:0.42311165491785463\tin:0.15226727283602218\tthe:0.10403673067714697\tfor:0.0798641766805789\tand:0.07113637301907744\tto:0.062264791089007544\tby:0.03467463936702274\twith:0.03324574417286477\tIn:0.029398617240424866\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"as:0.21424108236772732\tvery:0.12929304480075077\ttoo:0.10950699210227381\tand:0.10378702007950535\tso:0.10164030478268492\tbe:0.09158552691860122\tis:0.08572781000840778\twas:0.08192184246920556\tare:0.07229637647084329\t:0.01\n",
"the:0.8863726773530108\ttho:0.04767429894468294\tThe:0.02037911013063574\ttbe:0.014848854384155502\tof:0.010704508851547225\tand:0.0029070840653533446\tby:0.0026907681676473397\ta:0.0026265092802739095\ttlie:0.0017961888226931213\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"and:0.2229148907156297\the:0.2173465459093327\tI:0.1889827412315008\tthey:0.09555765379501069\twe:0.064095852085095\tthen:0.060727387672398214\twho:0.05330136104960727\tshe:0.049791593859597416\tHe:0.03728197368182832\t:0.01\n",
"is:0.2837104470141184\tare:0.17010391271961867\tand:0.13806596681709857\twas:0.12058864672396458\tfor:0.09155125247862618\tof:0.07043596025314197\tdo:0.039684557847790805\twill:0.03858826699047182\twere:0.037270989155168986\t:0.01\n",
"the:0.6630977725234944\tand:0.0571628977665657\tof:0.053340494949252956\tState:0.05173624231562123\tThe:0.04318299134678167\tsaid:0.04270180911955529\tour:0.03180350981353012\ttho:0.02534544427015104\tStates:0.02162883789504761\t:0.01\n",
"the:0.27062093316726427\tof:0.2058837608840983\tand:0.08834827289900334\tThe:0.0853987581870392\tMr.:0.0848051425396133\tthat:0.08185133110159959\tin:0.0776092527328897\tMrs.:0.049118875532564533\twhich:0.046363672955927845\t:0.01\n",
"the:0.4261849135927864\tof:0.15636154284135537\ta:0.07975010549425045\tto:0.06767285020659022\tfor:0.06731209405701538\tthat:0.057308799177032424\tand:0.05459291374693854\tThe:0.0425036626297669\tour:0.03831311825426436\t:0.01\n",
"the:0.35704948455199803\tand:0.19569839124732874\tof:0.17066785543405627\tThe:0.11172442877965488\tthat:0.04277900599371835\tthese:0.03153273173181317\ta:0.028047350814569483\tor:0.027399312475863052\tto:0.025101438970998136\t:0.01\n",
"of:0.17047239260418287\tto:0.16537876861460302\tthe:0.15572947835529086\tin:0.1452190023516502\tand:0.09820729325760423\ta:0.07630114799765128\twith:0.06162624263462302\tor:0.06139229485450108\tfor:0.05567337932989343\t:0.01\n",
"of:0.4053865311049678\tto:0.12624437990227125\ton:0.10619576853806041\tby:0.07697634852824574\tand:0.06137219293346192\tfrom:0.056994153931635094\tin:0.056815510453674285\tat:0.05363413730814331\twith:0.04638097729954011\t:0.01\n",
"has:0.47337332187790787\thave:0.24396445589840535\thad:0.2280802895445737\tlias:0.013605151787658068\the:0.007444924991667481\tbad:0.0064355379525819125\thaa:0.006233654346086236\tand:0.005555478462077666\thaving:0.00530718513904159\t:0.01\n",
"and:0.256280810619323\tMonday:0.19986318807033446\tfeet:0.1844753014681255\trecorded:0.07217565964618222\tsection:0.07030588086249046\tsituated:0.06410258966042306\tinches:0.05222497669266498\tof:0.04629832379202029\tlots:0.04427326918843598\t:0.01\n",
"the:0.38210222575212216\ta:0.1482649475410824\tand:0.10712757671736063\tthat:0.09267661537077881\tthis:0.08774453473765213\ther:0.046474511692375285\tevery:0.04290996856170435\ttho:0.04210971125950628\tother:0.04058990836741804\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"that:0.3398159603842373\tand:0.1881959735196832\tas:0.15637377401951932\tbut:0.07943633285122904\twhich:0.07677650296033542\tif:0.049884031861740695\tof:0.03827480466933513\twhat:0.03104041761925895\tthough:0.030202202114661\t:0.01\n",
"to:0.5620004481230984\twith:0.08013123854663767\tfor:0.07744024755158753\tat:0.05346135321469371\ttold:0.0505101572182748\tupon:0.04464325546313724\tfrom:0.04326511144819767\tof:0.04205085270768128\tasked:0.03649733572669191\t:0.01\n",
"ever:0.21473286914646236\tand:0.18571556625707186\ttime:0.12543701260048165\thas:0.11045606822606821\tlong:0.08425989845684076\tyears:0.08245300943332287\thave:0.06961534010426174\tthat:0.06820121388875412\thad:0.049129021886736304\t:0.01\n",
"of:0.4844416827036046\tin:0.1711276168202845\tto:0.11759959019865408\tby:0.06892773997029943\tthat:0.038949737535369594\tIn:0.03127985305406946\tand:0.031186397480106542\twith:0.0264634570063825\tfor:0.020023925231229353\t:0.01\n",
"for:0.21572946763293935\tof:0.1647086873334924\tabout:0.1082144874951461\tthan:0.10761467681058168\tpast:0.08839099383507112\tor:0.07814504938218533\tin:0.07777810494350895\twithin:0.07683824334051342\tand:0.07258028922656161\t:0.01\n",
"the:0.27698213010539735\tof:0.19708571570609565\tand:0.11938815776786788\ta:0.10429156466448737\tto:0.06837780441376784\tbe:0.06282244182127117\tin:0.06208688448297644\tor:0.055371791298683436\tfor:0.04359350973945295\t:0.01\n",
"I:0.26194756684595244\the:0.19578491261262926\tand:0.1650700056431471\thave:0.08345005732262592\tthey:0.06622306898572673\twe:0.06143382679518445\thad:0.058745354902868765\tit:0.05167933767729943\tHe:0.045665869214565856\t:0.01\n",
"to:0.28274432988730314\tfor:0.1767387800595256\tof:0.14435266238470562\tin:0.09396653686176808\twith:0.09106441957997558\tand:0.06620969926389449\tthat:0.046155541468755494\tat:0.04607612706747982\tdo:0.042691903426592126\t:0.01\n",
"the:0.4715159925006384\tan:0.3228807061565372\tThe:0.07519168208978388\ta:0.03527421785810271\ttho:0.024223802979116454\tAn:0.01675548937065432\tto:0.016743736279270956\tand:0.014829247889461774\trapid:0.01258512487643425\t:0.01\n",
"and:0.19563704984544114\twould:0.1472006564258207\tlooked:0.12010668412297602\tlooks:0.1084201722336976\twas:0.09583136534572757\tnot:0.0858553515043838\tsomething:0.08340620733929721\tis:0.07856492740080614\tmuch:0.07497758578184978\t:0.01\n",
"and:0.18365782985453818\tmake:0.14540346099277943\tas:0.12139242256949961\tof:0.1177366224719808\tthat:0.09761351369859772\twith:0.08819968367049166\tto:0.08121226518209922\tfor:0.078619671142346\tmade:0.07616453041766723\t:0.01\n",
"to:0.35475188267547586\twill:0.20677282583166295\tmay:0.09349468960283792\tshall:0.06687436688333061\tcan:0.06568132209987293\tshould:0.06315092515475462\twould:0.05152084772785943\tmust:0.045602790914161\tcould:0.042150349110044685\t:0.01\n",
"to:0.28537402058263506\tthe:0.26951570838190114\tand:0.1680676737180628\ta:0.12546894997139402\ton:0.03836526747770644\tor:0.036572442689737424\this:0.024546443290810526\tThe:0.023001469769031602\twho:0.019088024118721025\t:0.01\n",
"with:0.18862366244226825\tof:0.17825504328253072\tthe:0.17379549097689215\tand:0.1672703499330958\tan:0.10403317103249587\ttheir:0.05092872009920956\tno:0.05056565174762099\tany:0.04156184047225774\tas:0.03496607001362896\t:0.01\n",
"a:0.37508098795280675\tthe:0.2548159558858004\tof:0.1113870012147997\tand:0.07020382748144606\tto:0.05105246575572455\tin:0.049519829531788476\twith:0.03252192873005549\ton:0.027429121142789892\tthis:0.017988882304788636\t:0.01\n",
"the:0.3294444730868092\tof:0.19305119979657964\tand:0.10294133856952423\ta:0.0951360425252502\tto:0.07035931166313884\tan:0.05288813741062207\tin:0.052382328386751116\tthat:0.048396905119165064\tfor:0.04540026344215965\t:0.01\n",
"number:0.20401360258076115\tmatter:0.16921953318496663\tkind:0.12159153724260395\tamount:0.10246977978461318\tout:0.09827459564497251\tpoint:0.0841964927085448\tfull:0.07938429662227228\tmen:0.06713182004007685\tplace:0.0637183421911886\t:0.01\n",
"and:0.27757012712006857\tthe:0.23711073663333104\tof:0.17112643682865528\tthese:0.06454188053853466\tas:0.0518345027886543\tthat:0.05141813566685484\tor:0.05087100460258788\tall:0.045371602766522814\tfor:0.04015557305479046\t:0.01\n",
"the:0.26042707968228773\tof:0.16816693716180747\ta:0.10971104982222682\tand:0.10720850786164697\tto:0.089972797476014\tbe:0.07809059662152573\tin:0.06665764368752426\twas:0.05681213292176789\this:0.052953254765199124\t:0.01\n",
"and:0.2587374015866804\twas:0.19692671957634506\tbe:0.12979820919859925\tit:0.09571296773588568\tyears:0.08138045860451715\tis:0.07216939828101449\twere:0.06052372470420053\the:0.05023103135645026\tto:0.0445200889563072\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"in:0.22154787826557465\tis:0.18645658317182198\tand:0.12672846835293877\twas:0.09836296873202743\tthat:0.0897530329468888\thave:0.07591658678658138\tIn:0.06685856169081869\tbe:0.06665950052253652\thad:0.05771641953081162\t:0.01\n",
"one:0.16002178661287808\tmen:0.1464716653221656\t;:0.12150503481675405\tmade:0.1081518571463026\tup:0.10242459224306613\tin:0.09609172761073173\t:0.08802424416917544\twife:0.08471116177584166\tand:0.08259793030308471\t:0.01\n",
"the:0.29574081439599215\tin:0.1677170002432541\tFifth:0.15038153660754242\tGrand:0.12863775983497958\t<s>:0.05871263798591353\tand:0.055086073077148544\tsaid:0.046419347439796185\tof:0.04550063373478555\tIn:0.041804196680587935\t:0.01\n",
"is:0.20531716177253911\tof:0.1548571616806375\twas:0.14749203504570196\tand:0.13792749623615277\tin:0.10120155365734503\tas:0.07174518036482276\tto:0.06110690582472406\tby:0.05557954502909937\tany:0.054772960388977374\t:0.01\n",
"the:0.5840282608228985\ta:0.2411348315826411\tThe:0.03979805756559897\tin:0.028923118904098998\ttho:0.027742206198724136\tand:0.02133483922322254\tof:0.02010177988154018\tby:0.013921558682858106\ttbe:0.013015347138417503\t:0.01\n",
"the:0.27823816724217876\this:0.19697216444384083\ta:0.12379457544540381\ttheir:0.11966029495475879\tand:0.07604857900349661\tof:0.06012383726733731\tmy:0.05212427388248831\tour:0.04463938558098636\ther:0.038398722179509265\t:0.01\n",
"the:0.3765855700859001\tof:0.16099429184099226\tand:0.13606697363344764\tThe:0.08520905700656935\tMr.:0.06526544909761484\ta:0.05125415038445086\tthat:0.051169286412974205\tto:0.03376314541728713\tor:0.029692076120763737\t:0.01\n",
"it:0.2627130347614019\tIt:0.18683186083477643\tthere:0.1670785734997366\twhich:0.10460812900044389\tand:0.09477696823490937\tthat:0.053739197382499826\the:0.04731251169771181\tThere:0.03866268451207914\tThis:0.03427704007644102\t:0.01\n",
"the:0.6746064562615433\ta:0.11716050127014115\tof:0.061168860282687684\tThe:0.04495630068381968\ttho:0.03289666641416177\tand:0.027669862798478363\ttbe:0.011331694202298178\tin:0.01030896962058726\tour:0.009900688466282621\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"is:0.27133628942808313\tare:0.18929845830860745\twas:0.15954686464908477\tif:0.09894763949472159\twere:0.06530542605742452\tand:0.06425729235041094\thave:0.05085932453792133\tcould:0.04954054995179471\tIs:0.040908155221951605\t:0.01\n",
"to:0.5098749533246433\twill:0.12311000046843325\tnot:0.0747162705489147\tand:0.07094212924501217\tthe:0.05459979785808823\ta:0.04479281985279446\tof:0.03831859154030817\twould:0.037523446583657624\tmay:0.03612199057814818\t:0.01\n",
"the:0.19302649996587176\tof:0.175132754053489\tto:0.14552812622783767\ta:0.11967572781536083\tand:0.1041884646243555\tin:0.07140198192431767\tbe:0.07089134059802207\twas:0.05831666964787346\tis:0.051838435142872064\t:0.01\n",
"he:0.25038128106125385\twho:0.12933042381747117\tand:0.12010221678749118\tit:0.11151274100688183\twhich:0.10832844163655336\tHe:0.08953608833551024\tthat:0.07216100942559076\tIt:0.061883488418092436\tshe:0.046764309511155074\t:0.01\n",
"the:0.42647218790739777\this:0.11569118230207182\tof:0.10601555110935801\tyour:0.08023855248900402\tour:0.06180195502334875\ther:0.05428480668620548\tmy:0.05267187493681224\tand:0.05016542575163854\ttheir:0.04265846379416334\t:0.01\n",
"in:0.41237826736920785\tof:0.16664395334400056\tunder:0.11801170132070696\tto:0.08981269201876006\tIn:0.0844021746476016\tfrom:0.03356085150921225\tfor:0.031355236844515244\twith:0.02812214079539752\tat:0.02571298215059788\t:0.01\n",
"of:0.2950059984494942\tthe:0.24910934640511376\tand:0.11084837180648839\tto:0.08521621980947505\ta:0.07367438329809281\tby:0.0670118333355269\tin:0.03942866892556983\tthat:0.036629042069499705\tfrom:0.03307613590073946\t:0.01\n",
"the:0.21051605632283144\tof:0.198666106677452\tin:0.13979731340048057\tand:0.12225741910324202\tto:0.10029606099068747\ton:0.07149718481239513\tat:0.05724166097713457\ta:0.04603759877458087\t<s>:0.04369059894119602\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3420920686411541\tand:0.14027091205321174\tof:0.12799225209980117\tto:0.10314955887570525\tbe:0.06845699795635807\ta:0.0659296753507775\twas:0.05333124923057499\this:0.0444304143251518\tin:0.04434687146726519\t:0.01\n",
"was:0.27521413401812644\tbe:0.22225506989714516\tbeen:0.09783295327750413\tis:0.094711727158887\twere:0.08667576141732254\tand:0.07025093773927556\tare:0.0632250576262166\thonorably:0.04300700000683325\the:0.03682735885868936\t:0.01\n",
"much:0.3312427301223908\tis:0.21827314621254804\twas:0.08016583498513759\tconsiderably:0.07741724067837902\tbe:0.07380487243139819\tthe:0.06127108215914528\tfar:0.05377712744431862\tare:0.04725000553527894\tnot:0.046797960431403586\t:0.01\n",
"on:0.294000302690893\tin:0.1510736385943501\tof:0.1351356706422334\tOn:0.10942366641377747\tIn:0.08017810936673087\tand:0.07265042742961589\tdated:0.07089177242253125\tfrom:0.04529138682513636\tto:0.03135502561473173\t:0.01\n",
"and:0.3090612114894368\tthat:0.21280743888311418\tof:0.19341524041142366\tto:0.06159895091041659\twe:0.04589557636994498\tbut:0.045051756245853905\twhen:0.04267686551945194\tfor:0.04079804000046888\tif:0.03869492016988902\t:0.01\n",
"the:0.42414914088518674\tThe:0.1078426397959127\tof:0.09374292654915442\ta:0.08088745190658585\tand:0.08069452102294386\this:0.06267673891867852\ttheir:0.06034206267144781\ttho:0.04043507792406076\tour:0.03922944032602937\t:0.01\n",
"to:0.35070235234101205\twill:0.23747072676545528\twould:0.111529944760306\tshall:0.0836684506099716\tmay:0.07149932693752681\tshould:0.05078411471133304\tnot:0.03359463335243597\tmust:0.03352299392440999\tcan:0.017227456597549293\t:0.01\n",
"neither:0.5970506909423056\tthe:0.11964472160327105\tand:0.07409907500756453\tof:0.04117112073164376\tto:0.0411400114622487\tfor:0.03553461755543553\tin:0.03201365066484276\tnot:0.026326069908779816\ta:0.023020042123908308\t:0.01\n",
"the:0.38483591874152495\tsome:0.12606232550466184\tand:0.09647342985638027\tof:0.08188757300052438\tmany:0.08186425692439489\tfor:0.07011836694264564\tor:0.06279394270040507\tany:0.050703234708853774\tsuch:0.03526095162060919\t:0.01\n",
"of:0.38766877538279426\tand:0.113895732751574\tto:0.11287285674148712\tthat:0.07934987720850419\tby:0.07461852311786088\twith:0.06122233026152955\tin:0.05826557082184631\ton:0.0570587325817255\tfrom:0.04504760113267805\t:0.01\n",
"well:0.21321257425074594\tknown:0.1833023137221186\tsoon:0.17017982311130794\tfar:0.13451377472303216\tand:0.1048509904369157\tlong:0.06163044115944836\tsuch:0.04848962176196867\tjust:0.03999506790086283\tmuch:0.03382539293359975\t:0.01\n",
"the:0.6387585361668114\ta:0.10374327746931819\tof:0.05671694461985867\ttoo:0.044375053416956266\tThe:0.040741596955850314\ttho:0.03407527495301658\tand:0.03213839139427738\this:0.020534212265711244\tour:0.018916712758200005\t:0.01\n",
"amount:0.24941117937349752\tnumber:0.15301438972531864\tout:0.12800120088361658\tyears:0.08699583027998929\twant:0.08152703824819636\tmatter:0.08113167092989973\tinstead:0.07471760388722315\tpiece:0.07189888107827584\tdeal:0.06330220559398295\t:0.01\n",
"be:0.18223382519190354\twas:0.17626183359928685\the:0.12267537265149693\tbeen:0.11226767634267792\tand:0.10188520550631042\twere:0.0865518774072052\thave:0.08177209286108704\tis:0.07120044272868117\tso:0.05515167371135101\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"I:0.28206315735804105\tnever:0.16370061350712523\the:0.13947919105810594\tthey:0.09034664331164961\tand:0.08513656601679574\tever:0.07544215383174849\twho:0.05804054572601438\twe:0.04994420007028998\tshe:0.04584692912022963\t:0.01\n",
"two:0.16227206137428724\tthree:0.1526595363182746\tfive:0.12673224802596042\tfour:0.12142830465727637\tten:0.0998657070124068\tsix:0.09152133074939973\t100:0.08465244754867828\tmany:0.07546899049322657\tfew:0.07539937382049\t:0.01\n",
"to:0.23270607175467506\tthe:0.18009018721920741\tof:0.1335585966103962\tin:0.11909869067224371\ta:0.10834479096615346\tand:0.08849435437879988\tbe:0.06108956710824853\tor:0.034322418396344985\twith:0.032295322893930736\t:0.01\n",
"<s>:0.41723476836185397\tit.:0.15583034964103065\tus.:0.09175136023775675\tthem.:0.08390740135150271\thim.:0.06585009915397204\tand:0.04782580153912832\tcountry.:0.04483359032243094\tpeople.:0.04372272321521931\tday.:0.03904390617710544\t:0.01\n",
"of:0.3111628239490016\tto:0.18669324326017134\tin:0.1026353426569268\tand:0.09647946484391023\tby:0.08774187334768345\twith:0.07420760994408479\tthat:0.05808670975542429\tfrom:0.040159062445020134\ton:0.03283386979777733\t:0.01\n",
"up:0.12822499992833525\tout:0.12803931861509074\tin:0.11893026470149644\ttime:0.11712472725713388\tmade:0.10499173983344877\thim:0.10471619092682175\tnull:0.10014493244529889\tit:0.09573792605496796\tgood:0.0920899002374063\t:0.01\n",
"and:0.41754400016008275\tbut:0.14895499642259144\tthat:0.13960424227266444\ttime:0.09215848983461562\thim:0.04863495259663283\tday:0.04575944027695024\tBut:0.04337575529251119\tago,:0.028663469063633904\tor:0.025304654080317537\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.49095167021059016\tof:0.12304760293055197\tto:0.11654236139364134\tthe:0.07134963712454148\ta:0.04809983556283737\tthat:0.04027400347247394\tor:0.04004801201030415\tbe:0.030187725660350506\tonly:0.029499151634709044\t:0.01\n",
"and:0.23532308519025485\tplace:0.23002346410790578\tpoint:0.12336462833889288\tspot:0.07950186536978003\tthat:0.07938901424987763\tplaces:0.0713642038345748\tknow:0.06251052417293607\tcases:0.058330747658047515\tcase:0.050192467077730604\t:0.01\n",
"the:0.5736796721120717\ta:0.23756203714876295\tThe:0.05062642164603032\ttho:0.04442219149316521\tand:0.023493948664983322\ttbe:0.021801144993227974\tfull:0.0135688202475129\tin:0.012550938487013287\thigh:0.012294825207232471\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"and:0.21173166624212325\tmade:0.17480313167623532\tdone:0.11051741393043954\tthat:0.1074507332765\tor:0.10238569694301665\tprescribed:0.08776082264489583\tprovided:0.07706706809336678\tgiven:0.060124900485812115\tside:0.05815856670761054\t:0.01\n",
"the:0.3903515106447411\ta:0.19108555342768663\tof:0.11231537021478051\tand:0.08706143037760196\tto:0.050084568438660625\tin:0.0464402874307009\tan:0.04304236213935468\tThe:0.04011918386242997\ton:0.029499733464043623\t:0.01\n",
"of:0.3722547133818227\tin:0.16578494741556388\tto:0.10023134498080062\tIn:0.07485752274233107\twith:0.06272485515572232\ton:0.055502021801533484\tfor:0.05544420758946242\tand:0.05287567856269287\tfrom:0.05032470837007065\t:0.01\n",
"and:0.19359496071736734\tof:0.16216602732427177\twas:0.14599594570744032\tthe:0.13082534342559746\tbe:0.09441254375091102\tto:0.07787840905373958\tis:0.06811958743802231\ta:0.06255311306124889\the:0.05445406952140128\t:0.01\n",
";:0.22552061085251554\tit,:0.14460487634878158\thim,:0.10273966044521114\tthem,:0.10271208862228533\tone:0.09578134161408765\tyears,:0.0854283008988403\t,:0.0843560863432732\tcounty,:0.0751412819957593\tcity,:0.0737157528792461\t:0.01\n",
"the:0.6685582988417357\tan:0.13746687011257303\ttho:0.04429416621209648\tregular:0.02889163456455603\tThe:0.02781401631405567\tof:0.02395184801798045\ttbe:0.021362742989350224\tand:0.02103780409723949\tor:0.016622618850412996\t:0.01\n",
"to:0.16889050230180563\tand:0.15891446437031911\tof:0.15884397483632715\tin:0.13518036410011175\twas:0.09121132328425902\tthe:0.07807638466717513\tis:0.07460290674742219\tbe:0.06880460638737085\tfor:0.05547547330520909\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"to:0.21733458826803367\tthat:0.18874334077815969\tand:0.18370476487169424\tas:0.09708921426556462\twhich:0.07447194905747515\twhen:0.07027553457536377\twill:0.0665216745623604\tfor:0.04743848592589735\tsaid:0.044420447695451185\t:0.01\n",
"the:0.42004914683065936\tof:0.13466973569051718\tand:0.11122404163358073\tthat:0.07335130050379035\tThe:0.06686076414154887\ta:0.053878657084209296\tin:0.04843421049538479\tor:0.04344491920696621\tto:0.03808722441334332\t:0.01\n",
"is:0.2886452395922832\twas:0.16933152055155848\tand:0.1048242516527738\tare:0.10235740095505151\tbut:0.06950835789498845\thas:0.06540553462125907\tit:0.06484502596599319\twill:0.06299047004929506\thad:0.062092198716797255\t:0.01\n",
"and:0.29985743702027373\tof:0.12388073070252467\tis:0.11652124367784646\tas:0.09857730746243548\twas:0.08288507234260849\t.:0.08125333353452788\tit:0.07715029876165852\tIt:0.055360151850331496\tI:0.05451442464779347\t:0.01\n",
"to:0.2531653731513819\tand:0.22503884198329357\tthe:0.10950227534860844\tof:0.10511892479063435\tthat:0.08344335426073204\twhich:0.06878923754183158\tin:0.06537953023291547\tfor:0.03988823225869029\t<s>:0.039674230431912295\t:0.01\n",
"the:0.313915987867266\ta:0.2181103303878665\tof:0.1533085525941465\tand:0.09690816742406062\tfor:0.052296790195170154\tin:0.04838221596721106\tto:0.04756169532044321\tsome:0.03005548821761738\tthat:0.029460772026218524\t:0.01\n",
"and:0.20180707919905394\tof:0.1846220641007528\tthe:0.1497674791158399\tin:0.10349143626136176\tto:0.094552040467823\tbe:0.08426926484270733\twas:0.07954233031144811\tis:0.04901818211484501\ta:0.042930123586168226\t:0.01\n",
"the:0.19812599747641915\tto:0.17682780875443374\tand:0.1745283976818602\tof:0.1738730876923509\tin:0.057840276331042946\tbe:0.057500452406213876\twas:0.05337952099437711\tis:0.049363695439807766\t<s>:0.04856076322349409\t:0.01\n",
"of:0.24594140339342627\tthe:0.21709920122146636\tand:0.16541764894652597\tto:0.10455355992856585\tat:0.07374918720858753\ta:0.072817534426546\tin:0.04743420500045954\tfor:0.03162769719351254\twith:0.031359562680909746\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.781779088554772\ta:0.05573442189318221\tThe:0.052930870746789004\ttho:0.036804159964135184\tthis:0.021993803000060017\ttbe:0.015202681150514551\tand:0.015139776893285288\tfirst:0.005691787718407796\tas:0.00472341007885387\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.2403525289014939\tof:0.22645969559035517\tand:0.14062433347517372\t.:0.09308641911153022\tMr.:0.07899466956133828\tto:0.07393343354378139\t<s>:0.052198963377138426\ta:0.044043347542283076\tMrs.:0.040306608896905724\t:0.01\n",
"and:0.19949713731266722\tthe:0.17580063027873402\tof:0.14373012927203607\tin:0.11504815491615938\ta:0.11328395372695282\tto:0.09616460820905841\tfor:0.053587117053624005\twill:0.049525338007378926\tthat:0.04336293122338934\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.5589786005738552\ta:0.14517840747896424\tThe:0.07711738442685845\ttho:0.04242261167466776\tA:0.04237580686212869\tfinance:0.03967170666355985\tsaid:0.028678088266292975\tand:0.028330075561972007\tthis:0.027247318491700867\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"is:0.21145813487244533\twas:0.1407895901859725\tbe:0.11456498167718723\tand:0.11205253818249154\tthe:0.10071271478303441\tare:0.09457469001876313\the:0.08638874473457078\tbeen:0.07928346370859866\tnot:0.05017514183693637\t:0.01\n",
"I:0.265976774824857\tand:0.17999959175238547\the:0.16284098533884714\thave:0.08635739072176594\thad:0.0730672556297821\thas:0.06147785161749921\twe:0.056814600517050354\tthey:0.05381119402300175\tHe:0.04965435557481106\t:0.01\n",
"State:0.1431657420273202\tline:0.13697457978808691\tstate:0.11983356920684744\tcity:0.11490859206810886\tcounty:0.10514992210949523\tpart:0.09819691502869078\tnumber:0.09676566561004434\tBoard:0.09130859961952446\tside:0.08369641454188183\t:0.01\n",
"and:0.29237950918743855\tto:0.17716942761303364\tof:0.099021191564675\tre-:0.09088536501253566\tthat:0.07083086860883162\twhich:0.06939463277575889\tin:0.06609805346610023\tfor:0.06347704537429572\tor:0.0607439063973308\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"far:0.20941558296391763\tsoon:0.16071009537017036\tand:0.12094600559895151\twell:0.11968376909795758\tsuch:0.09447791636161262\tjust:0.08101371542443048\tlong:0.07984417692734092\tbut:0.06943475534818809\tso:0.054473982907430774\t:0.01\n",
"the:0.27468861259991717\tof:0.12957002152104577\this:0.11488363233269473\tand:0.1144380808942923\ttheir:0.10663137223823688\ta:0.10036107487879711\tmedicinal:0.05762924594065504\tall:0.046557411964426504\tits:0.04524054762993453\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"<s>:0.5893777960662415\tit.:0.07823362506759826\tthem.:0.06004238317902234\tof:0.04767255660804492\t.:0.046819488417525125\ttime.:0.045553500348093814\tcountry.:0.04225451942142887\tday.:0.04053947401303093\tyear.:0.039506656879014196\t:0.01\n",
"and:0.2802179654686674\ttogether:0.17581662481571086\tcovered:0.10720042995908446\thim:0.0945742991305398\tup:0.08880677792452797\tit:0.06615739106357521\tmet:0.06358405713054323\tthem:0.061624174380125664\tbut:0.05201828012722528\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"of:0.3207593457517655\tin:0.12420943673607339\tfor:0.1184601617944177\tand:0.0993543718286609\tto:0.09723446190066877\twith:0.06904130828910339\ton:0.06304516004460503\tfrom:0.05357483488284594\tat:0.04432091877185933\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"<s>:0.5275203194697992\t.:0.0870076308342528\tit.:0.0752285125446556\tthem.:0.06183358753379761\tyears.:0.054198942741731725\telse.:0.051765988173478904\ttime.:0.04960719977127439\thim.:0.042964385849132904\tday.:0.03987343308187691\t:0.01\n",
"the:0.3409601240729405\ta:0.24627038682683028\tto:0.11365393335912344\tand:0.1012894868909979\tof:0.054862127698594644\tThe:0.052863618818578935\twhich:0.027795306895825458\tthat:0.026276570669369666\twill:0.0260284447677391\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"that:0.4993530190955287\tif:0.10910050894148995\tand:0.08926161520777723\twhich:0.07718693830151706\tas:0.06899361278819667\tbut:0.044936167811174814\twhy:0.03532194277146088\twhen:0.03385265699979133\tIf:0.0319935380830635\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"the:0.5719967740571924\tand:0.2151107798302404\tThe:0.049030687471514546\tof:0.038265701046171406\ttho:0.02762343269945872\twas:0.025192171794428585\ta:0.023883791039429062\tthat:0.021436085484973284\tbe:0.017460576576591648\t:0.01\n",
"was:0.22973850367603785\tis:0.21451250369088057\tbe:0.20959018385030037\tare:0.10850756756301999\twere:0.0698226014424384\tbeen:0.0520234756012167\tand:0.04235969449213797\tbeing:0.03397276226256353\tIs:0.029472707421404645\t:0.01\n",
"of:0.32704421190522187\tby:0.1747671742090024\tand:0.13127626694104452\tto:0.11603222805655285\tthat:0.112705587217592\tRev.:0.03389500806943319\tas:0.03283722631492729\t<s>:0.03261143503531949\twith:0.02883086225090626\t:0.01\n",
"he:0.2750081300089085\tI:0.19680474092342953\tthey:0.10665366405826288\tand:0.09923476877334984\tHe:0.0906160984145562\tit:0.07288134595498329\tshe:0.060407366236748056\twho:0.045198930247332125\twe:0.043194955382429505\t:0.01\n",
"the:0.21168661632910743\tand:0.17342087587379088\tof:0.14965243031096215\tas:0.14862640424456694\ta:0.08287979349307766\tto:0.07107758859510925\tbe:0.05689152027188907\tsuch:0.04860602071964438\tin:0.04715875016185233\t:0.01\n",
"out:0.19011599928133052\tone:0.18281685667051617\tpart:0.10525222557847583\ttion:0.10259298945784592\tcharge:0.09890844385835752\tmeans:0.09169262649106047\tside:0.0755247944290968\tcase:0.07227046652221618\tpurpose:0.07082559771110064\t:0.01\n",
"nothing:0.2641247484238648\tis:0.17759252308164133\t;:0.1538993015085438\tanything:0.0898394300592201\tit,:0.0731564363533971\twas:0.06134541862246875\tand:0.05812399575675912\tof:0.05727063838803619\tare:0.05464750780606891\t:0.01\n",
"the:0.5382490670051954\tour:0.11110085932550819\tAmerican:0.09744652204338247\ttheir:0.051235024241293836\tother:0.047090369152239124\tof:0.046184172665157355\ttho:0.0359970251927783\this:0.03307403174553072\tand:0.02962292862891456\t:0.01\n",
"side:0.24988841092706504\tline:0.18979180388774142\tday:0.1402129363101544\tpart:0.09273096178580932\tstate:0.08066650846910252\tcity:0.06908858026463754\tpoint:0.06443913704961361\tpiece:0.05221332450910223\tState:0.05096833679677391\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"that:0.21319640882892407\tas:0.18874185470282265\tand:0.17640606408189968\twhich:0.10893866006434622\tif:0.0858899950037364\twhen:0.07049049455998171\tbut:0.06689074547385235\twhat:0.04291144829804054\tthan:0.03653432898639642\t:0.01\n",
"man:0.22909324705476153\tand:0.17211485420616227\tthose:0.1400129706027732\tone:0.1317547130177118\tmen:0.09557518639438325\tall:0.06988990929367911\twoman:0.05926378227846983\tperson:0.053595275082180836\tpeople:0.03870006206987816\t:0.01\n",
"and:0.20712434091487836\tit:0.1517657548663703\tI:0.12544659825754856\tyou:0.0921500519299653\twhich:0.08798426245827785\tthey:0.08689594089208463\tNor:0.08318827171073946\the:0.08078967348415995\tIt:0.07465510548597556\t:0.01\n",
"to:0.1981100140887733\tthe:0.1917498005702528\tof:0.18196876204385795\tand:0.1400839212483929\tin:0.08095252028500259\ta:0.05407677875977001\tat:0.05300818874171369\t.:0.047046769571827685\tby:0.043003244690409156\t:0.01\n",
"and:0.17217296442974256\tright:0.1476892476862497\table:0.12408881739962058\tas:0.1184114099028669\tnecessary:0.0997008032848473\ttime:0.08809173297053272\tenough:0.08237680448751424\torder:0.08002672718713122\tready:0.0774414926514947\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.6602497997005816\tand:0.09771087536353418\tThe:0.0860902229831087\ttho:0.03911766351389872\ta:0.038648862070298336\tor:0.02183317875798446\this:0.01905296506496398\tof:0.014076140519219642\tin:0.013220292026410424\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.3017976847556643\tin:0.11827152511757535\tfor:0.1026590757864455\tand:0.09778241885369282\tto:0.0844622155893463\twith:0.08376289255817664\tthat:0.07850110969072861\tby:0.07644052142999182\tfrom:0.04632255621837867\t:0.01\n",
"was:0.208694226270834\tare:0.19003105927775127\tis:0.1894202349513929\tbe:0.13968070220583229\twere:0.09936706469034913\tbeen:0.060934428659644595\tam:0.035631590617435996\tnot:0.03350105277019895\tand:0.032739640556560944\t:0.01\n",
"a:0.41437039782774093\tthe:0.19777328720679438\tno:0.14536407384945213\ttheir:0.05412695128223438\tand:0.04577257313873591\this:0.036351392523797044\tof:0.03365727034258975\tmore:0.0322128913965857\tnot:0.030371162432069814\t:0.01\n",
"the:0.32851495171910694\tthat:0.1418097574812403\tof:0.1347307609100855\ta:0.13433222842408019\tthis:0.08089682847683982\tThe:0.056843617241991655\tor:0.05346222048284162\tand:0.03724815673959031\ttho:0.02216147852422375\t:0.01\n",
"about:0.2893550286259253\tof:0.13518314674469323\tor:0.1100825528522485\tand:0.10697138061450713\tfor:0.10601294287719061\tthan:0.08608439483918263\tto:0.0602007770543426\twithin:0.05075266452470021\tover:0.045357111867209775\t:0.01\n",
"A:0.1568888405263025\tW:0.14454810781978927\tM:0.1130005533072934\tC:0.11010344816183551\tJ:0.10601113697227788\tS:0.10306243674840182\t.:0.09361249017966068\tB:0.08233247523921025\tH:0.08044051104522863\t:0.01\n",
"the:0.24586786277439154\tand:0.16997323033442863\tof:0.1608974002526721\tto:0.1249237815759012\tbe:0.07553177693575928\ta:0.06150987802157047\twas:0.06041598053696065\tat:0.046389189906892676\tin:0.044490899661423375\t:0.01\n",
"of:0.3571301499200307\twith:0.1337201650159573\tand:0.10918537500996316\tfor:0.10597161933950512\tto:0.06685714073027185\tin:0.06354227282399445\tby:0.057000162127964035\ton:0.05001016469294422\tthat:0.04658295033936919\t:0.01\n",
"grew:0.42466170275582893\ta:0.101033639249382\twas:0.09834342497189028\tis:0.0759092445685825\tmuch:0.07433010653195972\tbe:0.07244228597645302\tare:0.05095406828698133\tthe:0.04834507149198147\tand:0.04398045616694078\t:0.01\n",
"of:0.35614452334968255\tto:0.10494361917790322\ton:0.09583022068356772\tand:0.09566781240867689\twith:0.08619399046106564\tfor:0.06946003174687988\tfrom:0.06489663680553084\tthat:0.060863070814479524\tin:0.056000094552213636\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"is:0.3061105182929389\twas:0.21410543055048298\tand:0.11335695061344603\tare:0.08448142540369903\tof:0.07592573105573355\tto:0.05607349556602159\twere:0.048265267780338565\tbe:0.047143939552614866\tIs:0.04453724118472447\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.39069519806903263\tin:0.2996688582352778\tto:0.07226490385681052\tIn:0.06125235605787519\tfor:0.060811880032801115\tby:0.03640068529315855\tthat:0.028829920282709656\tfrom:0.024633936286291767\tand:0.01544226188604281\t:0.01\n",
"all:0.17880066887725174\tat:0.1702973496210288\tseveral:0.12280087305477115\tmany:0.11946122932596034\tthree:0.1044478919857645\tthe:0.09904715969780635\tof:0.09248015306347689\tthose:0.05479721476830107\tsome-:0.04786745960563926\t:0.01\n",
"Why?:0.44690123015750244\t<s>:0.2173064539892174\tand:0.07327256889239703\tit.:0.0721407505468387\tthem.:0.05035601676923221\tin:0.03683789413950443\tcountry.:0.035359539954753556\t?:0.03154510887758252\tcounty.:0.02628043667297183\t:0.01\n",
"of:0.5791259981268895\tand:0.12106631403449145\tthe:0.06896023081069626\tat:0.044310769180265566\tby:0.0410892444432199\tor:0.037376072416638435\tin:0.03430591725428938\tas:0.032994691153471305\ton:0.030770762580038132\t:0.01\n",
"they:0.17449396131997646\twe:0.16222194661846298\tto:0.1264121603374748\tI:0.1160822394074555\tand:0.10647564964237\tnot:0.10254785010275015\twho:0.0762443291924776\tWe:0.07238028843868666\twhich:0.05314157494034586\t:0.01\n",
"No:0.1755942866175599\tno:0.1618520471059346\tthat:0.15589036437378997\tand:0.1046565225241862\tthe:0.09130775169212542\tbut:0.09036689717888578\tany:0.08451122493977663\twhen:0.06418538459246441\tof:0.061635520975277025\t:0.01\n",
"the:0.44585556417170724\ta:0.09924792184701522\tno:0.0815249516114467\tto:0.07681788826985046\tby:0.07168073364984959\tI:0.07100631202958478\tand:0.06074044358104865\tonly:0.04564071728656719\tor:0.03748546755293011\t:0.01\n",
"of:0.407674785398844\tto:0.1277612093619651\tin:0.0981100127674003\tand:0.07987385520716705\tfor:0.06192213266467773\tby:0.059814335151744225\ton:0.0571953785601922\tthat:0.05542901686480434\tIn:0.04221927402320507\t:0.01\n",
"New:0.9414301808483745\tNow:0.013564779406504161\tNew-:0.01225231992907735\tXew:0.007096852997938153\tof:0.005377544756537364\tthe:0.003630959351494916\tto:0.002652274580170774\tMew:0.0022369284924274794\tand:0.0017581596374751228\t:0.01\n",
"to:0.3361048759048168\tand:0.3103962144701659\tof:0.06351187559813497\tnot:0.05852112941528367\twhich:0.04782067583179054\thave:0.04652532342421582\tor:0.045358088509144814\tby:0.04297932698173254\twho:0.03878248986471499\t:0.01\n",
"all:0.1741668529532661\tof:0.17163441761817322\tand:0.1504608848512784\twas:0.122946265633498\tis:0.08285170463002854\tit:0.08141337541723163\tfor:0.07816749861825331\twent:0.06640024306940502\tin:0.06195875720886578\t:0.01\n",
"in:0.18017038786318096\t;:0.14721130113498004\tup:0.1403677624200922\tcity:0.10133087312953658\tcounty,:0.09747479450463722\thim:0.08998984295277695\tyears,:0.08003037906180463\tit,:0.07941931748034116\tstreet:0.07400534145265011\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.2850776780408516\tthe:0.19073040138173195\tto:0.12693588429601232\twill:0.08429340490171171\ta:0.07268652572677899\tI:0.0613709024541948\tof:0.05933450778658342\tthat:0.056167770840137646\twould:0.05340292457199745\t:0.01\n",
"that:0.29794499113076905\tand:0.16665881167335386\tas:0.1146602907378768\tof:0.09685035886677898\tif:0.08833284843011487\twhich:0.08164492007379742\tbut:0.06722065542897972\tfor:0.03911469864526598\tsaid:0.037572425013063314\t:0.01\n",
"and:0.3659223768354555\tis:0.2452003207423869\twas:0.16340001188790385\tit:0.048551028173972326\tbut:0.04137162778484515\tIs:0.03500433088096241\tthat:0.03470785099949758\tare:0.03157686016960087\twhich:0.02426559252537536\t:0.01\n",
"of:0.33444016196403653\tto:0.14563728057699013\tand:0.13809989539837722\tin:0.07840660347789777\tfor:0.07472370043388966\tby:0.06366209045803319\twith:0.056302101477781266\tthat:0.05062288560888222\ton:0.04810528060411213\t:0.01\n",
"the:0.43202453046901196\this:0.11407931074528022\tof:0.10598048187621063\ttheir:0.09644700027772184\tand:0.06432777611008472\tmy:0.06246835710321483\tour:0.039207308835851856\tsuch:0.038529317029282625\tin:0.0369359175533412\t:0.01\n",
"his:0.3056605795725601\ttheir:0.2717966974701264\tour:0.1378061150114809\ther:0.09589080207576943\tmy:0.07916275143710298\tits:0.04138604324203807\tyour:0.03871930989684404\tbis:0.013283443719937555\tMy:0.006294257574140576\t:0.01\n",
"to:0.3308513032120672\tof:0.22672332028100206\tin:0.17903389050747753\tand:0.06785858438183792\tthe:0.05412380050904061\tfor:0.04367028749945222\ta:0.03623644726307907\ton:0.026102109695692804\tat:0.02540025665035066\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"in:0.3629926306800416\tof:0.20546621276947577\tIn:0.1150378547639052\tand:0.06820208883279172\tfor:0.05881981895850225\tthat:0.05725867521172175\tto:0.05511823389329262\tall:0.03627423332103205\tis:0.030830251569237018\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.2729900233150602\tdo:0.1169882283928186\ttogether:0.09364106164789421\tcomplied:0.08988924043100395\thim:0.08972469828285962\tconnected:0.08643801416650333\tthem:0.08537567791063051\tup:0.08018438527702168\tit:0.07476867057620794\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"I:0.1718894561016883\tbe:0.14621417995949104\twas:0.1448970127774342\the:0.14417180697009727\tand:0.09661174229059546\thad:0.0861645746543499\tit:0.07488701147508008\thave:0.07189668386481651\tbeen:0.053267531906447216\t:0.01\n",
"make:0.2077158048283597\tand:0.17383416606070737\tis:0.1223273367397834\tthat:0.1023242148356107\twas:0.07736298903183199\thave:0.07691562473877384\tbut:0.07676799289157425\tmade:0.07649902840339892\thad:0.07625284246995981\t:0.01\n",
"and:0.19612467816385057\tthat:0.18211885681590118\twill:0.12007173274187147\tit:0.11104534674032382\tfar:0.0954873624517796\twould:0.09055338959536638\thad:0.06836215436957443\tis:0.06484874162546216\tbut:0.061387737495870405\t:0.01\n",
"to:0.30549348341880367\tfor:0.18659425496228882\ttold:0.10917621807585712\tasked:0.09877041501220078\tadvised:0.0697321742528112\tfrom:0.0653130836936508\tpermit:0.056644608947737575\twith:0.05476825348313121\tallow:0.04350750815351882\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"and:0.2355082477240749\table:0.13597726447561795\tenough:0.1064532330168034\tis:0.10518376711412579\torder:0.09950000355490586\thave:0.0829369143100692\tnecessary:0.08107078998582315\tas:0.07524527000879941\twas:0.0681245098097804\t:0.01\n",
"a:0.4577493224988584\tthe:0.2602622880453481\tand:0.06277648742583433\this:0.05799486690433879\tto:0.03981548554474983\tof:0.03363829751629588\tThe:0.028391999735663826\tA:0.025288070927480095\tthis:0.024083181401430828\t:0.01\n",
"the:0.44217033855572857\tof:0.13994043118103364\tand:0.1218978624108292\twith:0.05316061761161668\tin:0.051542009218685125\tsaid:0.05118099914866568\ton:0.046995973525898835\tby:0.04650570725671965\ta:0.03660606109082258\t:0.01\n",
"and:0.27625012227709334\tof:0.17547945078711688\tthe:0.10766364146556028\twith:0.1058989720702072\tin:0.08172023430788443\ta:0.07061572579638165\tto:0.06512503043497506\tor:0.06247410583487714\tis:0.04477271702590401\t:0.01\n",
"a:0.2643882278755293\tthe:0.20575755471248278\tand:0.19106991628991737\twas:0.06905598335094494\the:0.05929442895073319\tbe:0.05889724558881092\tof:0.049907325385797834\thave:0.046302584858308446\tfeet:0.04532673298747528\t:0.01\n",
"the:0.21933358777041054\tand:0.20345810380126342\tof:0.1478731826224228\tto:0.11597533742236105\twas:0.069080832575979\tbe:0.06501520475512933\tis:0.06281824295034691\tfor:0.05493907240250911\the:0.05150643569957787\t:0.01\n",
"of:0.24599794947855158\tin:0.2008735666308575\ton:0.15172985312596501\tand:0.13586166871502908\tto:0.0589956503313888\tIn:0.057850437587268676\tfrom:0.051437222056851924\tfor:0.04479248141773978\tat:0.0424611706563477\t:0.01\n",
"he:0.22480229380192837\tit:0.17485728277577847\tthey:0.12397626271710332\tI:0.10874733808034656\tthat:0.0944115016573233\tIt:0.0934061924792438\twe:0.05704965258936926\twhich:0.05692367062721336\tand:0.055825805271693715\t:0.01\n",
"of:0.21691986795858173\tthe:0.19690770048974351\tand:0.13502145604837124\tto:0.09441737416444072\tbe:0.07577678070195322\tis:0.07523403750430702\tin:0.06822046581320036\ta:0.06659615857451134\twas:0.06090615874489076\t:0.01\n",
"of:0.24248324645312072\tand:0.22493379456712312\tby:0.1254175236684133\tMrs.:0.11553575886022947\tMr.:0.06991208755101427\tsaid:0.06861018589838763\tto:0.059812216333956864\tSir:0.04791502976663917\t<s>:0.03538015690111543\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"be:0.19771209648975893\twas:0.1800321798850361\tif:0.13545820718477333\tand:0.12084174534152359\twere:0.10512431453036412\tbeen:0.07793134670197673\thad:0.06903604092729904\thas:0.05232258862009982\thave:0.05154148031916841\t:0.01\n",
"the:0.4282857685859917\tand:0.16034191722427182\tof:0.14267274314851128\ta:0.08425017168159504\tThe:0.042226634639341794\tin:0.04030091819251811\tat:0.030859246036587375\tan:0.03072707958316916\tor:0.030335520908013645\t:0.01\n",
"the:0.2795577484890098\tof:0.17138515288587403\ta:0.10545348980101767\tand:0.10358081425281415\tto:0.09316370237569993\this:0.07970422801247463\tin:0.06393496375745417\twas:0.047215012524109104\tbe:0.046004887901546415\t:0.01\n",
"years:0.5584375078001945\tweeks:0.08934882661715238\tyear:0.07972348374591882\tmonths:0.07487971884540508\tdays:0.058422196763404155\tlong:0.05750860275873282\ttime:0.03260469042048093\tweek:0.02635537220602291\tcentury:0.01271960084268823\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"they:0.24684392915762296\twho:0.2406500784178381\tand:0.1010229084135955\twe:0.09729380888437697\twhich:0.08662624481698394\tThey:0.08083843938761265\tWe:0.051752680032994804\tmen:0.043186467543510104\tthat:0.04178544334546482\t:0.01\n",
"away:0.21979238561999545\tand:0.16142703462541477\tthem:0.13112702765345594\ttaken:0.12545492681537387\tcome:0.09812015335648258\thim:0.0683028790077253\tcame:0.06621409465773012\treceived:0.0662129320597808\tout:0.053348566204041194\t:0.01\n",
"the:0.23318810588988118\tand:0.208273633058547\tof:0.17372767068188943\tthat:0.0805149429331489\tas:0.06263075742898333\twhich:0.06172972933455127\ta:0.060409495269163\the:0.05620895963493426\tin:0.05331670576890176\t:0.01\n",
"that:0.421721955509451\tand:0.1472861167294834\twhich:0.1027463606917559\twhen:0.0814411549603987\tto:0.07775759749315808\tsaid:0.042286474419914656\tbut:0.04103172286841321\tas:0.03951281731721123\t<s>:0.036215800010213885\t:0.01\n",
"the:0.4825824825027939\ta:0.14490029360226842\tand:0.10558946977895418\tof:0.07401940861777527\tThe:0.06147226486331255\ttho:0.03586575767403073\tin:0.03563123642531585\tby:0.030067441170325847\tthat:0.01987164536522309\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.35111467714578143\tof:0.18451000687369606\ton:0.16425690807019114\tand:0.07834905487668747\ta:0.058147206452004815\tin:0.04781641311356229\tsaid:0.041039540404578335\tA:0.03420246445441175\ttho:0.030563728609086706\t:0.01\n",
"the:0.6748782856946588\ttho:0.04881921686031829\tsaid:0.04828476190884783\tof:0.046629090272494636\tCircuit:0.04643792171048544\tThe:0.03756263242838023\tthis:0.03242699703239592\tCounty:0.03221372591912851\ttbe:0.0227473681732904\t:0.01\n",
"and:0.2508763143077558\tof:0.13378297497177752\tto:0.0997558703471497\tit:0.09776707641786618\tfor:0.0938848382649172\tin:0.08896845140977011\tthat:0.08702890370822032\tis:0.0710488597720228\twhich:0.06688671080052049\t:0.01\n",
"to:0.45771481240747064\tI:0.1738039089600014\tnot:0.09394992752223083\tyou:0.09150805384467142\tand:0.04931643877828461\twill:0.03930457392241455\twe:0.03207362601700101\twould:0.028760076250608665\tcan:0.02356858229731681\t:0.01\n",
"the:0.2958174644220095\tand:0.23376628117706877\tof:0.14876724936777866\tthat:0.07327481212029903\tor:0.0581599499341582\ta:0.0537766536142004\tThe:0.04536903035579682\tI:0.04088229456852255\twhich:0.04018626444016604\t:0.01\n",
"by:0.28150608558165807\tof:0.25119760244657185\tand:0.15467522685679785\tin:0.07866827664672263\tare:0.05655682157304412\tthe:0.04608126495850728\tis:0.04424481428669291\tfor:0.038632087873948354\tto:0.03843781977605703\t:0.01\n",
"the:0.3970769266364958\tto:0.19946058053686463\tand:0.18794627770254438\tof:0.052273158591956165\ta:0.04989904899825184\tin:0.029955704385074125\tThe:0.028452111384884387\tas:0.024062621666541807\ttho:0.02087357009738695\t:0.01\n",
"that:0.4191864264306642\twhich:0.12306459701814328\tif:0.10584152411724204\tas:0.0800588901554097\twhen:0.0655064430572058\tand:0.062325436114272305\twhere:0.05382186608530334\twhat:0.04122796967848988\twhom:0.03896684734326954\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.33753309618836524\tof:0.18182340157110785\tand:0.13268213025422473\ta:0.07606345419930088\tin:0.07205893777399468\tto:0.06204429925054652\tat:0.04691220297371514\t<s>:0.042514179537647516\t.:0.038368298251097555\t:0.01\n",
"the:0.3017969052707078\tand:0.19494464914378162\tof:0.17647548758898549\tto:0.08838367399948825\tin:0.0725407099530854\twas:0.04956512336060268\the:0.036929396603692134\tbe:0.03470934680229929\tis:0.03465470727735719\t:0.01\n",
"and:0.15113197446908372\tis:0.12785790515078807\tprotest:0.11975807484796075\tup:0.1153282111236048\twas:0.10892061001229832\tbrought:0.10724470874618913\tvoted:0.08769416224496915\tas:0.08633821005438486\tmade:0.08572614335072101\t:0.01\n",
"the:0.2897383324568781\tof:0.17113076544121678\ta:0.10182560711526899\tto:0.08415539991493161\tin:0.07588252600215932\tany:0.07161219763621446\tfor:0.06930496705250555\tor:0.06569006370210649\tand:0.06066014067871867\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"I:0.2972347413548833\twe:0.1596737443819009\tthey:0.15880401414132647\tWe:0.10767922019127868\twho:0.06816921463312631\tto:0.061192502960840944\tand:0.051231682532044916\tyou:0.048807689139557305\tThey:0.037207190665041176\t:0.01\n",
"of:0.21931981480576102\tin:0.19889241386216264\tthat:0.1675004329968078\tand:0.07912351169332935\tto:0.07727495371317153\tfor:0.07396891562127898\tby:0.06095952309045464\ton:0.05758162839370257\tIn:0.05537880582333154\t:0.01\n",
"and:0.20222188526210955\tis:0.14953327519360596\twas:0.1075263555916618\table:0.09508551212469514\tas:0.09361753075303399\tenough:0.0890431258594552\tnecessary:0.08722645736063846\tright:0.08386218711993232\torder:0.0818836707348675\t:0.01\n",
"and:0.17428398503534254\table:0.1365127288384631\tright:0.12673230234907595\tallowed:0.09449809842294761\tis:0.09399324395641952\tenough:0.09397654693712063\tmade:0.09273677482479523\tunable:0.08994123121669097\tnecessary:0.08732508841914444\t:0.01\n",
"of:0.3744354508687816\tto:0.17052659449957547\tand:0.08847645286533605\tfor:0.08719404827779711\tat:0.0740237835798457\tin:0.06606805616609977\tsaid:0.043654504063428266\ton:0.04287442859386683\tfrom:0.04274668108526927\t:0.01\n",
"to:0.7039339068934893\tnot:0.07300968692573076\twill:0.04886188059311825\tand:0.04865089835588385\tthe:0.03018666537189303\twould:0.024269615356331792\tmust:0.02345315060374415\tpublicly:0.023200391761258096\tshould:0.014433804138550804\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"that:0.31477914547653374\tand:0.20075168692270082\tbut:0.1078760036867674\tas:0.09014379652450287\twhen:0.0823790812736193\twhich:0.08073958256682875\tif:0.04767380552388467\twhere:0.03845583820312528\tuntil:0.027201059822037178\t:0.01\n",
"and:0.48151593662809183\twas:0.10612951398346099\tis:0.07577697782050932\tare:0.06493924500120098\tbe:0.05865886345501072\tthat:0.056385861790890286\twere:0.0555892858918052\tto:0.05539103284018464\tof:0.03561328258884604\t:0.01\n",
"the:0.47083324564218526\tof:0.13495994440302694\tThe:0.12121191163996879\tand:0.06569707516078616\tto:0.05236130094320337\ta:0.04536932344980035\tno:0.04088294286158666\tin:0.029920415063205398\tgreat:0.028763840836237006\t:0.01\n",
"of:0.4070797336324697\tand:0.1572766859551236\tsaid:0.1224744912090166\tby:0.11909417103486726\tMrs.:0.06204786285562088\tto:0.05293908983691477\t<s>:0.025000185118590125\tMr.:0.02407239632746036\tin:0.02001538402993648\t:0.01\n",
"on:0.20882163947107169\tof:0.20580302678447474\tand:0.15283046093795438\tto:0.10307048091481884\tOn:0.0934440932218849\tall:0.06169111630679553\twith:0.059900783022025936\tin:0.05740836204605506\tthat:0.04703003729491897\t:0.01\n",
"and:0.6296847165330772\tthat:0.06730542752111063\tAnd:0.06558850843889921\tbut:0.04561309596240497\tas:0.04316124192676118\tIf,:0.03761597328162473\tWhy,:0.03754993291772128\tthere:0.03280694012322098\thad:0.0306741632951798\t:0.01\n",
"the:0.3849448690601038\ta:0.25871151093840467\tmost:0.08517693723355443\tof:0.06950527749795189\tThe:0.05332541365776912\tto:0.050400829778901236\tand:0.03224581192159963\this:0.031246393527079058\tvery:0.024442956384636196\t:0.01\n",
"and:0.19955474332828924\tbeginning;:0.1817711934836523\tthat:0.12587913074587626\tof:0.10322107854034782\tthe:0.09256851279780623\tsum:0.08776695597504251\tin:0.07715063522926802\twhich:0.061388161536938796\tinterest:0.06069958836277886\t:0.01\n",
"and:0.26268374235582553\tof:0.21634999909127123\tis:0.1498839122128634\tare:0.10465511637169253\twas:0.07640891611692435\tby:0.05141686456358272\tas:0.04582035668386229\tfrom:0.04385826794441265\tthat:0.03892282465956532\t:0.01\n",
"of:0.18271282357636107\tis:0.18070023461318033\tas:0.13642563845001834\tfor:0.12447690630844775\twas:0.10361554646829635\tin:0.07791129088168348\twith:0.0698097121379874\tsuch:0.06112344788532247\tbe:0.05322439967870288\t:0.01\n",
"in:0.49911728016487206\tto:0.199509146134923\tIn:0.09347499783363002\tand:0.05944764718845867\tnot:0.0435730265134592\tof:0.04051199922422825\tfor:0.018676573201071512\twith:0.0184144955819085\tthe:0.01727483415744891\t:0.01\n",
"the:0.7276321533195543\ta:0.09557263431633671\tThe:0.03975029555879822\tthis:0.03743161427299362\ttho:0.02525595776441231\tof:0.022496484607721055\tand:0.018422316582220488\tour:0.014231034606487197\ttbe:0.009207508971476267\t:0.01\n",
"and:0.48717371482204114\tthat:0.1468898902697459\tas:0.10544368461798054\twhich,:0.05077564519296985\tand,:0.0495702589108356\tit:0.0456063548847484\tbut:0.03755383259421815\tor:0.03443305102612006\ttime:0.032553567681340434\t:0.01\n",
"he:0.20292465570551005\tI:0.17995947601596646\tbe:0.09826254567200866\thave:0.08980375108172306\tHe:0.08573823161473314\twas:0.0836050822287671\thad:0.07557973388182347\tare:0.05942366786966155\tis:0.05819741918444775\thas:0.05650543674535867\t:0.01\n",
"was:0.2282672246176762\tis:0.22335127548833122\tare:0.12398442235523771\tand:0.10767268278493183\twere:0.07833966875993499\tif:0.07078164772702758\tdo:0.05764918858635148\thad:0.053820711002276755\tbut:0.04613317867823243\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"of:0.31662382482780055\tthe:0.18822284322808477\tin:0.11578788137479393\tand:0.09407676728996123\tthat:0.07488917283524958\tto:0.06204412499286629\tThe:0.052928240553401264\tfor:0.045864762222283736\tMr.:0.03956238267555868\t:0.01\n",
"the:0.30066537045736186\tof:0.18083337303704702\tand:0.14849071523579158\tto:0.13697527746982274\tfor:0.05023447445190032\tin:0.049590724586391306\tbe:0.04591187306033971\tis:0.04039018647411833\twas:0.03690800522722708\t:0.01\n",
"day:0.3560884730510934\tup:0.09784404484088026\tnight:0.09202789600475324\tin:0.08406753973525079\there:0.07848577284902072\thome:0.07427907562121719\thim:0.07295449136583067\ttime:0.0688510129310559\tcity:0.06540169360089784\t:0.01\n",
"of:0.3490134401408755\tthe:0.2938449112067764\tin:0.11171842006719042\twith:0.054020775349424344\tand:0.05121511528410283\ta:0.04565825669626373\tby:0.03680485248674325\tThe:0.026501108947611665\tthat:0.02122311982101187\t:0.01\n",
"of:0.285500185546861\tthe:0.14925063548355905\tto:0.11195115809306072\tat:0.09408762427579474\tand:0.08973579321266117\tin:0.0869040159903952\ta:0.0702777585714937\tfor:0.0551592901199983\t<s>:0.04713353870617605\t:0.01\n",
"of:0.19203266227905233\twas:0.1408848719233512\tis:0.13086538290909122\tand:0.12963370539214486\twith:0.12718935945802118\tby:0.08941197549496456\tto:0.08327296149126587\ton:0.049252678434606484\tin:0.047456402617502225\t:0.01\n",
"and:0.18354623886757082\tas:0.15296062527715276\table:0.14943303495393215\tenough:0.11288094894644418\ttime:0.09088306694901457\thim:0.08558792844345343\tthem:0.07400571196153934\tnecessary:0.07305627558029006\torder:0.06764616902060265\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"United:0.8927856279256685\tthe:0.02619273657057036\tI'nited:0.015342689013023502\tted:0.012742070121526845\tSouthern:0.012197219811539121\tof:0.008493327814959558\tnited:0.0076635169252632935\tper:0.007319388570461197\tUuited:0.007263423246987585\t:0.01\n",
"it:0.25840530328389183\tIt:0.20090805492631847\the:0.1744835680476599\twhich:0.08808062712117187\tand:0.07298969354276362\tHe:0.05768449750552188\tthat:0.050520447767272075\tI:0.0471806839336175\tThis:0.03974712387178287\t:0.01\n",
"of:0.3618777877352623\tto:0.15972217794604748\tin:0.0987666269697219\ton:0.09582559402502414\tfor:0.07634935478660031\tand:0.05621971277439513\twas:0.047839409356573395\tthat:0.04758584915154603\tis:0.0458134872548294\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"the:0.3323475914517543\tof:0.30429733953970206\this:0.05912057999500091\tto:0.05787339399165412\tin:0.05315061670519715\ttheir:0.05271140435322497\tgood:0.050581384808583985\tpublic:0.04169566223407192\tperfect:0.03822202692081057\t:0.01\n",
"in:0.3288104324122633\tof:0.19616918652975565\tand:0.08569540388090616\tIn:0.08547448228699683\tthe:0.08028489133526442\tto:0.06269381084457808\tby:0.059477874021408396\tWest:0.04907669553853516\tat:0.042317223150292044\t:0.01\n",
"the:0.23513509970639918\tto:0.19623332799248264\tan:0.15973462337801703\twill:0.0959660614625521\tand:0.07189583821490556\tof:0.07031235109062457\tnot:0.06724161992353991\tis:0.04808346480915815\tin:0.04539761342232068\t:0.01\n",
"be:0.3702300745035504\tand:0.1274533064728429\twas:0.12585745830364295\tbeen:0.10080271681546885\tis:0.0668835870637728\the:0.06682586880250693\thave:0.0460566455120882\twell:0.04359906942811301\twere:0.04229127309801401\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.3301429358726113\twas:0.15082519413613873\tis:0.128344947846416\tare:0.09329551401625263\trecorded:0.06482011972787304\tbe:0.06076966174231864\twere:0.0558935835272166\tmade:0.053521485961084435\tthat:0.05238655717008861\t:0.01\n",
"and:0.25868346102898915\twas:0.21264718455250595\tto:0.12357940752431956\twill:0.08660254622587497\tbe:0.08256798151923815\tthat:0.06258537274417866\tis:0.06103924345173498\twere:0.05186844977470064\tnot:0.050426353178458054\t:0.01\n",
"contest,:0.2660037380294482\tone:0.13717288213023301\t;:0.11384237131101663\tin:0.10444273909572237\tand:0.0852196633256467\tthem,:0.08439981096213847\tit,:0.07426798280697117\tmore:0.06688706665506684\taction:0.05776374568375666\t:0.01\n",
"to:0.6214015000493729\tand:0.09671435473161342\twho:0.054101637073210494\tI:0.049563073643522394\twhich:0.043082064379567214\twill:0.04265846454055254\tthey:0.03186384529262028\twe:0.025681188905467018\the:0.024933871384073842\t:0.01\n",
"in:0.24024222692817673\tof:0.19202064476064437\tand:0.11933801658247414\tto:0.10898683539051317\twith:0.09201441825713481\tIn:0.07303632980065598\tfor:0.06085093845785094\tthat:0.060798092307646906\tfrom:0.04271249751490295\t:0.01\n",
"the:0.35409290879159266\tof:0.16270975131789134\tand:0.12721904509230791\ta:0.11166447727211418\tto:0.09563934856041777\tin:0.05489096767512284\tor:0.032692742894283804\ttwo:0.02582553684020828\tall:0.025265221556061226\t:0.01\n",
"of:0.39926328648486886\tin:0.24619343061183238\ton:0.0851195080752849\tto:0.07622748458147047\tfor:0.06419143636706026\tIn:0.03386855117194923\tby:0.03310337403480413\twith:0.02703434492758809\tfrom:0.02499858374514176\t:0.01\n",
"and:0.20450556845365275\tdays:0.12596459196979642\twas:0.12001441399073981\tor:0.09579385432590432\ttime:0.09472943273581123\tthat:0.09322739577872445\tnever:0.08763760886899596\tlong:0.0868116995898552\tbe:0.08131543428651984\t:0.01\n",
"of:0.5799606433591986\tin:0.14726538281313323\tto:0.08053617321961364\tby:0.04633458265410756\tfor:0.03747262210945751\tthat:0.02952432958971118\tand:0.023397503682936777\tIn:0.02284405960632139\tfrom:0.02266470296551999\t:0.01\n",
"and:0.3088149598326447\tthe:0.20886111433606372\tto:0.15409611442416332\tof:0.07211652986296782\twill:0.061466961104174433\ta:0.05881306508914587\tI:0.049020876211459154\the:0.042138752669838395\tin:0.03467162646954254\t:0.01\n",
"the:0.4112886550043203\tthis:0.14506865820537856\tthat:0.1405655008773371\tThe:0.07022216524010724\tsame:0.05976291504511487\tfirst:0.049592706603625074\tof:0.04734934630004585\ta:0.03679315222444696\twhich:0.029356900499623997\t:0.01\n",
"there:0.21319349746577138\tIt:0.17450245338521095\tit:0.16351697111799585\the:0.11784821607556599\tThere:0.11146525109273697\tHe:0.07469814231772813\tand:0.04848606990931673\tI:0.04675437500190943\twhich:0.039535023633764425\t:0.01\n",
"and:0.19568113548000596\tmade:0.13133495988972219\tall:0.1124167012147455\tthe:0.09956243369356836\tday:0.09342657989213318\twell:0.09263854955338222\tthem:0.0911730515634877\tmen:0.089280730495265\t<s>:0.08448585821768981\t:0.01\n",
"It:0.36160336157410417\tit:0.345759314808681\twhich:0.05966024645388078\the:0.05442849829235899\tThis:0.0526322511611525\tthat:0.036072744067898864\tHe:0.02972488667267973\tand:0.026342316942810317\tthis:0.02377638002643367\t:0.01\n",
"of:0.2560920961086551\tin:0.20622066514678153\tthe:0.13289879553364684\tto:0.10339053561637152\tat:0.06515330319054954\tand:0.06357747829885817\ta:0.05843064866117217\tby:0.05486816959824704\tfor:0.04936830784571813\t:0.01\n",
"was:0.22372729230814078\tbe:0.22146749206601293\tbeen:0.1376914779143338\tare:0.12224027152219748\tis:0.10733282072790123\twere:0.10675015762463183\tbeing:0.0281645476464283\tnot:0.022339739084331484\tand:0.020286201106021914\t:0.01\n",
"and:0.30509500488199615\tthe:0.14345880908740635\tof:0.11771442821346333\tto:0.10968281118746631\tthat:0.07103079145912185\tin:0.0694077026958429\tbe:0.06065723018296171\twas:0.05693341913029552\tis:0.056019803161445794\t:0.01\n",
"No.:0.1955029609771127\t.:0.13544353662640413\tSept.:0.13438938452368657\tSec.:0.11726869987144906\tAug.:0.09324372191078215\tOct.:0.0856223538411377\tS.:0.07965387969252419\tMr.:0.07919717104211774\tN.:0.06967829151478576\t:0.01\n",
"more:0.27455083619486825\thundred:0.2349944411222423\tone:0.13691976821319488\tup:0.06585602697380229\tmen:0.06197067659142193\ttime:0.06165048190560898\tdollars:0.05617755508791682\tdue:0.05161502697122785\ttwo:0.04626518693971669\t:0.01\n",
"made:0.25483449781758893\tand:0.2277519209180528\trequired:0.10225828972976177\tdone:0.09150870325767425\tcaused:0.08680469783481196\tbut:0.0603214208161524\tthat:0.05785833020879082\tor:0.055132785592315686\tprescribed:0.053529353824851335\t:0.01\n",
"the:0.3834631414043032\ta:0.17788126542550958\tof:0.12671684130921368\tand:0.09665924524553776\tto:0.06296673922926439\tin:0.04568561654591716\tan:0.03614366500876859\twith:0.030885185901639873\tfor:0.02959829992984563\t:0.01\n",
"it:0.18996776648825836\twhich:0.16693146919859034\tIt:0.1638838509302785\tthat:0.1088783226660808\twho:0.09754653858074362\the:0.09729440751502057\tthere:0.07644641877125938\tand:0.047844242933137104\tThere:0.041206982916631135\t:0.01\n",
"a:0.40278660913219483\tthe:0.18860280516272798\tmost:0.10936893047936659\tand:0.07802225831879613\tvery:0.06864757331271874\tmore:0.04839307507678633\this:0.03479844902991179\tof:0.031218179183640223\ttheir:0.028162120303857358\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"the:0.2996090220204854\tand:0.18642359287592186\tw:0.13940333288825843\tThe:0.12203848246638886\this:0.09704039718896497\tmy:0.03953218998028853\tthat:0.037578929080643836\ta:0.034930548824102924\tI:0.033443504674945154\t:0.01\n",
"and:0.18927067209954457\tto:0.1457213105462048\twas:0.13885216490043628\tthe:0.13344944157787528\tbe:0.1126890863846965\tof:0.07906283297363939\tis:0.06793058951267711\ta:0.06393980503873582\tat:0.05908409696619014\t:0.01\n",
"the:0.420677298437262\tof:0.1684570720861857\tin:0.08613154769527717\ttheir:0.06516238977322503\tall:0.06392256824881258\tand:0.05906102061409184\tThe:0.050217660327152906\tfor:0.03986646100646181\ta:0.03650398181153079\t:0.01\n",
"and:0.22646225889984659\tto:0.17936631755545326\tof:0.16273196773080137\tthe:0.14441230832401447\tin:0.06671702552099561\tbe-:0.06590235747966393\tthat:0.05175613165960594\twas:0.04831311007520194\tfor:0.04433852275441699\t:0.01\n",
"the:0.4966457810195926\ta:0.13491084399822492\this:0.09011345261817823\tand:0.07376350543546928\tof:0.051393277303531465\tThe:0.037583399978995256\ttho:0.035897814459427295\tmy:0.03524692476779832\ttheir:0.03444500041878255\t:0.01\n",
"the:0.23276400478793585\tand:0.1301916603404574\ta:0.11964178793882982\tbe:0.10965342901743336\tof:0.10376721274960682\tin:0.09938876510667483\this:0.06964584654943341\tto:0.06656121771906351\twas:0.058386075790564824\t:0.01\n",
"in:0.29526298916677096\tthe:0.2624452955426154\tof:0.23786627818376507\tand:0.09569385267351802\tIn:0.03148938310735957\tfor:0.01999695298744482\tto:0.018386821855715992\tby:0.015808674526469762\tthese:0.013049751956340243\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"the:0.3106249050679017\tin:0.1934751996544322\tof:0.16558339616061643\tat:0.08757630872350936\tsaid:0.05200983988105522\tto:0.051710447787304235\tand:0.04620500266209087\tIn:0.04315895591411151\tfor:0.039655944148978314\t:0.01\n",
"that:0.3560105230962728\tand:0.22300199571327378\twhich:0.10934991430001134\tbut:0.07880470411805644\tas:0.06848038813693408\twhen:0.04570556941848771\tif:0.0423891938005536\twhere:0.033371378384670025\twhat:0.03288633303174043\t:0.01\n",
"the:0.7043487327421231\tof:0.08983144347995765\tand:0.040750387557893744\tThe:0.036458075106251056\tby:0.029097810845022186\ttho:0.02740264393500999\tVice:0.026293759853609433\tto:0.021907748006880907\ttbe:0.013909398473251929\t:0.01\n",
"the:0.3493333011231104\ta:0.17698558246602494\tof:0.17103057799260343\tto:0.08583456319109856\tand:0.08087442929637731\tin:0.04292505968389864\tThe:0.02987742620810878\tfor:0.0274799631714662\twith:0.02565909686731198\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.6023042815594889\tWall:0.12323822546834218\tMain:0.07959932588191267\tof:0.038714037518787985\tThird:0.03784896215179918\tSixth:0.02804106141794514\tFifth:0.027163991073060275\tGrand:0.027040063292088343\ttho:0.026050051636575405\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.6837803070278663\ta:0.08224298877946067\tThe:0.07515386566302568\ttho:0.04020270003607568\tsaid:0.027884313871409244\tA:0.02260014890124959\tthis:0.022265794307745123\ttbe:0.019240177356946747\tand:0.016629704056220974\t:0.01\n",
"the:0.1935237506392098\t1:0.15690991157625667\t-:0.12983409192063294\tt:0.11312531596220635\ta:0.09909199260334331\tin:0.07944427235427795\tand:0.07686245107617477\tI:0.07491050661030489\ti:0.0662977072575933\t:0.01\n",
"person:0.151114476776406\tin:0.14366078375527686\taction:0.12158514653404301\ton:0.11106304266091414\tone:0.11104807963472435\tman:0.09317043673038856\tright:0.08907757786678927\tday:0.08624512316750062\tcity:0.08303533287395719\t:0.01\n",
"and:0.2619606891326095\tsuffering:0.11464129002842319\tfree:0.09695347965665693\tor:0.09216537342675296\tfar:0.0875802668232984\taway:0.08721981304272884\tit:0.08545193344025942\tmiles:0.08290609099773392\tthem:0.0811210634515367\t:0.01\n",
"the:0.27038332306752194\tof:0.26671112529423224\tto:0.11789328989487773\tand:0.09904207654088473\tin:0.06385071003716436\tby:0.05242985508195235\ta:0.043328017777476406\tfor:0.038883052008358225\tbe:0.03747855029753187\t:0.01\n",
"cents:0.3834108729234089\tcent:0.14629830228351257\tcent,:0.08265766997482092\tten:0.07951458218613738\tcentum:0.06796157073615115\tdollars:0.06478086807589008\t50:0.06225800599818095\tsix:0.054112695963925296\tfive:0.049005431857972626\t:0.01\n",
";:0.35244521262035944\t,:0.10132353761013094\thim,:0.08340058345184748\tup:0.08161258254127797\tdollars:0.08042204033858921\tit,:0.07791991969894312\tand:0.07225997415676587\tyears,:0.07162451481184684\tin:0.06899163477023919\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.2348936864380875\tof:0.17141990857045894\tand:0.15092221108899265\ta:0.10125325371681407\tto:0.08978991230211596\tbe:0.07036792028887345\tin:0.0685027598781156\twas:0.06545509613683566\tis:0.037395251579706204\t:0.01\n",
"and:0.13900733138175211\tcome:0.13002335451972022\tfind:0.10792407872979913\tit:0.1077221352842256\tcame:0.10284889928519936\tthem:0.10219903713026175\twas:0.10161699046571616\tpointed:0.10113070190389886\tgo:0.0975274712994268\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"the:0.2727197008982446\tof:0.1485050235390187\tand:0.14352210889681394\tto:0.13543012419606018\ta:0.07508669985300975\twas:0.06029614167529202\tbe:0.05884514258692458\tor:0.048336100370756384\tin:0.04725895798387978\t:0.01\n",
"the:0.6383290262438203\tat:0.09001153092428416\tof:0.08884184980988359\tto:0.050644668255290876\tin:0.02980763650938362\ttho:0.029496506236513034\tsaid:0.028436238838201285\tthis:0.020620780503339653\tand:0.013811762679283536\t:0.01\n",
"and:0.18731138200478092\tmade:0.17540384171649717\tfollowed:0.10359032627645372\taccompanied:0.10165038299226911\tup:0.09188343918923055\tcalled:0.08569117549410002\tis:0.08390835925131884\tthere:0.08179314045973154\tthat:0.07876795261561807\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3321880027488057\tin:0.132349190609102\tof:0.11527968440896322\tfrom:0.0820936412951801\this:0.08187577711102023\ta:0.0696771431492576\tand:0.06743099842254034\ttheir:0.059206047626693306\tto:0.04989951462843762\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"of:0.2831696624348783\ta:0.28214106401669753\tand:0.09953619099730845\tin:0.0962313905901522\tthe:0.07054575300125446\twith:0.05510588974197615\tfor:0.03704880800268112\tsome:0.03599117762032305\tA:0.030230063594728806\t:0.01\n",
"to:0.21933751448187902\tand:0.20560903522447663\tthe:0.1945536989813919\tof:0.15547992204256325\tin:0.05002056463880914\ta:0.043233999904594686\tnot:0.04294346232233523\tor:0.041324931090442475\tfor:0.03749687131350772\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"to:0.26860052360775977\tand:0.2581232009552112\tof:0.08953645673833265\tI:0.08616670779330217\tthe:0.08579209118212379\tnot:0.060281231859691406\tin:0.0581389381858201\the:0.043763913378188704\thave:0.039596936299570167\t:0.01\n",
"he:0.4519788857095796\tI:0.12570129905380995\tHe:0.10132981920626846\tand:0.09968634228895652\tshe:0.08596990856105505\tit:0.0396664445002175\tIt:0.0348203189137576\tho:0.028822742264456254\twho:0.022024239501898975\t:0.01\n",
"of:0.4002517864907296\tin:0.13124295673731765\tto:0.09889717349994903\tand:0.07360037414059414\tby:0.07060060438966621\tthat:0.062075791272054495\tfor:0.0609929759645937\twith:0.05165662740752736\tfrom:0.04068171009756758\t:0.01\n",
"to:0.29943399412166116\twill:0.23501669254471175\tshall:0.09865169603701197\twould:0.09161524516228194\tmay:0.08313616617191866\tshould:0.07011796288020625\tmust:0.05014564580529341\tnot:0.03983414240705036\tand:0.02204845486986439\t:0.01\n",
"or:0.3607728720798067\tof:0.12181582360094813\tin:0.11416098775397264\tto:0.10810149962431044\ton:0.09723488753390953\tat:0.0664158549402604\tfor:0.04265780024016615\tby:0.042626653244268536\tthat:0.036213620982357496\t:0.01\n",
"at:0.23941419069116004\tof:0.17738909010919468\tand:0.13544149983187473\tfor:0.1187130183451707\tin:0.08754516730099306\tto:0.07865216735754534\tthe:0.07135260739734296\ta:0.04914553703079698\tthat:0.032346721935921585\t:0.01\n",
"the:0.580166468567312\ta:0.14849300358346093\tThe:0.07549681981066407\ttho:0.044771141820806486\tand:0.04016409904866966\tthis:0.033338709435509276\this:0.027905361797476384\ton:0.02018203286329354\tour:0.01948236307280759\t:0.01\n",
"to:0.28852490987018975\tthe:0.18522169159645446\tand:0.16694362009841446\tof:0.10154427505041502\tin:0.07389736182898728\ta:0.06039934620465164\tI:0.04500533332333985\twhich:0.03583432932655127\this:0.0326291327009962\t:0.01\n",
"it:0.21719724975214558\the:0.21631555415657122\tIt:0.11970194847944832\tI:0.11180965439620645\twhich:0.08809984775858755\tHe:0.06540701643363539\tand:0.06385382001398324\twho:0.060741854369724305\tshe:0.04687305463969793\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"three:0.30008919433235115\tfeet:0.133722846538562\tup:0.09692890613421905\twent:0.09340475435354732\tand:0.09082614422587537\tfour:0.07971592093611077\tgo:0.07164453431063776\ttwo:0.062051861054526154\thim:0.0616158381141704\t:0.01\n",
"and:0.17836713781556449\tnot:0.14933879315131385\tis:0.1444723718902295\tor:0.1307913598974557\twas:0.09872660729531404\tare:0.09084140916537954\tof:0.07247847978296727\tbe:0.06976140757305542\tbeen:0.055222433428720234\t:0.01\n",
"the:0.49321795679417796\tof:0.13622048595210187\tsaid:0.06939075778140964\tand:0.06910925031198886\tThe:0.05809829385918918\tMr.:0.056439660860982704\tin:0.042540984329608365\t.:0.038186726247083524\t<s>:0.026795883863457725\t:0.01\n",
"there:0.33793907666688106\tThere:0.2322052962782903\tthey:0.14881854025348004\tand:0.0700568409256557\tThey:0.049509633075549585\twho:0.04401690063839915\twe:0.04253104111935672\twhich:0.04230280173448709\tmen:0.022619869307900362\t:0.01\n",
"to:0.20824004866035978\tthe:0.2040097545902015\tand:0.19980432728505823\tof:0.15978957334487476\tin:0.06337877849958568\ta:0.05463758289552893\tnot:0.03746152227349155\tI:0.031804518390908185\tbe:0.030873894059991417\t:0.01\n",
"the:0.2996282127636163\tof:0.17109641996751032\tand:0.15811024451773753\ta:0.07879617152901047\tMr.:0.06639288749381046\tbe:0.0633544087264472\tThe:0.06112575644363107\twas:0.051530800779519374\tto:0.039965097778717276\t:0.01\n",
"the:0.5561724250369287\tand:0.07301423242153227\ta:0.071353556733315\tthis:0.06935339895920585\tof:0.06672843243349248\tor:0.04302028515806712\tin:0.04186688489694466\tany:0.035008344199915054\tits:0.03348244016059882\t:0.01\n",
"the:0.47911636853392614\tand:0.10078480860105794\tof:0.09954079331996062\ta:0.08696531253960743\tin:0.08219915636699002\tthat:0.04998438521116081\ttho:0.032216955252757626\tno:0.029856704288588637\tany:0.02933551588595079\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"of:0.3917341448957533\tto:0.1429234420610884\tand:0.09770602702350478\tin:0.0700677498557314\tthat:0.06861055900516125\tfor:0.06780441743670725\twith:0.06656727550202109\tis:0.04231189497535508\tby:0.042274489244677416\t:0.01\n",
"and:0.2664042842607339\theld:0.1316861471494608\trecorded:0.10490974745678024\tmade:0.09709450861257102\twas:0.09290132736605214\tup:0.0835545486124196\thim:0.08187337574992953\tit:0.0671601232216755\tis:0.06441593757037704\t:0.01\n",
"the:0.19756031043877517\tand:0.158759397430483\tof:0.1438069694409682\tto:0.13864470089862796\tin:0.08693436616738874\ton:0.07194579432544293\tfor:0.06842166626133234\twas:0.0629754067589096\ta:0.06095138827807197\t:0.01\n",
"the:0.3546886227726201\tof:0.10981589215745212\tand:0.10344790998847027\tan:0.08656519083341876\thave:0.08067500993778615\tThe:0.0682791895189363\ttheir:0.06698719119548346\this:0.06579475445483511\tbe:0.05374623914099767\t:0.01\n",
"the:0.3614326507468833\tin:0.1341003694459668\tof:0.11129329147904761\this:0.09854499208072334\tfrom:0.08037748747087793\ttheir:0.05947520632516519\tIn:0.05341139709856363\tand:0.04732649476219451\tmy:0.04403811059057768\t:0.01\n",
"and:0.2675869048764418\the:0.20354491040752073\tI:0.16720683637679096\tHe:0.07532311863491938\tthey:0.06367192706283452\twho:0.0626845150361649\tit:0.05688481749758161\tshe:0.0488617784225101\twhich:0.04423519168523606\t:0.01\n",
"the:0.6163333953461708\tan:0.12443196407682261\tand:0.06369351393078647\tthis:0.058491207960215494\ttho:0.033912579883021474\tThe:0.032043575580185994\this:0.027536113717641128\tto:0.016872748771800075\tof:0.01668490073335592\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"interstate:0.24581100258479563\tthe:0.23407225917994268\tof:0.22245833532305048\tsaid:0.09708117066385534\tThe:0.05184026795673804\tthat:0.03686787910845979\ta:0.036381641216653875\tInterstate:0.03563370960415037\tthis:0.029853734362353817\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"of:0.19888457249275882\tto:0.1848256621635536\tat:0.1425543349414814\tin:0.13747863160675033\tfor:0.12730777936785304\tand:0.056138630144345336\tby:0.051211348979077156\tfrom:0.048467416034823144\twith:0.043131624269357086\t:0.01\n",
"the:0.45332830188760714\ta:0.13747648026696596\this:0.09958936203272278\tlittle:0.07976317250499129\tof:0.06073260210063218\tand:0.05014096593287758\tin:0.044838204874864285\tthis:0.03219569013713407\tmy:0.031935220262204744\t:0.01\n",
"and:0.28823171370086564\tas:0.24181840902311383\tthat:0.20283610454797088\tbut:0.06532789543938038\teven:0.06445615994359521\tor:0.04089488318769704\tAnd:0.03292320347616379\tand,:0.027430337641452463\tsee:0.02608129303976084\t:0.01\n",
"out:0.16169167316421687\tthat:0.13907564924307578\tone:0.11452925051451177\tpart:0.11289118433690076\tpayment:0.10082221801146612\tor:0.09178934960960837\tvalue:0.09178348186990805\ttion:0.09129193038292044\tuse:0.08612526286739179\t:0.01\n",
"the:0.40004629088706956\tof:0.17001214588784655\tto:0.09324409555324727\tand:0.08485788841663555\ta:0.07725491056514237\tin:0.058901956466901474\tfor:0.048500848023656985\tthat:0.030393568527880322\ton:0.026788295671619843\t:0.01\n",
"the:0.2815454715554674\tof:0.239155072796628\ton:0.10434679468435355\tand:0.09008445050426063\tto:0.08687342265674353\ta:0.067126656523295\tby:0.04941846904983028\tin:0.036917911083775706\t<s>:0.03453175114564598\t:0.01\n",
"the:0.35295075096745687\tof:0.23576116297493566\tto:0.12888654523496526\tand:0.09050904376590592\tin:0.04133297937505859\tbe:0.041256673741006576\tfor:0.03751470473767561\t<s>:0.031533700307135176\ta:0.03025443889586021\t:0.01\n",
"and:0.3516675093126459\twas:0.13010271739073367\tthat:0.09868072369136595\tis:0.09166370700530087\twork:0.06673523032372904\tput:0.06424513802086577\tit:0.06262887416174955\thim:0.062210509969594686\tthem:0.062065590124014566\t:0.01\n",
"and:0.2913756530947911\tMrs.:0.21267459678158218\tof:0.11119739867207226\tby:0.08852545721177048\tMr.:0.08170036631304216\tto:0.07791353415893619\t.:0.055328892950283245\tsaid:0.036176454330062835\tthe:0.035107646487459614\t:0.01\n",
"of:0.3909896374325875\tto:0.13272293488463793\tthat:0.11577220055192781\tand:0.08935273239298651\tin:0.06481509487448096\tby:0.053872788447686226\tfor:0.0528622770285865\tfrom:0.049203198286454405\tas:0.04040913610065221\t:0.01\n",
"to:0.6440376598249896\twill:0.14649588423340543\twould:0.04494919923520343\tmust:0.03481616249608519\tcan:0.02995576502388072\tcould:0.026730665020287873\tnot:0.021547664384889944\tand:0.021314889675609034\tshould:0.02015211010564865\t:0.01\n",
"the:0.5573247082455075\ta:0.09602001072973322\tan:0.0775090180107384\this:0.060634406216795556\tand:0.04450431309924748\tmost:0.04259337530981597\tThe:0.03948819340055269\tno:0.039179970035040826\tin:0.03274600495256837\t:0.01\n",
"and:0.17293939796927027\tfor:0.14409476234582172\tas:0.12249198158801555\ton:0.10685204772795717\tof:0.10093475776203516\tto:0.09046326617550843\tin:0.08667232639366068\tthat:0.084188811407067\twith:0.08136264863066389\t:0.01\n",
"the:0.41894925521295384\tin:0.1353007379017141\tof:0.08426064378780353\tan:0.07198007957877076\ttheir:0.0630509924000307\tand:0.06183703746932306\ta:0.05409464571590369\tfor:0.05151469665221108\this:0.049011911281289275\t:0.01\n",
"of:0.26041219272261196\tto:0.13622552066590307\tin:0.10724857046380357\tby:0.10009161408414403\twith:0.09856402546617984\tfor:0.09732696172154937\tand:0.08167565649762491\ton:0.06184377622489463\tas:0.04661168215328871\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.29180415793153586\tand:0.21045365365751517\tof:0.1452599787014739\tthe:0.12575576703428043\tin:0.06574761127577354\t<s>:0.04104981934860873\tnot:0.04093701420182499\tI:0.03567624969745241\tby:0.033315748151535096\t:0.01\n",
"the:0.3276193169525599\tCity:0.27398643860787997\tCommon:0.15246273339957897\tof:0.10855887431841342\tTown:0.03480397137181683\tand:0.027988950503523218\tsaid:0.027810124943829662\tState:0.020214368846469672\tNational:0.01655522105592844\t:0.01\n",
"and:0.5658638876781963\tand,:0.17208157382806794\tthat,:0.059360653592530704\twhich,:0.053697086651055215\tthat:0.04741792356245335\tbut:0.031461193024509254\twho,:0.021385246348501447\tis:0.019574080777027485\tyear,:0.01915835453765833\t:0.01\n",
"of:0.32988671686281607\tin:0.15709636892926135\tand:0.11201819981619215\tthat:0.1051224249059172\tto:0.09233967238876505\twith:0.052233713756943426\tby:0.05119717257558449\tfor:0.04708519371659138\ton:0.043020537047928804\t:0.01\n",
"a:0.45123193510593207\tthe:0.2979845344757141\tballot:0.08059096850270485\this:0.04073449143691047\tto:0.029373240792166556\tthis:0.026571054313268287\tfirst:0.022195917740095383\tThe:0.02080135140588685\tof:0.020516506227321506\t:0.01\n",
"of:0.2806329952300788\tto:0.15436867036346036\tand:0.14764173689001442\tin:0.08289393741054386\tfor:0.07309513398220539\ton:0.06880618201993288\twith:0.061133797709529765\tat:0.06089415253178344\tfrom:0.060533393862451136\t:0.01\n",
"to:0.6270040105750936\twill:0.09026639414370663\twould:0.06235128989563484\tcan:0.04139258575067752\tI:0.04020516916076136\tand:0.03500429099422263\tthey:0.032960960587375805\tcould:0.030959660454036347\tnever:0.029855638438491316\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.2047556480563323\tfor:0.1694005211985095\tenable:0.13515529519575864\tto:0.12357079414328452\tfrom:0.10345897574177258\twith:0.08971371221606815\tupon:0.06185516165493177\tgive:0.05342195749539524\tby:0.048667934297947246\t:0.01\n",
"the:0.2251914794154926\this:0.17076920700121218\tof:0.15101519719124\tand:0.11783429116320886\ttheir:0.09158942525851275\tto:0.06820184817303494\tmy:0.06065742540379309\twith:0.056343374941971815\ther:0.04839775145153365\t:0.01\n",
"the:0.4412767524298816\tand:0.13097986233200007\ta:0.11085930811658941\tof:0.09040021466837107\tbe:0.05278938506943016\tto:0.04713523372078618\tor:0.04630344858499872\tin:0.03530180027165772\tis:0.03495399480628509\t:0.01\n",
"and:0.1495899024693767\tmiles:0.14173092433846196\tfree:0.13778745773831563\tfar:0.11531946154984084\taway:0.11422025854048723\tsuffering:0.09289524012248203\thim:0.08182258540364966\tthem:0.08046450554330968\tor:0.07616966429407625\t:0.01\n",
"as:0.16683604475923364\tup:0.1539028598484388\tcame:0.12826444072495238\tand:0.1203462899100031\tcome:0.11364485149596151\tsent:0.08325251068286922\tback:0.0822367022569837\tit:0.07501903527794411\tpresented:0.06649726504361371\t:0.01\n",
"of:0.3847329978111562\ton:0.21304602806886153\tto:0.11094451252577381\tin:0.10841052356633052\tfrom:0.04425966194561938\tand:0.03940300232802465\tby:0.03283619732211662\twith:0.028598373580984365\tat:0.02776870285113287\t:0.01\n",
"and:0.38436506392192854\ttime:0.14871889696052248\treason:0.1091829920085257\tprovided:0.08369359689298067\tthat:0.06037544533546829\tday:0.05853184432328357\tit:0.049460312916072814\tmoney:0.04787760696196815\tway:0.04779424067924964\t:0.01\n",
"would:0.18324894788710863\tto:0.1661077597261573\tI:0.13101251821249266\twe:0.10720604695459136\tthey:0.10431601779643776\twho:0.09751872070325113\twill:0.07961400608298598\tyou:0.06118257593270567\tand:0.05979340670426949\t:0.01\n",
"an:0.7177681086582187\ta:0.061845921323290934\tthe:0.05496096988939467\tvery:0.04927868771884686\tis:0.030840527317745368\tno:0.02138325722520517\tand:0.020550760974712836\tAn:0.018806852649728808\tmost:0.014564914242856615\t:0.01\n",
"it:0.3263706712049878\tIt:0.234829195106296\twhich:0.10330049207735441\tthat:0.08590914283007675\tand:0.05458893022177986\tThis:0.05355117640248687\the:0.046688366837771535\tthis:0.045114156592541955\tthere:0.03964786872670478\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"hundred:0.8285449139737038\tdred:0.04445026281631453\tdollars:0.032442244474195386\tone:0.021782646018138636\ttwo:0.01569009080184884\tdue:0.013316632709316358\tfeet:0.012593988285085681\tthree:0.011465343588572124\tmen:0.00971387733282469\t:0.01\n",
"the:0.3495226752172926\tof:0.310028572465648\tby:0.07491142085823457\tin:0.06605894239130115\tto:0.0486287772840098\tthat:0.04084074534026338\tand:0.039980612886386185\twhich:0.034097945115063304\twith:0.02593030844180105\t:0.01\n",
"the:0.44642774952268455\tof:0.18583257193893538\tsaid:0.11402799736745657\tand:0.06160961606785461\this:0.05926862672687628\tThe:0.03776625983080167\tto:0.031760113916567696\ttheir:0.027560290540621105\ta:0.025746774088202102\t:0.01\n",
"the:0.3916878334765107\tin:0.1603984388732657\tof:0.14065502393661025\ta:0.07633149636437571\tand:0.06951855341726895\tto:0.054721522485157145\tIn:0.03915870744077218\tat:0.03518037855583387\ttho:0.022348045450205398\t:0.01\n",
"the:0.5359335365529682\tand:0.09033114136178684\tsuch:0.08229366633718221\tThe:0.07203707137825914\tof:0.050333283425811615\tthese:0.04470192463556426\tthat:0.04205126475736374\tno:0.038904532340323005\tall:0.03341357921074087\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"the:0.5008731366908145\ta:0.14152466471274525\this:0.10297118570844993\tthis:0.07059192615235255\ttheir:0.039180481751127684\tto:0.03496300324242793\tin:0.03437066425648798\ttho:0.03362814446924721\tits:0.03189679301634701\t:0.01\n",
"and:0.22281293444179986\ta:0.1633255985202637\tthe:0.15971650653819341\tin:0.13235165935982232\this:0.07547971740025924\tof:0.06891187402062779\tto:0.06105680543954854\ttheir:0.06086404690517852\tor:0.04548085737430651\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.18751147269725926\tis:0.17100498682949403\twas:0.12951428223037176\tin:0.10959704099574005\tand:0.09385705890605474\tas:0.08701932032584708\twith:0.07371660690006017\tbe:0.0698517219993995\tsuch:0.06792750911577325\t:0.01\n",
"he:0.24265944814372717\tand:0.20883431602299793\tI:0.1353089365109301\tbe:0.1005977144461434\tthey:0.06950267357844578\thave:0.06284547498672084\tHe:0.06140716102937593\twho:0.05804429161391558\tshe:0.05079998366774335\t:0.01\n",
"in:0.29875727159446186\tof:0.2706607391677059\tto:0.09988490857161432\tand:0.08022369251969147\tIn:0.06624316912203831\tfor:0.0474413018566512\tthat:0.04605972920050274\tby:0.04199230821076612\ton:0.03873687975656799\t:0.01\n",
"of:0.38334477857275384\tand:0.13733061241654218\tby:0.10524489144687976\tto:0.09252507951702962\tin:0.07374339154414622\twith:0.05941274510584793\tthat:0.055037891124158474\tfrom:0.04591679796409576\tfor:0.03744381230854626\t:0.01\n",
"and:0.2328841584501502\twas:0.1792267338680695\tbe:0.11146267852757288\tstay:0.0894252477976382\tthem:0.08358677447189618\thim:0.08306282149174889\tis:0.07388465023518077\twere:0.0692815259009067\tare:0.06718540925683661\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"of:0.25152480270853356\ton:0.14813774934040833\tto:0.13951290204013153\tin:0.12902769801117667\tfor:0.07339802532721465\twith:0.0691799949962691\tand:0.067609390066669\tfrom:0.062400889920356466\tat:0.04920854758924077\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"the:0.3506791412813245\tand:0.25981621235147445\ta:0.12119660679739275\tthat:0.051113146910832706\tThe:0.05070695273708827\tof:0.04685773409916836\this:0.04463479411711629\tthese:0.034962132326859595\tI:0.030033279378743113\t:0.01\n",
"and:0.3654885849152371\ttogether:0.18335848298449015\tconnection:0.07527432154198713\tdo:0.06726378465456402\tcovered:0.0656549013923289\tthem:0.06496578768334575\tcompared:0.0564997200474574\thim:0.05621920703064627\tbut:0.05527520974994332\t:0.01\n",
"daughter:0.23668130409109198\tmotion:0.13561189287070227\tone:0.1092237759832555\tson:0.10303378084486176\tpart:0.09696048232723906\tresidence:0.09065305328569832\tthat:0.08106214802521867\tout:0.073785084235415\tname:0.0629884783365175\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.21168661632910743\tand:0.17342087587379088\tof:0.14965243031096215\tas:0.14862640424456694\ta:0.08287979349307766\tto:0.07107758859510925\tbe:0.05689152027188907\tsuch:0.04860602071964438\tin:0.04715875016185233\t:0.01\n",
"the:0.3973471732241112\tof:0.15148752742507743\tand:0.14441177795627336\ta:0.10039976640996823\tThe:0.057966806900372224\tMr.:0.041249930492388204\tto:0.03681819378615323\tin:0.03296572819243\this:0.027353095613225915\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
";:0.340099969879488\tand:0.14634968059035755\thim,:0.11849194229083215\tthem,:0.09699673274106328\t<s>:0.06630906511863606\tit,:0.061289580113840204\t,:0.05718895293833873\tday,:0.054052900996398985\tyears,:0.049221175331045086\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
".:0.18687172859321322\tof:0.1739913881364356\tand:0.15543203610102924\tthe:0.1283664817785503\tMrs.:0.09199212456532826\tto:0.0767216474801735\tS.:0.06685153685759439\t<s>:0.05595939924905153\tby:0.053813657238623865\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"day:0.7288801099717536\tState:0.10509988195298747\tstate:0.03349204367673288\tcity:0.026381306843862286\tdav:0.02548527823199665\tCounty:0.019615320227691666\tplace:0.01780693581738457\tside:0.01715960479822771\tCity:0.01607951847936314\t:0.01\n",
"the:0.46522173628304864\ta:0.14172585473527347\tand:0.13260059258830706\tto:0.049570977188424986\this:0.04720373360195727\tof:0.04698618879444511\tthis:0.038777164347513944\twill:0.03428396994182888\tthat:0.03362978251920051\t:0.01\n",
"it:0.25780779121173725\the:0.15816700961010968\tand:0.0947965741332298\tIt:0.0937642975458979\twho:0.0936029199353662\tthey:0.09220619621403629\tI:0.08131469171738957\twhich:0.07143891984101765\twe:0.04690159979121581\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"and:0.2991570621813888\tthat:0.12097675512064877\twas:0.10566231283894444\tmen:0.09224837017576902\tbe:0.08234515997366056\tsituated:0.07573456631167526\tnow:0.07289830598094889\tmade:0.07268568733904675\tthem:0.0682917800779174\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"that:0.41254069359533196\tif:0.10775867228608897\tas:0.1021810806114893\twhich:0.0950336527603481\tand:0.07458198053495402\twhere:0.0620748140712076\twhen:0.05168851284933588\twhat:0.043968596503646165\tbut:0.04017199678759795\t:0.01\n",
"and:0.22646225889984659\tto:0.17936631755545326\tof:0.16273196773080137\tthe:0.14441230832401447\tin:0.06671702552099561\tbe-:0.06590235747966393\tthat:0.05175613165960594\twas:0.04831311007520194\tfor:0.04433852275441699\t:0.01\n",
"be:0.31133303299831067\twas:0.232564996222867\tbeen:0.1312962884377125\tis:0.09253343109260026\twere:0.05588529385034739\tand:0.053455368203265095\tbeing:0.05340843036005691\tare:0.03808812789546481\tbo:0.02143503093937545\t:0.01\n",
"to:0.31183925208060853\twill:0.126130591692272\tt:0.11984709946223056\tthat:0.09195814575382462\twould:0.08591361815159086\tand:0.0853485014069716\tI:0.06613257642948804\tmay:0.05734860361106113\twhich:0.045481611411952734\t:0.01\n",
"and:0.3712345465293448\tis:0.1683516656111103\tare:0.12443378362881301\twas:0.12092878791268649\tI:0.05692749723348727\twere:0.046634386443596784\twill:0.034618867713269934\tnot:0.03352598429658658\tbe:0.033344480631104914\t:0.01\n",
"the:0.45128477694459124\tof:0.1620082337752408\tand:0.07695320283659808\tby:0.06658212420785098\tto:0.0634227752690609\tAttorney:0.04479291416207246\tthat:0.044059099634686905\tPostmaster:0.04359643256619097\tThe:0.03730044060370775\t:0.01\n",
"to:0.24381600246766047\tand:0.19151972148251672\tthe:0.16575494234340357\tof:0.14682122042725432\ta:0.05688202127820803\tin:0.0534406581118334\tat:0.04846548257907429\tfor:0.04185880314810546\tI:0.04144114816194376\t:0.01\n",
"the:0.2888607311743004\tof:0.21391795395042282\tand:0.18890744700175788\tto:0.08069075572217466\tin:0.06315993381487477\tfor:0.0480152840008378\tthat:0.0384803950966061\twith:0.03427445905938498\twas:0.03369304017964059\t:0.01\n",
"the:0.389272800813676\tof:0.17210485164621478\tand:0.17082175439220343\tThe:0.11627151869807545\tthat:0.04169052592452665\this:0.028205704258302672\ttho:0.025059907039819838\tthese:0.023323544818787702\tto:0.023249392408393497\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"number:0.20885932208434108\tout:0.1538552237397949\tday:0.11035709953892572\tone:0.10010785943270624\tand:0.09046657955426679\ttion:0.08782501890960506\tpart:0.08011895138308249\ttime:0.07953993590668677\tthat:0.07887000945059106\t:0.01\n",
"and:0.3162485367424717\tor:0.132429256229268\tbe:0.0830440457228075\tis:0.08287736610063927\tnot:0.08180891969607536\tthem:0.07879213920193398\tmade:0.07319194148967305\tbut:0.07188784345586655\tthat:0.06971995136126448\t:0.01\n",
"to:0.46839069455695875\tthe:0.13695869814077552\tand:0.11652861264229192\tof:0.077044086819229\twill:0.06290687724211852\twould:0.0355847743218466\this:0.034542194954993874\ta:0.03279292376479808\tor:0.025251137556987737\t:0.01\n",
"of:0.29914502513076735\ton:0.17640553404709997\tto:0.15860508994704908\tand:0.09127647037661119\tin:0.07446344031216572\tby:0.052176101094903386\tthat:0.05126954387813547\twith:0.04534672507828603\tfrom:0.04131207013498187\t:0.01\n",
"of:0.38692556821807245\tto:0.1410843183687166\tin:0.12102919005302791\twith:0.06264113564780378\tand:0.06262049438959248\tthat:0.060020541510040534\tfor:0.05298868771242238\tat:0.05173984612531215\tby:0.05095021797501165\t:0.01\n",
"the:0.2584969006519494\tof:0.2123300568876437\tand:0.14177003477539818\tto:0.13796596228481653\tby:0.06674448847263892\tfor:0.05484683605907607\tin:0.044995830692325836\tthat:0.03677095110174294\tat:0.03607893907440854\t:0.01\n",
"the:0.3483352445772111\tof:0.16994360295129424\ta:0.1120012458043572\tand:0.08537812718073949\ton:0.08175363449071517\tin:0.08113037368727395\tto:0.04500864763328272\t<s>:0.03473977454091183\tat:0.031709349134214276\t:0.01\n",
"for:0.18213912616883005\tto:0.1801162954281979\twith:0.15242565822678916\tfrom:0.1330210364124284\tby:0.08565880769913203\tof:0.08168084998800257\tupon:0.07978072450913964\tat:0.04863276373889548\ton:0.046544737828584794\t:0.01\n",
"of:0.4548585633554589\ton:0.1513002859420174\tin:0.09918282468228981\tand:0.0744862126902263\tto:0.06202170617948396\tthat:0.05184567462676544\tfrom:0.03651628182051615\tby:0.03210316216531611\tfor:0.027685288537926032\t:0.01\n",
"the:0.35944412037912865\tan:0.3109323571042656\tthis:0.10578532049393873\tThe:0.06423957892100292\tany:0.056698028531928076\tAn:0.02747553289925272\tevery:0.022788109353038537\tthat:0.022272901273518133\ttho:0.02036405104392658\t:0.01\n",
"of:0.27425625454192326\tthe:0.21132533839615614\tand:0.15139160758249598\tto:0.1251700729617947\tin:0.05368181334276486\ta:0.04533004881576696\tor:0.043225616768860275\tthat:0.04300816315954321\tat:0.04261108443069465\t:0.01\n",
"of:0.39228269317277126\tfor:0.1402278093032855\tin:0.11619660107513156\tto:0.09219229685713685\tthat:0.07692202433591451\tby:0.05647846800225527\tand:0.0498072292455988\tduring:0.036887630419009845\tat:0.029005247588896277\t:0.01\n",
"of:0.35553904213101056\ton:0.13961929494976297\tto:0.1357543946915181\tin:0.13175024299769744\tby:0.0805425216334192\tfrom:0.04467320452266031\tand:0.036812375788904166\tthat:0.03291605814479099\twith:0.032392865140236184\t:0.01\n",
"have:0.233760177389414\tI:0.1747348520464222\thas:0.14365831311978752\the:0.11834655784153786\thad:0.11040141024303791\tand:0.08465786351999177\tHe:0.049415645791107\tnot:0.04049861331298954\tthey:0.03452656673571218\t:0.01\n",
"and:0.3116040604268401\twas:0.15198843375330282\tis:0.14293478689701092\tare:0.08751495165964814\tbe:0.07444339263214533\tit:0.058539239927337075\tthat:0.056407200625123846\tbeen:0.05369932938516691\tsucceeded:0.05286860469342483\t:0.01\n",
"number:0.48526276360722803\tthousands:0.09315900656326986\tamount:0.07195309310700175\tout:0.0675304109646043\thundreds:0.06351883566097101\tsum:0.06280165376648068\tbushels:0.05105378557218147\tone:0.05055576274313227\tmen:0.0441646880151308\t:0.01\n",
"the:0.7571188053377658\tthis:0.07857660715725495\ttho:0.03065494778112145\tThe:0.027028630356276277\tsaid:0.02167629744723401\tthat:0.020853096833986\tour:0.020016434437576728\twhole:0.017921358204273003\tand:0.016153822444512005\t:0.01\n",
"of:0.43063537265381285\tto:0.1524704818597217\tin:0.09228522737497831\tby:0.08835849060751476\tand:0.06344830396615463\ton:0.04296316613852944\tthat:0.04104163883711383\tat:0.03994630241805847\tfrom:0.03885101614411615\t:0.01\n",
"time:0.1969458819562261\tin:0.12881813061406427\tone:0.12214332117383078\tcosts:0.11723891080578797\tout:0.0887165367545089\tnew:0.08544944203691816\ta:0.08377664124701037\teach:0.083561202494972\tpower:0.08334993291668147\t:0.01\n",
"and:0.3987037576158814\twas:0.12564586901297148\tis:0.0904285774512238\tare:0.07586501849198168\tthat:0.07099350540563532\tbe:0.06751123225115296\tnot:0.06183627507482854\tbut:0.04995114168555189\twere:0.049064623010772856\t:0.01\n",
"J:0.1266698770641746\tI:0.11899381006931097\tA:0.11221465677508818\tS:0.11085429956396807\tM:0.10962468427107366\tm:0.10707196529228706\tW:0.10446912983555617\t.:0.10142349949097622\tand:0.09867807763756523\t:0.01\n",
"and:0.25236487832981874\tthe:0.20842806816797618\tto:0.16963377962922366\tof:0.1340321182526267\tor:0.06831334328743957\tin:0.04839474793821202\ta:0.04341345420469974\t<s>:0.03311592196234314\ton:0.03230368822766026\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"the:0.27331824607599536\tof:0.15423716086505732\tand:0.14528259025248202\tto:0.10262183581871517\tbe:0.08657383028225224\ta:0.07744275946770984\twas:0.05733333087575692\ttheir:0.04881454297593235\tin:0.04437570338609881\t:0.01\n",
"is:0.20186603535444836\twas:0.1910285871007818\tbe:0.1548866801270401\tand:0.08832023358728554\thad:0.07807736930667951\tbeen:0.07542174106625789\thave:0.07166581235620707\tare:0.06935368747913839\thas:0.05937985362216135\t:0.01\n",
"they:0.27303501600860564\tthere:0.1465315128297227\twho:0.12222326884009252\twe:0.09493736687362389\twhich:0.08820215033905598\tand:0.07166245657279302\tThey:0.06972569939524141\tmen:0.06683649117598851\tThere:0.0568460379648763\t:0.01\n",
"of:0.3022987889302297\tthe:0.14192542867349592\tin:0.1040600275603035\tand:0.10093797184566676\this:0.08529800910820819\tto:0.07737885848895636\tfor:0.0666755128524914\ttheir:0.057099271179780975\tor:0.054326131360867114\t:0.01\n",
"the:0.2599142675360965\this:0.24845336565704812\tsuch:0.1835002838879138\ttheir:0.08168117002754233\tmy:0.06517818336160792\tof:0.06273896341710986\tand:0.03650425311686883\tour:0.026613808999302456\tits:0.025415703996510306\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"of:0.3575364918279136\tthat:0.13577650235516645\tand:0.12718056724934274\tto:0.10225324826010798\tby:0.0864077337452161\twith:0.06367060806371078\tin:0.047042328996217894\tfor:0.036594592632059914\tas:0.033537926870264835\t:0.01\n",
"to:0.7462775136474078\twill:0.05960736066923649\tand:0.05461222132398947\twould:0.02555679883359402\tcan:0.024364844569397612\tcould:0.022728472927166437\tshall:0.020950203855402635\tnot:0.01843617973960699\tmay:0.017466404434198644\t:0.01\n",
"he:0.21236976584642633\twho:0.15091908100628376\twhich:0.13423069933853982\tthey:0.1114226506626021\tit:0.10310378443593025\tthat:0.08782466281035546\tI:0.07127377388196328\tthere:0.06045635920866448\tshe:0.058399222809234465\t:0.01\n",
"it:0.2858485074145247\tIt:0.1906602108235097\the:0.16206156542602304\twhich:0.10689791591132618\tand:0.057861696900156204\tHe:0.054983455299674806\tI:0.05350413657979999\tthat:0.046133280232193465\tshe:0.03204923141279198\t:0.01\n",
"is:0.2863834092503436\tnothing:0.15988621928342442\t;:0.1369924471344752\twas:0.09344692674184817\tand:0.09330323833196721\tit,:0.05999376593893135\tare:0.05817044836603714\tto:0.05379345741645122\thim,:0.04803008753652163\t:0.01\n",
"the:0.6361609248929524\ta:0.05894681611596045\tThe:0.05597021684708367\ttho:0.052976376425991595\tof:0.04616012997579486\tsaid:0.041765285013186784\tand:0.041654495012952035\this:0.029366497564569344\ttbe:0.026999258151508842\t:0.01\n",
"he:0.2786894588456654\tI:0.2187993863736224\tand:0.15978193519185846\tthey:0.07111906565666115\tshe:0.06405979132619377\tHe:0.06285818932007263\twe:0.052995435898579975\twho:0.0411665986351086\tthen:0.04053013875223757\t:0.01\n",
"the:0.33354478652460023\ta:0.1742750817329084\tof:0.12841035759535754\tand:0.12079526003607394\tto:0.08046451338156742\tThe:0.04300339573350039\tat:0.03739070741802715\tMr.:0.0370466960677367\tin:0.03506920151022816\t:0.01\n",
"the:0.22951541301561298\tof:0.21645470357557564\tand:0.14875776888463016\ta:0.14564244601788373\tto:0.08507460428324044\ton:0.049164876384552754\tin:0.04357993938462455\t<s>:0.03649783752368754\tbe:0.03531241093019221\t:0.01\n",
"of:0.5752343176843888\tin:0.14728314967164774\tto:0.07586931738189924\tby:0.06094295978398383\tIn:0.03187140209691087\tfrom:0.02685828138852238\tthat:0.02651800685039899\tfor:0.023111756606175194\tand:0.022310808536072903\t:0.01\n",
"feet:0.3032320095698917\tup:0.11289707474994076\tdown:0.10700327034433074\taccording:0.0916536505142319\tchains:0.08731041320062455\tand:0.07867576110748412\twent:0.07502201993745938\tback:0.06776368295260211\ttime:0.06644211762343462\t:0.01\n",
"Mrs.:0.38029156722113766\tof:0.12230460873439684\tsaid:0.08335024269480153\tand:0.08108770530360628\tMiss:0.0740376719489947\tSir:0.073545921992957\tto:0.060538152475582\t.:0.05821030154584999\tMrs:0.05663382808267386\t:0.01\n",
"of:0.31343077532048497\tin:0.3030548670813857\tto:0.11118275232640838\tand:0.06318122111458353\tall:0.04766626278112191\tIn:0.04713138629705967\tfor:0.04087645516250609\tfrom:0.03796357355087405\tat:0.025512706365575715\t:0.01\n",
"is:0.22608177461170714\twas:0.1852972912203111\tso:0.17537156005181773\tbe:0.11633711939368178\tbeen:0.09989572091187687\tare:0.08096892460150842\tand:0.0417517256096576\twere:0.03398555485123476\tnot:0.03031032874820464\t:0.01\n",
"the:0.3241036780908108\tand:0.2065727238951607\ta:0.1272264547596534\tof:0.11765771343139497\tto:0.08739672365842344\tin:0.04420412755929044\tbe:0.032467053042815025\tas:0.025730282402054782\tthey:0.024641243160396422\t:0.01\n",
"number:0.3001359354503346\tline:0.16295092342054765\tquarter:0.10223375943121864\tBoard:0.08039441613413777\tthousands:0.07468042333681196\tboard:0.07434062731775926\tout:0.06747538632823456\tamount:0.06467121440192726\tpiece:0.06311731417902827\t:0.01\n",
"a:0.4609897778536802\tthe:0.11865510332234204\tno:0.08303333482219098\tgreat:0.07695878351571839\tgood:0.06292965147593961\tthis:0.061642867014358706\tany:0.048895430695865785\tand:0.04280051496958789\this:0.0340945363303162\t:0.01\n",
"of:0.2833609901118425\tin:0.1387026627244487\tabout:0.12923035656985737\tfor:0.09532802575702794\twithin:0.0892831392006635\tthe:0.08849375553589567\tand:0.06474176250671118\tIn:0.05220509694160331\tthan:0.048654210651949734\t:0.01\n",
"of:0.34370987014445714\tin:0.12741281973091415\tto:0.12258165939083247\ton:0.09273608394008798\tand:0.08812963542476877\tthat:0.07205600099771797\twith:0.04862315823192203\tupon:0.04809806721216279\tfor:0.04665270492713676\t:0.01\n",
"the:0.23722395854443215\tand:0.1897717413181354\thave:0.12704478004218475\t<s>:0.12447257859303297\thad:0.09229546587840042\thas:0.0569498470362865\tof:0.05662790247145757\tI:0.05386771661800132\twhich:0.051746009498068936\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"do:0.19421841506119752\tif:0.19337404022818044\tIf:0.1371248438066826\tthat:0.10646575380250396\twhen:0.0940784170726965\tand:0.07980538676238162\tDo:0.07519381423617823\tdid:0.06396176826890018\tas:0.04577756076127888\t:0.01\n",
"the:0.31688637079993115\tMr.:0.17553394782128745\tof:0.13475496181409466\tand:0.09916631462749304\ta:0.09665466180011159\tto:0.04679512473816269\tThe:0.04386048957519478\t.:0.04066329302842449\twas:0.03568483579530011\t:0.01\n",
"the:0.35897422603923096\tin:0.16616966842372385\tof:0.13052057623811253\ttheir:0.07031352892460413\this:0.06330218471043672\tand:0.05670573740103631\ta:0.05157443195379748\tthis:0.0510845985109969\tIn:0.0413550477980611\t:0.01\n",
"the:0.27166233022908093\tof:0.23000352546859323\tand:0.13884537094325505\ta:0.0980990289944851\ttheir:0.08019695701187926\twith:0.05590558177563791\this:0.054346301313037394\tits:0.03261688057838085\tan:0.028324023685650238\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"to:0.26252502663319843\tnot:0.2624609391241689\tI:0.14646438849971286\tdon't:0.08105364776728152\tyou:0.0791949193984599\twe:0.05174848517586477\tWe:0.03733400738338787\tdidn't:0.03476725853486232\tand:0.03445132748306359\t:0.01\n",
"of:0.4059152898340685\tthe:0.15726767510568604\tand:0.09723020500398397\tto:0.09513651410509204\tat:0.08210383889379338\tby:0.04817505925656814\tfor:0.03597553216309035\twith:0.03473764862388829\tin:0.03345823701382932\t:0.01\n",
"was:0.18991453451619122\tbe:0.1543658617072605\tis:0.11157448049837697\tbeen:0.10680483280190002\tof:0.10335038683907469\tthe:0.09898389482971728\tand:0.09751034532941251\twere:0.06497103383901073\tare:0.06252462963905607\t:0.01\n",
"the:0.3108250209479243\tof:0.2331588111976363\tfor:0.10162268169096013\tin:0.10113235988959188\tand:0.09317968405650828\tto:0.0538163231783237\tall:0.046609633641172966\twith:0.0295974475790429\tother:0.020058037818839445\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"number:0.22534018296935626\tout:0.19397703787317067\tsum:0.10107045551325922\tamount:0.08789471326069255\tone:0.0850657509090956\tyears:0.07781876461733517\tthat:0.07559886852095622\tmatter:0.07462364107435089\tand:0.06861058526178346\t:0.01\n",
"it:0.19549328618000633\tand:0.14240551424094677\tI:0.12396452388203216\the:0.10837075534165982\twhich:0.09917829359620355\tthey:0.09882972305776178\tIt:0.08057606199899532\tthat:0.07393722861085704\tyou:0.06724461309153713\t:0.01\n",
"one:0.21967184196860368\tthree:0.1390280834270198\tfive:0.1264072646005238\ttwo:0.11716990668316368\ta:0.09983024313362253\tsix:0.09157590391622417\tfour:0.0805862760932337\teight:0.06668262960541724\tseven:0.04904785057219143\t:0.01\n",
"of:0.5050740525942162\tto:0.09124210731711106\tin:0.08263957164123327\tby:0.06530183547590275\tand:0.0636316078573843\ton:0.05669384397822034\tthat:0.049111788731208264\tIn:0.043160463101750646\tfrom:0.03314472930297316\t:0.01\n",
"to:0.55101970962566\twill:0.15008290196059051\tnot:0.06490483020220714\twould:0.06450590519010983\tand:0.05545485971129013\tshall:0.027171263907521514\tmay:0.02647276536706643\tcan:0.025289404275478423\tcould:0.025098359760075878\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"of:0.27404751345345146\tthe:0.21760197113705956\tto:0.11192366346135449\ta:0.10475215581601927\tin:0.1037683203346648\tand:0.07427786623811199\tat:0.035499562255862475\tfor:0.03449192824927743\twith:0.033637019054198344\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"the:0.27067445592289135\tof:0.20690955648494103\tand:0.1807403582189711\t.:0.07741349594123956\tto:0.06959324817403106\t<s>:0.05485343861793485\tby:0.05139125206617532\ta:0.04255820040845313\tThe:0.035865994165362625\t:0.01\n",
"an:0.5026825703229865\tthe:0.16727866485345685\tof:0.13697320143480987\tin:0.04540299658196608\tto:0.03215326296929625\tand:0.03064082577963494\tAn:0.030134199383121698\tThe:0.02711652636416045\ta:0.01761775231056737\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"and:0.27896776847231236\thim:0.165339413698242\twas:0.11226980831190811\tman:0.096438896839694\tit:0.09281578859421534\tup:0.06562583647316447\tthat:0.0651909040662511\tfound:0.05717470234619706\tmade:0.05617688119801571\t:0.01\n",
"and:0.1855266834317403\tthe:0.17928268355096624\tof:0.1537079584360458\tto:0.14257578856808903\tbe:0.09033375319685075\twas:0.07646336480896145\tis:0.06802686908593894\tin:0.052184043745382366\tfor:0.04189885517602517\t:0.01\n",
"of:0.23433583092232185\tin:0.14646790543069854\tto:0.1395741039828132\tat:0.12982490202141925\tfor:0.12634759850020963\twith:0.06470607478725314\tfrom:0.051008756872189115\ton:0.05090927882103448\tby:0.04682554866206085\t:0.01\n",
"and:0.24215253716277385\tis:0.16257051918700585\twas:0.14181354577167612\tthe:0.09482165538042853\tso:0.08325506076040592\tare:0.08273005728640616\tbe:0.0777934296588743\tto:0.05306049331397918\tas:0.051802701478450064\t:0.01\n",
"a:0.21425031372608325\tthe:0.21352417087379721\tis:0.1711075562008717\twas:0.11254661698441262\tare:0.08207488392581708\tbe:0.08164433843837511\tnot:0.041399402846844534\tbeen:0.03701086079133961\twere:0.03644185621245892\t:0.01\n",
"the:0.5321768886676587\tan:0.11266515311950674\tand:0.06401596773935148\tsufficient:0.05956992870108666\tlarge:0.05054831338287664\tthis:0.04839797672823438\tthat:0.0422552418850052\tto:0.0406336956618934\ta:0.03973683411438674\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"<s>:0.25455447020157906\tit.:0.22465874145204473\tthem.:0.10938652982322933\t?:0.09213124876074492\thim.:0.07576598559269593\tme.:0.060816314815480776\t.:0.060601025726744404\ther.:0.05765052976753964\tyou.:0.0544351538599412\t:0.01\n",
"of:0.19341917918443396\tin:0.1817621777284502\tfor:0.1327192742778708\tto:0.11058426022093089\twith:0.10431874299438908\tas:0.08253756204201326\tand:0.06741820226476208\twas:0.06047800486923578\tis:0.05676259641791416\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.26631771811439525\tand:0.20187492102926918\tof:0.1589843633303804\tto:0.11059027842715602\tin:0.0571012098710703\tthat:0.051462395651177245\tsaid:0.050581573006078746\tfor:0.04673165755322649\this:0.04635588301724631\t:0.01\n",
"of:0.3752045651016961\tin:0.34107226636709187\tIn:0.063323074804782\tto:0.059373309237543165\ton:0.044537139347997884\tfor:0.0323790496757859\tfrom:0.03231967997213768\tby:0.02412026982410125\tinto:0.017670645668864324\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.5935375746958178\ta:0.1293002059443247\tof:0.08352132949980437\ttho:0.05175969438874167\this:0.038308839840151584\tThe:0.03134691107038882\tour:0.02444532539932953\ttbe:0.0205075950365788\tand:0.017272524124862774\t:0.01\n",
"and:0.28037075074322987\tdo:0.17263268937907955\tis:0.1320967458771151\twas:0.11142866576407603\tnot:0.06652810473167863\tAnd:0.06595457509614014\t;:0.058889165060910645\tare:0.0531925916739241\tbe:0.04890671167384599\t:0.01\n",
"a:0.16708194352521677\tfel-:0.16011195649182866\tas:0.1292193866949771\tis:0.1134776254286908\tand:0.09092022891659415\tthe:0.08801005919131373\tof:0.08454356608927735\tbe:0.08268828824022163\tfol-:0.07394694542187975\t:0.01\n",
"so:0.1760165658941351\tof:0.14949769167081106\tin:0.12044463059327694\tand:0.11001724059777046\tas:0.10675562777882028\tthe:0.09979829453072665\tfor:0.09482125265586638\twith:0.06977344793354932\tgreat:0.06287524834504374\t:0.01\n",
"that:0.2169829073979379\twhich:0.13882574885174886\tand:0.13494777101344074\twill:0.09648075625036644\twhen:0.09430117639618973\tto:0.09306594583287492\twould:0.09119376815548207\tshould:0.06559174320413765\tas:0.05861018289782162\t:0.01\n",
"the:0.5443381295603745\ta:0.21721138193766873\tThe:0.06514357860369203\tto:0.05349628260222359\tand:0.033706598204234814\ttho:0.024043365737743464\tno:0.023914313150359988\tof:0.016785779222910354\ttbe:0.011360570980792614\t:0.01\n",
"w:0.48220810083510773\tthe:0.18150648306599082\tand:0.10982388633157757\t\\\\\\\\:0.07562352295952718\ta:0.05034334433610209\tof:0.035198654403122726\tThe:0.02213015444247008\t<s>:0.017186134960253074\tim-:0.015979718665848536\t:0.01\n",
"of:0.3336780476486269\tin:0.1150121972742167\tand:0.11134197531742805\tto:0.09715994742496628\tfor:0.08080902135141348\twith:0.07690895712585684\tthat:0.07169233152386086\ton:0.057499490095272644\tis:0.045898032238358234\t:0.01\n",
"and:0.20638878887125045\twell:0.19873831791044558\tregarded:0.1231890387740247\tknown:0.09235606727943454\tsuch:0.09116838074041536\tsoon:0.08225074591371048\tmuch:0.06875708068222428\tjust:0.06568533165596226\thim:0.06146624817253221\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"the:0.24151880091757555\tof:0.22229851378227303\tand:0.1795890508951101\ta:0.08748588758598046\tto:0.06388724456799588\tin:0.05669685762196655\t<s>:0.05592532541190344\tfor:0.041635793769414564\tbe:0.04096252544778048\t:0.01\n",
"the:0.4495254594759759\tof:0.14214934462512158\ta:0.10442027381962456\tand:0.09764130636092663\tto:0.05775706125631166\tin:0.047503276805613906\tor:0.033687089232191686\ttho:0.029394595454062748\tbe:0.027921592970171244\t:0.01\n",
"of:0.39228269317277126\tfor:0.1402278093032855\tin:0.11619660107513156\tto:0.09219229685713685\tthat:0.07692202433591451\tby:0.05647846800225527\tand:0.0498072292455988\tduring:0.036887630419009845\tat:0.029005247588896277\t:0.01\n",
"the:0.3717153271024305\tof:0.22972143140062026\tThe:0.15765229037720044\tand:0.058552775384830634\ta:0.04953777991936128\tin:0.0372559625519528\tthat:0.030580815374333246\this:0.029312907947719884\ttho:0.025670709941550962\t:0.01\n",
"one:0.2212328057605412\tout:0.15939755708088252\tpart:0.14033788569933314\tthat:0.11135669960407651\tand:0.0997551682234425\tsome:0.08052259092961321\tall:0.06699904848109765\tmany:0.05530268913628873\tpeople:0.05509555508472449\t:0.01\n",
"in:0.42982769783868724\ton:0.2702612523576376\tIn:0.1403757713560947\tof:0.0491313619342328\tthe:0.04345583620826489\tOn:0.030075105792111576\tand:0.01035125332185591\tiu:0.010023443854434964\tfrom:0.0064982773366802585\t:0.01\n",
"of:0.20710539120513918\tis:0.13585187402884558\twith:0.12284835399094125\tto:0.12031573155318899\tin:0.09694693951563668\twas:0.08952259000807683\tas:0.0825109009247548\tand:0.06761472620214304\tby:0.06728349257127367\t:0.01\n",
"be:0.23943333851177467\twas:0.15320887068832853\thave:0.12158761152372549\thad:0.10886940166625979\thas:0.10657103118785069\tbeen:0.09666782203378482\tis:0.0685901677448157\tnot:0.0558685834939292\the:0.03920317314953107\t:0.01\n",
"the:0.7693178021754622\tand:0.051724252046114576\tThe:0.047848245761059255\ttho:0.041204048513734624\tas:0.0374504283933\ttbe:0.01344202390019092\ta:0.011274556010962326\tan:0.00894608685262509\tor:0.008792556346551064\t:0.01\n",
"of:0.2537403830613674\tto:0.11658353054875496\tand:0.11512523528448267\twith:0.1011662709660989\tin:0.09569476657657063\t-:0.08693630953125941\tis:0.07514381371182731\twas:0.0742268123367157\tfor:0.07138287798292293\t:0.01\n",
"a:0.648091185908516\tthe:0.1779562130801258\tof:0.05781669596019208\tthis:0.03515393031909769\tin:0.015640858680876047\tany:0.015038382672338597\tand:0.014687466407493714\tour:0.013658631510340889\tA:0.011956635461019199\t:0.01\n",
"a:0.3438839433786467\tthe:0.21505861911675156\tand:0.12549079255712303\tof:0.11977532533060835\tin:0.04324994446085516\tno:0.03974268668419713\tfor:0.03855254885639557\twith:0.03254127422998696\tor:0.031704865385435495\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.4655185966590086\tof:0.21385799335483274\ta:0.11911524806175755\tand:0.04968182374001496\tto:0.03196058063470554\ttho:0.030625198264294405\tThe:0.02871918557420521\tin:0.025521021216524758\tother:0.025000352494656236\t:0.01\n",
"he:0.23441967341169898\tand:0.18217746591554732\twho:0.11656475965071622\tit:0.11243263914395754\twhich:0.08473963328192807\tHe:0.08088655919174453\tthat:0.07379737091147204\tIt:0.06527493474369168\tshe:0.03970696374924357\t:0.01\n",
"<s>:0.3956046941949344\tit.:0.12228710750232026\tthem.:0.09215996668612447\thim.:0.07539688321959762\ttime.:0.06668760078587475\tyear.:0.06336686832532963\tcountry.:0.06273206562061297\tyears.:0.06063260677674943\tday.:0.051132206888456426\t:0.01\n",
"one:0.25096034911988363\tall:0.14868292273108788\tout:0.14800427986804152\tpart:0.11979153945342838\tsome:0.09105809853380172\tnumber:0.07119397712427801\tside:0.05764259611422086\tcost:0.05221788508163529\tportion:0.050448351973622706\t:0.01\n",
"the:0.2847604859436903\tNavy:0.2086710291182339\tWar:0.16515679389254997\tTreasury:0.10046665944620745\tof:0.07051669701921216\tState:0.05829849395849311\tFire:0.050333811390698764\tsuch:0.029979076700381652\tand:0.021816952530532608\t:0.01\n",
"and:0.20735053701823788\tto:0.15387785739540455\tthe:0.1454095517627379\tof:0.10553893519947838\twas:0.10277634254014693\t.:0.09209270802663322\tMrs.:0.07075792840449592\t<s>:0.06338869857582367\tI:0.048807441077041686\t:0.01\n",
"of:0.2537223515190862\tto:0.1854839873040766\tfor:0.13283557060688542\tupon:0.08629349016492195\twith:0.08472802592538152\tby:0.08083752175561944\tin:0.07150007754550503\ton:0.052895070435785875\tfrom:0.041703904742737996\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"provided:0.23217950814956406\tcalled:0.15971374030075788\tmade:0.15834799044248346\tpaid:0.14151959809120865\tand:0.11531185113594421\tcared:0.05852703493291159\tshown:0.04315695862687935\tgiven:0.0421149880248162\tvoted:0.03912833029543445\t:0.01\n",
"the:0.23863410058153164\tan:0.20521080959732965\tand:0.15286505486235324\tof:0.12367342633647288\tto:0.07348920581285309\tThe:0.05770353206594678\tin:0.051785770323392544\twith:0.04363083417852361\ta:0.04300726624159661\t:0.01\n",
"the:0.6103764511390612\tThe:0.09252568024220037\ta:0.0524322947911347\ttho:0.05078147916918246\tand:0.03790968957346723\tof:0.037896702152342296\ttheir:0.03770604225505472\this:0.03633865160571087\tin:0.03403300907184629\t:0.01\n",
"<s>:0.3555512561016819\tit.:0.15471331482865935\tthem.:0.10852639640492653\thim.:0.07641661402687347\ttime.:0.07495162759029043\tcountry.:0.0605704891382502\tyear.:0.06039277327436307\tagain.:0.04958182261272844\tment.:0.049295706022226604\t:0.01\n",
"and:0.2708555229503238\tof:0.16875357166365473\tthe:0.15806028549716694\tto:0.1266985020119527\tbe:0.06506136079902888\ta:0.05367233913074959\tmore:0.052564597091336124\tin:0.048713423836331086\twas:0.04562039701945622\t:0.01\n",
"all:0.1741668529532661\tof:0.17163441761817322\tand:0.1504608848512784\twas:0.122946265633498\tis:0.08285170463002854\tit:0.08141337541723163\tfor:0.07816749861825331\twent:0.06640024306940502\tin:0.06195875720886578\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.21464924949537284\tand:0.18957015814415806\tan:0.1460303145678161\tis:0.12004251412270572\tmost:0.08812644278989448\tof:0.0705505174257434\ta:0.06130935976794653\twas:0.05434544785659937\tare:0.04537599582976354\t:0.01\n",
"he:0.19216420268890672\tI:0.14249478219207085\tit:0.1393078157224164\tIt:0.12149617874351198\tHe:0.08856204987147628\tand:0.08730213392007194\tthere:0.08170176791215107\twhich:0.07289892602507458\twho:0.06407214292432002\t:0.01\n",
"the:0.3132510161983398\tof:0.20486283284131138\tand:0.14597479242282507\tto:0.09212356202286397\ta:0.06379933223107616\tin:0.05390073143526956\tmore:0.04120050653390081\this:0.03922492059718362\tbe:0.035662305717229746\t:0.01\n",
"the:0.22335451367560188\tof:0.18153182046609662\tas:0.12059135769970712\tand:0.10367654401934799\tto:0.09205779218973197\tby:0.07812699600575215\tat:0.07374457088040261\tin:0.06378910748540038\ta:0.05312729757795932\t:0.01\n",
"the:0.29299944965662217\tof:0.20858169245563896\tRed:0.1711019641305629\tand:0.07395319765278928\tin:0.06570386547121823\tthat:0.05960960438055597\ta:0.04671657210696235\tto:0.03573495758905615\tsaid:0.035598696556593985\t:0.01\n",
"and:0.25625387041193765\tplace:0.23302989048039086\tpoint:0.12404273927876845\tspot:0.08473761952807539\tknow:0.08247107628680542\troom,:0.059393416819199095\tthat:0.05674228312242792\tplaces:0.04898134616682404\thouse,:0.04434775790557134\t:0.01\n",
"the:0.5961299935514127\tand:0.0991517820006296\ta:0.07449915963632098\tof:0.045612421655196696\tThe:0.04554283218044092\ttho:0.039516371723805656\tor:0.035087361218755594\tlast:0.027300952150221016\tthat:0.027159125883216822\t:0.01\n",
"the:0.21522454785192902\tof:0.21264150990612754\tin:0.15905153292606905\tand:0.09501204556435516\tfor:0.08557207918284017\tmost:0.07011450695538322\tan:0.0699699942295455\tto:0.04345817998800972\tmore:0.03895560339574063\t:0.01\n",
"of:0.17193292051306375\tfor:0.17139885622270568\tand:0.14880293847952583\tin:0.13418582374450308\tto:0.12018011085679176\tthe:0.10678319882182948\tI:0.05056931262662486\tIn:0.04523800066741578\tthat:0.04090883806753986\t:0.01\n",
"have:0.3339665819054502\thas:0.32755542866461484\thad:0.20828879401404263\thaving:0.045205749450952806\tnot:0.02712165812879421\tever:0.014441823618477186\tbad:0.012833445342722245\tlias:0.011195854057983566\thavo:0.009390664816962326\t:0.01\n",
"of:0.4497285201445156\tin:0.18970144733683242\tto:0.11567379460502972\ton:0.06311022727521406\tby:0.04086786165679485\tfrom:0.034872773813334805\tIn:0.03363915897487356\tand:0.032565559522013274\tfor:0.029840656671391765\t:0.01\n",
"of:0.4350691121933086\tin:0.17590693507051808\tto:0.10103820455278756\tIn:0.05410244356178705\tthat:0.04894784282719977\tfor:0.04796761694587244\tby:0.04368040144683445\tand:0.04226712549192657\ton:0.0410203179097653\t:0.01\n",
"be:0.3261582696274826\tis:0.16682787983175273\tare:0.1492070221675558\thereby:0.10009574616439888\twas:0.07946180479552914\tbeen:0.053084234267630266\tand:0.0397106549622311\twere:0.03892282637027751\tas:0.036531561813141926\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"he:0.33274128835162037\tI:0.2124939256761349\tthey:0.0824178384195034\tshe:0.07597712877843509\twho:0.0648198529021005\tthat:0.06156865410249643\tit:0.05811858836358071\tone:0.05540519507044872\twe:0.04645752833567986\t:0.01\n",
"to:0.6200374345886432\tthe:0.10951157728727927\ta:0.0413286669090459\tnot:0.04076703087486915\twill:0.04041854768167165\tor:0.040137913599822446\twould:0.0394488947485532\tand:0.029427842343728826\tcan:0.02892209196638612\t:0.01\n",
"of:0.4719360129115267\tthe:0.1426745309195729\tin:0.09531714768904948\ta:0.07262507202263561\tand:0.06003801780002505\tto:0.048002357607727864\tby:0.040841873417955976\twith:0.030825509838310918\tfor:0.027739477793195404\t:0.01\n",
"and:0.35482815172298954\tmiles:0.14932020724913664\tor:0.13519251055456635\tfree:0.08100749418133457\tthan:0.0702935800279418\tthem:0.056163977515164436\tcome:0.0493533050859757\tfar:0.04699755719173294\tout:0.04684321647115798\t:0.01\n",
"from:0.21802200205555064\tthe:0.19694833446729548\tin:0.12247782210057058\tthat:0.08945903226427072\tsome:0.08261572909543535\tany:0.0797247730890875\tthis:0.07278699757577482\ta:0.06676927872790638\tsame:0.06119603062410855\t:0.01\n",
"that:0.25082721774418454\tand:0.17042390707006805\tas:0.15128640545923766\twhen:0.10156670650590631\twhich:0.07857542487888396\tuntil:0.06659884913235843\tbut:0.06399581761285986\tif:0.05942107854263006\tbecause:0.047304593053871066\t:0.01\n",
"for:0.22586853907139806\tin:0.17498939376557693\tof:0.16741035700796641\twith:0.09376489879711111\tto:0.08718496334123685\tand:0.0836841715808183\twas:0.06964059209458019\thad:0.04417040410790925\tis:0.04328668023340284\t:0.01\n",
"that:0.31477914547653374\tand:0.20075168692270082\tbut:0.1078760036867674\tas:0.09014379652450287\twhen:0.0823790812736193\twhich:0.08073958256682875\tif:0.04767380552388467\twhere:0.03845583820312528\tuntil:0.027201059822037178\t:0.01\n",
"of:0.2697065975318227\tthe:0.16285046892702607\tfor:0.13761178838663865\tand:0.09781431611175553\tany:0.07778247097783625\tno:0.07589201762369811\tin:0.07320278982432565\tsuch:0.04858341103179253\tpublic:0.04655613958510448\t:0.01\n",
"the:0.4240098118758632\ta:0.1817936446722017\this:0.1005302832809802\tof:0.07663118406106932\tand:0.04895489018061306\tThe:0.04354682062662221\tthat:0.04219791617212838\tthis:0.036250215124155986\tmy:0.036085234006366006\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.252138786174982\tand:0.2153253382127518\ta:0.15317149285556528\tto:0.11396853897350166\tof:0.09334576142189667\this:0.0456211362254056\tis:0.040644186672772524\tbe:0.038605430330245515\twas:0.03717932913287896\t:0.01\n",
"of:0.30460170007658327\tin:0.15823302268285266\tand:0.1406677005881453\tthat:0.07966390433253047\tfor:0.0794464044714088\tto:0.07226009068863108\ton:0.06507682541341048\tby:0.045708615949442304\tIn:0.044341735796995595\t:0.01\n",
"the:0.2234664831778662\tof:0.2184330657675865\tin:0.21736375313127243\tfor:0.07724299186074977\tand:0.07052144239108794\tIn:0.06886943526748672\tthis:0.04642770568260868\tto:0.042535461910172\tthat:0.025139660811169782\t:0.01\n",
"all:0.31565326970158236\tother:0.16580339134940758\tthe:0.15829800825366\tdifferent:0.12028496182537028\tvarious:0.08190341735194766\tmany:0.0513117168936095\tand:0.043145249633335686\tof:0.026961133528066797\ttwo:0.02663885146302011\t:0.01\n",
"and:0.2675530231482183\tmade:0.1475064843416865\taccompanied:0.11178221525740636\tthat:0.09428183053023477\tor:0.09227188479736162\tfollowed:0.08095124246280751\tonly:0.06649206094473835\tsurrounded:0.06501428227539675\tcaused:0.06414697624214977\t:0.01\n",
"they:0.275039178330209\twho:0.18462712672434262\twe:0.13509772545846094\twhich:0.08366563180083819\tThey:0.07324126368949521\tyou:0.06939107379120876\tand:0.06724961100066543\tthat:0.051861582592973486\tWe:0.049826806611806225\t:0.01\n",
"his:0.3446646993309309\ttheir:0.25539210446130994\tour:0.0965086085783402\ther:0.07051266857145902\tits:0.06698772557697923\tyour:0.06517201383835564\tmy:0.06181065517247737\tbis:0.0207590236231213\tto:0.008192500847026286\t:0.01\n",
"is:0.3107728887603819\twas:0.12558880272532064\t;:0.12078126807984661\tnothing:0.10306897741552232\tare:0.08111712164045444\tand:0.07707530397438024\thad:0.062408402889212566\thave:0.05482253267904445\tto:0.05436470183583669\t:0.01\n",
"of:0.456869104390992\tin:0.10975166113399032\tto:0.09563062470098066\tand:0.0937705597895411\twith:0.05858189155413482\tthat:0.05346485142653295\tfor:0.05015105702303389\tfrom:0.039141032158316776\tby:0.03263921782247752\t:0.01\n",
"of:0.38115699462130104\tin:0.15521695486962922\tand:0.0911288930483079\tto:0.0902242289691268\tat:0.06326749313727359\tfor:0.060939910074399\ton:0.05782525681361866\tfrom:0.0455043078981717\tIn:0.044735960568171924\t:0.01\n",
"of:0.297041737567345\tat:0.13440475044217515\tto:0.10838291476104796\tfor:0.10674943870303029\tin:0.09996745329207186\tand:0.08777957718260361\ton:0.05750961029043896\tfrom:0.04991414421083168\tduring:0.04825037355045556\t:0.01\n",
"the:0.4113678361169536\tand:0.18080929381632752\tThe:0.1643483406353988\tof:0.09019305767540764\tthese:0.04661798097110718\tThese:0.026058763704191905\ttho:0.02524245874287798\tfor:0.023391423341127\tthat:0.02197084499660843\t:0.01\n",
"United:0.8848731775804126\tthe:0.04407297553959428\tSouthern:0.017000245298212712\tted:0.00829775095676571\tI'nited:0.007802512126651418\tthis:0.007295672928523232\tConfederate:0.007120224721502038\tUuited:0.00700852566671484\tthat:0.006528915181623249\t:0.01\n",
"the:0.2793357405607959\tand:0.17507839913382103\ta:0.16092819871363123\tof:0.1190954181967364\tto:0.0913567733142447\tin:0.05019268040724791\tor:0.04228746948231218\tis:0.03819370391948089\tfor:0.0335316162717298\t:0.01\n",
"the:0.47886724515444734\ta:0.16350956847750153\tthis:0.07921067370259915\tof:0.073769823275669\tand:0.046964412396125435\tThe:0.04280650098918231\this:0.039125668158103935\tno:0.03703578268540815\tany:0.028710325160963116\t:0.01\n",
"the:0.265614222026395\tof:0.18859937080241776\tand:0.15745233045539025\ta:0.1072611646622572\tto:0.10019220206305125\tin:0.059191628930515654\tat:0.056875806849323356\t<s>:0.028919342441296493\tby:0.025893931769353017\t:0.01\n",
"up:0.297043230169392\tin:0.25132844038633684\tdue:0.08558206750888915\tout:0.07431603215896164\thundred:0.07414613090168128\t;:0.05774244296161051\thim:0.05101317694647171\tdown:0.05079390482717956\tto:0.04803457413947715\t:0.01\n",
"of:0.2596329956818401\tin:0.18804155210850365\tand:0.15296093603760272\tto:0.09495148244241582\twith:0.09467602361980795\tall:0.05952589485833921\tfor:0.05815394988252458\tat:0.04174217498581602\ton:0.040314990383150034\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
";:0.2168088007452265\tup:0.17682453613587082\tthem,:0.09053299638160076\tit,:0.08827835094126033\tin:0.08756142412010726\tyears,:0.08612884779474349\tStates,:0.08437911467834915\thim,:0.08132578910373672\tand:0.07816014009910499\t:0.01\n",
"the:0.3219954639272574\tand:0.1896043965869666\tof:0.18938784711854723\tthat:0.1256221550786909\tThe:0.07387937001562984\tin:0.03031399426665969\tMr.:0.029339786089562593\ttho:0.014967614703817727\tGeneral:0.014889372212867959\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"the:0.4296733500335901\ta:0.30677805126575586\tof:0.06029590949388562\tThe:0.05322170354312578\twith:0.039216402772143465\tand:0.0350654902695585\this:0.025048632470323417\ttho:0.021419640146003824\tin:0.019280820005613347\t:0.01\n",
"as:0.20237798561569872\tin:0.1294595699787714\tto:0.11671738796871146\tof:0.11459210613226083\tat:0.10374443765597416\tsuch:0.09152004877337537\tfor:0.08412576389888168\tis:0.07765782824194652\twith:0.06980487173437977\t:0.01\n",
"is:0.2029437746932175\tbe:0.160990347806269\tnot:0.13990164781263237\tas:0.13448074718208375\tand:0.10456135694539266\twas:0.09616811521874175\tare:0.055795551817267044\tit:0.05409079202946102\tmade:0.04106766649493488\t:0.01\n",
".:0.31744404894888817\t<s>:0.3010066582289515\t8.:0.06036287927914963\tand:0.058557595791321485\tW.:0.05600267191064719\tA.:0.05560860019045797\tit.:0.05408283381259829\tof:0.04353392918968781\tMrs.:0.04340078264829791\t:0.01\n",
"and:0.32645004556120627\tmade:0.1792117983394026\towned:0.11155862856110099\texecuted:0.0778409364493694\tdelivered:0.07628699375680496\tthat:0.06784665186227805\tgiven:0.051269688937303104\tthem:0.05050330865954765\toccupied:0.049031947872986995\t:0.01\n",
"of:0.3645673276069836\tby:0.1551421185979079\tthat:0.11726863699123187\tto:0.09606228379450857\tand:0.08906829855050474\t<s>:0.05695506627054468\twhich:0.04007946656923639\twith:0.039856950280875506\tfrom:0.030999851338206565\t:0.01\n",
"and:0.2793253893946551\thim:0.21853096368178213\tit:0.08476260842951357\tasked:0.07674456600068782\ttime:0.07369009613178286\treason:0.06587256718491909\tmade:0.06552442478440415\tnecessary:0.06278741969048687\tenough:0.06276196470176812\t:0.01\n",
"do:0.3076046414810905\tand:0.289143729417943\tdid:0.116186941435601\tto:0.06443028952419189\twill:0.047613191871223454\twas:0.04596372622157994\tor:0.045282468198949155\tnot:0.038233854783277454\tcan:0.0355411570661436\t:0.01\n",
"of:0.4526780903997624\tin:0.19124233019821602\ton:0.11978725524063681\tfrom:0.04858032353069892\tto:0.04304643642285629\tIn:0.038931965067697874\tdated:0.03881162262262917\tfor:0.03186124040896504\tby:0.025060736108537568\t:0.01\n",
"to:0.7384096064012925\twill:0.07536501513412078\tnot:0.04296909638198008\twould:0.03462212114213801\tand:0.03181411138221994\tshould:0.01896666672245038\tmay:0.017093603114516152\tat:0.015719892973372205\tmust:0.015039886747910064\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.31535798878987814\tof:0.22972837233506188\tand:0.18713977344717184\tThe:0.05905499999155073\tto:0.0562832280855255\ta:0.04963999884722086\tthat:0.033928931327183415\tan:0.029757186123146397\tin:0.029109521053261235\t:0.01\n",
"a:0.5457636047808748\tthe:0.14999129555649293\tvery:0.0671403932564\tbut:0.053047814505814056\tof:0.044860033648797634\tand:0.03921229272247331\tA:0.033676518519295234\tis:0.03161899068593396\twith:0.024689056323918088\t:0.01\n",
"the:0.33971532246240616\this:0.17432880808113546\ta:0.09975516050770217\ttheir:0.09093320742647526\ther:0.07141357172710695\tthis:0.06573897533001549\tof:0.060456255597345646\tany:0.0457772331157666\tmy:0.04188146575204619\t:0.01\n",
"and:0.26269237400024886\tthat:0.2134579709419004\tbut:0.16452751573453867\twhat:0.0724225669877434\twhich:0.06841987950033718\tas:0.06545859075148076\twhen:0.056356850517246836\tif:0.05105301798183017\tIf:0.03561123358467381\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"be:0.3035492051085526\tbeen:0.16691173989451877\twas:0.14106588086469865\tare:0.08834854592624078\twere:0.07398022485529095\tand:0.06898355761389689\tis:0.06556822435313223\tnot:0.04565239560509198\thave:0.035940225778577306\t:0.01\n",
"and:0.30924221119967327\tthat:0.12611015277008547\tmade:0.09865062957046655\tis:0.0920144699599962\twas:0.09128595813112018\tplaced:0.07404370378857507\tas:0.06709678931603316\tbe:0.06629358245444635\tor:0.06526250280960379\t:0.01\n",
"he:0.29631509765651315\tthey:0.12446031800486433\tit:0.11927376854797352\tI:0.11448729836238142\tthat:0.08403808674513617\tshe:0.06989966367048016\twho:0.06752602362780764\tIt:0.060008278113645355\tHe:0.05399146527119808\t:0.01\n",
"of:0.2442598303831477\tin:0.1949520407606569\tto:0.14401693934043922\twith:0.098868855007948\tand:0.09399504898204242\ton:0.06881330971087021\tfrom:0.04968271003295342\tthat:0.04828865099335347\tat:0.04712261478858869\t:0.01\n",
"a:0.28365625181469095\tthe:0.2558927510855615\tand:0.0946450597876406\this:0.08433054768694441\tof:0.07144067231757802\t.:0.06846515011399805\tA:0.05898471406493319\ther:0.03968426446456142\tThe:0.03290058866409198\t:0.01\n",
"the:0.2131927231606264\tof:0.16217903375940657\tand:0.15972059496727598\tto:0.10588622041772466\tfor:0.10129369630961303\ta:0.09542457438191172\tin:0.06730074781140234\twas:0.04403750173733229\tbe:0.04096490745470728\t:0.01\n",
"of:0.19950172929508872\tin:0.19565164401938998\tto:0.19334913365002876\tand:0.138628907560729\tthe:0.0825114772091843\this:0.06061356060731272\ttheir:0.045439362426791446\tIn:0.03773992340200535\tits:0.03656426182946975\t:0.01\n",
"a:0.2467164871996422\tat:0.2439874588721936\tthe:0.16106407851821988\tany:0.08960302358212084\tin:0.07476416572070443\tno:0.055045953936642286\tof:0.050305817222632505\tfrom:0.04262605968831813\tevery:0.02588695525952616\t:0.01\n",
"of:0.7110174294134934\tamong:0.06734583007305674\tfor:0.04174390948190276\tto:0.03874872004128605\twith:0.03536190864169597\tby:0.034642999291530994\tupon:0.023245240790323557\tlet:0.020012803371097038\tAmong:0.01788115889561355\t:0.01\n",
"be:0.26400126250592926\twas:0.22220152459011902\tbeen:0.1158977311751774\tis:0.10894035234657025\tare:0.07957691955683616\twere:0.07821240568984547\tas:0.045817117326328566\tand:0.038294789784996404\tan:0.03705789702419743\t:0.01\n",
"that:0.17034735897983955\tand:0.16719345318715048\the:0.13756157329709578\twhich:0.13001701215020361\tit:0.125531142335939\tIt:0.0852548557704659\twho:0.07893107751261318\tas:0.05901943455676336\tI:0.03614409220992906\t:0.01\n",
"part:0.21496902104278678\tone:0.20912369233988043\tsome:0.12867331343811736\tout:0.1057303116879626\tmembers:0.07618604502434112\tand:0.06636584999188522\ttion:0.06479865598258486\tportion:0.06226235532256281\tside:0.061890755169878825\t:0.01\n",
"away:0.17501823348572754\tand:0.16742120311487937\ttaken:0.11752864359726309\tcame:0.11394310261347558\tcome:0.113090749115388\tmiles:0.08161807990167866\tthem:0.07674508647747993\thim:0.07508147615060067\tfree:0.06955342554350721\t:0.01\n",
"is:0.16285750683999792\tnot:0.1552360508743664\twas:0.1513309072831328\tand:0.15051995690637257\twill:0.10364089841334301\tbe:0.09190255775046703\tthat:0.0673608576157549\tare:0.05923181701106497\thim:0.047919447305500455\t:0.01\n",
"and:0.2967704236201929\tthat:0.20249984946197658\tas:0.1471570126983292\twhen:0.07851276999627274\tbut:0.07798664836586859\tso:0.060786438246293796\t<s>:0.045277071205847966\tthe:0.041717052448155365\twhich:0.03929273395706284\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.35763457265784887\tof:0.1701558002533134\tand:0.13336838216028662\tto:0.1301335318975087\tthat:0.04214179955677385\tin:0.04161749712272057\tbe:0.040567934343876684\ta:0.03765193968205198\t<s>:0.03672854232561916\t:0.01\n",
"be:0.3248387084357595\tis:0.15815943667048699\twas:0.15030826326435495\tare:0.14085566008547637\tbeen:0.06311098067110694\twere:0.05288116540339679\tand:0.04848189601357823\tnot:0.03116532260058163\tbo:0.020198566855258605\t:0.01\n",
"of:0.5012834026730114\tto:0.1107240714410726\ton:0.08469984837598638\tin:0.0838429749488274\tby:0.06294128783854318\tand:0.04951185218932521\tfrom:0.03537758092178351\tthat:0.03509520061385631\tfor:0.02652378099759416\t:0.01\n",
"foreclosed:0.21354426481975966\taccompanied:0.15326393402647306\tmade:0.13791131994204262\tand:0.13215418511823615\tfollowed:0.12340081914410177\tsurrounded:0.0697778146110107\tup:0.05787632017490193\tcaused:0.051337079258656944\tsecured:0.050734262904817265\t:0.01\n",
"have:0.35328946251732735\thas:0.26744366091419525\thad:0.24268234427973348\tnot:0.03551493986454824\thaving:0.03354582231468265\tbad:0.016242173594263446\tever:0.014998571799669675\tnever:0.014904747853835004\thavo:0.011378276861744826\t:0.01\n",
"the:0.20743539721876972\tand:0.20145546329301345\tof:0.11769075297267893\twas:0.09660498250630833\tan:0.0925505350186969\tbe:0.09248700466773514\tis:0.06399385629135425\tto:0.0603247149010709\ta:0.057457293130372344\t:0.01\n",
"the:0.27858690966259986\this:0.198866697867065\ta:0.17706040733803458\ttheir:0.08250072519466313\tmy:0.06635999410274128\tyour:0.05251251533455066\tdis-:0.05049897312455824\tand:0.0499842700521425\ther:0.03362950732364469\t:0.01\n",
"of:0.28332039449280694\tin:0.14984593265131088\tand:0.1284641553905941\tto:0.11778656324180989\twith:0.09026987808758531\tfor:0.05978378552307896\tfrom:0.059549877404379066\tthat:0.053072827662554264\tat:0.047906585545880495\t:0.01\n",
"100:0.144063876705775\ttwo:0.140128632966137\tthree:0.13310673323327313\tfive:0.1312794151818618\thundred:0.127647286514645\tsix:0.12194073420398617\tfifty:0.07065691891487756\ttwenty:0.06494249530439891\tten:0.05623390697504536\t:0.01\n",
"<s>:0.18621690106044003\tand:0.1752160247462042\tit.:0.16982006833508198\tthat:0.16280351129503343\tthem.:0.10654542852026783\t?:0.0632540476486505\tbut:0.04343775044441371\tus.:0.041536418494589784\ttime.:0.041169849455318555\t:0.01\n",
"to:0.19140640912499804\tof:0.1882159107783918\tthe:0.17648122206403752\tand:0.12546828186835376\tin:0.09548946574017496\ta:0.07768874022100611\tat:0.05413372231186154\tthat:0.045552334529352256\twith:0.03556391336182398\t:0.01\n",
"the:0.28673269113363326\ta:0.24727775574164543\tand:0.1394099165823667\tmost:0.13365727389415044\tof:0.07844334940782884\this:0.03294146723518543\tare:0.025217428365869023\tmore:0.02376851273861063\tvery:0.0225516049007103\t:0.01\n",
"he:0.3337857417683195\tand:0.24394376441210977\tHe:0.11524572288411433\tI:0.11030261195791387\twho:0.05832346967870966\tshe:0.04195802273135784\t1:0.03272418547152448\twhich:0.027413243364689303\tho:0.026303237731261135\t:0.01\n",
"thence:0.8037242748609735\tbears:0.03551269676472498\tS.:0.029748845360225224\tof:0.02759990763929487\t.:0.026234958018660274\tand:0.02605904783028112\tto:0.016211585541021655\tW.:0.013064051599018805\tE.:0.011844632385799525\t:0.01\n",
"at:0.5951027680912986\tand:0.09531888135736855\tof:0.08334583814632888\tNo.:0.04769628839662218\tabout:0.04100174853868967\tto:0.0401561267534989\tAt:0.038396182516713326\tfrom:0.02556802917933731\tfor:0.02341413702014263\t:0.01\n",
"<s>:0.2132579718233607\tit.:0.20423777968548298\tthem.:0.16550753445878985\ttime.:0.08655136882311419\thim.:0.08557086719335251\ther.:0.06229400741926231\tcountry.:0.05866990112628913\ttion.:0.05863332319997976\tday.:0.05527724627036856\t:0.01\n",
"in:0.6081942832187643\tIn:0.16299188517115262\tof:0.08830876341654714\tfrom:0.05605747558979529\tfor:0.01863429714126885\ton:0.017023302438928193\tthe:0.013521312570323823\tat:0.012881011570450403\tiu:0.01238766888276947\t:0.01\n",
"and:0.22457484791693796\tthe:0.21639535452019124\tto:0.1345470860660392\tof:0.12749301081947784\tin:0.06553649397530097\tthat:0.06165198815741721\twhich:0.05973289088305547\ta:0.0536871595894554\tor:0.04638116807212473\t:0.01\n",
"and:0.21963536500993427\tis:0.12428859660750899\twas:0.12428610483884377\tbe:0.11552781587297621\tsucceeded:0.10297729583872246\tare:0.09786629852003338\tmade:0.0764328130873854\tthat:0.06529734902564671\tit:0.06368836119894856\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"and:0.26470729023746414\twhich:0.14900208635144258\thave:0.10624560673569224\tthe:0.10414224301639052\thas:0.08939218433906831\tof:0.08819082663776785\thad:0.08345664495736348\tit:0.052982967906128955\tIt:0.05188014981868178\t:0.01\n",
"it:0.18853622186923139\the:0.18518470710984383\tIt:0.13365433665589793\tI:0.11611198250759111\twhich:0.08454378806794766\tHe:0.0822902503016475\tand:0.08147037069069046\tthat:0.06858610697116999\twho:0.04962223582598018\t:0.01\n",
"and:0.18038224430568867\tas:0.13554351411931762\twent:0.12372506225790274\thim:0.11045890271840679\tenough:0.09551301895106995\tright:0.09091714081213759\tit:0.0872451896230969\tthem:0.08412354702475645\tmade:0.08209138018762314\t:0.01\n",
"a:0.22640118558434463\tto:0.15904002102430562\tthe:0.15507093584233314\tof:0.14047962409924733\tand:0.12603335001859028\tat:0.059106072609805986\twith:0.047917007706878054\tby:0.038776332906325484\tin:0.037175470208169366\t:0.01\n",
"in:0.7545019339910716\tIn:0.14886327565011262\tthe:0.028196734928118382\tiu:0.01784203956127898\tand:0.010550585865015753\ta:0.010381805246058657\tof:0.00919523443533868\tto:0.005989887465352636\tunder:0.004478502857652691\t:0.01\n",
"one:0.20904861871896518\tpart:0.14646287223281468\tthat:0.12329779486171277\tout:0.1038613392101026\tand:0.09953010715096167\tday:0.09867420448048551\tall:0.08781371664340824\tsum:0.06412462317513686\taccount:0.057186723526412415\t:0.01\n",
"that:0.3220657728484067\tand:0.16316070372675961\twhich:0.13893279738451686\tas:0.11128413838379696\tbut:0.07021087836888308\tif:0.057146852208377584\twhat:0.05604841128343923\twhen:0.0373400839045134\tIf:0.033810361891306734\t:0.01\n",
"is:0.19233156028604595\tbe:0.1854202262511825\tof:0.14203865239185298\twas:0.12496261907610492\tand:0.09620578661819473\tto:0.0733901455354962\twith:0.06381489541656042\tin:0.06253345775820213\ton:0.04930265666636008\t:0.01\n",
"of:0.39185805109782784\tin:0.34943322468708304\tIn:0.09005509616248362\tto:0.059729633105020156\tfor:0.027171527244810152\tthat:0.02532801766039089\tfrom:0.01976801413570236\tby:0.01648282253405149\tiu:0.01017361337263031\t:0.01\n",
"way:0.16840362347359344\tit:0.14334480018519352\tout:0.12472732330080534\tthem:0.10873133810262715\tgo:0.10704663047320627\tcome:0.09021562203593109\twent:0.08461078752074491\tenter:0.08440897988114932\tcame:0.07851089502674906\t:0.01\n",
"it:0.21448047974703327\the:0.17744594656391446\tI:0.14393291582725282\tIt:0.12416549278569143\twhich:0.108810769350585\tand:0.0735062873102343\tHe:0.05642652208899168\twho:0.051197891115005396\tshe:0.04003369521129167\t:0.01\n",
"the:0.72143492443855\ttho:0.05462179733986071\tThe:0.053827306409896775\ta:0.040171300169488985\tgreat:0.03025505560899814\ttbe:0.025675051498162307\tand:0.022957641703975264\tof:0.020668804337223765\tother:0.020388118493844008\t:0.01\n",
"disposed:0.559855698504271\tcomplained:0.09591651152111615\tspoken:0.0687946642882587\tdreamed:0.06220834567052166\tthere­:0.04855167821392963\tdispose:0.04210185305642385\tcare:0.039826668718264346\tdespaired:0.036942970711435645\tamount:0.03580160931577913\t:0.01\n",
"the:0.3113718678174497\tand:0.1487971065095963\ta:0.12636825118477776\tof:0.11772294264400483\tto:0.0909857952238961\tbe:0.05475784665814797\tby:0.048207157454666\this:0.04793206203579919\twas:0.04385697047166224\t:0.01\n",
"to:0.538628987640393\twill:0.14256267857609017\twould:0.08550798201528458\tand:0.07119526728706543\tnot:0.04095406837879565\tcould:0.031772277708726836\tcan:0.030166185735233882\tshall:0.026576711307715863\tshould:0.022635841350694484\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"be:0.2164755482700973\twas:0.1996461304466945\tand:0.13163535111398503\tbeen:0.10225026144830582\tis:0.08644851108170282\the:0.08189653962275044\twere:0.06269863780368987\thave:0.06066356133133753\thad:0.048285458881436615\t:0.01\n",
"of:0.2748977404920769\tand:0.25271345426082886\tbut:0.09899002016181306\tknow:0.09441812747199292\tthat:0.0610455388137525\tBut:0.05636036823448344\tto:0.05564221765098659\tfor:0.0497347525335465\tknew:0.046197780380519284\t:0.01\n",
"and:0.2096297155861575\twas:0.15201401237831563\tbe:0.13720913671539012\tis:0.13077951450866274\tare:0.10360936316411633\tthat:0.07186814696636759\twere:0.06422451240194267\tbeen:0.0613507889192028\tnow:0.05931480935984459\t:0.01\n",
"of:0.2030402685464755\tthe:0.17143741687853498\ttheir:0.14566810492156798\this:0.09396511910227315\tthese:0.08643001797516862\tother:0.08028863031723452\tour:0.07386907268549832\tin:0.07383813414534839\tits:0.06146323542789857\t:0.01\n",
"the:0.4271659159903059\tand:0.14575078561103874\tof:0.1299962743118682\tThe:0.05458038770480233\tan:0.05125484146998824\ttheir:0.05075436657432733\tto:0.04785435511067152\ta:0.04206862221339412\ttho:0.04057445101360365\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.24718438963450065\tof:0.16171568530576444\tand:0.14016427190533337\ta:0.11481245723618375\tto:0.11160029207516511\tbe:0.06906585784808314\twas:0.06059303032420842\tin:0.04530924826809532\tfor:0.039554767402665704\t:0.01\n",
"to:0.35332614100531534\twill:0.18260431420428616\twe:0.1015498758239131\twould:0.0822071511357657\tI:0.07679703256623917\tyou:0.05557831745560156\tcan:0.050568150802966\tcould:0.04833885689124589\tnot:0.039030160114667235\t:0.01\n",
"I:0.2691712810603859\the:0.2197518513601855\tthey:0.12146558166574387\tand:0.08583381933994051\tit:0.0802947716413206\tshe:0.05654875913123117\tHe:0.05401599789742009\twe:0.05234536291281931\twho:0.050572574990953176\t:0.01\n",
"and:0.2733978621996077\ttogether:0.22903762732876506\tit:0.08404532895497098\tcovered:0.07719059789199784\tthem:0.07333678899428771\tconnection:0.06531146493366093\tfilled:0.06436071261403303\thim:0.062556963748687\tup:0.06076265333398969\t:0.01\n",
"United:0.6376782180035618\tthe:0.20574752910539731\tThe:0.032618963678783724\tSouthern:0.022461514452285117\tUuited:0.019840513976007064\tof:0.01965353435288619\tthat:0.018435661510239888\ta:0.016950938940541397\tthis:0.016613125980297367\t:0.01\n",
"the:0.2677827637997983\ta:0.21858158336585554\tof:0.17118133321755158\tand:0.08686989143754052\tan:0.06568446405075676\tto:0.05873158245627699\tin:0.04467972239308402\tThe:0.039836582139345725\tthat:0.036652077139790566\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.6655745366478218\tand:0.0683403186606659\tThe:0.059175529678307526\tpar:0.04168329020042433\ttho:0.03551213702723112\tof:0.03435336754435223\ta:0.03081219601565352\tin:0.03026901352296973\tassessed:0.024279610702573808\t:0.01\n",
"of:0.29740268935887576\tand:0.1663657053004689\tin:0.1127540212283175\twith:0.11204156781610138\tfor:0.09687618890008709\tto:0.092036384950429\tthat:0.053430293075151965\tby:0.03190687778226558\tor:0.027186271588302786\t:0.01\n",
"the:0.5713101817248468\tand:0.11151106927388478\tin:0.09193011415738689\tof:0.0698430835460518\ta:0.03975150165584631\ttho:0.031169247060218154\theartfelt:0.026316665001321203\tThe:0.025524665531802798\tIn:0.022643472048641245\t:0.01\n",
"the:0.3702384832558887\tof:0.27309078151125066\ta:0.09578085072881837\tThe:0.05552104471290675\ttheir:0.05030178461826141\tother:0.039130884138662135\tto:0.03614308820919748\tthis:0.03582627148701831\tour:0.0339668113379962\t:0.01\n",
"the:0.5540004817012505\tThe:0.15674321441432013\ta:0.08743845194172145\tand:0.04718570301680957\this:0.04210766441164996\tof:0.040721915112057736\ttho:0.02429236134628422\tA:0.02127650027098376\tor:0.016233707784922752\t:0.01\n",
"of:0.322934988914845\tand:0.12778582845030906\tin:0.11151061605950155\tto:0.10176742738315415\twith:0.08970104502138539\ton:0.07806402218664837\tthat:0.07053212661541716\tfor:0.04612527453447378\tby:0.0415786708342655\t:0.01\n",
"they:0.2670110823583734\twe:0.13649372939231205\tthere:0.1108235793439145\twho:0.09714605234612242\tThere:0.08265462551435528\tThey:0.08102181706221699\tyou:0.07732429945856084\tand:0.07085577204048497\twhich:0.06666904248365951\t:0.01\n",
"and:0.2623005843246648\tmade:0.207374873022581\towned:0.10868132796136139\tprovided:0.08235918593036647\tor:0.06888791640175673\tthat:0.0687998933424621\toccupied:0.0673098829886033\ted:0.06525866121515464\tpaid:0.05902767481304946\t:0.01\n",
";:0.22890042519697384\tnothing:0.19987953419703974\tis:0.11355613306930658\tit,:0.102435924819416\tand:0.08900466101589066\tthem,:0.07182768128926055\tanything:0.06469955771114791\thim,:0.06148649892755423\ttime,:0.05820958377341062\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.29972195682539465\tof:0.1860315204023243\tand:0.12877635076785074\ta:0.0997926702871424\tto:0.09520497871756131\twas:0.05071019019452514\tbe:0.04947373454735675\tin:0.04018803430108381\tis:0.040100563956760926\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.27896776847231236\thim:0.165339413698242\twas:0.11226980831190811\tman:0.096438896839694\tit:0.09281578859421534\tup:0.06562583647316447\tthat:0.0651909040662511\tfound:0.05717470234619706\tmade:0.05617688119801571\t:0.01\n",
"of:0.46246541285618675\tto:0.12030547607155434\tthat:0.08527434278229874\tin:0.07737437318767297\tand:0.07542662295100866\tfor:0.060619516983373284\tby:0.05025692065812196\ton:0.029173809239402354\twith:0.02910352527038094\t:0.01\n",
"a:0.41406655965818845\tthe:0.37282870558613884\tA:0.056400518530269415\tand:0.036513881347260094\tThe:0.031140196114363108\tvery:0.023343161070287506\twas:0.021892488223651675\tis:0.017380371574478286\this:0.016434117895362636\t:0.01\n",
"the:0.6715274962257596\ta:0.12779504032397906\tThe:0.08207117669099259\ttho:0.038606235569862306\tthis:0.020404582666042222\ttbe:0.014859075934122322\tand:0.012467435261503249\tno:0.012251311472065292\tany:0.010017645855673392\t:0.01\n",
"and:0.4092097300312331\tas:0.19147636814884333\tthat:0.18852162043786896\tbut:0.05245368349933592\tor,:0.04200952661830049\twhich:0.03235741640119714\tor:0.025688075336538073\twhich,:0.024615170367889343\ttime:0.023668409158793684\t:0.01\n",
"<s>:0.3199149971682069\tof:0.11637871648382837\tas:0.09982153519679446\tit.:0.0956726977340176\tand:0.07971059753637491\tfirm;:0.0769908779049415\tthem.:0.07366385419575351\t.:0.06571664141701399\tat:0.06213008236306877\t:0.01\n",
"of:0.2398708670291844\tthe:0.22743525417047472\tand:0.13139002385520804\tto:0.10376973167625372\ta:0.08712962001455624\tat:0.06768600089169872\this:0.04664315861358613\tin:0.04554117936171022\tis:0.04053416438732785\t:0.01\n",
"is:0.25134760333894124\tbe:0.23791270420721852\twas:0.13072988175863942\tit:0.12043355044815492\tnot:0.060253951786091525\tand:0.05314579312899939\tas:0.04603744503719635\tthe:0.04556889857636193\tare:0.04457017171839678\t:0.01\n",
"the:0.37939445577508824\tof:0.18595189652253977\tand:0.10524554781442891\ta:0.09287324623490656\tThe:0.06825801950894868\tthis:0.04641713761426903\tthat:0.04499909660288021\t<s>:0.033781932669015906\tor:0.0330786672579228\t:0.01\n",
"that:0.35293185256899967\twhich:0.12489922641677852\tif:0.09882764445054558\tas:0.09153220831481992\tand:0.0870562662839039\twhen:0.07289888995907191\twhere:0.06153747893122891\tbut:0.05206554947727277\twhom:0.048250883597378856\t:0.01\n",
"and:0.16051538492039444\table:0.12584552037456037\torder:0.12023274904774982\thim:0.10411986755347347\tis:0.10230358199714916\twas:0.09725639894996213\ttime:0.09647037435760988\thad:0.09226467812513447\tas:0.09099144467396625\t:0.01\n",
"the:0.294346689544814\ta:0.17593266926687154\tto:0.14777025779342812\tof:0.14299473948285807\tand:0.0771201558466389\tfor:0.04995739679285973\twith:0.044506861481694804\tby:0.031539934576882714\tThe:0.02583129521395203\t:0.01\n",
"matters:0.23912651852472522\tand:0.17588169193013173\tare:0.16292292332756173\tis:0.10797196338564223\twas:0.08186770884991587\tnot:0.06614734691561423\twere:0.0535889596136375\tbe:0.05301278391714989\tnow:0.049480103535621565\t:0.01\n",
"and:0.38083818567280553\tso:0.1507952882463327\tas:0.09658456591074474\tto:0.06892398024625176\tbut:0.06307569774529674\tfact:0.062221444861071354\tsay:0.05699427922650776\tis:0.056203237116740544\tsaid:0.05436332097424873\t:0.01\n",
"the:0.31130843731237823\tof:0.1584857711392948\tto:0.14412165081006315\tand:0.13716019892257106\tin:0.060555721576201066\tthat:0.051262821204911366\tas:0.043902780853996286\ton:0.04369654593973089\tby:0.03950607224085328\t:0.01\n",
"the:0.42323808812471103\ta:0.19847882668538358\tand:0.1007142186700256\tof:0.09419537034369495\tto:0.05609841856950876\tin:0.03959705011323816\ttho:0.026894887415964998\tThe:0.025544282537271597\this:0.02523885754020141\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"and:0.28875042293688763\tthat:0.18379961672113257\ttime:0.12018083560604678\tmade:0.10260676101770422\tthem:0.06941977777485565\thim:0.06107712576849914\tbut:0.05685206022851167\tor:0.05497076677934715\tup:0.05234263316701533\t:0.01\n",
"and:0.21909254675538056\tis:0.16773308466476258\twas:0.1303344609368876\tbe:0.09805989655250714\twith:0.08394225341485873\tare:0.08021508610491107\tof:0.07097476443756195\tas:0.07091865798084734\tby:0.06872924915228286\t:0.01\n",
"to:0.2358683672083968\tthe:0.18029556303261735\tin:0.12624429193476935\tand:0.11085500049249983\tof:0.08503784917953319\tan:0.07068754654932145\ta:0.06871978801367151\tby:0.06468027908318036\tor:0.047611314506010145\t:0.01\n",
"and:0.42186447535950783\tthat:0.14687156068958368\tbut:0.1444960842705073\ttime:0.0777533572878275\tBut:0.05865722638700542\tAnd:0.04174637107118044\tme:0.03839422703509098\tago,:0.03195447904189178\teven:0.028262218857405125\t:0.01\n",
"the:0.22142870990173064\tand:0.20300529807666312\tto:0.1829640977385674\tof:0.12629440444427803\ta:0.07875521691246076\tin:0.0622738232913598\twill:0.04028478334619261\tI:0.03989775363140543\the:0.03509591265734224\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"his:0.17408067613094275\tthe:0.16751239181659397\tof:0.16362694720735788\tthis:0.10165332840660606\tother:0.10129796244736974\ttheir:0.08027050809284109\ther:0.07544881130554795\tpublic:0.06548877700505977\tor:0.0606205975876808\t:0.01\n",
"and:0.3656792069525932\tannum,:0.338580631074157\ton:0.09415476019782644\tof:0.06601320986490054\tday:0.03431981921189227\tor:0.025519481630818595\tthat:0.02292773508938672\tsale,:0.02164397037930648\t2:0.0211611855991188\t:0.01\n",
"J:0.21374770884199165\tW:0.1550608003822948\tA:0.10748171393398133\tC:0.10694299724830016\tM:0.09586906782410008\tS:0.09485933607923121\tE:0.0840839371302255\tF:0.06733043721804571\tH:0.06462400134182948\t:0.01\n",
"of:0.1545606576998135\tis:0.13631145671193307\tas:0.12606886448344481\tin:0.12490711055559521\twith:0.10690070493008605\tand:0.09226958567863361\tfor:0.0893060710117813\tto:0.0842706505689507\twas:0.07540489835976176\t:0.01\n",
"came:0.15234424095483431\twent:0.14291947485964518\tsat:0.12714250097616503\tgo:0.11742466597119794\tcome:0.10828345534343174\tlaid:0.10645733178831063\tsit:0.09451823605902433\tit:0.07169250575113507\tbroken:0.06921758829625571\t:0.01\n",
"of:0.32681990134907984\tfor:0.15058482413192847\tto:0.1495757716262398\tat:0.13952666263403105\tand:0.06765463678990938\tin:0.05847850823459522\tthat:0.03510042901025681\tfrom:0.03166626873272177\tduring:0.030592997491237787\t:0.01\n",
"the:0.2348936864380875\tof:0.17141990857045894\tand:0.15092221108899265\ta:0.10125325371681407\tto:0.08978991230211596\tbe:0.07036792028887345\tin:0.0685027598781156\twas:0.06545509613683566\tis:0.037395251579706204\t:0.01\n",
"they:0.299954136663756\tthere:0.12336587267808473\tand:0.11314861125863297\twho:0.10672175143008082\twe:0.08393458953724554\twhich:0.08312392011761544\tThey:0.06637683112029098\tThere:0.057531833544174966\tthat:0.05584245365011847\t:0.01\n",
"it:0.28317097636256594\tIt:0.1933445733650809\twhich:0.11975718942031284\the:0.08582788806916335\tand:0.08528961719502678\tthat:0.0777183143097221\tthere:0.06238640793109829\twho:0.045422113965186965\twhat:0.03708291938184284\t:0.01\n",
"the:0.2529199342654884\tof:0.22614730499998043\tin:0.21525723520323806\tto:0.07644665803712172\tIn:0.054633659433317494\tfrom:0.051691489256650854\tand:0.03925713263725379\tThe:0.03842110928588035\tfor:0.03522547688106888\t:0.01\n",
"of:0.30452420256144797\tand:0.1693255846070002\tin:0.14487223939668253\tto:0.09775877181929198\twith:0.09209846160630596\ton:0.05732607119167453\tthat:0.05575225741653388\tfrom:0.03547570039137543\tby:0.0328667110096874\t:0.01\n",
"of:0.19931136019033205\tand:0.1967125499421432\tthe:0.17031631503756198\tas:0.12773944473391255\ta:0.11675913756336502\tsuch:0.04856302589531078\this:0.044979216819200904\tto:0.04360345916215591\ttheir:0.04201549065601755\t:0.01\n",
"to:0.5496256348676304\tand:0.13565784386783464\tnot:0.07917743566429358\tthat:0.05469870683464673\tshall:0.04331718405011133\twhich:0.03932305663044164\tmay:0.03202557463320756\tof:0.03160749636595259\tthe:0.02456706708588155\t:0.01\n",
"the:0.5635562815904418\tof:0.15660270291337633\tin:0.12434898804315818\tand:0.04460618941249583\tfor:0.02570329718380997\tto:0.024947829704199717\tIn:0.019603020885233337\ttho:0.015813610596924366\tour:0.014818079670360541\t:0.01\n",
"of:0.32163800075968846\tthe:0.25593255718310964\tand:0.14057698375360875\tto:0.10006824264726458\tin:0.037403833821230775\tby:0.03569214162221732\tsaid:0.03378358920713951\tMrs.:0.032964836602710025\twith:0.03193981440303086\t:0.01\n",
"the:0.3592545714135833\ta:0.25480806913806603\tand:0.09777748626170073\tof:0.06928795018363539\tThe:0.0640489037403129\tother:0.0496066905298113\this:0.044087264086753467\tall:0.029016888661431192\tthis:0.022112175984705697\t:0.01\n",
"be:0.5197058394674862\tis:0.10949301748332503\twas:0.08036561674281845\tbeen:0.0698105003562374\tare:0.052503997921728746\tnot:0.047303203894761704\tand:0.0439618334301008\tbeing:0.03604149722941124\tas:0.030814493474130306\t:0.01\n",
"and:0.33737111068372644\twas:0.11478670231469487\tlook:0.08569431518814412\tis:0.08425894295344578\tthat:0.07897589257318872\tone:0.07445401422062217\tbe:0.07390793547584686\tit:0.07377037861877846\tsold:0.06678070797155262\t:0.01\n",
"to:0.7252843037471381\tand:0.052741656159381874\twill:0.05003310372073461\tcan:0.03156442872904828\tnot:0.03004711356452811\twould:0.027634844452401948\twho:0.027202322994401798\tcould:0.02391203010795726\twe:0.02158019652440792\t:0.01\n",
"the:0.24880485054285442\tof:0.21344591030659185\tand:0.18538112203289628\tto:0.15723889841421682\tbe:0.04542273319964122\tas:0.03850779345617628\ta:0.03609033543092163\tis:0.03305046160922207\tin:0.03205789500747933\t:0.01\n",
"in:0.37361168756100743\tof:0.21062341605422835\tIn:0.10142665045917174\tfor:0.08596121571490653\tby:0.05797719706472546\tand:0.050423488581681435\tthat:0.045345382190219885\tto:0.03762416839440874\twith:0.02700679397965037\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"was:0.2509547770813024\tbe:0.21598802821657176\tis:0.1361200803665062\tbeen:0.0749623724006684\thave:0.0682775793590195\twere:0.06743451761707484\tand:0.06402974266518867\thad:0.05674389125053705\twell:0.055489011043131205\t:0.01\n",
"the:0.5171393518077413\tof:0.11319323217450356\tand:0.09697800028416714\ta:0.09141936830270062\tThe:0.05950033952116967\ttho:0.03674934710588279\tto:0.02916748364915862\this:0.025089819231172417\ttheir:0.02076305792350401\t:0.01\n",
"it:0.18996776648825836\twhich:0.16693146919859034\tIt:0.1638838509302785\tthat:0.1088783226660808\twho:0.09754653858074362\the:0.09729440751502057\tthere:0.07644641877125938\tand:0.047844242933137104\tThere:0.041206982916631135\t:0.01\n",
"of:0.3432428535018444\tthe:0.24340555435959021\ta:0.11843028630724828\tfor:0.0590212838018452\tto:0.0547836966617619\twith:0.05043377975583402\tin:0.04852110809669528\tand:0.040858859838755215\this:0.031302577676425344\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.3163871074264731\tfact:0.1539513858060459\tof:0.09754957599361129\tsaid:0.08580850494405626\tsay:0.07757603982654465\tso:0.07384064359211881\tin:0.06649015964797964\tone:0.06067149640439215\tbelieve:0.05772508635877829\t:0.01\n",
"of:0.27900820130530235\tOn:0.1254754456196071\tand:0.12520878562005253\tin:0.1154697408723901\tbefore:0.08113622305838492\tafter:0.07377240446111016\tby:0.07228750688620023\tfor:0.06751687140147085\ton:0.05012482077548167\t:0.01\n",
"of:0.3198656737014542\tthe:0.1744356533977283\tfor:0.17366182279627443\tin:0.1528839332593421\tand:0.04968318025060294\tIn:0.03436446865098388\ttheir:0.029369888350515093\tfrom:0.02900185372378673\ta:0.02673352586931229\t:0.01\n",
"of:0.21338832523674772\tin:0.14017901232241858\tand:0.12939343303774875\twith:0.10408959886573863\tis:0.10292083424447168\twas:0.08224908889474121\tby:0.07954907839589143\tfor:0.07804424202008158\tto:0.060186386982160285\t:0.01\n",
"he:0.2901550992979688\tI:0.15078974992825056\twho:0.11685934994103833\tthey:0.0890319543302928\thave:0.08694381116024259\tand:0.08289741538458019\tshe:0.06886613470955272\tHe:0.05811818233026716\twe:0.046338302917806995\t:0.01\n",
"more:0.5390978077284503\tless:0.16643947697311662\tbetter:0.06126565383800663\tgreater:0.059956605814590565\trather:0.05512059456706117\tother:0.03601165118842752\tworse:0.027190766945742805\tlarger:0.023551199708869472\tMore:0.021366243235734918\t:0.01\n",
"that:0.23583089712700428\tand:0.22317996617862337\tas:0.11917327967698281\tbut:0.11414815851009677\twhich:0.09187137277173733\twhen:0.06428270106528002\tif:0.05644520129398707\twhat:0.05051753569939474\tthe:0.034550887676893655\t:0.01\n",
"and:0.277625171547934\tof:0.18781914946669945\tthe:0.1278661204604251\tto:0.11206352248110188\tall:0.0842803602684245\ttheir:0.06653139199700767\tfor:0.058608128345437986\tin:0.04194047972046145\this:0.033265675712508075\t:0.01\n",
"of:0.3308442922213524\tto:0.1432471988342217\tin:0.131701708736979\twith:0.09441568321518254\ton:0.06848424163509252\tand:0.061113441995290306\tfor:0.05843564615357509\tby:0.05382836431950813\tfrom:0.047929422888798305\t:0.01\n",
"of:0.3621805371392406\twith:0.11754555789368258\tby:0.11338174161157724\tin:0.10691856150049663\tand:0.0774273476316259\tfor:0.06317251298279584\tis:0.051391294360538464\tas:0.049161435885667695\tto:0.04882101099437504\t:0.01\n",
"time:0.5512735629235351\tand:0.10802162705403819\tas:0.09734626873724443\thim:0.050622571677268\tis:0.0420631294233941\tthem:0.040023548870586165\trequired:0.03837644295804295\tsubject:0.03164859984702799\torder:0.03062424850886309\t:0.01\n",
"the:0.46941974766499195\tWall:0.1713347419539666\tMain:0.07858446019606875\tsaid:0.05031981694937331\ta:0.04957350498908335\tSixth:0.04612653138486344\tThird:0.043364646154160774\tSeventh:0.04157805062505087\tFifth:0.03969850008244102\t:0.01\n",
"that:0.4191864264306642\twhich:0.12306459701814328\tif:0.10584152411724204\tas:0.0800588901554097\twhen:0.0655064430572058\tand:0.062325436114272305\twhere:0.05382186608530334\twhat:0.04122796967848988\twhom:0.03896684734326954\t:0.01\n",
"he:0.23461108174321355\tand:0.15870717109678972\tit:0.12278480252439182\twho:0.103050909074278\tHe:0.10127958859555754\tIt:0.0972595841851471\twhich:0.07771123774839825\tthat:0.05608256503793535\tshe:0.03851305999428872\t:0.01\n",
"the:0.73554222513735\tand:0.06958842082858843\tof:0.038182090805135044\ta:0.036994496508918694\tThe:0.03656760580717858\ttho:0.03157869808190537\tin:0.022968636816114323\ttbe:0.009927155463868022\tby:0.008650670550941639\t:0.01\n",
"of:0.32369331900924836\tin:0.2594202813461328\twith:0.08893615373626569\tand:0.06797807115015336\tIn:0.06100746929644975\tto:0.05742318715195844\tthat:0.04788822340226963\tfor:0.04779242563556097\tby:0.03586086927196102\t:0.01\n",
"be:0.26387167428328573\tand:0.1699676590760932\twas:0.15705068316769408\tbeen:0.12925917688855912\tis:0.08331525872264757\tare:0.07107528607978235\twere:0.06495201000192545\tbeing:0.02590274268966013\tso:0.024605509090352463\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"in:0.4012325547276402\tthe:0.19555487390010848\tIn:0.10784192508028345\ta:0.09698861188200332\ttake:0.08225988669629536\ttook:0.03851085684635368\tand:0.023770822769100815\tor:0.022475270875718448\thave:0.021365197222496152\t:0.01\n",
"the:0.28497649448846474\tand:0.1514823575156436\tto:0.13099486172294514\ta:0.11430273190651027\tof:0.10696486710509166\tbe:0.0649188191707342\this:0.04813099987403198\twas:0.045973956544127566\tThe:0.042254911672450726\t:0.01\n",
"the:0.3191431355235267\tof:0.2088655117699321\tand:0.13239517931655864\tto:0.07255198328251043\ta:0.062042879009096934\tin:0.05931731948089293\tbe:0.04901508292187789\tfor:0.044905971676086294\this:0.04176293701951812\t:0.01\n",
"a:0.609073609168848\tthe:0.13067752963213675\tmost:0.07347459228394682\tvery:0.05394913615448533\tthis:0.03073564649620345\tan:0.028660429803702963\tany:0.02394625195717402\tand:0.02043390825660538\tof:0.01904889624689725\t:0.01\n",
"to:0.2390756930418224\tI:0.19853308253032115\twe:0.10298539026985137\twould:0.09540654190149654\tthey:0.08616212267648574\tand:0.08061745136916319\twho:0.0684301468467904\twill:0.06080232501476738\tyou:0.05798724634930188\t:0.01\n",
"the:0.17657896557486932\ta:0.1512678246782647\tYours:0.13680421338313473\tand:0.11862100791547285\twas:0.10080186548532402\tare:0.09029345382557488\tbe:0.07858282874417273\tor:0.07725393194362201\twere:0.05979590844956473\t:0.01\n",
"of:0.25865380795491943\tin:0.21644905402115652\tand:0.12986868380747027\tto:0.11290629479878728\tat:0.07586949217175101\ton:0.06648470486853053\twith:0.05012726698912497\tfrom:0.04082048001943037\tall:0.038820215368829625\t:0.01\n",
"the:0.3143380974179735\tof:0.14990021601049686\tand:0.12727414109744606\ta:0.11523260788578005\tto:0.0793934586040206\tan:0.07857857145180387\tas:0.04657590695260904\tin:0.043487134819789566\tthat:0.03521986576008032\t:0.01\n",
"the:0.23117510840391162\this:0.16579449262587262\ta:0.14910812760208159\tand:0.1291162863317303\tis:0.0930087408850207\twas:0.061841536434819225\ttheir:0.05706468407649782\tare:0.05165066894279615\ther:0.05124035469726994\t:0.01\n",
"has:0.37433389453029464\thave:0.29883904470527434\thad:0.17915358407081408\thaving:0.04957593246490323\tnot:0.03410198844002326\tbad:0.015879994120149832\tever:0.0139453858114025\tlias:0.013662693107265091\talready:0.010507482749872907\t:0.01\n",
"the:0.20515046497644626\tand:0.18311805691712713\tof:0.16790220635322614\ta:0.14923836474832336\tto:0.08556017490925509\tbe:0.056011554339627075\twas:0.05329936768331103\tfor:0.04600249169095576\tis:0.04371731838172818\t:0.01\n",
"those:0.2608226100313847\tmen:0.16759680843603608\tman:0.15495063583705182\tand:0.14146373870024206\tone:0.08382751928427092\tperson:0.05112602282308641\tpeople:0.04918140974682689\tall:0.04283535688125879\tpersons:0.03819589825984229\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"of:0.2168826383053249\tthe:0.17955555888640853\ta:0.1442482356934104\tin:0.1273009449883706\tto:0.08982552215220425\tat:0.0866227110444241\tand:0.05930505070819775\tby:0.04715913963729646\twith:0.03910019858436298\t:0.01\n",
"the:0.4504018210407867\tan:0.15372148964520188\this:0.08302705732835121\tof:0.06102217748714329\ttheir:0.05327748083025813\tThe:0.05129987746891338\ther:0.05008692767246594\tmy:0.04452817489974974\tyears:0.042634993627129754\t:0.01\n",
"of:0.20509868068331527\tthe:0.18992360083848198\tand:0.1627077320911976\tto:0.11166884988859471\tbe:0.0979632635341338\tin:0.06540848799261574\tor:0.058966420912407294\tfor:0.05013839373631626\tre-:0.048124570322937356\t:0.01\n",
"the:0.7361631457422443\tThe:0.05799219469870477\tof:0.04138105029131907\tand:0.0384979657117792\ttho:0.037452949641893045\ta:0.03114956356499656\tall:0.021158939729790507\ttbe:0.0161419511387991\tother:0.010062239480473386\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.24273593368698743\tof:0.19482458867717511\tto:0.15386363801051614\tand:0.13977018841803462\tbe:0.07188836850300179\tin:0.06984476594174335\tor:0.04024831417544013\twas:0.0393807699116105\tis:0.03744343267549099\t:0.01\n",
"the:0.3103279440235315\tof:0.17413654868527798\tand:0.16924373084989433\tto:0.09410335785526062\ta:0.08334285316950657\tin:0.05267958019374887\tbe:0.03777522488732701\this:0.03486601099791866\tor:0.033524749337534535\t:0.01\n",
"the:0.3566693822048231\tof:0.16303948288746212\tand:0.11477660164404037\tin:0.10481566788139848\ta:0.07707405795552219\tto:0.05255782035453777\tor:0.04398686541065915\ton:0.039659885418826785\tat:0.037420236242729915\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"her.:0.3091093689067114\tit.:0.15552767498207878\t<s>:0.14756829023208948\thim.:0.1121068144255083\tthem.:0.0936624564018833\tlife.:0.05146588386982017\thome.:0.04543901667956092\ttime.:0.04218471670216755\tday.:0.032935777800180054\t:0.01\n",
"of:0.32173826721989673\tto:0.1479896288285387\tand:0.10939955116491937\tthat:0.10927047529778428\tin:0.08902504162262907\tby:0.06803390371616679\ton:0.058293093179828684\twith:0.04751187320050485\tfrom:0.03873816576973138\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"with-:0.272181347832551\tget:0.13025528720920995\tfind:0.10554383663475081\tcarry:0.09775293249257577\tmake:0.09228168210088918\tand:0.0882254017169912\tput:0.07042608910699526\tmade:0.06714971485796434\tsent:0.06618370804807251\t:0.01\n",
"the:0.5482789942437323\tof:0.15237327488560318\ta:0.06402301232615328\tThe:0.06033970001073262\tsaid:0.043221166823008826\tand:0.03350569235082248\ttho:0.03293211439480944\tfor:0.031196010345347084\tour:0.024130034619790762\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"it:0.28317097636256594\tIt:0.1933445733650809\twhich:0.11975718942031284\the:0.08582788806916335\tand:0.08528961719502678\tthat:0.0777183143097221\tthere:0.06238640793109829\twho:0.045422113965186965\twhat:0.03708291938184284\t:0.01\n",
"number:0.33119266009196036\tout:0.1450583223753826\tsort:0.08835341596855184\tmeans:0.08087397065582205\tkind:0.07583157919623841\tline:0.0724348068405292\tpoint:0.07026531760052883\tone:0.06537083252682432\tamount:0.060619094744162536\t:0.01\n",
"for:0.371312074082626\tof:0.16287595502647725\tin:0.1174664564904993\twithin:0.06774552163253068\tand:0.06600257748491731\tas:0.05529540992517077\tabout:0.05153906355297396\tcents:0.04995309819582703\ttwice:0.047809843608977554\t:0.01\n",
"and:0.19560656535339777\tbe:0.17133940938422942\twas:0.1319230735627309\tis:0.12199458203857334\tof:0.09077768836941887\tbeen:0.07428575269711138\tto:0.07012212492506753\tin:0.06741011338802542\tare:0.06654069028144535\t:0.01\n",
"is:0.18835650413168356\twas:0.15881298118909476\tfor:0.12423344961056736\tof:0.11781883486446748\twith:0.10665088023559109\tto:0.09122177662758026\tand:0.0807152646059369\tin:0.069997172442306\tbe:0.0521931362927727\t:0.01\n",
"the:0.16748130869863903\tof:0.14370859093490324\tand:0.1303973792848225\tin:0.12616173228379948\tis:0.09319375971176812\twas:0.08748690327259731\ta:0.08591561092950101\twith:0.0804821190317689\ton:0.07517259585220035\t:0.01\n",
"and:0.20441155362062136\tof:0.16327144141342842\tas:0.12887591249990382\tthat:0.0935506823628407\tto:0.08961813963778743\twith:0.08827920084503958\tfor:0.08365585488562442\tbut:0.07491240817982037\tmake:0.06342480655493389\t:0.01\n",
"and:0.475551400411068\tor:0.1332912651714536\tin:0.07220401849965001\tto:0.05847592688208489\tbut:0.05603154724694645\tof:0.05268071865880019\tthat:0.050779080881751266\tit:0.045532819791249485\tfor:0.04545322245699597\t:0.01\n",
"to:0.7424309053834335\twill:0.06433855431415413\tnot:0.0299755541949492\tI:0.027779342124317565\tcan:0.027184836164081936\tthey:0.026520054778489687\tand:0.02470106528030522\twe:0.023642465646641648\tcould:0.023427222113627015\t:0.01\n",
"is:0.13961047509264635\thim:0.13037180489297356\torder:0.12220674057461202\tand:0.11114301499645178\table:0.1072014567489744\tproceed:0.10140351239819761\tenough:0.09563425838137837\twas:0.0941065722395486\thad:0.08832216467521728\t:0.01\n",
"the:0.35675071897882316\tand:0.19278255127096489\tof:0.1031460881128488\tthat:0.07304011043992242\tto:0.0719417078852716\ta:0.06527319730404231\tin:0.045623007772752924\tThe:0.04227364033228468\tat:0.03916897790308936\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"well:0.24596105511646743\tis:0.1257628811209536\tand:0.1220782713070074\tjust:0.11062849610322106\tsuch:0.08954628620238046\tfar:0.0786860671890495\tsoon:0.0764168005471068\twas:0.0742090205446496\tit:0.06671112186916417\t:0.01\n",
"he:0.19961850484448163\tI:0.18461083498907813\tand:0.14385713524693802\tit:0.1000010174664388\twho:0.09255692304093663\tthey:0.0704975124907663\twhich:0.07023863063329067\tas:0.066718987619098\tthat:0.061900453668971914\t:0.01\n",
"of:0.4310191800625543\tto:0.12223277825657103\tin:0.11374958403800685\tthat:0.06858350960156216\tand:0.06317736433227585\tall:0.05296173594226289\tby:0.049378640965530574\ton:0.047923240294781656\tfrom:0.040973966506454816\t:0.01\n",
"the:0.6975129525768478\tThe:0.08371027618490892\tand:0.04082140579571156\tvery:0.0372617404539325\this:0.035571239043840984\ttho:0.030484436098625653\ttheir:0.02616743823122572\tour:0.020607955612180536\tits:0.017862556002726415\t:0.01\n",
"and:0.2709897936836547\tthat:0.2235346088671051\tis:0.08592413409466279\twas:0.07482307582425114\tnot:0.07240732864606327\tto:0.07072523473466047\tbut:0.06685619979429058\tor:0.0641302817462085\thave:0.06060934260910341\t:0.01\n",
"and:0.2810233829143592\tthat:0.132718643848517\twas:0.11000696083823394\tit:0.0990301743252236\tare:0.08858841897039184\tis:0.08766776455248651\tthem:0.06718337704598894\tbe:0.06532084920635779\tmade:0.05846042829844121\t:0.01\n",
"he:0.2750081300089085\tI:0.19680474092342953\tthey:0.10665366405826288\tand:0.09923476877334984\tHe:0.0906160984145562\tit:0.07288134595498329\tshe:0.060407366236748056\twho:0.045198930247332125\twe:0.043194955382429505\t:0.01\n",
"will:0.18053709674885213\tand:0.15731252874589186\tI:0.13324540275784982\tnot:0.11483322795449366\ta:0.11160977597128101\tshall:0.10322014819551625\twas:0.07194820274288416\tthe:0.05986054067275946\thave:0.05743307621047168\t:0.01\n",
"has:0.1830679735834706\tand:0.16086978388302403\tthe:0.13524156428679246\thad:0.12906554576914583\thave:0.11571983207407682\tof:0.0896498992428868\twhich:0.06074139375445634\tto:0.05816922217283804\tit:0.057474785233309046\t:0.01\n",
"the:0.2515396268346774\tour:0.15410637872112096\tand:0.13641532720634153\tof:0.13063140104476215\tmany:0.10571085093298532\ttheir:0.06258032237145025\this:0.05547565761250336\tin:0.04833311655112383\tfellow:0.04520731872503526\t:0.01\n",
"of:0.5752343176843888\tin:0.14728314967164774\tto:0.07586931738189924\tby:0.06094295978398383\tIn:0.03187140209691087\tfrom:0.02685828138852238\tthat:0.02651800685039899\tfor:0.023111756606175194\tand:0.022310808536072903\t:0.01\n",
"the:0.19966594348907915\tand:0.17922247150045179\tof:0.15563650816883337\tit:0.09240841064240218\tthat:0.08600859434364928\twill:0.07223203728714628\tto:0.0701500041630769\ta:0.0694699337325797\tas:0.06520609667278127\t:0.01\n",
"the:0.32391823409697307\tof:0.20816744598255188\tand:0.1261505518606988\tto:0.08434035240390786\ta:0.08289318487074161\tMr.:0.04868658092829398\this:0.03885451634293692\tbe:0.038573821753188874\twas:0.03841531176070694\t:0.01\n",
"and:0.2658116233439102\thim:0.18500142472853442\tasked:0.1314061157323591\tbut:0.08895215971809696\twas:0.0682731833692279\tit:0.06813400962581917\tthem:0.06649174331410762\ther:0.06270982833712549\ttime:0.05321991183081934\t:0.01\n",
"<s>:0.4253032818342169\tit.:0.1385612795807505\tthem.:0.09617830531634076\ttime.:0.07343055816468042\tcountry.:0.06095406412487678\thim.:0.05598272834642986\tyear.:0.049601616175826264\tlife.:0.0455622520457078\tpeople.:0.044425914411170574\t:0.01\n",
"and:0.2180561148398971\tas:0.17409745600452653\twent:0.11626842717012968\tgo:0.10256152963951991\tthem:0.09432636751927162\taccording:0.08131607233326706\tway:0.07221603051277338\tup:0.0685612600169263\tis:0.06259674196368842\t:0.01\n",
"thence:0.2961955178884002\tof:0.16645946365311906\tU.:0.10882505863889971\t.:0.10006560574878848\tand:0.08829132349842365\tS.:0.07613625458360924\tto:0.061839908687873736\tby:0.04842782537204865\tW.:0.043759041928837325\t:0.01\n",
"the:0.47826754742778926\ta:0.10215921704011459\tof:0.084990873050831\tin:0.08094829230791799\this:0.059397866814626485\ttheir:0.05505009213008471\tno:0.049382842683683384\tfor:0.04000980620293392\tto:0.039793462342018644\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"the:0.3350136116936521\tand:0.15819251490492975\this:0.13437027333842153\ta:0.12953258044746796\ttheir:0.05589305531428495\tthat:0.04974980396844774\ther:0.04744347367207711\tto:0.04471717001594944\tlittle:0.03508751664476936\t:0.01\n",
"in:0.4388570949313955\ta:0.10296304498679633\tof:0.09554567650003258\tIn:0.08333422803431187\ttheir:0.06818805719500107\tthe:0.06251137138700881\this:0.06196767108525232\tand:0.042730423067101696\tits:0.033902432813099626\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"be:0.37914801084470806\tnot:0.1421778574449008\thave:0.11916584833772098\tbeen:0.08348284214395112\twas:0.06307445863884427\thad:0.04974939306875577\tever:0.04212219181994742\thas:0.04138010425500543\tis:0.03512813813894514\tnever:0.034571155307220915\t:0.01\n",
"of:0.322693140242567\tto:0.13257442499521735\tor:0.10699180978195823\tin:0.0964435226576277\tfor:0.07953147196107471\tthan:0.07633593719377346\tby:0.06900454737536652\twithout:0.054092466452098864\tthat:0.05233267934031627\t:0.01\n",
"in:0.13008122878034173\tdue:0.12721084745224104\tit:0.1264828533462602\ttime:0.12352230135309282\tmen:0.11186112742929316\tlong:0.0959125467300551\tup:0.09426724381601989\tgood:0.09153233695835147\thim:0.0891295141343445\t:0.01\n",
"out:0.23438650457600088\tright:0.1313565577203231\tnumber:0.131019688330924\tone:0.10693497607572157\tmatter:0.10451540519145137\tamount:0.10109657635697118\tstate:0.07018393436633259\tmeans:0.05602636754880106\tline:0.05447998983347408\t:0.01\n",
"the:0.3293173997662301\ta:0.16316338506057348\tof:0.11416669057295471\tand:0.1057422647344896\twith:0.07965155865343258\tvery:0.062144472807272366\tThe:0.05067029591718043\tto:0.044125602936351545\tas:0.041018329551515194\t:0.01\n",
"and:0.24413116292889298\tclosing:0.18173686344826198\twas:0.10859381659603785\tvalued:0.08665763038641584\theld:0.07932710425709101\tsold:0.07518688429361538\t2:0.07335995221601971\tis:0.07241280837793868\tarrived:0.06859377749572665\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"to:0.3956354618631721\twill:0.16146624466861564\tmay:0.09766781455282764\tnot:0.06899102717634081\tshould:0.06775680617826414\twould:0.06540116062205262\tshall:0.04611510538854873\tcan:0.044570379055215346\tmust:0.04239600049496306\t:0.01\n",
"and:0.3050027792946569\tthe:0.23173351586938337\tof:0.17918503925293686\ta:0.08423530555154626\tto:0.05838477674786226\twith:0.039796964929450916\tfor:0.03380600287438203\tor:0.030539797192985125\tat:0.027315818286796172\t:0.01\n",
"the:0.2934620670631732\tof:0.2141593332667423\tand:0.15945002087278187\tto:0.06780370218056998\tthat:0.06419988100345989\tThe:0.06058387775262816\tin:0.0583461619364558\twhich:0.03917179644278349\tor:0.03282315948140535\t:0.01\n",
"one:0.2501549507978757\tmany:0.1757390329727802\tsome:0.17337378259433658\tmost:0.07828004008705718\tall:0.07823258544774273\tMany:0.06550115768656498\tSome:0.06179705054453487\tnone:0.058771085161482946\tany:0.04815031470762493\t:0.01\n",
"the:0.48861478080270937\tthis:0.10128119816114689\tsaid:0.09669980858582257\ta:0.07031867734589405\tof:0.05954393786971336\tdistrict:0.05914085816933211\tsupreme:0.057218470910727605\tcircuit:0.029575703328674565\tin:0.027606564825979504\t:0.01\n",
"the:0.33830633444923525\tof:0.20592308455385636\tand:0.1415013163225879\tto:0.09171505419212761\tbe:0.05757227224819087\tor:0.042872733400752996\tfor:0.04103310450144933\tas:0.03575002898317131\tin:0.03532607134862836\t:0.01\n",
"a:0.4342103493686322\tthe:0.28127427940390076\tlarge:0.13107432102392513\tA:0.04765830538767432\tThe:0.04331646657401486\tgreat:0.017644277772326085\ttotal:0.013916780429481905\tand:0.011073407679680021\ttho:0.00983181236036464\t:0.01\n",
"of:0.40775050288941994\tto:0.14605871745173396\tfor:0.10961076055462994\twith:0.10154829172729117\tmake:0.05518123239736868\tby:0.04377371558486939\tgive:0.04333752822950427\tin:0.04253051498163198\tkeep:0.04020873618355059\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.33672860776060404\tof:0.24810282468053058\tand:0.08119108157537631\tin:0.0768394618389819\tto:0.059969565041694324\ton:0.05810567738756484\tat:0.05148226156940602\ta:0.04766475478112604\tsaid:0.02991576536471607\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"of:0.48656905355249896\tand:0.11204936736375867\tto:0.09715128177139955\tabout:0.06540134919771148\tin:0.06382820559693222\tfrom:0.04899374120120513\twith:0.04013969998351792\tfor:0.0381373928458464\tat:0.03772990848712967\t:0.01\n",
"the:0.4093233558040992\tof:0.14347176912824763\tand:0.09918323127245089\tthat:0.08389521681892108\tThe:0.07051764743152035\ta:0.058349880834651466\tMr.:0.05600187837864818\tor:0.0372170226949604\tno:0.03203999763650096\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"and:0.23234027324129125\the:0.15356840316979137\thas:0.13488804493896908\tI:0.0951538646091295\thave:0.09123310325353268\thad:0.08469742673144302\tHe:0.06903244733938367\tbe:0.06694988154974167\twho:0.06213655516671793\t:0.01\n",
"matter:0.23439920500606962\tand:0.1967897509910449\tknow:0.18335273090264087\tsee:0.17286605342187267\tof:0.046759526784717044\tto:0.04482707872428803\tor:0.03936322862249687\tshow:0.03635582188250359\tbut:0.03528660366436645\t:0.01\n",
"the:0.19981263940869776\tand:0.1946193829030507\tof:0.15829447152141402\ta:0.14191137210149787\twith:0.07857038068964715\tis:0.06492235399337816\tare:0.05702345113231543\twas:0.04950031901367082\tThe:0.04534562923632812\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"a:0.4092561336246522\tthe:0.2907522926237038\tthis:0.12306515442132146\tvery:0.043894654802334426\tThe:0.03950231336994864\tA:0.02354196264818626\tof:0.02192253191690995\tand:0.021092587418446673\ttho:0.016972369174496675\t:0.01\n",
"this:0.29230937555357067\ta:0.21263139820831684\tthe:0.1864796543267835\tevery:0.09092312247731175\tother:0.05874865279882758\tthat:0.04563654348362738\tone:0.03621942307226811\tof:0.03581945751775197\teach:0.031232372561542304\t:0.01\n",
"not:0.34529781661311143\tcan:0.19909636097910946\tcould:0.14766802842280813\twill:0.07749917671652388\twould:0.07613470432908515\tthe:0.05059257902564997\tand:0.042197520393483456\tNot:0.0290019268541296\tthat:0.0225118866660989\t:0.01\n",
"south:0.20345069651868364\teast:0.16610692419225329\tnorth:0.14993603185173596\tthe:0.14480568715561606\twest:0.12094492900158951\tone:0.09251253368204893\teach:0.04707512784912191\teither:0.04102984543330831\tother:0.024138224315642335\t:0.01\n",
"be:0.4246648993231662\tbeen:0.13337066927187477\twas:0.0921477307383129\tare:0.07024211070649639\tand:0.06282530839730983\twere:0.056981886945069074\thave:0.05664009926541651\tis:0.056570823082332\tjust:0.03655647227002236\t:0.01\n",
"the:0.38296134835107004\tand:0.14051645535162988\tThe:0.11652857706918647\tthat:0.08686273640745927\tof:0.07615782687414008\tThese:0.06440203855565113\tin:0.045653088419602604\tNew:0.041785509470568846\tthese:0.035132419500691466\t:0.01\n",
"the:0.30118770224415803\tof:0.136768744566076\tand:0.13292833990918573\ta:0.09641617605887866\tbe:0.0858286502888405\tto:0.08214791428939255\twas:0.056961996862790354\tis:0.052982645619020996\tin:0.04477783016165717\t:0.01\n",
"at:0.36421758838637536\tabout:0.19522654418164725\tfor:0.12018849438135111\tof:0.08853032539575521\tand:0.061956721420328015\tor:0.05451104496232183\tAt:0.04085196183647929\tAbout:0.03620035648231621\tin:0.028316962953425538\t:0.01\n",
"is:0.5178751724853038\twas:0.15522161595681416\tso:0.09136686323579837\tIs:0.05718772470680428\tare:0.04761769471557806\tvery:0.034062708348245915\tbe:0.03337518127807033\tand:0.031006912639827106\tnot:0.022286126633558\t:0.01\n",
"and:0.2440447138976167\tto:0.19749697355194545\twas:0.1346830027949297\tbe:0.111336763487121\tis:0.07808270320492956\tthe:0.07222815055527261\twere:0.052089690159776623\tare:0.050762937657898854\tof:0.049275064690509456\t:0.01\n",
"the:0.4038136417587184\ta:0.16918912390018628\tto:0.153093032245749\tand:0.10274729250449097\tThe:0.08538312526682662\tannual:0.02369366421133767\ttho:0.019967702539771894\tthis:0.016435521875583923\tof:0.01567689569733524\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"of:0.3411665043500329\tthe:0.2928873819413327\tin:0.0956139088428767\ton:0.09312614308680606\tto:0.052397006338398826\tand:0.03521000184454775\tby:0.028644123426434635\twhich:0.026559027278363265\tupon:0.0243959028912073\t:0.01\n",
"for:0.26494411625655967\tof:0.22665392523359465\tin:0.17763214647655795\tto:0.08819833898214599\tthat:0.06401311035706027\tand:0.05204338983220885\tIn:0.04371514684972175\tat:0.03920243840960917\twith:0.03359738760254167\t:0.01\n",
"the:0.5614578511957721\ta:0.1386829703630506\tand:0.09856137807482963\tThe:0.06238166908224834\ttho:0.043945812974084265\tA:0.025116676057721457\tof:0.02018875221193639\tthat:0.02018158618726474\ttbe:0.019483303853092323\t:0.01\n",
"far:0.1828967933859734\tsuch:0.16934054090311507\twell:0.16235554652954418\tand:0.14194787344017976\tsoon:0.07224158114245642\tthereof:0.07222833898549798\tbut:0.06999571294511941\tlong:0.06543954274627449\tit:0.05355406992183929\t:0.01\n",
"to:0.35385403356295836\twill:0.23545068175431033\tmay:0.0943555905263713\twould:0.07343111538429775\tshould:0.05352705620094742\tcan:0.050173625223421905\tnot:0.047034774765854034\tshall:0.043460700800014594\tmust:0.038712421781824054\t:0.01\n",
"the:0.6236174345165284\tand:0.11087923301648832\ta:0.06641620935353397\tor:0.04718676996631945\tThe:0.039991616951180975\tof:0.034280937442024394\ttho:0.028311938713494054\tother:0.02211751340395223\tlarge:0.01719834663647821\t:0.01\n",
"of:0.2548415904135225\tin:0.20497513524254793\tto:0.14963018918724633\tfor:0.0982550258509293\tand:0.08888434786753553\twith:0.0723491921329809\tby:0.041936996832845526\tthat:0.04112122104444865\tfrom:0.0380063014279434\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.30924221119967327\tthat:0.12611015277008547\tmade:0.09865062957046655\tis:0.0920144699599962\twas:0.09128595813112018\tplaced:0.07404370378857507\tas:0.06709678931603316\tbe:0.06629358245444635\tor:0.06526250280960379\t:0.01\n",
"due:0.21710452061907495\tand:0.14724977501353537\tcalled:0.1418580768868411\tmade:0.09893158064626675\tbased:0.0931229803668843\tlooked:0.08170143829602709\tlook:0.07903561589175227\tdepend:0.06781224697151875\tdepends:0.0631837653080994\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.43687133710655535\tdays:0.11720959293761739\tthat:0.1066653732388746\tsoon:0.07860140806343817\ttime:0.06121834194643434\tbut:0.05327674065778646\tit:0.047704742354873285\timmediately:0.04478836472060139\tand,:0.04366409897381891\t:0.01\n",
"it:0.19098738899443296\tthat:0.14858923717751657\the:0.11861159650347006\tthey:0.11668493644236243\twhich:0.11311474604325064\tI:0.08874370294804595\tthere:0.08838217498361485\tand:0.06616777705533793\tIt:0.05871843985196871\t:0.01\n",
"and:0.2849573452833227\tof:0.1437435148866111\tto:0.09263610431494233\tbe:0.08495490838501231\tis:0.08415817709340953\tthat:0.08365355574982868\tall:0.0779792294712453\tfor:0.07072316363703328\thave:0.06719400117859473\t:0.01\n",
"will:0.24693648038004848\tcould:0.18983163955391383\twould:0.1439542663030325\tshould:0.13438534735032978\tshall:0.08752610598815738\tmay:0.07499240936629364\tcan:0.047443879688021315\tmust:0.0346179084233615\tneed:0.016788272230254815\tdid:0.013523690716586703\t:0.01\n",
"the:0.5917434258438942\ta:0.1015374286484711\tof:0.0795606764096641\tand:0.059110300205765874\tall:0.04097773361135132\tsuch:0.03703723912242494\tThe:0.028361579151385007\ttho:0.027076612636981332\tother:0.02459500437006208\t:0.01\n",
"went:0.1794974806493376\tgo:0.15454708545878776\tcame:0.11151278596248962\tback:0.09777108854160564\tit:0.09728390677389735\tout:0.0959887918454101\tput:0.09227887075263337\tdown:0.08367866714280338\tcome:0.07744132287303515\t:0.01\n",
"of:0.4311626111544256\tin:0.17330823749706964\tto:0.08519409448285356\tIn:0.061850738240744454\tfor:0.05696670685328176\twith:0.05390577494147847\tby:0.04677325195225249\tfrom:0.04518485018506073\tthat:0.03565373469283343\t:0.01\n",
"the:0.48215872870739607\tan:0.14018151391283232\tof:0.11550147354627953\tand:0.06307294142758962\tin:0.060384957176945586\tby:0.037084395432995756\ton:0.03551827281726645\tThe:0.029595194226791573\tthis:0.026502522751902943\t:0.01\n",
"10:0.14710054876666617\t6:0.13449882731692972\tten:0.12118556879978926\tsix:0.1209220469522493\t50:0.11172451673409042\tfive:0.09712416388258671\t5:0.09522816139427269\t20:0.09376275809748635\t25:0.06845340805592937\t:0.01\n",
"it:0.21165654290007543\tthey:0.17849553925446904\tand:0.11352349032840992\twhich:0.10003823016329348\tIt:0.09840871647723091\the:0.08669379196500901\tI:0.07336866244200968\tyou:0.06624605323947196\tthat:0.061568973230030466\t:0.01\n",
"to:0.23017721398697727\this:0.22563923775425762\ta:0.20769307695466377\tthe:0.09580013050449716\ttheir:0.0539170871160698\tas:0.05247892435541484\tand:0.04909739920602788\tof:0.037957907249057614\ther:0.037239022873034114\t:0.01\n",
"of:0.3490124854372051\tand:0.1510237090476072\tin:0.14043569227794847\tthat:0.1307424858986167\tfor:0.07626604288645794\tto:0.041501430834301564\ton:0.03682615937123134\tbut:0.0333280556738184\tfrom:0.030863938572813217\t:0.01\n",
"part:0.15945008725032395\tday:0.13526025489942017\tside:0.12592296844970757\tout:0.11327739819241414\tone:0.1129538810944345\tline:0.098761138113923\tnumber:0.09847199022949955\tname:0.0776780579148099\tpeople:0.06822422385546725\t:0.01\n",
"called:0.2582093322647018\tand:0.15819133362285118\tbased:0.11104719575934278\tlooked:0.09277099787953787\tdepend:0.08958935811109527\tinsist:0.0719041136608972\tmade:0.07188877273538935\tdepends:0.07008913794239172\tcall:0.06630975802379277\t:0.01\n",
"the:0.6294777316981596\tThe:0.07158109358646467\tany:0.05120006979960496\tan:0.04663196199711569\tthat:0.044463331891802786\tthis:0.038798937297167685\ta:0.03786503564309167\tsame:0.03577815446981068\tlarge:0.03420368361678231\t:0.01\n",
"and:0.33353890069751263\twas:0.1680788178505281\tis:0.1464927602184309\tare:0.09218316951471581\tbut:0.08079014990752888\twere:0.07656145209264209\tHe:0.040819367731266216\tbe:0.026345268997705763\thas:0.025190112989669562\t:0.01\n",
"and:0.15630885319439541\twas:0.14051622242482908\tis:0.12502376757665973\thim:0.1192285595629541\tas:0.10456057814348599\ttime:0.10242595179748347\tmade:0.08705774108904991\tgoing:0.08041883926493483\tit:0.07445948694620738\t:0.01\n",
"the:0.41173661813517437\tand:0.13999056757019615\tof:0.10775295862518824\tThe:0.10000273526717704\tthat:0.09288230032902252\tor:0.05656680349448412\twhich:0.02727601296610817\tthis:0.02722755578918406\tour:0.0265644478234655\t:0.01\n",
"the:0.39150796518849756\tof:0.2170545843952346\tand:0.10625527112622661\tan:0.07297259921942414\ta:0.055469399703126095\tin:0.0421101242826293\tThe:0.03639968087451915\tgreat:0.03537162914064554\tby:0.03285874606969696\t:0.01\n",
"the:0.36292478298265574\ta:0.15976392099267728\tof:0.11541619138807474\tand:0.09890889467005297\tper:0.0856037053713127\ttwo-story:0.07356644339471258\tby:0.0341319583107871\tto:0.029962153642574013\twith:0.02972194924715299\t:0.01\n",
"well:0.21321257425074594\tknown:0.1833023137221186\tsoon:0.17017982311130794\tfar:0.13451377472303216\tand:0.1048509904369157\tlong:0.06163044115944836\tsuch:0.04848962176196867\tjust:0.03999506790086283\tmuch:0.03382539293359975\t:0.01\n",
"one:0.33708984341259335\tpart:0.14875576146602673\tout:0.10384043397499726\tportion:0.09083714555922895\tside:0.07562804233059955\tsome:0.06197550487992145\tthat:0.060324718837243906\ttion:0.057990436636891\tmember:0.05355811290249791\t:0.01\n",
"the:0.2532837237576991\tof:0.19616563294603748\tto:0.14670082910381574\tand:0.11029112192893743\tin:0.08445481701593331\ta:0.06753821873156941\tby:0.0496415351365421\tat:0.046739111180747285\t<s>:0.03518501019871825\t:0.01\n",
"and:0.19015221398099005\tis:0.13714824859663252\thim:0.10782160002887337\tas:0.105674777708374\table:0.10228139455550705\tthem:0.09044534777275941\tbegan:0.08726093874208705\twas:0.08694733981483148\tright:0.08226813879994509\t:0.01\n",
"as:0.21746462185755377\thow:0.16646086355316364\tand:0.1497841102317769\tso:0.11144824206198543\twas:0.08440350804622834\tthe:0.08084282265796623\tvery:0.07370289082155293\tis:0.057990149224184925\tHow:0.04790279154558791\t:0.01\n",
"of:0.3226980273342098\tto:0.13096431593051314\tin:0.11107196633693774\tand:0.09110344346966172\twith:0.0750609234826915\tfor:0.07363405578535002\tby:0.06236659822760596\ton:0.06161617985167086\tthat:0.06148448958135917\t:0.01\n",
"the:0.3187533310365806\tof:0.19153223533904776\tand:0.13333775657562166\ta:0.08569118153695421\tto:0.07805362827458312\this:0.04896787193732948\tbe:0.04728575140178597\tmy:0.044784222538298106\tI:0.041594021359798936\t:0.01\n",
"<s>:0.399820680538281\tit.:0.1419835320182208\thim.:0.12104988600162563\tthem.:0.11112221497001841\tday.:0.048262548695622805\ther.:0.04336700250598546\t.:0.041818250047645104\ttime.:0.04140771261469906\t?:0.04116817260790196\t:0.01\n",
"the:0.7514807229415914\tThe:0.08733829030511496\ta:0.07173264331953222\ttho:0.04101637774144897\ttbe:0.016018657337912228\this:0.010462345172300318\tour:0.004363590540608911\tthis:0.004100496346307664\tTho:0.0034868762951833503\t:0.01\n",
"of:0.2732149323548869\tthe:0.20566639566427047\tand:0.19731965436216609\tto:0.08644322288683833\tin:0.04880187934035697\tat:0.04693446852209707\t<s>:0.04456847127973911\t.:0.04415639200742723\tby:0.04289458358221779\t:0.01\n",
"the:0.23765640265359408\tof:0.19385784076364954\tand:0.1460666063147157\tto:0.11198119111533542\tat:0.072873040605823\tin:0.06766536014132056\ta:0.0673429170023947\tfor:0.05285048509320575\t.:0.039706156309961244\t:0.01\n",
"as:0.22008673636930345\tif:0.1723493376288106\tthat:0.16459943286961112\twhich:0.14323576570155191\tand:0.10330385129101195\twhen:0.08277613968411916\twhat:0.03822791640123522\tIf:0.03275715453364475\tbut:0.03266366552071179\t:0.01\n",
"in:0.3944799968382686\tof:0.18874540595312866\twith:0.06976465980310928\tIn:0.06820956128604452\tto:0.06512199787298584\tand:0.06459079261322975\tfor:0.05391169248626865\ton:0.045367144871650805\tfrom:0.03980874827531374\t:0.01\n",
"the:0.27999139578163734\this:0.17732082618226558\tof:0.12919646506996466\tmy:0.10513282176572257\ta:0.07697694585515122\ttheir:0.07586040277040655\ton:0.057932208429660265\ther:0.04453100864329852\tand:0.04305792550189322\t:0.01\n",
"and:0.246044771700871\tof:0.11272233964907918\tthe:0.11201495193836379\tsaid:0.09073666324832311\ta:0.08892905395768098\tto:0.08824912385651389\t<s>:0.08823759566161248\tfor:0.08184264837841086\tas:0.08122285160914461\t:0.01\n",
"he:0.3253946989607475\twho:0.11827513394006156\tI:0.10956363510665572\tand:0.08734433719744777\tthey:0.08153320256821595\tshe:0.07912062606641648\tHe:0.06934784876496612\twhich:0.06535775285052314\tit:0.05406276454496572\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"of:0.3420422053370365\tto:0.1388434664336376\tin:0.13786264416522526\tand:0.08027954924229379\twith:0.07123181302638898\tfor:0.06369579859368074\ton:0.06135083543937238\tby:0.04859824571313037\tfrom:0.04609544204923423\t:0.01\n",
"he:0.216594485409054\twho:0.13089149879237486\tit:0.12884655275817156\tthey:0.11222749493633567\twhich:0.10803539969364409\tthat:0.10319079678052699\tI:0.0741707050458965\tand:0.06728940336216857\tshe:0.048753663221827684\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"they:0.2177013473352435\twe:0.1771249735843429\the:0.14434225279233606\tit:0.0984829074791026\tyou:0.08986954281737573\twho:0.07019176055602475\tI:0.06731427539328014\tand:0.06542442091317002\tthat:0.059548519129124386\t:0.01\n",
"to:0.5049773478968723\ta:0.18384233190667484\tthe:0.09887473289360627\tof:0.0673201942531387\this:0.05001991795220829\tand:0.025177811037740184\twill:0.0210233622837186\tcan:0.019796534881038323\ttheir:0.01896776689500245\t:0.01\n",
"street:0.16931241187994353\tState:0.16122279410788334\tday:0.1438151369181825\tcity:0.13130526707036036\tnorth:0.09841530859147828\tHundred:0.07837155733623836\tstate:0.07519179348191657\teast:0.07327346062336774\tWhite:0.059092269990629304\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"and:0.18534523678502302\taway:0.16771805925984679\ttaken:0.11072574075811578\tthem:0.09801925834481437\thim:0.09463813178502384\treturned:0.08981768368962882\tit:0.08280143665758126\tcome:0.08072568899912669\tarising:0.08020876372083942\t:0.01\n",
"of:0.2722568817965146\tto:0.17169522631080353\tin:0.14646245223377993\tfor:0.10185470783397958\twith:0.06770201465156615\tby:0.06684928080011746\ton:0.0650864632146108\tthat:0.05028294900667728\tand:0.04781002415195075\t:0.01\n",
"the:0.33601536274839616\tof:0.16958902826991312\tMr.:0.10573912457216135\tThe:0.10541590539910746\tand:0.08531333366099246\tthat:0.07291914405203645\ta:0.05455260066519831\tthis:0.03190090597915657\tin:0.028554594653037953\t:0.01\n",
"the:0.23275195534384432\tand:0.2098788158200616\tof:0.17554547920780295\tto:0.13887981788698933\ta:0.07369937242826398\tat:0.04582585525437207\tin:0.04070035937594807\t.:0.038113158377029416\tby:0.03460518630568816\t:0.01\n",
"and:0.1858121345644666\tis:0.1301280118131278\table:0.12132666117380189\tnot:0.10218303442626211\tnecessary:0.09420766528966665\thim:0.09287939787859383\tenough:0.09269631237058108\tthem:0.08733232841025079\tseemed:0.08343445407324936\t:0.01\n",
"the:0.5759794897015565\tof:0.16837632283231002\tsurface:0.06860969600914403\ton:0.038253833850775826\ttho:0.03731974973809637\tand:0.03650416793927605\tto:0.024851163593904792\ttheir:0.021566564990746304\tsaid:0.018539011344190143\t:0.01\n",
"or:0.2448478461409917\tnot:0.15298821083114747\tmuch:0.11752700383071601\tno:0.11671354168465983\tand:0.08019429322465106\tthe:0.07721866835509415\tis:0.07588536048029244\tbe:0.06417079697209242\twith:0.06045427848035488\t:0.01\n",
"the:0.49640542972121227\tThe:0.17711315384060183\tand:0.06622036518077834\ta:0.06367296248914919\this:0.048385539840804646\tan:0.04150361733078284\ttho:0.04003057094449445\tof:0.03138228127031354\tin:0.025286079381862912\t:0.01\n",
"I:0.21623072348169672\twe:0.16777123601194352\tthey:0.12362096103881598\tWe:0.09602625993578803\twill:0.08488548580878909\twould:0.08343257151205331\twho:0.0795945158415882\tto:0.07788581964555237\tyou:0.0605524267237727\t:0.01\n",
"of:0.30878724127568996\tfor:0.17451185097537739\tin:0.16257990540523662\tto:0.08149883974273232\tand:0.07452184131253772\tat:0.0510971870964943\tIn:0.047302276342618466\tthat:0.045437154008629\tnearly:0.044263703840684274\t:0.01\n",
"was:0.2122325018371064\tand:0.16282735089772557\ta:0.14193069166090072\tbe:0.11635381243247954\tis:0.11604485055959413\twere:0.069338163184044\tare:0.06541494943338683\tbeen:0.0611437966993236\tto:0.04471388329543935\t:0.01\n",
"all:0.6431723350842143\tdifferent:0.08786415453199789\tvarious:0.07091122388159936\tother:0.05978167111160113\tthe:0.04101064563615075\tmany:0.03224256014284229\tAll:0.019229795742366926\tand:0.01845141078663102\tcertain:0.0173362030825962\t:0.01\n",
"the:0.43948949218046207\ta:0.1701722226643037\tan:0.10199846597674372\tin:0.06433379508054472\tthis:0.06029053065768352\tof:0.040715381667189944\tThe:0.04059571506560336\tand:0.037910601367324194\tany:0.0344937953401448\t:0.01\n",
"the:0.3250070074440385\tof:0.1404159180796893\tthis:0.13651125745738846\ta:0.1191873772217053\tand:0.08494699474649488\this:0.051772350316216874\tin:0.046342712284608\tto:0.04377660884963586\tother:0.04203977360022286\t:0.01\n",
"of:0.3615402389807708\tin:0.15188515551022932\tfor:0.1310459851928865\twith:0.08501487302299952\tto:0.07706827086360643\ton:0.054083314962011145\tupon:0.0459343615901831\tabout:0.042105656831414914\tand:0.04132214304589842\t:0.01\n",
"was:0.1730858700695551\tis:0.15313716872359526\ta:0.12741201779364336\tbe:0.11458170938612752\tthe:0.10631926015853056\tare:0.10336330566395033\tand:0.08671321677068779\twere:0.06837350578199111\tbeen:0.057013945651918994\t:0.01\n",
"it:0.20845689664902517\tand:0.15251286045257167\tthey:0.13374503930675574\twhich:0.0987365562202165\the:0.09852344762470704\tIt:0.09135314840375387\tthat:0.0719340865424109\tyou:0.06975508100976117\tI:0.06498288379079813\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"has:0.18806535314655703\thave:0.1597675464560571\tand:0.135680953412518\tbe:0.10775670586670762\thad:0.10381133930244593\the:0.09078097643152543\tI:0.07171198808370434\twas:0.07135103700147666\tis:0.06107410029900777\t:0.01\n",
"a:0.31512590749534175\tper:0.28421665863770457\tthe:0.13288189383303015\tone:0.07715323479150066\tlast:0.053954955400450866\tevery:0.041374045353078544\tthis:0.03383006958386487\teach:0.031009938372202343\tnext:0.020453296532826338\t:0.01\n",
"three:0.19279697731532905\ttwo:0.16467916308965086\tmany:0.13785310916254612\tfour:0.11005783504033953\tfive:0.10177810510635743\tseveral:0.07569980042604027\tfew:0.07568938861103443\tten:0.07107366265411402\tsix:0.06037195859458832\t:0.01\n",
"and:0.26276554424049875\twell:0.17165735638285678\tregarded:0.10215108442096366\thim:0.08688236618817878\tknown:0.08594969760882573\tsoon:0.07468266047506815\tit:0.07254659441566477\tis:0.06743217334715047\tbut:0.06593252292079285\t:0.01\n",
"in:0.4100949741212493\tof:0.1989969427619345\tto:0.08313801353676308\tIn:0.07397797225200524\tand:0.06106214360326058\tthe:0.05398800078655676\ton:0.041742709286061705\twith:0.03381389583535994\tfrom:0.03318534781680892\t:0.01\n",
"as:0.1814730594089925\tand:0.17326555160750992\table:0.12147091128136288\tis:0.10624524755801905\tright:0.08909045872362921\tnecessary:0.08778701214393811\tenough:0.08313500991634766\ttime:0.07479924972111708\torder:0.07273349963908361\t:0.01\n",
"quarter:0.7733623822720264\tline:0.06865470739970324\tcorner:0.029995053734105437\tside:0.027884544837129956\tcounty:0.01938807321413347\tcity:0.01854602058291836\tfeet:0.01834196983198014\tout:0.017394715859006253\tsouth:0.0164325322689968\t:0.01\n",
"of:0.26895848776649706\tto:0.20676706499103206\twith:0.14966944532838738\tfor:0.09397176497040001\tlet:0.07401011253904258\tby:0.06835099411870932\tLet:0.054620703467409645\tamong:0.04250863304122451\tupon:0.031142793777297374\t:0.01\n",
"two:0.1890835073337299\tmany:0.14223874878899867\tthree:0.12082400636233336\tfew:0.09862700989321287\tfour:0.0976510706475303\tfive:0.0939273167674691\tten:0.08721328668655987\ttwenty:0.08130276018621532\tof:0.07913229333395069\t:0.01\n",
"he:0.27049798266870667\twho:0.1349796471541286\tI:0.13396751331737144\tthey:0.11309218533505609\thave:0.10728665989065171\tand:0.06849171130664643\tshe:0.06098834989257653\twe:0.05271624072952704\tit:0.04797970970533553\t:0.01\n",
"of:0.22567759342673321\this:0.1432188079463686\ttheir:0.12859039064532643\tthe:0.128430296726385\thigh:0.11641161002431633\tand:0.09430717097116924\tlow:0.06627859307438587\ther:0.04673262687766487\ta:0.04035291030765048\t:0.01\n",
"an:0.2334520294880513\tof:0.2135915042804552\tand:0.17744610177879877\tthe:0.15968773682136428\tin:0.06340208495223901\this:0.043003865826905706\ther:0.036834327480403106\tman-:0.03314281257797043\tAn:0.029439536793812157\t:0.01\n",
"line:0.26480180046467733\tside:0.11993267248327327\tnumber:0.10996652062798452\tout:0.0953797506697783\tcorner:0.09249235786227203\tpart:0.08839958290955666\tcity:0.08800772748914915\tstate:0.0710529613852143\tname:0.0599666261080943\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"number:0.2653217701404794\tamount:0.22293152162295005\tout:0.12221586675369868\tplenty:0.07594738691716515\tday:0.0658028125790361\tthousands:0.06508193992081093\tpiece:0.06331559026500483\tdeal:0.05570479080479544\thundreds:0.05367832099605946\t:0.01\n",
"of:0.2778467217151382\tin:0.13800122799602393\tfor:0.13626520287138577\tto:0.12775466443582714\tand:0.0809162967866146\tthat:0.07595941793312151\twith:0.06688451272591538\tby:0.04984278468798799\tIn:0.03652917084798547\t:0.01\n",
"hundred:0.1745801653051041\tfeet:0.14499480373197512\tand:0.14291311442447596\t;:0.1246135384216046\tup:0.10975774510731659\tstreet:0.07627453150561432\thim:0.0739876233080169\tday:0.07221156126906497\ttime:0.07066691692682746\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.1495899024693767\tmiles:0.14173092433846196\tfree:0.13778745773831563\tfar:0.11531946154984084\taway:0.11422025854048723\tsuffering:0.09289524012248203\thim:0.08182258540364966\tthem:0.08046450554330968\tor:0.07616966429407625\t:0.01\n",
"as:0.2269592759227454\tand:0.20617057677448772\tthat:0.20118500383781673\tbut:0.08236774773615126\twhich:0.07783285192564306\tof:0.061301583601888775\tif:0.05052936978399034\twhen:0.04302154371839304\tthan:0.04063204669888371\t:0.01\n",
"in:0.24333994743612922\tof:0.18871067140801695\tthe:0.14254258973892459\tand:0.10760876324558527\tfor:0.09174081455919122\ta:0.06366595919272895\tto:0.061841865908333744\tIn:0.05733705309984939\twas:0.03321233541124056\t:0.01\n",
"in:0.3280063413811746\tof:0.2373463239875848\ton:0.0856272975633177\tIn:0.07837969502345331\tfor:0.07532933239794065\tto:0.07060789595420998\twith:0.04151201822278476\tfrom:0.03931902089765491\tat:0.0338720745718793\t:0.01\n",
"of:0.21117435763001066\t.:0.1594096194106117\tthe:0.15358069010401934\tand:0.140029907110392\tJohn:0.07536611439243111\tA.:0.0660193253858156\tMiss:0.06566616116472085\tH.:0.06005863552721135\tJ.:0.05869518927478727\t:0.01\n",
"Board:0.22526811550538184\tline:0.12994405101573345\tState:0.12165236661558933\tyears:0.11503206511343281\tstate:0.09019888457506985\tcity:0.08781607677727439\tcorner:0.08686415627296384\tcounty:0.07241976758035501\tcase:0.06080451654419939\t:0.01\n",
"and:0.18290005862930672\torder:0.13196712928889226\tnecessary:0.11131757003867983\table:0.11068546819556749\tis:0.10436541550942853\thave:0.0929818922683655\tas:0.08677817270098799\thad:0.0861842482361664\tnot:0.08282004513260527\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"be:0.396383778769424\twas:0.1590187117948766\tbeen:0.15638652972840647\twere:0.06920442482901352\tis:0.06634674568584097\twell:0.04802906952951731\thave:0.03839665318796245\tare:0.029869104392168267\tand:0.026364982082790332\t:0.01\n",
"in:0.2679623029560077\tof:0.19860565711965802\tto:0.10935611265367001\twith:0.09323545892094129\tfrom:0.07770932718409249\tfor:0.06993863671210758\tby:0.06751657484375599\tupon:0.05456850346081428\ton:0.051107426148952466\t:0.01\n",
"a:0.5392501124230162\tthe:0.25361500427852723\tthis:0.03986178514596627\tof:0.03521359178756071\twith:0.030402701245264833\tvery:0.02625596409685355\tno:0.025380010812339433\tany:0.020265046140900043\tThe:0.019755784069571732\t:0.01\n",
"of:0.30201905806247276\tthe:0.17030496234875606\tin:0.11068424530149683\tand:0.09989204190096768\tfor:0.0861781280132933\ta:0.08450522390944931\tto:0.05361798221987132\tthat:0.05213488323970909\twith:0.03066347500398353\t:0.01\n",
"is:0.1936087435691293\twas:0.1438323593143901\tare:0.12186296434341748\tdid:0.11746438789983729\tdo:0.10721052931890086\tcould:0.08616034692945328\tand:0.07546047057592255\tdoes:0.07227133429734382\twill:0.07212886375160546\t:0.01\n",
"the:0.3095876780584938\tof:0.17316931702614413\tto:0.12268602141238893\tand:0.12089557564332551\ta:0.08723231527611129\tin:0.05333032522055631\tbe:0.04669364142145447\tis:0.03842252484347462\tfor:0.0379826010980508\t:0.01\n",
"the:0.4562157453854121\this:0.1773565069252479\ta:0.12519353782405926\tmy:0.057273403809469686\ttheir:0.05112938005510933\ther:0.04904495716405355\ttho:0.02789918726628458\tyour:0.02375149429933419\tof:0.022135787271029387\t:0.01\n",
"have:0.25049146152931534\thas:0.16574496079050755\thad:0.15522261705542387\tand:0.11528806535365624\the:0.08940359404256798\tI:0.08710178177668433\twho:0.05294789815229355\twas:0.038434341027994985\tthey:0.03536528027155629\t:0.01\n",
"it:0.2510914051992149\tIt:0.17137973579832944\the:0.16425395953659566\twhich:0.10542520949982545\twho:0.07155436438202946\tand:0.06624320513143349\tHe:0.06523264442476874\tthat:0.04772542526654719\tshe:0.04709405076125574\t:0.01\n",
"Mr.:0.23381006734299684\tof:0.14892685200845546\t.:0.10655839889629619\tat:0.10469713781257285\tand:0.10408664924866769\tto:0.09670617480363528\ta:0.07671203378764155\tMrs.:0.059366869531578235\tthe:0.0591358165681558\t:0.01\n",
"the:0.24273593368698743\tof:0.19482458867717511\tto:0.15386363801051614\tand:0.13977018841803462\tbe:0.07188836850300179\tin:0.06984476594174335\tor:0.04024831417544013\twas:0.0393807699116105\tis:0.03744343267549099\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"or:0.2045692572631001\tnot:0.165069560207902\tand:0.1406603448030436\tredemption:0.12589568267922982\tthan:0.08972502997109885\tis:0.06896450207811626\twas:0.06877777860304822\tlook:0.06433523491393658\tthere:0.06200260948052438\t:0.01\n",
"and:0.29635189305068393\tso:0.14127294388052722\tfact:0.11934677619133646\tsaid:0.09382506667151261\tknow:0.09321340215184683\tsay:0.08466047801883074\tis:0.061229379962697866\tbut:0.05099440426762219\tbelieve:0.04910565580494222\t:0.01\n",
"the:0.5712264689311012\ta:0.1881279475778576\this:0.06991961020821938\tThe:0.03847181938405381\ttho:0.0362699222093803\tthis:0.02718501659154476\ther:0.020431089495532614\tof:0.019478151370732763\tmy:0.01888997423157765\t:0.01\n",
"and:0.2425278232362331\twas:0.14559685815360235\tit:0.14400821087854637\the:0.09012357675329474\tbe:0.08300082970471609\tyears:0.08253269416048656\tHe:0.07441476083778327\tIt:0.06517377268271395\tis:0.06262147359262342\t:0.01\n",
"the:0.6911469424118788\ta:0.10151458501695497\tThe:0.05092473981046216\tand:0.05036578290203895\ttho:0.02918094711770896\tis:0.024885274380417023\tof:0.01471790632411218\twas:0.013668083319966417\tal-:0.013595738716460507\t:0.01\n",
"in:0.31213636848631654\tof:0.304589248207651\tIn:0.13833131991158007\tto:0.06729754138791358\tthroughout:0.04353109647139806\tand:0.03610033147900299\tthat:0.030912451608770646\tfor:0.030187065049822007\ton:0.026914577397545075\t:0.01\n",
"the:0.502171482070609\ta:0.10697251917639063\tgold:0.0824537954245229\tof:0.07968322901328836\tand:0.07594730785663503\tThe:0.04063625511948416\ttho:0.036789298198402\tsome:0.03465162181679505\tany:0.030694491323872804\t:0.01\n",
"of:0.407674785398844\tto:0.1277612093619651\tin:0.0981100127674003\tand:0.07987385520716705\tfor:0.06192213266467773\tby:0.059814335151744225\ton:0.0571953785601922\tthat:0.05542901686480434\tIn:0.04221927402320507\t:0.01\n",
"the:0.2430700290993388\tof:0.19255952245263241\tand:0.1541377657113866\tto:0.1438140321537308\ta:0.07286436798209919\tbe:0.051059482517056685\tor:0.05091033703493395\this:0.042464487272563516\ton:0.03911997577625805\t:0.01\n",
"and:0.20741641028920502\tfrom:0.15079352200961685\tis:0.1252680971436446\tor:0.0983022470136906\tby:0.09350483692515989\twas:0.09316047267781404\tare:0.08711847529742332\tof:0.07019942090473245\tbe:0.06423651773871325\t:0.01\n",
"the:0.8669368527056204\tThe:0.0389610086643136\ttho:0.03812692857930305\ttbe:0.014074451955827136\tof:0.00971415992889058\tand:0.007488408785041512\tthis:0.005807203533932444\tto:0.004906667042670002\tthat:0.003984318804401365\t:0.01\n",
"the:0.2674492964256619\tof:0.20511700061949348\tand:0.14485297190820026\ta:0.10901726580538401\tto:0.07826945908641957\tbe:0.053803876767259305\twas:0.04954367835637349\tis:0.042308161686394764\tin:0.03963828934481334\t:0.01\n",
"of:0.2577613558831056\tfor:0.21611733396638805\tto:0.11681641650563723\tand:0.10621025280088428\tthat:0.08825245767092386\tin:0.07833239753419989\tby:0.04567785770791969\tall:0.040738366494910236\twith:0.04009356143603127\t:0.01\n",
"time:0.16567993183890278\tman:0.12991036354079466\tit,:0.11508822343074916\tthem,:0.10436649065250439\tup:0.10239361202406623\thim:0.09925487475741737\tmen:0.09632524471907442\tit:0.09559650259481241\thouse:0.08138475644167864\t:0.01\n",
"the:0.43824649046102443\ta:0.3207302517275055\this:0.05617978208455463\tThe:0.04205874167181899\tof:0.040066073333490146\tand:0.029763690893341972\ttheir:0.02508060692319802\ttho:0.02023291758910129\tan:0.01764144531596506\t:0.01\n",
"the:0.21168661632910743\tand:0.17342087587379088\tof:0.14965243031096215\tas:0.14862640424456694\ta:0.08287979349307766\tto:0.07107758859510925\tbe:0.05689152027188907\tsuch:0.04860602071964438\tin:0.04715875016185233\t:0.01\n",
"<s>:0.3550460877804933\tit.:0.19814273989309963\thim.:0.1030700139664756\tthem.:0.10238350570504234\ttime.:0.05274724244410294\tagain.:0.04600195909029765\t.:0.0443085602473894\ther.:0.04424431336725336\tcountry.:0.04405557750584577\t:0.01\n",
"the:0.27062093316726427\tof:0.2058837608840983\tand:0.08834827289900334\tThe:0.0853987581870392\tMr.:0.0848051425396133\tthat:0.08185133110159959\tin:0.0776092527328897\tMrs.:0.049118875532564533\twhich:0.046363672955927845\t:0.01\n",
"the:0.42089018418201757\tand:0.17391606778844382\tof:0.14385569358928882\tmany:0.054428357700082496\tfor:0.045318476613987135\tthese:0.04040668815676639\tThe:0.04036616273614671\tgreat:0.036210166559679\ttheir:0.03460820267358813\t:0.01\n",
"the:0.21111055812820548\ta:0.19711595561915765\this:0.1632526150918861\tof:0.15561089368668068\ttheir:0.10536910508033777\tand:0.043915415081643275\tmy:0.039657083122798364\tits:0.03862654960387073\ther:0.0353418245854199\t:0.01\n",
"the:0.2382284484858104\tand:0.20122952992515808\tof:0.19304712948183925\ta:0.09216272240482247\tto:0.08973984001616922\tI:0.050478338513428325\tin:0.044774889303067195\tthat:0.04292983420610713\tat:0.03740926766359787\t:0.01\n",
"the:0.5703418561115114\tand:0.12483344038203494\tof:0.04968566631381561\this:0.04938755091526294\tThe:0.04813739749594229\ther:0.0464712358810217\tto:0.03484026432537659\ttho:0.03448512033276069\ttheir:0.03181746824227382\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"was:0.2262382846308838\tis:0.16622976524814384\tand:0.15949684979329104\tare:0.09779973186405097\tbe:0.08455105752911157\tmen:0.06681207254533283\twill:0.06610405122510182\twere:0.06399057774185225\thim:0.058777609422232\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.473488961603652\ta:0.21325468339609313\tThe:0.05536335097627146\tin:0.04961818475873089\tthorough:0.047329241904631635\tof:0.04362522932792923\this:0.04180843102095777\tfull:0.03339531205106555\ttho:0.03211660496066824\t:0.01\n",
"of:0.3538100846561979\tto:0.1708180374614593\tin:0.15096754610610366\tand:0.07835514206482472\tthat:0.06956030351353455\tat:0.04447458041032812\ton:0.044439317502371456\tfor:0.04004694773105797\twith:0.037528040554122295\t:0.01\n",
"opin-:0.5939843907607216\tUn-:0.08595011293289365\t<s>:0.06752387641536034\tprovis-:0.06653740112052492\t.:0.04327353482581793\t-:0.03635428465933705\tthe:0.03456737705554569\tand:0.03319797540109606\tthat:0.028611046828702733\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"and:0.1390807564514581\table:0.1172699921339807\tinclined:0.11264383740129874\tbegan:0.11257028316868084\treason:0.11186394006528023\tenough:0.10371048650475503\thim:0.10279962615609585\tme:0.09955985379255257\tas:0.09050122432589786\t:0.01\n",
"the:0.2723481281437821\tand:0.19668214768263018\tto:0.15253132558714383\tof:0.123601013420646\ta:0.07841525691254368\tor:0.04657671415391402\tin:0.046197418713357724\tat:0.037471331313730136\tbe:0.03617666407225231\t:0.01\n",
"a:0.22685541286065142\tsome-:0.17788062870377025\tgood:0.10530570796112057\tany:0.09552561956200023\tone:0.0897487944829768\tonly:0.07937362456865595\tthe:0.07786477180745491\tany-:0.07052044533501575\tevery:0.06692499471835417\t:0.01\n",
"the:0.44824172585585126\ta:0.3289786764119717\tThe:0.06826137755466945\tand:0.03626295104611461\tof:0.028190701027708622\ttho:0.026451156874080364\tto:0.023448733698669382\tA:0.019342375000225818\tthis:0.010822302530708696\t:0.01\n",
"of:0.37360998796638195\ton:0.18804779584624426\tthe:0.1439091840109695\tand:0.07400436269129218\tto:0.05915776679289412\tin:0.05632965084453412\tat:0.053661543529850385\tfrom:0.022676593298884277\tfor:0.01860311501894913\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"of:0.4961430929358449\tin:0.09632287688363061\tto:0.08808536309730083\tby:0.06126148644937511\tand:0.05989680178737261\tthat:0.05825530344450772\tfor:0.05518942570505533\ton:0.03783906306710607\tfrom:0.037006586629806694\t:0.01\n",
"well:0.21842075983329573\tsoon:0.20777084605516521\tfar:0.1407636306993205\tknown:0.1352211987599772\tand:0.09452780557755935\tlong:0.05289644069995917\tsuch:0.0488093420174617\tmuch:0.04765358315663654\tjust:0.04393639320062458\t:0.01\n",
"he:0.33058510921607737\tis:0.1723170756825551\tbe:0.11524369987115592\tHe:0.09685095197191491\twas:0.0931290811141368\tand:0.06734933739338943\tshe:0.04355880300859508\tI:0.03593927162649026\tbeen:0.03502667011568519\t:0.01\n",
"a:0.1821930239355388\tmore:0.17831254445915634\tand:0.17101495938087094\tof:0.10570272110373764\tto:0.0928494181314706\tthe:0.09138041417503706\tfor:0.07045040154011817\twill:0.050840746572120545\tbe:0.047255770701949744\t:0.01\n",
"of:0.41656678097919053\tin:0.21666929412283256\tto:0.08208398646274435\tIn:0.06505568315542949\tfor:0.049284747976466405\tby:0.04591720367369443\tat:0.04239487013212465\tthat:0.03770211152107229\tfrom:0.034325321976445236\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"and:0.23147186897819022\t<s>:0.21938820409391566\tthat:0.12806420301480465\twas:0.08476280698818368\tbe:0.07616464008921547\tare:0.06569063538253903\tnot:0.06523136918661365\tin:0.06026547995762615\tis:0.05896079230891157\t:0.01\n",
"of:0.43660860760827996\tin:0.12312467004934577\tand:0.08999815929893411\tby:0.07203354760719555\tto:0.07043159572670112\tfor:0.05864745336622039\ton:0.05629685665033061\twith:0.047614053999351404\tthat:0.03524505569364087\t:0.01\n",
"of:0.2518483017614275\tat:0.1925751777755313\tfor:0.1876023895421677\tin:0.11692841684000418\tto:0.09540364614544931\tand:0.04304690689362529\tfrom:0.03834422395469962\tduring:0.03292795892418675\tby:0.03132297816290828\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"be:0.16397490470439308\twas:0.13351459846889696\thave:0.1286428148973121\the:0.12029101246615098\tso:0.11988121386235553\thas:0.0899840485549446\thad:0.08079544667011684\tis:0.08033890791665718\tI:0.07257705245917281\t:0.01\n",
"of:0.4560154461849908\tin:0.2530856486704141\tthe:0.09668460194163857\tand:0.05159682156883679\tIn:0.049215600609308935\tfor:0.03577513646186502\tto:0.02131774578715281\tor:0.01593216723383632\tby:0.010376831541956719\t:0.01\n",
"the:0.2584370386898756\tand:0.17407984820835767\tto:0.14748263120336905\tof:0.12166594860433622\tin:0.0725524639895902\tbe:0.06172551520608559\tthat:0.0529369222598797\tis:0.05177386334512989\ta:0.049345768493376053\t:0.01\n",
"the:0.2972722027089941\tto:0.2737048782953615\tof:0.14229570829363578\ta:0.1024423914349938\tand:0.06242210566497735\tin:0.032493095866839065\tfor:0.0323661751627337\tthis:0.027750141253590026\this:0.019253301318874844\t:0.01\n",
"most:0.2594688055302746\tthe:0.18738748383137502\tand:0.12672724809478472\ta:0.10518653296054255\tof:0.07670674193287481\tmore:0.06609461525834692\tis:0.05998081576621212\tvery:0.05630242570634052\tin:0.052145330919248604\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.6307137741451901\tof:0.06575678269136734\tand:0.0593657648386779\tin:0.056175245185658834\tThe:0.052163662622580265\ta:0.04840251314417644\ttho:0.03053202614882842\ttheir:0.024690239826211286\this:0.022199991397309382\t:0.01\n",
"the:0.6033911764098422\ta:0.09713931068168626\tof:0.07451809572985602\tThe:0.05982492059142254\tand:0.042733385954127616\ttho:0.03137787407225064\tthis:0.03131247611672101\tto:0.029616366177735592\tby:0.020086394266358148\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.2702205851480953\tand:0.25373061212316383\tof:0.10788404947085119\ta:0.07682900740008422\tI:0.07017616036991155\tto:0.059459124103990735\twill:0.05897063657146992\this:0.055435515606522774\tin:0.03729430920591028\t:0.01\n",
"the:0.32785961978283545\tof:0.17274650601366504\tand:0.11564886028659735\tto:0.07284070357735181\ta:0.07119407616128984\twas:0.06226527202271897\tbe:0.06027913999887273\tis:0.055059672599117995\tfor:0.05210614955755076\t:0.01\n",
"his:0.345339158900786\ther:0.14094780739690452\ttheir:0.10988569778560543\tmy:0.10600697970856099\tthe:0.10005188639718667\ta:0.07938125963409279\tand:0.04808553202872458\tyour:0.037661370339577706\tbis:0.022640307808561348\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"in:0.1360524169921652\tof:0.13497343563196895\ton:0.1315494490886801\tis:0.12981891098560783\twas:0.1036958450779658\tand:0.09614716662421471\tas:0.09324690926131471\twith:0.08959105768702533\tfor:0.07492480865105756\t:0.01\n",
"of:0.18571329624269758\tbe:0.1464675857448542\tand:0.14389133627589543\tthe:0.1376823421893935\tto:0.10025920270847394\twas:0.09724034888722495\ta:0.0613128287322257\tis:0.06018966730697438\tin:0.057243391912260334\t:0.01\n",
"of:0.29876895434262474\tin:0.1984707432613619\tto:0.11715138583166743\tfor:0.07341845189761997\twith:0.07262182394026943\tby:0.07156654753544392\tand:0.07076325946739156\tIn:0.04794966764985871\tthat:0.039289166073762316\t:0.01\n",
"New:0.34229760383284175\tof:0.3398734190266482\tin:0.14890625640409727\tIn:0.037488816870756315\tto:0.030666166911817568\tand:0.02829958908182625\tfrom:0.023509942346899602\tfor:0.022076269378826514\tby:0.01688193614628642\t:0.01\n",
"be:0.17939284590177879\twas:0.16382677519022773\thave:0.12956836236413113\tand:0.10978227974595578\thad:0.09673916195997284\tis:0.09454550268726483\thas:0.08714879644126167\tbeen:0.06629568000684281\the:0.06270059570256449\t:0.01\n",
"of:0.28211092078192296\tto:0.16103344262541222\tand:0.12813000433305147\tin:0.12105564578373806\tfor:0.0831621761722739\tat:0.0666576315422447\ton:0.0574444296473341\toi:0.04530422872793979\tby:0.04510152038608269\t:0.01\n",
"and:0.21406570126280386\tto:0.18624825820563917\tthe:0.11361776477580708\tof:0.09545390220861505\ta:0.09008699567580138\twas:0.08875870350827242\tis:0.08194647336511633\tbe:0.060510000580715935\tbe-:0.05931220041722885\t:0.01\n",
"the:0.35666100417320046\tof:0.17064965424314188\ta:0.1627962174740542\tand:0.08778853999449218\tto:0.05226260550384131\tan:0.05003175508025742\tin:0.04630426486504331\tat:0.03377212468475199\this:0.02973383398121721\t:0.01\n",
"to:0.23239635882577567\twith:0.147955274195462\tfor:0.13955261406192304\tmake:0.09975401637078374\tof:0.09839037465733615\tlet:0.07811838646770826\tgive:0.07034544163206291\tmade:0.06294159304699252\tupon:0.06054594074195565\t:0.01\n",
"the:0.3078144051404187\tof:0.26505257970245516\tand:0.19260195807483035\tto:0.054798309633215254\tThe:0.043076878863048194\tthat:0.03367974593912255\ta:0.03134573823657955\t<s>:0.03082334836517287\tor:0.030807036045157603\t:0.01\n",
"the:0.6359192104455351\this:0.08275596228438314\ttheir:0.04776306982709157\ttho:0.045462941092604923\tour:0.039356923534924065\tgood:0.03823678525404734\ta:0.03563397354472836\tits:0.035463057437553604\tother:0.02940807657913179\t:0.01\n",
"and:0.3222198455524992\t<s>:0.2857385729640864\tas:0.0712242622847361\tthat:0.06700029745991219\tor:0.06001680232880113\tit.:0.05548552367039799\twas:0.047029551123173335\tbe:0.041815126203362404\tthem.:0.039470018413031376\t:0.01\n",
"so:0.20443148024223548\tand:0.18345073036457651\tof:0.18023396495331936\tin:0.09307195391618532\tfor:0.08247852259600444\tas:0.07303649254185957\twith:0.06275344770550408\tto:0.05671142565864317\tby:0.05383198202167212\t:0.01\n",
"the:0.22172023892309115\tof:0.1544891538036754\tand:0.1135846508689145\ta:0.09386538603318526\tan:0.08847174821825282\t-:0.08766195108438138\ti:0.08336830757296743\t.:0.07459740798853859\tto:0.0722411555069935\t:0.01\n",
"a:0.18093731292087742\tthe:0.17749627055241124\tthis:0.1664220440285153\tsome:0.09615975303128853\tsame:0.085671349105418\tthat:0.08205288696456944\tany:0.07107757574580863\tto:0.06649779792704197\tof:0.0636850097240694\t:0.01\n",
"of:0.3957017196183308\tin:0.28123332857334304\tto:0.07284053216366931\tfor:0.0679078953693371\tIn:0.0634128185772592\tfrom:0.04551272725504885\tat:0.024629782292638586\tinto:0.01984800858600945\twith:0.0189131875643637\t:0.01\n",
"the:0.24586786277439154\tand:0.16997323033442863\tof:0.1608974002526721\tto:0.1249237815759012\tbe:0.07553177693575928\ta:0.06150987802157047\twas:0.06041598053696065\tat:0.046389189906892676\tin:0.044490899661423375\t:0.01\n",
"the:0.2654899918975592\tof:0.203025248090503\tand:0.17745177002204057\ta:0.10906588913129457\tto:0.08229544085247792\tis:0.03898604755417158\tin:0.03848381359077558\tbe:0.03769492273598597\tor:0.03750687612519164\t:0.01\n",
"is:0.30140932575212553\twas:0.1473841761301056\tfor:0.1307428007688813\tand:0.08431640600582294\tare:0.07504068069858688\tdo:0.06685446456495074\tthat:0.06547516845572258\thave:0.06200192276468125\tbe:0.05677505485912335\t:0.01\n",
"day:0.17829895693805659\tand:0.15899177659448405\tmade:0.14871029061055335\tout:0.09287530658861139\tup:0.09118244764460895\tfeet:0.08376748653362669\tthem:0.0821225719521718\thim:0.07802484037383414\tit:0.07602632276405312\t:0.01\n",
";:0.1860501056825479\tin:0.1581799105850961\thim:0.10981112656984264\tit:0.10138432104085218\tit,:0.09781858431442668\tone:0.09060563181610878\tfeet,:0.08589744573864026\tand:0.08427890202117945\tman:0.07597397223130596\t:0.01\n",
"men:0.37296974302011193\tnumber:0.23411762512735976\tmatter:0.06342178336800008\tcity:0.06330681561977929\tout:0.060157748946706155\tkind:0.05068212255661103\tplace:0.04943683063992505\tthousands:0.04878091045174825\tman:0.04712642026975849\t:0.01\n",
"and:0.2086523753440178\twould:0.1468217595310767\twill:0.1371079827302862\tnot:0.1168404764291642\tto:0.08349833243602549\thad:0.07680435948955464\thave:0.07658457551900566\twas:0.07551861438424474\tis:0.06817152413662447\t:0.01\n",
"the:0.2584370386898756\tand:0.17407984820835767\tto:0.14748263120336905\tof:0.12166594860433622\tin:0.0725524639895902\tbe:0.06172551520608559\tthat:0.0529369222598797\tis:0.05177386334512989\ta:0.049345768493376053\t:0.01\n",
"as:0.20901265774560066\tand:0.14718014366104396\tcame:0.12154210382906457\tup:0.12054102556691379\tback:0.10132170867887318\tthem:0.0786021990783674\tcome:0.07577266150059332\tit:0.07384764401649717\tbrought:0.06217985592304597\t:0.01\n",
";:0.18128128537073154\tMr.:0.17243646703541538\t1:0.1041457812652724\t,:0.10086408992877177\tup:0.092062416772912\t.:0.09120352800389146\tto:0.08867299443021533\tin:0.08345180570161288\tcity:0.07588163149117738\t:0.01\n",
"<s>:0.5302441846932214\tit.:0.09845265154300802\tthem.:0.09062024359988452\tday.:0.0567671799937784\thim.:0.05136469947047096\t.:0.0473957327581153\ttime.:0.03978633186721436\tcountry.:0.03835295687449016\tmen.:0.0370160191998169\t:0.01\n",
"the:0.6956664126872634\tsaid:0.09053871991688783\tThe:0.06012993955787088\tState:0.03934075898025227\ttho:0.036883842494613135\tand:0.02100870337918563\ta:0.020089815292682486\ttbe:0.01429525584179693\tCounty:0.01204655184944736\t:0.01\n",
"those:0.24405078312287082\tman:0.18964406299653352\tone:0.13493274774356828\tmen:0.13214373206459903\tand:0.10687997572450006\tpeople:0.06089981096740643\tperson:0.041209408153728935\tall:0.040207474656711185\twoman:0.04003200457008184\t:0.01\n",
"the:0.6671151752287757\ta:0.18178006128734256\ttho:0.03517562429329244\tThe:0.034183860627816406\tno:0.020787174889680536\tand:0.018940246769710248\ttbe:0.012758630446120823\tvery:0.01004927523974988\tgreat:0.009209951217511345\t:0.01\n",
"well:0.3356911554864022\tsuch:0.15973503730427285\tfar:0.11394222839675228\tand:0.10872126363454726\tjust:0.06882631815404701\tknown:0.06828647402866661\tsoon:0.06258273465130193\tis:0.03734532673611848\tmuch:0.03486946160789134\t:0.01\n",
"and:0.39667571031591686\tthat:0.21781401290427624\tbut:0.13852360305499126\tBut:0.060179123036269974\ttime:0.05597234897685332\tAnd:0.04205840515082671\tor:0.03116601652443294\tcome:0.024943154895404912\teven:0.022667625141027714\t:0.01\n",
"from:0.27044136607033803\tof:0.1839178662546399\tS.:0.1307838627086978\t.:0.0834615885131001\tN.:0.07338347243408115\tMr.:0.07301572562344899\tthe:0.07146569671237693\tby:0.05237374749718924\tD.:0.05115667418612795\t:0.01\n",
"more:0.20956910130701792\tman:0.15275768570114256\tperson:0.13458977989440235\tone:0.12960784028809882\ttwo:0.09049876262269312\tlaw:0.08191387945155089\tin:0.06685221702397422\tthree:0.06363270371593077\tState:0.06057802999518935\t:0.01\n",
"an:0.6086271656337685\tthe:0.14628092666631096\tmost:0.0716017432007081\tand:0.04509028650116507\tAn:0.03375267201628633\tvery:0.03145170027060491\tthis:0.020542407396443113\ta:0.017877329467468492\tThe:0.014775768847244675\t:0.01\n",
"and:0.2501512028852713\tCommittee:0.20336508491301394\twas:0.11050684012567177\tcommittee:0.11035425635665398\tthat:0.08337255322551503\tis:0.0620454847770018\tbe:0.06051112887723936\tgoing:0.05630129224912286\tout:0.053392156590510026\t:0.01\n",
"the:0.6178275010657738\tan:0.09968491307035862\tof:0.08502332408410675\tThe:0.04883669182270922\ta:0.044894557552914625\tand:0.03661567986343977\tin:0.02471623424850016\ttho:0.023498340436839828\ttbe:0.008902757855357359\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"the:0.29901520570410234\tof:0.19902262332446413\tor:0.15637309165202043\tand:0.11320533793720235\tin:0.08124744167707618\tfor:0.04917959110650531\tby:0.03142524321697805\tto:0.030291478407818036\tat:0.030239986973833108\t:0.01\n",
"the:0.23817289250408002\tand:0.17953921934024847\tof:0.1341673934481019\tto:0.11755088784677939\ta:0.08897589497123656\twas:0.06258675681110143\tMr.:0.062114665727191466\tbe:0.05420321962070791\this:0.05268906973055282\t:0.01\n",
"<s>:0.5651010274269848\t.:0.11249698542568126\tit.:0.0738375160011762\tthem.:0.05045060515540696\tof:0.04230197731856313\tday.:0.04162786131263165\ttime.:0.03793150841153973\tyear.:0.03395629922491956\thim.:0.03229621972309694\t:0.01\n",
"of:0.2799287370261997\tthe:0.2546281967517369\tto:0.137736913058016\tand:0.1067739580100115\tin:0.08179874086441999\tfrom:0.041555603122567245\tfor:0.030578311013882146\tor:0.029969652700750186\tThe:0.027029887452416412\t:0.01\n",
"to:0.31853375290303776\tI:0.19831015060557652\tand:0.12763051804598458\twe:0.08070996589852576\tyou:0.07141843143901368\twho:0.06293623762340268\tWe:0.05483611455386778\tthe:0.03882411693858584\ta:0.03680071199200529\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.4048500754022898\tthe:0.18991771373119407\tby:0.09308762570784838\ton:0.0708392110833343\tand:0.05972695904058262\tto:0.05775221842719257\tin:0.054562167630661504\tupon:0.0321354225054393\twith:0.027128606471457265\t:0.01\n",
";:0.18353869485350222\theirs:0.1542996411617388\tmen:0.11576039349386068\tmortgage,:0.106795213329546\tin:0.0975073020519477\tState:0.09104069666577196\tcity:0.08525807923858318\tStates:0.08364380739739644\tto:0.07215617180765303\t:0.01\n",
"will:0.6612213139688903\twould:0.16393544188217238\tand:0.04603872363780309\tis:0.034882314878449165\tshould:0.02012959422112279\tmust:0.018933684686334953\tshall:0.017212935828336\tmay:0.013893029484347915\tcan:0.013752961412543403\t:0.01\n",
"to:0.35274252363233377\tthe:0.20838640421285745\tand:0.09651372477952365\twill:0.08485589871747386\twould:0.07122032139604052\tnot:0.05783547922242354\ta:0.0418977177536135\tcan:0.0383681725545646\tmay:0.038179757731169064\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"and:0.29211138447447055\tmade:0.19571913870234192\tor:0.09628449857869373\tthat:0.08983215707584402\tside:0.07345421699179873\toccupied:0.06742963860758391\tup:0.061102507525096224\tsecured:0.05771256172717883\towned:0.056353896316991926\t:0.01\n",
"of:0.30200111338747676\tin:0.15537735644983589\tto:0.0968607141543127\tby:0.09502183326588053\tor:0.08880398112750912\tfor:0.0868666758247193\tat:0.060111533803105695\tas:0.05268139322823019\tthat:0.052275398758929795\t:0.01\n",
"man:0.22158679416938376\tthose:0.20795937808677092\tone:0.16266220052179173\tmen:0.11428492759123675\tand:0.08678808253472373\tall:0.06845897701926784\tpeople:0.04731482393076181\twoman:0.0434824776537427\tperson:0.03746233849232081\t:0.01\n",
"and:0.24195372743211044\tis:0.1622799161884274\twas:0.1616284604476465\tnot:0.09724856386049616\tor:0.08116580988486333\tbe:0.06876968859655898\tbeen:0.06819840781328892\tare:0.06610735296222402\twere:0.04264807281438415\t:0.01\n",
"and:0.37472216893073873\tknow:0.13387886723101006\tmatter:0.1295516490801001\tsee:0.10608329250113942\tto:0.07545704132745834\tor:0.050959006220979965\tof:0.04841280965607564\tis:0.03824295753162482\twas:0.03269220752087306\t:0.01\n",
"was:0.19348939933026693\tand:0.17132302310628864\tis:0.12086922790599378\tare:0.1095118725306551\tbe:0.1021754916018093\twent:0.0790524382754389\twere:0.07682424396145879\tit:0.06850707111576657\tcome:0.06824723217232195\t:0.01\n",
"is:0.16342984961882948\tand:0.1617168108711361\twas:0.155431197262705\tit:0.13238310935239792\tthat:0.08482555768227644\ton:0.0801941620045989\tup:0.07871900692293397\t-:0.06710439522215467\tIt:0.06619591106296742\t:0.01\n",
"the:0.5367785676475667\ta:0.09913180874283684\tall:0.07156944520507288\tto:0.05471168419009726\tand:0.05392996045737654\this:0.04743240200829893\tno:0.04432126513762089\twas:0.04428813951698024\tat:0.03783672709414974\t:0.01\n",
"carried:0.1996587921978813\ttaken:0.14482145878663097\tit:0.1120931267826809\twent:0.09260917577031605\tturned:0.09217145831855021\tgo:0.08959843879542181\tget:0.08805290510745402\tthrown:0.08605941813252264\tpointed:0.08493522610854215\t:0.01\n",
"I:0.15889252922676528\tand:0.1526203647048206\thave:0.12244471236335328\twho:0.10193425857622772\the:0.09928497049200909\tbe:0.0953965706992943\tthey:0.08840115536665577\thad:0.08789680208484661\twe:0.0831286364860272\t:0.01\n",
"of:0.31805984865208736\tin:0.21301398220638795\tto:0.16033935840945385\ton:0.05517987318985668\twith:0.0532654000082925\tIn:0.050938822752860796\tand:0.04727191668162191\tfor:0.0471664436164478\tthat:0.04476435448299106\t:0.01\n",
"of:0.2775823654949323\tin:0.14015884515621155\twith:0.121582681636841\tis:0.09897663119884043\tto:0.08864696712774395\tand:0.07963801328291438\tfor:0.07606510035879992\twas:0.059050824946662\tby:0.048298570797054324\t:0.01\n",
"and:0.2456742531225252\twas:0.13380453386353447\tmade:0.11718953954085287\tup:0.09786356604772764\tengaged:0.08539647898915109\tis:0.08086698973311832\tit:0.07802273372422548\tbe:0.07681447573065658\ttime:0.07436742924820856\t:0.01\n",
"of:0.3617935146076989\tin:0.16465459866436605\tto:0.12199197438352917\ton:0.06931391433604171\twith:0.06688619475773343\tand:0.0583327968284164\tfor:0.05590542853825237\tfrom:0.04628195539916087\tat:0.04483962248480114\t:0.01\n",
"protest:0.2352275405538314\tand:0.15084612289817434\tup:0.09955781058262712\tmade:0.09751014825504264\tvoted:0.08841298176843052\tclaims:0.08439363287706252\tvote:0.078620499699835\tguard:0.07798548506815406\tfight:0.0774457782968424\t:0.01\n",
"the:0.38162430942600434\tof:0.19549814246680397\tand:0.1100685447750663\tin:0.07710394291455039\tThe:0.0584682302842296\ta:0.049291569639098774\tthat:0.044961981442597936\tto:0.04215361418028708\tis:0.030829664871361694\t:0.01\n",
"out:0.18510026776968166\tmatter:0.16072435511466893\tnumber:0.13755810693383438\tpurpose:0.11944923960069971\tmeans:0.0893044238205877\tis:0.07905413345928383\tkind:0.07612382011368901\tcost:0.07555465636419252\tbe:0.0671309968233622\t:0.01\n",
"the:0.3541192801237637\tand:0.18274902945749957\tof:0.1508474354492074\tto:0.13697978199763042\tfor:0.04186656990746334\tthat:0.03897422773635804\tI:0.030481839846070623\tin:0.027523722769580785\ta:0.02645811271242606\t:0.01\n",
"a:0.5867256183698464\tthe:0.10441332558911205\tof:0.09343807582569856\tA:0.062352291001113856\tand:0.04145597444635527\tvery:0.0312252923042797\tthis:0.024129733558358648\tin:0.024075623151688354\tthat:0.022184065753547182\t:0.01\n",
"the:0.3308162184315038\tof:0.16966964773089072\tto:0.10704039964657876\tand:0.10668551044478329\ta:0.09940308099005661\tin:0.05525536586325709\tbe:0.04380313950800813\this:0.04174117051452463\tis:0.0355854668703971\t:0.01\n",
"<s>:0.4174312549089936\tit.:0.14921683273509548\tthem.:0.10554572919892358\tus.:0.08530179405316811\tcountry.:0.05514020052900412\tpeople.:0.04729541364230892\tthat:0.04637041767302545\tday.:0.04429239101214437\tyear.:0.03940596624733655\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"guardian,:0.2525021871612373\tone:0.16658816223335357\tperson:0.11951099456122204\ttwo:0.10582496991075896\ton:0.08921553774889873\tlaw:0.0729932891553348\tmore:0.06293142613512809\tday:0.06147414490728113\tand:0.05895928818678528\t:0.01\n",
"to:0.20824004866035978\tthe:0.2040097545902015\tand:0.19980432728505823\tof:0.15978957334487476\tin:0.06337877849958568\ta:0.05463758289552893\tnot:0.03746152227349155\tI:0.031804518390908185\tbe:0.030873894059991417\t:0.01\n",
"day:0.3816325076339729\tand:0.14886447846202405\tuntil:0.14658467842558975\tdays:0.07404183653196308\tshortly:0.06897730979937536\tShortly:0.05186094767866423\tmonth:0.04422453374829475\tthat:0.03726454306936476\tweek:0.03654916465075122\t:0.01\n",
"that:0.15320269930433977\tand:0.15133848077447254\t<s>:0.14912655525597182\tlot:0.12156606179051968\tone:0.08748428959248179\twhich:0.08687495642551657\tState:0.0843110134121076\tland:0.08150463674955437\tday:0.07459130669503593\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"to:0.5459758805755262\tnot:0.15724877584345834\twill:0.05955614960477351\twould:0.04825958653543497\tcan:0.047127717743865656\tcould:0.04040046239064917\tand:0.03315027126744554\tcannot:0.0301228831216081\tmay:0.02815827291723853\t:0.01\n",
"that:0.3294308741046761\tas:0.153244906030312\twhich:0.1337712537162838\tand:0.12314626264849338\tif:0.06773353770831946\tbut:0.05645199182524176\twhat:0.05158178351797282\tbecause:0.03863810312508325\twhen:0.03600128732361744\t:0.01\n",
"of:0.3690543291390253\tto:0.11466192792594385\tfor:0.10917293069800837\tin:0.10033219704411525\tand:0.07634442431560844\tby:0.0720068706034419\tthat:0.06364059200645093\twith:0.04916009711695969\tfrom:0.035626631150446335\t:0.01\n",
"to:0.38411958439304783\twill:0.16795803735302053\twould:0.11187990746648242\tnot:0.0897151806246136\tand:0.06426368395135039\tmay:0.05349530139819328\tshall:0.041929728056745885\twho:0.04171380273093033\tthey:0.03492477402561574\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.32344792120366006\tand:0.13574983968668922\ta:0.12045919366652863\tof:0.11144736938601565\tto:0.10819936268192318\tso:0.05485077267885555\tis:0.05113804921283257\tin:0.04560258755074353\tbe:0.039104903932751574\t:0.01\n",
"and:0.24588019897458832\twas:0.14761520091651767\tbe:0.121194922476628\tare:0.11530233532496321\tis:0.11323484589365461\twere:0.06768535231315581\tup:0.06415116641972733\tsucceeded:0.0602554351428013\tthem:0.054680542537963735\t:0.01\n",
"he:0.22565520291587576\tI:0.16015572606977826\tthey:0.15287114853489603\tit:0.11880346306317101\twho:0.09679155147566872\tand:0.07868848249606415\tshe:0.06539639742457176\tHe:0.051405357019523534\tyou:0.04023267100045072\t:0.01\n",
"of:0.2735900659577961\tthe:0.1555769448654546\tand:0.12432954580218311\ta:0.11720381974340094\tto:0.1041505709777092\tin:0.08233958509752284\twas:0.045557072074220245\twith:0.043647118952881044\tis:0.04360527652883189\t:0.01\n",
"is:0.20083799721009343\twas:0.15764336990869743\tand:0.11637736250560492\thad:0.10844825790288498\thave:0.10250205234420251\tthat:0.10104446003168013\tbe:0.08195307367820068\tof:0.0634941754255457\tare:0.0576992509930902\t:0.01\n",
"of:0.33052360860577135\tand:0.1720007658883718\tto:0.1505797149447807\t<s>:0.0943642992464319\tthe:0.0714078389714634\tby:0.0700349381419016\tthat:0.04373301218798457\twith:0.028918162703278655\tfor:0.028437659310015996\t:0.01\n",
"and:0.1951060423070764\tcalled:0.17141350145046255\tbased:0.1163678018584929\tdown:0.11153637060501025\tplaced:0.09821204492419602\tdepend:0.07852066283373466\tput:0.0766750233378742\tinsist:0.07205212018520861\tdepends:0.07011643249794439\t:0.01\n",
"the:0.4631322609143163\tof:0.17645818880734068\ttheir:0.0764678923898216\tand:0.06694900216112204\this:0.05502635562233062\tthence:0.04164797094530116\tto:0.038281233167904015\ttho:0.0367866755432707\tits:0.035250420448592834\t:0.01\n",
"the:0.33427748995795603\tand:0.2538117693744785\tto:0.09256648706410908\tof:0.06773569629595935\tThe:0.056685519694421815\ta:0.05393169454560443\this:0.049649645592512524\tan:0.041505046760491625\tall:0.03983665071446674\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.23736402922406297\this:0.22951141222149501\ta:0.12287950369176473\tthe:0.11267293678722468\tmy:0.10129653312977377\ther:0.08989666919902446\tfor:0.03559638067490484\tand:0.034234064834967645\ttheir:0.02654847023678189\t:0.01\n",
"of:0.17451125771465034\tthe:0.1732232283277763\tand:0.1668826833361004\tto:0.13664807827078945\tin:0.09068388551616792\ta:0.08653808074670671\tfor:0.07542976968069702\tare:0.043997104160824176\tis:0.04208591224628768\t:0.01\n",
"and:0.3359723945695816\tfact:0.1316189254902583\tsaid:0.10667449643560811\tso:0.08713045707286649\tis:0.07379644658727269\tsay:0.0657800671011853\twas:0.06486039920086528\thim:0.06351804887687972\tfound:0.06064876466548251\t:0.01\n",
"Mrs.:0.21174850227246647\tand:0.17882747542480582\tof:0.1365960931393555\tMiss:0.11854429166371819\tMr.:0.11848413421243623\tby:0.093764711589279\tthe:0.052500334788620984\t<s>:0.043892800812575204\tas:0.03564165609674269\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"160:0.21490305630490938\thundred:0.18673059165180622\ttwo:0.11353199677727775\tof:0.10501981396455386\tten:0.09727084760434805\tthousand:0.07504530833629348\t100:0.06875180473727005\t40:0.06467985441284836\tfive:0.06406672621069272\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"I:0.3893417099341982\tto:0.19527129786600156\tnot:0.1562148802617741\tyou:0.07382400367860693\twe:0.043835478305518476\tand:0.03694221958903135\tdon't:0.03652216363340329\t1:0.029374424689150632\tWe:0.028673822042315427\t:0.01\n",
"of:0.18360155585034832\tby:0.18024034481992957\tin:0.1593912439666423\tand:0.14605496716079602\tfor:0.09902055431429352\tis:0.07395665560598104\twith:0.05826585275385294\twithout:0.047691895769989355\tso:0.041776929758166985\t:0.01\n",
"the:0.43985549332584667\ta:0.2217118070490559\tno:0.08582212103208824\tthis:0.07388906059483631\tThe:0.05451762690751153\tany:0.042991460650465954\ttho:0.024463054204111774\tgreat:0.023978724160858642\tin:0.022770652075224943\t:0.01\n",
"the:0.28911769851370467\tof:0.15034482710262848\tand:0.14727364343021293\ta:0.12256378698685642\tto:0.11180388212332248\tbe:0.05566769946958989\twas:0.044440704312762515\tor:0.03660687066406267\tis:0.032180887396860036\t:0.01\n",
"that:0.30889998437375027\tand:0.2691636846426319\tbut:0.09453267767662668\twhich:0.07924995511056311\tas:0.07194781634581804\twhen:0.054143043247141365\tif:0.046237212932369806\t<s>:0.03822955568271643\tBut:0.02759606998838237\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.5765710178788335\tand:0.10198613505613857\twill:0.07590251650899273\tI:0.05793825517067407\twho:0.04043929268829457\tnot:0.03964404662699322\tof:0.035283710992980874\ta:0.03180873798607731\twould:0.03042628709101516\t:0.01\n",
"and:0.3258493087155032\twas:0.1495549063948171\tnot:0.08091619419092287\tbe:0.07965707164980744\tis:0.07916620561333859\tbeen:0.07030589655219548\tas:0.06926407283094677\tcalled:0.0681131162434365\thim:0.06717322780903186\t:0.01\n",
"<s>:0.5290680137429605\tit.:0.10898560659542361\tthem.:0.07715209585505366\ttime.:0.051375149735960635\tand:0.04943442512922945\tcountry.:0.0473026061026879\t.:0.043719667723217254\tpeople.:0.04343331479763375\tyear.:0.03952912031783312\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"and:0.36880563161039703\tthe:0.13768628329641833\tthat:0.09728829242579938\tall:0.081592629035257\tas:0.06944443627760209\tI:0.06474439461593647\the:0.05738667954263601\tother:0.05700422739095395\tit:0.056047425804999836\t:0.01\n",
"the:0.2350841423453856\tof:0.17536786387388423\tand:0.1705140893292766\tin:0.16311864654060312\tto:0.06460160819441706\tfor:0.05309697252270293\tbe:0.04757217403682901\tIn:0.04075127841283315\tthat:0.03989322474406837\t:0.01\n",
"a:0.3675995290905144\tthe:0.3293364936051699\tany:0.08804349519592469\tsome:0.05924116511621318\tlarge:0.04144038223103879\thighest:0.03183427847554633\tgreat:0.027283537810200254\tThe:0.023052507318060585\tno:0.022168611157331923\t:0.01\n",
"daughter:0.19213339110462818\tname:0.1579340289797136\tson:0.10893901937173468\tcity:0.10608193449873268\tnumber:0.09526863723354806\tpeople:0.09392807889417885\tline:0.08618931677626104\tand:0.0814559863151049\tresidence:0.06806960682609797\t:0.01\n",
"of:0.37888252473908907\tin:0.1282086180355952\tto:0.10441990140392647\tand:0.09593832568712528\tthat:0.06971949913892456\twith:0.06106707741411148\tfor:0.0608570667914635\tby:0.05176039007607272\tfrom:0.039146596713691764\t:0.01\n",
"the:0.45236935252839516\tof:0.17740474557301472\tto:0.0795418054437398\this:0.06396317839330605\tand:0.0552572952888115\ta:0.04708588061628919\tthis:0.042629815248355\tas:0.03815045050411713\tThe:0.03359747640397148\t:0.01\n",
"to:0.3075485877417781\tof:0.28673853847419306\tthe:0.08420265236946095\tin:0.08060623471563905\tfor:0.05863044996558674\tby:0.04775124068806186\twith:0.04493053208207402\tand:0.04388912659113672\tat:0.03570263737206936\t:0.01\n",
"the:0.26663240329053406\tof:0.2416091339064368\tand:0.11996931932907558\ta:0.1124466390191141\tto:0.08549385860193609\tin:0.06912546619392786\tfor:0.040348387236663674\t.:0.027280949457135266\tby:0.027093842965176588\t:0.01\n",
".:0.17013690342437549\t-:0.12485383901628865\tand:0.11539785885270057\tof:0.1125709574910738\ta:0.11025606437477092\tre-:0.10637603412112374\tthe:0.09503425509608791\tto:0.08489201758794505\t<s>:0.07048207003563377\t:0.01\n",
"amount:0.18451834698770145\tpayment:0.12752257453928736\tout:0.11773798217753961\tvalue:0.11619392664193294\tpart:0.11477524831687132\tproof:0.10470183198149745\tall:0.08274505676876123\ttion:0.07631394920116809\tproceeds:0.06549108338524051\t:0.01\n",
"the:0.4166413294163892\tto:0.16516568820342092\ta:0.15866230130485526\tand:0.1087685232288063\tThe:0.04103542643400256\tor:0.030633245087742834\ttho:0.025487019165127963\tin:0.021922699868966625\tre-:0.021683767290688376\t:0.01\n",
"the:0.48175912295048784\tand:0.18655911928637678\this:0.09724143873019517\tThe:0.08757367249141958\ther:0.043753084856417046\ta:0.02698233620074019\tof:0.02649054193566613\ttho:0.02068512092642001\tmy:0.018955562622277187\t:0.01\n",
"and:0.16136221394636718\tthe:0.14347265390513025\tof:0.12185872450726948\twhich:0.10494831384412297\ta:0.09476870116363682\tit:0.09361156469588593\tthat:0.09296513363681652\tIt:0.08888425488026004\the:0.08812843942051073\t:0.01\n",
"Section:0.161606053402899\tNo.:0.15819744568884284\tof:0.15418140954329573\t.:0.11782503638652847\t<s>:0.11076558762198876\tand:0.10815736021187049\tto:0.09295818832789216\tthe:0.05052327149580648\t5:0.03578564732087611\t:0.01\n",
"that:0.3227295060685736\tand:0.13804408337402763\tas:0.13395646036018427\tif:0.09961633297844819\twhich:0.09415047504242495\twhat:0.05751988949235051\tbut:0.05398583816095033\twhen:0.051012175027060354\tIf:0.03898523949598031\t:0.01\n",
"the:0.3374152260574117\tof:0.1958757951435572\tand:0.14549124228849045\tto:0.07840375825723893\tin:0.06141174416217848\ta:0.05037503337296118\tfor:0.04692293036363532\tThe:0.038733167080865716\tas:0.03537110327366107\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"a:0.6788237457056819\tA:0.1019350763694596\tvery:0.07408768640730228\tthe:0.062215078150902645\tbut:0.028953697669228794\tVery:0.011284003720083084\tthis:0.011049869708913676\tis:0.010988746238161118\tthat:0.010662096030266795\t:0.01\n",
"as:0.26344846691349666\tis:0.14855235432065217\twas:0.13924949154116056\tof:0.10877783056590509\tand:0.10121462540440247\tbe:0.0782531661882571\twith:0.053203303761492696\tby:0.05077186529684269\tin:0.046528896007790525\t:0.01\n",
"be:0.2336388793430852\twas:0.20740232800113986\tbeen:0.11592187106359027\twere:0.09571316640565611\tand:0.09458360054266796\tis:0.0847128584322283\tare:0.07486178100199854\thad:0.042220615312286394\thave:0.04094489989734726\t:0.01\n",
"and:0.30813827370948377\tsaid:0.1730589697868629\tfact:0.11175374042727586\tstated:0.09076470050424858\tso:0.07733344451894186\thim:0.06626454011197735\tknow:0.06377304208821113\tsay:0.049787186448953615\tis:0.04912610240404502\t:0.01\n",
"the:0.6730216580480144\ta:0.060794435697206634\tof:0.06006508849549838\tThe:0.042393000227180344\ttho:0.040535046637416805\tany:0.03798213398085299\tan:0.02759608159955274\tno:0.02735724925051182\tand:0.02025530606376569\t:0.01\n",
"of:0.4580437412591612\tin:0.1153755557166889\ton:0.07903094359402128\tand:0.07693522861716062\tto:0.06768753859441562\tfor:0.06257081116064231\tthat:0.0477489143995006\tfrom:0.045520877255316734\tby:0.03708638940309274\t:0.01\n",
"it:0.1921278232971985\tI:0.16353672814364642\the:0.14828097751304353\tIt:0.12009222869643395\twe:0.11874289695586418\tthey:0.11459528351250944\tWe:0.047894328539064\tand:0.04657853342455461\tyou:0.03815119991768531\t:0.01\n",
"the:0.35704948455199803\tand:0.19569839124732874\tof:0.17066785543405627\tThe:0.11172442877965488\tthat:0.04277900599371835\tthese:0.03153273173181317\ta:0.028047350814569483\tor:0.027399312475863052\tto:0.025101438970998136\t:0.01\n",
"the:0.30920961941601777\tof:0.2584472614495088\ttheir:0.08129567353654271\tand:0.07388859256191596\this:0.061296884299724214\ttwo:0.05814923995712511\tfew:0.050992036704936336\tat:0.049705701139767404\tour:0.04701499093446167\t:0.01\n",
"of:0.24940130096946692\tthe:0.20749374954699154\tin:0.17325058340850508\tand:0.08409339840059986\tto:0.06398898578601202\tat:0.0606818520610191\ta:0.05365568090601896\tIn:0.04973005902239976\tfor:0.04770438989898679\t:0.01\n",
"the:0.14209233471846394\tdollars:0.13426801508790595\tit:0.12046765562658776\t;:0.11032987793964567\tmore:0.1094417564326821\tlaw:0.09951019472268421\tI:0.0971791427016351\tand:0.09106605858036346\ttime:0.08564496419003187\t:0.01\n",
"and:0.2392761619529602\tthe:0.20252633277964796\tto:0.15505354683832503\tof:0.09835249007544924\ta:0.06691353613611971\tbe:0.06123401944219217\tin:0.05984236791299932\tis:0.05794177504019473\tfor:0.0488597698221116\t:0.01\n",
"to:0.19480524549751269\tof:0.12616122655392104\twas:0.12499532537515656\t.:0.11452776029403947\tthe:0.10828035636941605\tand:0.09222764899910256\tis:0.08901691825536799\tbe:0.07170556168912998\tMrs.:0.06827995696635351\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"out:0.17479152493052696\tone:0.1612745066563113\tsome:0.1543730398369646\tall:0.11549577046618895\tpart:0.104420569411086\tbecause:0.07383495211930248\taccount:0.07284118264889747\tmany:0.07000946912075943\tand:0.06295898480996275\t:0.01\n",
"the:0.35295075096745687\tof:0.23576116297493566\tto:0.12888654523496526\tand:0.09050904376590592\tin:0.04133297937505859\tbe:0.041256673741006576\tfor:0.03751470473767561\t<s>:0.031533700307135176\ta:0.03025443889586021\t:0.01\n",
"to:0.30397195288530915\tand:0.2596321408474077\ta:0.08069073599427827\tbe:0.0766171807790065\tbeen:0.06883768947627619\twas:0.062119427135784784\tnot:0.0479678629999278\twhich:0.04672179640539257\tthe:0.04344121347661696\t:0.01\n",
"<s>:0.24643505364970167\tthat:0.22567481111489607\tand:0.11986402130738497\tit.:0.10509411761497947\tbut:0.07308474448235741\tas:0.06237988616146023\tthem.:0.06028718069699419\tcountry.:0.04939834692648971\tof:0.04778183804573639\t:0.01\n",
"and:0.22609303359824467\tthe:0.17788337604186136\tof:0.11428275242722333\tto:0.1060351852256751\tis:0.09179374624726404\twas:0.08402512027052025\tbe:0.079150214643133\tit:0.05537962545678961\the:0.05535694608928863\t:0.01\n",
"he:0.25866189028206954\twho:0.1369177455975754\tthey:0.12385447154700999\tI:0.11175566056521612\tand:0.09355373157210568\tthat:0.07570005802530481\twhich:0.07247650778730208\tshe:0.06663178853794524\tit:0.050448146085471046\t:0.01\n",
"and:0.4938384239028692\tthat:0.19933033274308412\tbut:0.08521805883733344\tand,:0.046389513227118616\t;:0.04253372838970458\tthat,:0.03533342298189964\twas:0.029644769439331083\thim:0.028916499140616787\tworth:0.028795251338042522\t:0.01\n",
"is:0.2205111199644446\tnothing:0.1418342335643453\t;:0.13724717562977512\tare:0.1334864583774074\twas:0.10335811218518991\tit,:0.07501878073405431\thad:0.06219892462974463\thave:0.05840474695122616\tthem,:0.057940447963812695\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.2037566932541571\ttime:0.13732383306566875\tdays:0.1310321499412428\tor:0.1092357798316684\tyears:0.09759097452903723\tday:0.09111079867379565\tthat:0.07503540110469273\tbut:0.07329294565815087\tlong:0.07162142394158644\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"and:0.23016330341894506\tthe:0.21033662900634628\tof:0.14953929609168148\tto:0.10359529083998995\tMr.:0.07681780096254333\ta:0.06247848744048211\the:0.05743720759186067\tThe:0.05455030488320425\tthat:0.04508167976494684\t:0.01\n",
"the:0.4071329478777791\ta:0.28999629369892305\tand:0.06496273576659746\tThe:0.047899071461165336\this:0.04771714471253088\tevery:0.035267232986163154\tthis:0.034132803781767806\tUnited:0.03249274986692277\tyoung:0.030399019848150473\t:0.01\n",
"and:0.32311634278934404\thim:0.09870937808207801\tapplication:0.09552818008284919\twas:0.09108249895321115\tit:0.08441184299744424\tup:0.08234572242630689\tmade:0.07437354501364973\tout:0.0712836163279344\ttime:0.0691488733271823\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"the:0.32248525646726783\tthis:0.2848279540121546\this:0.09088106918864726\tthat:0.06859700697630082\tfirst:0.059471181186959224\tsame:0.0479714345584114\ttaken:0.040654171824742555\ton:0.03861619298184641\ttook:0.036495732803669814\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"and:0.24586106563762794\tthat:0.19291442337572084\tas:0.1582276882507273\twhich:0.11844534903998366\twhen:0.10439807727508862\tbut:0.05322393199703669\twhere:0.04352024120485205\tif:0.04107740865392174\twhat:0.03233181456504113\t:0.01\n",
"of:0.2406949107463933\tthe:0.2175184335573547\tand:0.11622761999155935\tto:0.10185979519686265\tin:0.07191313047816124\ton:0.06921367195369656\tby:0.06760785234168508\ta:0.05547175789050041\t<s>:0.04949282784378674\t:0.01\n",
"it:0.3229148804998068\tIt:0.20885518811914014\twhich:0.09452387091857796\tthat:0.08305051442679678\the:0.07700962249542338\tand:0.07523778917849017\tThis:0.0530721519640049\tthere:0.04052054528904072\twho:0.03481543710871911\t:0.01\n",
"going:0.16876758153502985\tlooked:0.16312665309231986\twent:0.14118828112341136\twas:0.11174102504250469\tgo:0.09257401973967332\trelied:0.0884345416774053\tand:0.07747111408342827\tis:0.07578864250621091\tput:0.07090814120001653\t:0.01\n",
"of:0.2508758083399214\tthe:0.13939657028008415\tand:0.12141304943845278\ta:0.09737387174840023\tto:0.09410529040550239\tbe:0.08401316431511605\twas:0.07546691963965538\tin:0.06843925731607996\tis:0.05891606851678777\t:0.01\n",
"and:0.32243046108811946\tthere:0.1330055076356382\tthat:0.11573475220947853\tor:0.10305637728895473\tThere:0.08243232400649068\t<s>:0.07684319106477512\twhich:0.0638105173210241\thave:0.04976281184084543\tone:0.04292405754467378\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.2309913090124689\tto:0.2062328003331781\tat:0.12941770051310678\tthe:0.12231498138049367\tand:0.09180012584581808\t.:0.07044146642891227\tin:0.06696614017486326\t<s>:0.042785041310943545\tby:0.029050435000215438\t:0.01\n",
"for:0.23858053502152524\tof:0.1554415067315197\tand:0.12650478359800468\tto:0.1195898845026351\twith:0.11332272999276503\tin:0.08695225747523848\tupon:0.05289200918726235\tsee:0.049403709035206946\tby:0.047312584455842466\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"this:0.2756826860880134\tthe:0.18366027818396186\tlast:0.14167209206306583\ta:0.11602345852629835\teach:0.06698188518606699\tpast:0.06585150100439079\tnext:0.051983700878566026\tevery:0.04944230960883566\tone:0.038702088460801115\t:0.01\n",
"a:0.32163556132905313\this:0.13266047776749718\tthe:0.12172992020973335\tgood:0.07716321843819539\ttheir:0.07342707892265547\tand:0.07240710380606903\tin:0.06946074242787867\tgreat:0.06729968812659852\tof:0.05421620897231921\t:0.01\n",
"the:0.3394183785786552\tof:0.2384467434824856\tto:0.07946354018643384\tby:0.07370123594756736\tin:0.07198798502157928\tand:0.06533060377914884\tfor:0.044405235012535814\tthat:0.03883913630833406\ton:0.03840714168326003\t:0.01\n",
"to:0.751812202438176\tof:0.06893429538266069\tand:0.06755694946393914\tthe:0.03099023463765835\twill:0.026317220839442955\tby:0.01267281589841417\ta:0.011835817396373587\tas:0.010626757031384602\tfor:0.009253706911950304\t:0.01\n",
"and:0.22705933158200184\tthat:0.12222810041050475\tfor:0.10340336970230118\tof:0.10133173198172785\tmake:0.09437298643925861\tas:0.09433959133345796\tin:0.08876305544002096\twith:0.08265884027165848\tbut:0.07584299283906834\t:0.01\n",
"made:0.20606676360262302\tand:0.20040532528491087\towned:0.13383030805196736\toccupied:0.09301599772971744\taccompanied:0.08391360314116256\tassisted:0.07739609939906003\tgiven:0.06832840876283912\tfollowed:0.06786946081494064\tsigned:0.05917403321277898\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"of:0.38742866293288114\tto:0.14333840923957245\tin:0.12112684239190592\tand:0.10425612280902881\tby:0.05883590382179759\tfor:0.049720783066387206\twith:0.04425015031008829\tat:0.04089804023335892\tor:0.040145085194979696\t:0.01\n",
"the:0.329036422627363\tof:0.17996497079047444\tany:0.09591234037744498\tin:0.0807200153841733\tand:0.0796229254984585\tto:0.06518081465532992\tgreat:0.0629236244632163\tthis:0.05129655718292059\ttheir:0.04534232902061901\t:0.01\n",
"the:0.24241359656917102\tper:0.1613665183341211\tof:0.1543275110383344\ta:0.1500639326071356\tfor:0.06401717884286899\tall:0.06337046843895335\this:0.053713697496203146\tsaid:0.051125244649675994\tand:0.04960185202353651\t:0.01\n",
"of:0.31662382482780055\tthe:0.18822284322808477\tin:0.11578788137479393\tand:0.09407676728996123\tthat:0.07488917283524958\tto:0.06204412499286629\tThe:0.052928240553401264\tfor:0.045864762222283736\tMr.:0.03956238267555868\t:0.01\n",
"of:0.23059993295022654\tand:0.14909374424054872\tare:0.13138586905023653\tin:0.12517374203625173\tfor:0.11820305596799924\tis:0.10877626715721994\twas:0.04978038911471595\tby:0.039449007509923924\twith:0.03753799197287745\t:0.01\n",
"It:0.4245447292307535\tit:0.40172736197500303\twhich:0.038166535851722624\the:0.02925560945751673\tThis:0.0268345974831374\tthat:0.019624329976205546\twhat:0.01759216083871309\tHe:0.016668386119295706\twho:0.015586289067652418\t:0.01\n",
"be:0.27234184250520493\twas:0.1703808299330178\the:0.1367177735977703\tand:0.1189137707104705\tis:0.08975378523863084\tbeen:0.06383969725295471\twere:0.05070188965057249\thave:0.043774590121325334\tare:0.04357582099005307\t:0.01\n",
"they:0.17763346979880015\tit:0.14073404780752452\twe:0.12750438405009043\twhich:0.11633108496427275\the:0.11101559646933737\tthat:0.08940175810389824\tyou:0.08704707123614754\tIt:0.0797334422472762\tas:0.06059914532265278\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"in:0.16617154638588447\tand:0.15490860242904173\twas:0.1213242771436362\t<s>:0.09784482114861877\tI:0.09589383358231784\thave:0.09576522717290156\tis:0.08851192736955037\tit:0.08557223232851315\tbe:0.08400753243953579\t:0.01\n",
"a:0.3326511039826124\tthe:0.317507415699071\tgood:0.06503087848465593\tlarge:0.06230056606910792\tan:0.05686364564075581\tand:0.04637746847370331\this:0.040961088038052144\tThe:0.03840257650053958\tto:0.02990525711150183\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"forenoon:0.177542069486481\tone:0.15197902685962286\tresult:0.12154738781861386\tout:0.1146226779973252\tall:0.110600438530804\tpart:0.09375218969813726\tsome:0.07435440729973954\tmuch:0.07302022176870575\tis:0.07258158054057061\t:0.01\n",
"the:0.7184355988902057\ta:0.09625069659804711\tThe:0.03242331198097496\tfirst:0.03120069382588804\ttho:0.027521297979520843\tsome:0.024146463257909086\tin:0.023473967365877233\tany:0.019965273414143652\tthis:0.016582696687433358\t:0.01\n",
"statute:0.4186740486360634\tand:0.1773874122872153\tthat:0.07552749244437032\tor:0.07132424490596527\tas:0.05800094168043707\tis:0.05059550344693197\tit:0.04914277446266791\twas:0.04506424724176516\tbe:0.044283334894583616\t:0.01\n",
"the:0.6561544013991187\ta:0.07712959083037613\tthis:0.052345924724337974\tof:0.04998980820361741\tand:0.03857919576304342\tThe:0.03614677498196993\ttho:0.03273764962079024\this:0.029588075009766984\ttbe:0.01732857946697907\t:0.01\n",
"and:0.28641025350703253\tas:0.22699492599549081\tthat:0.1939790763494801\tbut:0.06908801986170078\teven:0.06608133031186106\thim:0.043729791713563844\tasked:0.037578323380025286\tor:0.03695018532460019\tBut:0.029188093556245367\t:0.01\n",
"the:0.33234301859327503\tof:0.16511810112924477\tand:0.14359386254401948\ta:0.07809521494992094\tthat:0.07723479213752328\tThe:0.052790940042757695\tin:0.051550293467254364\tno:0.0449303041329755\tMr.:0.04434347300302878\t:0.01\n",
"they:0.16411413779390915\tit:0.16381227969252504\tyou:0.12508175132202787\twe:0.12229042957103604\twhich:0.105342127016125\tthat:0.09969303231617851\tas:0.0768878522539875\the:0.06655800993612754\tIt:0.0662203800980832\t:0.01\n",
"any:0.333189405354824\tthe:0.23487862645013827\ta:0.10673885330163602\tthis:0.09153680205050807\tthat:0.07229031704534176\tno:0.04439878414234094\ton:0.039200892452918655\tor:0.03431928679275764\tof:0.03344703240953464\t:0.01\n",
"to:0.33374178194784143\twill:0.25057634785895\tshall:0.1115458164177688\tshould:0.06726724657547434\tmay:0.05762681793275022\tcan:0.04891924077201312\twould:0.045310390271447135\tnot:0.03767469818076324\tmust:0.03733766004299166\t:0.01\n",
"the:0.297492901961497\tof:0.17741408266195474\ta:0.14645768029163828\tand:0.09158810426380848\tor:0.07279359814981\tto:0.06981668528850316\tin:0.0589873299937157\tany:0.0419198791673564\tbe:0.03352973822171621\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.2897383324568781\tof:0.17113076544121678\ta:0.10182560711526899\tto:0.08415539991493161\tin:0.07588252600215932\tany:0.07161219763621446\tfor:0.06930496705250555\tor:0.06569006370210649\tand:0.06066014067871867\t:0.01\n",
"have:0.2035515056625099\thas:0.16013157071661352\tis:0.13807592326864404\tare:0.12444921865330454\thad:0.11246119157232072\tbe:0.08679493884993306\twas:0.07315174456429568\tbeen:0.052077523017323636\twere:0.039306383695054896\t:0.01\n",
"to:0.2763922595667652\tand:0.25226018336027084\tof:0.1000720868333263\tthe:0.09660432122513139\the:0.08679764754265043\tin:0.07986806106730322\tI:0.03498618953754003\twas:0.03200892321032451\tby:0.03101032765668794\t:0.01\n",
"day:0.21104960873812514\tsum:0.12966847091875439\tout:0.12551453830873985\tone:0.119998855203275\tthat:0.10005226346415659\tand:0.08912625449580823\tperiod:0.08075891392094553\ttime:0.06988702164723982\tstate:0.06394407330295548\t:0.01\n",
"the:0.702647471260552\ta:0.08017503887173699\tThe:0.06493118972884282\ttho:0.03605454532567898\tand:0.03091698706052277\tcounty:0.020288808339707146\tof:0.020028554889456728\tone:0.01762148160210971\tState:0.017335922921392667\t:0.01\n",
"the:0.36551322110336826\tand:0.166710361106638\tof:0.14699780490821965\tMr.:0.0789466359295419\tThe:0.07403960538941572\t.:0.04895759910843891\tthat:0.04139184193439873\tMrs.:0.03515456330297415\tto:0.03228836721700463\t:0.01\n",
"and:0.30924221119967327\tthat:0.12611015277008547\tmade:0.09865062957046655\tis:0.0920144699599962\twas:0.09128595813112018\tplaced:0.07404370378857507\tas:0.06709678931603316\tbe:0.06629358245444635\tor:0.06526250280960379\t:0.01\n",
"of:0.3894315086970003\tto:0.17679790461428574\tin:0.10247571424468341\ton:0.06091289444230405\tby:0.05966692002293444\tfor:0.05780606442346081\tthat:0.05122530629224363\tat:0.050411647747666696\tand:0.04127203951542097\t:0.01\n",
"of:0.2976919141130418\tto:0.20199938496875214\tthat:0.09621964595262472\tand:0.09009616812248172\twith:0.07853833831013357\tin:0.07779445490576833\tfor:0.05336796632692153\tall:0.048750379535089455\ton:0.04554174776518681\t:0.01\n",
"the:0.21936296420588208\tand:0.18192435467214157\tof:0.1761691264699115\tto:0.09674577732048609\tfor:0.0840780202939895\tin:0.07155130500227722\tare:0.0575356517709947\tbe:0.05413519547159589\twas:0.048497604792721416\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"of:0.30528939098204116\tto:0.16469095814429022\tthe:0.11479242510292557\tin:0.07378108783816778\tand:0.0720708844549234\twith:0.06872379574022942\ton:0.06620370311513506\tby:0.06253085871727394\ta:0.06191689590501325\t:0.01\n",
"amount:0.18985130352903415\tand:0.18363392229964862\tis:0.18332260496868183\the:0.13832503821770148\thave:0.07799778047416094\tbe:0.06106806256060673\twas:0.058624767261752565\twhich:0.04930554989077179\tthat:0.04787097079764178\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"and:0.19201262823736462\tmade:0.11370609369101872\tit:0.11298634998201319\tfree:0.1098770272484224\tmiles:0.10358518368342534\tyears:0.09541548309661933\taway:0.08771608651967132\thim:0.08738842800025395\tthem:0.08731271954121123\t:0.01\n",
"who:0.1872579349290509\tthey:0.17024611437031828\tI:0.1323327695410249\twe:0.13004700073259967\twould:0.10608817900312209\tto:0.083365814129147\tWe:0.08009036598082461\twhich:0.05214645611321871\tThey:0.048425365200693724\t:0.01\n",
"of:0.22086174204410317\tand:0.20784369540523173\tthe:0.14876889521009876\tto:0.10301942972628973\t.:0.09847722802531395\t<s>:0.07154110511150405\tin:0.05230355116430967\tby:0.04399055825094308\tat:0.043193795062205845\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.3223140554799513\tand:0.1766017617572969\tof:0.09527534734740607\tmost:0.08227246877492103\tbe:0.07918950678019276\tare:0.07458544071647608\twas:0.06235189251076273\tis:0.05685667321772557\tThe:0.04055285341526753\t:0.01\n",
"line:0.33935091547134116\tcorner:0.14876475070901773\tsheriff:0.09233754813202127\tpart:0.07971013530890418\tprayer:0.06864363993633359\tsale:0.06769529838001451\tportion:0.06673290683631733\tpayment:0.06555504264772635\tside:0.06120976257832377\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.3210590725590838\tin:0.1296302333618635\tand:0.10108694356742468\tto:0.09407603020467156\ton:0.09406568742832064\tfor:0.08479230065499793\tthat:0.06285556179083189\twith:0.06162635848627524\tall:0.04080781194653082\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.4023075733158051\tof:0.16453800189631013\ta:0.10543123186270317\tand:0.10430466911552289\tThe:0.07483414157650413\tto:0.04873160393309531\tin:0.03073083271861779\tthat:0.03049348677046264\tan:0.028628458810978898\t:0.01\n",
"the:0.35061475791671176\tof:0.24812896106266807\tin:0.2169447820633766\tand:0.047297896646213394\tfor:0.029253303846949727\tIn:0.028889067494416082\tto:0.025344939387948573\this:0.02521659228375724\ttheir:0.018309699297958462\t:0.01\n",
"they:0.26004076152708355\twho:0.12520266395751167\tthere:0.11579702370869377\twe:0.11373584132620913\twhich:0.08776419117906968\tand:0.08322440250912155\tyou:0.07598043962573241\tThere:0.06594329369292243\tThey:0.062311382473655905\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"and:0.22722245160423316\tthe:0.19796565807023733\tto:0.16135531547798773\tan:0.08589094617343913\tof:0.07011024273130449\tbe:0.06874699386337785\tI:0.06432212336772365\tnot:0.06320942331736096\tis:0.05117684539433551\t:0.01\n",
"they:0.30016342663500006\twe:0.16079238850864172\twho:0.14031378273536502\tThey:0.06968827616157935\tWe:0.06967634970895588\tyou:0.06558563938043878\twhich:0.06367288806496546\tthere:0.06171732736271322\tthat:0.05838992144234044\t:0.01\n",
"to:0.5962665133524552\tcould:0.09821125053263544\tcan:0.07830815749473723\tnot:0.06519620954355526\twill:0.037293319511310964\tand:0.03546521111443237\tcannot:0.027426066892652486\twould:0.026445069799093092\tthey:0.025388201759127944\t:0.01\n",
"the:0.32504734827659076\this:0.19772262728992127\tmy:0.19161384731144562\ther:0.0758335222837347\ta:0.05346720836779956\tand:0.04978810600823371\tof:0.03903169771464922\tgood:0.02908770979324585\ttheir:0.028407932954379416\t:0.01\n",
"and:0.30924221119967327\tthat:0.12611015277008547\tmade:0.09865062957046655\tis:0.0920144699599962\twas:0.09128595813112018\tplaced:0.07404370378857507\tas:0.06709678931603316\tbe:0.06629358245444635\tor:0.06526250280960379\t:0.01\n",
"and:0.17887885334165884\twas:0.1474847325517969\tbe:0.12489946272465996\tis:0.12248732612297521\tare:0.12215564976673594\twere:0.0819219669489942\tbeen:0.08034199556089724\tso:0.07182705964217022\tthat:0.06000295334011138\t:0.01\n",
"the:0.6114149897891703\ta:0.09841685265630108\tof:0.05807561340298959\tby:0.053190172449157885\tThe:0.05162911618893003\tat:0.04515881850613818\ttho:0.029440942684696027\tany:0.02867195619136344\tthis:0.014001538131253339\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.40338147068541347\tof:0.15724085938304072\tthe:0.13791984703253587\tfor:0.05720564297826575\twith:0.057192435233362204\twhile:0.05138179854247044\tmany:0.050907356423238015\tto:0.04359525738880758\tare:0.031175332332865832\t:0.01\n",
"of:0.33864470159169696\tin:0.1593918098908133\tto:0.1176500235325274\tfor:0.0858278764886718\tthat:0.07885986344624525\tand:0.0689469077469325\twith:0.05420666258208944\tby:0.04605904713386136\tIn:0.04041310758716196\t:0.01\n",
"that:0.22894298162916124\tand:0.18389959895169808\twhich:0.14233538044387992\twhen:0.10658309596613334\tas:0.09538865855949213\tto:0.09182559855047093\tif:0.04809103819452874\twill:0.04780503333124626\tbut:0.04512861437338917\t:0.01\n",
"of:0.3085298888283793\tto:0.15180086706736245\tand:0.1419940649762729\tin:0.10597086113360785\tthat:0.08095326883799404\tall:0.06464800842174469\tby:0.05232529838448345\tas:0.04209454831487728\tfor:0.04168319403527804\t:0.01\n",
"they:0.299954136663756\tthere:0.12336587267808473\tand:0.11314861125863297\twho:0.10672175143008082\twe:0.08393458953724554\twhich:0.08312392011761544\tThey:0.06637683112029098\tThere:0.057531833544174966\tthat:0.05584245365011847\t:0.01\n",
".:0.19884151423913968\tA.:0.11136866873099245\tJ.:0.10978171836748621\tby:0.10429917476665078\tW.:0.10006527578073059\tS.:0.09748084537872086\tJohn:0.09528473679709795\tof:0.08925325764853652\tC.:0.08362480829064477\t:0.01\n",
"he:0.21313790078123296\tbe:0.139800503584322\thave:0.12410965031665502\tI:0.1064838006115734\twas:0.10157851978405333\tand:0.09678747854081149\thad:0.08005794810974895\tbeen:0.06540541321281336\tthey:0.06263878505878956\t:0.01\n",
"and:0.27413479056876844\tmade:0.11501012428831253\tprotest:0.1135072442905366\tup:0.09527239604259524\tjudgment:0.09024081216579988\tbrought:0.08940612423576672\tcharges:0.07336662093596699\ttaken:0.07317851568641494\tclaims:0.06588337178583845\t:0.01\n",
"of:0.2069595247651223\tthe:0.17782541163703702\tand:0.16373341382963003\tto:0.143811048763714\tin:0.0771375348388473\ta:0.07217361801369997\tfor:0.058877254905270925\tor:0.04955204987246596\tthat:0.039930143374212426\t:0.01\n",
"was:0.2152585106428544\tand:0.16922029025042262\tbe:0.15864828537190848\twere:0.1254802395623577\tare:0.10511965954942219\tbeen:0.08436392816616507\tis:0.07455578628700787\the:0.02932128475789013\tbeing:0.028032015411971634\t:0.01\n",
"number:0.1911719606165359\tpurpose:0.1805464311244205\tout:0.119244112589712\tmatter:0.10964611782653484\tinstead:0.10778712669896584\tcost:0.07733867388546424\tmeans:0.07436119239649945\tyears:0.06514836403781415\tline:0.06475602082405311\t:0.01\n",
"of:0.29324709662657605\tthe:0.2729629332162637\tto:0.0847045589073185\tand:0.07222757466983333\ton:0.06942858670289537\tin:0.061428913562237265\t<s>:0.051218778589526975\tfor:0.043290032863015644\tbe:0.04149152486233317\t:0.01\n",
"the:0.42436591079765196\ta:0.28659729832327757\tof:0.0844777262696728\tThe:0.040995842325597276\tin:0.038438483651074225\tthis:0.03496002590098906\tA:0.030987783468011742\ttho:0.027985939432632046\twith:0.021190989831093396\t:0.01\n",
"to:0.72768128528762\tnot:0.059670470016441324\twill:0.0495317925230493\twould:0.042035765950945714\tand:0.030623586616809154\tcan:0.023242227883158967\tmay:0.021704591289153925\tcould:0.018718769573053004\tTo:0.01679151085976859\t:0.01\n",
"as:0.22852684467349377\tis:0.20280065603096664\twas:0.13378944892464364\tbe:0.0887461109148213\tare:0.08451563105679948\tso:0.08030205212264528\tand:0.07581215235096019\twere:0.051568177259181176\tvery:0.04393892666648846\t:0.01\n",
"and:0.2275568136184341\tof:0.198357135738386\tthe:0.1750661188511791\tto:0.07855314553146203\tfor:0.06714821591926588\ta:0.0663876628110636\tthat:0.06195441710685245\twhich:0.06002681078592804\tor:0.05494967963742877\t:0.01\n",
"of:0.3415176254194875\tin:0.11000739045665535\tby:0.09979306359351593\tfor:0.0962936108927634\tto:0.09038527774770796\tand:0.08698678166637283\tall:0.06385642183788695\tthat:0.06116260498179045\tfrom:0.03999722340381945\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"of:0.2948141425608223\tthe:0.20105121139011406\tand:0.1748963344280207\tto:0.09227373130496012\ta:0.07385935709927666\twith:0.04416984448813944\tin:0.04112275266591319\tfor:0.033941037900082426\tor:0.03387158816267121\t:0.01\n",
"he:0.24203915067516416\tand:0.17659018243210672\thad:0.1700084773823636\thas:0.10416408979064519\thave:0.08788293194833753\tHe:0.06785059264992174\twas:0.05545113261145467\tbe:0.044848018137177245\twho:0.04116542437282926\t:0.01\n",
"the:0.6525192499473128\tThe:0.11994869250216647\ta:0.05641652625188747\tof:0.03724723607077723\this:0.031807236815174826\ttho:0.027334590100485903\tour:0.025466984366803204\tand:0.021260521472815427\tthis:0.01799896247257668\t:0.01\n",
"the:0.3002030405563565\tand:0.20521832589226585\tof:0.18951409350984544\tto:0.10885982009837099\twas:0.041502865362393934\tbe:0.04036182442353661\tin:0.039752582461311047\ta:0.03346020023353105\tis:0.031127247462388475\t:0.01\n",
"of:0.2998206834459335\tthe:0.18507819550306442\tand:0.13133245559921297\tto:0.12885405080347326\ton:0.07528178690170291\tin:0.0532500408070261\tfor:0.044129799910528844\tat:0.04010587273775207\t<s>:0.032147114291305914\t:0.01\n",
"the:0.5005435713548924\tan:0.1492088320782195\tany:0.08596884130716104\tthat:0.05522848224151073\tand:0.04746420339179697\ta:0.04512526364583873\tsuch:0.0380307384054699\tthis:0.03525801337065192\tno:0.03317205420445909\t:0.01\n",
"the:0.8182380014756878\ttho:0.03786922489343464\tThe:0.03550546972664906\tand:0.02572582052849437\tfrom:0.017908711777570262\ta:0.015107356101808262\tthat:0.014300853435391486\ttbe:0.013576259356660682\ton:0.011768302704303494\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.30520872573924374\tof:0.22274356229409542\tand:0.10901440357529221\tto:0.09176815851910561\tby:0.0698951805134469\twas:0.05414098399918291\tat:0.049659515927899515\tbe:0.04861791271945912\t<s>:0.03895155671227453\t:0.01\n",
"the:0.3543831362221404\tof:0.22461586219149848\tand:0.13283005337079992\tto:0.08035830514275967\ta:0.06898258506288824\tin:0.03755205874283167\tfor:0.03262922467372277\ttho:0.029875972596853505\tbe:0.028772801996505427\t:0.01\n",
"of:0.46293882701887\tin:0.27761673112972335\tto:0.0703409467308526\tby:0.04378817430174568\tIn:0.04108173245340434\tfor:0.03864284975972635\tfrom:0.021745983605362482\tand:0.01922633278394938\tthat:0.014618422216365874\t:0.01\n",
"line:0.21212567847442282\tstreet,:0.16898977749851232\tdifference:0.15742343427014557\tand:0.13611567877633182\tstreet:0.10865690793058093\twar:0.056323225349390715\tmidway:0.0542295827127326\tlying:0.04941947019464625\tof:0.046716244793236945\t:0.01\n",
"the:0.6136895346983402\ta:0.11684156275755714\tthis:0.07340605784053747\this:0.05815989448521119\ttho:0.04270321496798044\ttheir:0.03820283771547949\tour:0.016741104360487518\ttbe:0.01578159865016197\twhole:0.014474194524244536\t:0.01\n",
"and:0.3718551859324213\tto:0.367419399427986\twill:0.060645504232845766\tthat:0.03712180996625764\tnot:0.033009895305047623\tthen:0.032740080007452155\tbut:0.03106478733224606\twhich:0.028075123089803464\tI:0.02806821470594001\t:0.01\n",
"and:0.2186279364266974\twould:0.2074675837703113\tsomething:0.11852895650379155\tnot:0.0790022533683124\tto:0.07826795221702859\twas:0.0744893682044806\tis:0.07306955095491362\tlooked:0.0709425341945697\tlooks:0.06960386435989496\t:0.01\n",
"the:0.2721422746812876\tof:0.16757005384109913\tand:0.15827034722580738\tthat:0.08780463593034502\tin:0.08096052274546386\tas:0.06303471211186255\tThe:0.05697109868405081\tMr.:0.05596333620688795\twhich:0.04728301857319577\t:0.01\n",
"the:0.7170400225557397\tand:0.05301208237178048\tThe:0.04508763964924696\ta:0.04404014867789209\ttho:0.037176996967845204\this:0.031539182503223\tto:0.025850295631665927\ttbe:0.019838442365391715\tor:0.016415189277215\t:0.01\n",
"for:0.1875257078616827\tthe:0.17392615177821386\tof:0.16324962451349384\tabout:0.1332804369922716\tand:0.13179794975187223\tor:0.076971628170754\tin:0.047839184751904\tlast:0.03827826838666443\tthan:0.03713104779314347\t:0.01\n",
"be:0.29584160574321167\twas:0.1879320533103485\tand:0.11404518410186158\tbeen:0.10451321782132446\twere:0.08662279885471037\tis:0.06297409250197279\tI:0.049332926753305514\tare:0.04729984017315261\the:0.041438280740112424\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"per:0.8708894903139168\tthe:0.0790024968837852\tand:0.013422750877939565\tof:0.005789121103345083\tan:0.005672841865498902\tto:0.004762407308992882\ta:0.0037973985271336375\tby:0.0033835680724546464\tThe:0.0032799250469331916\t:0.01\n",
"and:0.3566638953041958\tor:0.18991146236573977\tthat:0.10235579520512857\tbut:0.09731835952775168\tnot:0.08788064872058444\tfor:0.043164010040051895\tBut:0.04022831374858809\tis:0.03651282562155435\tbe:0.03596468946640538\t:0.01\n",
"he:0.2044078450778136\tit:0.19664405043725997\tand:0.1456223597033786\twhich:0.09211369711318956\tIt:0.08953906901946508\twho:0.0825742215877201\tbe:0.06613628288579164\tthey:0.06467558985087515\tHe:0.0482868843245063\t:0.01\n",
"to:0.31581626366496407\twill:0.16262264737562718\tnot:0.09801372837030611\tshould:0.08847186740997748\twould:0.0847716386054049\tshall:0.0836372709054727\tmay:0.07062542691112435\tmust:0.04389956558003744\tcan:0.042141591177085734\t:0.01\n",
"he:0.152060450861006\tit:0.14570473007584878\tthey:0.13773651019107047\tI:0.11983138325379328\twe:0.10821539476694296\tand:0.09622307166260466\twhich:0.0922119265866078\tIt:0.07795497045111817\tyou:0.060061562151007955\t:0.01\n",
"County:0.21185839845647994\tcity:0.1895834646921614\tState:0.1413537743984756\tCity:0.13008138484546328\tcounty:0.08148280294079607\tday:0.06950524935010832\tline:0.06572002034717807\tname:0.061277760247438626\tson:0.039137144721898665\t:0.01\n",
"of:0.23616419451182052\tthe:0.23343704218735506\tand:0.15978661952150983\tto:0.10630371430561109\tin:0.09329245272863333\tthat:0.05598690444208103\tas:0.04124046954077117\tfrom:0.033910189697693965\twhich:0.02987841306452378\t:0.01\n",
"about:0.22688519070237018\tand:0.19973899844327136\tthe:0.19488151891009253\tor:0.12545542975519514\tof:0.07353786046309947\twas:0.05608989962055068\twere:0.03928072875685402\tthan:0.038694572013280464\tare:0.035435801335286184\t:0.01\n",
"it:0.18996776648825836\twhich:0.16693146919859034\tIt:0.1638838509302785\tthat:0.1088783226660808\twho:0.09754653858074362\the:0.09729440751502057\tthere:0.07644641877125938\tand:0.047844242933137104\tThere:0.041206982916631135\t:0.01\n",
"and:0.16746393464509546\tdays:0.16362345102444004\ttime:0.12492444770776763\tappear:0.09566741394367828\tjust:0.09231340379370485\tor:0.09177283805588757\tyears:0.08767631186747611\tthat:0.08438545874952393\tbut:0.08217274021242599\t:0.01\n",
"of:0.3949571972858358\tin:0.16850725643625367\tto:0.12352294707201854\ton:0.06838646783395032\tand:0.05957458873254076\tfor:0.04757264709206119\tby:0.046036469335956086\tthat:0.0426017718581973\tIn:0.038840654353186246\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"of:0.38673375954833306\tin:0.14607437125902178\tto:0.12285610469880116\tthat:0.07163900601011423\ton:0.06320750778614694\tfor:0.05543606924267768\tand:0.05180311374795789\tby:0.050682114066997165\twith:0.04156795363995015\t:0.01\n",
"the:0.42055642367917795\tof:0.19990037197033148\tand:0.12388836984114342\tat:0.052195613748405374\ta:0.04725083751544478\tThe:0.04221745763001156\tto:0.040094494503012515\tor:0.0347555590601893\ttho:0.029140872052283606\t:0.01\n",
"hundred:0.31940638290785417\tthousand:0.2973127394508226\tfifty:0.08705831886603795\tmillion:0.0797430577613003\tfive:0.06124679337708961\tof:0.055417999645747285\tten:0.048665632978109864\tdred:0.02085451740923415\tsand:0.020294557603803935\t:0.01\n",
"and:0.3618264598442252\ttime:0.1585166786808475\thim:0.0773077050962585\tmade:0.0750798052542271\tit:0.0651889351938075\tthem:0.06442802190323041\tout:0.06326833089381287\tnecessary:0.06259386327537891\tup:0.06179019985821204\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"and:0.22374277336619958\tin:0.11809537225180955\twas:0.10753917461690887\tis:0.10235553959327065\tfor:0.10177090673149375\tthat:0.09990959039384582\tare:0.08621308363224199\tor:0.07999787940036125\tbe:0.07037568001386849\t:0.01\n",
"be:0.21173345442161426\twas:0.20380423619830226\tbeen:0.11870408380681109\tand:0.10250945008524834\the:0.09555217903838804\tis:0.07385701173743746\twere:0.07290927519745027\tthe:0.05856239762650729\tI:0.05236791188824097\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"week:0.262783827790336\tand:0.2389857943038616\ttime:0.08552186700453762\tup:0.08186975574886107\tit:0.06819770132815774\tthere:0.06701277972013363\twas:0.06653755057064666\thim:0.06555129328396513\tthem:0.053539430249500565\t:0.01\n",
"the:0.26008963325081247\tto:0.1510271650502291\tand:0.13794930828343374\tof:0.10931438730792993\ta:0.10200655896335122\tin:0.09281048347406343\tthat:0.054950120990788755\tfor:0.04984162508689479\tat:0.03201071759249652\t:0.01\n",
"to:0.470052484555554\twill:0.17428958243166484\twould:0.08969572745486673\tcan:0.05150318519947832\tshould:0.04728533574710141\tcould:0.04612233913197589\tnot:0.039950565504801305\tmust:0.036954019161138156\tshall:0.034146760813419316\t:0.01\n",
"the:0.25507793099440856\tand:0.19169226995852917\tbe:0.15302776734679885\twas:0.14082614544392266\twere:0.08056873947462016\tbeen:0.058339464851733684\tare:0.038368015988981\tor:0.036212606815687665\tbeing:0.03588705912531818\t:0.01\n",
"of:0.22190010589126113\tthe:0.22004176286872998\tto:0.12346322881274409\tand:0.114175101826501\t.:0.09419859748291429\tat:0.08458572590263122\t<s>:0.05688244671217442\tby:0.03741846025774823\ta:0.037334570245295656\t:0.01\n",
"and:0.32311634278934404\thim:0.09870937808207801\tapplication:0.09552818008284919\twas:0.09108249895321115\tit:0.08441184299744424\tup:0.08234572242630689\tmade:0.07437354501364973\tout:0.0712836163279344\ttime:0.0691488733271823\t:0.01\n",
"the:0.6011702798560818\tof:0.12497071935165413\tand:0.049488235057349825\tThe:0.046040059295026865\tto:0.043217223808565464\tin:0.04209086909367906\tfor:0.03187143261186981\ttho:0.031475750614036006\twith:0.019675430311736943\t:0.01\n",
"he:0.21236976584642633\twho:0.15091908100628376\twhich:0.13423069933853982\tthey:0.1114226506626021\tit:0.10310378443593025\tthat:0.08782466281035546\tI:0.07127377388196328\tthere:0.06045635920866448\tshe:0.058399222809234465\t:0.01\n",
"from:0.21802200205555064\tthe:0.19694833446729548\tin:0.12247782210057058\tthat:0.08945903226427072\tsome:0.08261572909543535\tany:0.0797247730890875\tthis:0.07278699757577482\ta:0.06676927872790638\tsame:0.06119603062410855\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"time:0.16689403244294973\tin:0.13920536101765743\tmen:0.11188639680685428\tup:0.10764772040150658\twork:0.10570332196536517\tout:0.09873068256503276\tlife:0.09310328754266789\thim:0.08427693135005598\tpower:0.0825522659079103\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"the:0.34473903499631625\tand:0.16707544411087868\this:0.13813653886234473\tof:0.08123439064861385\ttheir:0.06609782679654415\ta:0.05385379984661163\tmy:0.05043121226033748\twith:0.048706926686075236\ther:0.03972482579227809\t:0.01\n",
"to:0.35671915547313704\tand:0.16815966365890278\tthat:0.08743233796986066\tnot:0.08283506455747107\tthey:0.06905480369494969\tmay:0.0625351211157753\twhich:0.059500598129381105\tit:0.05274427112112736\twill:0.05101898427939514\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.3002704899736147\tand:0.16394934591138952\tof:0.15661563188849495\tto:0.09876614229942424\twas:0.06915251783546528\tin:0.05515256321032435\ta:0.0531859093383604\tbe:0.04755453490435553\tis:0.04535286463857097\t:0.01\n",
"was:0.21796602606418342\tbe:0.21188593577822337\tbeen:0.1056718180819953\tis:0.07594388724923984\twere:0.06993641853767449\tI:0.06749118994673312\the:0.06642867058775308\tand:0.06603402252031526\thave:0.06108563672453251\thad:0.04755639450934959\t:0.01\n",
"to:0.4478978896738777\twith:0.11016795880538556\tfor:0.10333360105103886\tof:0.08246859703033102\ttold:0.0693575766468685\tat:0.047129794987495435\tupon:0.04594618990667564\ttell:0.04338702375281083\ton:0.040311368145516356\t:0.01\n",
"not:0.19999651429542767\tfor:0.15504226692837542\tno:0.13070300756795397\tor:0.09545171982443625\tmuch:0.08958789359825772\tis:0.08369234095165312\tof:0.07925112792878658\tand:0.07878033930120283\tnothing:0.07749478960390645\t:0.01\n",
"the:0.31840023369126785\tof:0.17141879567538387\tand:0.16606811243682518\ta:0.13273779480313194\tto:0.05599862525831315\tThe:0.045311843428967526\tat:0.03870752794010055\tin:0.03163609204400192\tor:0.029720974722007923\t:0.01\n",
"a:0.34646834584912506\ther:0.16526570249606923\this:0.15163001981523927\tmy:0.08813382731114412\tthe:0.07595565433828536\tA:0.05198036574035219\tand:0.04029918471875411\told:0.038955333916344224\tour:0.031311565814686394\t:0.01\n",
";:0.24128805971766104\tis:0.19284363443114236\tnothing:0.12098804048055924\tand:0.08692611613335861\tit,:0.08107096439267582\tare:0.07429826954458699\twas:0.06742651206965511\thad:0.06290644059967379\t,:0.06225196263068713\t:0.01\n",
"of:0.29212753143165043\tin:0.23644549500936224\tto:0.1494588966147205\tthat:0.066679976379691\tIn:0.06057872436897338\tand:0.05162201825704964\tby:0.0506302576269622\tfor:0.049366491744081115\tat:0.033090608567509415\t:0.01\n",
"be:0.19213064626027368\twas:0.16892835007515314\tbeen:0.13285096929400494\tand:0.11510830610631322\tis:0.10535412805319712\tnot:0.07171571983272491\tare:0.07119953099107437\tthe:0.06687729516013897\twere:0.06583505422711965\t:0.01\n",
"and:0.28875042293688763\tthat:0.18379961672113257\ttime:0.12018083560604678\tmade:0.10260676101770422\tthem:0.06941977777485565\thim:0.06107712576849914\tbut:0.05685206022851167\tor:0.05497076677934715\tup:0.05234263316701533\t:0.01\n",
"and:0.26155438453787555\tas:0.1266397842169297\torder:0.11339821790418228\tright:0.09396707366530392\thim:0.08490002639930892\tis:0.08451321809227683\tenough:0.0771200356714829\table:0.07412838983665011\tthem:0.07377886967598969\t:0.01\n",
"of:0.20253994353973317\tin:0.17885259010363327\ton:0.1601721574616891\tto:0.12857259145997765\tfrom:0.10274501707965708\tand:0.07208386572947026\tat:0.061723289111460675\tIn:0.04461883145987936\twith:0.038691714054499435\t:0.01\n",
"the:0.27043423092756824\t-:0.230518790622153\t<s>:0.09214979052645819\tand:0.08977118823600351\t.:0.0816266582217953\te:0.06340819373180286\tf:0.061997231831418816\ti:0.05023962517250307\tI:0.04985429073029706\t:0.01\n",
"to:0.27887680346270544\tand:0.18463279832785565\tthe:0.11667363433974837\thad:0.10481629644360195\twas:0.07011268427848238\tnot:0.06338031886333381\ta:0.06154780558600259\thave:0.05930005875797061\tbe:0.05065959994029907\t:0.01\n",
"up:0.19637068092463078\thundred:0.1765664620396806\twife:0.11341077803882521\tin:0.09564616183133523\tmen:0.0850334006627888\ttime:0.08500306769983647\tdown:0.08418639582899991\tlife:0.07694855629344892\tdollars:0.07683449668045406\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"the:0.24264202774073113\tin:0.18924875626410098\tto:0.17715642748143415\tof:0.1526493928854793\tan:0.06990163615225092\tthis:0.04388003812666507\this:0.04260573027801236\tIn:0.03953333297910249\tand:0.03238265809222354\t:0.01\n",
"one:0.2621410772420017\tpart:0.13828982982918026\tout:0.09624462787694145\tsum:0.09475385185290656\tall:0.09344278936076991\tamount:0.09063463447574953\tsale:0.07587870330969793\tend:0.07005676748970087\tnumber:0.06855771856305173\t:0.01\n",
"of:0.3038449941701036\tin:0.1762862997045582\tand:0.09780843993006715\twith:0.09002386300196312\tto:0.08865087619266997\tby:0.07608789827380712\tfrom:0.05989895299977613\tupon:0.050452022760536834\ton:0.046946652966517885\t:0.01\n",
"the:0.2176444406307874\tof:0.21032817253870764\tto:0.20574675201779968\tand:0.10545724507911237\tin:0.05828659954186711\ton:0.05369867559536912\t<s>:0.052758235502345235\ta:0.04307083081855826\tat:0.0430090482754532\t:0.01\n",
"and:0.3473907136724179\tfact:0.18571028912588797\tis:0.08293453347194157\tof:0.07968700463162431\tbut:0.06666394972803381\tsaid:0.0627945443603061\tfor:0.05781832267325563\tknow:0.05369358332870137\tall:0.053307059007831385\t:0.01\n",
"of:0.2764190941532257\tto:0.1405372487704945\tand:0.1302697292196242\tfor:0.09238407289524732\tby:0.0856311223219611\twith:0.0823790856545457\tthat:0.06698409160493132\tin:0.06422061565675692\tis:0.051174939723213096\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.21298000459552283\tand:0.2039636710878841\tof:0.18227586657211736\tto:0.0947332508750933\twas:0.07100993380022316\tin:0.06763282217115012\tfor:0.05552798378335023\the:0.05223279322482916\tMr.:0.04964367388982969\t:0.01\n",
"the:0.17143793031938148\tand:0.15084405096188572\tit:0.13830619896589091\tat:0.12198560834988101\ta:0.11940900474656047\tIt:0.08695511660716106\ton:0.0707271503669307\tof:0.06729934080656655\twhich:0.06303559887574214\t:0.01\n",
"the:0.5108870311710413\tand:0.10781174627474095\ta:0.07767157506681538\tof:0.07632647469465788\tlast:0.056453095499172816\this:0.04428907321271786\tfor:0.04263569867287768\tfirst:0.039193324074067455\ttho:0.03473198133390853\t:0.01\n",
"the:0.23960507711206946\tand:0.19453437371897894\tof:0.14106539859561887\tto:0.12149968009769145\tthat:0.07096929818150652\tis:0.06780942376392471\tfor:0.05756167171711468\twas:0.05107688966592631\ta:0.04587818714716902\t:0.01\n",
"the:0.6118125354169056\tThe:0.08066758610443216\tsaid:0.07167808064823714\tthis:0.04938423595172076\tof:0.04585365371166882\tand:0.04413322986704963\tMr.:0.034766202320678306\ttho:0.028302401483081684\ta:0.02340207449622592\t:0.01\n",
"and:0.3688813164082851\tthat:0.1454083792520898\tas:0.11725524506586056\t<s>:0.07982776272023831\tbut:0.06966037027569466\tto:0.05601739876005786\twhen:0.05227858094807445\twhich:0.05116534942924441\tfor:0.049505597140454785\t:0.01\n",
"of:0.20744128667185768\tthe:0.17876745631315244\tand:0.16175955600435\tto:0.11208263160454435\ta:0.0761524945863055\tboy.:0.07314467713122073\tfor:0.0640311674126426\tin:0.062293189098506424\tgirl.:0.054327541177420266\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.5240064275307966\ta:0.11376600701497741\tevery:0.0963210265597725\tthis:0.08833279969369102\tgreat:0.0416730845992036\tin:0.03594909703556622\ttho:0.03209089424377234\tfirst:0.02915120741952298\tand:0.02870945590269738\t:0.01\n",
"any:0.18489981191600563\tof:0.16628358988388356\tthe:0.12712192824676244\ta:0.12493179038442202\tno:0.11129894275511283\tsuch:0.09644222658514826\tthis:0.06607653600036904\tand:0.05849211463417894\tthat:0.05445305959411744\t:0.01\n",
"as:0.19436001227001629\tand:0.1409601278107517\taccording:0.12688257803862749\tup:0.1166538996954941\tthem:0.09546248046552396\tregard:0.08571584773899625\tcome:0.08276545836165355\tback:0.07647325798284847\treturn:0.07072633763608811\t:0.01\n",
"to:0.34426216887719907\twill:0.24610042149184339\tshall:0.08696049257808074\twould:0.08443203940250767\tmay:0.07699248358886056\tnot:0.053250554065899576\tshould:0.044284160240879486\tmust:0.03393300136866486\tcan:0.01978467838606471\t:0.01\n",
"and:0.3268208773627404\tor:0.21420293440293478\tnot:0.15571444499852125\tthat:0.06028743700018958\tare:0.053760000447939826\tbut:0.05089420908313191\tis:0.05058450336243364\twas:0.04479867555401895\tdo:0.03293691778808967\t:0.01\n",
"and:0.34836515845561816\tthat:0.154796761554627\t<s>:0.08264737050675534\tthe:0.07977668699806136\twhich:0.07850222565735837\twhen:0.06716742839098395\tbut:0.06402347797172452\tas:0.05955023016460179\tof:0.05517066030026945\t:0.01\n",
"to:0.3554099680053171\tof:0.19786472518053677\tin:0.12529162242974234\tand:0.07280468972919545\twith:0.05504681246657389\tfor:0.052185749163135904\tis:0.05064419905231414\tthat:0.041178460736836196\tat:0.039573773236348364\t:0.01\n",
"the:0.2903197091904407\tthat:0.13621054323082318\tthis:0.11396567187916634\tsame:0.11156981655514027\tshort:0.09731594000396372\ta:0.08153137137906755\tsome:0.06783181961254439\tlong:0.0508358239667041\tfirst:0.04041930418214991\t:0.01\n",
"person:0.17008043820658655\tman:0.13940468119144284\tone:0.1337832274199553\taction:0.13280570834790806\tin:0.09953740971709639\tcity:0.09050723035374829\tyear:0.07839520168905746\tcounty:0.07466581940569164\tlot:0.0708202836685135\t:0.01\n",
"that:0.49156777712631006\tand:0.19868391950292372\tbut:0.07070477856023381\tif:0.0630941241263731\tas:0.042741045996078024\twhich:0.03626670592639372\tIf:0.03102583153589517\twhere:0.02826153196483334\tBut:0.02765428526095901\t:0.01\n",
"THE:0.4510859131087163\tthe:0.11147914486701492\tand:0.08962317809525966\tat:0.08174691625051234\tof:0.06536538311872972\t.:0.06344604092201082\t<s>:0.05253558377232073\tto:0.043960613411268085\tAND:0.030757226454167366\t:0.01\n",
"at:0.3432441041695303\tNo.:0.16310208085295644\tand:0.1229845439717376\tof:0.10639225564396132\tthe:0.07302250032103592\tlot:0.05568215438043356\tblock:0.04301055123471401\tRange:0.04246279209627684\t@:0.04009901732935393\t:0.01\n",
"and:0.3079069995791492\tof:0.15703359043111892\tthe:0.09695346957938135\tbe:0.08008775556196854\ta:0.07801796281644585\tin:0.06960382693033287\tis:0.06885254681667448\twas:0.06803906530008293\the:0.0635047829848459\t:0.01\n",
"that:0.3301424087979986\tand:0.2182479544957214\tas:0.122756240476564\tbut:0.12237407841532319\twhich:0.06045493380306775\tif:0.04979116913450267\tof:0.030362284196394796\twhen:0.028972195940510377\tBut:0.026898734739917166\t:0.01\n",
"in:0.37617025443011565\tIn:0.11261893077826166\tis:0.09374245191546252\tof:0.09010506228781366\twas:0.07352670832906946\ton:0.07141854824595155\twith:0.06912690358544171\tsuch:0.0566825694047258\tto:0.04660857102315787\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"It:0.3308461544889502\tit:0.1642059568341763\the:0.10838277438273573\tthat:0.10111039897164405\twhich:0.10063854110861482\tand:0.0738281702961336\tthere:0.04206497076739138\tHe:0.03669903099911086\twho:0.03222400215124304\t:0.01\n",
"it,:0.15405287399691464\tup:0.1347056410103989\t;:0.12380858009866612\tthem,:0.11642608806720557\tyears,:0.10526834741430532\there:0.09959527911199179\tit:0.09226513822884534\thim,:0.08243458547880798\thim:0.0814434665928643\t:0.01\n",
"in:0.13917749667110813\thundred:0.13436325360866025\ttime:0.1316432562390264\tgood:0.12704014237121203\tlarge:0.09938963561253078\tdollars:0.09630314379219598\tone:0.08798301580337466\tfree:0.08709730876035998\tnew:0.08700274714153182\t:0.01\n",
"It:0.405882667864311\tit:0.16601976159124496\twhich:0.10614906319012046\tthat:0.08622060752820988\the:0.06867018473447375\tThis:0.04829415786512192\tand:0.04352916303653737\tthere:0.033168914721928615\twho:0.03206547946805198\t:0.01\n",
"in:0.3852038048392667\tof:0.23254147063165717\tto:0.10664390632884517\tIn:0.06726452183294897\tat:0.04609058978408392\tthe:0.0445572065139705\tand:0.04413599841503278\tfrom:0.04046639387574377\tfor:0.023096107778451027\t:0.01\n",
"and:0.21192548613322726\tthem:0.14243522488948937\tis:0.12940973919821772\thim:0.11763761355001144\twent:0.08060175108100642\table:0.07845088118582505\tmade:0.07770902073327084\tsubject:0.07593071715003452\tas:0.07589956607891732\t:0.01\n",
"of:0.2105789349215274\tthe:0.20301459976320405\tand:0.17686531907637446\t.:0.10628378110457198\t<s>:0.0895314560462286\tcom-:0.053953295656909026\tMr.:0.05290799616905223\ta:0.048604658646185205\tMrs.:0.04825995861594711\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.5759663843897341\ta:0.14484787068192662\tand:0.09116512270257099\tThe:0.06050125953311487\ttho:0.03198916073573538\tgeneral:0.026876900932927925\tor:0.023186685256351862\tState:0.02075899693868611\tfirst:0.014707618828952272\t:0.01\n",
"and:0.32494967607831965\tit:0.1243280982038417\tthat:0.10341953567133265\tbut:0.09840411565259605\tor:0.07376872994348935\tfound:0.07164054032772431\thim:0.06931542482763524\tthem:0.06366712711020092\tis:0.06050675218486\t:0.01\n",
"the:0.3137174809660494\tof:0.2832842016618789\tin:0.18671874633341304\tthis:0.05126944306450143\ta:0.034934214245249076\tIn:0.03345586348473185\this:0.03278179220062861\tfor:0.027187534825153858\tunder:0.026650723218393818\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.6194383044094571\tof:0.11761270408210617\tand:0.06330130888240497\tThe:0.045926152331168264\tthese:0.03762464274514792\tthat:0.03384766520674625\tto:0.026226596701781065\ttho:0.025948744477448507\twhich:0.020073881163739746\t:0.01\n",
"the:0.36272951085323246\tof:0.18543035631391452\ta:0.15397074508309586\tand:0.08986353964721512\tto:0.07260187110472961\tfor:0.03165028242040209\tThe:0.0314188531250225\tin:0.03125003021606946\tan:0.03108481123631847\t:0.01\n",
"a:0.38483091761973187\tthe:0.1878867404659759\tto:0.1196506047074087\tof:0.09109072048238695\this:0.08502664854291325\tin:0.033491793859433405\tand:0.0315048313183972\tthis:0.030353922681666624\ttheir:0.026163820322086074\t:0.01\n",
"to:0.3057308493287265\tnot:0.15709153329633788\ttake:0.15699600928033017\tthe:0.09199069980765322\tand:0.0895156365060957\ttaking:0.059319296490017416\ttaken:0.050055706344628643\tor:0.04604089503372312\ttook:0.033259373912487275\t:0.01\n",
"a:0.29758910663305543\tthe:0.27423539380877837\tany:0.11748842211131856\tthat:0.08968490661350281\tthis:0.054721926404863785\tevery:0.04658436821377061\tgreater:0.04460875833254082\tlatter:0.03430552952077778\tno:0.030781588361391832\t:0.01\n",
"in:0.19257717243495387\tof:0.1709015558752296\tto:0.12982463400440158\tor:0.11550723864494376\tthan:0.09701219261175639\tfor:0.0949499303295365\twithout:0.07568972985946493\tat:0.06245123085957748\tby:0.05108631538013599\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.47628223215814824\tto:0.30287434499590715\tthat:0.044269411669479\twill:0.03559490310304839\tor:0.029367931124487382\twho:0.027633778406172076\tnot:0.027319461839471922\twhich:0.026721000945746302\tbut:0.01993693575753978\t:0.01\n",
"the:0.6852465201489597\tof:0.1022710512943402\tThe:0.06413589401515207\ttho:0.042175964847399126\tand:0.030091876766843585\ta:0.023599778557859323\tin:0.016877475918531438\ttbe:0.01424188378019348\tour:0.011359554670721118\t:0.01\n",
"the:0.27654031700417503\tand:0.21968808200037135\ta:0.13595673553946766\tof:0.1312975255103275\tsaid:0.08821651725342736\tthat:0.04017999742532177\t.:0.03475251794804027\tThe:0.03257136189379443\tto:0.030796945425074735\t:0.01\n",
"and:0.265751163214573\tup:0.15943815803944195\tit:0.1345153095640525\tdown:0.09031125591238165\tthat:0.07464753393858792\tout:0.0714266597411658\thim:0.06703257984583912\tback:0.06402415253230885\tThen,:0.06285318721164926\t:0.01\n",
"the:0.3830349305017525\this:0.12115674339862348\tthis:0.10969668810368122\tand:0.10097568287100814\ta:0.07732004036879016\tof:0.07545270762558744\tin:0.044541616444936934\tThe:0.04189693643693178\tthat:0.03592465424868842\t:0.01\n",
"a:0.2822661923240602\tthe:0.2738764017212003\tyoung:0.18773094443185656\tand:0.06909751132824919\told:0.046669329801479545\tof:0.03513201995623814\tThe:0.03305414462966628\tman,:0.031311005012407085\tcolored:0.030862450794842743\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"and:0.3303617529043953\tso:0.12361127011142811\twas:0.09185024577006211\tis:0.09121828840345965\tas:0.08963630203996159\tto:0.0873912550527707\tbe:0.0730249384109559\tof:0.05375548517517921\twhich:0.04915046213178733\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.2501550870616374\tof:0.17327320107306704\tand:0.14388289249475147\tto:0.11475751953988338\ta:0.09038001401223485\tin:0.07346713906469314\tbe:0.06537517806815311\tis:0.042347954547891406\tor:0.036361014137688295\t:0.01\n",
"the:0.4456373044772563\ta:0.17953697345625524\tof:0.09196048659741984\tand:0.08466645223962943\tThe:0.047054003475547515\tto:0.04668744545741807\tin:0.044624045050438335\ttho:0.030975965870807105\t.:0.018857323375228028\t:0.01\n",
"the:0.3183060421149564\tand:0.11752388465386286\tmade:0.11347490430108119\tget:0.09458457659816209\tbrought:0.08515747704793307\twith:0.06904967960305546\tbe:0.06869553558313175\ta:0.06355662122029858\tmake:0.059651278877518484\t:0.01\n",
"and:0.3093655620212602\tto:0.17370118736174034\tof:0.13038200997623184\tthe:0.08771758421888157\twhich:0.06191870937029182\t<s>:0.05888938295259155\tre-:0.05752501777704928\tin:0.055852125160339605\tthat:0.05464842116161378\t:0.01\n",
"and:0.3111913082202083\tis:0.1415777150444049\tare:0.12178274934669867\tbe:0.09208166563325464\twas:0.08100541887709457\tnot:0.06768816906619256\thas:0.063916296357183\thave:0.056102297484620874\tthe:0.0546543799703425\t:0.01\n",
"the:0.2741961844584926\tof:0.20882401545387413\tand:0.17106504301897896\tto:0.09060993252719039\ta:0.08960060013235915\tin:0.0432393943039576\tfor:0.039472172754318524\tbe:0.037176714497760735\twas:0.03581594285306789\t:0.01\n",
"at:0.27733166704911566\tof:0.18523570038078457\tto:0.13420722500687154\tby:0.09800969790063797\tfrom:0.0740666054986257\tin:0.06336800247718836\t.:0.05489118003535532\tfor:0.05239697708350855\tand:0.05049294456791226\t:0.01\n",
"and:0.2825326249844179\twas:0.11592898936744854\tinterest:0.11492046750160245\tthat:0.09918103092089235\tthem:0.09145392431033308\tbeen:0.07244551720694109\tit:0.07158700451915223\tbe:0.07111481060340263\tstipulated:0.07083563058580983\t:0.01\n",
"and:0.22374277336619958\tin:0.11809537225180955\twas:0.10753917461690887\tis:0.10235553959327065\tfor:0.10177090673149375\tthat:0.09990959039384582\tare:0.08621308363224199\tor:0.07999787940036125\tbe:0.07037568001386849\t:0.01\n",
"of:0.2641663770966346\tto:0.1374395362302243\tin:0.11382669950322943\tand:0.10184366719739713\twith:0.0895574457659352\tby:0.0873340168387193\tfor:0.07813592452883249\tthat:0.07188030900151293\tfrom:0.04581602383751471\t:0.01\n",
"the:0.25387585854953526\tand:0.16573125040311912\tof:0.13220542497073806\tbe:0.11122463475364033\tto:0.10941947712111581\ta:0.09084119012214986\tin:0.046223570180919306\tor:0.04131804815602004\tis:0.03916054574276227\t:0.01\n",
"day:0.19456922569680282\tsale:0.1422254867842148\tstate:0.1335119866160055\tboard:0.10632623187355295\tamount:0.10246773757331919\tnumber:0.09204251562680461\tout:0.08122331323680232\tState:0.07056309782896535\tpoint:0.06707040476353253\t:0.01\n",
"that:0.3508608256307356\tand:0.15788698846688148\tas:0.13287417231396503\twhich:0.10560140672399003\tbut:0.08250798582862005\twhat:0.05609259302384743\tif:0.049188405011508576\twhen:0.028310051514050163\twhere:0.026677571486401548\t:0.01\n",
"to:0.8024771826167395\tand:0.04113785575247824\tnot:0.028440342976947537\twill:0.02839932200574256\tcould:0.019409006850089856\tthey:0.018714644786008344\tcan:0.017976676976336273\twould:0.017287242498490576\twe:0.016157725537167076\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"No.:0.26544206027421313\tJune:0.12796257139251757\tApril:0.11068388682537159\tMarch:0.10857376266685687\tMay:0.09826613704071499\tJuly:0.07843900431784143\tblock:0.07518679190418452\tlot:0.06714796425024826\tJanuary:0.05829782132805171\t:0.01\n",
"and:0.4154158312002902\tsaid:0.09882629849110777\tof:0.09580604026002984\tall:0.07858355136156785\tbut:0.06926642561767024\tso:0.06709703978960176\tfact:0.06434530402770006\tthat:0.0536425439980974\tthing:0.04701696525393491\t:0.01\n",
"his:0.2727313720323061\tthe:0.19927564759002467\ttheir:0.1660423304576329\ther:0.09113568028102748\tmy:0.0859208322994034\tof:0.05954768753613485\tour:0.04706248896526719\tyour:0.039274116679114686\tits:0.02900984415908875\t:0.01\n",
"and:0.22813005603170383\tthe:0.1572099043860072\tis:0.11521833637416955\tan:0.10420866558073172\twas:0.09504037588459194\tare:0.08564450459716828\tbe:0.08247759847336691\tthat:0.0643390720756877\tbeen:0.05773148659657292\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"New:0.4765556636595783\tof:0.19536823830026628\tin:0.12656196897596067\tto:0.09125173883639366\tand:0.025671291956623453\tIn:0.024506017551770006\tat:0.018455403239672263\tfor:0.017255110572619428\tfrom:0.014374566907116073\t:0.01\n",
"of:0.2837859223257587\tin:0.22720058621877687\tthe:0.12395152826860746\tinto:0.06620677270486525\this:0.06572258887692324\tIn:0.06261389412566674\tfor:0.05565360577309295\tto:0.053530447457007344\tno:0.05133465424930138\t:0.01\n",
"and:0.21611573385540034\tto:0.19033178276139026\tthe:0.15285657316279605\tof:0.14326246276665047\tabout:0.08562629894136621\tfor:0.059148099397846855\tor:0.04964055104358961\tbe:0.046823780453414156\tin:0.04619471761754611\t:0.01\n",
"the:0.5259274504698884\tThe:0.15975109793006037\tthat:0.0654414004987274\tMr.:0.06527286693528364\tand:0.05354273840675224\t<s>:0.03498142432460411\tsaid:0.032591082309392706\ttho:0.029326665592059698\tof:0.023165273533231338\t:0.01\n",
"line:0.17275778710636117\tcity:0.16549343089855342\tCity:0.13252796067518094\tnumber:0.13088475634358815\tcounty:0.11337487277725346\tquarter:0.08759786823047766\tone:0.06589782324073995\ttown:0.06096418025951893\tCounty:0.060501320468326174\t:0.01\n",
"of:0.22552647734620473\tfor:0.18089524847018462\tthe:0.1263854255447467\tin:0.1204617689573319\tand:0.1192775977997835\tby:0.07093194145350193\tno:0.052239201899753014\twas:0.0488165147507862\tany:0.04546582377770727\t:0.01\n",
"the:0.29119801034656423\tand:0.15865258086875828\tof:0.14266390311873564\ta:0.09503147289218798\tin:0.08532608481074652\tto:0.07615091195344506\this:0.05046366391938543\twas:0.04709492341783116\tbe:0.043418448672345705\t:0.01\n",
"is:0.2886452395922832\twas:0.16933152055155848\tand:0.1048242516527738\tare:0.10235740095505151\tbut:0.06950835789498845\thas:0.06540553462125907\tit:0.06484502596599319\twill:0.06299047004929506\thad:0.062092198716797255\t:0.01\n",
"and:0.18929310138123437\tcovered:0.16935884120870554\tfilled:0.14496098815620134\ttogether:0.1149389467597416\tcharged:0.08927804784918368\tit:0.07994316895661391\tup:0.07366667277508843\thim:0.06832445206581947\tthem:0.06023578084741164\t:0.01\n",
"line:0.33935091547134116\tcorner:0.14876475070901773\tsheriff:0.09233754813202127\tpart:0.07971013530890418\tprayer:0.06864363993633359\tsale:0.06769529838001451\tportion:0.06673290683631733\tpayment:0.06555504264772635\tside:0.06120976257832377\t:0.01\n",
".:0.20764102020984837\tthe:0.13643739150302472\tto:0.12180344587244503\tof:0.11963191594302677\tand:0.11712857169166473\ta:0.08781912561503866\tat:0.08191256511495089\tin:0.06204687218931866\twas:0.05557909186068207\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
";:0.14099648764783912\tit,:0.11967066680326216\tin:0.11681118873348909\tup:0.11375609777390536\tthem,:0.11352792153632651\thim,:0.11175844987988479\thim:0.10982565950269928\tthem:0.08462205756098831\tit:0.0790314705616053\t:0.01\n",
"for:0.1834894058017338\tin:0.13963113516437184\tof:0.13668818101795474\tas:0.13627883122106113\tis:0.09657272125029463\twith:0.08505911058536136\tto:0.08428571406320783\twas:0.07111264170733272\tby:0.05688225918868192\t:0.01\n",
"and:0.3689160036414457\tare:0.11327203576776772\tnot:0.11284630748952057\twas:0.08707177050077108\tis:0.08582844818211391\tit:0.06442420660206406\tto:0.06286353702007558\twere:0.05065225776510054\tbe:0.044125433031140776\t:0.01\n",
"the:0.6109410071817474\tThe:0.08798832657459606\tof:0.07557250781693316\tour:0.06880795484139623\tFederal:0.04561065123801148\ttheir:0.03132643525707484\ttho:0.02622436886821625\tand:0.024177702121225966\ta:0.019351046100798686\t:0.01\n",
"pro-:0.3716840861556965\tre-:0.16770394099922434\tintro-:0.15355175541748325\tin-:0.09375058968006604\tpro­:0.05967922086265599\tpro¬:0.04995077535355688\tre¬:0.032126408271145594\tpro:0.030858402329611095\tac-:0.030694820930560397\t:0.01\n",
"six:0.13471239400682833\thundred:0.12345109049290193\ttwenty:0.12319919927507438\t100:0.11442706654337191\tfour:0.11038292451072378\teight:0.10987187626170114\tten:0.10340546705631778\teighteen:0.0958763793632934\tfive:0.07467360248978726\t:0.01\n",
"of:0.29633572450437873\tin:0.14608538748858488\tto:0.1415677969515685\tfor:0.0941246122349261\tand:0.08474980319055245\twith:0.07400648853301359\ton:0.05839473007661018\tfrom:0.05014706301412718\tby:0.044588394006238215\t:0.01\n",
"and:0.21426285053299027\tof:0.20265915305716187\twas:0.15542659537502876\tis:0.09899687051373142\tare:0.0797471448772987\twere:0.07206825686557837\tfor:0.05953365128748507\tin:0.05842261743222282\tone:0.04888286005850265\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"he:0.23736729460846578\tit:0.19636745564167832\tI:0.12052610796978963\tthey:0.10103610581681505\tIt:0.08239012322138402\tthat:0.07820433211722773\twho:0.06949320596130137\tshe:0.05446471213165612\twhich:0.05015066253168193\t:0.01\n",
"to:0.42397763327561755\tand:0.1361398280224045\tI:0.10135080430611557\twho:0.08024451539164992\the:0.0604297631206603\tthey:0.05358541332005296\twill:0.048000351044562746\tnot:0.047552687469621435\tHe:0.03871900404931492\t:0.01\n",
"the:0.4662500867369638\tand:0.1608185144459048\tof:0.13860684178001875\ta:0.0506545786698858\tor:0.043500449577871796\tto:0.037983403080736236\tin:0.035217365717457094\ttheir:0.02961720316749188\tThe:0.027351556823669805\t:0.01\n",
"was:0.22078287177268763\tbe:0.20200633172595278\tand:0.19243909966342185\tbeen:0.10719855094018213\tis:0.09245097262509099\twere:0.06857671367980495\tare:0.05019202570312678\tmost:0.028689017688665264\tmore:0.027664416201067597\t:0.01\n",
"of:0.40597240465918316\tto:0.15578938609769688\tby:0.08689148521395414\tfor:0.06971877348464363\tat:0.06702664764259365\tand:0.05576152415102806\tfrom:0.052822906113367256\ton:0.050960647556050266\tin:0.045056225081482874\t:0.01\n",
"to:0.47672427599484263\twill:0.11398355166677349\twould:0.07388107823934731\tand:0.06776081250212189\tyou:0.06251900010185123\tnot:0.05672758839294352\tcan:0.05001205239389925\tthey:0.046584028274306015\twe:0.04180761243391478\t:0.01\n",
";:0.1780125830085555\tdue:0.1501430332404507\tit,:0.11423292934626336\tthem,:0.09884225374661566\tinterest:0.09823064167373725\tmade:0.09756567207626926\tsale,:0.0963600378338782\tup:0.08601112729055357\tmortgage:0.07060172178367638\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"more:0.4500788600062063\tless:0.16900716644448105\tbetter:0.08289749761439143\tgreater:0.07115848974331247\trather:0.07103038283837584\tworse:0.03862141159128229\tlarger:0.036206064534620795\thigher:0.03591796783111622\tother:0.035082159396213466\t:0.01\n",
"of:0.2777391297461866\tand:0.18232962127987554\tby:0.1690883617948812\tthat:0.1307715434371917\tto:0.07798519372854924\t<s>:0.04903118610590205\tsaid:0.04379761577319058\twhich:0.030475216056307982\tRev.:0.028782132077915044\t:0.01\n",
"and:0.5183120814971687\twas:0.08884009435822089\tis:0.07742160080589762\tbe:0.06792772431165149\thad:0.06058431065577768\tthat:0.05151613588975055\tbut:0.04359396594202714\thave:0.04259962910647334\tas:0.03920445743303254\t:0.01\n",
"the:0.178773384293596\tand:0.15905693441419114\tof:0.1507009654572478\tto:0.12785537177660436\tbe:0.1151551695765266\ta:0.09109342413565304\tin:0.05932541876549419\twas:0.0550093693954189\tis:0.05302996218526802\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"it:0.2184794943064721\tIt:0.19761166602575983\tand:0.12559263365135226\twhich:0.12026408742095422\the:0.0908435826448058\tthat:0.08693764277885405\twhat:0.07030818201783591\tthere:0.04191013959707047\tThis:0.03805257155689546\t:0.01\n",
"of:0.19730990254459835\tthe:0.18792393156251172\tto:0.12178044491491599\tat:0.10756702635193695\tand:0.10173636416897784\tfor:0.09279868011861508\ta:0.08095248870459534\tin:0.05994749513805355\tby:0.03998366649579525\t:0.01\n",
"land:0.15768982864402048\tup:0.1313154774211678\tinterest:0.12811701858507943\tdue:0.11007761973340134\tmade:0.10518341070202401\tmen:0.09856685913358561\tday:0.09277088931287429\tstreet:0.08320276018677926\tboys:0.08307613628106776\t:0.01\n",
"the:0.4944728231715488\tthis:0.2269091568151546\tof:0.08307635906534416\tsaid:0.06591606368249685\tour:0.03817745088847554\this:0.02295389538520126\ttho:0.02242392266280567\ttheir:0.018272888433197982\ta:0.017797439895775088\t:0.01\n",
"on:0.3278301167743909\tof:0.29061650296211666\tto:0.10591084099618339\tin:0.09755807035839408\tfrom:0.06346523711995171\tat:0.04043139089410193\tupon:0.024743048616454866\tfor:0.02149223367026887\tIn:0.01795255860813749\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.32311634278934404\thim:0.09870937808207801\tapplication:0.09552818008284919\twas:0.09108249895321115\tit:0.08441184299744424\tup:0.08234572242630689\tmade:0.07437354501364973\tout:0.0712836163279344\ttime:0.0691488733271823\t:0.01\n",
"as:0.1999117226375148\tthat:0.1973335913654222\twhich:0.1476746601112198\tand:0.13061455629424026\twhen:0.08623765309457292\twhat:0.06536116957309292\tif:0.06336114118423189\twhere:0.05656628729076102\tbut:0.042939218448944015\t:0.01\n",
"the:0.37692970902890477\ta:0.22862281403096546\tto:0.19164429961666243\tand:0.05858950316394711\tThe:0.04910181306349874\tsaid:0.023075731331717347\this:0.022161470763695835\tthis:0.02068639562315564\tof:0.019188263377452514\t:0.01\n",
"the:0.7561076949366696\ta:0.08631970449944562\ttho:0.04846792604867539\tThe:0.03688527305321164\ttbe:0.014257295271720956\tof:0.013695147528211243\tand:0.013052039339803844\tour:0.011995720293827873\tin:0.009219199028433966\t:0.01\n",
"the:0.386657440334103\tand:0.2147156274032315\tof:0.12276498645981455\tThe:0.11869146848197373\tthat:0.06473799132164165\tin:0.025282011113052057\this:0.020626846877035795\ttheir:0.020521310497966894\ttho:0.016002317511180808\t:0.01\n",
"and:0.19379414751526317\twould:0.13802009551861086\tthey:0.1328660692998883\twill:0.11653072481014688\tcould:0.09355392939078927\tall:0.09273383405053562\tcan:0.07877989774990687\tto:0.07198195594018414\twhich:0.07173934572467484\t:0.01\n",
"and:0.25369102737374416\the:0.19467027862525113\thad:0.13754299871553502\thave:0.10224525290340672\thas:0.08805777803151546\twho:0.06809162673811149\tshe:0.04893930243468948\tbe:0.048459582308852216\tHe:0.04830215286889442\t:0.01\n",
"one:0.22043979554334728\tpart:0.17073202577386606\tout:0.1504453831229998\tsome:0.08943673051487451\tside:0.0779259956881897\tend:0.07349403345130155\tmembers:0.07129904224908563\tportion:0.07021530842224585\tall:0.06601168523408947\t:0.01\n",
"the:0.24272402630912351\tto:0.16548294383053364\tof:0.155724785052511\tand:0.13594666285904117\ta:0.09288915680202216\tat:0.06329022629346127\tor:0.051870426884473145\tin:0.04386243845384893\tbe:0.038209333514985094\t:0.01\n",
"of:0.38055921396468667\tto:0.12301622857307579\tin:0.11291785355143842\tthat:0.07956400430775584\tfor:0.07138105199516305\tby:0.07014977669837545\tand:0.0671559093640443\tall:0.04870639975024418\twith:0.03654956179521632\t:0.01\n",
"of:0.41796544454797624\tand:0.10866439051771291\tby:0.08801277314720554\tto:0.08637129466095497\tthat:0.06996012184143395\tfor:0.06747846770875712\tin:0.05579030115889991\twith:0.0505053332416677\tall:0.04525187317539153\t:0.01\n",
"one:0.33708984341259335\tpart:0.14875576146602673\tout:0.10384043397499726\tportion:0.09083714555922895\tside:0.07562804233059955\tsome:0.06197550487992145\tthat:0.060324718837243906\ttion:0.057990436636891\tmember:0.05355811290249791\t:0.01\n",
"the:0.8002941947295787\ttho:0.04485101006157027\tThe:0.03857982259613793\tand:0.031437887516900784\ttbe:0.016586742241697934\this:0.01639808285498029\tour:0.01482382421816749\ttheir:0.013953417660277464\ther:0.013075018120689001\t:0.01\n",
"they:0.17575189562716811\twe:0.15884948974267682\the:0.15316210749662412\tI:0.14793626125930318\tit:0.10583886363524375\tthat:0.06699093900055623\tyou:0.0645982230351958\twhich:0.06241058168563478\tand:0.054461638517597194\t:0.01\n",
"the:0.46441219369759196\tand:0.12153702569266457\tof:0.10694655367874961\this:0.09185538761779673\ta:0.08015244433199885\tto:0.033918794573920184\tThe:0.03180489136378234\tby:0.031101754753974704\ther:0.02827095428952107\t:0.01\n",
"of:0.33672424568280146\tin:0.14678802062706986\tto:0.11364573995622267\tfor:0.08450211588257416\twith:0.07114087352589918\tany:0.06981249612903115\tthat:0.062216617957506125\tand:0.05729647644438153\tby:0.04787341379451395\t:0.01\n",
"and:0.36312506208769063\tI:0.12338044646255546\the:0.09040999163050689\tthe:0.08357934052402677\tto:0.08064499010043451\twas:0.07239722608272099\twill:0.0609622339439277\tthey:0.058570497499144024\twe:0.05693021166899302\t:0.01\n",
"out:0.23966874593182105\tnumber:0.1574821199093086\tplace:0.10450660588571738\tstate:0.09966694258960572\tamount:0.08184101469739698\tmeans:0.07851471934657743\tright:0.07830643679475029\tone:0.07721478942742464\tmen:0.07279862541739793\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.744536665559899\tOf:0.1480879674520589\tin:0.031163275590181484\tthe:0.01618451375834857\tby:0.010553055611928762\t\"Of:0.010460611290060269\tat:0.010255061204017486\twith:0.009864824254796822\tand:0.008894025278708514\t:0.01\n",
"from:0.2439568612486867\tand:0.169831616483614\tor:0.1156269960669345\tof:0.10038234060483639\twrit-:0.08868278699026945\tthan:0.08164942037256163\tto:0.06954208021113506\tin:0.06158597506373904\tfor:0.05874192295822317\t:0.01\n",
"of:0.23182606599609856\tto:0.1600128184306082\tat:0.1392451572961307\tin:0.1330827822378778\tthe:0.10884079626274028\tfrom:0.0698646022356823\tand:0.0644351271487586\tIn:0.05699645950378637\tby:0.02569619088831713\t:0.01\n",
"A:0.2848899711466817\tS:0.11969673972086022\tW:0.10773189010146549\tM:0.0998208422183307\tJ:0.08332814787641818\tE:0.07851461222792269\tB:0.07821157047490013\tP:0.07294574692175533\tC:0.06486047931166561\t:0.01\n",
"of:0.27395062242032137\t<s>:0.15040449671343734\t.:0.1468035625475986\tSt.:0.10569082862567165\tMr.:0.08822705721653197\tthe:0.06401728644914127\tand:0.0581571992728012\tin:0.05226064647014064\tMrs.:0.050488300284355886\t:0.01\n",
"and:0.3838394095931822\tup:0.08987063291160846\tthat:0.08926092622172724\twas:0.07917655771788831\tfeet:0.07415957683337827\tor:0.07274987086962711\tState:0.0706870683277842\tall:0.06534823614542731\tmen:0.06490772137937695\t:0.01\n",
"the:0.5813335411692847\tand:0.06654417953837187\ta:0.06459896286836159\tof:0.05845771943892266\tin:0.05533907363310234\tThe:0.048814915143618846\tan:0.04704573325643952\ttho:0.03586107761153879\tby:0.032004797340359624\t:0.01\n",
"the:0.18339688078573316\tcalled:0.17018930624676445\ttheir:0.129945117065141\this:0.10779339542419646\tcall:0.09777522118982959\tmuch:0.08037675573374806\tmore:0.07998137415066779\tno:0.07369743816546569\tand:0.0668445112384538\t:0.01\n",
"sum:0.18660346400208067\tamount:0.14113071889989057\tnumber:0.1282359702472041\tout:0.11916988247675848\tpurpose:0.09069241232633117\trate:0.08735451040047423\tmeans:0.08498416672211168\tmatter:0.07741017629998366\tall:0.0744186986251656\t:0.01\n",
"of:0.31861339648026715\tto:0.13761945036747708\tfor:0.11848956557926557\tand:0.08858000076179956\tthat:0.07795267621737502\tby:0.07438058842883097\tin:0.07268328005426626\twith:0.071742740291062\tat:0.029938301819656298\t:0.01\n",
"and:0.6653312190414234\tAnd:0.10446110895019836\tSince:0.04951680396914772\twas:0.03869889133316169\tbut:0.028430636199460083\tHe:0.028082559310550193\t;:0.026155374509799465\tis:0.02512410470974794\tI:0.024199301976511215\t:0.01\n",
"W.:0.22599567275008395\tJ.:0.17044631072112662\t.:0.11452227993266861\tJohn:0.1081757657435407\tWilliam:0.0971613363851192\tC.:0.09058680856876587\tGeorge:0.06449822090858635\tCharles:0.060743487396097945\tH.:0.05787011759401088\t:0.01\n",
"the:0.6374013662918097\ta:0.07282821601172167\tof:0.06770636088558821\tthis:0.058205660269236986\this:0.0515731265054095\ttho:0.03650789868082649\tsaid:0.02702562611645956\tand:0.021727592507973223\tour:0.017024152730974754\t:0.01\n",
"of:0.33406129049648303\tto:0.12049264072633424\twith:0.0963336285288878\tand:0.0939645479779181\tis:0.0864883967561169\tin:0.08226092310789548\tthat:0.061430624386753084\tby:0.057631216891386707\tfor:0.057336731128224655\t:0.01\n",
"the:0.6508712654296142\ta:0.09983713663491017\ttho:0.05239547147515778\tany:0.05215008373155352\tthis:0.03814395438674984\tThe:0.025922331976556665\tthat:0.0257052411354048\tsaid:0.022650433653663826\ttbe:0.022324081576389192\t:0.01\n",
"has:0.1529616218021642\tand:0.1327516318111617\tI:0.12345520954150345\tthe:0.11759765319295915\thad:0.10918594983497103\thave:0.1012446289029394\twas:0.09234299306261431\tis:0.08049226973053512\the:0.07996804212115168\t:0.01\n",
"which:0.21597772088141595\tit:0.18465171430396346\tIt:0.1740531102265308\tthat:0.14195052961581553\tand:0.09422627351345923\tthey:0.06554715559392782\the:0.03846471294067002\twho:0.038320493389156385\tthere:0.03680828953506078\t:0.01\n",
"the:0.23096407016366577\tof:0.1722033400437719\tand:0.14147498841999784\ta:0.12083689853514935\tto:0.11852942901038442\tbe:0.06109875657352347\twas:0.058041221521029175\tin:0.05303128523338767\tat:0.033820010499090294\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.7832320812241133\tThe:0.034994765375564875\ttho:0.034248167636084056\tin:0.03398518441840311\ta:0.027055969153015284\tand:0.026887077682553787\tno:0.02065298669590591\tto:0.014997236856731327\ttbe:0.013946530957628381\t:0.01\n",
"and:0.2794604448202863\twait:0.11218219597371293\tnot:0.10790288591181015\tthem:0.09869567173090517\twas:0.08301985515685782\tannum:0.08128723156862967\tadjourned:0.07760047759086465\tit:0.076410253813026\tis:0.0734409834339072\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"the:0.45259999855839844\tof:0.27893983449110815\ta:0.050064486402479506\tthis:0.04105007361434546\tby:0.03848031003232581\tand:0.03588540165733464\tThe:0.033040846239109696\tsaid:0.03138412083342916\tthat:0.028554928171469336\t:0.01\n",
"those:0.4529909351618139\tmen:0.17669254562461442\tand:0.0777641735520194\tpeople:0.06973463070913263\tThose:0.060505069472183176\tman:0.04228232023178334\tall:0.04140258357632076\tpersons:0.03955708558100816\tone:0.029070656091124202\t:0.01\n",
"the:0.4769261252619784\ta:0.10188461426043646\tthis:0.09447411520849798\tand:0.07130423770986373\tof:0.06462294450009742\tfor:0.0578475772976483\tany:0.04208236805669002\tin:0.04080821628761628\tother:0.04004980141717146\t:0.01\n",
"of:0.3509002797429298\tto:0.20555455655536398\tand:0.11347354649642782\tin:0.07284333245201467\tfor:0.061884936797956924\tby:0.05946942510867478\twith:0.055281713343555014\tthat:0.04104975355294299\tat:0.02954245595013402\t:0.01\n",
"and:0.2731235112941952\tdemand:0.1600440794265637\tready:0.09975931898465483\ttime:0.09496048153777206\tused:0.0893718693589088\tvote:0.08120196748039947\tplace:0.0692173277538341\tprovided:0.061333366634481704\tcandidate:0.06098807752918989\t:0.01\n",
"he:0.2551201520408392\tit:0.1288527672382355\tand:0.12677751374117283\twhich:0.11430383549362245\twho:0.09737427734167386\tthat:0.0943520398413628\tIt:0.07306541375906984\tHe:0.05605309586453941\tshe:0.04410090467948399\t:0.01\n",
"the:0.7529022702059932\tThe:0.06356969039852374\tan:0.05086305318238903\tof:0.02959759555693412\ttho:0.0270751466719142\tpublic:0.021714982560560148\this:0.01692374259796867\tand:0.01515216181798637\tthis:0.012201357007730474\t:0.01\n",
"and:0.3079069995791492\tof:0.15703359043111892\tthe:0.09695346957938135\tbe:0.08008775556196854\ta:0.07801796281644585\tin:0.06960382693033287\tis:0.06885254681667448\twas:0.06803906530008293\the:0.0635047829848459\t:0.01\n",
"and:0.17242398561069028\tas:0.14671919886062282\tis:0.12617046029401924\tright:0.11510593609863622\thim:0.0996423111481772\table:0.09079721249751993\ttime:0.08979454579528022\tthem:0.0749387315413511\tenough:0.074407618153703\t:0.01\n",
"of:0.3663898246084499\tto:0.14230576067460735\tand:0.1008161749419362\tthat:0.08800406011494334\tin:0.07899034383353772\tby:0.06447705977048526\tas:0.06196284386404849\tis:0.047373755234580726\twith:0.03968017695741105\t:0.01\n",
"and:0.22944347801203294\tit:0.18560740285395103\tIt:0.1778401420427815\the:0.12994263751990437\tas:0.12322454475093873\tshe:0.040756592634900314\tthat:0.038680608852951145\twhich:0.03348696543869262\tHe:0.03101762789384748\t:0.01\n",
"the:0.529871372502062\tan:0.12538179664445886\tThe:0.10398418343201106\tno:0.05792234954949872\tand:0.041553604769308305\tthat:0.03766739880535068\ttheir:0.03446085562747535\this:0.03307276217034193\tAn:0.026085676499493143\t:0.01\n",
"be:0.24225776827547107\twas:0.2408467634496216\tis:0.15144076548425953\tbeen:0.10825402797161421\twere:0.05784855529597806\tare:0.05177009922667211\tand:0.051529439511421075\thave:0.045869937634762145\thas:0.04018264315020015\t:0.01\n",
"United:0.9309205409489965\tthe:0.03678378442773816\tI'nited:0.0066849414543340355\tSouthern:0.003323732534299146\tThe:0.003053549619232765\tted:0.0024833319008751983\tnited:0.0024530043031345673\tUuited:0.002186732970327872\tof:0.0021103818410616953\t:0.01\n",
"be:0.19739305058978224\thas:0.15952926304304385\thave:0.15419638115989928\tand:0.10629043303916424\thad:0.090666309636117\the:0.0799797201035854\tis:0.07382451503726477\twas:0.07077559382792949\tbeen:0.057344733563213915\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"the:0.8637364132399632\ttho:0.03430961518657653\tThe:0.021882531136760988\ttbe:0.01858870298755881\ta:0.014461400125506887\tof:0.01309114618041246\tand:0.008744576898534683\ton:0.007623696981843424\tby:0.007561917262843011\t:0.01\n",
"Of:0.5327537284961954\tof:0.18659679139348903\t\"Of:0.07679341299229565\tthe:0.06717741679861626\tthis:0.03982598264529755\this:0.026148023159880934\ta:0.02452300021704008\tin:0.020621183412023337\tthat:0.015560460885161772\t:0.01\n",
"there:0.3032885416202099\tThere:0.2046666952218115\tthey:0.1376363647166102\twe:0.08165032428159714\tand:0.06158179224926733\twho:0.05825117690987445\tyou:0.055310392990608914\tThey:0.048208507163228054\twhich:0.03940620484679245\t:0.01\n",
"to:0.5809812810645795\twill:0.11505691919538792\tnot:0.06294259037913483\tand:0.06278313453733972\twould:0.04472893623234164\tI:0.034591421342198336\tthey:0.03032601772589362\tcan:0.029624814877529652\tthe:0.028964884645594727\t:0.01\n",
"the:0.2732084333570019\tof:0.16432260681204475\ta:0.13204233918626768\tand:0.12147650098125092\tin:0.0914433451158364\tto:0.06848718631458547\tthat:0.055028820233721604\tfor:0.04498993004410672\twhich:0.03900083795518455\t:0.01\n",
"the:0.41510633844387385\tthat:0.10871243398391901\tsome:0.1075972525641758\tany:0.07979487125565202\tthis:0.07644882744180741\tsame:0.07327301698911191\ta:0.0654015281707071\tno:0.033771731546305236\tThe:0.02989399960444767\t:0.01\n",
"the:0.234408122978364\tof:0.1828304793787199\tand:0.15070945178286432\tin:0.11802874539792416\tto:0.07447537350815517\tfor:0.06971697362682315\ta:0.06501836054781819\tthat:0.04761270286895048\tor:0.0471997899103806\t:0.01\n",
"the:0.4766947372933184\tand:0.19307357905387598\tThe:0.06306756119996701\tthat:0.0610577746697837\tof:0.056347081572959215\tthis:0.03915072743597498\tto:0.03770590794076414\tthan:0.03269350527641731\ta:0.03020912555693923\t:0.01\n",
"the:0.2867322592482796\ta:0.2610026112468413\tof:0.130202256938174\tand:0.10887663409827694\this:0.050104758525564265\tto:0.04169832873026429\twith:0.0403666186738138\tin:0.039305962928188165\tfor:0.03171056961059771\t:0.01\n",
"day:0.1856783449282359\tline:0.17354665864496266\tcity:0.17038660035682002\tState:0.11784414900991676\tcorner:0.081627717392632\tpart:0.07658416044941385\tside:0.06499389145586673\tstate:0.06293141830183488\tquarter:0.056407059460317155\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.2575619008309538\tin:0.13778184754347153\tfor:0.11980787530480917\tto:0.11818108648737348\tat:0.11144536110759848\tand:0.07810765798298186\ton:0.06457341621035932\tfrom:0.0523382636803526\twith:0.050202590852099716\t:0.01\n",
"number:0.3479557304440152\thundreds:0.17840631277100674\tthousands:0.09494665689560734\tamount:0.08902840367822924\tout:0.07454512833769454\tright:0.06834822511512087\tand:0.05779075136665285\tthat:0.039696260378238424\tclass:0.039282531013434874\t:0.01\n",
"the:0.519041149263849\tof:0.17956991224290297\tand:0.10074420416210277\ttho:0.04138830625780651\tto:0.035544951376339576\tThe:0.033345700844786316\tin:0.02932136640202946\tfor:0.026489980459522104\tan:0.024554428990661296\t:0.01\n",
"therein:0.2795534129524233\tabove:0.2493078551461562\thereinafter:0.18019888013776503\thereinbefore:0.1399981784346857\tand:0.06502421653581789\tbe:0.02039972802716203\tis:0.019202537128265654\tI:0.018397022648512982\the:0.01791816898921108\t:0.01\n",
"and:0.2049001741671483\twas:0.17686612892490886\tis:0.12972444040477402\tbe:0.10608464469363506\tit:0.0808253305400863\tinterest:0.07545699508533193\tare:0.07395100046965469\tnot:0.07265831400696875\tbeen:0.06953297170749191\t:0.01\n",
"that:0.24443729584997617\tand:0.15444939476354383\t<s>:0.12969670873961278\tas:0.10770212456191086\tit.:0.08270224731965019\tbut:0.07397577848630607\twhich:0.06944412260016984\thim.:0.06507427175079589\tof:0.06251805592803433\t:0.01\n",
"and:0.2094793767642215\t<s>:0.16761671236827178\tto:0.1384374772199603\tof:0.11955503777192691\tin:0.09974511051073018\tfor:0.08970991860078496\tthe:0.060030203649832393\ta:0.05385954546062059\tby:0.05156661765365149\t:0.01\n",
"the:0.8454876622661593\ttho:0.029986454679901804\tThe:0.02692406328221514\ta:0.025829430417423353\tthis:0.023457786264339142\tsole:0.011813097180470146\ttbe:0.011470941652175711\tthat:0.009208085765374364\tand:0.005822478491940921\t:0.01\n",
"of:0.3810414409828971\tin:0.1640593634483805\tto:0.11847104233197113\ton:0.06849710295845705\tfrom:0.05718233619846522\tand:0.05408369092230428\tfor:0.05352923792086894\tIn:0.04694876050240489\tat:0.0461870247342509\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.4350691121933086\tin:0.17590693507051808\tto:0.10103820455278756\tIn:0.05410244356178705\tthat:0.04894784282719977\tfor:0.04796761694587244\tby:0.04368040144683445\tand:0.04226712549192657\ton:0.0410203179097653\t:0.01\n",
"hundred:0.4503738365108241\ttwo:0.29658563736134735\tone:0.0891212033950726\tthree:0.039173615397145936\tfeet:0.025817701392789962\twife:0.02366475989054041\tdred:0.02220453956469675\tfour:0.021657121900225576\tand:0.02140158458735739\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"and:0.24805862919699095\twait:0.17095914683343477\tit:0.10308375579643421\tthem:0.09691666665006109\tnot:0.07826346792305976\thim:0.07795698697609413\tout:0.07568911883439841\tme:0.0749874910005944\tbut:0.06408473678893237\t:0.01\n",
"be:0.4499393120500502\twas:0.14891711304471902\tbeen:0.12045429615525546\tis:0.09089949305205755\twere:0.044384965759585567\tand:0.035836690236938015\tbo:0.033804128531534146\tbeing:0.03313802475353129\thave:0.032625976416328945\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.23632566192425677\tof:0.18886074844018247\tand:0.12682049354783523\tto:0.09524780069146993\twas:0.08498950973556638\ta:0.07330451419837286\tbe:0.06504520465050595\tin:0.06462390742693405\tis:0.05478215938487641\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"the:0.6137023787371636\tof:0.10175162523613605\tat:0.08816142621676376\tThe:0.04212694363522589\ttho:0.04130225632242306\tand:0.0344767499295042\tto:0.03270459677819874\tAt:0.019756737203424853\ttbe:0.016017285941160066\t:0.01\n",
"of:0.32329917147477605\tand:0.1505971805046369\tthe:0.13966809360084256\tto:0.10026562179063007\tbe:0.06554557217927116\twas:0.05454186971329016\tin:0.05418785773990753\tby:0.05277832791107027\ta:0.049116305085575365\t:0.01\n",
"of:0.4216403507787339\tthe:0.1603110577918501\tto:0.09287401204002219\tand:0.07877261698718876\twith:0.07331482858595083\tfor:0.0445560808380516\tin:0.04446325519629439\tby:0.04262457973311482\this:0.03144321804879339\t:0.01\n",
"the:0.44032532092278903\tblacksmith:0.12144833721596575\tof:0.09319978262827758\ta:0.08636774484214073\tand:0.0838199410315418\tin:0.07827388024761846\tbarber:0.0342476865402628\tThe:0.02790285549308358\tthat:0.02441445107832027\t:0.01\n",
"the:0.2115885749218872\tof:0.1981505255001405\tat:0.15003765183173623\tin:0.13768871201112562\tto:0.08291298822593032\tand:0.06019642235653826\ta:0.056041841711516285\ton:0.05307257185472001\tIn:0.040310711586405555\t:0.01\n",
"the:0.32200463811602553\tno:0.20692057260947375\ta:0.17287129691126038\tany:0.05615937651258571\tThe:0.05611397755533407\tbe:0.04894581817298719\tan:0.046144208666942396\tand:0.04090506695834237\tvery:0.03993504449704869\t:0.01\n",
"in:0.4012325547276402\tthe:0.19555487390010848\tIn:0.10784192508028345\ta:0.09698861188200332\ttake:0.08225988669629536\ttook:0.03851085684635368\tand:0.023770822769100815\tor:0.022475270875718448\thave:0.021365197222496152\t:0.01\n",
"the:0.2781006807555158\tMr.:0.20279267951665778\tof:0.13237428459760445\tThe:0.0866001262227909\tand:0.08328248282159866\tthat:0.07698677073899704\ta:0.05770113214848798\tMrs.:0.039502858498326084\t.:0.03265898470002127\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"that:0.4248767727810632\tand:0.21696169084527836\tbut:0.07728732858024093\tif:0.05209935182685942\twhen:0.05161873506627446\twhere:0.04967867968515334\twhich:0.04575344605788949\tas:0.042465679687247924\tThen:0.029258315469992895\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.41773515469212547\tto:0.12058911408202545\tin:0.12026595672238302\tby:0.07310423207258618\tfor:0.06720959686131464\tthat:0.05564286791544017\tand:0.051951206499336516\twith:0.04814683908079241\tat:0.035355032073996095\t:0.01\n",
"person:0.20531312894303227\tfive:0.14192873288632507\tten:0.11630069465323675\tone:0.10246605005505668\ttwo:0.08983868018036562\thundred:0.08751413465476847\tmore:0.08657648876790676\tlot:0.0818978644321041\tcity:0.07816422542720411\t:0.01\n",
"that:0.31663301393766674\tas:0.1490043734264882\tif:0.10931338716090945\twhich:0.09839266866042613\tand:0.09424257213337592\twhere:0.06868577128050966\twhat:0.06014037764174531\tbut:0.050073419639953785\tthan:0.04351441611892476\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"to:0.33965060249752355\twill:0.1785674431025148\tshall:0.12939618111588067\twould:0.10526048595499948\tmay:0.08927914748616961\tnot:0.05178279063247181\tshould:0.049279290903236156\tmust:0.029479108652549383\tcan:0.017304949654654542\t:0.01\n",
"of:0.2077450728428805\tthe:0.14274703291744004\tat:0.1284854362972801\tand:0.11648575937126293\t.:0.11637466798444815\t0-:0.07430743567113644\tsaid:0.07355404747048895\t-:0.07227343254759967\t<s>:0.058027114897463206\t:0.01\n",
"and:0.30413897223976744\tof:0.25131473638042673\tthe:0.09284867820878091\tby:0.08986745125330471\tin:0.0570773035820314\tor:0.05378963070854306\tfor:0.050218914569158495\tthat:0.04603240426664696\tto:0.0447119087913401\t:0.01\n",
"and:0.26106849062347115\tthe:0.19554736216822505\tany:0.13427360282152664\tor:0.11631328769202957\tof:0.07443676633240681\tall:0.06892701553237131\tno:0.05109724528059536\tsome:0.0462979816023174\tin:0.04203824794705671\t:0.01\n",
"the:0.36710660021205765\ta:0.18889880180548893\tthat:0.1345201310777603\tThe:0.07925947677007271\tthis:0.07007972069447162\tand:0.0460414874179851\twhat:0.04204528853323977\tof:0.0321369594183229\tThis:0.029911534070601098\t:0.01\n",
"of:0.35274977105051863\tto:0.17281604997550973\tin:0.11002356683580614\ton:0.10353108139880829\tby:0.058892118777487755\tfrom:0.057347726685512045\twith:0.05403336975915564\tat:0.048178870451605516\tfor:0.03242744506559626\t:0.01\n",
"he:0.346501052135008\twho:0.16524687721441422\tshe:0.0939565840617455\tthey:0.08200101607898734\tI:0.07854418651348084\tHe:0.07292902731509013\twhich:0.059360502573063856\tand:0.056837887182834626\tthat:0.03462286692537548\t:0.01\n",
"the:0.6046190249235225\tof:0.08205211967790121\tand:0.07073928472226543\tthis:0.061417232891412064\tThe:0.05208874268079892\ttho:0.03452140688790483\tthat:0.030741094160428754\ta:0.028631944131492962\ton:0.025189149924273364\t:0.01\n",
"the:0.298845698012446\tDemocratic:0.21113021489401723\tRepublican:0.1829922364629404\this:0.07123544512816855\tdemocratic:0.06203826132215897\trepublican:0.05778599746507541\tour:0.03940406627723277\tof:0.03715189583647192\tpublican:0.029416184601488694\t:0.01\n",
"and:0.3393626640434815\tto:0.17732162174538393\tof:0.09581509275242527\tnot:0.07225357442184623\twhich:0.06409073755214077\tit:0.06198799393037636\tre-:0.06195276507152283\tthe:0.05918274462266674\tthat:0.058032805860156515\t:0.01\n",
"the:0.6006912970684803\tof:0.07210706306136803\ttho:0.0702369285501976\ttheir:0.05891813763690341\tand:0.054089144774343276\tour:0.04084397489831687\ttbe:0.03228939348227222\tThe:0.032115833049097264\this:0.02870822747902087\t:0.01\n",
"he:0.27815866773025816\tI:0.20086306868199327\tthey:0.10324245838274379\thave:0.08204658689404552\tshe:0.0773412187927813\tand:0.07216353790499624\twho:0.06541637249810138\tHe:0.06187836700934051\thas:0.04888972210573986\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"and:0.21611167579573193\tthe:0.1352979457465441\tto:0.13396627391568766\tof:0.12534535200190874\tin:0.09601261023153373\twas:0.09351534066876913\ta:0.07652736995584764\tbe:0.0710897106828275\tbeen:0.042133721001149496\t:0.01\n",
"the:0.3718093051477366\ta:0.20531120261900512\tand:0.13107693269218942\tof:0.1124602436194885\tan:0.04655747679828293\tto:0.035407772910839734\tin:0.03318739613206984\tThe:0.03025527164401803\ttho:0.023934398436369814\t:0.01\n",
"to:0.6749197567580357\twill:0.1086009587311979\tand:0.049978783101372465\twould:0.0344862738520985\tnot:0.03265449185041845\tthe:0.025024659161076247\tmay:0.022671546446063468\tof:0.02190374200467886\tshall:0.019759788095058402\t:0.01\n",
"of:0.2385278850815901\tthe:0.16802364293714533\tand:0.12948864632017906\tto:0.12756909556412252\tin:0.08455289842744297\ta:0.07072259306338716\tbe:0.06299644397177792\tfor:0.06094683413443188\tis:0.04717196049992302\t:0.01\n",
"and:0.22359968290163865\tdemand:0.14827480226450873\tready:0.12509974120127257\tnot:0.10781179920921906\tused:0.10157348029387409\ttime:0.07749501592485684\tnecessity:0.07626940883785346\tis:0.06525983808826649\tenough:0.0646162312785101\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"husband:0.17568917950257912\tmen:0.14294351794359644\twife:0.10776861506119503\tJohn:0.10480795174335315\tWilliam:0.10372930841070628\tJames:0.09399454580173834\tup:0.09268717315575178\tRobert:0.08741132963318429\tstreet:0.0809683787478955\t:0.01\n",
"the:0.8657103316150121\tThe:0.049288831707500494\ttho:0.015248005276036541\ta:0.011904305996588488\tan:0.010678667628294036\tto:0.010548521274698684\this:0.009126443074454354\ttheir:0.00661832958812944\tour:0.006010125353747104\tand:0.004866438485538746\t:0.01\n",
"that:0.371739867996464\twhich:0.11851866647349125\tand:0.11799120008495087\tif:0.07779864410619086\tas:0.07513205183763351\tbut:0.06614765438119001\twhere:0.06504322807420472\twhen:0.061911374323883606\tIf:0.035717312721991044\t:0.01\n",
"in:0.23041258997736438\tof:0.22779246508412326\tto:0.13359363017682432\twith:0.0873342797835442\tfrom:0.07516315615188836\tfor:0.07454106948921325\tand:0.054196168251651355\ton:0.053970993654456706\tby:0.05299564743093413\t:0.01\n",
"of:0.37757352357277263\tto:0.1412997508358221\tand:0.0922662258820009\tthat:0.08655245251206978\tin:0.08397587336935568\tfor:0.057992475083582205\tall:0.051482044210817056\tby:0.050817117881126236\twith:0.04804053665245338\t:0.01\n",
"as:0.3032766602776091\treferred:0.10304334621170651\tand:0.1026073898292322\tcame:0.09571581013643159\tup:0.08846218218145885\tconveyed:0.08012148817365196\tit:0.07575822988296133\tbelonging:0.07381653890965018\twent:0.06719835439729828\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"went:0.2308007665827958\tsent:0.1700059090000297\tgo:0.10777344111300152\tset:0.10113565200513219\tturned:0.09926019761842551\tcome:0.08562586540808906\tcame:0.0756550456183855\tpointed:0.06142233067184643\tcalled:0.05832079198229425\t:0.01\n",
"the:0.17092750598625533\tand:0.16918715689086075\tof:0.16865486965200363\tto:0.16792362542136652\tin:0.07609657238307234\tbe:0.06620269474349344\tor:0.058409858839205436\ta:0.0567224565545611\twas:0.05587525952918153\t:0.01\n",
"for:0.6616776620852932\tof:0.1468538465364565\tin:0.05020763547505892\tany:0.04069425691803206\tat:0.02334797904253562\twith:0.019965353235471262\tthat:0.018090171338440934\tand:0.015201298350813864\tto:0.013961797017897721\t:0.01\n",
"and:0.2679716192906093\tit:0.14891785665017132\tagree:0.10136377126399758\tdo:0.0958426622852812\tconnection:0.08506341642487741\tthem:0.08270193147116507\ttogether:0.08185874875635105\tup:0.06987939476486002\taway:0.05640059909268706\t:0.01\n",
"<s>:0.6083795147406398\tit.:0.0814077410582518\tthem.:0.05273033187786587\tof:0.049719484804890815\t.:0.0483628156503314\tday.:0.04117334233844389\tcountry.:0.03649171982045144\thim.:0.03589124664773541\ttime.:0.03584380306138966\t:0.01\n",
"the:0.2527781663190717\tand:0.18248603280587028\tof:0.14003018590093955\tto:0.12995973004766373\ta:0.06920695734129559\tbe:0.05946308184699662\twas:0.05759666881584869\tin:0.05389847023614901\tat:0.044580706686164775\t:0.01\n",
"the:0.6427881085213275\ta:0.1373262391130397\ttho:0.04144220242570776\tto:0.03504506186096238\tthis:0.034582918180035664\tof:0.026212002719623307\tand:0.02468841251632628\tstock:0.02399066818433184\tThe:0.023924386478645636\t:0.01\n",
"of:0.21768961859876715\tin:0.1992104208284989\tand:0.14230406551975144\tthe:0.12407119652588926\ta:0.09417041319680879\tIn:0.07010086143172199\twith:0.06767684115699052\twas:0.0384346106545725\tis:0.03634197208699938\t:0.01\n",
"is:0.20531716177253911\tof:0.1548571616806375\twas:0.14749203504570196\tand:0.13792749623615277\tin:0.10120155365734503\tas:0.07174518036482276\tto:0.06110690582472406\tby:0.05557954502909937\tany:0.054772960388977374\t:0.01\n",
"and:0.3852533234371804\tof:0.24860990676162797\tthe:0.07992822348941252\tthat:0.07683760633225639\tthese:0.05765457292693311\twhich:0.03849654507774118\tas:0.038196144996749955\ttheir:0.035302203424154764\tThe:0.029721473553943736\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"State:0.47458550771390784\tstate:0.11993085085128066\tBoard:0.093049127962834\tline:0.07177087856057411\tcounty:0.05784641355240073\tcity:0.050712271691599864\tcorner:0.04911154965135702\tCounty:0.04764874689551026\tHouse:0.02534465312053555\t:0.01\n",
"and:0.29100862546764894\tas:0.14759950797101445\tof:0.11671323896467223\twas:0.08667957373979224\tis:0.07611808657759078\tthat:0.07262074992328056\twhich:0.06773089061745112\tare:0.06714264532833322\tto:0.0643866814102163\t:0.01\n",
"of:0.255071987105152\tthe:0.24110422653470306\tin:0.12114308692854875\ta:0.11067388429160388\tand:0.07441522182621237\tto:0.06773805723301689\tthat:0.04048419048534594\tby:0.04029791913583225\tfor:0.03907142645958479\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"<s>:0.5231394178066023\t.:0.1462200386076992\tMrs.:0.06400054272328881\tJ:0.05908967015434529\tOF:0.04848946800850663\tMrs:0.041957312954693377\tMr.:0.041593044517807085\tof:0.03355818681353403\tW:0.031952318413523174\t:0.01\n",
"are:0.18589410404967596\tbe:0.18179082696851878\tis:0.1374881254195622\tbeen:0.1119216080330741\tas:0.1064458722995985\twas:0.0800897645370403\tand:0.07591533370718512\thave:0.059189349608181396\twere:0.05126501537716368\t:0.01\n",
"the:0.3201606507443874\tof:0.1996047586413634\tand:0.12421327466855561\tto:0.11692989638389366\tat:0.0597196724593345\ta:0.054436680484885605\t.:0.04527438411868307\tin:0.037294101919151675\tfor:0.03236658057974502\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.24970352174941363\tthat:0.14243337278237883\tan:0.11391917883820996\tas:0.09611331632668743\tthe:0.0950802413268795\tNo.:0.0787676914831425\tat:0.0765976722111057\twhen:0.07410363176304857\t<s>:0.06328137351913382\t:0.01\n",
"of:0.28718138980067304\tand:0.13371001925811268\tto:0.11320614418519524\tin:0.10896540599912123\tthat:0.09316921342912521\tfor:0.08310440438021151\tby:0.07116454658418495\ton:0.052034833026547725\twith:0.04746404333682843\t:0.01\n",
"of:0.21338832523674772\tin:0.14017901232241858\tand:0.12939343303774875\twith:0.10408959886573863\tis:0.10292083424447168\twas:0.08224908889474121\tby:0.07954907839589143\tfor:0.07804424202008158\tto:0.060186386982160285\t:0.01\n",
"and:0.25001458160352896\tbe:0.11817617732134665\thas:0.11419279375482091\the:0.11329639249490449\thave:0.09713323071727527\twhich:0.08976250268865076\tI:0.08967266796941575\thad:0.05908154733395405\tas:0.05867010611610306\t:0.01\n",
"the:0.4950109156036055\ta:0.16164370112595763\tof:0.10710538574237821\tand:0.07918833336928531\tThe:0.04305259230281749\tin:0.030771536060903038\ttho:0.025725261783843874\tor:0.02428919266043279\tto:0.023213081350776068\t:0.01\n",
"of:0.3668738281601366\tother:0.2870466318142292\tthese:0.07010466953847354\tin:0.05504716791584482\tthe:0.05243095341592399\tall:0.052146070301305136\tfor:0.042846876003169256\tvarious:0.034142810611370394\tto:0.029360992239547187\t:0.01\n",
"feet;:0.309702945070607\tfeet,:0.13689607516263605\t;:0.1363121880384964\tand:0.10539860203584589\trunning:0.08540253860841356\tfeet::0.058578310973932735\tstreet,:0.05473262729479147\t4;:0.051590096564545634\tstake;:0.05138661625073123\t:0.01\n",
"the:0.2975076155854317\tof:0.18095708603830288\tand:0.16143558651189846\tto:0.08106366127438577\tin:0.07679923815828021\ta:0.06949398083985753\this:0.052943516492411746\twas:0.03531346474292608\tIn:0.03448585035650551\t:0.01\n",
"the:0.5888094533117914\tan:0.10112290295454646\ta:0.07515408096153393\tthis:0.04698936622542089\tThe:0.04613823446561353\this:0.038598450173436875\tand:0.0352501088030192\ttho:0.02924083769732703\tsaid:0.02869656540731084\t:0.01\n",
"the:0.2595161951092514\tof:0.14902396077236055\tand:0.12387939157408856\tis:0.1153396480276407\ta:0.08241483323047229\tin:0.08194802087304869\twas:0.0779624553967398\tto:0.050945062135500624\ttheir:0.04897043288089735\t:0.01\n",
"are:0.16432108579626847\twas:0.14911872180925032\tis:0.1280180001286511\tand:0.11562244009178568\tnot:0.10610262193542924\twere:0.0884755275311364\twill:0.08766187080427489\tbe:0.07687401355853334\thad:0.07380571834467058\t:0.01\n",
"and:0.3566638953041958\tor:0.18991146236573977\tthat:0.10235579520512857\tbut:0.09731835952775168\tnot:0.08788064872058444\tfor:0.043164010040051895\tBut:0.04022831374858809\tis:0.03651282562155435\tbe:0.03596468946640538\t:0.01\n",
"men:0.14249907312068288\tup:0.13199928517027307\tin:0.1144745799928613\ttime:0.10808446608231882\tfriends:0.10325769341432005\thim:0.10274409472781805\tman:0.09637657993615782\thome:0.09625477122474095\twife:0.09430945633082709\t:0.01\n",
".:0.23489104548318376\tJ.:0.1677907384210787\tA.:0.1372889867245314\tW.:0.09440672769446824\tC.:0.09065888584893998\tMrs.:0.08552624941420674\tH.:0.0727720835396082\tE.:0.0549137722194323\tM.:0.05175151065455069\t:0.01\n",
"it:0.23395789008208595\the:0.15728179701548436\tI:0.1307141218561129\tIt:0.12432707403776609\tthat:0.09293873480584988\tthey:0.08143644076300455\twhich:0.06318483223818545\tand:0.0548928604301729\twe:0.05126624877133782\t:0.01\n",
"the:0.4077720389704144\ta:0.18585291054972425\tof:0.111461862857906\tand:0.08873132587137963\tin:0.04627761336757523\tThe:0.04242703226798865\tfor:0.03897791827695876\tto:0.03524189371520376\tMr.:0.033257404122849256\t:0.01\n",
"of:0.2886606273126088\tin:0.22143029426450436\tto:0.10957679967486364\tand:0.10464464655394339\tfor:0.07985695745438832\tat:0.06644684732271988\tIn:0.05441156815486866\tby:0.035214874544881904\ton:0.029757384717221003\t:0.01\n",
"made:0.164042621752831\tbe:0.13371116265881222\ttaken:0.13011464667808698\tit:0.1241382551691322\tput:0.11583622442687677\tset:0.09437707032102798\tand:0.08209668522593733\tcame:0.07323431978160358\tmake:0.07244901398569185\t:0.01\n",
"the:0.23416469286989205\tof:0.21055822842083122\tand:0.13953933813282984\tby:0.11294166761598187\tan:0.0849366367540297\tto:0.07727205081885902\tin:0.05535757811941359\tfor:0.04405679969353213\tor:0.031173007574630564\t:0.01\n",
"a:0.2624774583789531\tthe:0.199560559085454\tof:0.17043740037627544\tin:0.08941420754259406\tand:0.08631124462137402\tto:0.06967574507524112\tan:0.054745917043327826\tfor:0.03054127226813062\this:0.0268361956086497\t:0.01\n",
"the:0.40004629088706956\tof:0.17001214588784655\tto:0.09324409555324727\tand:0.08485788841663555\ta:0.07725491056514237\tin:0.058901956466901474\tfor:0.048500848023656985\tthat:0.030393568527880322\ton:0.026788295671619843\t:0.01\n",
"amount:0.2440423766273841\tsum:0.16922806899019052\tnumber:0.1488830673899175\tkind:0.08673593245267633\tpiece:0.08408152064145442\tout:0.08054018718313875\tplenty:0.06920796000165007\tkinds:0.056117981273187276\tmeans:0.05116290544040108\t:0.01\n",
"at:0.5152052416912875\tAt:0.19656573665923732\tof:0.05626638635255372\tBy:0.050009780038401036\tfor:0.04619695976128439\tthat:0.038278167245824106\tin:0.031166178704283905\tto:0.029488543567586328\tFrom:0.026823005979541743\t:0.01\n",
"the:0.256343049538198\tof:0.16436520824216833\tand:0.1555228180960079\tto:0.11505024205928038\tin:0.0931680394176886\tfor:0.08033447994509665\tthat:0.0519093298852748\tone:0.03795750159829858\tby:0.03534933121798681\t:0.01\n",
"of:0.2240659145072584\tto:0.16833386582305848\tand:0.12399856365707765\tthe:0.11417039760357847\tin:0.11125105010033043\ta:0.09749271005913454\tan:0.05110499429104125\ton:0.05044971941985533\tfor:0.04913278453866559\t:0.01\n",
"of:0.24138186222504704\tto:0.1387436016534267\tin:0.10623077892283325\tabout:0.10077506156127124\tand:0.09151119459683921\tat:0.08789806465692024\tfrom:0.08006737270729601\tfor:0.07618378489114494\ton:0.06720827878522127\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"of:0.25289921391202497\tthe:0.2157589921088513\tand:0.16233962007116315\tby:0.09869209508891172\tmany:0.07288413200527247\tfor:0.06873143582851675\tare:0.04749582800674014\tfrom:0.03970599072512578\tall:0.03149269225339364\t:0.01\n",
"is:0.3574591313972601\tare:0.25460400451563053\tand:0.10590439336124803\tIs:0.0691299301774009\twas:0.05983012055178282\tit:0.042289081891148016\tnot:0.03539486957404786\tbut:0.03432045469530236\tam:0.031068013836179402\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"at:0.28635923288916365\tabout:0.27490131451381716\tof:0.16572477505386687\tand:0.10255218468015631\tto:0.05869491101789338\tover:0.028522010246037958\tfrom:0.026121669705797337\tfor:0.025462085953093554\tthan:0.02166181594017386\t:0.01\n",
"the:0.40524908905257484\ta:0.25367247997244774\tof:0.07823647718811468\tin:0.0702843277460727\tno:0.04827501245431196\tThe:0.039702806500981076\tand:0.03828979338211575\tto:0.028451929654359488\tby:0.02783808404902173\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.2966278083655574\tbe:0.2293110739068013\twas:0.11732915046487423\tand:0.08588092087681623\tbeen:0.06100857597176975\tof:0.05464919742277967\tis:0.054463655843680785\tnot:0.05383249783475988\twere:0.03689711931296082\t:0.01\n",
"of:0.21329159424771485\tto:0.15902978854303737\tand:0.15343037901538603\tthe:0.14128408917428942\tNew:0.07878708760527657\tin:0.07526123931479343\t<s>:0.07006640756382197\ta:0.05252350441727817\tthat:0.04632591011840229\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"a:0.2925808908822103\tso:0.1874348563585451\tthe:0.16540533563759954\tnot:0.09431703100461768\tand:0.07579793621720524\tvery:0.053370837024504715\tNot:0.04492280007951975\tthat:0.03831868237662278\this:0.03785163041917486\t:0.01\n",
"to:0.21852276894475595\twould:0.20151519646808336\twill:0.15109835924004328\tat-:0.1171469114626556\tand:0.09324795282127218\tI:0.06926368965088824\tnot:0.06042206527726282\twho:0.04600648485535764\tmay:0.03277657127968093\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"and:0.1848376676647123\the:0.1830391928808155\tbe:0.1261898031795597\thad:0.11007606547726007\twas:0.08675284966254095\tHe:0.08165954618298724\thave:0.08151363521192856\twho:0.07601358077130248\thas:0.059917658968893284\t:0.01\n",
"of:0.34379915101235975\tand:0.15205407572578666\tthat:0.1046153485085719\tthe:0.1018295944298935\twhich:0.06918645768564832\tto:0.06392166845787794\tI:0.05551964504706918\tby:0.05039674149160221\ta:0.04867731764119051\t:0.01\n",
"and:0.30270925673550475\tfact:0.16943001944517186\tso:0.11358010044095931\tis:0.11266763121327539\tknow:0.07568042407507537\tbelieve:0.06812016133190102\tsay:0.05750618905495806\twas:0.047547212930166706\tfound:0.04275900477298741\t:0.01\n",
"in:0.24333994743612922\tof:0.18871067140801695\tthe:0.14254258973892459\tand:0.10760876324558527\tfor:0.09174081455919122\ta:0.06366595919272895\tto:0.061841865908333744\tIn:0.05733705309984939\twas:0.03321233541124056\t:0.01\n",
"it:0.2785617870082724\tIt:0.14058657073537015\tas:0.12754388100244876\twhich:0.12453991685388906\tthat:0.10374278837395833\tthey:0.0775235962159316\tthere:0.055052625199923454\tand:0.042753566693321025\the:0.039695267916885144\t:0.01\n",
"to:0.2689751913024214\tof:0.16081543035727672\tfor:0.11714483115963774\tmake:0.08918695588980421\tfound:0.08595813878372147\ton:0.08281376223480798\thave:0.06665053411498818\tand:0.05987851343132549\tmade:0.058576642726016745\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"of:0.29173657289573296\tand:0.2912652978311739\tthat:0.1336705451206094\tfor:0.09421536276555363\tbut:0.04820022389617701\tin:0.045926219359879526\twhen:0.03077420097151115\twhich:0.02762993813359276\twhere:0.02658163902576959\t:0.01\n",
"of:0.3822267293020146\tto:0.1168044250268174\tin:0.11253776049377284\tand:0.086128521761981\tfor:0.07209232814807053\tby:0.06496623757713468\tthat:0.0588877593852753\ton:0.05041954976271098\twith:0.04593668854222239\t:0.01\n",
"the:0.7791219070888459\tthis:0.06727446019694357\ttho:0.04218488404296477\tThe:0.022029388151703803\tcivilized:0.020679568320106295\twhole:0.01637855699250399\ttbe:0.014572045123741726\tour:0.014162600630292645\ta:0.013596589452897335\t:0.01\n",
"of:0.3459150497370277\tand:0.12483338512162416\tto:0.10395470271536035\tin:0.10229269629311659\tthat:0.07521912722428531\tby:0.06538614427172511\tfor:0.05943838081256749\twith:0.05794835135118078\tfrom:0.055012162473112594\t:0.01\n",
"of:0.2691123877605227\tin:0.1799353931872076\tto:0.11387732616489306\tand:0.10814601272283804\tby:0.07960368888306117\twith:0.0756434607499008\tfor:0.06854809221883983\tfrom:0.049503978702720365\tthings:0.04562965961001627\t:0.01\n",
"the:0.35295075096745687\tof:0.23576116297493566\tto:0.12888654523496526\tand:0.09050904376590592\tin:0.04133297937505859\tbe:0.041256673741006576\tfor:0.03751470473767561\t<s>:0.031533700307135176\ta:0.03025443889586021\t:0.01\n",
"the:0.4756996755450011\tother:0.08665755764293091\tand:0.08275677526551119\tdifferent:0.07125654321952282\tall:0.0681432758803959\tof:0.066112764539503\ttho:0.048453460542818905\tvarious:0.0464112100144847\tsome:0.04450873734983157\t:0.01\n",
"hundred:0.14811792512106622\tup:0.14644756016866825\tin:0.12711489691271313\tone:0.1260183025111045\t;:0.12486460065164207\teach:0.08093270772184304\tmade:0.08073859259428114\tit:0.07922848935361987\tit,:0.07653692496506183\t:0.01\n",
"years,:0.16270601460719014\ttime:0.12852657470430356\tin:0.12362720187448062\t;:0.11832081493207332\tporous:0.1026614492451613\thundred:0.094376847867295\tit,:0.09322632357261038\tStates,:0.08499726460405177\tmanner:0.08155750859283398\t:0.01\n",
"the:0.5143213450542735\tof:0.22146603913499865\tfor:0.058277274265510576\tand:0.0489010393807108\tto:0.0345047382292867\tother:0.03114212012691126\tby:0.029622277345488442\tThe:0.026171292827287664\tat:0.025593873635532394\t:0.01\n",
"to:0.6871786982645762\twill:0.08981753232876599\tand:0.06581685308978052\twould:0.05080824949192813\tnot:0.033565600036433774\tshall:0.017908440787877834\tshould:0.016314977765610514\tmay:0.014573183876782523\tcan:0.01401646435824439\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"that:0.38314639234260467\twhen:0.13078830405217987\tand:0.10494735551057087\twhich:0.08901523310559767\tas:0.07679054931488127\tif:0.05540889644007941\twhere:0.05373268422396405\tbut:0.05232720105559394\tsaid:0.0438433839545282\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.48539178219401397\tin:0.11366830798796801\tand:0.09050880669839421\twith:0.07883882809502121\tfor:0.07019603557958116\tall:0.05022298502845721\tfrom:0.03611565859908357\tare:0.033793590559366427\tby:0.031264005258114104\t:0.01\n",
"two:0.1826055870384107\tfour:0.12690581682095378\tfive:0.12484659650009236\tthree:0.11893494039958098\tmany:0.11410972830366722\tten:0.0914491570533103\ttwenty:0.08923616700876635\tthirty:0.07201272671241321\tsix:0.06989928016280508\t:0.01\n",
"<s>:0.41794859059587275\t.:0.27141306838709606\tit.:0.0630857824152169\t-:0.0577428058731152\tthem.:0.04814298676759988\tsale.:0.03873344839778923\tof:0.03490046573483976\tfollows::0.030865480301427946\tW.:0.02716737152704229\t:0.01\n",
"the:0.26033142712954094\tand:0.239874959806757\tof:0.16408557327611512\tto:0.08884727619044282\ta:0.06378889501218281\tin:0.047543939209417525\tbe:0.045404355414281714\twas:0.042334429685261715\tor:0.037789144276000323\t:0.01\n",
"let:0.350516584687545\tto:0.22271882445901345\tLet:0.1671963565366832\tdo:0.04633007266213916\tfor:0.04546627187215059\tof:0.04405473326346125\twith:0.04333206805952396\tmade:0.04028442656014591\thave:0.03010066189933759\t:0.01\n",
"have:0.17431113488219324\thas:0.1553701251776937\thad:0.14131812333106056\tbe:0.1333158673287769\tand:0.10666529685020378\twas:0.0994127271709661\tbeen:0.07465803520178178\the:0.0534727687502774\tis:0.05147592130704664\t:0.01\n",
"and:0.22646225889984659\tto:0.17936631755545326\tof:0.16273196773080137\tthe:0.14441230832401447\tin:0.06671702552099561\tbe-:0.06590235747966393\tthat:0.05175613165960594\twas:0.04831311007520194\tfor:0.04433852275441699\t:0.01\n",
"to:0.7225274492691599\twill:0.06571415000862534\tand:0.050218398543540446\tof:0.03646323733589215\twould:0.02505052278559612\tnot:0.024141597655961466\tthe:0.02358599869326482\this:0.023064014238017638\tshall:0.019234631469942018\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.27895236938296064\tand:0.1815741959114548\tof:0.11700125654501145\tbe:0.08597406913736913\tis:0.0818804158574025\twas:0.07446559526799991\tto:0.06842188686370466\tin:0.054102785801128615\the:0.04762742523296838\t:0.01\n",
"and:0.3487292858233091\tarrived:0.12656405222265998\tWestern:0.09989662868809666\tthat:0.09491165467899382\tthe:0.0764046628237267\tsold:0.07493763805005543\theld:0.05699377841455062\t2:0.056193047510816115\tor:0.055369251787791424\t:0.01\n",
"the:0.4736562639390388\tand:0.18515907676286975\ta:0.07781981137035485\tin:0.05115738754216693\tThe:0.048530560309079894\tis:0.04117838408062129\twas:0.04093742420978901\tthat:0.03824712824000503\tof:0.03331396354607453\t:0.01\n",
"is:0.14901163144893126\tas:0.13158562981947514\twas:0.1284999825665622\tand:0.12500280372596032\table:0.1007793014722125\torder:0.09195179274050279\thave:0.09069709664264217\tunable:0.08628623068913867\thad:0.08618553089457504\t:0.01\n",
"and:0.4048405296965931\tto:0.10291092501191824\tit:0.0901741905516131\t<s>:0.0752098576282943\tup:0.06968084770889989\tthem:0.06807211080866968\t1:0.06275275976279422\t.:0.06146577986683246\tas:0.05489299896438506\t:0.01\n",
"the:0.25798786231697063\tand:0.22503799857075707\tof:0.21273128753233203\twith:0.08534930270434521\tby:0.07454305397046679\tor:0.04636508096671557\tin:0.034968715048241984\ttheir:0.0271548880550573\tfor:0.02586181083511341\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.27839849385178445\tof:0.17314187991777996\tand:0.1727875748258432\twas:0.07683132170174999\t.:0.0730018937796103\ta:0.0629255378317025\tto:0.05775520001511756\tbe:0.05450591876991799\tis:0.040652179306493966\t:0.01\n",
"and:0.2664064778134061\tor:0.1669259937013444\tof:0.1633092735774072\tin:0.09203357385304695\tabout:0.06924078491898883\thundred:0.06016336227891411\twithin:0.06004812561078173\tthe:0.05832992959432545\tto:0.053542478651785234\t:0.01\n",
"and:0.29741162641941254\tto:0.18385963671505207\tof:0.1104954464255743\tbe:0.08995640654913849\twas:0.07444163795661357\tis:0.06454440322839741\tor:0.06321719612942556\tnot:0.057415582771396426\tby:0.048658063804989646\t:0.01\n",
"of:0.4386473407810238\tto:0.12938287716294242\tin:0.08826162615491283\tfor:0.06745434945775954\tby:0.0631741958410881\tthat:0.060929772592688565\twith:0.05667190285515047\tand:0.048899740124340924\tfrom:0.036578195030093304\t:0.01\n",
"on:0.26093876614682426\tof:0.2313603853521912\tin:0.14104423578423317\tat:0.07420932258423689\tto:0.0728916043730267\tfrom:0.05853650693545567\tIn:0.05391587769799201\tOn:0.05320380330039513\tand:0.043899497825645034\t:0.01\n",
"the:0.4998690605580268\ta:0.13371898743509136\tto:0.07747333967160183\tand:0.07142022487130345\tthis:0.06839964681055162\tof:0.05758479860008791\tThe:0.035098961581355295\ttho:0.02381374531936882\tan:0.022621235152612898\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"and:0.3818892231731504\tof:0.1106798870630027\ta:0.10642845539960559\tto:0.09993121648226018\tthe:0.094635326850952\t<s>:0.05330798389283131\twho:0.04980625927683239\tin:0.049738852198031626\twas:0.04358279566333376\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.4208930175520062\tto:0.09518268739722718\tfor:0.08799122425150871\tall:0.08483632026445624\tand:0.08075580768189063\tthat:0.07922533371071121\tin:0.05931598062683129\tby:0.05779702796556192\twith:0.024002600549806633\t:0.01\n",
"the:0.3547872924294413\tand:0.14055984207026018\tof:0.13417405306069213\tin:0.06872272570797316\tto:0.06854283350334517\tbe:0.059450659167203886\tfor:0.05787337280722518\ttheir:0.05472105072209207\this:0.0511681705317669\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"a:0.5914565216646035\tthe:0.2550117912235409\tone:0.04137812694703111\tA:0.021815169079276407\tThe:0.01972913427037574\this:0.01838326395072586\tto:0.015179072612935898\tthis:0.014498943373558379\ttho:0.012547976877952172\t:0.01\n",
"and:0.28081826524842834\trecorded:0.11992459715138465\tis:0.11459601146648143\tthat:0.10719611749566711\twas:0.10127129399640517\tare:0.086604104023806\tdistributed:0.0680936502147143\tbut:0.05624580094236254\tdivided:0.05525015946075051\t:0.01\n",
"in:0.2650179024097676\tof:0.17356860007076075\tand:0.15073751634371893\tto:0.12320111984592574\tfor:0.08137240182844492\tIn:0.07580927708538578\tthat:0.04508926303704378\tthe:0.04330695429386945\tafter:0.03189696508508306\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"the:0.2897383324568781\tof:0.17113076544121678\ta:0.10182560711526899\tto:0.08415539991493161\tin:0.07588252600215932\tany:0.07161219763621446\tfor:0.06930496705250555\tor:0.06569006370210649\tand:0.06066014067871867\t:0.01\n",
"the:0.5644686415893421\tand:0.10655165022978806\tof:0.07017298416202941\tin:0.054155813857814844\ta:0.05198142530837699\tThe:0.04716790715823825\ttho:0.039056377841624544\ton:0.028850642019864703\tthat:0.02759455783292099\t:0.01\n",
"out:0.1949328395511101\tup:0.16327434566927937\thim:0.12219759848093649\tback:0.10782077504693253\tdown:0.09423581312769463\tstep:0.08226801016029714\tmade:0.07548262282304412\twas:0.07519083918212467\tthem:0.0745971559585809\t:0.01\n",
"that:0.3247851203756407\tand:0.1709604500477219\twhich:0.12345040099260383\tas:0.09280546875347553\tbut:0.06958564316179967\tif:0.06389571977089714\twhen:0.051883962259619804\twhat:0.04673959917634413\tfor:0.04589363546189728\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.537741835985264\tof:0.2003617436592899\tin:0.07569903307219267\tand:0.03710848225416974\tThe:0.03609763177488927\tfor:0.03513298658468653\ttho:0.02492050195064128\this:0.022451392932775663\tall:0.020486391786090897\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"of:0.23196931822841096\tto:0.1414409652969743\tfor:0.13275300214239147\tin:0.13198872710179554\tat:0.1159946811630828\tand:0.08415516272805523\ton:0.06320900735398632\tIn:0.04609012142899505\tby:0.042399014556308345\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"of:0.4350691121933086\tin:0.17590693507051808\tto:0.10103820455278756\tIn:0.05410244356178705\tthat:0.04894784282719977\tfor:0.04796761694587244\tby:0.04368040144683445\tand:0.04226712549192657\ton:0.0410203179097653\t:0.01\n",
"and:0.43298108244982425\twas:0.09985491030549938\tis:0.08880700002377488\tnot:0.08336851227784033\tare:0.07318423286141337\tor:0.07057673131679165\tbe:0.04992597792635811\tof:0.04594162752348318\tthat:0.0453599253150148\t:0.01\n",
"will:0.2918225354876629\tto:0.2421237344986287\twould:0.1046364399198161\tand:0.07649267416393876\tnot:0.06760052627578993\tshall:0.06646835525038922\tmay:0.05636557799066668\ta:0.04575407365197527\tmust:0.038736082761132495\t:0.01\n",
"one:0.24826286203849662\tday:0.11898601728843455\tman:0.11839115094119834\ttwo:0.11607430176347815\tlot:0.08987911707858826\ton:0.08518404274235834\towner:0.07231162318235562\taction:0.07055725244364161\tmen:0.0703536325214485\t:0.01\n",
"a:0.5095111952340592\tthe:0.24120505304496256\this:0.08453597349064884\tour:0.03121839641330295\tlarge:0.029681329032107504\tThe:0.024834894311591436\tgreat:0.023946537514192213\ttheir:0.023118696266266708\ther:0.021947924692868485\t:0.01\n",
"the:0.2423620207365299\tof:0.20536500222371457\tand:0.166871077045992\tin:0.1176496937967874\ta:0.06877339806465797\twas:0.060401645356168765\tis:0.04771002123545104\tare:0.04130335500381535\tbe:0.039563786536882965\t:0.01\n",
".:0.21501096008180426\tMr.:0.12243234666975152\tW.:0.11819241674043741\tA.:0.103940042188268\tH.:0.0992737285981487\tMrs.:0.09662911930875583\tJ.:0.0864929844418221\tC.:0.07660685443402843\tDr.:0.07142154753698392\t:0.01\n",
"may:0.27363711486238657\tto:0.22042444070840117\twill:0.12024769085177774\twould:0.11084350691998862\tshall:0.10036354842981825\tshould:0.07782078445448105\tnot:0.03159855639494236\tmust:0.0302193594672214\tmight:0.02484499791098276\t:0.01\n",
"the:0.35087108279806445\ttwo:0.16495353215752145\tseveral:0.1132933005970348\tother:0.10400056276250719\tvarious:0.06724719018293814\tthree:0.06330296537712005\tof:0.054114260289272124\ttheir:0.03845357123839264\trespective:0.03376353459714918\t:0.01\n",
"to:0.4616763237619666\tnot:0.10567841071371134\tand:0.0937822226872458\tI:0.08969064244161044\twill:0.06034696336000036\tthey:0.05977599199844439\twe:0.056770881615189964\twould:0.0356287082018139\twho:0.026649855220017327\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.19308172605123902\tto:0.14252918169900639\tno:0.13158675402633624\ttake:0.12016051893483448\ttook:0.09216526519451101\tand:0.08897594962916769\tnot:0.07922203129460016\ttaking:0.07345133172072439\tfor:0.06882724144958068\t:0.01\n",
"part:0.37906373739040805\tsurvey:0.15730838262551153\tholder:0.12540062737925595\tpayment:0.10041604916230559\tone:0.07073501015131611\tdate:0.052729413262178275\tplat:0.04292238113133336\tconviction:0.03245856620345897\tsale:0.028965832694232085\t:0.01\n",
"the:0.2284794375500071\tand:0.1974561800763624\t<s>:0.13367773665894964\tthat:0.10706438024028705\tof:0.10322535169124632\tto:0.07965113962753173\tThe:0.062022402331113564\tit.:0.045369273278729576\twhich:0.03305409854577267\t:0.01\n",
"the:0.26854627281045024\tof:0.17708706737476781\tand:0.14174765377735177\tto:0.12960930879874485\ta:0.09521282593305583\tThe:0.05226394407577874\tin:0.043089523809815025\this:0.041601673623151494\tfor:0.0408417297968843\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"and:0.3079069995791492\tof:0.15703359043111892\tthe:0.09695346957938135\tbe:0.08008775556196854\ta:0.07801796281644585\tin:0.06960382693033287\tis:0.06885254681667448\twas:0.06803906530008293\the:0.0635047829848459\t:0.01\n",
"and:0.41754400016008275\tbut:0.14895499642259144\tthat:0.13960424227266444\ttime:0.09215848983461562\thim:0.04863495259663283\tday:0.04575944027695024\tBut:0.04337575529251119\tago,:0.028663469063633904\tor:0.025304654080317537\t:0.01\n",
"part:0.21854526426338958\tone:0.1652884820397273\tand:0.11405805422343263\tout:0.10912272448602958\tsome:0.10404106574340154\tall:0.08364994580865806\tthat:0.06838801643934514\tportion:0.0660026389357515\tmembers:0.06090380806026471\t:0.01\n",
"the:0.6262269164487603\ta:0.09713380511794183\tof:0.08438907482449082\tand:0.03607268682347628\ttho:0.03583774493896862\tThe:0.034196690836996946\this:0.030070214277537106\tto:0.026921022322828638\tby:0.019151844408999575\t:0.01\n",
"that:0.24181700519297777\tand:0.21559357952928562\twhich:0.11556053894610711\tas:0.10941783645145527\twhen:0.09150290451756331\tbut:0.07728992127364734\tto:0.05083803155922771\twill:0.04495842337172802\tif:0.04302175915800782\t:0.01\n",
"the:0.3774952610716623\tan:0.1238994049621466\ta:0.0953158875673044\this:0.0772759729740486\tThe:0.07184698053992358\ttheir:0.07115049530080882\tto:0.07099993443641098\tand:0.06585219656994495\tits:0.036163866577749705\t:0.01\n",
"of:0.30543290585071325\tto:0.15906760295510997\tin:0.1290291975828955\tand:0.09997258875366775\tthat:0.07006636951133881\ton:0.06848120619114167\tby:0.06277378821945774\twith:0.04958747867206142\tfrom:0.04558886226361388\t:0.01\n",
"the:0.21989676768100663\tof:0.15087642019255582\tand:0.13946771304087177\ta:0.12340322864126257\tto:0.10508493964911432\tin:0.07488170861247744\tby:0.06562294210061673\tat:0.05546145076890823\tfor:0.05530482931318662\t:0.01\n",
"his:0.35128219240864905\ther:0.27624027144810914\tmy:0.08944356445350475\tthe:0.05893308842252597\ta:0.051584384492485286\tand:0.05034175777937734\tour:0.041301027823788784\ttheir:0.03855643077860152\tHis:0.03231728239295818\t:0.01\n",
"the:0.3205329490869566\tof:0.18193818702872377\tand:0.13984728938256913\tto:0.08968792499603137\ta:0.06341412065310247\tbe:0.050208540011436924\tin:0.049207747947928517\tfor:0.04786693797355063\twas:0.04729630291970068\t:0.01\n",
"of:0.29107498481490784\tto:0.129781259005661\tand:0.126384391457205\twith:0.08446656368762467\tis:0.07963496427562441\tin:0.0791559913321907\tthat:0.07612206044533582\tfor:0.06630304250853733\tby:0.05707674247291328\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"the:0.3547872924294413\tand:0.14055984207026018\tof:0.13417405306069213\tin:0.06872272570797316\tto:0.06854283350334517\tbe:0.059450659167203886\tfor:0.05787337280722518\ttheir:0.05472105072209207\this:0.0511681705317669\t:0.01\n",
"at:0.4260995246329847\tto:0.27298643147087687\tof:0.07266550173374939\tfor:0.04557106680494588\tfrom:0.03950395977774595\tin:0.03627541018190988\tand:0.03360767875375125\tas:0.03352173117732201\tsuch:0.02976869546671414\t:0.01\n",
"the:0.7045656590991394\tand:0.07167121172586385\tof:0.06881909137831525\ttho:0.04475840886044822\tThe:0.030581440682147746\ta:0.022144256123046907\ttbe:0.01886143960325649\tour:0.016260167875014997\tan:0.012338324652767185\t:0.01\n",
"in:0.24333994743612922\tof:0.18871067140801695\tthe:0.14254258973892459\tand:0.10760876324558527\tfor:0.09174081455919122\ta:0.06366595919272895\tto:0.061841865908333744\tIn:0.05733705309984939\twas:0.03321233541124056\t:0.01\n",
"the:0.2529199342654884\tof:0.22614730499998043\tin:0.21525723520323806\tto:0.07644665803712172\tIn:0.054633659433317494\tfrom:0.051691489256650854\tand:0.03925713263725379\tThe:0.03842110928588035\tfor:0.03522547688106888\t:0.01\n",
"arrived:0.24171150011422152\tand:0.22602697870398278\theld:0.10965961187587668\twas:0.09028080626775076\tBeginning:0.07848246292098217\tlook:0.06940673969991693\tinterest:0.0653602665052793\tarriving:0.056037898603551406\tplace:0.053033735308438294\t:0.01\n",
"a:0.5102156358177581\tthe:0.3072290483941074\tby:0.04598792837641376\tThe:0.03344105495856335\tA:0.022528390035489166\tany:0.019099266450119754\tsaid:0.0190090180930764\ttho:0.016339737776323325\tevery:0.016149920098148786\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.24089296609221136\tthe:0.21084807757115478\ta:0.1542088169949179\tand:0.10010645380725043\tto:0.08897600646377542\tin:0.07297974000448458\tfor:0.050432844635103426\tin-:0.037982046881915366\tfrom:0.03357304754918673\t:0.01\n",
"of:0.32873067891205016\tin:0.1779108341476497\tto:0.1173539574739597\tand:0.07290950567364037\twith:0.06477586893074785\tthat:0.06448973785599761\tby:0.06085657100028396\tfor:0.0519501590604041\ton:0.05102268694526643\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"the:0.4122351499127945\ta:0.165456469985852\tat:0.11547034985298867\tof:0.09103329063818313\tto:0.062135129265690675\tin:0.05058682222326884\tand:0.03760310300235091\tThe:0.02989590877339457\tfrom:0.025583776345476796\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"that:0.38314639234260467\twhen:0.13078830405217987\tand:0.10494735551057087\twhich:0.08901523310559767\tas:0.07679054931488127\tif:0.05540889644007941\twhere:0.05373268422396405\tbut:0.05232720105559394\tsaid:0.0438433839545282\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"just:0.16560397216590092\tand:0.15632349367944437\tis:0.12599640747135732\tsuch:0.1016484650017462\twell:0.09791772522174456\tfar:0.09638031355853464\tit:0.09579489107342148\tare:0.07859447935027129\tnot:0.07174025247757924\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"that:0.23655547065355595\tand:0.19075007468493219\tas:0.16881644873376822\twhich:0.09499665440284884\twhen:0.09039607863854103\tbut:0.08854952612087258\tif:0.055354413685533094\twhere:0.04097071563348132\twhat:0.0236106174464669\t:0.01\n",
"and:0.18355764930615776\tis:0.12199152939682234\table:0.12180784831857648\thim:0.10952034909566916\tas:0.10114535296467003\ttime:0.09871738198555695\twas:0.08648935771817112\tenough:0.08574432039063425\tnot:0.0810262108237418\t:0.01\n",
"the:0.5148747970772126\tand:0.11839298321902149\tof:0.1027804199509996\ta:0.0881047403658123\this:0.03643811733750155\tThe:0.0350351508375256\tin:0.032952539614378246\twas:0.03253235245703435\ttho:0.02888889914051421\t:0.01\n",
"put:0.2942490003488925\tmade:0.11295746192261914\ttaken:0.09921869298984244\tit:0.09396455248985647\tset:0.08805328796937878\tcame:0.0846880057958192\tlooked:0.07627125255647947\tbrought:0.07043141383064243\tand:0.07016633209646952\t:0.01\n",
"that:0.27984173992435063\tand:0.18363260817091565\twhich:0.12970655320008515\tas:0.1111347060584976\twhen:0.08033405268408184\tbut:0.07818675584806872\tif:0.05545024354886722\twhere:0.04216071204144962\tbecause:0.029552628523683514\t:0.01\n",
"of:0.3731904146919867\tand:0.13668615788237018\tin:0.11397361272651074\twith:0.08532774602709545\tto:0.07946497465778378\tby:0.06803264766522099\tfrom:0.05629182704695034\tthat:0.040776141882574016\ton:0.03625647741950765\t:0.01\n",
"of:0.28857986193394536\tthe:0.16113268919067475\tto:0.125638865597436\tand:0.10394037205576805\ta:0.08881353919503547\t<s>:0.05942501813304352\t.:0.058805055429127756\this:0.05837022257181932\tor:0.045294375893149684\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"and:0.21170656366811744\tthe:0.2008430264290559\tof:0.1346717093654248\tor:0.08998774835105412\tbe:0.08658065863290873\tin:0.0782409183259601\tto:0.0756488904246119\tre-:0.06293870181499797\tare:0.04938178298786903\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"the:0.44294990346541174\ta:0.13052226509020115\tand:0.11480613739159479\tof:0.07777254387606373\tMr.:0.0645985482430069\tThe:0.05918184505912503\tto:0.039096713786036165\ttho:0.033294892045835245\tin:0.02777715104272507\t:0.01\n",
"and:0.28975067776000624\thim:0.12109828244237705\tthat:0.10823557848281046\ttime:0.08483096526564791\tthem:0.08261303954442396\t;:0.08137119110958503\tit:0.07836519067201873\tout:0.07524234257435632\tup:0.06849273214877423\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.36237699085490277\tand:0.1584298618362114\tare:0.1021402174342317\tis:0.08583334846083972\tin:0.07783911308007345\tthe:0.05858709598298881\tby:0.04963069438025839\tnow:0.048775650303785716\tfor:0.04638702766670799\t:0.01\n",
"we:0.20757094094880896\tI:0.1689226345490894\tit:0.11435597292913063\tthey:0.10474182841168436\the:0.09683988593906413\tand:0.09426244802225472\twho:0.09291452721652817\twhich:0.07079130601729398\tyou:0.0396004559661457\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"of:0.4476274179224025\tin:0.11801965326603299\tto:0.11089159219906007\tthe:0.08455982172625014\tthat:0.06827437508575156\tfor:0.050330309352505535\tand:0.04863330290936159\tby:0.033154905128097704\ton:0.028508622410537938\t:0.01\n",
"the:0.28270657378132397\tin:0.1676500205580558\tof:0.1651974598505166\ta:0.09537877447462492\ttheir:0.07588856692554562\this:0.06658552824877442\tand:0.052032475518667666\tfor:0.043703965777485934\tIn:0.040856634865005154\t:0.01\n",
"and:0.2627004757321594\tso:0.14618951254422724\tfact:0.10517722889403827\tsaid:0.10283583111640612\tall:0.08134018284050132\tsay:0.08106053719115745\tof:0.0786944962295119\tis:0.0742746058325398\tknow:0.05772712961945848\t:0.01\n",
"it:0.23523516688340418\the:0.19493806894382887\tthat:0.10923818018529863\tI:0.09755327272812414\tIt:0.09535578230345396\tand:0.08307608366034529\twhich:0.06291590727240598\tthey:0.061203398618126195\tshe:0.050484139405012646\t:0.01\n",
"and:0.34099135133065334\tas:0.15247106953775127\twhen:0.12188423250068864\tthat:0.09924578955050192\twhich:0.08762108472466232\tto:0.06169827705519005\tif:0.046847726388440016\tbut:0.04451325265107585\tbefore:0.03472721626103654\t:0.01\n",
"thence:0.21715281014009255\tand:0.20568670619952267\tparallel:0.1430557376501617\taccordance:0.09496683049019687\tcovered:0.08931439209124287\tangles:0.06919052505615907\tline:0.0640654886136572\tfiled:0.06297568555125932\tconnection:0.04359182420770775\t:0.01\n",
"of:0.3051882933875616\tto:0.14869572830046413\tand:0.10836115253695223\twith:0.09614259097119641\tin:0.09474992687286073\tthat:0.06901300199057643\ton:0.06529426242542732\tfor:0.05171420415441019\tas:0.05084083936055085\t:0.01\n",
"and:0.23109764801813898\t<s>:0.2267677513535834\tit.:0.12893551223630287\tthat:0.11108100278148268\tthem.:0.09933677447350732\ttime.:0.05138942494321591\tas:0.051135334422371434\t?:0.049248195902332315\tcountry.:0.04100835586906512\t:0.01\n",
"the:0.22053256332557677\tand:0.1992270807006474\tof:0.18507025975968022\tto:0.10122273242058626\twas:0.07970885839373194\t.:0.06199378201612255\tMrs.:0.05428783510135329\t<s>:0.04513908840661388\twere:0.04281779987568764\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"he:0.2203114717409328\tI:0.13332085862353324\twho:0.11597523954148758\tthat:0.10317672403332845\twhich:0.10314830214973107\tHe:0.09764872525020823\tit:0.08336971225519456\tand:0.07573791308604176\tshe:0.05731105331954247\t:0.01\n",
"the:0.22669854374274823\ta:0.16065144283152755\tand:0.15682055975370968\tof:0.14859189720612156\tto:0.10768267476423311\tin:0.05931814572121813\tbe:0.05857337530993183\twas:0.03748628502926306\tis:0.034177075641246855\t:0.01\n",
"in:0.16001480001224747\ttime:0.134293122324022\tmen:0.12364702681928638\tlife:0.10589270687463354\tman:0.10542813110372079\tstrength:0.10296635100575803\tout:0.09057303129861076\tcity:0.08538673791766892\tright:0.08179809264405213\t:0.01\n",
"in:0.26114896666505094\tof:0.2106735747662108\tto:0.13647377165127736\twith:0.07843224380579754\tfrom:0.07127929825705684\tfor:0.067472205664255\ton:0.0563439492735738\tand:0.055627581584339864\tIn:0.0525484083324378\t:0.01\n",
"of:0.2654257056900848\tto:0.11783053526031911\ton:0.11517204739331985\tby:0.0975387635932269\tis:0.0934069380369295\tand:0.08491985804523966\tin:0.07817766309889891\tfor:0.07287516870112425\tthat:0.06465332018085714\t:0.01\n",
"it:0.21126069775507123\tIt:0.1831895455929303\tthere:0.15243081931439575\tThis:0.12549307138489024\twhich:0.08534049199213581\tthat:0.07422174987419852\tThere:0.07000327034653113\tthis:0.04763478321203853\tand:0.04042557052780836\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"the:0.2742792874027179\tof:0.1927038208666229\tand:0.13178418514435533\tto:0.12574694036492268\tin:0.06569727832729276\ta:0.06552783895488037\tbe:0.05457765110028662\tfor:0.04048153641103007\this:0.03920146142789139\t:0.01\n",
"the:0.38016907608406997\ta:0.21729839759408884\tand:0.08093786070469655\telectric:0.07401239497327187\tof:0.05739507005233107\tthat:0.05423772678979075\tThe:0.04827137949742727\tthis:0.046856295188312753\tno:0.030821799116010837\t:0.01\n",
"the:0.4339416998232574\tin:0.17961930567045353\tof:0.13283670847538817\tfor:0.05671496728713773\tIn:0.04463030260079852\tmence:0.043630825078154724\tor:0.03656395077739333\tThe:0.03251302286588195\tand:0.029549217421534605\t:0.01\n",
"the:0.3853602441954772\tand:0.144238214582872\tof:0.10966263127273272\ta:0.10959681188916365\tin:0.06356254473512217\tare:0.05179362788677154\tfrom:0.047349706445683586\tis:0.039611403488752965\tfor:0.038824815503424086\t:0.01\n",
"that:0.2772682981310384\t<s>:0.18576421478779764\tand:0.13964734518616667\tit.:0.08003256237265899\tbut:0.07563120654630587\tas:0.06870297736757497\twhen:0.058463559699572884\twhich:0.053127580463076064\thim.:0.05136225544580851\t:0.01\n",
"is:0.21302937844984368\twas:0.19620486783766342\tbe:0.151718743401368\tare:0.11389184569853913\tand:0.08353602658005742\tbeen:0.08043482547252788\tnot:0.07710315125649289\twere:0.04553925789255123\tIs:0.02854190341095628\t:0.01\n",
"well:0.26242384886617703\tand:0.12163427647740171\tis:0.11872930730988644\tknown:0.10330606167026618\twas:0.09622282023626828\tfar:0.08198522906601982\tbe:0.0730403754080065\tjust:0.06678326020612019\tsuch:0.06587482075985404\t:0.01\n",
"the:0.2949361512864601\tof:0.2675302388363527\tand:0.11604195146507087\traw:0.0847688868042033\tall:0.0717664813024662\tor:0.06526260845100819\tfor:0.0362256558273774\tsuch:0.028432623958422443\tmany:0.025035402068638777\t:0.01\n",
"to:0.4902954235962284\tof:0.11355589360800034\tat:0.09345633126863115\twith:0.07240009470071901\tupon:0.048035322766260796\tlet:0.0457428531409469\tfor:0.04515915036072223\ton:0.043449974463968526\tfrom:0.03790495609452271\t:0.01\n",
"the:0.3052473642317212\ta:0.22181452466962606\tof:0.17146623118845103\tin:0.08428740301651043\ttheir:0.04921699943850194\tthis:0.047574035562823025\tand:0.04446801010633146\tto:0.035107396321215255\this:0.03081803546481968\t:0.01\n",
"he:0.2868147075086204\tit:0.1395069695900371\tthey:0.11779845224716609\twho:0.09421079062933684\twhich:0.0828167096918828\tIt:0.07220124664163045\tshe:0.07111902822752537\tI:0.07081388708371117\tthat:0.05471820838008978\t:0.01\n",
"and:0.20752712108598498\tto:0.1522915347038205\tof:0.1502425564184337\tin:0.11737935976604058\tbe:0.09333222850501686\tthe:0.08416089648102956\twas:0.08414806655334497\tis:0.054056504304432276\the:0.04686173218189662\t:0.01\n",
"of:0.31662382482780055\tthe:0.18822284322808477\tin:0.11578788137479393\tand:0.09407676728996123\tthat:0.07488917283524958\tto:0.06204412499286629\tThe:0.052928240553401264\tfor:0.045864762222283736\tMr.:0.03956238267555868\t:0.01\n",
"and:0.32103309027613364\tI:0.1591678739958363\tto:0.1133648049818269\tthey:0.09481058073848328\twe:0.07981438632002896\tthe:0.07729302212654894\twho:0.05524480487573587\tthat:0.046271997967921634\the:0.042999438717484455\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.2603384109054656\ta:0.17631396693754883\tto:0.16248729555323216\tand:0.12297424874305866\tof:0.1007705615174678\tbe:0.04543838695319249\twas:0.0420999085814214\tfor:0.04201326408974991\tor:0.037563956718863166\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
";:0.3088621443053699\thim,:0.10974679128936933\tis:0.10004626821138818\tgiven,:0.09459375394598674\tit,:0.09217300704881372\t,:0.07894274523906002\tthem,:0.07149819939040467\twas:0.06712084807818237\ttime,:0.06701624249142514\t:0.01\n",
"of:0.4798591533206258\tin:0.16688349577450626\tthe:0.1106103869814393\tby:0.07175495587769815\tto:0.04593553036454698\talong:0.03828895953343324\ton:0.03548624510691198\tIn:0.024305945789374943\twith:0.016875327251463203\t:0.01\n",
"a:0.5457636047808748\tthe:0.14999129555649293\tvery:0.0671403932564\tbut:0.053047814505814056\tof:0.044860033648797634\tand:0.03921229272247331\tA:0.033676518519295234\tis:0.03161899068593396\twith:0.024689056323918088\t:0.01\n",
"the:0.7743081662301693\tThe:0.043895557327205195\ttho:0.0398144498390811\tof:0.03635505514867179\ta:0.03017284482066668\tgeneral:0.021391177996805955\tand:0.01725616322924522\tin:0.013953066447465759\ttbe:0.012853518960688957\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3794032061534355\ta:0.32516777173533057\tof:0.07706836878165409\tand:0.041213621088021256\tThe:0.04009654064575177\tvery:0.037920650038828364\ttho:0.0361413739598399\this:0.027322917610294376\tin:0.025665549986844078\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.25296756508842694\tto:0.2154020023337419\tin:0.14937112723645737\tand:0.08007959789935276\twith:0.06727550951784922\tfor:0.06063935223675631\tat:0.0578196829521757\treserves:0.056755137889726436\thave:0.04969002484551347\t:0.01\n",
"to:0.26347294911523633\tthe:0.20207943492956468\tof:0.15545869450418856\tand:0.10372197011202519\tnot:0.09492145302753964\tfor:0.04905066155861363\tor:0.048126857297108465\tat:0.036594273675506474\tin:0.03657370578021699\t:0.01\n",
"the:0.36113814607876255\ta:0.16062133708668042\tof:0.13766549112146684\tlode:0.11112972515804857\tby:0.05151856856606199\tfor:0.05115365939894233\tand:0.042093125954018915\tthis:0.037770465586368526\tthat:0.036909481049649875\t:0.01\n",
"and:0.291096015366073\tit:0.12434885162805882\tthat:0.12015109726859598\tthem:0.09913460526338652\tfound:0.0805200425555801\tbut:0.0780912922953901\tis:0.07306894320441092\tor:0.06429978511056514\tnot:0.05928936730793949\t:0.01\n",
"of:0.32263096040955946\tin:0.17917491520159243\tand:0.09809122982336861\tto:0.0950646360915529\twith:0.07691729424245837\tfor:0.0711531608324362\tby:0.05063411041779492\tall:0.050355177771641675\tfrom:0.04597851520959545\t:0.01\n",
"as:0.13670780440079186\table:0.12114761842857802\tis:0.12061925147248433\tand:0.11557745869156875\torder:0.10613101118600995\tenough:0.09916386986848207\tright:0.0985746132379881\tpower:0.09687953837910758\tnecessary:0.09519883433498934\t:0.01\n",
"and:0.2625710630820407\tlooked:0.12287531499455905\tdepend:0.12123282867877608\tcalled:0.11986255426042441\tlook:0.09159892763670179\tdue:0.08045832343966322\tdown:0.06806979470247577\tmade:0.062154025540923995\timposed:0.06117716766443501\t:0.01\n",
"and:0.30270925673550475\tfact:0.16943001944517186\tso:0.11358010044095931\tis:0.11266763121327539\tknow:0.07568042407507537\tbelieve:0.06812016133190102\tsay:0.05750618905495806\twas:0.047547212930166706\tfound:0.04275900477298741\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.24938217117942987\tor:0.2209031541070242\tand:0.19046745555731207\tof:0.09735789202740994\tfor:0.07665162961348401\tin:0.07599068788941207\tto:0.02747887384279491\tfrom:0.026363195389831864\twith:0.025404940393300893\t:0.01\n",
"of:0.3308442922213524\tto:0.1432471988342217\tin:0.131701708736979\twith:0.09441568321518254\ton:0.06848424163509252\tand:0.061113441995290306\tfor:0.05843564615357509\tby:0.05382836431950813\tfrom:0.047929422888798305\t:0.01\n",
"of:0.37523527315584804\tto:0.1256708478872273\tthe:0.12488893436605542\tand:0.0873240514615848\tin:0.08036907591259639\ta:0.07913646887372239\tfor:0.04275886421509953\twith:0.04004708304180838\tthat:0.03456940108605776\t:0.01\n",
"to:0.2861574676955082\twill:0.2655588868608264\twould:0.11223723317407129\tmay:0.08024253934170913\tshould:0.06780843619328426\tshall:0.05897633158522413\tnot:0.05279077038395291\tmust:0.034943802635305735\tcan:0.03128453213011797\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.405535461608438\tall:0.11288402206034984\tof:0.10062224278767763\tto:0.09347286989630613\ttime:0.0603652141040139\tbut:0.058366087693992263\tfor:0.05624089623797206\tfact:0.05352809601988258\tthings:0.04898510959136763\t:0.01\n",
"and:0.2821737289069189\tto:0.19413284774131814\tof:0.1589130824316352\tthe:0.10041139067974489\tis:0.05771364487070764\tbe:0.05225975411677051\twas:0.050314252510845564\tfor:0.05025225097596531\twhich:0.04382904776609387\t:0.01\n",
"they:0.25102373835046404\twho:0.188496223547418\twe:0.1487930506326889\tyou:0.08928723112864827\tand:0.0817190547478325\tWe:0.07690789173464697\tThey:0.06121818588083592\twhich:0.04888956657191334\tmen:0.043665057405552064\t:0.01\n",
"the:0.6008046886248313\tThe:0.12367994392542807\tin:0.07224495154373729\ta:0.05682231892631553\tIn:0.038833593795691665\tof:0.030370142715160642\tthis:0.029994437904648123\ttho:0.024453532788742138\tthat:0.012796389775445153\t:0.01\n",
"and:0.30813827370948377\tsaid:0.1730589697868629\tfact:0.11175374042727586\tstated:0.09076470050424858\tso:0.07733344451894186\thim:0.06626454011197735\tknow:0.06377304208821113\tsay:0.049787186448953615\tis:0.04912610240404502\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.37129731442134983\tto:0.1324126712637979\tthat:0.10112223076570374\tand:0.09834668026291528\tby:0.07114256271600373\tin:0.05987988915222825\twith:0.05977196669929735\tfrom:0.04922706634406045\tfor:0.04679961837464338\t:0.01\n",
"and:0.15056516788676824\tit:0.1349800784417583\tthem:0.1200225860582197\ttime:0.10917031156541862\tmen:0.10436258206638722\tday:0.10358945783393912\thim:0.09412982262057698\twell:0.08780029434140064\tmade:0.0853796991855312\t:0.01\n",
"and:0.3510163140970201\tto:0.3075507819429898\tof:0.09827430757748029\tthe:0.0638847344771577\twho:0.04034412311986203\tor:0.03705510190539422\tnot:0.03392838208765226\tby:0.029241354056011172\the:0.028704900736432552\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"to:0.26347294911523633\tthe:0.20207943492956468\tof:0.15545869450418856\tand:0.10372197011202519\tnot:0.09492145302753964\tfor:0.04905066155861363\tor:0.048126857297108465\tat:0.036594273675506474\tin:0.03657370578021699\t:0.01\n",
"<s>:0.26712271516993064\tthem.:0.2602809334268672\tit.:0.12699636690605656\tmen.:0.06530687590352574\thim.:0.059802643236685944\ttime.:0.05758899839933028\tday.:0.05722853377878201\tpeople.:0.048501160001085196\tcity.:0.047171773177736354\t:0.01\n",
"the:0.2877312378235051\tof:0.1971573615545641\tand:0.10661576361482324\tto:0.0936888670034087\tat:0.07931048704451911\tin:0.07888333596588125\ta:0.06753769941865755\tfor:0.04652955750868999\tby:0.032545690065950865\t:0.01\n",
"they:0.16075476950393633\tit:0.1550230902383805\tI:0.10991514929663299\the:0.10634399749918766\tyou:0.10270584755573017\tIt:0.10006021853717872\twhich:0.0966256987942175\tand:0.08611831152310326\twe:0.0724529170516329\t:0.01\n",
"<s>:0.5409122111554119\tit.:0.10121584157751358\tthem.:0.0777264574567862\t.:0.05005519485422217\ttime.:0.05004665472428021\tcountry.:0.04597632644660685\tday.:0.045786469346973675\thim.:0.04394367485091126\tyear.:0.03433716958729417\t:0.01\n",
"when:0.18519335098638806\tthat:0.1748314862719662\tand:0.16730540515396547\tas:0.13887390525645854\twhich:0.12653401750629417\tto:0.06876468100539428\tbut:0.04438042102625284\twhere:0.04233881873228339\twill:0.04177791406099722\t:0.01\n",
"made:0.19607419673722556\tand:0.1871396870032937\towned:0.10195412092350242\tor:0.09016056716737457\tdone:0.08855716521282841\taccompanied:0.08436467490851161\tfollowed:0.08395510263548327\tthat:0.08371249563591913\tpaid:0.07408198977586128\t:0.01\n",
"of:0.3257066374160444\tin:0.1359657544071672\tto:0.12722805117474612\tfor:0.08129272555234013\twith:0.08050815510957836\ton:0.07366887157583596\tby:0.06095611856579494\tand:0.05972281016572156\tthat:0.044950876032771314\t:0.01\n",
"the:0.48817405077604786\ta:0.18134054927289323\tof:0.08760831762148812\tand:0.06743304679188467\tThe:0.051450735282708375\tin:0.035015901004232075\ttho:0.028457686875865973\tan:0.028198800926829276\tor:0.022320911448050516\t:0.01\n",
"well:0.18763885440258532\tknown:0.1848432953380303\tsuch:0.1312109444336379\tand:0.11650300559404793\tfar:0.10672026401295964\tsoon:0.07431929105806052\tis:0.06769501413550778\tjust:0.06709023500275701\twas:0.053979096022413534\t:0.01\n",
"they:0.21108923258683993\twho:0.15874565960272466\twe:0.15003923143462886\tand:0.1301187468685417\twhich:0.10704549424532735\tThey:0.06880085275077123\tthat:0.06316720459141335\tWe:0.06009272733688047\tyou:0.04090085058287249\t:0.01\n",
"part:0.3779764184393855\tsurvey:0.16160026767866661\tconviction:0.11305602921262439\tone:0.10205644063682141\tpayment:0.07428468814218986\tholder:0.057490326337698024\teither:0.038622916739222565\tsale:0.03329778966121728\tacres:0.0316151231521744\t:0.01\n",
"he:0.2811738631765829\tI:0.18015313827118676\tthey:0.1070917557432296\twho:0.08509059184066416\tand:0.07405154992821492\tHe:0.07159762556023644\tit:0.06704422993490465\tshe:0.06615903017682831\twe:0.057638215368152244\t:0.01\n",
"of:0.20974557394195853\tto:0.18205102602847098\tin:0.15989423732789668\tfor:0.11971315407750222\twith:0.09265520095795239\tat:0.06261860791404629\tand:0.06066164209226185\tfrom:0.05313612683665475\tby:0.04952443082325617\t:0.01\n",
"of:0.22795273482464828\tas:0.2026555896101452\tthat:0.1050934932731888\tis:0.1035049747081782\tand:0.10201627011175128\tfor:0.07693084287508017\tto:0.06814630313600908\tby:0.05302275383454841\twas:0.050677037626450615\t:0.01\n",
"the:0.3310968554128374\tof:0.2491212212976897\ttwo:0.08576179820168443\tand:0.07756666401659636\tthese:0.06046979194391169\tother:0.05870751790204612\tall:0.05054115586318935\this:0.040837924986600944\tboth:0.03589707037544395\t:0.01\n",
"the:0.7010960682547407\this:0.04803689760505243\tto:0.047031768852921076\ta:0.0358421009592469\ttheir:0.033743604122350286\ttho:0.02752093198189463\tThe:0.026941413888578014\tmy:0.024543528620527937\tan:0.02449451115985219\tits:0.02074917455483584\t:0.01\n",
"the:0.28911723843710957\ta:0.2184852333637237\tof:0.11940189048135416\tand:0.11007854147907487\tto:0.09843975207491194\tin:0.0683538665762962\twith:0.029902630078356984\this:0.02977469125571138\tfor:0.02644615625346098\t:0.01\n",
"the:0.25165038686279423\tof:0.2208545961649924\ta:0.14012636256762476\tin:0.10157607189410749\tand:0.09670018199814137\tto:0.07452897746136437\ton:0.04144316068991411\this:0.03208675773150225\tan:0.031033504629558978\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.38084440626599214\tto:0.15145867306248045\tin:0.11532422082173026\tand:0.08222697847643605\tthat:0.06855508031874946\tby:0.06583473598991112\tas:0.04567873360061942\twith:0.04295789579497948\tfrom:0.037119275669101365\t:0.01\n",
"the:0.5964382247060672\tThe:0.10524707217837129\tof:0.08644167496614132\ta:0.08171692154106469\tand:0.034547880451930656\ttho:0.029995107394342184\tin:0.023166064969972006\tby:0.016950566337948343\twith:0.015496487454162333\t:0.01\n",
"it:0.26692011521592757\tIt:0.1493822731653634\tthere:0.13020514838450056\tand:0.09803566330909326\twhich:0.09525515245385394\tthat:0.07327076966594799\tthey:0.07049189406629376\the:0.06512727727457265\tI:0.04131170646444675\t:0.01\n",
"of:0.23353555274255988\tthe:0.22437539845639948\ta:0.19115461155165775\tand:0.14142306641650218\tthat:0.06525062239376075\tor:0.04028296568564059\tthis:0.03391214512101669\tThe:0.031083119341217113\this:0.028982518291245547\t:0.01\n",
"time:0.1608602717782925\tout:0.1440935785680009\tday:0.11370178586240823\tamount:0.10953902266850292\tthat:0.10761358472390256\tcause:0.09911686168317807\ttion:0.08660789861309773\tone:0.08466752533373269\tplace:0.08379947076888436\t:0.01\n",
"it:0.2131788841045554\the:0.1867324812779885\tIt:0.14093961810063965\twhich:0.10085580692903923\tI:0.09523457785691533\tand:0.0799079407626281\twho:0.06284443033512091\tHe:0.05697400216718626\tthat:0.05333225846592657\t:0.01\n",
"the:0.333491644696878\tto:0.14483174923610254\tof:0.13836347956101022\ta:0.13530224697264623\tand:0.08679645812652999\tin:0.06952097042193187\t.:0.031235759732179104\tat:0.028167557547231103\tor:0.022290133705490916\t:0.01\n",
"was:0.22218815198729192\tand:0.1465170814712731\tis:0.140583779737422\tbe:0.10632353352630694\tit:0.10012693964407865\tare:0.07545617875077207\tof:0.06712696762296579\twere:0.06623323231220357\tbeen:0.06544413494768592\t:0.01\n",
"able:0.15793634980071647\thave:0.1344865151057924\thad:0.12025363806611893\thim:0.10492278371443059\tnot:0.10256387920833758\tenough:0.09916821472064512\twant:0.09573160697606328\tis:0.09000659713698024\twilling:0.0849304152709154\t:0.01\n",
"it:0.25144533550676995\the:0.21071525739473967\tIt:0.17420386451007652\tI:0.09287571763352744\tHe:0.09214411965449334\tshe:0.04741785084580568\twhich:0.04498035443472201\tand:0.04090699342471553\twho:0.03531050659514989\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
"at:0.6045825407508777\tthe:0.27953823517938464\tof:0.040112994240788374\tto:0.021862776530123855\tAt:0.01601878007449448\tThe:0.010725436541307472\tin:0.00591238138168691\tour:0.005870312648012562\ttho:0.005376542653323957\t:0.01\n",
"of:0.3620682162093069\tin:0.15510214166075792\tto:0.11740717458707653\tfor:0.0866825489592517\ton:0.07533306495803821\tand:0.05797881799848462\twith:0.04833334435880757\tthat:0.04564706405334956\tIn:0.04144762721492696\t:0.01\n",
"of:0.19772967641121048\tas:0.1623673418679956\tis:0.11714445471395858\tand:0.09677175778520736\tthat:0.0943754287296158\twas:0.08357915383269263\tby:0.08031186848504734\tfor:0.07886594540065145\tto:0.07885437277362076\t:0.01\n",
"<s>:0.5963315644790687\tit.:0.08733101394370142\tthem.:0.057892109096700894\tday.:0.05159054772886241\t.:0.045856458392391\ttime.:0.045304276069630195\tcountry.:0.03754410147486798\thim.:0.037311375090483\tyear.:0.030838553724294556\t:0.01\n",
"of:0.4399708559153843\tthe:0.15448935897953098\tsuch:0.10787052917454311\tor:0.05839240328452233\ttwo:0.0482418016502569\tyoung:0.04782458059564649\thundred:0.04713051651472546\tother:0.04404958129017539\tby:0.04203037259521492\t:0.01\n",
"gave:0.25126562487733123\tgive:0.20158383333959487\tto:0.19531145342080006\ttold:0.10744736414092639\tfor:0.06352867542319007\twith:0.05716282084185287\ttell:0.04182141150121062\tmake:0.03766907711979261\tgives:0.03420973933530129\t:0.01\n",
"amount:0.18720641054787163\tout:0.1402894894437778\tpurpose:0.1243999198196002\tinstead:0.11219993581608204\tnumber:0.09296496683132115\tplace:0.0868604492868434\trate:0.08538365227981021\tfull:0.08151006155122432\tmatter:0.07918511442346922\t:0.01\n",
"the:0.18527642228665522\tand:0.17179665000076919\tof:0.16514261327564692\tto:0.11554732749030587\tfor:0.0805540637980916\tthat:0.07870276865410993\tin:0.06923499798234657\ta:0.06755069152256468\tor:0.05619446498950995\t:0.01\n",
"and:0.4178344102674455\tdemand:0.10480245385516417\ttime:0.07653161454137987\tor:0.07340960769504044\tmade:0.06894048914569306\tready:0.06651922094886749\tup:0.06426908602044941\tused:0.0634388022252547\tthat:0.05425431530070529\t:0.01\n",
"of:0.30224729600263617\tin:0.15221195229999201\tto:0.1385590035986711\tfor:0.08380910911907809\tand:0.08096598743191566\tthat:0.06842193368213598\tby:0.06063786110257404\tIn:0.05494973182332383\ton:0.04819712493967301\t:0.01\n",
"was:0.2605459677799311\tbe:0.19005344527352178\tis:0.15343412498455805\tnot:0.08524094172141282\tare:0.08379332772478629\tand:0.0653576582121189\twere:0.05977645351123232\thad:0.04591894590343889\tbeen:0.045879134888999834\t:0.01\n",
"of:0.20963043813379711\tin:0.1344472825637965\tis:0.11247375749065121\twas:0.0990687897040571\tto:0.09790509753034497\tand:0.09515811622543865\tas:0.09199304616040622\twith:0.08394916605439023\tby:0.0653743061371179\t:0.01\n",
"of:0.1717874828321503\tand:0.1373574380324188\tto:0.1283710488380373\tor:0.12751224384292095\tthe:0.11877046731793289\tin:0.08923583856816646\ta:0.07774279702482251\tabout:0.076154142210941\tfor:0.06306854133260967\t:0.01\n",
"of:0.21338832523674772\tin:0.14017901232241858\tand:0.12939343303774875\twith:0.10408959886573863\tis:0.10292083424447168\twas:0.08224908889474121\tby:0.07954907839589143\tfor:0.07804424202008158\tto:0.060186386982160285\t:0.01\n",
"man:0.22909324705476153\tand:0.17211485420616227\tthose:0.1400129706027732\tone:0.1317547130177118\tmen:0.09557518639438325\tall:0.06988990929367911\twoman:0.05926378227846983\tperson:0.053595275082180836\tpeople:0.03870006206987816\t:0.01\n",
"to:0.8373194955794862\tand:0.05092331623440886\tnot:0.042902781812801355\tonly:0.011506508146671427\tin:0.011433989481631419\tfor:0.010023218095996237\tof:0.009470043352807742\tnever:0.0083194749095585\tor:0.00810117238663818\t:0.01\n",
"he:0.24284557880324883\tand:0.16535781784181097\tI:0.1357851855754639\tHe:0.12680451510687799\tshe:0.09288798707297978\tIt:0.06922170010352005\twho:0.056067394634025075\twhich:0.053419259516238556\tit:0.04761056134583489\t:0.01\n",
"number:0.21514286570065067\tamount:0.18073061046698224\tpurpose:0.10734114534925904\tout:0.09694986753446401\tmatter:0.09644940372518995\tmeans:0.08485063028837853\tsystem:0.07331478861615824\tkind:0.06805167835977474\tline:0.0671690099591425\t:0.01\n",
"and:0.23004261215258873\tof:0.19655406561480793\tto:0.17921490477287313\tthe:0.1301070559758695\tbe:0.060825605332687376\tin:0.05520887352757539\tor:0.053216551767544217\twas:0.044093189671746136\tas:0.04073714118430764\t:0.01\n",
"the:0.6719806909262188\tand:0.07862639892970076\tof:0.06297116197936027\tthis:0.040474255335835756\ttho:0.03826749852871689\ta:0.035648792867452775\tbe:0.024206295547741744\tan:0.02041512127757299\tsaid:0.017409784607400024\t:0.01\n",
"to:0.6693811218881631\twill:0.09372026012937719\twould:0.04635625184878836\tand:0.038959236854628515\tnot:0.03759381189173166\tthey:0.02820938354146046\tmust:0.027720412492728\tcan:0.024299328500147724\tcould:0.023760192852975013\t:0.01\n",
"and:0.16253630234922334\tthe:0.13680466153339332\tall:0.11561360729435666\tmen:0.10461924452757405\twork:0.10457769218693308\tday:0.10418349462299643\ttion:0.08982647473950357\tboth:0.0868474887853744\tkind:0.08499103396064495\t:0.01\n",
"the:0.2893467002777624\tand:0.2678848665290487\tof:0.08401748802429909\twill:0.07841544694787045\tto:0.07689341974511671\ta:0.05338739013361727\tdo:0.0493166172844587\tthat:0.04654468509936171\twould:0.04419338595846493\t:0.01\n",
"the:0.4423008306422378\tof:0.18883030410647314\tand:0.10920129856230039\tfor:0.06304013694233102\tsome:0.045283457895099084\ttheir:0.037889276037537556\this:0.0365307858710542\tthese:0.034952223310863714\tThe:0.03197168663210309\t:0.01\n",
"to:0.2579934679856101\twill:0.25716066202686916\tmay:0.09940882977352528\tshould:0.09388003845590547\twould:0.07932460153261252\tshall:0.06821255860978659\tcan:0.04795903857246232\tmust:0.04774653434054357\tnot:0.03831426870268495\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"a:0.30620143888311646\tthe:0.20236329105369139\this:0.15533427655442547\tof:0.09020864359124209\ttheir:0.07618202157969538\tto:0.06541813046620244\tmy:0.031653041938626496\ther:0.03133756635493874\tone:0.03130158957806148\t:0.01\n",
"the:0.26829717023504634\tin:0.2648961831093762\tto:0.12175195344637585\tof:0.09978661460347962\tIn:0.06938750740391243\tfrom:0.06425810584992685\tthis:0.04432590740071708\tfor:0.028837888444508387\tand:0.028458669506657236\t:0.01\n",
"the:0.389272800813676\tof:0.17210485164621478\tand:0.17082175439220343\tThe:0.11627151869807545\tthat:0.04169052592452665\this:0.028205704258302672\ttho:0.025059907039819838\tthese:0.023323544818787702\tto:0.023249392408393497\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"in:0.3020601607908766\tof:0.25396814099516546\tIn:0.1522564242274767\tto:0.06557303297017875\tand:0.05570618605580266\tthat:0.04900254130061465\tis:0.0392645305005171\twith:0.03812849651922234\tfor:0.03404048664014557\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.37945024150252876\tfact:0.15273198910843583\tsay:0.09983424068643301\tknow:0.07871082803286432\tis:0.060215763992746335\tsaid:0.059686964448043875\tbelieve:0.059171002584709906\tshow:0.051564382291374555\tso:0.048634587352863495\t:0.01\n",
"of:0.2398708670291844\tthe:0.22743525417047472\tand:0.13139002385520804\tto:0.10376973167625372\ta:0.08712962001455624\tat:0.06768600089169872\this:0.04664315861358613\tin:0.04554117936171022\tis:0.04053416438732785\t:0.01\n",
"in:0.20873519833854517\tof:0.18795259357327262\tby:0.1582645730590573\tand:0.1367672682476698\tto:0.08924643465121634\tIn:0.07269527293161243\tfor:0.0619333089688606\twith:0.03837530028718063\tafter:0.036030049942585234\t:0.01\n",
"the:0.31601781735864304\ta:0.30398501620994156\twas:0.08173381435485723\tand:0.06659461910587389\this:0.0570259808069652\ttheir:0.046778362828441764\tis:0.04645419911310134\thave:0.036984154439241815\thad:0.034426035782934246\t:0.01\n",
"a:0.6021580278368056\tpast:0.11701625480782635\tlast:0.08468063708221915\tA:0.062445047357630665\tthe:0.04002061964927177\tnext:0.03506329664205989\tvery:0.03365400993709004\tfor:0.008039488570004598\tbut:0.006922618117092025\t:0.01\n",
"State:0.2123005522229365\tcity:0.1334462642177584\tday:0.1239105767031807\tline:0.10663611608951876\tstate:0.09705634588733249\tside:0.08756535272165322\tplace:0.08416697982509332\tcounty:0.0818130056585457\tcorner:0.06310480667398086\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"a:0.6357536736357531\tthe:0.13407354174692596\tand:0.05827123694915738\tis:0.0370114780284704\tof:0.027509709372710307\tto:0.027254633271835173\twas:0.026802923282453664\tno:0.021764556257325273\tvery:0.021558247455368613\t:0.01\n",
"of:0.2738563132144333\tand:0.17030897857867627\tto:0.15480549128811574\tin:0.08161661859881093\ton:0.07404349460103701\twith:0.07283240589637169\tfor:0.07115768433250703\tthat:0.046063852669420674\tfrom:0.04531516082062738\t:0.01\n",
"the:0.19143646652932672\tand:0.11418891776565375\tall:0.11152431988368015\tvery:0.10811287774796405\tmost:0.1068126658591624\ta:0.09994094706182326\tmore:0.09378592942183762\tas:0.08439746530775251\tof:0.07980041042279956\t:0.01\n",
"number:0.1741043364767106\tkind:0.16812020996247506\tsort:0.11597613567146543\tout:0.11144356458935781\tplace:0.09308420075646472\tline:0.09044596123864637\tBoard:0.0823885908135432\tpoint:0.07887932665302183\tmatter:0.07555767383831496\t:0.01\n",
"as:0.24837157577856656\tor:0.14232166364164286\topposed:0.11230514870743818\tcome:0.09928049147584614\tand:0.09473117357100153\tup:0.0760744201179667\tregard:0.07367539801965169\tequal:0.07250608124635792\tentitled:0.07073404744152827\t:0.01\n",
"in:0.43089789769168557\tIn:0.1547178800498734\tof:0.14103670042116728\tto:0.09043771995430375\ton:0.05010257353000053\tis:0.03436894065587644\tthat:0.03178895265747297\tand:0.02839669739177595\tat:0.028252637647844164\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"and:0.24413116292889298\tclosing:0.18173686344826198\twas:0.10859381659603785\tvalued:0.08665763038641584\theld:0.07932710425709101\tsold:0.07518688429361538\t2:0.07335995221601971\tis:0.07241280837793868\tarrived:0.06859377749572665\t:0.01\n",
"w:0.3390891838195752\tand:0.2691330014287216\tthat:0.09763384991555198\tto:0.07180024949709815\tI:0.05506932725673032\twhich:0.05209195987243536\tbut:0.04116216692151558\twill:0.034607230672464004\twr:0.029413030615907658\t:0.01\n",
"the:0.3864602331026914\tof:0.16664543359033065\tand:0.11296628878234231\this:0.07347749793423838\ttheir:0.060603193199693026\tto:0.058910026991949804\tare:0.05225374545318543\tThe:0.04270452141008057\ther:0.03597905953548853\t:0.01\n",
"he:0.258249328437472\tbe:0.19840219064404316\tand:0.15216540934168335\tI:0.12014754078091608\tis:0.07078353871398556\tshe:0.053046685182895355\tit:0.04932694611550157\tthey:0.046099389236292525\twas:0.04177897154721041\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"one:0.20904861871896518\tpart:0.14646287223281468\tthat:0.12329779486171277\tout:0.1038613392101026\tand:0.09953010715096167\tday:0.09867420448048551\tall:0.08781371664340824\tsum:0.06412462317513686\taccount:0.057186723526412415\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"containing:0.2912323769460952\tof:0.2889356022660579\tthe:0.12347728549999767\tand:0.10321578418783965\tabout:0.05135914428541196\tto:0.051239895494566666\tor:0.03473786787689127\tin:0.02317919427014332\tat:0.02262284917299623\t:0.01\n",
"<s>:0.3498586238480828\t.:0.24819665780431518\tit.:0.0889387713537881\tand:0.07791688088721137\tthem.:0.07642968663466497\ttime.:0.04291096237006195\tthe:0.03740036712783971\t4.:0.03452568614472019\tpeople.:0.03382236382931567\t:0.01\n",
"and:0.2038826490604836\tfilled:0.19671295534752972\tcharged:0.1392237636713646\tcovered:0.118971395226636\ttogether:0.10191935923382883\tit:0.06800011969343538\tup:0.05681672684171535\tbut:0.0544510382020003\tmet:0.05002199272300607\t:0.01\n",
"able:0.16251742456828452\tis:0.13294021200316117\tenough:0.12315949791013905\tand:0.11419503149231228\thim:0.10289899747150948\tunable:0.10022500406012659\tnot:0.09252167071320287\twas:0.08281412468767602\torder:0.07872803709358812\t:0.01\n",
"the:0.23825740574502957\tand:0.21608560530005966\tbe:0.1731630570837981\twas:0.08104327645157156\tbeen:0.06598048286044475\tis:0.06387616410295487\tto:0.05875050596749086\tare:0.04988228492089634\the:0.04296121756775416\t:0.01\n",
"of:0.21428321153321442\tthousand:0.13001949111578665\t160:0.12169270695841854\thundred:0.10950091701946996\tten:0.10163228487731384\ttwo:0.0851385207864025\t40:0.0846705828184115\tsixty:0.08209704226201847\tfifty:0.06096524262896405\t:0.01\n",
"for:0.2618607741887127\tof:0.20832823588351382\tFor:0.15714630180178885\tand:0.11162499485731404\tby:0.06181654634432617\tthat:0.055137091547087846\tto:0.050543637661985795\tthe:0.046113942638558225\tso:0.03742847507671258\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"the:0.5254710971650842\tthis:0.11227000235913148\tsuch:0.09873466024657727\tsaid:0.08238837448892582\ta:0.06750492730121421\tand:0.0340090156222463\tof:0.026244765936757432\this:0.023564254757314995\ttho:0.019812902122748274\t:0.01\n",
"a:0.26550379796340207\tthe:0.12166346292569752\tof:0.1159487688349613\tthis:0.09438645768423036\this:0.09161313315019978\tany:0.08166044023262582\tin:0.07839987362468417\tand:0.07208775019648532\tas:0.06873631538771376\t:0.01\n",
"one:0.23561954612370872\ton:0.13426648729946522\ttwo:0.10148192748372938\tsold,:0.1009610188641456\tmore:0.09924184788068606\tand:0.09150921267824079\tlittle:0.08928945101019953\tlaw:0.07023380118674588\taction:0.06739670747307897\t:0.01\n",
"be:0.26099854621362995\tis:0.2179729212022177\tare:0.1299208416846257\twas:0.121986266126439\tbeen:0.07796025616065985\tand:0.06028957097025014\tIs:0.041906132541172106\twere:0.04144490436452874\tbeing:0.037520560736476756\t:0.01\n",
"the:0.44207151798968636\ta:0.3054142911113909\tof:0.08687220836181488\toak:0.03757926422707492\tto:0.029802360397779882\tthis:0.02783419811896706\ttho:0.02310076882677409\tevery:0.018873169693469454\tThe:0.018452221273042472\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.5749300566611418\t.:0.09797140648806991\tand:0.07375341517721735\tMr.:0.05589455435503869\tof:0.04616207875552563\tThe:0.03830981975734198\tin:0.0379522092395776\ta:0.03260105964127539\t<s>:0.03242539992481172\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"o'clock:0.371517661803559\tMrs.:0.15845920779323325\tand:0.12220454801140251\t.:0.1095283570576981\toclock:0.05927426102824505\tby:0.05340589086064495\tC.:0.04932297173848083\tof:0.03471273355095674\tJ.:0.03157436815577956\t:0.01\n",
"the:0.4556739670918605\ta:0.1692152362107575\tof:0.0917017198927813\tin:0.08268737448565272\tThe:0.049537392180988106\tto:0.04146733624899094\tfor:0.03861590153765151\ttho:0.03277431481876552\tand:0.028326757532552007\t:0.01\n",
"with:0.14642911211872278\tis:0.14606317104770866\tin:0.12386882226109319\tof:0.12345475169131272\twas:0.10732409925218926\tas:0.10471357443939029\tto:0.09701310049410584\tand:0.0715410286448266\tbe:0.06959234005065064\t:0.01\n",
"and:0.3636647809915669\t;:0.10948398757383931\tas:0.10334039008622735\tbut:0.09733897659997663\tAnd:0.09060377745329255\tis,:0.06221639560266794\tthat:0.05639400399428148\tand,:0.05615300532780325\tis:0.05080468237034447\t:0.01\n",
"be:0.33917107897356513\twas:0.2672099269889502\tbeen:0.13401292317584532\tis:0.07508067815594754\twere:0.06753972753370001\tbeing:0.03388737792282211\tare:0.031974115395810236\tand:0.02139453421082932\tbo:0.01972963764253014\t:0.01\n",
"<s>:0.5661296404479996\tit.:0.09987846367812722\t.:0.06876356692484177\tthem.:0.06390453866376981\thim.:0.05078296795096254\tcity.:0.03977760783710238\tand:0.03730808508174973\tday.:0.03193920024721529\tin:0.031515929168231566\t:0.01\n",
"the:0.3926731307308881\tof:0.21540068168972157\tand:0.15619699539309756\tin:0.04598349412799415\tto:0.042300222136962544\ta:0.04071372464986803\tby:0.036952227603120134\ttho:0.03075071272726622\tas:0.029028810941081666\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3939864168532433\tThe:0.1787873437823825\tno:0.09710409608444984\this:0.06821927813863016\tthat:0.0649041390454164\tof:0.06403456751965786\tand:0.04931337720238715\tthis:0.04521691301840086\ttheir:0.028433868355431907\t:0.01\n",
"the:0.28441607786333467\tof:0.20980530521933718\tand:0.14059183584462825\ta:0.10350082670945145\tto:0.08403081004979975\tin:0.0702219500545016\tor:0.0343076397213653\tfor:0.03219399323517172\tby:0.030931561302410173\t:0.01\n",
"the:0.23782049310212533\tand:0.19214892314342139\tof:0.1765901506244558\t.:0.09973880484111639\tto:0.06735634874139797\tby:0.06218655947585804\tMrs.:0.05882569915609157\t<s>:0.05162777795757545\tMr.:0.043705242957957996\t:0.01\n",
"the:0.6295138083618597\tan:0.10405310636144496\tthis:0.05802384361370429\tof:0.04073412912301542\ta:0.04045729191632545\tThe:0.03406956037028644\ttho:0.03000008989793676\tsaid:0.028570551684749923\tand:0.024577618670677048\t:0.01\n",
"in:0.25221001207180754\tof:0.23006128730609787\tby:0.10849832605220695\tand:0.10441120077164079\tis:0.07236676642617157\twith:0.07148625211135151\tfrom:0.054600878343418174\thave:0.04919783576239238\tfor:0.04716744115491322\t:0.01\n",
"of:0.5999167825175905\tin:0.2545723162802134\tIn:0.05760202262386334\tto:0.014472140050320837\tby:0.013286812317058803\tthe:0.01305380201422306\tfrom:0.012819822022387092\tfor:0.01224263176365775\tat:0.012033670410685256\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.3403211120581314\tof:0.1750957885293977\tand:0.15598548392537856\tto:0.13689347774391816\ta:0.05974080017727077\tin:0.03311853887912723\this:0.032649804381998195\tor:0.02852704716122136\tfor:0.027667947143556713\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.4283975832495335\tthis:0.18388771933038583\tThe:0.1296082201083601\tthat:0.06557702751682619\tThis:0.0441827563678799\ta:0.044116296294005035\tof:0.042275205243717494\ttho:0.029220263481601505\tour:0.02273492840769032\t:0.01\n",
"brought:0.192277727621288\twent:0.15460515481500964\tcome:0.12146927553962855\tcame:0.10641642939028818\tgo:0.10353499405925308\tlook:0.08612366304645741\tlooked:0.0769716221388797\tsent:0.07503292098015651\tit:0.073568212409039\t:0.01\n",
"the:0.6258726522664784\ta:0.13461756997063534\tand:0.07968616292894322\tThe:0.034481446015133706\tthis:0.031150419685504766\tto:0.0286945160600366\ttho:0.027988573922704704\tof:0.014598649927972272\tin:0.012910009222591001\t:0.01\n",
"the:0.36312321450761714\tand:0.19848804090419978\ta:0.09590696347401902\tof:0.08303218790307448\t.:0.06197545463946883\tthat:0.0579458576637141\tto:0.04654520009645579\tfor:0.04337407994495109\tThe:0.03960900086649977\t:0.01\n",
"and:0.3584626692953458\the:0.1370860616323505\twho:0.10510561116640618\tthat:0.08982083788776686\twhich:0.08686541134653032\tthey:0.05855190688830245\tI:0.05285977022170167\tHe:0.05141229918562641\tit:0.04983543237596982\t:0.01\n",
"the:0.24821642911401523\tany:0.1649581722896359\tno:0.1268116887263203\tthis:0.11858186743305785\tthat:0.08481273609735658\tevery:0.07865959388654517\ta:0.07144945347415355\tsome:0.05350548013446135\this:0.043004578844453994\t:0.01\n",
"to:0.22790941852539254\tof:0.19066101107333902\twith:0.0993627534500217\tin:0.09746574179221522\tis:0.08426159876227043\twas:0.07548169047016745\tand:0.07510893731597913\tas:0.0714076878430712\tfor:0.06834116076754333\t:0.01\n",
"him:0.16731060278119136\tand:0.15865410606742966\tis:0.11868784454843383\table:0.10734668506784036\thave:0.10102168139291291\tright:0.08572067988981888\twas:0.08506755165125525\tthem:0.08364500401658892\torder:0.08254584458452871\t:0.01\n",
"was:0.2654355625572051\tbe:0.17483157139017147\tis:0.17458173862449344\tbeen:0.0837015546157013\tand:0.07912832639784415\tare:0.06377397405231049\twere:0.0570219973528321\tnot:0.05496723432199497\tas:0.03655804068744705\t:0.01\n",
"said:0.244897929605211\tof:0.19085079798600496\t.:0.14186478980492948\tthe:0.13652315877541069\tand:0.07228392661920457\t<s>:0.06408397407930232\tState:0.05461681317026622\tMedical:0.05098640081092022\tAgricultural:0.03389220914875058\t:0.01\n",
"a:0.28550983107671785\tlegal:0.21321286344801132\tthe:0.1990827661689216\tand:0.06991504751984023\tof:0.054641060032081294\tvery:0.044086580910909966\tso:0.04281479508631375\tas:0.042636225443434705\tthis:0.038100830313769395\t:0.01\n",
"lot:0.336563516647635\tJune:0.11407668263100088\tJuly:0.09327664179101287\tMay:0.09024909402296524\t18,:0.08980703447433254\tNo.:0.08449505498660098\tblock:0.07653267775754288\tApril:0.054870176257015096\tMarch:0.05012912143189441\t:0.01\n",
"Resolved,:0.21695713947679507\tenacted,:0.1810685129751281\tProvided,:0.1590402165597861\t<s>:0.14389853320715837\tenacted.:0.10164584399219195\t2.:0.054217745441520686\t1.:0.04650889399161415\t4.:0.04506866858236186\tit.:0.04159444577344364\t:0.01\n",
"<s>:0.5674929624661247\t.:0.08839078752504227\tit.:0.07053001148597055\tthem.:0.0562636940549916\tyears.:0.05125155054279794\ttime.:0.04409585238886878\thim.:0.0413706429141225\telse.:0.03751376281380708\tday.:0.033090735808274485\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.34212888418832754\tand:0.09741876388731498\ta:0.09203073212763069\ttheir:0.0905521035726166\tof:0.08803022554243589\this:0.08397505822604853\tno:0.07446376023237826\tits:0.06349244090222635\tany:0.057908031321021125\t:0.01\n",
"the:0.5733838850050116\tof:0.13062832652271272\tThe:0.10293206902486032\tand:0.06087110422143535\ttho:0.0336954975080211\tthat:0.027438849835855282\this:0.02368636373657014\tto:0.01926066082757941\tsaid:0.018103243317954036\t:0.01\n",
"to:0.28570587498953637\twill:0.2089673883382352\tshall:0.1456568495213285\tmay:0.11218999380903998\twould:0.07549398094858079\tshould:0.050811274578193566\tmust:0.041624912678164636\tnot:0.03495761133511869\tcan:0.034592113801802306\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"and:0.2983193030981629\tabout:0.19314493092563442\tof:0.18179178214211336\tor:0.11078275255882153\tto:0.05643411285011313\tfrom:0.04846095651162487\tthe:0.04263514563269541\tin:0.029285164064562216\tfor:0.029145852216272146\t:0.01\n",
"of:0.3475451204174963\tin:0.1554863230463603\twith:0.09564374303780662\tto:0.09094693286209836\tby:0.07479435456576858\tfor:0.07059794631526593\tthat:0.06159453766409955\tand:0.051539245324789505\tat:0.04185179676631503\t:0.01\n",
"of:0.38632996664117664\tto:0.13331549741956425\tand:0.09385470882222514\tfor:0.08518220250623178\tin:0.08290432779351672\tat:0.05855962695846349\tthat:0.05627341072181236\ton:0.048525931025620014\tby:0.0450543281113896\t:0.01\n",
"has:0.3735260008008669\thave:0.2966099628054021\thad:0.21413223763229447\thaving:0.04152822306361047\tnot:0.025853632215023157\tlias:0.013184785142143066\tbad:0.010137737006598117\tever:0.007714964113282488\tnever:0.0073124572207792626\t:0.01\n",
"he:0.2391288707725497\tand:0.16175278537483306\tit:0.13693543566289718\tHe:0.1269626520468204\tIt:0.07930675591492642\tshe:0.06954546495825908\twho:0.06613049823791833\tI:0.05777113802123169\tsoon:0.052466399010564116\t:0.01\n",
"and:0.1984562901269432\tis:0.142257293694991\twas:0.1132174125153745\tas:0.10372117444929033\thim:0.0992850734670055\tmade:0.08864606738095501\tthem:0.08692380181260786\tit:0.07997511457733557\ttime:0.07751777197549706\t:0.01\n",
"he:0.18652325356094804\twhich:0.15683009975210951\tthat:0.1391397941476974\tand:0.11836098186185225\twho:0.11775232646277921\tit:0.08836766802317608\tIt:0.07101919239085844\tHe:0.0673633557612727\tas:0.044643328039306374\t:0.01\n",
"the:0.27604582986637277\tand:0.20005208375044586\tof:0.16391243589379206\ta:0.1069963129541891\tin:0.07935518763521485\tto:0.059482536405731874\tthat:0.037405568462991014\tI:0.03465917683077474\tfor:0.0320908682004877\t:0.01\n",
"I:0.1803983013453989\tit:0.14809804437510302\twe:0.12403549465212284\twho:0.11580681902065516\tand:0.10185992768584697\the:0.09882201198425426\tthey:0.08950326601558928\twhich:0.0749832971513681\tIt:0.056492837769661415\t:0.01\n",
"the:0.2430700290993388\tof:0.19255952245263241\tand:0.1541377657113866\tto:0.1438140321537308\ta:0.07286436798209919\tbe:0.051059482517056685\tor:0.05091033703493395\this:0.042464487272563516\ton:0.03911997577625805\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"to:0.5149770475981358\twill:0.1346783393002969\tnot:0.08265277225475992\twould:0.07186959262433686\tand:0.06726130341175825\tyou:0.032577373144446926\tthey:0.03117769070819441\tshould:0.03073681247251106\tmust:0.024069068485559734\t:0.01\n",
"the:0.49438658544643616\tThe:0.14540031495469338\tthat:0.08550252205135273\tthis:0.07045977956178653\this:0.049153741371079925\ten:0.04566394458803623\ttho:0.03916051694326674\ta:0.030641222323425463\tThis:0.02963137275992294\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"be:0.24863301257446357\tand:0.18023447528229328\tas:0.11900294407375822\tany:0.09152107891494127\teither:0.08065441752871852\tmanner:0.07315275488263395\tis:0.06602873478529825\tor:0.06552572341795665\ta:0.06524685853993617\t:0.01\n",
"of:0.42973901888524385\tto:0.10420390365675673\tthat:0.09796963455895259\tby:0.09076391062687407\tand:0.07519868162673066\tunder:0.0669597511531021\twith:0.047385927981561195\tfor:0.04179296899517021\tin:0.035986202515608676\t:0.01\n",
"and:0.24085978996594232\tready:0.13274756945117852\tused:0.13207968819577365\tdemand:0.10256758973541094\tnecessity:0.08621761744449329\ttime:0.07798948167775047\tvote:0.07695608292594495\tplace:0.07195614762276076\tenough:0.06862603298074507\t:0.01\n",
"the:0.44128286709498465\tand:0.11101823581613052\ta:0.10987243616498289\tof:0.07361674171326836\tThe:0.06534200453313006\tto:0.061454283611476784\this:0.05224407902114285\twith:0.03807157274862268\ttho:0.03709777929626122\t:0.01\n",
"the:0.23461451571639205\tof:0.2082190844989223\tand:0.12161366083081088\tin:0.12018842811254492\tor:0.08922881981939929\twith:0.06285626039393363\tto:0.057971375597641296\tby:0.04996247664149722\tfor:0.045345378388858375\t:0.01\n",
"be:0.28617972100582956\tand:0.16268441112360146\the:0.16155544153530688\twas:0.12208355753794954\tis:0.08733674436208817\thave:0.04830905568425094\tI:0.043512627043826475\tbeen:0.039989601108343854\tHe:0.038348840598803155\t:0.01\n",
"the:0.7960896944291324\ttho:0.03541189152067101\tand:0.029345058625016233\this:0.026575012097541734\tthis:0.02195838445642336\ta:0.02129920732958784\ttheir:0.02087028896483948\tof:0.02083889698892802\tno:0.017611565587859878\t:0.01\n",
"the:0.3757017791354365\tof:0.15098593636513172\this:0.11469590544226016\tthis:0.09820742118873921\tand:0.06077782213452689\ta:0.049834757247571505\ttheir:0.049743269524710136\tor:0.04903209905984556\tour:0.04102100990177839\t:0.01\n",
"of:0.2995343895777337\tin:0.15492595819994948\tto:0.12884162985216668\tand:0.09788935910863643\tfor:0.09378707843117783\twith:0.060975381439921456\tby:0.05381344492823101\tthat:0.051341307011785575\ton:0.04889145145039777\t:0.01\n",
"to:0.2291599023600459\tI:0.13871946602755938\twould:0.1330455404601739\tthey:0.11537319596311135\twe:0.10498230354658346\twho:0.08173080463455146\twill:0.07730390766292998\tyou:0.05776733890846799\tand:0.0519175404365766\t:0.01\n",
"of:0.3159349713373115\tand:0.14255235774498598\tin:0.14150239752579102\tthat:0.10417672400432376\tto:0.08784364980683178\tby:0.05866477236947692\twith:0.05032623759074687\tfor:0.04765950354235702\tfrom:0.04133938607817509\t:0.01\n",
"Chief:0.27160774856029757\tby:0.2217746479488113\tof:0.21964147873042164\tand:0.08529027845262348\tto:0.07332578758886041\tthe:0.046463538627776926\tsaid:0.035925380776933094\ton:0.019596763067903894\tMrs.:0.01637437624637162\t:0.01\n",
"of:0.31662382482780055\tthe:0.18822284322808477\tin:0.11578788137479393\tand:0.09407676728996123\tthat:0.07488917283524958\tto:0.06204412499286629\tThe:0.052928240553401264\tfor:0.045864762222283736\tMr.:0.03956238267555868\t:0.01\n",
"I:0.3359590597720606\the:0.19690932518224705\tand:0.10460261048712292\tHe:0.0865661488047072\twas:0.0829237084169654\tshe:0.052940269178750915\tthe:0.04531244715031157\tis:0.04450037502484462\tbe:0.04028605598298976\t:0.01\n",
"and:0.1839744369925756\tis:0.15816658254714983\twas:0.15523712589648786\tare:0.12515688772284883\tbe:0.1032051387848565\tnot:0.06809378147602631\twere:0.06786280535236103\tbeen:0.0654827630776303\tit:0.06282047815006372\t:0.01\n",
"the:0.40013293554699847\ta:0.25641726331827\tof:0.06660601337342556\tsaid:0.058719296637931774\tin:0.05385714725933323\this:0.046830705221955364\tthis:0.04257598368754873\tto:0.03696873638970582\ton:0.027891918564831097\t:0.01\n",
"and:0.3171940505917024\tor:0.1572428214944622\tmade:0.14946395825457476\tit:0.08691018772414068\tthat:0.07769859549575453\tdone:0.051363715929109564\thim:0.05132471348732895\tonly:0.05017459062309865\tthem:0.04862736639982825\t:0.01\n",
"of:0.4163979461345856\tto:0.1539562366099683\tthat:0.0959716933847183\tin:0.08268502469982317\tand:0.08050089591041658\ton:0.05945021177342268\tby:0.038215498125675255\tfor:0.03286850700540239\tas:0.029953986355987616\t:0.01\n",
"that:0.41254069359533196\tif:0.10775867228608897\tas:0.1021810806114893\twhich:0.0950336527603481\tand:0.07458198053495402\twhere:0.0620748140712076\twhen:0.05168851284933588\twhat:0.043968596503646165\tbut:0.04017199678759795\t:0.01\n",
"and:0.2179323550765825\tof:0.20178731477680756\tthe:0.19261917476274598\tto:0.08891564529808502\ta:0.08258196034759074\tbe:0.062475037334273516\tfor:0.05040411189358241\tin:0.04772974787927691\twas:0.04555465263105526\t:0.01\n",
"the:0.29045040347931034\tof:0.28573686392564307\tin:0.14482690952210012\tby:0.05366203320741016\tand:0.05363367791825864\ta:0.04841638893075872\this:0.042859246570597656\tfor:0.03527029615324502\tIn:0.035144180292676075\t:0.01\n",
"that:0.2778581367354571\tand:0.2464988652358866\tas:0.12419472034687723\tbut:0.09881487109708305\twhich:0.06780189868586442\tof:0.0461859543105697\twhen:0.04568724174305771\tif:0.04267327791054875\tfor:0.0402850339346556\t:0.01\n",
"the:0.3772139649198707\ta:0.3517384575727426\tThe:0.07025373099470712\tof:0.04928115920888418\tand:0.043959817468033194\this:0.03287693982272174\tthis:0.026686305908428055\ttho:0.0192872619447732\tin:0.01870236215983928\t:0.01\n",
"to:0.7675096964015802\tnot:0.07021610167194516\tand:0.0405305775234473\tI:0.026456372286965023\twill:0.02185424089876256\twould:0.019280612705740576\tof:0.015577156321857818\tin:0.015485184332420115\tcould:0.013090057857281305\t:0.01\n",
"it:0.22712628597609982\the:0.21253687766485888\tIt:0.18031188857998398\tHe:0.0963006863991519\tand:0.09471216819412515\twhich:0.04993635403543279\tthere:0.04717894442246542\tshe:0.041707922978850454\tthat:0.04018887174903176\t:0.01\n",
"the:0.19973673748319962\tsouth:0.18702779361968208\tnorth:0.15982485632839313\teast:0.14416008078002449\twest:0.1271368694625307\tone:0.06117723817628734\tother:0.050782521233723094\teither:0.03197613557020537\ta:0.028177767345954213\t:0.01\n",
"of:0.2509130965218734\tto:0.1551773858852275\tin:0.15395123798081212\tfor:0.09259101878101822\twith:0.08281779795750178\tand:0.07792201033634424\tfrom:0.06970555619465402\tat:0.06355317510943152\tby:0.043368721233137175\t:0.01\n",
"and:0.2758836921700153\tof:0.22975190363749787\tto:0.10767661680865694\tall:0.07691525340684668\tin:0.0702470915794366\tknow:0.0672883217183726\tfact:0.06709293433771966\tfor:0.05223215542028378\tfrom:0.0429120309211705\t:0.01\n",
"and:0.32311634278934404\thim:0.09870937808207801\tapplication:0.09552818008284919\twas:0.09108249895321115\tit:0.08441184299744424\tup:0.08234572242630689\tmade:0.07437354501364973\tout:0.0712836163279344\ttime:0.0691488733271823\t:0.01\n",
"the:0.29695533958321657\tsaid:0.17703567573589155\tthis:0.11171806579928768\tno:0.09074523356018187\tthat:0.07817602195708855\tof:0.06621213733816299\tsuch:0.06018070855127621\tThis:0.058846511636259674\tThe:0.05013030583863489\t:0.01\n",
"the:0.46891933382738193\tthis:0.20177115203213916\tthat:0.07656570496575144\this:0.04648927143271496\tfirst:0.04408642757737371\ta:0.043073692578605924\ton:0.03862689718059067\ttook:0.035671307882531526\tsecond:0.0347962125229107\t:0.01\n",
"of:0.47241978471457663\tin:0.22926055967660666\tto:0.07925568651337603\tthroughout:0.045461986889704216\tIn:0.04504488769029031\tfrom:0.03559128098291959\tfor:0.03254064494466398\ton:0.02543138708828435\tby:0.024993781499578066\t:0.01\n",
"of:0.2900947012389457\tin:0.16417786382512142\tto:0.15552600664134783\tat:0.08919623556290653\tby:0.07534187233809923\twith:0.05700378669925567\tfrom:0.05671894755253884\tfor:0.053937512500454324\tand:0.04800307364133047\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.33995684533252996\ta:0.24276848002458845\ttheir:0.08519604465188706\tto:0.07090256022275045\this:0.06677890492469662\tthis:0.04719479005074183\tgood:0.0467449323110364\tof:0.04640932218083603\tour:0.044048120300933344\t:0.01\n",
"the:0.5177992496076944\ta:0.2031474941253057\tthis:0.08581609997982814\tThe:0.06941293954761478\tand:0.044054462143769534\ttho:0.021779302070428424\tis:0.01760674731140944\tA:0.015664525796434882\twas:0.014719179417514824\t:0.01\n",
"and:0.1664873365524762\tbe:0.15411249027509683\twas:0.13534665704601467\tof:0.11936534553223899\tto:0.1183922877576541\tbeen:0.08249300587019524\tis:0.07584338862680055\twere:0.07282174495865562\tare:0.06513774338086778\t:0.01\n",
"able:0.14511234966528908\tand:0.13172820859723178\tis:0.1247686614230459\thave:0.11730326646781511\thim:0.11082659939939717\thad:0.0955401572626202\tright:0.09040877079752839\tenough:0.08874364021609925\twilling:0.08556834617097307\t:0.01\n",
"the:0.3709127561182026\ta:0.26444812016166364\tand:0.0865773706073407\tof:0.07420644799058602\tThe:0.05029401343439879\tan:0.04961439159978066\tthat:0.03660430524922059\tto:0.03210352522032676\ttho:0.025239069618480065\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"up:0.17032305363282238\ttime:0.16711335341898248\tin:0.12527215113957788\tdue:0.1133736981433068\tthem,:0.09475987896607477\tit,:0.08847953022222116\thim:0.08231122455933201\there:0.07724464258167192\t;:0.07112246733601059\t:0.01\n",
"the:0.8514581005254491\ttho:0.049339039716014985\tThe:0.023810476456397073\ttbe:0.018289326463401753\tof:0.017391813259110298\tand:0.009228001818112395\tin:0.00870150683821085\tby:0.005902294252819958\ta:0.0058794406704836405\t:0.01\n",
"to:0.7963728527583023\tand:0.06447203785661447\tnot:0.06061490263418568\twill:0.025012597623589733\tthat:0.009645517757665433\tor:0.009409409991306834\twhich:0.00869294539544073\twould:0.008619400614687385\tmay:0.00716033536820751\t:0.01\n",
"the:0.82590428529791\ttho:0.030429717576641133\tof:0.026672873606360635\tand:0.0232403410705\this:0.02290954150889073\tThe:0.019523890082257116\tan:0.017316017657785274\tin:0.012863132196340577\ttbe:0.011140201003314632\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"first:0.22339339267419442\ton:0.18904006040484084\tthird:0.14540864272235157\tOn:0.14462729104862201\tlast:0.07726299716964792\tand:0.06246955508215194\tsecond:0.05312149292221943\tthe:0.04914412148685804\tof:0.04553244648911395\t:0.01\n",
"taken:0.16261151630900855\tput:0.14619353766925322\tcame:0.13703532100150315\tit:0.10354230172789738\twent:0.10287543520360636\tmade:0.09309311850413422\tcome:0.08892194890483825\tkeep:0.08456340460513728\tget:0.07116341607462179\t:0.01\n",
"the:0.30829255876349043\tof:0.30782939186025116\tan:0.12277172196581082\tand:0.08917862379661648\tin:0.05185540988009982\tThe:0.04396504706466841\tby:0.026008080582712517\tthis:0.02183210871233291\tto:0.018267057374017518\t:0.01\n",
"brought:0.192277727621288\twent:0.15460515481500964\tcome:0.12146927553962855\tcame:0.10641642939028818\tgo:0.10353499405925308\tlook:0.08612366304645741\tlooked:0.0769716221388797\tsent:0.07503292098015651\tit:0.073568212409039\t:0.01\n",
"and:0.2570444868534137\tfilled:0.19679096807428134\tcovered:0.1570812856126885\ttogether:0.07562491315607422\taccordance:0.0672592376189995\tcharged:0.06511645199676881\tparallel:0.05756238384092781\tup:0.057447201370967406\tconnection:0.056073071475878644\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.38302017324220544\tthence:0.29936690776717384\tand:0.0954403724036918\tminutes:0.05714161987539117\tdegrees:0.039163333723336635\tThe:0.036838809686002616\ttho:0.03045836821817468\tfeet:0.026436507334020753\tmiles:0.022133907750003137\t:0.01\n",
"be:0.3772467936574377\twas:0.14139731190743154\tbeen:0.09842490860873845\tis:0.09082646335255577\thave:0.08099718965765183\thas:0.06322134711137646\thad:0.05013246138720967\tand:0.04924219274830825\the:0.03851133156929048\t:0.01\n",
"and:0.2625614647219744\twas:0.1432246731029363\tare:0.11019859322216392\tis:0.10340559833700257\tbeen:0.09328234633723377\tor:0.07499365040325978\tbe:0.07366447203709012\twere:0.0669029039275914\tnot:0.06176629791074764\t:0.01\n",
"of:0.3792703144302751\tthe:0.176252807359912\tand:0.08573005552139683\tfor:0.08122987294582659\tor:0.07678611247393066\tin:0.059878887520122284\tto:0.05420251129874197\tby:0.0450153442880628\twith:0.03163409416173186\t:0.01\n",
"this:0.27172175727450804\tthe:0.19929193769626846\this:0.10724062763658933\tsame:0.0886610672074724\town:0.08654928341087763\tany:0.07618256398944749\ttheir:0.07028777504858862\tother:0.04596182546577913\tthat:0.044103162270468975\t:0.01\n",
"he:0.2322016336984786\tit:0.1669075223082371\tthey:0.10660387704011784\tthat:0.09287466004315888\tI:0.08912921800163373\tand:0.08103075734170172\tIt:0.07721091712064736\twho:0.0747157546460944\twhich:0.06932565979993037\t:0.01\n",
"the:0.37263410996040036\tof:0.1914567244543205\tand:0.11241612437048062\tto:0.0978933473940858\ta:0.06323151129667046\tThe:0.05592472829640938\tin:0.036646316132800644\twith:0.03545024815068941\tfor:0.024346889944142726\t:0.01\n",
"number:0.15394027364983043\tline:0.13769881947098758\tone:0.12246058823425282\tplace:0.11551625530320289\tall:0.09743595898697573\tstate:0.09413241405022472\tout:0.09204978280646374\tand:0.0885995626853321\tHouse:0.08816634481272988\t:0.01\n",
"Mrs.:0.2559016863583394\t.:0.16952138022160035\tand:0.10503699346325997\tMr.:0.09370726085041102\tJ.:0.08705691662761507\tJohn:0.07320352737050535\tH.:0.07240915124461561\tC.:0.06687892276974537\tW.:0.06628416109390788\t:0.01\n",
"to:0.6671208101599866\twill:0.07801255142929903\tand:0.05161757714682944\twould:0.047799932179985086\tof:0.04625473687700093\tnot:0.038572983605527654\tin:0.02731690773700641\tthe:0.017751813771338\tI:0.015552687093026686\t:0.01\n",
"time:0.14395274046311576\tdollars:0.13910016142736772\tup:0.13278126228628923\tnorth:0.11983168611810363\thundred:0.10305696027946308\tmen:0.10213328372565725\tprincipal:0.08432547566643718\twife:0.0828662980201511\tcity:0.08195213201341502\t:0.01\n",
"the:0.21168661632910743\tand:0.17342087587379088\tof:0.14965243031096215\tas:0.14862640424456694\ta:0.08287979349307766\tto:0.07107758859510925\tbe:0.05689152027188907\tsuch:0.04860602071964438\tin:0.04715875016185233\t:0.01\n",
"in:0.22047254977748376\tof:0.21867088681625557\tto:0.10603645220073533\tfor:0.10369691132040391\tand:0.09815872000009652\ton:0.07538494519345876\twith:0.05881818401094934\tIn:0.05688881215019788\tfrom:0.0518725385304189\t:0.01\n",
"the:0.33864946286715597\ta:0.18731739560164837\this:0.1642747255383906\ther:0.09363357424053344\tand:0.05728905097286073\ttheir:0.04301453441047997\tmy:0.03946011176862589\tof:0.03760395589006623\tto:0.028757188710238763\t:0.01\n",
"days:0.23584075624191142\tyears:0.19739605200624624\tweeks:0.1887099309204007\tand:0.10202930929142877\tmonths:0.07075036095375516\ta:0.05286143293104231\tthe:0.05113464634473375\ttime:0.050915785487490664\tlong:0.0403617258229911\t:0.01\n",
"a:0.37998464916707125\tthe:0.21111848908571465\tof:0.1476668278049129\tand:0.06935537613048871\tin:0.044128927102406325\tto:0.03988779185945589\tas:0.03875156346386635\tfor:0.031208706420008128\tthat:0.027897668966075758\t:0.01\n",
"be:0.4254612591778027\twas:0.14998218503498098\tis:0.13238259175324427\tbeen:0.08049710816730049\tare:0.048063200303607514\twere:0.042259882413635104\tand:0.03911756353491624\the:0.03639345206048589\thave:0.035842757554026744\t:0.01\n",
"enough:0.1460197688707853\tand:0.14132991299633987\table:0.12532103140904757\torder:0.12087521672134159\tis:0.10659187402439463\tas:0.09839282102201653\thim:0.08820021934353602\tnecessary:0.0866702738326426\tunable:0.07659888177989588\t:0.01\n",
"the:0.4257514684353325\ta:0.15703197240150663\tin:0.12555579755490257\tthis:0.08109193972782469\tof:0.07822670748954458\this:0.03784042299516794\tand:0.030168556713577266\tthat:0.02990174778084501\tby:0.024431386901298882\t:0.01\n",
"of:0.3055456209113757\tthe:0.20745724859775663\tand:0.08909619969807751\tto:0.07536255720057951\tat:0.07451480802075414\tby:0.07224843492744921\ta:0.057360320794612236\twas:0.054218542331324816\tbe:0.05419626751807021\t:0.01\n",
"and:0.3106065031373411\t.:0.15692935945024153\tE.:0.11747046505092665\t<s>:0.091514441729659\tW.:0.07922679612493481\tone:0.06362715626036866\teast:0.060202109008043084\tof:0.058926459123446163\tMiss:0.051496710115038986\t:0.01\n",
"the:0.5258154566320883\tThe:0.10629154022131458\tand:0.08096140779645052\tof:0.07685411578224863\tthat:0.052617724746385625\tthis:0.05003537809250879\tin:0.034273989713412126\ttho:0.03169354337879757\tfor:0.031456843636793776\t:0.01\n",
"the:0.6465742121962595\tan:0.06319752886136992\tof:0.04888128014491918\tand:0.046172085621971934\ta:0.04377316618495469\this:0.04257888572772764\ttho:0.04073583924576931\tin:0.029311389758875393\tas:0.02877561225815232\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"be:0.2610503116203727\twas:0.19673139727233407\tis:0.15320001400198427\tare:0.08566334184737201\tand:0.07737070923530671\tbeen:0.0759274112744334\twere:0.0748452885724681\tbeing:0.032621050648726495\tnot:0.03259047552700228\t:0.01\n",
"a:0.3495941884967801\tthe:0.21001053557218616\tmost:0.13249562439787196\tand:0.12374948786528701\tof:0.0686106980122803\tis:0.03329395036419142\tvery:0.02529372695740049\tare:0.023947121177111362\this:0.023004667156891333\t:0.01\n",
"in:0.3249776142317823\ta:0.2664938662240866\tIn:0.1643214419629037\tthe:0.14401247718139748\tthis:0.037641487982222416\tand:0.01968571091930121\tof:0.011355571342747438\tiu:0.011300782855224754\tgreat:0.010211047300334022\t:0.01\n",
"and:0.20533957469084954\tthe:0.17816002652873614\tto:0.16190695831275567\tof:0.10941929642865497\twas:0.09225481321500227\tbe:0.07524105874995944\tis:0.06612970506238942\ta:0.05197411262631739\tnot:0.04957445438533503\t:0.01\n",
"State:0.18875338222462548\tstate:0.13745965832968743\tout:0.13362786523863018\tand:0.13124228045062467\tcounty:0.09495650883399645\tor:0.08487401100510762\tcity:0.0793614949457751\ttime:0.0701707247306483\tthat:0.06955407424090475\t:0.01\n",
"A:0.2217622334610307\tJ:0.15648123005225215\tM:0.10956111860406141\tC:0.10356680997450438\tW:0.08934575825197713\tS:0.0835117615794555\tH:0.07855869072343123\tL:0.07723448439900432\tE:0.06997791295428317\t:0.01\n",
"of:0.18891674623564286\ta:0.16859137315150924\tand:0.15411008253264433\tto:0.12731290125729433\tthe:0.11745157559964285\tin:0.10020307176617632\tfor:0.059576564228534544\tan:0.038446842876977534\tas:0.035390842351578036\t:0.01\n",
"the:0.21493819315715432\tand:0.18548748980491458\tof:0.12513780755628087\twas:0.11233110220078989\tbe:0.09873352512849025\ta:0.0792284318572913\tis:0.0678824079480373\tto:0.05499145416599458\tare:0.05126958818104679\t:0.01\n",
"carry:0.2531501453566949\tthrough-:0.22987000183719142\twith-:0.1450204013714821\tcarrying:0.08293987265271313\tpointed:0.06672683102072541\tand:0.059369703054731424\tsent:0.05515216574947199\tbrought:0.049249105518804445\tcarried:0.04852177343818517\t:0.01\n",
"act:0.15966095956306736\tState:0.12039189118226258\tday:0.11807928057554104\tone:0.10429807285048814\tmembers:0.10333857278579202\tstate:0.1018033686056309\tAct:0.09626209419486574\tout:0.09407838717213372\tpart:0.09208737307021841\t:0.01\n",
"to:0.27131876282847417\tof:0.26428924869496234\twith:0.14522073019098308\tfrom:0.07316815255958452\tby:0.0641494212647684\tfor:0.06264724645321468\tamong:0.0418323305300907\tand:0.03750947407318884\tin:0.029864633404733363\t:0.01\n",
"which:0.1943879719724398\tthat:0.1406643404762325\tit:0.1310923228450651\the:0.13048217497520626\tIt:0.11192339317387552\tand:0.09610147958818305\twho:0.07880307998328155\tThis:0.05830992726528164\tHe:0.04823530972043459\t:0.01\n",
"the:0.23064724666052064\ta:0.1967953146854406\tand:0.1682893183608883\tof:0.11170195323785434\tto:0.08720853330185761\tin:0.06125270603163709\tthat:0.04987844435607797\twhich:0.04223592380016907\tan:0.041990559565554295\t:0.01\n",
"of:0.3218428744555628\tand:0.2091482379925787\tto:0.13166238250981657\tby:0.0943710387983347\t<s>:0.05768361722420554\tin:0.051519208387880974\tfor:0.04816684096956286\tthat:0.038558493491546365\tat:0.037047306170511475\t:0.01\n",
"instituted:0.6128883438177454\table:0.08002843990680979\tis:0.04625006924377651\thim:0.04383876404739831\ttime:0.04301255623035381\tand:0.042256868169605825\tunable:0.04091818884625903\thave:0.040586786462113826\tme:0.040219983275937614\t:0.01\n",
"was:0.25506497532324895\tbeen:0.16268187022837624\tbe:0.15902257049647467\twere:0.10428751024513623\tis:0.09475091050474264\tare:0.06270313922776707\tand:0.056804529195146815\thad:0.04994394038073975\tbeing:0.044740554398367695\t:0.01\n",
"the:0.4173213134971269\ta:0.1716643861540747\tand:0.10316248905280999\tof:0.10206828724744137\tThe:0.07700780305490174\tin:0.03711691874525729\tmost:0.03077121062534241\ttho:0.027891462076195722\tby:0.022996129546849785\t:0.01\n",
"and:0.2344421076832057\tI:0.1458697961450589\tit:0.1195241725675152\the:0.11628906581079981\tIt:0.09657089670892899\tthat:0.08526740876132055\twhich:0.06446920060066727\twas:0.06393441015011891\tbe:0.06363294157238464\t:0.01\n",
"in:0.3885687153645682\tof:0.1589142309507504\tIn:0.08811608697477342\tand:0.08175223408630554\tto:0.06955644366975634\tfor:0.0631673394908955\ton:0.06211980081446976\tthat:0.04406955464175644\tat:0.03373559400672445\t:0.01\n",
"a:0.4024564509962842\tthe:0.31113084993498347\tthis:0.07366312879601304\tThe:0.057277370784721976\tno:0.042080835757577616\tany:0.029633470383283955\tThis:0.028937477931996067\tthat:0.023151105033684578\tNo:0.02166931038145524\t:0.01\n",
"and:0.17722291469113738\tof:0.1320986679916092\tput:0.12922151543728752\tas:0.12006344742945622\tmake:0.10394397296081156\tthat:0.09994954798090332\tfor:0.08271405305777428\tto:0.07588001229998377\twith:0.06890586815103679\t:0.01\n",
"intoxicating:0.42948980689684\tof:0.17738436133414348\tmalt:0.12672975116908605\tspirituous:0.0736838919977128\tin:0.05233215864467641\tthe:0.04280461442419639\tfor:0.037443023101075425\tand:0.03088694544767422\tall:0.01924544698459523\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"he:0.2485873208889854\tI:0.175167107937807\twho:0.15651398119890866\tthey:0.1115344376261025\tshe:0.07153583335893339\tHe:0.06425495146783065\thave:0.06045251581970676\twe:0.051582790048191135\tand:0.050371061653534485\t:0.01\n",
"day:0.1878181950533248\tnumber:0.1518165014952335\tline:0.14371374114410246\tside:0.13010264942802802\tpart:0.10126096195089972\tstate:0.08653407196235346\tout:0.07039731021378941\tcorner:0.06702633482831927\tcase:0.05133023392394934\t:0.01\n",
"of:0.2201221551404213\tto:0.14757596935276177\tin:0.11100691274296662\tby:0.09385559172771334\tand:0.09367071153032629\tas:0.09115358778055334\tat:0.0825025903855701\twith:0.07786678334324992\tfor:0.07224569799643737\t:0.01\n",
"of:0.42551535764962667\tin:0.105361918772192\tfor:0.09919708394973868\tto:0.09097654363016522\tthat:0.07620599292303544\tand:0.06676117730482617\twith:0.053034852630764635\tby:0.03698307730636231\tIn:0.03596399583328874\t:0.01\n",
"could:0.2089222682621685\twould:0.20427583762890694\tdid:0.1363549287453858\twill:0.1351422776034908\tdo:0.08175122231180978\tdoes:0.07803545085872958\tshould:0.05578541577046722\tshall:0.03406518912838425\tmay:0.03258815521764581\tcan:0.023079254473011405\t:0.01\n",
"and:0.18171675647716873\thim:0.1242324417741016\tfeet:0.117575498348393\ttime:0.10967517284597857\tas:0.10550157450322781\tthem:0.09669061669164172\tup:0.09518485408813643\tright:0.08005233980837703\tis:0.07937074546297501\t:0.01\n",
"he:0.23121404532058468\tit:0.21516344784232738\tthey:0.13270572375260759\tIt:0.11860374360144835\tI:0.0860627738032671\tthat:0.05422878703492139\twe:0.05210788688105833\twho:0.05089663672489061\tshe:0.04901695503889457\t:0.01\n",
"at:0.5886563656167506\tAt:0.14697037135362348\tabout:0.12093742247625239\tAbout:0.04436729218153659\tof:0.03420065580956538\tand:0.017459849658828974\tfeet:0.013055223636934194\tfor:0.012232113535846736\tor:0.01212070573066173\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.4093233558040992\tof:0.14347176912824763\tand:0.09918323127245089\tthat:0.08389521681892108\tThe:0.07051764743152035\ta:0.058349880834651466\tMr.:0.05600187837864818\tor:0.0372170226949604\tno:0.03203999763650096\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"of:0.2709984430877651\tto:0.18816030392489716\tthe:0.12555560953751105\tand:0.11852902333954986\twas:0.06675377362472638\tat:0.05836527014777883\tby:0.056443892401187266\ton:0.05442127833351209\ta:0.05077240560307232\t:0.01\n",
"in:0.17932091904105465\tup:0.1215966693700481\tgood:0.11999391698083073\tlife:0.10654902722748166\thealth:0.1019047000422084\tmen:0.10088903037918391\ttime:0.09191434758658135\tstrength:0.08469654572592256\tcity:0.08313484364668866\t:0.01\n",
"the:0.5028203628907527\tand:0.12633623502399233\tThe:0.09674317006857185\ta:0.07154285732119056\tof:0.06408299114283496\ttheir:0.035581482196446676\this:0.035307927326419776\ttho:0.03165855809079877\tall:0.025926415938992378\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.3732728740085813\tand:0.1485077783970547\tto:0.13895234730832784\tan:0.07439344067426598\ta:0.06957204195587159\tof:0.06329096308871245\tin:0.057243470552433985\tThe:0.034701420514978626\tthis:0.03006566349977355\t:0.01\n",
"and:0.30150181542805676\tsucceeded:0.10274438105042286\twas:0.10185615519519328\tis:0.09970501232309775\tbe:0.08555184996959278\tit:0.08489174891435752\tthat:0.08476173864785717\tare:0.06577723207608793\tthem:0.0632100663953339\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"Mr.:0.23175500774945862\twife:0.11733222205447784\t;:0.11368081958922258\t.:0.10229893126635657\tWilliam:0.09169701853550072\tmen:0.09111258948661277\tRobert:0.08470775671599629\tJohn:0.07923358613814785\tSmith:0.07818206846422673\t:0.01\n",
"and:0.30947297609369967\tat:0.23286087122812335\tthe:0.10314929523616576\tof:0.09928122536991127\tabout:0.053274181006935796\tthan:0.05313354301896458\t-:0.05077538276593975\t.:0.04831715440203377\tfor:0.03973537087822607\t:0.01\n",
"the:0.24897615292696776\tof:0.19766837159290634\tand:0.17876525525682663\tto:0.128275376378825\tin:0.06491360691034295\tor:0.050003660337162574\t<s>:0.042779800035188144\tby:0.040222005133297926\tfor:0.03839577142848285\t:0.01\n",
"they:0.2821235785238613\tthere:0.13444052315549704\twho:0.11481698600164558\tand:0.10256013960526965\twhich:0.08050099590242764\twe:0.07645851500678594\tmen:0.07188099847629469\tThey:0.068044380993973\tThere:0.05917388233424526\t:0.01\n",
"of:0.22509389762513524\tto:0.15983636858147227\tand:0.1423536026822462\tin:0.09941539122985522\twith:0.09271152663599014\tfor:0.08276347247606507\tall:0.07281782353184696\tis:0.057692310240745615\tby:0.05731560699664328\t:0.01\n",
"and:0.2165381807466691\tthe:0.18724203922351226\tof:0.14904754853675403\tto:0.11548725602063734\tbe:0.07888300539379994\twas:0.07500647985195938\tin:0.06698318540006265\tis:0.055634215838476345\tare:0.04517808898812875\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"feet:0.16806823629364645\tentitled:0.12440338348081183\tup:0.11427840402807636\tamounting:0.11025581526649776\twent:0.10851599478240109\tand:0.10786830750332975\thim:0.10022868141875191\tas:0.08106754940562413\tthem:0.07531362782086076\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"<s>:0.24643505364970167\tthat:0.22567481111489607\tand:0.11986402130738497\tit.:0.10509411761497947\tbut:0.07308474448235741\tas:0.06237988616146023\tthem.:0.06028718069699419\tcountry.:0.04939834692648971\tof:0.04778183804573639\t:0.01\n",
"<s>:0.5121723846671667\t.:0.12730135601713372\tit.:0.0798051711604242\thim.:0.07089925602813624\tthem.:0.04707178778151718\tMrs.:0.0407753810969984\ttime.:0.03817950503260038\tcity.:0.03811119066869773\tMr.:0.035683967547325314\t:0.01\n",
"of:0.3570403612938695\tto:0.12063419259462445\tin:0.11497733268098577\tfor:0.0856065777205728\tand:0.08234035324942196\tthat:0.06539181917781645\ton:0.06412736243371937\tall:0.05231314023142514\tby:0.04756886061756446\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.6093858295707175\ta:0.08646090680230333\this:0.057317844700549174\tof:0.050091574054541926\tand:0.04398246105634378\tThe:0.040883163350329356\ttheir:0.03645901345841604\tmy:0.03379143904342869\ttho:0.03162776796337015\t:0.01\n",
"and:0.16698146172987727\tto:0.15728230301477966\tthat:0.13908943993487738\twill:0.13541465682804538\twould:0.11972156308277337\twhich:0.0979955233827294\twhen:0.0627836923132041\tbut:0.06035394003712347\tshould:0.050377419676589874\t:0.01\n",
"a:0.5202244933442349\tthe:0.32681222460774695\tThe:0.035584290552299926\this:0.024853943071729365\tof:0.01977501789257896\ttho:0.017890376182770628\tand:0.015718466039970874\tno:0.015399521826614377\tany:0.01374166648205389\t:0.01\n",
"the:0.7693662488712025\tThe:0.06857698505744954\ta:0.05778574722219927\ttho:0.034908263492369404\tof:0.02000249394282586\tand:0.017711158599363855\ttbe:0.009608886794852103\tin:0.0062960962427652456\tvitiated:0.005744119776972096\t:0.01\n",
"of:0.23933474475008412\tto:0.1492751967387238\t.:0.12364975969228276\tin:0.12363602657950748\tand:0.09421953532028834\tthe:0.08584187129017176\tby:0.07272487040998928\tMrs.:0.05854445791760301\t<s>:0.04277353730134945\t:0.01\n",
"of:0.32640688073166885\tthe:0.2746521185922326\tin:0.11542712589259008\tto:0.07318470109699242\ta:0.05908335443142267\tand:0.04060156722304569\ton:0.039387004585672014\tat:0.032551072026947396\tfrom:0.028706175419428288\t:0.01\n",
"and:0.5217049534422644\tthat:0.15419765008625483\tand,:0.072114153400205\tthat,:0.062432371481467366\tbut:0.057219152621491076\tAnd:0.03887564395214609\ttime,:0.029602178074934222\tthem,:0.02861921937814904\twhich,:0.025234677563087976\t:0.01\n",
"the:0.39319515931297766\tand:0.12915457613177952\tof:0.10105636806934154\tbe:0.08586265197241066\tto:0.06650129758854655\twas:0.06478827149127847\tin:0.05344773640069162\tis:0.05104260864654071\ton:0.044951330386433466\t:0.01\n",
"the:0.508725683427426\tthis:0.1367132317547552\ta:0.10203627698282837\tThe:0.08053696240310998\tthat:0.05942442180325901\ttho:0.03461156806879609\tno:0.02843535022512318\tpresent:0.022381667692909998\tany:0.017134837641792234\t:0.01\n",
"and:0.2739885693770383\tto:0.19745983851003926\tof:0.12375147340396658\tnot:0.08388555375057317\tthe:0.07716758999201043\tas:0.06981759943263864\tfor:0.05881483337207526\tis:0.05590071825745212\twas:0.049213823904206096\t:0.01\n",
"to:0.6043812645927766\twill:0.11787479466733024\twould:0.06395919182257691\tyou:0.03935641915563961\tnot:0.03924112525625143\tthey:0.037928209298054766\tand:0.03434465888560473\twe:0.028315394408063823\tshould:0.024598941913701808\t:0.01\n",
"new:0.13363279883328663\tmade:0.11795375316227968\t;:0.11592434004099786\tlarge:0.11254051600585656\tprincipal:0.10882619230432765\ttime:0.10685654844607204\tcity:0.10051975805723987\tland:0.09934464881232145\tlaw:0.09440144433761816\t:0.01\n",
";:0.19144271596780793\tit,:0.16073763154027443\there:0.12049437696626474\thim,:0.11804649775025872\tthem,:0.09400661208989028\thim:0.08015674650162938\tup:0.08012724368830139\ttime,:0.07692296664228485\tin:0.06806520885328828\t:0.01\n",
"is:0.24454835676571696\tbe:0.18118552929063292\twas:0.1233726894410281\tare:0.10358784880628129\tand:0.08915062343655587\tfrom:0.08650520441051683\tof:0.06423367245153898\tnot:0.05213398527005322\tit:0.04528209012767593\t:0.01\n",
"of:0.28456873741257405\tto:0.16182437273352052\tin:0.10996950048110243\tand:0.09708273022398335\twith:0.09400151816591866\tthat:0.07802695539842992\tfor:0.0617520771589378\tby:0.05958614270601376\ton:0.04318796571951965\t:0.01\n",
"and:0.27863896335570826\ttogether:0.12349200465067216\tit:0.10935421957881501\thim:0.10056753392149147\tdealt:0.08373456189809875\tthem:0.0785001085656422\tdo:0.07804983265425736\tcomplied:0.07261495932768199\tcharged:0.06504781604763303\t:0.01\n",
"a:0.2624774583789531\tthe:0.199560559085454\tof:0.17043740037627544\tin:0.08941420754259406\tand:0.08631124462137402\tto:0.06967574507524112\tan:0.054745917043327826\tfor:0.03054127226813062\this:0.0268361956086497\t:0.01\n",
"to:0.7462775136474078\twill:0.05960736066923649\tand:0.05461222132398947\twould:0.02555679883359402\tcan:0.024364844569397612\tcould:0.022728472927166437\tshall:0.020950203855402635\tnot:0.01843617973960699\tmay:0.017466404434198644\t:0.01\n",
"of:0.33647788306603615\tand:0.16820868855449997\tknow:0.11228045995785894\twith:0.07223834347361588\tsee:0.069900866417691\tto:0.06398194624151485\tis:0.060440799048297175\tbut:0.05720775580179687\tas:0.04926325743868923\t:0.01\n",
"of:0.2799783373682724\tin:0.16749294801809156\tto:0.143573599287572\tand:0.08569727138304978\twith:0.0791225005903347\ton:0.07728733411276338\tthat:0.053875471566518285\tfrom:0.051555476851136116\tfor:0.05141706082226177\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"at:0.23861372412503445\tand:0.1812333671357339\tNo.:0.1536955387261185\tthe:0.07853559306902819\tan:0.07621357714161779\tof:0.07603658630895334\tthat:0.06309495345575501\tNo:0.0612887091706573\t<s>:0.0612879508671016\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.3529099084051617\tof:0.19549563774791123\tand:0.1049524605257024\tto:0.08688921559365344\tin:0.06708309474613364\ta:0.05005009487299556\tbe:0.045356097724804256\tfor:0.04386168236374957\twas:0.043401808019888403\t:0.01\n",
"at:0.22606604972269348\tof:0.20393953051698147\tin:0.16750080429008354\tto:0.09178212860210258\ton:0.07338281661280806\tfor:0.07328046460725855\tand:0.0653471204622718\tthat:0.045503935447936676\tfrom:0.04319714973786389\t:0.01\n",
"and:0.28942820370253297\t<s>:0.12895041364806356\tin:0.11224014974718076\tto:0.10215245109159482\tNew:0.09311853221000725\tI:0.06838454769667192\tMr.:0.06772882796370651\tby:0.06697986256627117\tof:0.06101701137397102\t:0.01\n",
"a:0.3180793943671705\tvery:0.13623265780526875\tis:0.12108078561759074\tthe:0.11288192887813814\ttoo:0.08643485353349407\tbut:0.060550970510645036\tso:0.05607350070094782\twas:0.055542924041420534\tare:0.043122984545324525\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.2848316411696297\twas:0.1355813173329022\tarrived:0.12495822393002634\tis:0.1206974122436833\tappear:0.07265266432577422\tare:0.06659714454613586\tup:0.06596998592683308\tcame:0.0622361375378454\tmade:0.05647547298716985\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.3462166517470585\tof:0.1700769500293815\tand:0.15230565755197603\tin:0.06730041244020715\ta:0.0671692648752153\tto:0.05814564063698488\this:0.047999682569321245\tbe:0.04082700137846194\ttheir:0.03995873877139317\t:0.01\n",
"and:0.2540443968115062\tless,:0.18001827633923176\tand,:0.12910585451947085\tyou,:0.08954805783527071\tthem:0.07635527054989227\tas:0.07182598760721483\t;:0.06918930011501703\tare:0.0615566638806328\tmade:0.05835619234176347\t:0.01\n",
"the:0.34972207376421444\ta:0.1886624422570472\tof:0.1753056174083771\tno:0.06283443453113914\twith:0.05799356349242507\tand:0.05114452209629551\tThe:0.04147672952956449\tthat:0.0346200249216317\tany:0.02824059199930514\t:0.01\n",
"of:0.22893608170436042\tthe:0.2107128400357185\tand:0.1857615605220577\tto:0.11819991257172018\ta:0.06734643833231155\tin:0.05657692857097244\tby:0.04452071835434858\t.:0.04054773144581316\tfor:0.03739778846269755\t:0.01\n",
";:0.27119707986488517\tand:0.21096057148478056\t<s>:0.09700554096338587\t.:0.07602272694356356\thim,:0.07431512114832871\t,:0.07049655827294198\tthem,:0.06852971752052382\tit,:0.0640656279247657\t1:0.05740705587682464\t:0.01\n",
"they:0.299954136663756\tthere:0.12336587267808473\tand:0.11314861125863297\twho:0.10672175143008082\twe:0.08393458953724554\twhich:0.08312392011761544\tThey:0.06637683112029098\tThere:0.057531833544174966\tthat:0.05584245365011847\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"that:0.38290738192185925\tand:0.24969458719959275\tbut:0.08277960045876116\twhich:0.05314302687189341\twhere:0.05295758215877723\tif:0.050129890186682326\tas:0.04196917135546931\tBut:0.03825297840239077\tIf:0.038165781444573874\t:0.01\n",
"be:0.34654371142729246\tand:0.13308462691639292\twas:0.11284512967759905\tis:0.10958557215998642\the:0.08614662801466029\tare:0.07758564977915731\twere:0.05107046818901304\tbeen:0.0439612733809223\thave:0.029176940454976156\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.5999503355783594\ta:0.09441017749364912\tThe:0.07709912819886228\ttho:0.04335844370065355\tgreat:0.04188060440360745\tlarge:0.041713906344092035\tand:0.04022001229770632\tgood:0.02733457627760064\tby:0.024032815705469186\t:0.01\n",
"of:0.511210803409102\tfrom:0.08728021956375094\tin:0.0820962469048954\tto:0.07050158486530407\tat:0.07038826672038159\tfor:0.0596388361688327\tand:0.04665856918459927\tthe:0.0312808595781973\tIn:0.030944613604936756\t:0.01\n",
"and:0.29590746995299394\tweek:0.20203591750483602\tone:0.09856137374062376\tup:0.08524969694082674\twork:0.0692760864299584\ttime:0.06854347657598218\twas:0.06033937584894617\troom:0.05524891549584819\tit:0.05483768750998453\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"he:0.21236976584642633\twho:0.15091908100628376\twhich:0.13423069933853982\tthey:0.1114226506626021\tit:0.10310378443593025\tthat:0.08782466281035546\tI:0.07127377388196328\tthere:0.06045635920866448\tshe:0.058399222809234465\t:0.01\n",
"the:0.46576492322984975\this:0.10234883381816587\ta:0.09264318533602997\tthis:0.0664229926660077\ther:0.0584364584329548\thealthy:0.05765004993757077\tgood:0.05199041126892855\tand:0.04768877301717236\ttheir:0.0470543722933202\t:0.01\n",
"was:0.16088072202995246\tand:0.1371493363278058\tbe:0.1368660202805296\tbeen:0.13341930095636764\tare:0.10967063390028126\tis:0.0878435099415715\tthe:0.08571444902383835\twere:0.07008512550949265\tof:0.06837090203016079\t:0.01\n",
"a:0.2558910027910293\tyoung:0.17274448724576494\tbetter:0.13741908124178323\tof:0.11122809688828755\tthe:0.08562301738597064\tother:0.06459601801180377\twhite:0.06366985210434427\tany:0.052506906462729104\tin:0.046321537868287174\t:0.01\n",
";:0.19867792959144154\tit,:0.13873949349506712\thim:0.10153404351449945\tin:0.10101992240408268\tthem,:0.09563977075018759\tit:0.09563508187166943\thim,:0.09418332390823186\tand:0.09121356555636861\tme:0.07335686890845175\t:0.01\n",
"and:0.21426285053299027\tof:0.20265915305716187\twas:0.15542659537502876\tis:0.09899687051373142\tare:0.0797471448772987\twere:0.07206825686557837\tfor:0.05953365128748507\tin:0.05842261743222282\tone:0.04888286005850265\t:0.01\n",
"J.:0.13934519687762478\tMrs.:0.13316587149760076\tJohn:0.12892597091609245\tand:0.12012129548638388\tW.:0.11106019597166729\t.:0.10869134162632813\tA.:0.09338559989591323\tof:0.08204388105948765\tMr.:0.07326064666890188\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.22646225889984659\tto:0.17936631755545326\tof:0.16273196773080137\tthe:0.14441230832401447\tin:0.06671702552099561\tbe-:0.06590235747966393\tthat:0.05175613165960594\twas:0.04831311007520194\tfor:0.04433852275441699\t:0.01\n",
"and:0.18162378161506834\thas:0.150328848045306\tbe:0.12808049983329878\thave:0.12478936844945697\the:0.11752924616354085\thad:0.0946146197791457\twas:0.07266614531512906\tI:0.06700941340996255\tis:0.05335807738909167\t:0.01\n",
"and:0.391227080889581\tmade:0.11393007743285676\tbut:0.09254453484258374\tor:0.08745817728507764\tthem:0.06907013496078816\tis:0.06323170573957457\tthat:0.06211245571167873\tbe:0.060813534893146184\twell:0.04961229824471318\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.4027283714260142\tin:0.1142590909872253\tto:0.10881707022405467\tand:0.09331818602622438\tthat:0.08439249385569532\tby:0.05353742964641413\tfor:0.05047338035526312\tIn:0.049423751187319453\tfrom:0.03305022629178919\t:0.01\n",
"the:0.292637807673609\tand:0.2213087906255793\tof:0.11863059456932074\tin:0.069392364097213\twas:0.0693297847939321\tto:0.06048329639524874\tfor:0.053710583531059\tthat:0.052451811278698544\tis:0.052054967035339364\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"and:0.1842951212422878\tthence:0.12666124434661694\tcompared:0.12463267219739377\tfilled:0.11770960095871036\tcovered:0.11662586487994447\tconnected:0.09580787906734202\ttogether:0.0895597442314721\tcharged:0.072469343998234\tmet:0.062238529077998504\t:0.01\n",
"a:0.3398965498551552\tthe:0.11713887178914208\tthat:0.114404048788143\tper:0.1036166796202319\tevery:0.09323642285237213\tone:0.07896922790716034\tthis:0.0763913682130256\tsaid:0.04097899100515082\tto:0.02536783996961895\t:0.01\n",
"be:0.14877296574160664\tand:0.1465018593821292\thave:0.142664183205454\twas:0.11667704133931292\thad:0.10204952867590343\tnot:0.09159916149803168\thas:0.09156698311153703\tto:0.07589108486159067\the:0.07427719218443439\t:0.01\n",
"<s>:0.5619970252337455\t.:0.09156727823160848\tit.:0.08614950193340987\tthem.:0.06451952160031797\tday.:0.04683290878296805\ttime.:0.03969312381958453\thim.:0.03524126013264805\tyear.:0.03251062132864089\tcity.:0.03148875893707653\t:0.01\n",
"and:0.2458216454679346\tthe:0.19221240549976226\tof:0.17886404699877267\tin:0.09462615788883734\tto:0.08225553943246287\tfor:0.0674439796929097\t<s>:0.05670319795781503\tThe:0.037573132360953256\tby:0.03449989470055211\t:0.01\n",
"about:0.1736993944435801\tand:0.15237538542351003\tof:0.1446913925936796\tor:0.12365829462250566\tthan:0.1174686258790322\tfor:0.08462187217979024\ttwenty:0.0729232289689583\tat:0.060648620376157876\tto:0.059913185512786044\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"has:0.16135374414388173\twas:0.1591719595597573\thave:0.1444291973435016\tand:0.12778795867497272\thad:0.12219011497586481\the:0.08778757401311789\twere:0.06582157662482852\tbeen:0.06074101209833229\tbe:0.06071686256574321\t:0.01\n",
"of:0.26648110125492797\tand:0.226972955076138\tthe:0.14563530949121084\tto:0.10029355109953574\tin:0.05928704370861588\twith:0.05082525737484379\tfor:0.0497552846057678\twas:0.046497982141860225\ta:0.04425151524709973\t:0.01\n",
"of:0.40982992376827093\tat:0.15166339537892132\tin:0.11167677821575571\tto:0.10000984518739774\tand:0.06416423285539824\tfor:0.055679595248318704\tby:0.03565980274265496\tIn:0.031412995166591184\twith:0.029903431436691035\t:0.01\n",
"and:0.25515568692804863\tthat:0.11646575451359605\twhen:0.1030112136589557\tat:0.10079608719257258\tI:0.09504936217126184\twhich:0.08870396340638374\tthe:0.08516287014757418\t<s>:0.07659810179213326\tof:0.06905696018947409\t:0.01\n",
"the:0.35861451900589214\tMr.:0.1291559629555713\tof:0.1199072506314825\tThe:0.10475232618943306\tand:0.0967371407604443\tthat:0.07632406646832235\ta:0.046895937127093126\this:0.030747167493934736\tMrs.:0.026865629367826563\t:0.01\n",
"and:0.19198807372812365\twas:0.19172387832443338\tis:0.173062523443204\thave:0.08076057753104786\tbe:0.08041964354041867\tnot:0.08038530924589625\tare:0.06652668714115854\thad:0.06557256714139699\tbeen:0.059560739904320696\t:0.01\n",
"a.:0.16878814459465954\tp.:0.16084906310576294\tp:0.12401508233442923\tof:0.10757571404171358\tand:0.09951867286641414\tthe:0.09884118937354296\ta:0.0884602437276111\tin:0.08250194930424502\t.:0.059449940651621465\t:0.01\n",
"much:0.28641846759128514\tpart:0.23262008837886392\tcopy:0.134890319977524\tplat:0.12676460056100164\tpayment:0.05081738714482689\tportion:0.05072008966830258\tsurvey:0.04156989604250639\tholder:0.03587450395846622\tnotice:0.030324646677223364\t:0.01\n",
"and:0.23790265674568373\tthem:0.12900124241365468\twas:0.11993164499191482\tare:0.10371105674743307\tlook:0.10025498902218322\tit:0.0770066807945762\tis:0.07543007297823318\tor:0.07386423758878817\thim:0.07289741871753298\t:0.01\n",
";:0.2175584088346811\tcity:0.17941877769686582\tMr.:0.11909440171705872\tState:0.09018689681811025\tMayor:0.08744010675712653\tin:0.08633955778210549\tmen:0.07099301644500132\tMr:0.07016410913090161\tmortgage,:0.06880472481814905\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"city:0.19191111312101988\tright:0.14553573973701678\tmen:0.11477670473895751\tin:0.09495117636455952\tNorth:0.09221678701471331\twife:0.09123508151811074\tfriends:0.09065238707498202\ttime:0.08508186639169973\tnorth:0.08363914403894063\t:0.01\n",
"of:0.25943817080076476\tabout:0.15525733591114493\tand:0.13996797351496781\tor:0.10358165156985566\tfor:0.09185194373218838\tat:0.07368606040284305\tto:0.07119589486799942\ta:0.04764144065167802\tthan:0.04737952854855799\t:0.01\n",
"and:0.33651200696739575\tto:0.18561280114709738\tof:0.08386717831522203\twhich:0.08237112197637284\tre-:0.06907863865464145\tthat:0.066126456572214\tfor:0.05715061258578536\tor:0.05589309360209148\tnot:0.053388090179179656\t:0.01\n",
"at:0.2736105964136109\tof:0.1806635740947798\tto:0.17608420929394716\tin:0.12326766119201565\tand:0.07822248243463406\tfrom:0.050130018734745284\twith:0.04808123429974606\tfor:0.031428204394069584\tby:0.028512019142451515\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"a:0.4287411984423431\tthe:0.24284375271535386\tof:0.08257026465097338\tand:0.05842979511584263\twith:0.04928445493473254\tThe:0.04359052021934931\tvery:0.03361037080407593\tso:0.02725040887299281\tby:0.023679234244336548\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"he:0.23779116259874097\tit:0.1423874192728929\tand:0.13938385698609065\twhich:0.12136892724549826\twho:0.10394056016266996\tIt:0.08725906579136473\tHe:0.05786062035005206\tthat:0.05276040576368247\tthey:0.04724798182900788\t:0.01\n",
"is:0.24414522809560332\twell:0.20312681843225824\tbe:0.1395493322425759\twas:0.08593936342546316\tnot:0.07910460228104879\tbeen:0.06807726227693138\tare:0.0616780709051422\tand:0.06120280740099837\thave:0.04717651493997867\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"I:0.21531998169734332\twho:0.13212487545517496\tand:0.12667992089804825\twe:0.11757456722808408\the:0.11755674097694692\tit:0.09862724730554469\tthey:0.07727818195304799\twhich:0.06164243790512455\tyou:0.04319604658068519\t:0.01\n",
"of:0.3819744924780211\ton:0.12688766158147807\tand:0.10570064672579753\tto:0.07571566713192038\tfrom:0.06896687579169444\tin:0.0626390801598244\tfor:0.059931412789093544\tby:0.05410342593392709\tat:0.05408073740824353\t:0.01\n",
"and:0.17500364824947054\tis:0.1402727321146912\table:0.12356818149555629\tnot:0.11661373402109318\thave:0.09433532846680512\torder:0.09113468269541869\tenough:0.08873686667098968\thad:0.08057138389203317\twas:0.07976344239394212\t:0.01\n",
"in:0.2291796231230006\tof:0.19894604768114812\tto:0.12894122755459386\tfor:0.0981401666214376\twith:0.0799494179447224\tfrom:0.07786568636192283\tby:0.07136739601410988\tat:0.053415232000225306\tIn:0.052195202698839635\t:0.01\n",
"pow-:0.2133587713313784\tnev-:0.1825719280416908\toth-:0.16964742272657238\tmoth-:0.09271846926398263\toth­:0.08482871771780633\tanoth-:0.08432167628527902\tpow:0.06871550550790681\twheth-:0.04884780553872171\tprop-:0.04498970358666182\t:0.01\n",
"and:0.431131794726163\tas:0.12828225984543234\tthe:0.08089558397421483\thim.:0.07453729193118142\t<s>:0.06806883936477305\tit.:0.06459054197860709\tthat:0.06114425634135859\tthem.:0.045499133222828635\t.:0.03585029861544117\t:0.01\n",
"to:0.3278313615087625\tof:0.18980364323686777\tas:0.11499269125443524\twith:0.1106211996957376\tfor:0.06913799505328923\tupon:0.0657125575979191\ttells:0.04258192467168854\tand:0.03946043221164841\tfrom:0.02985819476965173\t:0.01\n",
"the:0.3059003130589779\tin:0.2271197701817613\tof:0.11744468364179908\ta:0.11698523276518462\tIn:0.06083945966304753\tand:0.05134978341910975\tthat:0.039128035379286524\tan:0.03561882012839445\tfor:0.035613901762438865\t:0.01\n",
"be:0.15922515511435362\twas:0.14207793697422408\tand:0.13842799376769035\tthe:0.10382843282146306\thad:0.09686151016404441\thas:0.08959109272006688\tto:0.0871138071576565\the:0.08709205669795313\thave:0.08578201458254792\t:0.01\n",
"the:0.6977394256623825\tof:0.07851307377977018\tState:0.04282912087452237\tat:0.03933239537576643\ttho:0.033371101969208054\tLake:0.0290076778254614\tNational:0.025115348363815748\ttbe:0.023178465534929946\tThe:0.020913390614143452\t:0.01\n",
"her.:0.25119787592001874\t<s>:0.2142669692726753\tit.:0.1326014635929581\thim.:0.09613761419204976\tthem.:0.0808475397517707\tlife.:0.05862595133429037\tyears.:0.05758376660528883\ttime.:0.05339870036277978\tday.:0.045340118968168225\t:0.01\n",
"was:0.27143700055634273\tis:0.2125529966181908\tand:0.11361857772732542\tare:0.08205112953516054\tof:0.07345502136406575\tbe:0.07065495393919224\twere:0.06503615336365011\tas:0.05416427851334184\tmuch:0.04702988838273058\t:0.01\n",
"I:0.21623072348169672\twe:0.16777123601194352\tthey:0.12362096103881598\tWe:0.09602625993578803\twill:0.08488548580878909\twould:0.08343257151205331\twho:0.0795945158415882\tto:0.07788581964555237\tyou:0.0605524267237727\t:0.01\n",
"the:0.7516228402097065\tat:0.09196047064293453\tThe:0.06230600201797769\ttho:0.025163780627961155\tAt:0.022328030410014587\ta:0.011877913584526252\ttbe:0.010505405698804045\this:0.009986104467623979\tits:0.004249452340450998\t:0.01\n",
"the:0.24532168858997558\tand:0.16201373497773278\tof:0.1480249964756765\tto:0.09143878973251968\ta:0.09134777440121443\tis:0.07327943306749635\twas:0.06763514483225813\tbe:0.06123111571734052\tare:0.049707322205786164\t:0.01\n",
"of:0.24095622101005232\tthe:0.175739177017654\tand:0.1442987807662856\tin:0.13674037881311335\this:0.08584430492500164\ta:0.061582023436519195\tto:0.05044325411634326\tthat:0.047522768776468195\tthis:0.04687309113856258\t:0.01\n",
"will:0.3154466520894114\tto:0.2264733793354384\twould:0.12296289794452307\tmay:0.07579629236626322\tshould:0.0686246315292634\tnot:0.052475289978544296\tshall:0.044997170583159996\tmust:0.04141487298976131\tcan:0.02417597625730297\tcould:0.017632836926331833\t:0.01\n",
"he:0.22480229380192837\tit:0.17485728277577847\tthey:0.12397626271710332\tI:0.10874733808034656\tthat:0.0944115016573233\tIt:0.0934061924792438\twe:0.05704965258936926\twhich:0.05692367062721336\tand:0.055825805271693715\t:0.01\n",
"the:0.4503990754649263\tof:0.18083781866960355\ta:0.14897493105151557\tin:0.040944372197843894\tThe:0.04081850209003094\tour:0.04058997886855958\tand:0.0366608881868615\tto:0.026302090204388538\tfor:0.024472343266270156\t:0.01\n",
"of:0.5951568688745346\tto:0.11832347747494426\tby:0.05212401260695768\tthat:0.051545350017407274\tin:0.047388042610404406\tfor:0.041628243479646256\tand:0.03092296246503508\twith:0.030685252742550524\tat:0.022225789728520073\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.651905353640497\tand:0.08505684509534249\twill:0.07734174491232139\tnot:0.04608386031038296\twould:0.0425383596444176\tTo:0.030470447502275826\tcan:0.022114929029733048\tI:0.018057142122855755\twho:0.01643131774217392\t:0.01\n",
"city:0.14822362917769935\tpart:0.12666926887831928\tState:0.11535755193956068\tstate:0.10799676255269045\tBoard:0.10794595169740186\tday:0.1063839525909072\tside:0.09966821445569861\tline:0.09917006123925502\tout:0.07858460746846758\t:0.01\n",
"the:0.484571456402947\tThe:0.2525453099584327\ta:0.0964304727930188\this:0.03190227104528988\tthat:0.027604479769750393\tof:0.02735486281384008\tA:0.0241913678857585\ttho:0.022800666704257268\tsaid:0.022599112626705223\t:0.01\n",
"the:0.46466230818170506\tcourt:0.1645367207016161\ta:0.10096492421510497\tdwelling:0.08363021148975537\tof:0.04348745950779288\tboarding:0.03560606321261629\ttho:0.03506692139075075\tschool:0.03245754512416748\topera:0.02958784617649121\t:0.01\n",
"and:0.19114058312161614\tas:0.13314190948511093\tis:0.12970788178474746\ttime:0.11468763052025993\tenough:0.09818374179974257\table:0.08497172261901914\tthem:0.08363840144469313\thim:0.07966558977274127\tnecessary:0.07486253945206933\t:0.01\n",
"he:0.2534904853283936\tI:0.203591527682902\tthey:0.0966632651135923\tand:0.08940156142938738\tHe:0.0862491985047882\tit:0.0776290225179411\tshe:0.07650371136168967\tthere:0.05594116149941378\twho:0.050530066561891906\t:0.01\n",
"the:0.3653794562175868\ta:0.3542046433076454\tRepublican:0.06985284959044888\tDemocratic:0.06407419446246178\tThe:0.039413044121637326\tA:0.0281819645704118\tdemocratic:0.025288955502803283\ttho:0.02433633397921859\tone:0.019268558247786064\t:0.01\n",
"the:0.7192580307577116\tof:0.08882565777784387\tin:0.05042512987399666\ttho:0.030916673430369985\tfor:0.028266556150213704\this:0.020459040801072536\tto:0.01961188162427677\tand:0.017722471728030657\ta:0.014514557856484348\t:0.01\n",
"it:0.25091728095097887\tIt:0.1545492501183213\the:0.14927412853589558\tI:0.137718843005753\tand:0.08660406772396531\tthere:0.05683357065190528\twhich:0.05445538067971651\tHe:0.051990439956817326\tshe:0.047657038376647094\t:0.01\n",
"the:0.3103279440235315\tof:0.17413654868527798\tand:0.16924373084989433\tto:0.09410335785526062\ta:0.08334285316950657\tin:0.05267958019374887\tbe:0.03777522488732701\this:0.03486601099791866\tor:0.033524749337534535\t:0.01\n",
"of:0.3715111848481692\tin:0.1621039785883567\tto:0.10339170749355668\twith:0.08487782708696823\tfrom:0.07308810029247698\tfor:0.07167793605598162\tat:0.04569737051938027\tby:0.03921598099811428\tand:0.038435914116996095\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.6502265465029018\tThe:0.14079565942135142\ttho:0.04195780604434013\tof:0.03781267703909568\tand:0.03684749273299742\tthat:0.023827637106802576\tstock:0.021436929916422584\tthis:0.01905539390603307\ta:0.018039857330055392\t:0.01\n",
"in:0.30886478311695337\tof:0.22046205313658937\tthe:0.20811258072091707\tIn:0.06806372207359795\tand:0.04822496445806472\tby:0.04391377884060692\this:0.03303342965423836\tan:0.03216876084009081\tall:0.027155927158941388\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"of:0.410931132735847\tto:0.12363286140947104\tin:0.09654701169880535\tby:0.06754995806087415\tand:0.06599732598478976\tthat:0.06571057222679622\ton:0.06125812784775176\twith:0.057414135166623824\tfrom:0.040958874869040734\t:0.01\n",
"of:0.32455281647968703\tin:0.15856132334858092\tto:0.12595679319763742\tand:0.09252387191260505\tthat:0.07125172440004095\tIn:0.06461245312825563\tall:0.057115721320605696\twith:0.05227087486434231\tby:0.04315442134824503\t:0.01\n",
"recorded:0.7778752829400574\tcorded:0.06349770618380074\t<s>:0.06171690705410844\tand:0.022536413148961074\tMonday:0.016790415653524\tsituated:0.013966799609245377\tfiled:0.012121159827952421\theld:0.010810413992293207\tin:0.010684901590057382\t:0.01\n",
"the:0.31302211489680676\tof:0.22608387122590398\tand:0.12066170521150994\tto:0.07281760297796501\ta:0.0706859507033874\twith:0.05619873645068491\tin:0.05362335485219546\tby:0.041997697048104556\ton:0.034908966633441924\t:0.01\n",
"a:0.22977871738319416\tthe:0.1568339064571369\tis:0.1287002955622306\tno:0.09895122109431602\tmuch:0.09865336145373033\tor:0.07910178231657941\tare:0.07142375081177997\tand:0.07112860788033329\tof:0.05542835704069929\t:0.01\n",
"of:0.3489361130461534\tin:0.1896419745510167\tthe:0.14836030776765413\tto:0.07914598808145268\tfor:0.0582903818771575\ta:0.04590094415406576\ton:0.04395596776745911\tand:0.0425231334114471\tIn:0.03324518934359356\t:0.01\n",
"the:0.20055726533358112\tof:0.16655601378340926\tand:0.1416128771075266\tto:0.12157105424998725\tat:0.08920309278140327\ta:0.08297771780906493\tin:0.07266655013403321\t.:0.07242727265760796\tby:0.042428156143386325\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"a:0.23654331118216707\tand:0.14999700745818326\tthe:0.13612044195793632\tunder-:0.12036646493027273\twas:0.11809550346581726\this:0.06252806931446077\tone:0.058211058722639195\tof:0.055812113649833704\tby:0.052326029318689515\t:0.01\n",
"the:0.35704948455199803\tand:0.19569839124732874\tof:0.17066785543405627\tThe:0.11172442877965488\tthat:0.04277900599371835\tthese:0.03153273173181317\ta:0.028047350814569483\tor:0.027399312475863052\tto:0.025101438970998136\t:0.01\n",
"of:0.34166299291747493\tbetween:0.11309780174543191\tin:0.1008981158735088\tand:0.09639690747029671\tfor:0.09224735079546785\tto:0.0903077503282176\tthat:0.057808255926373994\ton:0.04895381637658371\tby:0.0486270085666445\t:0.01\n",
"of:0.3045807371865482\tto:0.1548406124937446\tin:0.1490314664666351\tfor:0.0955073884481113\ton:0.07869328443898094\tat:0.06107371609570365\tand:0.054562030485411854\tfrom:0.051488396970657185\twith:0.04022236741420716\t:0.01\n",
"and:0.2558407790317296\tto:0.19738288983652277\tthe:0.17706877017212086\tof:0.15659508795237043\tin:0.0514471153615884\ta:0.045636122804683925\tbe:0.03939944127657055\tor:0.03662950978881178\tis:0.030000283775601728\t:0.01\n",
"is:0.27895089347394464\twas:0.1828479818298837\tare:0.13445381363945924\tought:0.12584359622938077\tand:0.06513450641913238\twere:0.05719786316946085\tdo:0.053382213845106594\tit:0.04754020861463743\tIs:0.04464892277899437\t:0.01\n",
"the:0.40392039082210984\tCourt:0.37090870539048204\tWhite:0.07617139109961688\tThe:0.04727110772807788\tCustom:0.025751562964296162\tOpera:0.024076068000763434\ttho:0.01515235452133445\tthis:0.013865002535459357\tStates:0.012883416937860048\t:0.01\n",
"the:0.25227654780027603\tof:0.21732518402554862\tMr.:0.1290161039921202\tand:0.12041181834883626\tthat:0.07009549209853674\tThe:0.06690482309935276\tin:0.04856544214800772\tfor:0.04324649951704062\tas:0.04215808897028105\t:0.01\n",
";:0.2940202992774486\tnothing:0.134598027042842\tand:0.1108601415551093\tit,:0.11051342075469887\thim,:0.08083530931796674\tis:0.07443123834590866\ttime,:0.06904583798638776\tthem,:0.06624892874297943\t,:0.0494467969766586\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3049577682214297\tand:0.16054966112476296\tbe:0.1285319459042435\tto:0.11402156540057766\tan:0.08300056714731653\ta:0.05494111114758324\tof:0.0539445099813702\twas:0.05033759692214858\tis:0.039715274150567526\t:0.01\n",
"of:0.5075670862657435\tin:0.13170187402781539\tto:0.09195302205530925\tfor:0.061445997662866104\tby:0.06066250686565145\tthe:0.04164372512882962\ton:0.03822102399155659\tIn:0.03307858222561567\tfrom:0.023726181776612412\t:0.01\n",
"he:0.29759384126645533\tI:0.14712822519614255\twho:0.13357369841600397\tthey:0.09630194152462256\tshe:0.07780358321265955\tand:0.07122033994947809\twhich:0.06282023249521906\tHe:0.05213221799963883\tthat:0.051425919939780025\t:0.01\n",
"of:0.5378117216119066\tin:0.10697017753948344\tand:0.10660548291350756\tto:0.04900194881970809\tthe:0.04570326829858478\tfrom:0.043009264187005854\tby:0.041381137279199634\tMr.:0.03338422216317345\tIn:0.026132777187430452\t:0.01\n",
"deg.:0.27705973258802935\tof:0.13378320385051382\t.:0.12586941445633193\tto:0.10710010236760063\tdeg:0.08510324936940736\tMr.:0.07572266753978636\tdegrees:0.06649541488123645\tmin.:0.05961328600873678\tand:0.05925292893835724\t:0.01\n",
"there:0.3065919082809156\tThere:0.20418168429788403\tthey:0.15783536111637483\twho:0.07163664213804852\tand:0.0613626171806071\twhich:0.060917864499152444\tThey:0.04868905131112108\tthat:0.04070001296391975\twe:0.03808485821197644\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"and:0.2023082953486701\tknown:0.14765077609780838\tmen:0.12777299748923882\tout:0.10274423295538837\tland:0.09599788021982551\thim:0.09518698067078284\tthem:0.08895090744034777\tpeople:0.06493664828216264\tfriends:0.06445128149577568\t:0.01\n",
"of:0.34141085140595473\tto:0.1340660903639559\tin:0.09683007567613615\tand:0.08749654156957451\ton:0.07389148031448022\twith:0.07010216626897983\tby:0.06572510173410041\tthat:0.06086461626170888\tfrom:0.05961307640510929\t:0.01\n",
"and:0.19115583429945843\thad:0.15053096399090296\thave:0.1393207871445668\the:0.13707187739974505\thas:0.13451524006945798\tbe:0.07974267932230908\tI:0.07333037708481506\twas:0.04287165952249948\twhich:0.04146058116624505\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.2943956623585088\the:0.13907702274077108\tI:0.11438221200136307\thave:0.10517122842017577\tbe:0.07629880767647247\tthe:0.06849242912289695\thad:0.06632662110314153\twas:0.06478714875186564\tnot:0.06106886782480484\t:0.01\n",
"of:0.4100417275906819\tto:0.13923361277386126\tin:0.1078873855606073\tand:0.08033580439217335\tthat:0.06684779878526195\twith:0.05302311129119273\tfor:0.04636597687590189\tfrom:0.04562216901371408\tby:0.04064241371660545\t:0.01\n",
"men:0.23646663375248655\ttime:0.12821176822129565\tup:0.11907148463663786\thundred:0.11057591034174093\tin:0.08985738013461514\tout:0.079751703677174\tand:0.07902933208811573\tprincipal:0.07476526310774438\tmade:0.07227052404018985\t:0.01\n",
"they:0.30591871123495296\twho:0.14275529165715195\twe:0.10751065151613083\twhich:0.10550012023048935\tand:0.08756849928793338\tThey:0.08349436630256755\tmen:0.06700644469728984\tI:0.04985637007748152\tWe:0.040389544996002565\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"up:0.172796184304116\tand:0.1491253141464068\twent:0.12155564381084617\tgo:0.10263680448531426\tas:0.10169724424072724\tthem:0.08998028934408064\tcame:0.08845350315583098\tback:0.08751265865894858\tdown:0.07624235785372936\t:0.01\n",
"the:0.4634754953154552\tThe:0.09759956661753316\tof:0.08887558917217693\tthis:0.07634265057839237\tother:0.07584167482125194\tin:0.052509459898068385\this:0.048748931422001464\tthese:0.048703972741523695\tand:0.03790265943359681\t:0.01\n",
"the:0.8506298265139544\ttho:0.053400997143687345\tThe:0.03778403710745921\ttbe:0.017589319807207425\tof:0.0135989777091349\tand:0.005573476628052523\ta:0.004431265609805403\tby:0.0035072089860530434\tthat:0.003484890494645598\t:0.01\n",
"and:0.2895234282630789\tthat:0.15824401089052856\twas:0.09065914951141588\tbe:0.08347141963161513\tas:0.08077847374174836\tplaced:0.07560117637392505\tit:0.07469826218847164\tis:0.06856168726911974\tthem:0.0684623921300967\t:0.01\n",
"to:0.3032412931975073\twho:0.12098969008753625\twould:0.09948233861718841\tthey:0.09318599308169585\twe:0.08747037286427027\tI:0.085582011990406\twill:0.07114804868370254\tyou:0.06976912524566115\tand:0.05913112623203219\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"is:0.2223922329619498\tbe:0.1949706344077781\tas:0.15133131661074334\twas:0.10983037038271722\tso:0.09059159670236991\tare:0.06341515708909767\tIs:0.0493928152834832\tand:0.0481421424553916\tnot:0.03037563047142889\twere:0.02955810363504015\t:0.01\n",
"to:0.34839209923721154\tand:0.1993747330856363\tin:0.07724965300663376\tall:0.07339901113179799\tof:0.07240268847674136\twas:0.06185842291430572\tnot:0.0562600175255774\tI:0.05602826357933747\tbe:0.04503511104275834\t:0.01\n",
"the:0.2524863160635659\ta:0.1784646116499591\tof:0.15991705052688357\tthis:0.1205397775869491\this:0.08158301069842624\tin:0.0660897346762283\tto:0.061991964272672485\tthat:0.03452395444422139\tlast:0.034403580081093954\t:0.01\n",
"the:0.31491071775478086\tof:0.1819852063583867\tand:0.15973818673718354\tto:0.08210190978754724\ta:0.07192616817774335\tin:0.06102139026401743\tMr.:0.04626094925728953\tthat:0.0381259694073099\tthis:0.033929502255741435\t:0.01\n",
"and:0.18112380917603338\tis:0.14180779683345807\tbegan:0.12812253812111396\table:0.10472341704505712\thim:0.09146996026724456\tgo:0.0904838716473293\tas:0.08894031098008867\twas:0.08192724790627058\tready:0.08140104802340427\t:0.01\n",
"of:0.306877237372942\t<s>:0.16626693362378991\tto:0.12089354700309994\thim.:0.07862557570711987\tit.:0.07175566360210174\tthat:0.06450635445503662\tand:0.06359040022700001\tin:0.06311358910914701\tyears.:0.05437069889976296\t:0.01\n",
"A.:0.5679953174802194\tJ.:0.09448264364916195\t.:0.08194067157216689\tJohn:0.06821949025132715\tW.:0.05809747636514094\tC.:0.033638778711475546\tWashington,:0.030963117027191695\tE.:0.02733767823048552\tH.:0.027324826712831006\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.24441897383876565\tof:0.1803266416036052\tand:0.1711823265878956\ta:0.11248172269026223\tto:0.09682978540294508\tat:0.06257738271421678\tin:0.04661311955048604\ton:0.04375634066255626\twas:0.03181370694926707\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"the:0.4602987176008522\ta:0.1275642334995347\tof:0.11622700345035819\tand:0.09517941306695549\tin:0.05200259545726663\ttwo:0.040852197153504695\tor:0.036408158198630886\tThe:0.03397698429046535\ttho:0.027490697282431944\t:0.01\n",
"New:0.25173988059506086\tof:0.19186254862671412\tthe:0.17939490754290427\tin:0.11243260663362849\tand:0.07284776897081274\ta:0.06908743672533373\this:0.043305120720518814\tdis-:0.036056123416467245\tto:0.0332736067685596\t:0.01\n",
"and:0.28283006595013704\tas:0.24058871319893965\tway:0.09815234928757723\ttime:0.0689394329580279\tis:0.06356306283520903\tsaid:0.06219347384056149\treferred:0.06040618184921314\tsubject:0.05775867631159915\thim:0.05556804376873534\t:0.01\n",
"the:0.3222700586422684\tof:0.1974830349703252\tand:0.14821900911444638\tMr.:0.0814022366829615\ta:0.07018330339807602\tto:0.052117954772225555\tThe:0.04496263648487065\t.:0.03895710737577016\tby:0.034404658559055994\t:0.01\n",
"at:0.4071941544940614\tto:0.11975366662258631\tNo.:0.11680045554023341\tof:0.11276482791271177\tand:0.10043906145736639\ta:0.03822434690447634\tfrom:0.0354426073173058\t.:0.03238701037476911\tby:0.026993869376489656\t:0.01\n",
"of:0.3896076371786717\tin:0.18939908451640905\tto:0.0688152118717865\tfor:0.06591217614556392\tand:0.06538928134776033\tfrom:0.06429567328801432\tupon:0.04965734544088957\tthat:0.048763922078350716\ton:0.04815966813255391\t:0.01\n",
"has:0.4745054533519318\thad:0.20445083724438548\thave:0.18423964817940608\tlias:0.03334636073725766\tand:0.02525774923892389\thaving:0.020436677879858135\the:0.017570771753819957\twhich:0.015355406092462042\twho:0.014837095521955126\t:0.01\n",
"as:0.5328287653816642\tand:0.1166670251372016\tis:0.05809030948953038\tseems:0.053368211374970324\tnot:0.05318297538695392\tseemed:0.04997763531961193\tit:0.04646139630126229\tcome:0.04104685015196317\treferred:0.038376831456842175\t:0.01\n",
"<s>:0.40298822101927345\tit.:0.15019665721834255\tthem.:0.10138047245806314\thim.:0.08481685983304697\tus.:0.065649801819485\tday.:0.06174770189365093\ttime.:0.04306406560718783\tway.:0.04044630546248387\tand:0.03970991468846633\t:0.01\n",
"the:0.4758972305018486\tThe:0.14802028319777277\tfew:0.09437787460879402\tthese:0.07002853094381298\tno:0.047304336830774445\ta:0.04552086618380804\ttwo:0.04012824215443485\tother:0.03451841017572248\tof:0.03420422540303186\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.35177053508506795\tof:0.15110033151656144\ta:0.10428506204079356\tand:0.10242565717866879\tto:0.0902160800805959\tthat:0.05648203536026361\tfor:0.04627729372379286\tby:0.045948975998630855\tat:0.04149402901562493\t:0.01\n",
"and:0.30924221119967327\tthat:0.12611015277008547\tmade:0.09865062957046655\tis:0.0920144699599962\twas:0.09128595813112018\tplaced:0.07404370378857507\tas:0.06709678931603316\tbe:0.06629358245444635\tor:0.06526250280960379\t:0.01\n",
"of:0.42691376662107355\tto:0.17733134492601924\tin:0.08719676990091789\tby:0.06836009569985094\tthat:0.06305564013352824\tand:0.0630494485593937\tIn:0.0357568569078937\tfrom:0.034738246160098796\tfor:0.03359783109122406\t:0.01\n",
"was:0.19212253721377026\tnot:0.15436640119769454\tand:0.13700595366409887\tis:0.13588653214645768\tto:0.08619249947164129\tare:0.07909606770737837\tbe:0.07693746910725004\twere:0.07148566846226696\tbeen:0.05690687102944193\t:0.01\n",
"of:0.2314787866626774\tin:0.1635415441364617\tat:0.13623310511628933\tto:0.12475822205396489\tand:0.08174569600768211\ton:0.07648236697015053\tIn:0.06384841914428711\tAt:0.062453483901137044\twith:0.04945837600734988\t:0.01\n",
"of:0.36779145763843385\tin:0.3245149236083049\tto:0.08788831466271627\tIn:0.055501933656837636\tfor:0.03760282146542328\tby:0.035004494571549964\tfrom:0.03094759854248378\tthat:0.027064749623654176\tand:0.02368370623059618\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"with:0.18862366244226825\tof:0.17825504328253072\tthe:0.17379549097689215\tand:0.1672703499330958\tan:0.10403317103249587\ttheir:0.05092872009920956\tno:0.05056565174762099\tany:0.04156184047225774\tas:0.03496607001362896\t:0.01\n",
"<s>:0.2432340716315988\tmanner:0.20267801230181048\tand:0.1417229539143313\tthat:0.1338482430318706\tland:0.06161956135523471\tway:0.05417295900322747\tmoney:0.053664506749487695\tit:0.050378853934538864\twork:0.04868083807790007\t:0.01\n",
"the:0.7810534624086233\tand:0.05242929719154762\tThe:0.03649877925143227\ttho:0.030613616902426928\ta:0.024346439575946028\tpermanent:0.019381042898497063\tof:0.016727295666181866\tor:0.014841845492347341\tin:0.014108220612997407\t:0.01\n",
"they:0.21454261398464153\tI:0.18418724016223295\the:0.14136900210394712\twho:0.10099069812430601\tand:0.08985137530023778\twe:0.08627257946715562\tThey:0.07252968108892184\tthere:0.05288058386798575\tmen:0.04737622590057147\t:0.01\n",
"have:0.2866836314102675\thad:0.20627856992217614\tbe:0.11525144048429865\thas:0.10199057401562008\twas:0.07062738666104279\the:0.06690587983114543\tI:0.052279239255574025\tbeen:0.047728190829164394\tand:0.042255087590710914\t:0.01\n",
"the:0.29126739091831977\ta:0.21455383594395813\tof:0.12212204888699667\tand:0.10684926126984036\tto:0.09639537678382364\tin:0.06742284382232391\this:0.03929578317890254\twith:0.026303390507833424\tan:0.025790068688001436\t:0.01\n",
"to:0.4249988241166681\tthe:0.17612204570644646\tand:0.09568977286279437\tnot:0.07463256676428806\tthis:0.05544011084215679\tin:0.042834270591140644\tof:0.04095557243056981\twill:0.0399975969874491\tmay:0.03932923969848659\t:0.01\n",
"<s>:0.470312325538474\tit.:0.11480385688481831\tthem.:0.09451255181312528\tus.:0.07915547886594569\tday.:0.0555544438859569\thim.:0.04726871857100546\tyears.:0.04403223527592201\tcountry.:0.04253161981051915\tand:0.04182876935423328\t:0.01\n",
"lots:0.38615324454066297\tfrom:0.12259463823301398\tat:0.09799929881095117\tLots:0.09569897411435487\tNo.:0.09252233321228061\tand:0.0696950561595611\tan:0.04478006157001974\tof:0.04133573297342906\tthe:0.03922066038572651\t:0.01\n",
"the:0.24789013567245427\tof:0.20525870853165343\tin:0.18062180272540249\tand:0.10844113882728146\tto:0.07006310286568784\tfor:0.06762548465017977\tIn:0.04223132089374646\ta:0.03577047073226391\tby:0.032097835101330366\t:0.01\n",
"and:0.24197254850738883\twas:0.18517695980152976\tis:0.12785297427010228\tbe:0.09062939673082937\tbeen:0.08443174394332735\tmade:0.06619026347374436\tare:0.065577465544376\tthat:0.06424441688522377\tnot:0.06392423084347836\t:0.01\n",
"the:0.5799083563762231\tof:0.14801519087831988\tand:0.07159073985953471\tThe:0.05111649305017962\ttho:0.044026822904246844\tno:0.028212005337926345\ttheir:0.022979070429521586\ta:0.02208211294268312\tby:0.022069208221364666\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.28497649448846474\tand:0.1514823575156436\tto:0.13099486172294514\ta:0.11430273190651027\tof:0.10696486710509166\tbe:0.0649188191707342\this:0.04813099987403198\twas:0.045973956544127566\tThe:0.042254911672450726\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.24954512758863096\tlaid:0.11709643390487569\tput:0.10735478422331621\tsat:0.09574339663387303\twent:0.0953730036919956\tcame:0.08943783002270857\tit:0.08564877328933922\tlay:0.0786320792563573\tcome:0.07116857138890348\t:0.01\n",
"the:0.4471872982084095\tof:0.2140244386305663\tand:0.1353687331038182\tin:0.048522362032592734\tThe:0.043319910017818555\twith:0.030289025394683113\ttho:0.028300048512097362\tby:0.02171517462486536\tas:0.021273009475148756\t:0.01\n",
"and:0.16067889151285714\thim:0.13327813456292695\tis:0.12622768128638254\tnot:0.10584474199181629\twas:0.10373570883811183\tthem:0.09277223501146786\thave:0.09264847699279793\thad:0.08897066898909474\tas:0.08584346081454464\t:0.01\n",
"and:0.2804797223551038\tof:0.23914218460718858\tfor:0.09183079804560504\ton:0.08749154211142472\tin:0.07916336007492365\tto:0.07057030687911013\tthat:0.05826309301618483\tfrom:0.04289824967936788\tby:0.04016074323109133\t:0.01\n",
"and:0.17476297299844248\tas:0.17142871622668848\ttime:0.10099176638962852\tnecessary:0.09923823115167675\tenough:0.09921215783492468\tis:0.09144976994937098\torder:0.09099634548518504\table:0.09021420580340864\tthem:0.07170583416067436\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.2582336437677796\tIt:0.20670742665108433\tit:0.15442800711542498\tthat:0.10545689063393705\twhich:0.091966481400863\the:0.053131429194002294\tis:0.04813900986628642\t<s>:0.04261588960731456\tbut:0.029321221763307898\t:0.01\n",
"be:0.24370552954591657\twas:0.2031347537615459\tis:0.10956828577861126\tbeen:0.09339832664083114\tand:0.08491050297238151\tare:0.083733695264784\twere:0.08220035012292032\the:0.06121554754247507\tbeing:0.02813300837053426\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.7879508689857606\ta:0.0806597734831582\tThe:0.03406218947075002\ttho:0.025194911081416905\tany:0.016437865449660943\tthis:0.016057067125550405\ttbe:0.011150726168411396\tfirst:0.009571554425098853\thigh:0.008915043810192685\t:0.01\n",
"he:0.24558159464574006\tit:0.1346902659801703\tand:0.12888937022936778\twho:0.10415311788533499\twhich:0.09180721069959837\tIt:0.0820753654803959\tHe:0.07488835498221709\tthat:0.07271329411885812\tshe:0.05520142597831738\t:0.01\n",
"and:0.15833238262337954\thas:0.1404274949181407\tof:0.11546190106428911\twhich:0.11463858861398656\tthe:0.11226344523761252\thave:0.10406134987920747\thad:0.08585526397367636\tto:0.0850805505630115\tas:0.07387902312669617\t:0.01\n",
"and:0.3078138062903019\tof:0.28041897594036835\tthe:0.13674516005629214\tto:0.06904974825190589\tin:0.04842602115171502\tfor:0.04331783491139589\tthat:0.037517027461103594\tby:0.033398684848143734\twith:0.03331274108877341\t:0.01\n",
"the:0.33628483786917873\tof:0.23071078134415174\tin:0.1322504618059144\tand:0.08328868594798386\tto:0.048829958640741154\ta:0.04375761883315188\tthat:0.03972015784618147\tIn:0.03939258034515705\tfor:0.035764917367539686\t:0.01\n",
"the:0.21989676768100663\tof:0.15087642019255582\tand:0.13946771304087177\ta:0.12340322864126257\tto:0.10508493964911432\tin:0.07488170861247744\tby:0.06562294210061673\tat:0.05546145076890823\tfor:0.05530482931318662\t:0.01\n",
"hereby:0.18483024673944382\tbe:0.1792641862641662\twas:0.16222401577866666\tand:0.12075289400839069\tis:0.09577925972708426\tbeen:0.08567688623253417\tduly:0.06223068741439212\tas:0.050267710043354466\twere:0.04897411379196763\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"the:0.562379458874106\tof:0.08999557212590012\tthis:0.08201558013806513\tany:0.0724979668747973\ta:0.05470083063687398\tand:0.046620829978647145\tsaid:0.0314807438416662\tCounty,:0.026910508831440572\ttho:0.023398508698503476\t:0.01\n",
"day:0.2422361860190511\tout:0.21293776716009782\tside:0.10122347068197048\tnumber:0.09961813938615142\tmeans:0.09076557976779964\tpoint:0.0723065029995503\tone:0.05804749297864338\tplace:0.05742472206711807\tpurpose:0.0554401389396178\t:0.01\n",
"the:0.3596542557972894\tof:0.18498441043447886\ta:0.13065320793192983\tthis:0.07638686778147899\tin:0.06711096714377071\this:0.0532662387027016\ton:0.04575132973600471\tby:0.0398555557410437\tand:0.03233716673130216\t:0.01\n",
"and:0.30813827370948377\tsaid:0.1730589697868629\tfact:0.11175374042727586\tstated:0.09076470050424858\tso:0.07733344451894186\thim:0.06626454011197735\tknow:0.06377304208821113\tsay:0.049787186448953615\tis:0.04912610240404502\t:0.01\n",
"the:0.4490425725220044\tan:0.12806515427940424\tyears:0.11595745568143843\tof:0.11417740715837334\this:0.051685305628388585\tgood:0.04172279799839892\ttheir:0.033046995164122676\tvery:0.028874104526997593\ttho:0.027428207040871774\t:0.01\n",
"of:0.22237911912999406\tand:0.1618127928065751\tto:0.13354184861392987\tthat:0.1332144485828309\tby:0.11746192411118825\t<s>:0.07241423104374234\tas:0.05598190397702521\twith:0.054345799704529636\twhich:0.03884793203018457\t:0.01\n",
"be:0.22597535338754082\twas:0.22022621232109554\tbeen:0.1465018532603573\tis:0.08372127547808164\twere:0.08311063655168735\tand:0.06966620745111651\tAction:0.06481215720668473\tare:0.05603497983203548\tbeing:0.03995132451140055\t:0.01\n",
"and:0.15304335461526197\taccording:0.1364695383118125\tas:0.11920819240258229\tup:0.11644212259127792\twent:0.11501525471929645\tgo:0.09906470508142663\tdown:0.09789065813610792\tsubject:0.07840861504131418\tback:0.07445755910092022\t:0.01\n",
"and:0.24438628038432214\tabout:0.21809618564898697\tor:0.1584281902630872\tthan:0.08000035743288576\tof:0.07924661141679228\tleast:0.06650901410821598\twest:0.051260327651099925\thundred:0.04906392370158599\teast:0.04300910939302383\t:0.01\n",
"it:0.2399946908430043\the:0.18150981905114968\tIt:0.15112083582377553\tI:0.10822156604991165\twhich:0.09039778903891539\tand:0.06957410567857708\tHe:0.05688317211494139\twho:0.049361704414037276\tthat:0.04293631698568771\t:0.01\n",
"the:0.28911769851370467\tof:0.15034482710262848\tand:0.14727364343021293\ta:0.12256378698685642\tto:0.11180388212332248\tbe:0.05566769946958989\twas:0.044440704312762515\tor:0.03660687066406267\tis:0.032180887396860036\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.32534569999780194\ta:0.15732134094722702\tof:0.13573906799532967\tand:0.09793857502831448\tin:0.06459896144040898\tMr.:0.06121873015658147\tto:0.05914317356437506\tThe:0.0540259115402339\this:0.03466853932972756\t:0.01\n",
"the:0.32181154692106123\tof:0.20378649160780385\tand:0.10492310675068146\ta:0.09050857500945005\tto:0.07783353410479871\tbe:0.05970699422933953\twas:0.046829291881653155\this:0.044667434619546836\tin:0.0399330248756651\t:0.01\n",
"be:0.1635603560502015\tand:0.14865348459682107\tnever:0.11364002327576822\the:0.10841046594132932\thave:0.10714437172794158\tI:0.09341307036000598\twas:0.09068545958519476\tis:0.08937147025760608\tthey:0.07512129820513147\t:0.01\n",
"is:0.2621660171069832\tand:0.17115498006409013\twas:0.16635879700093317\thave:0.08576262754267881\thad:0.07729937430580197\tthat:0.0641686866094928\tdo:0.06031757677249163\tsay:0.05184509583971008\tIs:0.05092684475781829\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"<s>:0.24191235194605046\tit.:0.20963470429267225\thim.:0.13123885372519764\tthem.:0.12959190509785198\ttime.:0.06401975011538254\tday.:0.05767843813031488\t.:0.0556390685615713\tagain.:0.05159125462591677\tall.:0.048693673505042195\t:0.01\n",
"the:0.3070239572541062\tof:0.18772239122842635\tand:0.1499383351913182\ta:0.09153696892611282\twas:0.06344660978465153\tMr.:0.04848745053397374\tto:0.048231731560606284\tthat:0.04689904336577919\tThe:0.04671351215502567\t:0.01\n",
"<s>:0.24265983726265733\tand:0.23596391156236765\tof:0.11849159275850041\tto:0.11670037794239943\tfor:0.0712915304578513\tthem.:0.05935131021167866\tit.:0.04972816326624391\tin:0.04923565196649455\tthe:0.046577624571806746\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.30196488072199884\tin:0.15523777631454982\tto:0.12221199973869216\tfor:0.08959336612765921\tand:0.08381228157860553\ton:0.06105932437612953\twith:0.060228299169895104\tthat:0.0589616968023546\tby:0.056930375170115156\t:0.01\n",
"be:0.22337968405977043\thave:0.15951028806848813\tand:0.1518093277049046\twas:0.10978465896482452\thad:0.07763747990846322\tbeen:0.07153613073601273\the:0.071527118707233\thas:0.06968990375094701\twere:0.055125408099356246\t:0.01\n",
"W:0.14910773017956414\tM:0.12276990578542449\tJ:0.12075148222724486\tC:0.11156552709985228\tS:0.10363588713123016\tE:0.10247688778446311\tA:0.09710894198133282\tH:0.09413683549342977\tB:0.08844680231745826\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.32414272374648134\tof:0.32159591802128085\tand:0.15336505647012286\ta:0.045734877199819515\tin:0.041844500567163136\tfor:0.031159638302324152\tThe:0.026512585273372254\twith:0.023908222002105996\tto:0.02173647841732984\t:0.01\n",
"is:0.27212913706152536\tbe:0.22180420011581678\twas:0.13972681771549342\tare:0.10198436177287008\tamount:0.09810327307126303\tIs:0.04116327595689332\tnow:0.04080088644431276\tbeen:0.04007277071992237\twere:0.03421527714190289\t:0.01\n",
"a:0.6303497111825845\tthe:0.12460526851428987\tin:0.05036348979653438\this:0.04616517627891155\tand:0.037048554539643425\tvery:0.0320008260393646\tof:0.029226417371119244\tmost:0.02568219654631218\tits:0.014558359731240242\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"for:0.211621957712013\tabout:0.14132988283261716\tof:0.1356523603248829\tthan:0.11734906209350109\tpast:0.10257786824500305\tor:0.08333764486418678\tand:0.07998342512333562\tthe:0.06334259427883236\tlast:0.054805204525627975\t:0.01\n",
"be:0.2680204800206446\twas:0.2534701343428093\tis:0.1267188389837492\twere:0.06965647414023517\tbeen:0.06388230353443164\the:0.06226014666713446\tand:0.05631137119678938\tare:0.05267485160156702\tbeing:0.03700539951263917\t:0.01\n",
"and:0.23423711901910807\thave:0.1794585892566487\thad:0.13228662797779023\tI:0.12437209695323533\thas:0.08318377322912666\the:0.07447831274249972\tthey:0.05539421129070069\tnever:0.053800761426144705\tit:0.05278850810474588\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"he:0.23121404532058468\tit:0.21516344784232738\tthey:0.13270572375260759\tIt:0.11860374360144835\tI:0.0860627738032671\tthat:0.05422878703492139\twe:0.05210788688105833\twho:0.05089663672489061\tshe:0.04901695503889457\t:0.01\n",
"the:0.4126728260848344\tof:0.13736714993136673\tand:0.11138423959057885\ta:0.09926620310551769\tfor:0.0679649123904061\tThe:0.05999230225992497\ttheir:0.03617998081952531\tto:0.034281783775091924\tby:0.03089060204275394\t:0.01\n",
"the:0.4915958151662624\tThe:0.18383269019083312\tMr.:0.06948949385984239\tand:0.05697278670677822\tDaily:0.04929845905220689\this:0.03666091048795786\tNewport:0.035675856265593824\tof:0.0332701383352548\tsaid:0.03320384993527053\t:0.01\n",
"the:0.591561674877563\ta:0.11864087632985143\tand:0.07441851175382648\ttho:0.05088289731308751\tof:0.037300554629787194\tThe:0.035725194173811266\ttbe:0.02949274487163324\tin:0.026161659592473407\tor:0.025815886457966546\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"of:0.2660094728065014\tthe:0.15400242980691745\ta:0.1503639661161186\tand:0.10662744160291708\tto:0.09726994931468051\tfor:0.07506935240385613\tin:0.06126289852292025\twith:0.04296914650296593\tor:0.03642534292312288\t:0.01\n",
"to:0.5175652976597375\thad:0.1067303687209588\twill:0.10593636248738456\thave:0.054848316188287775\tnot:0.04875322916482081\thas:0.04794727377503952\tand:0.045026970381288986\twould:0.036797901626505355\tI:0.02639427999597678\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.2416017667705301\tof:0.2022661037777166\tand:0.1350942893126516\tto:0.09513360050382096\tbe:0.09499129868165447\ta:0.08013368191360808\tin:0.05173823028877439\twas:0.0459699280117903\tis:0.043071100739453604\t:0.01\n",
"of:0.4350691121933086\tin:0.17590693507051808\tto:0.10103820455278756\tIn:0.05410244356178705\tthat:0.04894784282719977\tfor:0.04796761694587244\tby:0.04368040144683445\tand:0.04226712549192657\ton:0.0410203179097653\t:0.01\n",
"the:0.2041355130088824\tand:0.17200019093224744\tto:0.12021710897250742\tof:0.11880937990450612\ta:0.10603452764478562\tin:0.09112381700078799\twas:0.07192903843849023\tbe:0.059073017055486454\this:0.04667740704230638\t:0.01\n",
"p.:0.4168433137063012\ta.:0.2814215949685153\tof:0.06660061666698014\tp:0.05476883611938005\t.:0.04659422942624571\tat:0.036920976178073855\tby:0.03503305665788124\tthe:0.028001302543143407\tsaid:0.023816073733479222\t:0.01\n",
"of:0.41665786084292306\tthe:0.2964067463793372\tand:0.06728856315102806\tfor:0.04314674492210568\tThe:0.040054539884279344\tsuch:0.03617594357372006\tother:0.03546284163357222\ta:0.028364495799543702\tall:0.026442263813490734\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.21261695365817113\ta:0.1557121640338697\tof:0.15466808479342162\tand:0.1287950623914569\tto:0.11924875661746612\tno:0.060595585029086546\tin:0.055379724671559\tat:0.053641655548444855\tnot:0.04934201325652418\t:0.01\n",
"of:0.42761066578179435\tin:0.10703428593808248\tfor:0.09287089661608461\tand:0.06903313761988508\tthat:0.06812056952392756\tto:0.06674936586728082\twith:0.05867514080831101\tall:0.056202171922885534\tfrom:0.04370376592174869\t:0.01\n",
"to:0.766873547245556\twill:0.0674380206188005\tand:0.04485075146552108\tnot:0.040079633011679244\twould:0.031981820585857273\tcan:0.013500978330623085\tcould:0.009497353468023493\tTo:0.009054400102666938\tof:0.006723495171272303\t:0.01\n",
"thence:0.49022811727962834\tand:0.07730986686536241\teast:0.07314819428316423\ttwo:0.06639441061003123\tfeet:0.0641841344037352\tnorth:0.06209818017835714\twest:0.060722983598890105\tall:0.05001950952794796\tsouth:0.04589460325288345\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
";:0.24734716710768542\tis:0.16505417006613318\tnothing:0.14127455602640132\tare:0.08922362211074741\tto:0.08313867634735318\tand:0.07967508462356734\twas:0.06191091290677054\tcannot:0.061889924065465056\tit,:0.06048588674587661\t:0.01\n",
"the:0.5401188000859319\tin:0.09080616317327965\tof:0.07564618917679186\tand:0.06694810919848022\this:0.05174808131375286\tan:0.04594679941023179\ta:0.0414205986514231\tThe:0.041321714900807716\ttho:0.03604354408930068\t:0.01\n",
"no:0.24614113041489116\ta:0.1756443234250405\tand:0.09951586031163127\tor:0.09869280378348412\tmuch:0.09273257462559133\tthe:0.08670396407921298\tis:0.08541498878611027\tany:0.05585026308809456\tnot:0.0493040914859437\t:0.01\n",
"or:0.23871577851306405\tfor:0.1705715668935705\tof:0.12887349104483262\tand:0.10673270846520719\tthe:0.09461291646633674\tabout:0.09190470281769639\tin:0.06054412714080601\tat:0.05434990173658074\ta:0.043694806921905756\t:0.01\n",
"a:0.5378640342482929\tof:0.1642236590911788\tthe:0.06524419732383643\twith:0.05384399760236418\tand:0.041116714971730056\tmake:0.033994772316955184\tA:0.03325630344776478\tas:0.031537118923850235\tin:0.02891920207402738\t:0.01\n",
"the:0.29972195682539465\tof:0.1860315204023243\tand:0.12877635076785074\ta:0.0997926702871424\tto:0.09520497871756131\twas:0.05071019019452514\tbe:0.04947373454735675\tin:0.04018803430108381\tis:0.040100563956760926\t:0.01\n",
"accrue:0.28174159961857087\tand:0.20270400214573528\tcalled:0.09490952722364433\tmade:0.09084275035925356\teffect:0.07546409321342802\tlook:0.06828916166402717\tdepend:0.06802970588791298\tthat:0.056966057638427055\timposed:0.05105310224900057\t:0.01\n",
"the:0.23319169059287936\tand:0.1833575103809451\tof:0.13793801642829667\tto:0.13635929664722948\ta:0.08226783639099618\tHavre:0.06034656242465354\tsaid:0.05733614593852586\tcrepe:0.05362386907646611\tan:0.04557907212000761\t:0.01\n",
"of:0.4021353298326501\tto:0.1127150790041469\tin:0.09816347443588129\tand:0.09274747849031245\tthat:0.09098495425462869\tfor:0.05812494790649899\tby:0.05441007348103826\tas:0.04536573193515297\twith:0.03535293065969037\t:0.01\n",
"and:0.3732620996315799\tdemand:0.11377803099790945\tcandidate:0.08740061018207658\tbut:0.07469693538000469\ttime:0.07185036102335093\tit:0.07143945648483019\tthat:0.07068132758986262\tused:0.06965600916743306\tvote:0.05723516954295262\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"time:0.17991184182112435\tmore:0.16841500408840662\tin:0.11249376766689069\tmen:0.10064061182944671\tman:0.09954792486066662\thim:0.09096038710053111\tout:0.08926009933493634\tlarge:0.07452393840942785\tit:0.0742464248885697\t:0.01\n",
"the:0.24219712417569814\ta:0.23653659378565203\tlast:0.1730521223595181\tthis:0.09401443758197191\tone:0.06285149793529862\tnext:0.05953423091098246\tevery:0.04924254045952218\tper:0.04671636689606796\teach:0.025855085895288663\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.2569871267911597\tof:0.20695604623375866\tfor:0.18587160261500782\tand:0.10481078936245376\tin:0.06681384369855772\ta:0.06128255519845906\tto:0.051449631187026945\tall:0.03232655684638737\tby:0.02350184806718893\t:0.01\n",
"the:0.3331925550671004\tof:0.2332480466534416\tand:0.12395923476969917\ta:0.07928370184843045\tMr.:0.05736952256192119\tto:0.04770976412706071\tThe:0.04417668138726264\tin:0.04189710404630304\tthat:0.029163389538780702\t:0.01\n",
"is:0.21192121046816265\thave:0.1632188206820735\thad:0.14961903888459446\twas:0.1030679846162458\thas:0.09368851590127052\tthat:0.09023847836297288\tand:0.07879112786008677\tbe:0.05940862590773796\tmade:0.040046197316855395\t:0.01\n",
"the:0.20404224840329352\tof:0.18572913733553034\tto:0.16692112390241942\tin:0.11484676151434477\tat:0.10023992905495455\ta:0.07496806490117211\ton:0.0580236725784108\tand:0.057312361662761546\tthat:0.027916700647112984\t:0.01\n",
"of:0.32170992045022845\tand:0.13608886527890615\tto:0.12498894290379664\tthat:0.07452751037725572\tin:0.07060774010569162\twith:0.06936387400598172\tfor:0.06651616594836998\tall:0.06592663004770398\tis:0.06027035088206577\t:0.01\n",
"<s>:0.5095466441011849\tit.:0.13472945458857682\tthem.:0.07756044180246817\tus.:0.05966500720613077\tcountry.:0.046458626926390294\tday.:0.04223756754738886\tand:0.04172326197522465\ttime.:0.03908132652780986\thim.:0.03899766932482573\t:0.01\n",
"of:0.41901391777252217\tin:0.1377139010818591\tto:0.10489153748585982\tfor:0.07134911687648272\tand:0.06354188813142343\tby:0.05705447061118624\tthat:0.052138792536290654\ton:0.04563305439327536\twith:0.038663321111100345\t:0.01\n",
"the:0.3222700586422684\tof:0.1974830349703252\tand:0.14821900911444638\tMr.:0.0814022366829615\ta:0.07018330339807602\tto:0.052117954772225555\tThe:0.04496263648487065\t.:0.03895710737577016\tby:0.034404658559055994\t:0.01\n",
"the:0.19973673748319962\tsouth:0.18702779361968208\tnorth:0.15982485632839313\teast:0.14416008078002449\twest:0.1271368694625307\tone:0.06117723817628734\tother:0.050782521233723094\teither:0.03197613557020537\ta:0.028177767345954213\t:0.01\n",
"of:0.3562738018711837\tto:0.1304020818054795\tin:0.11885645482945208\tat:0.08567337431685904\ton:0.075250932073817\tand:0.06023811169844822\tby:0.06008680244410473\tfor:0.053671529281075096\twith:0.049546911679580675\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"in:0.17716527029683388\tand:0.1424706769959705\tfor:0.12588358528678734\tof:0.12010880453423659\twas:0.11940654860721257\tis:0.10368911283881141\tto:0.07944444188555404\twith:0.06501782257451191\tIn:0.05681373698008174\t:0.01\n",
"of:0.2693987552011668\tand:0.16054144849271187\tthat:0.12640098080453094\tif:0.12555254510033534\tany:0.07792726467509671\tIf:0.07007773723955557\tfor:0.056973920158344245\tall:0.05178497054209919\tto:0.051342377786159396\t:0.01\n",
"the:0.39329217456413584\tand:0.165060369186459\ta:0.12995381884077825\tof:0.11416647118324465\tto:0.07779456385493934\tin:0.03151191310344598\tthat:0.027706905168287395\tThe:0.026330043431478913\tbe-:0.024183740667230523\t:0.01\n",
"and:0.2513016086153481\tthe:0.1869474294095364\ta:0.14697692776124677\tto:0.10652915615249775\this:0.06644465050676175\tI:0.0623037789123906\ther:0.0588283802118496\the:0.0584970874718291\tone:0.052170980958540024\t:0.01\n",
"the:0.39755094818337566\tof:0.29902840304099315\ton:0.13174564163186628\tin:0.06805482136739198\tand:0.027230518906773565\tfor:0.01884012879056423\ttho:0.01754329616461438\twith:0.015073451804969107\tthis:0.014932790109451815\t:0.01\n",
"to:0.5559121431642474\twill:0.11524893740858676\twould:0.07850012494066556\tnot:0.05671076248820122\tcan:0.05584160949287774\tand:0.03502309100082518\tI:0.03290466388535505\tmay:0.032498468817026754\tcould:0.027360198802214224\t:0.01\n",
"the:0.24836841643730184\tand:0.2185400483637631\tof:0.21644678758664898\ta:0.08761705315187467\tto:0.051374677167438966\tthat:0.05064273866173673\tor:0.04477141837464553\tin:0.03696338823591551\tbe:0.03527547202067468\t:0.01\n",
"on:0.22158843472542422\tof:0.19732415213539586\tin:0.1557196518942194\tto:0.13419286205966252\tat:0.08923968185582488\tfrom:0.06482011227486109\tfor:0.04641206616211174\tIn:0.04427771828093374\tand:0.036425320611566565\t:0.01\n",
"away:0.22316988789319092\tand:0.1713348901051781\ttaken:0.13159930092647462\tcome:0.09739936354306479\tcame:0.09137140243059302\thim:0.07811066196838663\tthem:0.07711542316245522\tit:0.06473175198344687\treceived:0.05516731798720978\t:0.01\n",
"and:0.16698146172987727\tto:0.15728230301477966\tthat:0.13908943993487738\twill:0.13541465682804538\twould:0.11972156308277337\twhich:0.0979955233827294\twhen:0.0627836923132041\tbut:0.06035394003712347\tshould:0.050377419676589874\t:0.01\n",
"and:0.15212475577172294\tof:0.1452342523622864\tthe:0.1384738984958323\ta:0.12874249684278968\tbe:0.11708914670066721\tis:0.09493630434839773\tmuch:0.07811791121083894\twas:0.07046359356099677\tto:0.06481764070646807\t:0.01\n",
"is:0.40622250400598653\tare:0.33950637824457097\tIs:0.06179781622777579\twas:0.05293424472908069\tand:0.04733958099290083\tam:0.02290387230894194\tbe:0.02289169107832522\twere:0.020682666391185437\thas:0.015721246021232618\t:0.01\n",
"and:0.18131867253431286\tis:0.1781912976520085\tso:0.15395847718747482\tare:0.12188869200888426\ttoo:0.08743376503831773\twas:0.07606475990585294\thave:0.06963675334952833\tvery:0.06235987416138825\ta:0.05914770816223233\t:0.01\n",
"be:0.16397490470439308\twas:0.13351459846889696\thave:0.1286428148973121\the:0.12029101246615098\tso:0.11988121386235553\thas:0.0899840485549446\thad:0.08079544667011684\tis:0.08033890791665718\tI:0.07257705245917281\t:0.01\n",
"city:0.13181133071520026\thundred:0.11779847607910442\tState:0.11210818340587277\t1:0.11079638444047692\tJohn:0.11015359262230333\t;:0.10920168567418849\tmen:0.10058158497668716\twife:0.09991050405343536\tgold:0.09763825803273118\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"to:0.5203735630458447\tand:0.13293458323384938\ta:0.07547994028137857\tnot:0.06817267370345559\twe:0.054739621374983054\twill:0.03940288879694971\tI:0.03580219558145978\twould:0.03231685925146717\tthey:0.030777674730611878\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"Mr.:0.25470896483418504\tMrs.:0.1815937012017557\t.:0.1287225008573943\tand:0.11711596661848482\to'clock:0.0712453156058902\tC.:0.07109175574560278\tJohn:0.06115621761967169\tDr.:0.05727433087457308\tof:0.04709124664244251\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"and:0.24307621089542836\twell:0.14710632921880226\tso:0.1199701181794495\tfar:0.09184826917599967\tlong:0.0910662438054964\tsoon:0.08253286251464609\tjust:0.08047613827194623\tmuch:0.07158273589033426\tbut:0.06234109204789727\t:0.01\n",
"to:0.4779390443556127\tfor:0.11057033406384671\tof:0.11053512757163131\tand:0.0661631830789779\tin:0.06386565084961246\tas:0.04094274018440316\tcan:0.040638843471444065\tnot:0.040393601613941364\twith:0.038951474810530275\t:0.01\n",
"a:0.24823620391141976\tthe:0.20524713229624847\tto:0.10095091894245764\tand:0.10006692605194556\this:0.09940373276202948\tof:0.08144271695312587\tI:0.06846907766795561\ther:0.05068827446613866\tmy:0.0354950169486788\t:0.01\n",
"and:0.20420805180462218\tmen:0.17331490293210322\tI:0.11866712136368335\tyou:0.10081795477984595\tthat:0.09025651880723438\the:0.08007762269567355\tman:0.07594720639222875\twe:0.07464745742365982\tso:0.07206316380094882\t:0.01\n",
"the:0.5886204967719451\tof:0.1436243430252588\tand:0.0635882453644377\ta:0.036807283205074794\tThe:0.03676058419073452\this:0.034846563192802125\ttho:0.03408582164074601\tto:0.02601712372827747\ttheir:0.025649538880723407\t:0.01\n",
"of:0.2626878172785636\tand:0.223181897789612\tMr.:0.10596980368601218\tMrs.:0.09555866569461545\tto:0.09179039220758411\tby:0.08640468728013309\tthat:0.05330360435116901\tsaid:0.03665657516967732\twith:0.03444655654263315\t:0.01\n",
"and:0.28083437919785825\tis:0.12204719688591117\twas:0.10398937597827038\tfeet:0.09704743339408052\tthat:0.08783741432948049\tas:0.08017609877827961\tbe:0.07737098772660912\tit:0.07523731649532424\trecorded:0.06545979721418622\t:0.01\n",
"of:0.19205258864119779\tand:0.12414488027430824\t-:0.1229821135763578\tre-:0.11962640809552107\t.:0.10901238870148941\tthe:0.09979417010163473\ta:0.08675226929711957\t<s>:0.0820155903781663\tto:0.053619590934205125\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.28668609593550387\tof:0.2812232298528071\tOf:0.1137978465820682\ta:0.0785022243259787\this:0.06456313224160037\tthis:0.050497701139443844\ttheir:0.04913622785351775\tin:0.04360888709877574\tno:0.021984654970304583\t:0.01\n",
"per-:0.5477393490413962\tper­:0.1937875187845727\tper¬:0.14591431704192012\ta:0.02159516113467244\tthe:0.019729120703829497\this:0.019170616378318028\tde-:0.015696341330608713\tmore:0.013902381989023447\ttheir:0.01246519359565875\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"and:0.32353672944875006\tso:0.12081753935769445\tfact:0.11746284204523065\tsaid:0.10730377635243864\tis:0.09235564259022876\tsay:0.06955856203066568\tstated:0.06277434266667509\tbelieve:0.0492943596391864\tknow:0.04689620586913035\t:0.01\n",
"of:0.4875008491337089\ta:0.10653964967087387\tand:0.10322276996743657\tthe:0.07867040379006311\twith:0.0653708628433556\ttheir:0.04303237239010737\tto:0.03898153983399498\tfor:0.03380264593860955\this:0.03287890643185008\t:0.01\n",
"this:0.33310599475566804\tthe:0.24616659787833403\ta:0.12857214019098107\tthat:0.07459722145678396\tThis:0.062441767627458324\tany:0.04570865349889147\tThe:0.04319077395966505\tevery:0.03252819160197439\tsame:0.0236886590302436\t:0.01\n",
"the:0.44261065813033085\ta:0.357760348254555\tThe:0.038863993486896134\tA:0.027532189221186887\tof:0.027027452971129306\ttho:0.025940058923951143\tour:0.024993853288102937\this:0.023896668592378014\tin:0.021374777131469683\t:0.01\n",
"an:0.34105121328663246\tthe:0.27473810880097926\tmost:0.08842240797056475\ta:0.08596141185474454\tvery:0.05885883597275602\tand:0.03914936856215008\tAn:0.03766633382133811\this:0.036075402614629944\tThe:0.0280769171162048\t:0.01\n",
"of:0.37757352357277263\tto:0.1412997508358221\tand:0.0922662258820009\tthat:0.08655245251206978\tin:0.08397587336935568\tfor:0.057992475083582205\tall:0.051482044210817056\tby:0.050817117881126236\twith:0.04804053665245338\t:0.01\n",
"he:0.3199577009687496\tI:0.1473787106259897\tthey:0.10878240453061815\twho:0.10131225556318453\tand:0.08406622741585791\tshe:0.07141909427043072\tit:0.06024077039060566\tHe:0.05581667028791089\twe:0.0410261659466528\t:0.01\n",
"the:0.5267799806786334\tof:0.15799021758137846\tand:0.0800541650072387\this:0.04763590925148377\ta:0.04695692770436725\tin:0.043837753747700076\ttheir:0.032223787300684745\ttho:0.027979857398916463\tto:0.02654140132959705\t:0.01\n",
"of:0.24955431348805301\tin:0.14952196756010555\tto:0.14250065276480006\twith:0.1284555841682719\ton:0.0877104173380222\tby:0.07676608524246237\tand:0.06783530717873199\tfrom:0.04764636500261804\tupon:0.04000930725693478\t:0.01\n",
"be:0.2711518033260953\twas:0.22872023827169383\tbeen:0.11935359173064584\tis:0.09817120249491228\twere:0.07124881070832242\tand:0.06574318353209478\tare:0.057309451923487444\tbeing:0.04038750519488407\tit:0.03791421281786396\t:0.01\n",
"and:0.2917744407346903\tis:0.1361822793082047\twas:0.11924247855747624\tso:0.09571311198156142\twondered:0.07307898050064458\tbut:0.07145967336457355\tarrived:0.06875923431362398\theld:0.0681574860002901\tit:0.06563231523893508\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.251616515574782\tof:0.22750570402316492\tand:0.15568581488097585\ta:0.08863078812151558\tat:0.07078855024875703\tto:0.06364604093638855\t.:0.05572741630671637\t<s>:0.040611313190901555\tfrom:0.035787856716798\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"and:0.2237619638054288\tin:0.15312887578541265\tdo:0.1292369718295717\tof:0.09904635294304569\tfor:0.0922577925199373\tI:0.08403390688134192\tit:0.07909510294945239\tis:0.06854292250377474\twas:0.06089611078203483\t:0.01\n",
"the:0.2430700290993388\tof:0.19255952245263241\tand:0.1541377657113866\tto:0.1438140321537308\ta:0.07286436798209919\tbe:0.051059482517056685\tor:0.05091033703493395\this:0.042464487272563516\ton:0.03911997577625805\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.36109177879945187\ther:0.1665595362910309\tyears:0.11874026363055375\this:0.07140238039387302\tor:0.06393182399518262\tdays:0.0580125440232968\tthe:0.05771037154096132\tto:0.047547659146333576\tminutes:0.04500364217931604\t:0.01\n",
"of:0.4729888783681117\tand:0.10550690042741027\tin:0.09539237279732124\tfor:0.07107239756209367\tthat:0.06924823428036464\ton:0.05057571110608999\tto:0.049797013816421744\tby:0.042227107792470873\tupon:0.03319138384971578\t:0.01\n",
"of:0.6907882837842342\tin:0.1321386089512492\tIn:0.03754088806435203\tfor:0.028914047662818902\tto:0.027366150342966553\tfrom:0.019765181897372586\ton:0.019031592243964578\tby:0.017807763415839752\tat:0.01664748363720218\t:0.01\n",
"and:0.2953876189038615\twas:0.16428490131166157\tis:0.1170663883818668\tup:0.07776716508545514\tit:0.07559106251500251\tmade:0.0665568090126541\tput:0.06578409847025994\tplaced:0.06489134807601946\tthat:0.0626706082432191\t:0.01\n",
"of:0.31176034225632104\tand:0.16153048483864677\tthe:0.1534506767596078\tto:0.12073399379445032\tin:0.06493765277096822\tat:0.060434322205355065\tor:0.05807024532863748\ta:0.030244362441625757\tfrom:0.028837919604387672\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"of:0.3079049751728167\tto:0.1321494027323452\tand:0.11818269835900698\tin:0.10216336557638513\ton:0.08609498066320248\tfor:0.08425074702369899\tthat:0.06560483073652472\tby:0.04837193198345457\tIn:0.04527706775256527\t:0.01\n",
"the:0.22621754684143483\tof:0.2121246296450364\tand:0.1387178532151598\ta:0.1330548885143689\tto:0.07801628138881134\tMr.:0.06384327045324964\tin:0.05393160683610293\twith:0.04333205764451371\tor:0.04076186546132228\t:0.01\n",
"of:0.3946849902702231\tthe:0.19549844935375196\ta:0.14989316641820052\tand:0.09252491039732526\tthis:0.045970029034259896\tto:0.041067895488467725\tin:0.03203843249804412\tother:0.019675820791803696\tfor:0.01864630574792365\t:0.01\n",
"all:0.489117822513114\tit:0.10436240245559132\tand:0.10385584553714328\twent:0.053494235025989635\tpassed:0.04936239139982786\tgo:0.04868797837848751\tthem:0.0473663341148059\tlooking:0.04728561322188331\tof:0.04646737735315735\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
";:0.2168088007452265\tup:0.17682453613587082\tthem,:0.09053299638160076\tit,:0.08827835094126033\tin:0.08756142412010726\tyears,:0.08612884779474349\tStates,:0.08437911467834915\thim,:0.08132578910373672\tand:0.07816014009910499\t:0.01\n",
"of:0.23718407441061976\tthe:0.18069077660368707\tMr.:0.14180543065202203\tand:0.10703492879933164\tin:0.10015671680885013\tthat:0.07642264423650107\tThe:0.05795049213255086\twhich:0.04742717838767149\tMrs.:0.04132775796876595\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.1950486778492977\tand:0.1730591960892687\tfrom:0.1475944095137957\tby:0.08850841316562393\tis:0.08755984544463195\tare:0.08718378786871178\tthe:0.07477638580489222\twith:0.0689635253475495\tfor:0.06730575891622863\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"Mrs.:0.2647725067928276\tof:0.14146285769990546\t.:0.11963076691333296\tand:0.10083633566225178\tMr.:0.09703436550138454\tby:0.0754755495677257\tthe:0.07527216242054198\tDr.:0.05986128254856524\tto:0.05565417289346461\t:0.01\n",
"the:0.3852091685420713\tof:0.15029792416713433\tand:0.13361736839571411\ta:0.11891032624485717\tin:0.05055226342026037\tto:0.042450229405257604\tfor:0.03799538051249681\tor:0.03633593244546821\tthat:0.034631406866740044\t:0.01\n",
"to:0.7182025943057132\twill:0.07142862779542358\tnot:0.05354482029855305\twould:0.03783043092192156\tand:0.0294729021184817\tcan:0.02460961924597273\tcould:0.022929195933444037\tor:0.016739066306344603\tshall:0.01524274307414569\t:0.01\n",
"the:0.35890294521823\ta:0.2037196816390612\tand:0.14162911950704785\tof:0.09921446950587305\tto:0.05696960979638853\tin:0.03618221440504327\tan:0.033935297916652875\twith:0.030213858014780617\tThe:0.029232803996922675\t:0.01\n",
"of:0.3634414670735991\tin:0.16471690933644495\tto:0.13560196597153684\tthat:0.07626175151539734\tand:0.07608448447095241\tby:0.045885670656194755\tIn:0.0436622901004136\ton:0.0436210880041603\tfrom:0.040724372871300686\t:0.01\n",
"be:0.26172670888722693\twas:0.23927067595522433\tbeen:0.12252772533682701\tand:0.0824130199231601\twere:0.07999332020243034\tis:0.0773887100366419\tare:0.05533786662466985\the:0.03953358511677463\tbeing:0.03180838791704494\t:0.01\n",
"and:0.2435480540352145\tas:0.15690527802913024\tup:0.10296734321529094\tit:0.09647376793670022\taddition:0.09422686599691245\taccording:0.08116819529026177\tthem:0.07910602684310672\thim:0.0685702474069357\tentitled:0.06703422124644733\t:0.01\n",
"of:0.2749880842165121\tthe:0.16609061013702206\twith:0.1280015879002791\tand:0.11909425885962227\tin:0.07724803303471722\tfor:0.07170349870425817\ta:0.05874845586564059\tby:0.05225771980688881\this:0.04186775147505985\t:0.01\n",
"a:0.40586244866380244\tthe:0.34534712801344114\tthis:0.08532878696493235\ttariff:0.04392998351791949\tThe:0.02829685741585444\tappropriation:0.022493478605203246\ttho:0.021553823521544193\tno:0.019177921459643654\tA:0.01800957183765902\t:0.01\n",
"the:0.2421901218247523\tand:0.20216572841696837\tto:0.12771920183701838\tof:0.09818268241876331\tor:0.08449681249748539\ttheir:0.06491945641836883\tany:0.05962375516865609\tsuch:0.05910370452410503\tother:0.051598536893882295\t:0.01\n",
"capi-:0.3033961134069601\tmen-:0.20394324454766521\tand:0.1332261221612399\tthe:0.11352436701347864\tof:0.0821169894617577\tto-:0.04124347244935972\ta:0.039105779980437225\t.:0.03737261526185877\tmen­:0.03607129571724278\t:0.01\n",
"was:0.21571015883448433\tand:0.1709500087086353\tis:0.12219463016700408\tare:0.09660909635694588\tarrived:0.08736534667825376\tbe:0.08600020242301762\tlooked:0.07500634595709733\twere:0.06954785053804075\theld:0.06661636033652081\t:0.01\n",
"according:0.18171683465452657\tand:0.169626085333411\tas:0.14396130192913367\tis:0.09918888610943373\twent:0.09604595941463936\thim:0.08489068791145767\tit:0.07371684575042947\tthem:0.07370106404777058\tup:0.06715233484919804\t:0.01\n",
"and:0.2312741550362418\twas:0.17111855427477926\tis:0.14378706183875062\tplaced:0.09489581377957923\tbe:0.07863218846914795\tthat:0.07811923366220527\tas:0.0691209765504575\tare:0.06249213042898195\tup:0.060559885959856445\t:0.01\n",
"and:0.21076763466483905\tbalance:0.1941872918679542\twas:0.11660373805677168\tresidue:0.09735520233844874\tthat:0.08516097521039617\tone:0.08490492259724977\tis:0.07411378781887397\tup:0.06735640877060087\tare:0.05955003867486549\t:0.01\n",
"to:0.7467055380119636\tand:0.11624541464291023\twill:0.04603166334965468\tnot:0.021261721548170538\twould:0.015903820436974074\tI:0.015120559546578047\tyou:0.010287656902626173\tmust:0.009558645749265094\twe:0.008884979811857376\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"and:0.17438240995914772\taway:0.12875608775005687\tthem:0.12798561324612498\thim:0.12602495117844947\ttaken:0.11003395907714536\tfar:0.09177612745334263\tmiles:0.07768845772987168\tus:0.07733110071186913\tit:0.07602129289399227\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
";:0.24831900338069315\tnothing:0.13078974075180344\tand:0.1208420300515082\tis:0.10260220095743057\tit,:0.09780992216361221\tthem,:0.08257696264269697\tare:0.0816280638705695\t,:0.06734575393909667\thim,:0.05808632224258922\t:0.01\n",
"the:0.4740852366160124\ta:0.21103768525073688\tlittle:0.1222631148305312\tThe:0.03985106307181559\tand:0.03712602126661775\this:0.03370975907379737\tyoung:0.02866870330279754\ther:0.024276026881043862\tone:0.018982389706647635\t:0.01\n",
"his:0.301560761416923\ttheir:0.2662472093660034\tour:0.13607259737144753\tmy:0.07498773011807729\ther:0.06374647601379894\tyour:0.06318014945270568\tits:0.05653194085687905\tbis:0.01745217377286841\ta:0.010220961631296672\t:0.01\n",
"and:0.25254210015383416\tthe:0.16753716015379294\tof:0.1600301024468485\tto:0.09067739594927966\ta:0.08063323608620782\tin:0.062146931142027906\tI:0.061161689674032786\tnot:0.05817609728921982\tbe:0.05709528710475651\t:0.01\n",
"be:0.21763485224471268\twas:0.18649486702907736\tbeen:0.11530328649246784\tis:0.09709272553019263\tare:0.09609278552568239\twere:0.0851119397359865\the:0.06960804584197802\tand:0.062379180120175466\thad:0.060282317479727066\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.4085544161029164\tthat:0.1971763966989474\tas:0.09623431975726053\tis:0.07727440639345283\twas:0.07160491515940201\tbut:0.053052039520902476\tup:0.03375828739455851\tThen:0.027630399308500246\tIs:0.024714819664059667\t:0.01\n",
"<s>:0.4511929026030646\tit.:0.1219250023537839\tthem.:0.09211845176842885\tpeople.:0.06666307309093752\tcountry.:0.05886376643805602\tand:0.05203934601302137\t.:0.051386982522425705\ttime.:0.04920295224045868\thim.:0.046607522969823414\t:0.01\n",
"of:0.23531245396593406\tand:0.20263117590375904\tto:0.10610916169501212\tis:0.09026009560407866\twith:0.08517094653673214\tin:0.07615945896860467\tfor:0.06651532193503089\twas:0.06528375376134608\tthat:0.06255763162950234\t:0.01\n",
"and:0.19240036780860295\tfree:0.14520583599708728\tfar:0.11472013118798012\tcome:0.10616115179928029\tcame:0.0968981982287927\tmiles:0.09057250627773505\tit:0.08504178182922545\tor:0.08275875761934377\tfeet:0.0762412692519524\t:0.01\n",
"and:0.4029846641122197\tof:0.1036864632935564\tor:0.09889492276289562\tet:0.07452007187921945\tperson-:0.07357623054451208\tto:0.07105869981350652\ta:0.05890950536389117\tin:0.05752895541981992\t<s>:0.04884048681037891\t:0.01\n",
"to:0.29806584542340436\tI:0.14045400004354763\twill:0.11099206413110352\tand:0.10732243665543494\twho:0.07466905762364331\tthey:0.07219508034374822\twe:0.06924842501298802\twould:0.06125728193328977\tyou:0.05579580883284025\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.2584915186472168\tof:0.14281346037336012\ta:0.13707013932066836\tand:0.13577938254337027\tto:0.10223324267269843\tfor:0.07851662265653192\tin:0.06124767985536818\tas:0.037344412941561954\tor:0.03650354098922388\t:0.01\n",
"<s>:0.28280287622113565\tthat:0.1974870349597603\tand:0.12042382437818895\t?:0.1159221026083167\tit.:0.10125476476956938\tthem.:0.06373287813750778\tI:0.039638701098265956\thim.:0.03458519874632834\tman:0.034152619080926955\t:0.01\n",
"the:0.28911769851370467\tof:0.15034482710262848\tand:0.14727364343021293\ta:0.12256378698685642\tto:0.11180388212332248\tbe:0.05566769946958989\twas:0.044440704312762515\tor:0.03660687066406267\tis:0.032180887396860036\t:0.01\n",
"to:0.7719502381196097\tnot:0.04988496519090198\twill:0.04005337377444644\twould:0.03278521070723056\tand:0.029442046409976236\tthey:0.020331797464379672\tthe:0.017459093308010595\ta:0.014942304107972185\tre-:0.0131509709174728\t:0.01\n",
"the:0.19459763800229676\ta:0.17672078810046185\tmuch:0.12641581724861542\tno:0.12172492133200903\tand:0.11286439790380462\tor:0.09561638095081805\tis:0.062367185266108176\tonce:0.05051382469949565\tfar:0.049179046496390426\t:0.01\n",
"on:0.2268865406986814\twas:0.15730957394619174\tis:0.13321595756781318\tof:0.09751025484180745\tand:0.09415732545720681\tas:0.08717812901655257\tin:0.07558875006124419\tto:0.06664508040223206\tbe:0.05150838800827073\t:0.01\n",
"of:0.25166483490677677\tthe:0.23709720375109242\tand:0.149010770766607\tto:0.08030521109006582\ta:0.07955489572624934\tin:0.06451543614878104\tby:0.04920013496214942\twith:0.04294125836229686\tfor:0.03571025428598135\t:0.01\n",
"and:0.2755177139712839\tmade:0.10834514217692179\tsale:0.10503396562744235\tas:0.09866981310401297\tland:0.09459410928872458\tsold:0.09335335502607559\tthat:0.08180202406137632\twas:0.06722311663802534\tor:0.06546076010613731\t:0.01\n",
"of:0.23192482700809247\tthe:0.16929524305057111\tand:0.12265863489785712\tper-:0.11026184640041985\ttheir:0.10372121074779418\tmany:0.06639186232323849\ttwo:0.06493431515965269\this:0.064089382260499\tthree:0.05672267815187514\t:0.01\n",
"and:0.39346139678251646\twas:0.11114640267831279\tare:0.09329595834523176\tis:0.08461127492424651\tbe:0.07013499483656405\tdo:0.06518284749983096\tor:0.0622283616301043\tbeen:0.05507466059673788\twere:0.0548641027064555\t:0.01\n",
"the:0.5624867193874731\ta:0.1595376563249366\tany:0.10751108939282283\tthis:0.039920900017793685\ttho:0.030754342346370787\tof:0.027532908627143252\tgreat:0.02343226721203094\tsaid:0.021356739482756307\tsuch:0.017467377208672513\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"about:0.16659372222690705\twest:0.13091545903252577\teast:0.1227276240124117\tand:0.12247898835633991\tnorth:0.11413635580319646\tto:0.09302178365804117\tsouth:0.09279875792564031\tof:0.07713773598362246\tstreet:0.07018957300131515\t:0.01\n",
"I:0.22374854135141622\tto:0.17053887137014304\t1:0.1272453541733427\tthe:0.1072668182250411\tof:0.09993528904464904\tand:0.07467168245735635\t<s>:0.06763109286376619\tnot:0.06545421341258635\ta:0.05350813710169893\t:0.01\n",
"they:0.2613298813152984\twe:0.1581993400976138\twho:0.12895830592759622\tand:0.09104671010898545\twhich:0.08566104386427137\tThey:0.07212385636721322\tWe:0.06916946968644781\tyou:0.06397008162934376\tthat:0.05954131100322983\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"the:0.5251719265412764\tof:0.12727030158833474\tto:0.06197050873165681\ta:0.05726818322112805\ttheir:0.05659449497946293\tand:0.05014566473441622\tour:0.0405573813663534\tin:0.035916854312577\this:0.03510468452479458\t:0.01\n",
"the:0.3680886537963656\tan:0.17141972615228718\ta:0.17020308746187077\this:0.11579866020130801\tand:0.04543271813734504\ther:0.03649579169971823\tthis:0.02939064914945859\tits:0.027848533612802553\tof:0.025322179788844153\t:0.01\n",
"will:0.24546670814496485\tto:0.20546952536150323\tmay:0.1275708606779766\twould:0.08120755645509772\tshould:0.07771690441277314\tshall:0.07225922771148752\tcan:0.06764996544963005\tnot:0.06128868674718098\tmust:0.051370565039385814\t:0.01\n",
"be:0.2586967853364397\twas:0.21644990492972455\tbeen:0.18548370260379243\twere:0.07988606676898509\tis:0.07452247433899464\tare:0.059620559014741746\tbeing:0.052379158036390386\tand:0.04582468544453542\tIs:0.017136663526396107\t:0.01\n",
"of:0.49592376396851334\tin:0.14219332789153788\tto:0.09618702809446078\tthat:0.06823335805615924\tfor:0.052107695577843165\tby:0.04499036194161918\ton:0.03463076879496929\twith:0.02934222612219039\tand:0.026391469552706718\t:0.01\n",
"<s>:0.20105320364367857\tand:0.18250965173941291\twas:0.12329533241437705\tthat:0.10998541321850537\tbe:0.09742824044242465\trecorded:0.08594352170585813\tas:0.06857209858422192\tset:0.06358842892321125\tput:0.057624109328310025\t:0.01\n",
"to:0.2521568046979276\this:0.18626565367516015\tin:0.15064579652551902\tmy:0.10712667257163658\tof:0.08615752684974266\tand:0.06982253395153583\ther:0.06501355560918098\ttheir:0.042969638952241575\tyour:0.029841817167055536\t:0.01\n",
"the:0.35157575473977565\ta:0.2527498630823644\tof:0.08369834871756912\tand:0.06874211587961568\tto:0.05666953632310675\tan:0.049956900206382486\tThe:0.049678256858297215\tMr.:0.03894672440585281\tin:0.037982499787035946\t:0.01\n",
"the:0.7973547568235122\tof:0.03470083931901921\ttho:0.031588993263912575\tour:0.02981187552777074\tAmerican:0.02622699308239218\ta:0.023059294541306972\tthis:0.02079106807513546\ttbe:0.01344061295764249\tState:0.013025566409308038\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.23249637061068618\taway:0.1729582579675146\ttaken:0.14204684615275687\tthem:0.07766826901057843\tmiles:0.07536648492003646\tcome:0.07524013772926025\tout:0.07345826542488416\tcame:0.07129075865548364\tdown:0.06947460952879941\t:0.01\n",
"it:0.22527501596969265\the:0.18388789568198277\tIt:0.17719007845420529\tI:0.09605887214942407\tHe:0.07943712792698977\twhich:0.07173560525924132\tand:0.06249392108142076\tthat:0.047256196305971616\twho:0.04666528717107178\t:0.01\n",
"of:0.41451996941524516\tthe:0.23286197606789757\tin:0.09010373054170648\tfor:0.06255870846188893\twith:0.05037894497627168\tto:0.05027220727454893\tand:0.040625152621918265\tby:0.025743700118352055\ta:0.022935610522170864\t:0.01\n",
"the:0.2176444406307874\tof:0.21032817253870764\tto:0.20574675201779968\tand:0.10545724507911237\tin:0.05828659954186711\ton:0.05369867559536912\t<s>:0.052758235502345235\ta:0.04307083081855826\tat:0.0430090482754532\t:0.01\n",
"well:0.17286234433367575\tsuch:0.1479378804432679\tand:0.1433204465792291\tknown:0.11689749818398885\tfar:0.11590668340198397\tsoon:0.10585626727327858\tjust:0.07361294222484566\tlong:0.06818725650687826\tregarded:0.04541868105285187\t:0.01\n",
"and:0.1988595941783454\ta:0.191158593840502\tis:0.146868257591394\tof:0.10820850455679323\twas:0.08823847108497478\thas:0.07022413619160646\thave:0.06703025441878581\tnot:0.061780043159961176\tare:0.05763214497763733\t:0.01\n",
"number:0.15510138461792508\tsum:0.148514921816429\trate:0.14780823894173517\tout:0.11151674228111759\tfull:0.09055767387112672\tmatter:0.08961096775660078\tamount:0.08716863345491424\tloss:0.0869224973602961\tand:0.07279893989985517\t:0.01\n",
"and:0.29635189305068393\tso:0.14127294388052722\tfact:0.11934677619133646\tsaid:0.09382506667151261\tknow:0.09321340215184683\tsay:0.08466047801883074\tis:0.061229379962697866\tbut:0.05099440426762219\tbelieve:0.04910565580494222\t:0.01\n",
"and:0.23279965659275237\twas:0.17417711985311504\tthe:0.16382010565329974\tbe:0.09373310948092689\tis:0.08292811648847893\twere:0.0704689167383008\the:0.06596726117261299\tare:0.056797621313343066\tor:0.04930809270717013\t:0.01\n",
"in:0.22198842827441548\tup:0.1769447788789851\thundred:0.1148919273906538\tout:0.08872383736072158\tday:0.0870773664453534\tmen:0.07789774058351305\tcity:0.07668265301297594\t;:0.07558464354908534\tdollars:0.07020862450429632\t:0.01\n",
"the:0.2348936864380875\tof:0.17141990857045894\tand:0.15092221108899265\ta:0.10125325371681407\tto:0.08978991230211596\tbe:0.07036792028887345\tin:0.0685027598781156\twas:0.06545509613683566\tis:0.037395251579706204\t:0.01\n",
"time:0.20108788250578666\tmen:0.17633739469577114\tup:0.10177265026557178\thundred:0.09617509155607458\tin:0.08959106629230254\tlong:0.08396584482409511\tone:0.08077874034348625\thim:0.08071123826324925\tgood:0.0795800912536627\t:0.01\n",
"to:0.26682292600236335\tand:0.2306612335630966\tof:0.13996790161458736\tthe:0.13696172912657284\tnot:0.06001322125522884\tin:0.053201450199867696\tor:0.03479501957877238\tI:0.03467007059716311\tis:0.032906448062348\t:0.01\n",
"the:0.6073428982040967\tThe:0.06969777928932563\tof:0.0649375222570982\tother:0.05841035334844036\ta:0.05150322222129898\tand:0.04864097060838875\ttho:0.04588385860598265\tby:0.022100070878033014\ttheir:0.021483324587335678\t:0.01\n",
"and:0.23563055452093967\t-:0.13546340053601869\tthat:0.12409249187865418\tthe:0.10358230276108538\t.:0.09041300424606895\tof:0.07789495965196948\tland:0.0767538445226932\tto:0.07330374648554151\twas:0.07286569539702897\t:0.01\n",
"the:0.23644202341691004\ta:0.21766691029426216\tany:0.10319596754264769\tin:0.09257177551197637\tfirst:0.09248552861917603\this:0.08413850027607711\tof:0.06715657922780544\ttheir:0.05325815659949641\tand:0.043084558511648774\t:0.01\n",
"and:0.2630681499721094\twas:0.16937873429674838\t<s>:0.12590471272734088\tis:0.10936504883125728\tbe:0.08472299099761726\tthat:0.06973313352122497\t.:0.06123506813976831\tbrought:0.0542698269444489\tbeen:0.05232233456948455\t:0.01\n",
"of:0.3830545450395426\tto:0.12142453176946907\tand:0.10218140066570748\tin:0.1008873626260106\tfor:0.0766723362255692\tthat:0.06697892972449249\twith:0.046478561718041635\tall:0.04617772013387347\ton:0.046144612097293404\t:0.01\n",
"and:0.17585653528116318\tto:0.15780463333268435\tthe:0.15408048987271517\tof:0.13338762061696083\tbe:0.09705683339257447\tis:0.07833119972135894\twas:0.07225980199753679\tfor:0.06656433948048371\tin:0.054658546304522555\t:0.01\n",
"and:0.3296810130840902\tthat:0.1931715645932323\tI:0.08967374214981207\tbut:0.08091730741202768\t<s>:0.07830143667804451\twhich:0.07695318157030842\t;:0.04865281101838605\tas:0.04864000827187745\tit:0.044008935222221546\t:0.01\n",
"get:0.1466179279908691\twas:0.13816166858847523\tand:0.13411725524820045\thim:0.10611862598008347\tit:0.10231181039389517\tthem:0.09727726821367766\tare:0.09515897845536371\tgo:0.08768078124059613\tcome:0.08255568388883913\t:0.01\n",
"of:0.35256282198194355\tto:0.20737957642101038\tin:0.09147299589804907\tthat:0.07539253150119887\ton:0.06995939290134671\tand:0.06735623684601358\tby:0.04328516396159174\twhen:0.04212038445225181\twith:0.040470896036594324\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.43102462502231625\tto:0.1516649771939914\tthat:0.07367178892746432\tand:0.06883059249973034\tin:0.06742030243567641\tfor:0.06477639128523811\twith:0.0511017419873648\tby:0.042615236451528635\ton:0.03889434419668976\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.2433965671591451\thim:0.1591857612555844\twas:0.15546468801479868\tis:0.08403713707126538\tit:0.08119311744346455\tup:0.0765112129798562\tas:0.06975526414728683\tcome:0.06105440877997866\tplaced:0.05940184314862022\t:0.01\n",
"in:0.22642398146928283\tof:0.2218162205038526\tto:0.15392453508454218\ton:0.09220519768164841\tand:0.08564264070743798\twith:0.06525302435638586\tupon:0.05464789651685467\tfrom:0.04967262968323026\tby:0.040413873996765104\t:0.01\n",
"and:0.30813827370948377\tsaid:0.1730589697868629\tfact:0.11175374042727586\tstated:0.09076470050424858\tso:0.07733344451894186\thim:0.06626454011197735\tknow:0.06377304208821113\tsay:0.049787186448953615\tis:0.04912610240404502\t:0.01\n",
"have:0.193308871597742\thas:0.1644725212658929\tare:0.15683896528982624\tis:0.14418685579799015\thad:0.09657639230540167\twas:0.07239764938229547\tbe:0.06640045469971269\tand:0.049297677630134554\twere:0.046520612031004334\t:0.01\n",
"the:0.3393255573743127\tand:0.21178061799709652\tof:0.18374035432791083\tthat:0.05355193750391202\tThe:0.05262746553326421\ta:0.05042822526649288\tor:0.03381932134870707\tI:0.03348309181440277\tin:0.0312434288339012\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"in:0.2291796231230006\tof:0.19894604768114812\tto:0.12894122755459386\tfor:0.0981401666214376\twith:0.0799494179447224\tfrom:0.07786568636192283\tby:0.07136739601410988\tat:0.053415232000225306\tIn:0.052195202698839635\t:0.01\n",
"a:0.7702894344532505\tthe:0.1496185384852795\tA:0.01885570264419299\tThe:0.010399744769476837\tthis:0.010090955247461671\tlong:0.008916721913929787\tfirst:0.007780356701237188\tand:0.007034044984284663\ttho:0.007014500800887054\t:0.01\n",
"will:0.22448046644940609\tcould:0.18179862143461417\tdid:0.1452730178147247\twould:0.140592470442591\tdoes:0.10548941706057513\tdo:0.07283681364051281\tshall:0.04353498516785439\tshould:0.039087264980935045\tis:0.03690694300878677\t:0.01\n",
"and:0.21756602459774244\tof:0.17085154504669112\tby:0.1519697382509192\tin:0.14271041348198032\twas:0.1035207269730199\twith:0.0630042849732611\tfor:0.04828519047061303\tare:0.04640777255617391\tto:0.045684303649599134\t:0.01\n",
"and:0.30813827370948377\tsaid:0.1730589697868629\tfact:0.11175374042727586\tstated:0.09076470050424858\tso:0.07733344451894186\thim:0.06626454011197735\tknow:0.06377304208821113\tsay:0.049787186448953615\tis:0.04912610240404502\t:0.01\n",
"of:0.3817864120278334\tto:0.12858907520716367\tfor:0.10430088958246488\tin:0.1032979190867059\tand:0.09608026282516693\twith:0.06634161178938557\tby:0.04328586082078908\tfrom:0.03388767655795576\tat:0.03243029210253477\t:0.01\n",
"the:0.35188964628984826\tof:0.3174473454120755\tsaid:0.08708142982243397\ta:0.0507997234875453\tto:0.04480738707085683\tby:0.042233189974757675\ton:0.03941436336331023\tthis:0.028314449932143687\tthat:0.028012464647028508\t:0.01\n",
";:0.22046407195551485\tis:0.17582574326264086\tnothing:0.1379406967632926\tand:0.10030977648515513\tit,:0.09114822746878604\tare:0.07939989855556757\tone:0.06256347466378491\twas:0.06127459137468538\ttime,:0.061073519470572844\t:0.01\n",
"the:0.27303853561626584\tof:0.12144527006365491\tand:0.11190443096014464\ta:0.10717374517078575\tto:0.09517206869392293\tin:0.09150130096840599\tfor:0.08281709927900711\tbe:0.05513949846120759\this:0.051808050786605275\t:0.01\n",
"and:0.2356343567867148\tSt.:0.1830720876558326\tof:0.13140177233699146\tthe:0.11271482964321575\t<s>:0.09806577731945529\tto:0.07766866782015054\twas:0.05789619297470086\tde-:0.050016889869168246\t1:0.043529425593770335\t:0.01\n",
"and:0.30735359476081114\tto:0.22522162155475015\the:0.10662948316921289\tof:0.07884913974184656\tin:0.0597246616761408\tthe:0.057550992930262716\twas:0.055200078540659045\tthat:0.0503361973709718\tfor:0.049134230255344906\t:0.01\n",
"well:0.34618032515109337\tand:0.13329003312874318\tknown:0.13040133597623033\tfar:0.11465520923791377\tsuch:0.07899955666380475\tsoon:0.06896496887707047\tis:0.04093734796885951\tmuch:0.03952117364441856\tjust:0.03705004935186609\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"of:0.26561422457348965\tto:0.15398276019780652\tand:0.1200434464013876\tin:0.11598472550701903\tfor:0.07667729389295613\tthat:0.07298524945098726\tby:0.07100134231374444\twith:0.06217479490450846\ton:0.05153616275810076\t:0.01\n",
"the:0.2775049760308905\ta:0.18705178668529587\tthis:0.13079983222384725\tone:0.10584978574099062\tevery:0.07313175378949342\tsame:0.058812758484926106\this:0.05824567760885066\tother:0.05733926584125098\tfirst:0.041264163594454444\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"of:0.5098472274332899\tin:0.13268782784949315\tto:0.10592018786131684\tthat:0.04760484698437597\tby:0.04756578762629169\tfor:0.044769435977049424\twith:0.03932066956143651\tand:0.032009553032577166\tfrom:0.030274463674169264\t:0.01\n",
"and:0.3656792069525932\tannum,:0.338580631074157\ton:0.09415476019782644\tof:0.06601320986490054\tday:0.03431981921189227\tor:0.025519481630818595\tthat:0.02292773508938672\tsale,:0.02164397037930648\t2:0.0211611855991188\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"<s>:0.3987785071646829\tit.:0.14040032270496164\tthem.:0.10376492453408752\t.:0.07179843042241119\ttime.:0.06094232199008742\thim.:0.059073776914618084\tcountry.:0.05817830274933814\tyear.:0.050896904983854165\tday.:0.04616650853595894\t:0.01\n",
"he:0.19216420268890672\tI:0.14249478219207085\tit:0.1393078157224164\tIt:0.12149617874351198\tHe:0.08856204987147628\tand:0.08730213392007194\tthere:0.08170176791215107\twhich:0.07289892602507458\twho:0.06407214292432002\t:0.01\n",
"<s>:0.31843561172806895\thim.:0.15789457478237873\tit.:0.14920763575051382\tthem.:0.10382141739516831\ttime.:0.06881542073966561\tday.:0.05119280938941718\thome.:0.048025769657993884\tyears.:0.04750621461518425\twork.:0.04510054594160918\t:0.01\n",
"or:0.29373072158498936\tnot:0.19105285114169895\tno:0.15595603775739214\tand:0.07824229206549015\ta:0.06970104021547001\tthe:0.05718359420674088\twith:0.052575551503152726\tof:0.04586871216149284\tmuch:0.04568919936357301\t:0.01\n",
"the:0.2897383324568781\tof:0.17113076544121678\ta:0.10182560711526899\tto:0.08415539991493161\tin:0.07588252600215932\tany:0.07161219763621446\tfor:0.06930496705250555\tor:0.06569006370210649\tand:0.06066014067871867\t:0.01\n",
"make:0.32474467630608506\tfor:0.1041321151058247\tget:0.10291767265303245\tmade:0.09660474451763146\tand:0.0747900747097348\tfind:0.07359171837655865\tthat:0.07266655797486206\thave:0.07188892814242204\tis:0.0686635122138487\t:0.01\n",
"that:0.2798109476156464\twhich:0.15048798381032377\tand:0.13524392048408\tas:0.11419344174647025\tif:0.1032446856068123\twhere:0.05463108920764861\tbut:0.05281420757336369\twhen:0.050228176209059026\twhat:0.04934554774659583\t:0.01\n",
"and:0.1715161835985111\tis:0.1701504783439962\tas:0.11082801560618431\twas:0.10049374719407791\table:0.0995782405371278\tnot:0.0959529126271294\tenough:0.08218526606313246\thim:0.08082377757804238\torder:0.07847137845179847\t:0.01\n",
"a:0.5022435698466601\tthe:0.23388093705791405\tof:0.07964282592323375\tin:0.050126780336993124\twith:0.037660651328938706\tand:0.02603552954263828\tThe:0.022154997706119364\tmuch:0.021314023366048516\tto:0.016940684891454096\t:0.01\n",
"of:0.2667447977989978\tthe:0.23007813986268735\tand:0.14167664780512892\tto:0.08766536326416904\ta:0.08363267794152486\tat:0.04983718512680643\tin:0.04919582740561988\twith:0.04663402365648746\tfrom:0.03453533713857812\t:0.01\n",
"of:0.23552918213715993\tto:0.1834411276283098\twith:0.1125671974791918\tin:0.10571295796490686\ton:0.07896034307074883\tand:0.07375603260789158\tby:0.0710896905541787\tthat:0.06734424765839034\tupon:0.061599220899222255\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"I:0.3169293495632366\the:0.1621332750799187\twe:0.12160130348551776\tand:0.0992700034002947\tthey:0.09443226059984022\tyou:0.05333031607837386\tit:0.052283113556116034\tthat:0.05167243121854874\tWe:0.03834794701815334\t:0.01\n",
"this:0.2802039948951219\tthe:0.17686438892184192\tsame:0.12303654611808054\tthat:0.11938705912492151\tin:0.08592662406693313\tsome:0.057701181608169894\tto:0.051930580677120926\tof:0.04760844330741927\tfirst:0.04734118128039087\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"those:0.4067879112732331\tmen:0.17817794621670988\tman:0.13110900665041422\tand:0.07309153582732911\tone:0.059163995595349184\tThose:0.04389400312401397\tpeople:0.037845969028667464\tperson:0.031130954858217163\twoman:0.02879867742606605\t:0.01\n",
"the:0.3631612301726393\this:0.2246983706326143\tmy:0.08230807126603051\ta:0.0776613429171699\ttheir:0.06637011124165666\tthis:0.056138400874529745\tsame:0.04473948561934436\tits:0.0445196198716233\tof:0.030403367404391875\t:0.01\n",
"he:0.21236976584642633\twho:0.15091908100628376\twhich:0.13423069933853982\tthey:0.1114226506626021\tit:0.10310378443593025\tthat:0.08782466281035546\tI:0.07127377388196328\tthere:0.06045635920866448\tshe:0.058399222809234465\t:0.01\n",
"it:0.20622348714107272\tthat:0.16057455996523642\tthere:0.14151153360535962\twhich:0.11963266539685385\tthey:0.10506951759105808\tIt:0.08276968157081656\the:0.06915141905166503\tand:0.0620236112565421\tThere:0.04304352442139564\t:0.01\n",
"as:0.18234509449290306\tand:0.13248255435227901\tof:0.1313060072718588\twas:0.10683091360114386\tis:0.10471888581858478\tin:0.09961216018716992\tsuch:0.09415990779054606\twith:0.07160675824748887\tto:0.06693771823802558\t:0.01\n",
"Board:0.23280092957027768\tline:0.1857595654144676\tnumber:0.16900261069973732\tState:0.08501797471113409\tcity:0.0697276637925753\tstate:0.06779522736949771\tside:0.062236764246586314\tCounty:0.059989226540369346\tcounty:0.057670037655354646\t:0.01\n",
"and:0.23801640066931004\tthe:0.2137704409097659\tof:0.16257010859333798\tto:0.12670471077830098\tin:0.057739668314996676\ta:0.05257062951863229\tbe:0.04791117785243138\tfor:0.045811717077346006\t<s>:0.04490514628587866\t:0.01\n",
"the:0.4854189205909659\ta:0.15323913008483753\tof:0.09181307955076805\tand:0.07593189091703313\tThe:0.057726079271395905\ttho:0.035145153502758146\tan:0.034874604957012605\tin:0.028869611739383596\tto:0.026981529385845138\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"part:0.21361158070694775\tone:0.17380084287165434\tout:0.1373975162565351\tside:0.09101456173050995\tthat:0.08719614736605438\tsome:0.08124242756234751\tend:0.07179676690489906\tmembers:0.07134260443302046\tportion:0.06259755216803148\t:0.01\n",
"reason:0.4015142634399176\tand:0.18289778059156364\thave,:0.10912928135167829\tsee:0.06396445787904324\tunderstand:0.05390849121404605\tknow:0.0503759554504456\treasons:0.04879673153779884\tis:0.04721373448838211\twas:0.032199304047124615\t:0.01\n",
"the:0.7011191618733874\this:0.08135234065742138\tThe:0.049303292895058394\tof:0.035986373353162675\ta:0.03378195323497413\tand:0.027652405976215346\ttho:0.026265077194071527\ttheir:0.018168847568055556\tthis:0.016370547247653574\t:0.01\n",
"years:0.7283802236691225\tmonths:0.07034021493687308\tthe:0.05843405535495157\tto:0.03482790587000519\tyear:0.03259063811975011\tand:0.028635445845246705\tof:0.018143228311172516\tweeks:0.011210150764961123\tdays:0.007438137127917163\t:0.01\n",
"is:0.2250775251367794\twas:0.13937923237569994\tin:0.12090300788707883\tof:0.10447220315106985\tand:0.09796113124996936\tany:0.08661141896630947\tno:0.07783853733564215\tfrom:0.0716422731967559\tbut:0.0661146707006951\t:0.01\n",
"is:0.34292632942557216\twas:0.11793252288422891\thave:0.11026298811053771\tbe:0.1082860354118234\tand:0.08695989161149832\thad:0.08271305474595515\twill:0.052189383848504634\thas:0.044463831832014335\tIs:0.0442659621298654\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.5525687696761634\ta:0.18901914616009224\tgreat:0.058525117303363586\tThe:0.04561507317613364\tfull:0.037873690813322355\ttho:0.029820770083879417\tlarge:0.0281891368384594\tand:0.025995661716363295\tin:0.02239263423222264\t:0.01\n",
"he:0.3552571607629699\tI:0.11493637004132888\twho:0.09810488886755744\tshe:0.09281112443892416\tthey:0.09228556979491134\tHe:0.06877833781077994\tand:0.06511276931380953\tit:0.05593015264858416\thave:0.04678362632113481\t:0.01\n",
"most:0.37934281095380984\ta:0.16618306651734727\tthe:0.16505034888031467\tvery:0.06609144224242884\tmore:0.06504149694460233\tand:0.047940414456512585\tan:0.03372945710843376\tThe:0.03366080324143257\tas:0.03296015965511813\t:0.01\n",
"it:0.25963858208860846\twhich:0.14112918128503316\tand:0.13477755288321686\tIt:0.11476539973660434\tthere:0.09895590903510543\tthey:0.0762137180117906\twho:0.057804780239370954\twe:0.05506058752131994\tthat:0.05165428919895035\t:0.01\n",
"the:0.39886099072163\ta:0.23032773993656872\tof:0.13692954857378647\tThe:0.06100687951190594\tand:0.056774698676887204\twith:0.03376206676424308\tA:0.0276232547222467\ttho:0.024878846406478472\tby:0.019835974686253272\t:0.01\n",
"the:0.4200597861829513\ta:0.17424342085954872\tto:0.15219519375561563\tThe:0.08956477051196049\ttho:0.043277790306620496\this:0.03872782584624995\tand:0.025360610362965625\tcon-:0.024819065482326274\ttbe:0.02175153669176143\t:0.01\n",
"it:0.19861178105192082\tIt:0.16416844195678912\the:0.11485088723181719\tthere:0.11415883153204022\twhich:0.10255310296057513\tand:0.09877391422271825\tThis:0.09055130596711539\tthat:0.058038815805489634\tI:0.048292919271534396\t:0.01\n",
"is:0.27231680442709455\tas:0.1410092867211512\ta:0.10887480664482775\twas:0.10876748344713183\tare:0.0958630723858365\tand:0.07252714882736161\tvery:0.0700519014782042\tbe:0.06551182402091586\tthe:0.05507767204747661\t:0.01\n",
"is:0.2380281321029588\twas:0.19377348781694975\tand:0.17942760253362575\tnot:0.13351286014446098\tare:0.05428873769510381\tbe:0.0513096906821455\tbut:0.05052025895335383\tIs:0.0481425750600564\twere:0.0409966550113452\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"in:0.3336094911301784\tof:0.19754620994457317\tIn:0.17864988575409033\ton:0.08455143730008782\tand:0.051586991552536286\tto:0.04622433852476418\tfor:0.04208115140793021\tduring:0.03181464847197519\tfrom:0.02393584591386441\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"of:0.33448044278748246\tto:0.14091062932466303\tfor:0.09598172986872813\tthat:0.09028400206772046\tin:0.08781050515751512\tand:0.07949211903315889\twith:0.07577838381043661\tby:0.050452942063624606\tis:0.034809245886670656\t:0.01\n",
"he:0.24309386805093885\twho:0.1749208902593515\tthey:0.12460932433516753\tand:0.09243546174474501\tI:0.09036125426931618\twhich:0.08903458241057916\tit:0.06045823069269425\tshe:0.059468363293639616\thave:0.05561802494356795\t:0.01\n",
"a:0.43231003320737765\tthe:0.33375945407743174\tThe:0.07568010487794173\this:0.031843856863899206\tof:0.025673217528364288\tthis:0.02340162723861286\tA:0.0232298245255142\tand:0.022883144639849827\ttho:0.021218737041008403\t:0.01\n",
"the:0.3778194325788838\tto:0.17700494799531183\tthis:0.12741827812800682\ta:0.06836487733099418\ttariff:0.06009468559230397\tand:0.04995042216210185\tappropriation:0.048214011299422134\tone:0.043833552295958686\tthat:0.037299792617016776\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"as:0.17481395904871108\tup:0.13266480410279496\tand:0.11423368936286925\taccording:0.10311874253127586\tback:0.09834039683776627\thim:0.09814074486700695\treturned:0.09685287995672426\twent:0.08599041765307629\tcame:0.08584436563977506\t:0.01\n",
"of:0.404980838867525\tto:0.156047117194398\ton:0.10921829460632533\tin:0.09134135213227665\tfrom:0.0725434921321665\tat:0.04430674872235798\tby:0.042260044642169696\tthat:0.039421314088600695\tand:0.029880797614180086\t:0.01\n",
"to:0.2291599023600459\tI:0.13871946602755938\twould:0.1330455404601739\tthey:0.11537319596311135\twe:0.10498230354658346\twho:0.08173080463455146\twill:0.07730390766292998\tyou:0.05776733890846799\tand:0.0519175404365766\t:0.01\n",
"the:0.32934117598366397\tand:0.15803763214459943\tof:0.13694854921075386\tto:0.07548228016299392\ta:0.06370449284018063\tbe:0.06220921731190308\twas:0.05641506434396651\tis:0.055331613382107674\tin:0.05252997461983086\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"the:0.3282456637187539\tand:0.10066751118892113\tcome:0.09186198506973138\tgo:0.08646340173997774\tcame:0.08533539092635857\tget:0.0836515463984589\tor:0.07864132335098054\tthem:0.07821652223731734\tit:0.05691665536950048\t:0.01\n",
"and:0.2499433143560627\tI:0.13802112228717098\twill:0.11336133969141787\twas:0.10620900613167572\thave:0.08450177099765013\thad:0.08242733447866521\the:0.07913534739691108\tis:0.06852434045917162\thas:0.0678764242012747\t:0.01\n",
"of:0.49477372528750246\tto:0.1214370558889103\tin:0.11409453040656703\tthat:0.0600183121784756\ton:0.057379621950564785\tby:0.050117645274711915\tand:0.03338844931841934\tfrom:0.030403484178493406\tfor:0.028387175516355116\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"is:0.2378962338787881\twas:0.2170822761402054\tbe:0.1371817577503503\tare:0.1129209091904668\tnot:0.07416992699361206\twere:0.06727496841817034\tand:0.05956475841843222\tbeen:0.04323591900019227\tIs:0.04067325020978256\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"to:0.30102863785986816\tand:0.20724594162951251\tof:0.11561430117577177\tthe:0.08949931874126583\tin:0.06780950692820926\tis:0.05678672479774325\tI:0.05395775487226535\tfor:0.04939417435915029\tnot:0.048663639636213486\t:0.01\n",
"a:0.32079070732883197\tthe:0.21643861229698805\tand:0.10972140986920041\tof:0.09584138972782447\twas:0.070717413421564\tbe:0.05844085227378187\tis:0.05006789068857641\twith:0.036902868112336715\tbeen:0.031078856280895902\t:0.01\n",
"the:0.2454162012121175\tof:0.1411230708504749\tand:0.13909491179529657\tto:0.12868679917838224\ta:0.11977761354253098\tbe:0.06375422245875538\tin:0.057052830665009255\twas:0.04829030541090776\tis:0.04680404488652549\t:0.01\n",
"hundred:0.18288209852357765\tsix:0.13328227189507336\ttwo:0.12446038625559351\tfive:0.12432557335010594\tthree:0.11433554796659\tten:0.07148480768136202\tfour:0.0686310100852656\ttwenty:0.060391798326179025\tseven:0.060050867053781605\tfifteen:0.05015563886247134\t:0.01\n",
"and:0.24528248998831378\theld:0.14648753496079167\tarrived:0.13032093183429208\tBeginning:0.09587085001543451\twas:0.08274139177167324\tDated:0.07650922845240461\tsold:0.07470867727267312\tarrive:0.0729010774734216\tmade:0.06517781823099539\t:0.01\n",
"the:0.38379315035434225\tof:0.31721256047134866\tand:0.08172204044761766\tto:0.04700880075190454\tThe:0.03984838081766385\tfor:0.039202396070239044\tour:0.03165684727733281\tin:0.02562439482971462\tits:0.023931428979836633\t:0.01\n",
"there:0.16212158455389708\thim:0.12391353711587129\tit:0.11805106128165596\tit,:0.10584915054505331\t;:0.10420384904053812\tin:0.10350974344543261\tgood:0.09775369245048582\tone:0.0925275949872672\thim,:0.08206978657979863\t:0.01\n",
"it:0.21150095565170535\tand:0.16872366050491697\tIt:0.1558799302555286\tof:0.12670459828645414\tat:0.06965332339605183\tthe:0.06815579907070891\tfor:0.06380098095366143\tto:0.0630525656077604\ton:0.06252818627321244\t:0.01\n",
"in:0.22661916411881478\tup:0.11559962918529301\t;:0.10278458296576422\ttime:0.10232514169808289\tit:0.10065015702964657\tit,:0.09194712968823854\thim:0.08621902621084161\tout:0.08600554136352567\tthem,:0.07784962773979276\t:0.01\n",
"and:0.45567262975550527\tbut:0.09306106244724258\tare:0.08855855434687347\tis:0.07210347540330228\twas:0.06995149139906576\tmen:0.06566703441648501\tpeople:0.04901704717022338\tw:0.04801899315907749\tthat:0.04794971190222472\t:0.01\n",
"and:0.2995153816438973\tof:0.2026715014052449\tto:0.09906814275159391\twith:0.09576812225336781\tthat:0.08173624994606835\tby:0.07847448910983473\tin:0.06712525981627479\tfrom:0.035175924094783394\ton:0.03046492897893484\t:0.01\n",
"to:0.558835476018929\tnot:0.08807093054998215\tI:0.06235788162884431\twe:0.061179922238789486\tyou:0.051203572980376685\twould:0.04748987113288511\twill:0.04455655223533674\tthey:0.04009687489924732\tcan:0.036208918315609184\t:0.01\n",
"long:0.2178464713467953\twell:0.15119131400461577\tlarge:0.11681757815550972\tnot:0.11504221845456013\tand:0.0974897064239277\twas:0.08598344095356661\tis:0.08269425646447148\tfar:0.06611336889394219\tstrong:0.056821645302611065\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.34619345787616196\tof:0.2392667203801298\tto:0.11565882482322798\tand:0.10755779859276463\tfor:0.0424121440333838\tboth:0.03771321334757125\twith:0.03621906974693815\tby:0.03592821658559671\this:0.029050554614225718\t:0.01\n",
"of:0.21812856260690297\tfor:0.16343545561400774\tand:0.16278192583231935\tto:0.15827092950126853\tthat:0.1125406470349216\twith:0.05640466948135833\tby:0.05563208772372514\tit:0.032373983705558475\thave:0.030431738499937872\t:0.01\n",
"to:0.5480262219979412\twill:0.09256421428682275\tnot:0.0904638107587012\twould:0.0753985224333285\tthey:0.03515207459654702\twe:0.03297765970680281\twho:0.032729010275009685\tand:0.03082566000466296\tmust:0.028943449692825588\tcould:0.02291937624735838\t:0.01\n",
"is:0.1783950233855535\twas:0.17504592657499385\tof:0.1215885948987722\twith:0.11107451113648516\tin:0.09587583988310214\tto:0.0874078290530052\tand:0.08457583693582504\thad:0.0696752855601149\tfor:0.06636115257214804\t:0.01\n",
"that:0.4189852017646906\tand:0.14516217748957919\tas:0.10072602595847757\tbut:0.08878389148346506\tif:0.06898585649826197\twhich:0.05609117853103028\twhat:0.04165817083938284\twhen:0.03806145845287004\tthink:0.031546038982242404\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.36764412044516276\thas:0.1564337610967044\thave:0.10991062104924793\tand:0.10625519783611487\thad:0.10199985670133438\twill:0.0622114036938925\twould:0.03492580542404599\tshall:0.025863676089271193\tmay:0.024755557664225863\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.407674785398844\tto:0.1277612093619651\tin:0.0981100127674003\tand:0.07987385520716705\tfor:0.06192213266467773\tby:0.059814335151744225\ton:0.0571953785601922\tthat:0.05542901686480434\tIn:0.04221927402320507\t:0.01\n",
"the:0.2010021115599926\tto:0.1737985731059347\tof:0.15050208736975193\tand:0.11238908860391597\twas:0.0908265183940859\ta:0.0744583315183971\tbe-:0.07441653894464777\tis:0.061229766580739926\tbe:0.05137698392253402\t:0.01\n",
"amount:0.19462765045805325\tsum:0.1936697669197853\tnumber:0.1738565737531945\tout:0.10218718765275135\trate:0.08746811128937342\tinstead:0.0653287665772841\tone:0.05856451617881859\tthat:0.05762440251994824\tquestion:0.05667302465079115\t:0.01\n",
"of:0.6827531713502267\tto:0.08178435658863059\tby:0.06324278485591685\tin:0.046325993639659016\tthat:0.032348803603648904\tand:0.0274659397189516\twith:0.022427117591200123\ton:0.017179281118312555\tfrom:0.016472551533453613\t:0.01\n",
"<s>:0.2773737483516857\tit.:0.19768349830302606\tyou.:0.13053409691460166\tthem.:0.09625691446532422\tand:0.07569687398197308\thim.:0.06163662469778465\tme.:0.053235182957923004\t.:0.0520549783780891\ttime.:0.04552808194959247\t:0.01\n",
"in:0.4113562608050338\tthe:0.17340233241967482\tno:0.08570196457193922\tIn:0.07787363656397\tof:0.06686785784013813\ta:0.06319423361880559\tsuch:0.0432842901756895\tany:0.03701142065353711\tand:0.03130800335121176\t:0.01\n",
"is:0.25026591316573965\twas:0.16683185557722202\tthe:0.13414668462429155\tand:0.11246226367729859\tin:0.09434357872869249\tof:0.07765189325572396\tare:0.05424653197024321\ta:0.0502790923583583\tit:0.049772186642430216\t:0.01\n",
"the:0.5163233369026575\tthis:0.08060546050554686\tsuch:0.07718088848661026\ta:0.07037196716135204\tand:0.05915166982770246\tof:0.053702994871703796\tThe:0.049397651323887036\tany:0.04452624073990112\tother:0.03873979018063874\t:0.01\n",
"the:0.28331751316299447\tof:0.17334788028772563\tto:0.12158054735072847\tand:0.10439565886854561\tbe:0.0794169294631217\ta:0.07917204011865238\twas:0.052937597973227564\tin:0.049110172916530005\tis:0.046721659858474096\t:0.01\n",
"a:0.3068136687910984\tof:0.19636869225758502\tthe:0.1465365226531285\tin:0.09208286102930663\tto:0.062171152499655796\tfor:0.056513902647360836\tand:0.050070880131702224\tthat:0.047067046546907534\twhich:0.03237527344325509\t:0.01\n",
"in:0.6341732297212759\tIn:0.25618185798559967\tof:0.029662705611363704\tthe:0.019946274961280232\tby:0.013969560579912568\tiu:0.011877424262511985\tand:0.009640395710314994\tfor:0.009237664293883282\tto:0.005310886873857505\t:0.01\n",
";:0.30220667183193684\tit,:0.13621110836743158\tdoubt:0.11840340910211916\thim,:0.10586082606151845\tis:0.10003855235182507\ttime,:0.06413846382730465\tthem,:0.05583201947746671\tnothing:0.05367572238776774\t,:0.053633226592629854\t:0.01\n",
"<s>:0.2087584395371831\tit.:0.19537403239790388\tthem.:0.16115429142153034\thim.:0.08966055646053193\ttime.:0.07457973471843563\t.:0.07249118638984156\tyears.:0.06578996745015628\tyear.:0.0657178816857478\tday.:0.0564739099386695\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.3869783035647579\tin:0.21492185207099654\tto:0.11178530117010436\tand:0.054119153678918765\tthat:0.048623188379915666\tIn:0.04780578328085678\tby:0.04507216933149293\tfor:0.04125300597992876\twith:0.039441242543028415\t:0.01\n",
"be:0.2094589950454189\tI:0.16667358847853803\the:0.14023957560114994\tthey:0.12240053603291122\twas:0.08288303826540082\tbeen:0.07027905217311148\tnot:0.0685880813307133\tand:0.0673773579840678\tever:0.06209977508868847\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.29187764604094735\tof:0.22178196805794081\tand:0.12194274173166579\ta:0.07943900673134333\tto:0.0772972271610953\tat:0.05837903430942658\tin:0.054015147310237904\tbe:0.04423005804037607\this:0.041037170616966816\t:0.01\n",
"and:0.2273085794466238\tmade:0.208650458059006\tthat:0.11061789761233745\there-:0.09983313661539571\tor:0.08141396852038764\ttaken:0.0725463702371297\tup:0.06746664061564744\towned:0.06142509530554153\tdone:0.06073785358793076\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"in:0.20144762439043964\tof:0.17446914410521497\tto:0.14579793476058087\twith:0.1175258805749038\tas:0.09724121834194109\tand:0.06936740171715461\tis:0.06676781647289115\tfor:0.06605829374180944\tat:0.05132468589506446\t:0.01\n",
"<s>:0.5911664716768236\t.:0.09254162861311349\tit.:0.07581705834204039\tthem.:0.05818195815929814\tday.:0.037726686386629994\thim.:0.034790603659583\ttime.:0.03473040556580825\tof:0.0340401802064035\tcountry.:0.03100500739029967\t:0.01\n",
"last:0.29286514066996117\tthe:0.13749136416970587\tSaturday:0.11452405282674623\tat:0.11398689748106049\tFriday:0.08780543760808354\tLast:0.07504611656679246\tof:0.060974424455454326\tThursday:0.058022011098502115\tthat:0.049284555123693716\t:0.01\n",
"those:0.24405078312287082\tman:0.18964406299653352\tone:0.13493274774356828\tmen:0.13214373206459903\tand:0.10687997572450006\tpeople:0.06089981096740643\tperson:0.041209408153728935\tall:0.040207474656711185\twoman:0.04003200457008184\t:0.01\n",
"and:0.2953876189038615\twas:0.16428490131166157\tis:0.1170663883818668\tup:0.07776716508545514\tit:0.07559106251500251\tmade:0.0665568090126541\tput:0.06578409847025994\tplaced:0.06489134807601946\tthat:0.0626706082432191\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.2967920371917595\ta:0.15121384737849652\tof:0.14195636444249757\tand:0.1204345024402632\tto:0.11230952953426408\tin:0.05653002079832309\tThe:0.03802275140670535\tfor:0.03725834584434017\twith:0.035482600963350694\t:0.01\n",
"and:0.2614488440589101\tgo:0.12883639368370445\tpassed:0.10689691468973389\tas:0.08765671584786691\tit:0.08697767016619783\tnear:0.08365113762489257\tgone:0.0832563225509943\tmade:0.07909936580319696\tleft:0.07217663557450296\t:0.01\n",
"of:0.29048537180703027\tand:0.16271255357691405\tto:0.15944444947191058\tin:0.1170434205807188\twith:0.07269987171026356\tthe:0.048559724796267\tfrom:0.04707782088651264\tall:0.046221976305266324\tis:0.04575481086511672\t:0.01\n",
"to:0.35773625818197463\tand:0.2809833289470644\tof:0.06366019721842932\tI:0.05957609902579174\tthe:0.049207004226350326\thad:0.04593436949706385\twho:0.04468909427588247\twould:0.04452726443160527\tnot:0.04368638419583798\t:0.01\n",
"the:0.2725891650171908\tof:0.18647846132477447\ta:0.14271496714585305\tto:0.08840807179006853\ton:0.08833494044017683\tand:0.08614370031803262\tin:0.053483531617411824\tby:0.03637821689272787\t<s>:0.035468945453763896\t:0.01\n",
"be:0.32216172540998717\twas:0.1840357163302097\tbeen:0.12298959168168964\tis:0.09509485228624488\thave:0.06107809683187759\tare:0.05889883866075707\twere:0.05730359147502235\thas:0.04449171456965657\thad:0.043945872754554915\t:0.01\n",
"the:0.31904360573278207\tof:0.17315917076143733\tand:0.12534789090235726\tto:0.09647386236527573\ta:0.06334210630031535\this:0.0538857038172744\ttheir:0.05387849831842087\tbe:0.05312243736196245\tin:0.05174672444017449\t:0.01\n",
"the:0.23910293602355914\tand:0.18307259900118653\tof:0.18129761300896996\tto:0.11155062029763856\tis:0.059344376735092935\ta:0.05879161987980056\tin:0.053621300238998464\twas:0.05252409839899083\tbe:0.05069483641576297\t:0.01\n",
"June:0.3313196372222978\tJuly:0.12332811699011775\t10,:0.11954821077574843\tMarch:0.10126065479771698\tof:0.07588161725346425\tApril:0.07197638077449174\tMay:0.06390965148196068\tNovember:0.053044652941840936\tAugust:0.049731077762361575\t:0.01\n",
"of:0.34823255409375964\tand:0.13807414806110588\tto:0.12951697609390606\tby:0.08903143990926371\tin:0.07102352909774921\tthat:0.06479148551400096\tfrom:0.05445002648480907\ton:0.05421708475490136\twith:0.040662755990504104\t:0.01\n",
"<s>:0.5577885891176892\tit.:0.11270828429500629\tthem.:0.0635143413259071\thim.:0.05654963485486736\ttime.:0.04630480635520237\t.:0.04543665217754153\tcountry.:0.03808489837591448\tday.:0.0377427282665397\tof:0.03187006523133192\t:0.01\n",
"and:0.24532520474320918\tthere:0.16610954869774408\tto:0.09978975004131933\tof:0.09355438019991526\the:0.0837805416697179\tthe:0.0800428505777564\tor:0.0773676272776924\tI:0.07606268748147998\tis:0.06796740931116547\t:0.01\n",
"and:0.27169980257244286\twas:0.11184075337002325\tfile:0.10845453490691333\tthat:0.1051508243735093\tmade:0.10493328986733919\tis:0.08139378364250742\tbut:0.07267309056949599\tpeople:0.07250388573087883\tthem:0.06135003496688983\t:0.01\n",
"of:0.3372668786434339\tin:0.24860498023086597\tto:0.12417690929062365\tIn:0.08132212054565427\tfrom:0.05181246966373128\tand:0.04291678100319562\tby:0.036527601337216026\tthat:0.03371702300512034\tfor:0.0336552362801589\t:0.01\n",
"the:0.22059310348035344\tof:0.21238349649058813\tto:0.13982379921302884\tand:0.10856538937506058\ta:0.0833803858496462\tfor:0.07123225758499563\tin:0.07047143623134389\this:0.04475245765802027\tbe:0.038797674116962985\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"is:0.2229013708296558\tthat:0.1634460784676385\twas:0.12810361238057974\tdo:0.0998575157905102\tand:0.09062559823500094\thave:0.077686494579082\tfor:0.07404722968721328\tare:0.0681719187562513\tbe:0.06516018127406843\t:0.01\n",
"of:0.27021003282791584\tthe:0.19401579300525088\tat:0.11474532493689647\tby:0.09489290077128217\t.:0.08448762893783852\tin:0.06964869401462401\t<s>:0.057471399918390585\tand:0.052413035676949896\tto:0.052115189910851525\t:0.01\n",
"and:0.2862160796520936\twas:0.14288709712572803\tis:0.10013179325919742\tup:0.08704755478894143\tit:0.0800337757968272\tthat:0.07902528082567176\tmade:0.07455522224474313\tthem:0.07077100263027977\thim:0.06933219367651765\t:0.01\n",
"No.:0.19098783190715046\tat:0.17633142335564897\tU.:0.15467220244836374\tof:0.1132866049109704\tto:0.09635746368141128\tand:0.08881551321001707\t.:0.05972187972328749\tlot:0.05948645826237698\tin:0.05034062250077361\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"of:0.33830169458762843\tin:0.2777785947249502\tto:0.09992793759386688\tIn:0.07001694210739709\tand:0.050905886599797244\tfrom:0.049475768193489825\tby:0.0411045366737345\tbetween:0.03481734917279627\tfor:0.027671290346339687\t:0.01\n",
"the:0.5179350615629996\tof:0.1538409682508166\tto:0.059570648315227\tby:0.05046843998943949\tsaid:0.047925175263085554\tand:0.04634031563719833\tminutes:0.03915625917771992\tin:0.03757095553019675\ttho:0.0371921762733166\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"at:0.44659958304188835\tfor:0.13512240030818584\tof:0.09415066394754064\tto:0.07954829232875775\tand:0.05386871356290936\tAt:0.05022258079577466\tduring:0.04413469830326203\tthat:0.043380736563209045\tin:0.04297233114847239\t:0.01\n",
"and:0.3254243009009799\tso:0.13004555675901283\tfact:0.1273173719299964\tknow:0.08967460936850209\tsaid:0.07440366454879636\tis:0.07395428550290474\tsay:0.07298005043663557\tbut:0.05159215888179986\tbelieve:0.044608001671372244\t:0.01\n",
"two:0.15272778357931047\tmany:0.14875111409787473\tthree:0.13276058133852914\tof:0.10777327339907451\tfive:0.10485487175196291\tfor:0.10444988926846735\tthe:0.09222873045085288\tfour:0.08599309880251228\tseveral:0.060460657311415734\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"the:0.3775425180736273\this:0.2566540153715747\ttheir:0.08587110596726863\ther:0.056623290723898684\ta:0.05135629474770753\tof:0.04657894357131668\tto:0.046350605863676585\tmy:0.04124464883497391\tits:0.027778576845955937\t:0.01\n",
"the:0.6008047089315449\tthis:0.17415207492500592\tThe:0.057007053050044665\ta:0.03308704865935834\tthat:0.03136866746244439\ttho:0.029538246689432855\tsaid:0.023921422860828136\tand:0.020586037060652495\tour:0.0195347403606882\t:0.01\n",
"the:0.5555263933687625\ta:0.18509414644794303\tof:0.07800779553454759\tfor:0.05044133637291186\tand:0.043027986169511284\tThe:0.0269889398319638\tor:0.019467782037085584\ttho:0.016768046875682025\tthat:0.014677573361592287\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"the:0.5985326775383882\tof:0.12094201479313334\tand:0.07114294985210792\tthis:0.06655254242300727\ta:0.03491586234377041\tWhite:0.025548539003824457\tevery:0.024428180335799566\ttho:0.024368541201789256\tfor:0.023568692508179584\t:0.01\n",
"the:0.8107615539440876\ttho:0.045622912221726875\ta:0.030015739985921455\tour:0.021724847766899657\tof:0.02125440322317355\this:0.016327262189528517\ttheir:0.01625953688699681\ttbe:0.015114130491535104\tits:0.01291961329013058\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"to:0.3012069073444253\twill:0.19578003326406937\tnot:0.10792683882584268\twould:0.08859787213986703\tshould:0.07126050845661122\tand:0.06428864776315385\tthey:0.05744312523539871\tmay:0.05297356648350398\tmust:0.05052250048712794\t:0.01\n",
"the:0.38290817737510735\tof:0.15618072680277578\ta:0.11343600680787246\tand:0.09681646489518915\t.:0.05876181753002737\t<s>:0.05218925182403723\tto:0.0486229492584228\tThe:0.046483246409723816\tin:0.034601359096844045\t:0.01\n",
"the:0.30066537045736186\tof:0.18083337303704702\tand:0.14849071523579158\tto:0.13697527746982274\tfor:0.05023447445190032\tin:0.049590724586391306\tbe:0.04591187306033971\tis:0.04039018647411833\twas:0.03690800522722708\t:0.01\n",
"of:0.41033700711952237\tto:0.10040482029615216\tand:0.09456676640131279\tthat:0.08816330449922112\tin:0.07488330867200273\twith:0.06997033945092133\tby:0.05418137895879856\tfor:0.05403029603212323\tfrom:0.04346277856994571\t:0.01\n",
"and:0.31286185059463134\the:0.2108879691576371\tone:0.12707851833841988\tthat:0.07138480902629708\twho:0.06887322428055268\tit:0.055677004473699436\twhich:0.05329892365496511\tas:0.045306847708024865\tHe:0.04463085276577261\t:0.01\n",
"of:0.3115572421256441\tin:0.15904315724144535\tto:0.11879012216735421\twith:0.0767338351887762\tand:0.07477529697200207\tthat:0.06868690907203401\tfor:0.065392782545963\tby:0.05852746907194358\tis:0.0564931856148374\t:0.01\n",
"and:0.253536160646808\tis:0.12663561767712206\thave:0.11123844904901607\the:0.1042419098921631\twho:0.0941414671342174\twas:0.08308634209197469\tbe:0.07643770053079445\tthey:0.07142320755094943\thas:0.06925914542695485\t:0.01\n",
"of:0.2133493671836974\tthe:0.21088349975597964\tand:0.1910398884085585\tto:0.12086633609082337\tat:0.06655252345852292\twas:0.054267415929995774\tor:0.04823765391612573\ton:0.04494550662128205\tthat:0.03985780863501461\t:0.01\n",
"was:0.21104504908820312\tbe:0.20022211936742393\tand:0.1275985678191331\tis:0.11371461864631723\the:0.09999281350534861\tbeen:0.09810832650602491\tas:0.06085975900139762\tHe:0.0425368261642165\twere:0.03592191990193492\t:0.01\n",
"of:0.4753639631833421\tto:0.08078514724821369\tthat:0.0802891005850162\tand:0.07397783358503095\tby:0.07348898393626442\twith:0.058682638035896566\tin:0.05675517790774763\tfor:0.05077529625271042\tfrom:0.03988185926577794\t:0.01\n",
"of:0.33406129049648303\tto:0.12049264072633424\twith:0.0963336285288878\tand:0.0939645479779181\tis:0.0864883967561169\tin:0.08226092310789548\tthat:0.061430624386753084\tby:0.057631216891386707\tfor:0.057336731128224655\t:0.01\n",
"the:0.7204397704560846\tThe:0.09874164717887406\ttho:0.04508739253550503\ta:0.0391382243181943\this:0.030032661199816544\ttbe:0.01592280496532991\tthis:0.015608687448647973\tmy:0.014770131432533968\ttheir:0.010258680465013461\t:0.01\n",
"the:0.4790845641585334\tthis:0.22915417919684658\tsaid:0.1013067490056031\ta:0.09002666125713463\tthat:0.024236453949254236\ttho:0.02402220678341861\tand:0.014987392717818092\tour:0.013715561610013213\tYork:0.013466231321378086\t:0.01\n",
"of:0.3151764515399865\tand:0.2355707191431248\tthe:0.14504745620688425\t.:0.07879494061664336\tto:0.06889402592111513\tMiss:0.04348090478541238\t<s>:0.037769342982602344\tNo.:0.03342692220554837\tby:0.03183923659868297\t:0.01\n",
"and:0.19423278549404546\tthat:0.1735200669207176\twhich:0.14007729114344217\tas:0.11861217702330175\twhen:0.10209338985122181\tbut:0.08573894019622778\tif:0.06636295041437362\twhere:0.06352622032695891\tbecause:0.04583617862971107\t:0.01\n",
"there:0.21319349746577138\tIt:0.17450245338521095\tit:0.16351697111799585\the:0.11784821607556599\tThere:0.11146525109273697\tHe:0.07469814231772813\tand:0.04848606990931673\tI:0.04675437500190943\twhich:0.039535023633764425\t:0.01\n",
"they:0.35034695258244347\twe:0.11713423007804442\tand:0.10973360416336267\twhich:0.09610921328216321\tThey:0.09108363146392567\twho:0.07038995250797857\tthat:0.06615854202020259\tmen:0.052935676741788854\tit:0.0361081971600907\t:0.01\n",
"from:0.2523496724972243\tand:0.19953379170868604\tor:0.15686336351686836\tof:0.09324575435844025\tin:0.07109406052204618\tfor:0.06783082279805205\twith:0.05578901712384072\tto:0.04825308411272398\tare:0.04504043336211804\t:0.01\n",
"be:0.2890315124833315\twas:0.2515337711651928\tbeen:0.16678238920714533\twere:0.08361270619119031\tis:0.07704624225859023\tare:0.046164442220794445\tbeing:0.03315682788147072\tand:0.022922749002701436\tbo:0.01974935958958331\t:0.01\n",
"of:0.24373151028703827\tin:0.2126519040879478\tthe:0.2079418907744951\tto:0.08457807818478726\ta:0.08339877153019665\tIn:0.05287718745764576\tand:0.04848617826018974\tfrom:0.031756559837145315\tthat:0.024577919580554126\t:0.01\n",
"thousand:0.34269750937019045\tof:0.21496210869863192\thundred:0.1494151169071818\tmillion:0.10461610529564355\tfifty:0.05717939847073178\tmany:0.04024990182366608\tbillion:0.03133244932839678\tfew:0.025840219689986066\tfive:0.023707190415571632\t:0.01\n",
"the:0.3862931248559556\tthis:0.2125502869185093\tan:0.09510235053154224\tthat:0.09130392474042076\tThe:0.07290744813830147\tand:0.03803354911743017\tto:0.034953922675306746\tThis:0.02973265072667983\tAn:0.029122742295853727\t:0.01\n",
"it:0.3762269655965334\tIt:0.27252798126490196\twhich:0.07596326427749084\the:0.07514218761586687\tand:0.05565170707524191\tthat:0.05554938222959556\twho:0.02674695844707282\tHe:0.026427343289714373\tthis:0.02576421020358197\t:0.01\n",
"the:0.3297121131195526\tof:0.1705886535858483\tand:0.1446577592555162\tto:0.10051021003135918\ta:0.053246662954900915\tin:0.05206512744680528\tis:0.04756477952322521\tthat:0.04697358210542376\tas:0.04468111197736852\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"the:0.40203826747209637\tin:0.2781356805358473\ta:0.1455547255431513\tIn:0.07252028607362312\tThe:0.019697763133043594\tthis:0.019524671467952923\tany:0.017979209906185168\ttho:0.017481983514254566\tevery:0.017067412353845658\t:0.01\n",
"and:0.23269702242011067\tmade:0.22981759683133623\tor:0.11115481161761777\tthat:0.07236086063876271\thim:0.07054273789002967\tfollowed:0.07041660789627405\towned:0.07020071888558449\ted:0.06697266320322266\taccompanied:0.0658369806170616\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"he:0.27815866773025816\tI:0.20086306868199327\tthey:0.10324245838274379\thave:0.08204658689404552\tshe:0.0773412187927813\tand:0.07216353790499624\twho:0.06541637249810138\tHe:0.06187836700934051\thas:0.04888972210573986\t:0.01\n",
"and:0.17476227470445133\tas:0.12524285143007965\thim:0.1087251294816839\tis:0.10718389141801617\table:0.10051212622294231\twas:0.10033843243537423\twent:0.09171388694152183\thad:0.09093134797978025\tenough:0.09059005938615022\t:0.01\n",
"to:0.278229872130761\tthe:0.2246755662734158\tand:0.17087478187575425\tof:0.11870864087830596\tin:0.06484426449128167\ta:0.05033560994429486\this:0.03957556537938149\twill:0.02241223291149884\ther:0.02034346611530621\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.3652783360330857\ta:0.16280792020096468\tand:0.11155958758060733\tof:0.10968144203941521\tto:0.06420676262514785\tin:0.062354231777412006\tat:0.05174743323400193\tfor:0.032966363730833656\this:0.029397922778531822\t:0.01\n",
"made:0.253389517993468\tand:0.22176822069153854\tor:0.08878399155794628\towned:0.08231843062326326\tthat:0.0750728824533108\tfollowed:0.07339930812527455\taccompanied:0.06951137935797252\ted:0.06409365545625813\tgiven:0.061662613740967896\t:0.01\n",
"Silver:0.19672055816983813\tLode:0.18873447106491423\tthe:0.13934046631024188\tand:0.12534057475556912\tHill:0.11280076589459347\tEureka:0.07179394208794747\t<s>:0.05852001073935305\tGold:0.05006855602290059\tCity:0.046680654954642006\t:0.01\n",
"the:0.19973673748319962\tsouth:0.18702779361968208\tnorth:0.15982485632839313\teast:0.14416008078002449\twest:0.1271368694625307\tone:0.06117723817628734\tother:0.050782521233723094\teither:0.03197613557020537\ta:0.028177767345954213\t:0.01\n",
"was:0.24223643999769526\tbeen:0.23247686953741192\tbe:0.2164031365268746\twere:0.08005245952483744\tare:0.06251414526059527\tis:0.056876861068176694\tand:0.03818361705483371\tnot:0.03352327823067468\tduly:0.027733192798900425\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.29348734035947927\tand:0.21800905869438575\tof:0.15798693257990812\tThe:0.07098336672023307\tthat:0.06016316734182636\tthese:0.05256309489874121\tThese:0.04957857554119429\tin:0.047710532982857816\tsuch:0.039517930881374175\t:0.01\n",
"the:0.178773384293596\tand:0.15905693441419114\tof:0.1507009654572478\tto:0.12785537177660436\tbe:0.1151551695765266\ta:0.09109342413565304\tin:0.05932541876549419\twas:0.0550093693954189\tis:0.05302996218526802\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"was:0.2651277875889499\tbe:0.2294639964385967\tis:0.13897979843834093\tbeen:0.11727216853602349\twere:0.07639052636826461\tare:0.058467888163787354\tnot:0.03974868382184834\tbeing:0.03273187646036858\tand:0.031817274183820056\t:0.01\n",
"the:0.2654899918975592\tof:0.203025248090503\tand:0.17745177002204057\ta:0.10906588913129457\tto:0.08229544085247792\tis:0.03898604755417158\tin:0.03848381359077558\tbe:0.03769492273598597\tor:0.03750687612519164\t:0.01\n",
"and:0.17722291469113738\tof:0.1320986679916092\tput:0.12922151543728752\tas:0.12006344742945622\tmake:0.10394397296081156\tthat:0.09994954798090332\tfor:0.08271405305777428\tto:0.07588001229998377\twith:0.06890586815103679\t:0.01\n",
"the:0.7084748909891674\tof:0.08959600576667098\tsaid:0.05029068544321294\ttho:0.03639284806498128\tin:0.0320836256875454\ton:0.024902207142238\ttbe:0.020430218899601824\tand:0.01417499077955277\tThe:0.013654527227029456\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"a:0.22038241613257528\tthe:0.1888154882958725\tno:0.16202922138602852\tto:0.0929903583943893\this:0.08503759600568864\ttheir:0.0765103035358274\tof:0.07645576616684295\tand:0.047996388897719594\tany:0.039782461185055795\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"more:0.24813147799626448\tand:0.17526668880054086\tof:0.15936647198193363\tthe:0.13348417098913629\tother:0.07152810874453006\tyoung:0.0607542239703943\tto:0.054255229736654156\tfor:0.05061863723238316\tthat:0.03659499054816305\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.5555263933687625\ta:0.18509414644794303\tof:0.07800779553454759\tfor:0.05044133637291186\tand:0.043027986169511284\tThe:0.0269889398319638\tor:0.019467782037085584\ttho:0.016768046875682025\tthat:0.014677573361592287\t:0.01\n",
"the:0.3365719222350217\tof:0.14812581164726848\tand:0.13489719198814792\tat:0.08303679897705733\ta:0.08097686005028398\tin:0.07249269411802899\tto:0.06561585835880988\tfor:0.036787622231500325\tThe:0.03149524039388142\t:0.01\n",
"of:0.3713469509544565\tto:0.1514708017555304\tthat:0.10527984797247181\tin:0.08678755123882\tand:0.06990737924797069\tby:0.06375572719248994\ton:0.055288338966648115\tfor:0.04561655489153375\tfrom:0.04054684778007883\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"I:0.37991670219184825\the:0.1834798836020112\tand:0.11568034828882882\tHe:0.06079307328331468\thave:0.05746534663364207\twas:0.05262426866575919\thad:0.04733838365702512\tbe:0.04650384211368068\tis:0.04619815156388993\t:0.01\n",
"was:0.22484331850131328\tbe:0.22464236590586964\tbeen:0.10711681268044008\tand:0.10418148874794828\tis:0.09087816662828932\tare:0.0704519652305629\twere:0.06895766923638202\tas:0.05862179222833112\the:0.04030642084086341\t:0.01\n",
"went:0.15346380362740233\tmade:0.13638640620639564\ttaken:0.13546337047865747\tcame:0.13307667634673748\tit:0.10640805829100759\tcome:0.09612208509579995\tput:0.08493417572777472\tbrought:0.07807843290193678\tand:0.06606699132428816\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"that:0.2415521083461118\tand:0.19850525708794498\tas:0.16401188787558854\tbut:0.09188130125952035\twhich:0.0801577968273156\twhen:0.0785606801321601\tif:0.06981364666883094\twhere:0.033869873879306414\tof:0.03164744792322123\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.18986383946160562\tgo:0.1313008589125538\tgoing:0.1309620202896538\twork:0.10689597319887\tcarried:0.09881110789498941\tthem:0.09439722033459282\tput:0.08068533560316976\tthat:0.08051329016795178\tinterest:0.07657035413661306\t:0.01\n",
"he:0.27865998110427664\tI:0.1472457698769281\tit:0.11067583868141541\tthey:0.10445650480707752\twho:0.07905499562408862\tand:0.07166525319833728\twe:0.07073307200702383\tthat:0.0707131200968545\tshe:0.056795464603998126\t:0.01\n",
"is:0.21492722357732127\tare:0.12773452589139314\twas:0.1251324633894406\tand:0.11342784702323139\tas:0.10784476023819126\tthe:0.08899395970281827\tbe:0.08427557878670533\twere:0.06478432737454336\tmore:0.06287931401635546\t:0.01\n",
"a:0.25171587127995587\tand:0.24946989163200056\tas:0.08700407859013799\tbe:0.08503983312852836\tit:0.08309241174328068\tis:0.06581110569623118\twas:0.06350671679343217\tof:0.05697411708341744\the:0.047385974053015624\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"and:0.3093433499300614\tthe:0.17375573474119338\ta:0.15041315102496863\tor:0.08274324684342431\t<s>:0.0679734203659331\tone:0.06354368924901496\tthat:0.05084896877825935\tto:0.04846776910157711\t.:0.04291066996556768\t:0.01\n",
"and:0.1922585704635089\tto:0.17825602697632245\tof:0.15906227209123752\tthe:0.10243085731022297\tin:0.10073896372615924\tbe:0.07747750431924467\twas:0.06721778125833067\tor:0.05797000006303755\tis:0.05458802379193606\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.8117483844771775\tThe:0.07024379905802508\ttho:0.04668214182185011\ttbe:0.01553669104060278\tthis:0.013211881038318949\tand:0.010126998017710807\tour:0.00811065006633748\tthat:0.007497632275069142\ta:0.006841822204908244\t:0.01\n",
"that:0.371739867996464\twhich:0.11851866647349125\tand:0.11799120008495087\tif:0.07779864410619086\tas:0.07513205183763351\tbut:0.06614765438119001\twhere:0.06504322807420472\twhen:0.061911374323883606\tIf:0.035717312721991044\t:0.01\n",
"of:0.29560819023359286\tto:0.13864291234163328\ton:0.12043910761918374\tand:0.11015366700857986\twith:0.07452574614862813\tthat:0.07002143386846331\tby:0.06563754164827461\tin:0.0637238563930813\tfrom:0.05124754473856287\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"their:0.17254073871667722\twho:0.17090142651695073\tthe:0.15567534668722924\this:0.13414186701532044\tour:0.07975442443674319\tand:0.07916846745731335\tnot:0.06903683297367993\tmy:0.06776193785431113\the:0.06101895834177479\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"Baltimore:0.5910112444578488\tChesapeake:0.34749630561121136\tJohn:0.009376790553861354\tWilliam:0.00808855440462199\tJames:0.007647868032791275\thundred:0.006928899533931902\twife:0.006734925613831359\tgold:0.006587419051459953\tRobert:0.006127992740441983\t:0.01\n",
"<s>:0.3014446482323005\thim.:0.1498100205979135\tit.:0.11631719495888909\tcomplaint.:0.0882883934294278\tthem.:0.07149474591396346\tday.:0.07147310010452777\tand:0.0669642247459881\ttime.:0.06218846924386825\tyears.:0.062019202773121514\t:0.01\n",
"a:0.5810329983253657\tthe:0.22832109750349877\tvery:0.05522570602601306\tA:0.02854711911284837\tbut:0.026466325486611916\tThe:0.022916750316935287\tand:0.02114718963017977\tis:0.013221469382737204\this:0.013121344215810066\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
";:0.2588611970709363\tit,:0.18447127095098959\tthem,:0.11050048845933373\thim,:0.09235461919102587\tin:0.0782856933389489\ttime,:0.072401539945486\thim:0.0695881080642391\tcountry,:0.06453690861971835\tyears,:0.05900017435932212\t:0.01\n",
"of:0.4111353906126906\tin:0.16517757611534067\tto:0.09948201070084911\tby:0.07488181618354799\tthat:0.0726871697127607\tand:0.057315748356750955\tfor:0.0388751628202542\twith:0.03779122640777685\tIn:0.032653899090028866\t:0.01\n",
"a:0.4113437690214305\tthe:0.3254703690826578\tof:0.05940240747375596\twith:0.046148267670282316\tThe:0.04032139945918721\tA:0.033406899661397385\tno:0.02725496007544363\tthis:0.025360274468076954\tand:0.021291653087768203\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.6116275982969169\tand:0.10545104437327947\tof:0.04472292794771579\ttho:0.04415689803321924\tall:0.04295141524301316\tThe:0.04279086203687\tother:0.040351409346081675\ta:0.0342133362393357\tor:0.023734508483568107\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"in:0.38520314193378175\tof:0.37193425542472724\tIn:0.07801178485912902\tto:0.058915027574088626\tby:0.023568260494406766\tfor:0.02254902381856232\tthat:0.020627067254354068\tand:0.015266902709726008\tfrom:0.01392453593122437\t:0.01\n",
"the:0.6578210278018746\tThe:0.08911740723394296\tand:0.07966693999168677\ta:0.07147444796993374\ttho:0.03274123591541511\tof:0.02006537270181916\tby:0.0188713112105493\ttbe:0.013011730409489539\tan:0.007230526765288942\t:0.01\n",
"of:0.4408015974545586\tin:0.11322779569089862\tfor:0.09950679981137418\tto:0.09273343854172189\tand:0.08684509562710459\tby:0.043868853155244976\tIn:0.04374907740255308\tas:0.035437688158143334\tis:0.033829654158400654\t:0.01\n",
"of:0.23716516873665658\tfor:0.15183039415508137\tto:0.15127043840541268\tin:0.13666557885790934\tand:0.09320444454015481\twith:0.09218749872094513\tall:0.04565648569266405\tthat:0.0418824673347003\ton:0.04013752355647586\t:0.01\n",
"executed:0.16935823017967777\tup:0.11931606528230317\thim,:0.11923996878473939\tthem,:0.11818009267037957\thim:0.10640170452313939\tit:0.10068916303314945\tit,:0.08729508317870734\tmen:0.08716372612934128\tthem:0.08235596621856268\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.3543376880698696\tin:0.19804918254739892\tto:0.1577033212923816\tfor:0.061130806025578306\tby:0.05901181937227267\twith:0.0582551182003912\tfrom:0.04121752961683622\tIn:0.0343670625827042\tbetween:0.025927472292567352\t:0.01\n",
"the:0.27615638975920154\tand:0.1951484318952896\tof:0.1346214267580786\ta:0.12254715475321307\this:0.07667209144904673\tin:0.057625354667864614\tto:0.04867393135903742\ttheir:0.04813260247848006\tfor:0.030422616879788315\t:0.01\n",
"the:0.7735903169839718\tThe:0.0768622762890158\ttho:0.04709278873504949\ta:0.02369365674499801\ttbe:0.018943286587598092\tand:0.01730876042482567\tno:0.01283103099810288\tfurther:0.010369241106895771\tgood:0.009308642129542553\t:0.01\n",
"of:0.21844432572401162\tthe:0.13952211781789228\tto:0.13543183717850577\tand:0.13219280151729376\tfor:0.1281498469628861\tin:0.08591410795736142\ta:0.08371673089218191\tat:0.03575781216888307\tor:0.030870419780983985\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"the:0.30108970112719763\this:0.23922142074887034\ta:0.17068711872697945\tmy:0.0786566926696679\ther:0.06064955832118678\tand:0.05800952771230166\ttheir:0.032707920563524104\tyour:0.028674091233509842\tof:0.02030396889676211\t:0.01\n",
"and:0.337291893652781\tso:0.12479811775737729\tsay:0.09731998655540983\tfact:0.08972889028296344\tknow:0.08081272560971962\tsaid:0.07728661770633168\tis:0.06952093330887803\tall:0.06044144952898566\tshow:0.05279938559755335\t:0.01\n",
"State:0.20557835537010977\tcity:0.13764550076271512\tone:0.10999765642275489\tstate:0.10467308901724323\tNorth:0.10243321456401944\tday:0.09734749957949929\tlot:0.0816026720389182\ttwo:0.07771106278722104\tcounty:0.07301094945751899\t:0.01\n",
"to:0.4023597946107926\twill:0.20204296410416164\tshall:0.0836521703407067\tmay:0.07842065538977257\tnot:0.0625816501623682\tshould:0.04342336110623118\twould:0.04264198748341877\tcan:0.0425465366793335\tmust:0.03233088012321491\t:0.01\n",
"the:0.2910969601213505\tat:0.20163206174287193\tto:0.10951901333369211\tbe:0.10500030723247292\twas:0.09913808737616232\twere:0.05232478787536156\tand:0.05037442248922699\tis:0.04760197722539237\tnot:0.03331238260346925\t:0.01\n",
"at:0.22053214971057505\tto:0.1583247719297158\tin:0.1317607967698987\tof:0.12974183833467198\tand:0.09290115479760698\ton:0.08956662106006981\tfor:0.06890077258687918\tfrom:0.06103460683340176\tIn:0.03723728797718064\t:0.01\n",
"at:0.44659958304188835\tfor:0.13512240030818584\tof:0.09415066394754064\tto:0.07954829232875775\tand:0.05386871356290936\tAt:0.05022258079577466\tduring:0.04413469830326203\tthat:0.043380736563209045\tin:0.04297233114847239\t:0.01\n",
"the:0.25533460727049956\tand:0.20610306713581766\tof:0.12083930905472434\tto:0.09606507596447902\tfor:0.07692082258265392\tor:0.06305416228986642\tin:0.06256745572774812\tbe:0.05983040214564902\tare:0.049285097828561934\t:0.01\n",
"one:0.20245746580888513\tday:0.1285736222855022\tthat:0.11188715551992376\tdaughter:0.1090974894874036\tmotion:0.10265497663675957\ttion:0.09180666855680497\tpart:0.08437844509128496\tson:0.08386156527495149\tout:0.07528261133848424\t:0.01\n",
"the:0.29981178950142023\tto:0.1453021893711585\tand:0.1400790134069616\twas:0.10832356120423033\tbe:0.07576850374482703\twere:0.0649974496905034\tof:0.0565604400454358\ta:0.05260235812766833\tis:0.04655469490779474\t:0.01\n",
"one:0.22043979554334728\tpart:0.17073202577386606\tout:0.1504453831229998\tsome:0.08943673051487451\tside:0.0779259956881897\tend:0.07349403345130155\tmembers:0.07129904224908563\tportion:0.07021530842224585\tall:0.06601168523408947\t:0.01\n",
"those:0.23593911471604145\tand:0.18855155676058805\tman:0.1662992306494037\tone:0.10268099651193709\tall:0.09242796640981052\tmen:0.08467060816706533\tperson:0.04545975223246271\tpersons:0.03890195890403884\twoman:0.0350688156486524\t:0.01\n",
"to:0.3457198529266166\twill:0.236498394115841\twould:0.13759521963136906\tmay:0.0673944449425821\tshall:0.05905030450265586\tshould:0.04960071642528487\tmust:0.04153944623877345\tnot:0.03540599644457872\tcan:0.01719562477229838\t:0.01\n",
"of:0.29427840420111334\tand:0.19037350337791353\tin:0.11041665492830458\tto:0.0953233373283196\tat:0.07052500963088408\tthat:0.06631245887492296\twith:0.05553709306732293\ton:0.055516148861375486\tfor:0.0517173897298435\t:0.01\n",
"to:0.3122469870921608\twill:0.20485207897649774\twould:0.10217401539184749\tnot:0.0847424183929901\tmay:0.07385012372252263\tshould:0.06998515730852457\tshall:0.05981425406312099\tcan:0.041262580581240854\tmust:0.04107238447109475\t:0.01\n",
"have:0.33678358380620754\thas:0.32245235288087337\thad:0.2251753779980466\thaving:0.03200111324083943\tnot:0.028814512494305628\tnever:0.013784360363262431\tlias:0.012114861157299704\tbad:0.010454826459361518\tever:0.008419011599803706\t:0.01\n",
"well:0.21321257425074594\tknown:0.1833023137221186\tsoon:0.17017982311130794\tfar:0.13451377472303216\tand:0.1048509904369157\tlong:0.06163044115944836\tsuch:0.04848962176196867\tjust:0.03999506790086283\tmuch:0.03382539293359975\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"and:0.26745267416887475\tBeginning:0.22525587652116277\twas:0.11377028395927055\tCommencing:0.10809071640443553\tis:0.07344548581441636\tthat:0.051702392669663144\tlook:0.05066270801955132\tit:0.049895643535544223\thim:0.049724218907081376\t:0.01\n",
"the:0.22172023892309115\tof:0.1544891538036754\tand:0.1135846508689145\ta:0.09386538603318526\tan:0.08847174821825282\t-:0.08766195108438138\ti:0.08336830757296743\t.:0.07459740798853859\tto:0.0722411555069935\t:0.01\n",
"was:0.23724020908833185\tis:0.16038524331931078\tare:0.13564821996149287\tbe:0.12777515709817194\tbeen:0.12393414908327693\twere:0.06888693308329584\tand:0.054823971976454104\tnot:0.048929632794236004\thas:0.03237648359542977\t:0.01\n",
"the:0.5563039994191152\tat:0.08578155832963007\ta:0.07642662731624528\tof:0.06985380207039615\tand:0.06474523365201952\tThe:0.044939026898576116\ttho:0.03305808239148508\tto:0.032546245069931846\tin:0.026345424852600653\t:0.01\n",
"to:0.20987367099070287\twith:0.18057435199723\tof:0.16674637200623724\tfor:0.1237286629260613\ttold:0.07551045130892603\tupon:0.06798886502132284\tin:0.058603043962676786\tamong:0.05727395603161881\tfrom:0.049700625755224014\t:0.01\n",
"of:0.27418577055124627\tand:0.14728130484340796\tto:0.13331548033857005\tfor:0.09561190270011272\ton:0.0813849853605339\twith:0.08127583352621784\tin:0.07633487724122957\tas:0.05116392723876523\tall:0.04944591819991652\t:0.01\n",
"the:0.4977873005177639\tof:0.10144481163097921\tin:0.09702521870926427\tand:0.09245393865169171\tthat:0.04609871071012759\ta:0.046042658625165156\tto:0.04163338039941659\ttho:0.0339479915437389\tThe:0.03356598921185276\t:0.01\n",
"the:0.297492901961497\tof:0.17741408266195474\ta:0.14645768029163828\tand:0.09158810426380848\tor:0.07279359814981\tto:0.06981668528850316\tin:0.0589873299937157\tany:0.0419198791673564\tbe:0.03352973822171621\t:0.01\n",
"of:0.5008473278580264\tin:0.18447464932129753\tto:0.08732166275834825\tand:0.04372162724310332\tthat:0.043073732994372074\tfor:0.03570097777797619\tby:0.03435677843380198\tIn:0.031040538296658215\tthroughout:0.029462705316415816\t:0.01\n",
"and:0.32480818460700095\twas:0.12007710476872065\tis:0.09707305255864618\tare:0.0918105949135527\tthat:0.08946571511726491\tdivided:0.07552684926040101\tit:0.07313056367847452\tbe:0.061469822901463585\thim:0.056638112194475544\t:0.01\n",
"the:0.4451851389710155\tthis:0.25016185012744496\tour:0.0895864414954694\tThe:0.035682108696459595\tother:0.03563744715725719\ta:0.03546980456807708\ttho:0.03315804683093842\this:0.03310730773984756\tof:0.032011854413490345\t:0.01\n",
"it:0.2774822979725539\tIt:0.19754314725679648\twhich:0.12651385198976978\tthat:0.09240520006089892\the:0.06737366672562585\tthere:0.066562411311481\tand:0.06455365279069679\tThis:0.053004398814229005\twhat:0.04456137307794832\t:0.01\n",
"of:0.20714654421516396\tto:0.20304069062714714\tin:0.19433967218387188\tis:0.08522672349430793\twith:0.0831585381973107\tand:0.07017718492454866\ton:0.05275683696843519\twas:0.048229330844079994\tthat:0.04592447854513457\t:0.01\n",
"sum:0.3539514508613801\trate:0.17244903046905766\tone:0.08891524464089454\tamount:0.07331814878778507\tout:0.07066043298146303\tnumber:0.06500378352768377\tconsisting:0.060053059426700514\tinstead:0.05336354511059119\tperiod:0.05228530419444427\t:0.01\n",
"to:0.5393039065409442\tI:0.08890911411858664\tand:0.08663130249191711\twill:0.06968319515022305\tthey:0.06005428518813382\twould:0.04487778846159187\twe:0.03771739515513489\tcan:0.032056690846208984\tnot:0.030766322047259508\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.27043753116596675\tof:0.20367993055861705\ta:0.15712601799913412\tand:0.1250452860726485\tto:0.05728629643349302\tin:0.05498027858698372\t<s>:0.04492726624668266\tbe:0.03888388958847338\tor:0.03763350334800072\t:0.01\n",
"and:0.29823921726519337\tcovered:0.10875528921265473\tdo:0.10569003093907381\tmet:0.09216422287294139\thim:0.09058128041072476\tman:0.0746749440805615\tfilled:0.07414676506511417\tparallel:0.07295532897371344\ttogether:0.07279292118002276\t:0.01\n",
"the:0.6087123969674177\ta:0.2055201336672046\tThe:0.06615325736708319\ttho:0.03365314542492036\tand:0.027102871961316725\tA:0.01386260187875837\tlarge:0.012555131620937222\ttbe:0.011290187050143398\tsaid:0.011150274062218364\t:0.01\n",
"and:0.2663591603566405\tof:0.1444134399277054\tto:0.13965468279450494\tthe:0.11545288046294258\tin:0.09784587664794714\tor:0.0675387383038842\tthat:0.06504972812634334\tfor:0.04685738216435673\ton:0.0468281112156753\t:0.01\n",
"no:0.16891986776945608\tany:0.15368506943796195\tthat:0.13019338662169797\tsome:0.1208229648210389\tof:0.1171642342168644\tthe:0.11442775138685266\tonly:0.07094305764378137\tand:0.05746332720321915\tbut:0.05638034089912748\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"no:0.32208809643357134\tor:0.16673264726479237\tand:0.1511725620437661\tthat:0.0722477247791538\tany:0.06628279926058153\tthe:0.0658084470877406\tmuch:0.061576953403432964\tif:0.04882097276080134\tof:0.03526979696615989\t:0.01\n",
"from:0.21802200205555064\tthe:0.19694833446729548\tin:0.12247782210057058\tthat:0.08945903226427072\tsome:0.08261572909543535\tany:0.0797247730890875\tthis:0.07278699757577482\ta:0.06676927872790638\tsame:0.06119603062410855\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"that:0.3166199567907543\twhich:0.16109474582358582\tand:0.13002112740276922\twhen:0.11524849686583724\tas:0.07812196816443971\tif:0.07333780067076104\twhere:0.04077486076534284\tbut:0.03797876984663273\tto:0.03680227366987709\t:0.01\n",
"to:0.31183925208060853\twill:0.126130591692272\tt:0.11984709946223056\tthat:0.09195814575382462\twould:0.08591361815159086\tand:0.0853485014069716\tI:0.06613257642948804\tmay:0.05734860361106113\twhich:0.045481611411952734\t:0.01\n",
"the:0.33961226183449883\tthis:0.1959797565801774\tfirst:0.10942538631783294\tthat:0.10728908460808542\this:0.065232016029009\tsecond:0.04605767578501657\tsame:0.04447849872629587\ton:0.04287379432459594\tany:0.03905152579448812\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.46951559820730054\tNational:0.14253362522005367\tState:0.09627178350415681\ta:0.06691439596259798\tsaid:0.06408375382879396\tCity:0.04558028726628463\tthis:0.03677061428106033\tour:0.03465453710663649\tConstitutional:0.03367540462311565\t:0.01\n",
"to:0.3658314286477493\twith:0.1690746288339811\tfor:0.10706984902440497\tbrought:0.07146811450847\tby:0.07035966891881214\tput:0.06295767823794075\ttold:0.04988010447781668\tget:0.04853202025607349\tlet:0.04482650709475159\t:0.01\n",
"sum:0.18660346400208067\tamount:0.14113071889989057\tnumber:0.1282359702472041\tout:0.11916988247675848\tpurpose:0.09069241232633117\trate:0.08735451040047423\tmeans:0.08498416672211168\tmatter:0.07741017629998366\tall:0.0744186986251656\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.2867238218475814\tfact:0.13549699702912082\tso:0.11542828392073425\tsaid:0.10337127284504284\tknow:0.0905758356197127\tsay:0.08039114239784698\tsays:0.0616291919311895\tbelieve:0.06145633205974809\tof:0.05492712234902334\t:0.01\n",
"and:0.25207630807212883\tthe:0.1590776369175443\tto:0.15773558448492864\tof:0.134008835886489\tin:0.07715387433799809\the:0.054225800065998656\tthat:0.05325079287740025\tor:0.05204646639327736\tre-:0.05042470096423504\t:0.01\n",
"of:0.3668105514639491\tin:0.12549431243681025\tthat:0.12056721673914352\tto:0.11115240702912342\tand:0.0890950685434659\tby:0.06201580936338033\tfor:0.04617772796271882\tas:0.03538221585923146\tfrom:0.033304690602177216\t:0.01\n",
"of:0.25507669241759395\tand:0.1363776340232132\tthe:0.11856512442438139\tin:0.09138749228288513\t-:0.09066709909259733\t<s>:0.08593869864330979\t.:0.08441231628008912\tMr.:0.08145090337632595\tCity:0.046124039459604096\t:0.01\n",
"of:0.3747991140953099\tto:0.13394281972701164\tand:0.10116587541643762\tthat:0.08928395039628038\tin:0.07961388140416793\ton:0.0739245586553204\tby:0.04810811291238187\twith:0.04470571328220242\tfrom:0.04445597411088782\t:0.01\n",
"for:0.26494411625655967\tof:0.22665392523359465\tin:0.17763214647655795\tto:0.08819833898214599\tthat:0.06401311035706027\tand:0.05204338983220885\tIn:0.04371514684972175\tat:0.03920243840960917\twith:0.03359738760254167\t:0.01\n",
"that:0.4250271793537512\tand:0.11978837201427515\tif:0.10433435584035385\tas:0.07967762058304027\twhich:0.07284658140275924\tbut:0.06356925625565628\twhen:0.053898411289002315\twhere:0.039412584525172885\tbecause:0.03144563873598876\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"so:0.3627778510496209\tas:0.1628828008788099\ttoo:0.10180567925431218\tvery:0.09349895917699784\thow:0.09250075097756813\tis:0.048115932536007\tand:0.04793137148593243\ta:0.046612824075591475\tof:0.0338738305651602\t:0.01\n",
"of:0.34149624747561397\tto:0.1278360730178111\tand:0.11216778053475236\tall:0.09537827231696853\tthat:0.08541928101554858\twith:0.0814243459626875\tin:0.05601356730505628\tfor:0.04927893199911606\tby:0.04098550037244561\t:0.01\n",
"the:0.5931822885362648\ta:0.18789824738032057\tThe:0.10256586834735308\ttho:0.0338394185302618\this:0.020443530598432236\tA:0.018007777004876758\tand:0.012334527407924848\tof:0.010909907000334373\ttbe:0.010818435194231611\t:0.01\n",
"number:0.14169504108032177\tout:0.12884574321249562\tone:0.12675801200171338\tday:0.1217056159036365\tquarter:0.11591931567571545\tsum:0.10596368492508676\trate:0.08917069237748741\tline:0.08389557008260028\tpart:0.07604632474094275\t:0.01\n",
"in:0.25727302157135407\tof:0.20117103428642996\tto:0.1303695075687742\ton:0.08424297871279053\tand:0.08408676337717763\tIn:0.0759212513206045\twith:0.07281620501384768\tfrom:0.042608475441420705\tthat:0.041510762707600804\t:0.01\n",
"the:0.42004914683065936\tof:0.13466973569051718\tand:0.11122404163358073\tthat:0.07335130050379035\tThe:0.06686076414154887\ta:0.053878657084209296\tin:0.04843421049538479\tor:0.04344491920696621\tto:0.03808722441334332\t:0.01\n",
"two:0.16848443674812094\tone:0.1495997428068595\tday:0.12557441717281478\ton:0.10540478100871553\tand:0.10504742323812226\tin:0.1006577325945385\tmore:0.1005217016194638\tman:0.07075408004331267\tlot:0.06395568476805208\t:0.01\n",
"not:0.4288991721776458\tand:0.22741168549912458\tas:0.08977668084038852\tis:0.06862301859654613\tare:0.04388580101485544\tthat:0.037312240436794326\tAnd:0.03344454048929859\twas:0.03156232129244741\thave:0.02908453965289921\t:0.01\n",
"one:0.22043979554334728\tpart:0.17073202577386606\tout:0.1504453831229998\tsome:0.08943673051487451\tside:0.0779259956881897\tend:0.07349403345130155\tmembers:0.07129904224908563\tportion:0.07021530842224585\tall:0.06601168523408947\t:0.01\n",
"of:0.3772588664624367\ta:0.12656212618473955\tthe:0.110432792052713\tand:0.10402930524749991\tto:0.10190442261571779\tin:0.05816027368807125\tfor:0.05445926089372083\tthousand:0.031020291688615878\tat:0.026172661166485308\t:0.01\n",
"the:0.27334682895252743\tan:0.16336699414932895\tand:0.1542006162015566\tof:0.15035192637024625\ta:0.0889896472582298\ttheir:0.050624957229128915\tmost:0.039270820123192975\this:0.0358693866136976\tThe:0.033978823102091535\t:0.01\n",
"the:0.369642710007812\tof:0.15957250992956987\tand:0.14170296089473988\tto:0.11143516048792912\ta:0.05001911986048025\tin:0.04851206965262653\tthat:0.03936717751596836\tThe:0.03494465814127227\tfor:0.03480363350960172\t:0.01\n",
"they:0.17847217118259753\tit:0.16602324760414486\tI:0.15134345517374606\the:0.1430966036909429\twe:0.08366567857401801\tthat:0.07336278595570511\twho:0.06823307916427883\tIt:0.06557403143414613\tyou:0.06022894722042067\t:0.01\n",
"of:0.2016407380265253\tand:0.19586939018520866\tis:0.17176643228347177\tare:0.15972783229429613\tnow:0.06882423353441092\twas:0.06333276678134317\tby:0.046153044853462735\tas:0.043517875434620185\tit:0.039167686606661305\t:0.01\n",
"and:0.1997249202441778\tmake:0.16500914261520036\tthat:0.13981232604468022\tof:0.10993033154418744\tto:0.1028823154060007\tas:0.08176877693515545\tmade:0.06685494951082865\tfor:0.06233221087571916\t<s>:0.06168502682405027\t:0.01\n",
"it,:0.1609350065886096\thim,:0.11635827455026435\tit:0.11512247709020962\thim:0.11394718558495556\tthem,:0.10987369221343202\tup:0.1081846083827457\tyears,:0.09105584362029856\tin:0.09074994593756336\there:0.08377296603192125\t:0.01\n",
"half:0.2699153558665435\tof:0.18670980590773792\tand:0.10638002734189238\tfor:0.09551814361060199\tin:0.07401469538071223\tto:0.07168734209943696\tis:0.07073898137197072\twas:0.05970125599956543\twith:0.05533439242153885\t:0.01\n",
"and:0.21338846994080612\tof:0.18749290233706967\tto:0.18720518392522567\tthe:0.17493076586128778\tMr.:0.05648087731834156\tthat:0.043830646312602285\tin:0.0431435130129627\the:0.04245725279226782\twhich:0.04107038849943636\t:0.01\n",
"and:0.27680251536832023\tof:0.1773726051349765\tthe:0.14215071206629923\tto:0.13167778719768544\ta:0.07893997453412671\tin:0.059731378843500875\tas:0.05363860109182523\tthat:0.03907054003133833\tI:0.030615885731927472\t:0.01\n",
"not:0.29397097753725293\tto:0.2658917149580019\ta:0.13866488273474206\twould:0.11281026498586616\twill:0.0633523540063405\tand:0.040616050921936854\tmay:0.02852902229107193\tshall:0.02421570688315483\tno:0.02194902568163276\t:0.01\n",
"it:0.32506834688264086\tIt:0.25266401097805513\tthere:0.09218056991852301\twhich:0.08037384538662268\tand:0.055631459790142446\tthat:0.05534523477002363\the:0.05220949505515726\tThere:0.03979495389062745\tThis:0.0367320833282076\t:0.01\n",
"<s>:0.30453116547262965\tit.:0.21591503347904423\tthem.:0.135656298982624\tcountry.:0.06853301262661377\thim.:0.06288723610786619\ttime.:0.0550249587992848\tpeople.:0.05232265268325843\tus.:0.04962467012570688\tand:0.04550497172297198\t:0.01\n",
"the:0.2187131828599639\tof:0.19924025309942062\tand:0.15109002244668576\tto:0.12476136420457277\tat:0.09471855742182604\tin:0.07438991191631883\ta:0.056389019955898574\t.:0.03554152646556196\tfor:0.03515616162975158\t:0.01\n",
"and:0.20329505549080953\tas:0.1745760004930609\table:0.10372568596517394\tnecessary:0.09702834223993993\thim:0.08975143128749888\tis:0.08347133086014039\ttime:0.08294403682977942\tright:0.08148699870350459\tmade:0.07372111813009241\t:0.01\n",
"I:0.1557011206773992\the:0.14715913311345116\tthey:0.14382642445790525\twe:0.1377868119936844\tyou:0.13647336994801731\tit:0.08319404582168659\tand:0.07629891188358616\tthat:0.06466887149389869\twhich:0.044891310610371084\t:0.01\n",
"and:0.24214240546495533\tthat:0.14622536742299955\twhich:0.12353274623325766\tI:0.09902953880187862\twho:0.09534872617761862\tto:0.09075255446787187\the:0.08265395880521322\tit:0.056763817236453705\tthey:0.05355088538975139\t:0.01\n",
"that:0.4375563404852635\tand:0.11203160598853902\tas:0.09494571068975738\twhich:0.08689627997255113\tif:0.08140366914334206\tbut:0.06399742599475176\twhere:0.04165140087776492\twhat:0.037320481457375515\twhen:0.034197085390654684\t:0.01\n",
"all:0.6431723350842143\tdifferent:0.08786415453199789\tvarious:0.07091122388159936\tother:0.05978167111160113\tthe:0.04101064563615075\tmany:0.03224256014284229\tAll:0.019229795742366926\tand:0.01845141078663102\tcertain:0.0173362030825962\t:0.01\n",
"of:0.20536127754362357\tthe:0.18743736689819682\tand:0.1744704172708728\tto:0.1319396178187569\ta:0.10092219903481031\tbe:0.050764302367589435\tis:0.05011327360250969\twith:0.045465374180499174\twhich:0.04352617128314119\t:0.01\n",
"<s>:0.5432842855999633\tit.:0.12765336760674043\tthem.:0.06927884517018071\tday.:0.05649119725557569\t.:0.05078002771836103\ttime.:0.03988937144008883\thim.:0.035451492347163736\tyear.:0.03490495892836201\t::0.032266453933564365\t:0.01\n",
"of:0.3873222322894124\tto:0.13396168096146308\tin:0.12963128236981766\tby:0.07974422663994622\tand:0.05602824043959432\tfor:0.05464992506804876\tIn:0.05446265958481477\tthat:0.05037144257637433\tfrom:0.043828310070528384\t:0.01\n",
"it:0.21501983402527836\tIt:0.20281497500495943\the:0.14467425608118917\twhich:0.12423162937011685\tI:0.09063069371906042\tand:0.06807157315902591\tHe:0.055239210783862035\tthat:0.053974385078478515\twho:0.03534344277802922\t:0.01\n",
"the:0.43491986092450846\ta:0.17323712032708033\tof:0.0863934530237154\this:0.07186960223359419\tThe:0.05766693620673247\tand:0.05506783833512994\tthis:0.04287561485532009\ttheir:0.03551264442745937\tour:0.03245692966645978\t:0.01\n",
"of:0.3233222002870885\tto:0.11496252667878261\ta:0.10401437926834003\tand:0.09532552730695722\twith:0.08459518975404846\tfor:0.08247050221432488\tthe:0.07107180506227356\twas:0.05748820331699624\tin:0.05674966611118852\t:0.01\n",
"and:0.17075694437420558\tis:0.16178957340858444\tthat:0.10786689120620889\tas:0.10496539191590218\tbut:0.09313756924145418\thad:0.09184371913002727\tIs:0.08922683888107832\twas:0.08652404528551248\thave:0.08388902655702662\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
".:0.1733488629320229\tMrs.:0.13573661116839922\tand:0.13129978504427267\tA.:0.13039907139864595\tP.:0.10623661072107381\tof:0.08550483514024415\tMr.:0.08218827256523598\tthe:0.07863105556298051\tby:0.06665489546712473\t:0.01\n",
"taken:0.15656662517598832\tpicked:0.151858605162014\tmade:0.1485179792027913\tbuild:0.107904089796715\tput:0.0946360435965667\tbrought:0.08988151836252643\tmake:0.08253111226591163\tset:0.080889394709943\tit:0.07721463172754373\t:0.01\n",
"It:0.23262052284009457\tit:0.23201166364489184\tthere:0.15832984385428517\tThere:0.10441338214127244\twhich:0.07614731400151836\tthat:0.06485213865833801\tThis:0.04087834255557804\tand:0.04071217767041425\the:0.04003461463360729\t:0.01\n",
"the:0.4151454507563466\ta:0.154067464923635\tthis:0.09142311465573352\tto:0.07074561564231242\tother:0.06203544874980588\tand:0.05263431692731904\tour:0.05235864743866889\teach:0.047794762077634514\ttheir:0.043795178828544126\t:0.01\n",
"of:0.3230936050938893\tfor:0.268392828876221\tto:0.15747078114693255\tat:0.049819359207867356\tin:0.046734235798082766\tand:0.04498892291979461\tfrom:0.04487562286829962\tthan:0.02869439857086509\tFor:0.02593024551804763\t:0.01\n",
"a:0.19695323005005633\tthe:0.16816913302810177\tof:0.14822321855124101\tand:0.13939369829278436\tto:0.08838261293154283\tin:0.07993288548178436\tfor:0.0784798399018892\tthat:0.05177581610431104\tby:0.03868956565828905\t:0.01\n",
"the:0.7409704297276831\tThe:0.07041619390329508\ta:0.06104338231361163\ttho:0.05287551886838819\ttbe:0.017151897373622667\tof:0.015594945686220647\tour:0.013943686141516125\tand:0.009455453477074119\tin:0.00854849250858847\t:0.01\n",
"the:0.3356578395614042\tof:0.15313257772940653\ta:0.11409975608000458\tand:0.11071510559261802\tthis:0.09511809990886061\tas:0.05436759892162974\tsaid:0.043618404402962635\tto:0.04186288765148809\tin:0.041427730151625625\t:0.01\n",
"and:0.2445479971336327\tof:0.19111477194630047\tto:0.15606249873759762\tthe:0.13892477691358676\tis:0.059855247651163124\tor:0.05369886123989182\tbe:0.053524514589298876\twas:0.047219445845831105\tI:0.045051885942697475\t:0.01\n",
"in:0.5107095565132559\tthe:0.26388340938607063\tIn:0.15501568180367037\ttho:0.01682186222450791\tand:0.012719205561644952\tiu:0.009679131438135851\tof:0.007505533986753687\ta:0.007053586932675277\ttbe:0.006612032153285359\t:0.01\n",
"the:0.22621754684143483\tof:0.2121246296450364\tand:0.1387178532151598\ta:0.1330548885143689\tto:0.07801628138881134\tMr.:0.06384327045324964\tin:0.05393160683610293\twith:0.04333205764451371\tor:0.04076186546132228\t:0.01\n",
"able:0.1355320370639336\tright:0.13451414580237345\thim:0.13048098484267026\tis:0.11687131037302098\twas:0.11144099372242128\tand:0.0988988815971708\tbegan:0.09785491253562477\tenough:0.08483858505494465\tme:0.0795681490078402\t:0.01\n",
"years,:0.16270601460719014\ttime:0.12852657470430356\tin:0.12362720187448062\t;:0.11832081493207332\tporous:0.1026614492451613\thundred:0.094376847867295\tit,:0.09322632357261038\tStates,:0.08499726460405177\tmanner:0.08155750859283398\t:0.01\n",
"dollars:0.429900340978018\tpounds:0.0981121488240322\tof:0.0964616452517055\tcents:0.08827097886567223\ta:0.08467127742778358\thundred:0.08247193163970218\tand:0.05270751571136385\thalf:0.028902834035424815\tthe:0.02850132726629779\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.24422537367035607\tI:0.14347891089842277\thave:0.12731064793262553\the:0.11071967745786633\thad:0.10349761679618276\thas:0.07501178879242247\tit:0.06923803105053983\tbe:0.060763618697826774\twas:0.05575433470375745\t:0.01\n",
"of:0.2502222265075797\tto:0.20567362559127686\tand:0.17076986256551102\ton:0.12495170385773474\tin:0.05638685700043653\tat:0.04726984535088747\tor:0.046537440127300295\ta:0.04544582126585114\tthat:0.04274261773342203\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"it:0.3193887493885914\tIt:0.22110100782192096\the:0.18664359267260322\tHe:0.05855383347838532\tand:0.05750089615620195\tI:0.04676820090257822\twhich:0.037966954868647984\tshe:0.03570455143161576\tthat:0.02637221327945512\t:0.01\n",
"the:0.31904360573278207\tof:0.17315917076143733\tand:0.12534789090235726\tto:0.09647386236527573\ta:0.06334210630031535\this:0.0538857038172744\ttheir:0.05387849831842087\tbe:0.05312243736196245\tin:0.05174672444017449\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.21439699297144033\tand:0.17650121299071564\tthe:0.13331218097239023\t.:0.1290464320818056\tMrs.:0.1106688305345302\tby:0.06289440219519556\tto:0.05899958987416304\tMr.:0.05266755330674808\t<s>:0.05151280507301111\t:0.01\n",
"highest:0.32141031296609807\tup:0.12808898049557185\tmade:0.12748178796684245\tit:0.10824734579077701\tin:0.07376085426621085\ttime:0.06284674352041288\thim:0.05894746245372762\tthem:0.05551605719413863\tout:0.05370045534622073\t:0.01\n",
"he:0.2551201520408392\tit:0.1288527672382355\tand:0.12677751374117283\twhich:0.11430383549362245\twho:0.09737427734167386\tthat:0.0943520398413628\tIt:0.07306541375906984\tHe:0.05605309586453941\tshe:0.04410090467948399\t:0.01\n",
"the:0.3657511376473245\tof:0.1527872733278719\tand:0.13203672701123187\tfor:0.09358775711917039\tto:0.08072905635857207\tin:0.051782144013057974\ta:0.05004094578801395\t<s>:0.03191581595169206\tthat:0.03136914278306543\t:0.01\n",
"of:0.35684768335717304\tto:0.12114900275302484\tin:0.10976484663645757\tby:0.10684882114910138\tand:0.08196422402207054\ton:0.06500821570552641\twith:0.060299362594125196\tfrom:0.04536188436655893\tthat:0.04275595941596194\t:0.01\n",
"of:0.29123744909396176\tto:0.1664656552101735\tand:0.12945316888692274\t-:0.08599152373623682\twith:0.07610382243733207\twas:0.07084056977237256\tby:0.06880705093340816\t.:0.051085463175481315\tis:0.0500152967541111\t:0.01\n",
"to:0.24169033527148967\tI:0.13776158146121537\twill:0.12715372947019454\twould:0.11748358444260676\twe:0.10332163114326383\tthey:0.07845606259367421\twho:0.07774271415073483\tyou:0.053694268155651724\tshall:0.05269609331116898\t:0.01\n",
"the:0.29334049670089013\tof:0.2104042532448617\tto:0.12707752485508567\tand:0.0949908803562157\ta:0.07138384994433133\tin:0.05554269854492421\ton:0.05238355042810666\tby:0.04481628506604542\t<s>:0.040060460859539244\t:0.01\n",
"and:0.2803952040092383\the:0.2636994945997513\tthe:0.09295948764669697\tshe:0.08425327459353905\tHe:0.06781629446223805\tit:0.06759446863222084\tI:0.052563915462366974\twhich:0.04561310714658995\tthat:0.03510475344735858\t:0.01\n",
"of:0.19222805621105238\tand:0.19004492527061204\tfor:0.16723821323246857\tthat:0.08157992246258691\tby:0.08105634998065794\tin:0.08085618155323196\tis:0.07585553825917475\twas:0.06193668086281729\tto:0.059204132167398324\t:0.01\n",
"miles:0.19877119077849117\tand:0.13691467829090032\tfeet:0.13393264507069688\tat:0.11363797653868961\taway:0.11314007095574367\ttaken:0.08414608505846131\tthem:0.07652572755442798\tup:0.06886650363031764\tranging:0.06406512212227128\t:0.01\n",
"he:0.36466375143972846\tI:0.11433816869231088\twho:0.10894363522709706\tshe:0.08887972512524452\tthey:0.08449981131612101\tHe:0.06983179601011938\tand:0.05701171706904927\twhich:0.05404508922922817\tthat:0.047786305891101256\t:0.01\n",
"and:0.19051943986217015\tof:0.1720639792232348\tas:0.16747509158597676\tthe:0.13450047028301987\tto:0.09096766000852802\tbe:0.06575526900119626\tsuch:0.06334143169216884\tmuch:0.055005516582227666\tin:0.05037114176147772\t:0.01\n",
"of:0.33595057667642475\tthat:0.13991201188244579\tand:0.12930986823957683\tin:0.10438619588460321\tafter:0.06345042549361944\tto:0.06087712879558945\tfor:0.059070009496866374\tby:0.05253473999281255\tfrom:0.04450904353806173\t:0.01\n",
"the:0.6909464731648476\tThe:0.08599042925802547\this:0.04899319853860734\tat:0.04584546247353086\ttho:0.0375345941758919\ttheir:0.02303560212699381\twas:0.021410357597646208\tand:0.018865869070959166\tmy:0.01737801359349764\t:0.01\n",
"he:0.2518950439031629\tHe:0.12827597905067994\tI:0.12100046069344479\tit:0.10053677054893098\tand:0.09343250841033908\twhich:0.08107381833038588\tIt:0.08048093281003073\twho:0.07343340082812332\tshe:0.059871085424902236\t:0.01\n",
"is:0.18253888989072073\tare:0.13987594244229887\tand:0.13690440384905872\twas:0.13350661690813576\tbe:0.11204311484933113\tnot:0.1053697180096533\tbeen:0.08473996103945858\twere:0.04860249393169674\tdo:0.04641885907964606\t:0.01\n",
"of:0.4660441358622948\tand:0.10109221577803075\tto:0.0970905102852284\tin:0.08303787966691739\tby:0.07476506501850276\twith:0.0497995333100633\tthat:0.04873896571385518\tfor:0.03991749673111997\ton:0.029514197633987303\t:0.01\n",
"the:0.34196705498545604\this:0.17569364007557017\tof:0.08698978099973813\ttheir:0.08685154674320662\tthis:0.08090451796582351\ta:0.06390046020703086\tto:0.05961728609193773\tmy:0.047360533554028424\tin:0.04671517937720847\t:0.01\n",
"<s>:0.2946581984740359\tit.:0.19099921679974471\tthem.:0.13671721475899137\thim.:0.09684820017846558\ther.:0.06399265930271435\ttime.:0.06067390759572117\tagain.:0.051020080930111504\tlife.:0.04951585759065171\tme.:0.04557466436956366\t:0.01\n",
"of:0.40760879315217374\tin:0.28964194291896556\tto:0.05494772692632107\tIn:0.051532300162196475\tfor:0.05130511836751567\tthat:0.04346678086249316\tby:0.03769120634213955\tand:0.03486352966343018\tfrom:0.018942601604764565\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"him,:0.14442347732413807\thim:0.14332045333864185\tit,:0.13664315699189652\tit:0.12884897932158634\ttime:0.10826722420686866\tman:0.09019240385959884\tup:0.08646950923887878\tthem,:0.07695999005087384\tthem:0.07487480566751711\t:0.01\n",
"the:0.28194576944076694\tin:0.16830115934442097\tof:0.12175089403444911\tand:0.10861914080625808\ta:0.0827300313214211\tto:0.07226688505594739\tthat:0.05730899637674186\tany:0.05038384377867689\tfor:0.04669327984131783\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"it:0.3477464777553496\tIt:0.21077774837934032\twhich:0.11923064338294648\the:0.07457670604533519\tthat:0.06561065550934027\twhat:0.05574114599668741\twho:0.05277671950527242\tand:0.03372213343379503\tThis:0.029817769991933318\t:0.01\n",
";:0.3544776881951383\tand:0.13514618390126307\thim,:0.1279668897791262\tthem,:0.09113852416287015\tit,:0.07578055904901033\tup,:0.05424246236786818\ther,:0.05396769529550944\ttime,:0.05183540009879969\tman,:0.04544459715041464\t:0.01\n",
"of:0.20753301574986444\tthe:0.16400327111176585\tand:0.14042094536482855\tto:0.12720964907981014\tfor:0.10379767442357508\ta:0.09075011645215197\tin:0.059109256838101136\twas:0.04862863756936076\tby:0.04854743341054222\t:0.01\n",
"the:0.22837998766966777\tof:0.17159546567360023\tto:0.12341373376315147\tfor:0.10445285466539507\tin:0.10039433266503574\tand:0.09616474681609577\tbe:0.061383194402407526\ta:0.05229278303932079\tor:0.0519229013053256\t:0.01\n",
"the:0.2897383324568781\tof:0.17113076544121678\ta:0.10182560711526899\tto:0.08415539991493161\tin:0.07588252600215932\tany:0.07161219763621446\tfor:0.06930496705250555\tor:0.06569006370210649\tand:0.06066014067871867\t:0.01\n",
"<s>:0.5700663430575712\tit.:0.09252129895636603\tthem.:0.07922000070411533\ttime.:0.045481764811291625\thim.:0.04327771834603441\tday.:0.042971798329982026\tcountry.:0.04077421733332302\t.:0.03784761402590534\tyear.:0.037839244435411\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"him:0.1314030385903094\table:0.1259703674676985\tis:0.12350614172530042\tand:0.11827976889911514\tnot:0.11606150227478738\twant:0.1057359055640923\tright:0.09622794718667131\thave:0.0876813243983569\tenough:0.08513400389366878\t:0.01\n",
"the:0.35469868873527666\tThe:0.2066369832373586\tand:0.11657440735805928\tof:0.09789456412894408\tthat:0.05812144230601495\tan:0.047985898443741314\tThis:0.04081627078076625\this:0.03844442677144695\tthis:0.028827318238392022\t:0.01\n",
"of:0.23630609917106654\tthe:0.19857899166240997\ta:0.19188842170058296\tand:0.08781758752119272\tto:0.08382382308138184\tin:0.06681725259258606\tfor:0.0576540388547933\twith:0.036090109840644785\tthat:0.031023675575341816\t:0.01\n",
";:0.1835992689427942\tme,:0.17101778615041985\tit,:0.1312766919608728\thim,:0.09720245193811279\tup:0.09103174257117803\tthem,:0.08478802561401778\tme:0.08131845895881017\thim:0.07866756364048182\tin:0.07109801022331255\t:0.01\n",
"have:0.1358948576226231\tbe:0.13210186035351118\tand:0.13164224069457886\thad:0.12466328013253636\twas:0.11761324350269249\the:0.09637894916841587\thas:0.09437128563888525\tnot:0.08163067556121932\tbeen:0.07570360732553763\t:0.01\n",
"cent:0.5205633359837701\tcent,:0.1825937643517856\tcentum:0.13568707119231382\tcents:0.07125088241436596\tdollars:0.025869009276392595\t$1:0.017201872507613316\tpercent:0.01510166066102889\tten:0.012776171577550557\thalf:0.008956232035179236\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.33365899831888546\ta:0.144674089572029\tthe:0.1273443365588524\tand:0.09435707677453732\tfor:0.08751992213405112\tsaid:0.07901737446505756\this:0.05759798847045997\tto:0.03885032599537803\ther:0.026979887710749086\t:0.01\n",
"he:0.24184133344469383\tit:0.152622035197646\tI:0.1302539667129161\tIt:0.10374643873945391\tHe:0.10250568801949268\twhich:0.08267003134383273\tand:0.06548565724499313\tshe:0.0608911986925278\twho:0.04998365060444383\t:0.01\n",
"and:0.19433510573309606\tbridge:0.18819252122194727\tcame:0.12976583652015194\tup:0.09644358331385654\twent:0.09129270334560786\tdirectly:0.07996485111968163\tout:0.0767132844805258\tgo:0.06763501286498921\tway:0.06565710140014373\t:0.01\n",
"him:0.1280381431911991\table:0.12062077502396214\thave:0.1139229856397097\tand:0.11171946667894975\twant:0.10974763024526385\tallowed:0.10465437710389246\tthem:0.10128443148019256\tis:0.10013200114709248\thad:0.09988018948973797\t:0.01\n",
"in:0.20018562908531082\tcosts:0.1498856773587417\tland:0.14882512901769374\tprincipal:0.11736400543753024\ttime:0.10776813314173683\trights:0.08173523766678144\tcity:0.06399715294914972\tfeet:0.061353393273663556\tlabor:0.058885642069391925\t:0.01\n",
"last:0.30404386481605006\tthe:0.19933822131584258\tSaturday:0.14280422101494197\tat:0.05923724976904138\tto:0.05803153178821802\tThursday:0.05792230489128322\tof:0.0574702211263909\tFriday:0.056959779952017425\tall:0.05419260532621451\t:0.01\n",
"of:0.37952000190029483\tto:0.18231985018468136\tin:0.11686874239750193\tthat:0.07053564203373404\tand:0.06538145566631325\tby:0.05747737265451251\tfor:0.04359040606910361\tat:0.037336324562938616\twith:0.036970204530919905\t:0.01\n",
"and:0.23562249300599045\tarrived:0.19841372110330668\theld:0.10194309373397596\tsold:0.09650318695177602\tDated:0.09512689275536121\tclosing:0.07757007527568294\twas:0.07048795667485343\tmade:0.062161139754507606\tarrive:0.052171440744545695\t:0.01\n",
"and:0.25036177697140855\ttime:0.15971999705002968\tever:0.11924457235380848\tthat:0.08800966674636651\tyears:0.08579626166343288\tEver:0.0821938975280376\tlong:0.07307876100767204\telapsed:0.07233007577786293\tor:0.05926499090138117\t:0.01\n",
"the:0.2423620207365299\tof:0.20536500222371457\tand:0.166871077045992\tin:0.1176496937967874\ta:0.06877339806465797\twas:0.060401645356168765\tis:0.04771002123545104\tare:0.04130335500381535\tbe:0.039563786536882965\t:0.01\n",
"It:0.36487889271173496\tit:0.15967878591340084\twhich:0.08902347692599992\tThis:0.08805930593565035\tthere:0.07875248029918261\tthat:0.07634028130219074\the:0.05489543682798901\tand:0.03961272054290272\tthis:0.03875861954094881\t:0.01\n",
"and:0.3749473050629123\tit:0.12046942905513602\twas:0.09329003394552177\tas:0.09085211043587571\tbe:0.08821177591254002\the:0.08237536738150579\tbeen:0.048051967059336176\tIt:0.04686875279166992\tis:0.04493325835550222\t:0.01\n",
"of:0.31066487580257124\tin:0.13335372159828743\tto:0.12735882558764552\tand:0.1096147737186892\tthat:0.0727226872432331\tas:0.06857688801142055\tfor:0.06168411592627775\tat:0.056005056018305154\ton:0.050019056093569936\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.7006964396750875\tThe:0.10382281036140899\tno:0.04820315319645908\ta:0.04043871672822993\ttho:0.03556203024156648\tof:0.020035239064020775\tin:0.01567373164447969\tand:0.014370275640007693\tany:0.011197603448739784\t:0.01\n",
"of:0.19986669638946614\tin:0.19539647756368586\ta:0.18380440071775725\tthe:0.11796316678830354\tto:0.08405484495444386\tand:0.0623460149306812\tIn:0.05497661495630356\tfor:0.046420495856539304\tat:0.04517128784281932\t:0.01\n",
"the:0.2873953035074578\tof:0.21344440021812378\tand:0.11296142765504273\ta:0.08461592541970958\tto:0.08226070552655401\tbe:0.0742740825216053\tin:0.049384345903346547\tfor:0.04346745705650477\ttheir:0.04219635219165555\t:0.01\n",
"and:0.18506716812353982\twas:0.17607375174201867\tnot:0.12427069724847692\tis:0.11708917388329372\tbe:0.09215471195087287\tare:0.08629843912360233\tbeen:0.07950108262636973\tor:0.06813335378234975\twere:0.06141162151947622\t:0.01\n",
"is:0.19912238527184742\tbe:0.19795315780479172\tare:0.16136415683902056\twas:0.1198147047785816\tnot:0.1074528144251015\tand:0.0803813476238299\tbeen:0.04806688887395629\twere:0.042892051016917086\twell:0.03295249336595401\t:0.01\n",
"and:0.39785666775412876\tthat:0.12343978131884487\tof:0.09958172719058082\tare:0.07774936789627114\tto:0.0761413979058924\twas:0.06851321229160812\twere:0.060275400197222856\tthey:0.04759418604316611\tit:0.03884825940228491\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"the:0.4017317637540429\ta:0.32770020163359453\tand:0.09648386866212297\tThe:0.04491863844370221\ttho:0.028172000923849177\tof:0.026127912574114058\tmost:0.024338278379340706\ton:0.023124612830291175\tvery:0.017402722798942147\t:0.01\n",
"the:0.22583494726906028\tof:0.14434201586986606\tand:0.14181870498476506\twas:0.11246019593562943\tto:0.11173582321142453\tbe:0.08198509723148892\tis:0.07174266798927509\tin:0.05490858902280562\tor:0.04517195848568496\t:0.01\n",
"on:0.2555570106615597\tof:0.24702367943076955\tto:0.09728803759948225\tand:0.09578243762364988\tin:0.08655909334449599\twith:0.06603333087685728\tfrom:0.05967117855647354\tby:0.04133918550362156\tat:0.04074604640309016\t:0.01\n",
"the:0.3447077595387973\tof:0.1511362963322851\ta:0.11454347129152183\tpublic:0.08457609059733454\tsaid:0.07399988107557225\tfor:0.06254615256572389\tat:0.05328185445303589\tin:0.05271500797548615\tto:0.052493486170243034\t:0.01\n",
"of:0.3216028107445791\tat:0.1559432356748248\tto:0.13476362752926796\tin:0.07938371906660163\ton:0.06794647393130551\tfrom:0.06391396220053229\tfor:0.059922538221856225\tthat:0.05411286593662252\twith:0.05241076669441005\t:0.01\n",
"the:0.23548954332163083\tof:0.21113005546683178\tand:0.21109623599682734\tto:0.09338500466118457\tin:0.07633727011683625\tbe:0.04250234515141978\tas:0.04117704869674812\ton:0.03995448290834234\tthat:0.038928013680178966\t:0.01\n",
"and:0.17088875819441882\tmade:0.14700725502613016\tup:0.14037496326714635\tsecured:0.1032245946741212\tout:0.10290304256707901\ttaken:0.09703783258711497\ted:0.08520391730418442\thim:0.07433795841065471\tdone:0.06902167796915025\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"and:0.19718051189814095\the:0.18347801597271643\thad:0.11857276346322737\thas:0.099723453026473\thave:0.09852463057987727\twho:0.0784571057477682\tbe:0.07729178006647272\tdis-:0.07273960560539781\tHe:0.06403213363992627\t:0.01\n",
"the:0.5123003350176745\tThe:0.18986519449917788\tan:0.09166787332167667\tthis:0.049604570256909467\tthat:0.036513773640943235\tof:0.03565680278497807\ttho:0.028204353270336727\this:0.026482583071445635\tAn:0.01970451413685777\t:0.01\n",
"the:0.2423620207365299\tof:0.20536500222371457\tand:0.166871077045992\tin:0.1176496937967874\ta:0.06877339806465797\twas:0.060401645356168765\tis:0.04771002123545104\tare:0.04130335500381535\tbe:0.039563786536882965\t:0.01\n",
"the:0.29533053794291236\ta:0.2897564990521584\tand:0.11712418305648209\tof:0.09429917754914574\tThe:0.05615586308656426\tto:0.04101960493162208\tan:0.03473290765883395\tin:0.03173659892467281\tfor:0.029844627797608284\t:0.01\n",
"mailed,:0.2999277238863508\tin:0.17346963127616938\t;:0.16744037632905714\tit,:0.07490543667274759\tmortgage,:0.0658644749659435\tup:0.05484757931890458\tthem,:0.05403910966659331\t,:0.05186566631057725\tStates:0.047640001573656464\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"he:0.24238168087322717\tit:0.1898859176810513\tbe:0.11408030823699564\tand:0.10830069211365313\tthey:0.09373073837111871\tone:0.0792684172525281\tIt:0.05983400453394999\twho:0.05207153571976893\tHe:0.050446705217707145\t:0.01\n",
"and:0.2949791375493107\twas:0.15603413172289576\tit:0.10131513505939643\tis:0.09247313059215137\tthat:0.07674061886376866\tare:0.07255734426556362\tmade:0.06690354850053709\twere:0.06600548730924821\tbut:0.06299146613712817\t:0.01\n",
"of:0.30871014838359984\tin:0.16546939392169469\tto:0.10917086222557493\tfor:0.10324433497920248\tand:0.09701739891491647\tat:0.06080665560730656\tthat:0.05446710532845915\tIn:0.04749645128015027\tfrom:0.04361764935909563\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.27688901726457676\tthe:0.18337671231183789\tand:0.1318900199848834\tto:0.11944701686168406\ta:0.10778072275040136\tin:0.05256399405571501\tfor:0.049801536184707236\tthat:0.0370342496242098\tat:0.031216730961984476\t:0.01\n",
"the:0.30767476607422617\tand:0.17267398025714586\tof:0.10877709557740252\this:0.09953067400822892\ther:0.07859334238702072\the:0.07698830566696195\ttheir:0.06173315690574391\tthat:0.042647160545392616\twhich:0.041381518577877315\t:0.01\n",
"the:0.7060060626197512\tThe:0.12763664814802786\ttho:0.03641621657505689\tof:0.032021286855150925\this:0.024637061423715426\ttheir:0.02378784258697475\tour:0.01766659509735482\tand:0.011687702686211807\ttbe:0.010140584007756309\t:0.01\n",
"and:0.19725104098764587\tof:0.16958046001835608\tthe:0.1481638052371734\tto:0.09938698712242126\ta:0.08770570001227247\tfor:0.08204335824558105\twhich:0.07196038215070251\twas:0.06797428233447628\tmore:0.06593398389137094\t:0.01\n",
"in:0.3467579382216749\tof:0.16948502127319443\tat:0.12733312336419608\tto:0.11809116477022007\tIn:0.07288454211405034\tfrom:0.04031164316564754\twith:0.03999603658368056\ton:0.03771719282530756\tfor:0.0374233376820284\t:0.01\n",
"and:0.17950644565136956\tas:0.13033131654754818\tit:0.12922184790110464\tIt:0.12332015049915845\t<s>:0.10777333047324816\t;:0.09496859838451814\tthat:0.08165595833415915\twhich:0.07322210847685044\tland:0.07000024373204317\t:0.01\n",
"it:0.27997167513564525\tIt:0.22256262388182765\twhich:0.126404346409237\tand:0.08660357787468825\tas:0.06534294366064206\the:0.05936962779593273\tthat:0.05777660225111572\twho:0.04736200557670686\twhat:0.044606597414204356\t:0.01\n",
"that:0.30371066784491974\tif:0.1528592157661182\twhich:0.13093290885882847\tas:0.1067643537300592\tand:0.09146677604370172\twhen:0.06012942554608973\twhere:0.057718502696278005\twhat:0.047491073256094876\tbut:0.03892707625791013\t:0.01\n",
"men:0.17762139509522837\tWilliam:0.12852709254369568\thundred:0.11698799013845104\tJames:0.11296468212387654\tRobert:0.09850774864596133\tJohn:0.09620467900978545\tone:0.09270288259534681\tup:0.0912831501004607\tcity:0.07520037974719403\t:0.01\n",
"of:0.29427840420111334\tand:0.19037350337791353\tin:0.11041665492830458\tto:0.0953233373283196\tat:0.07052500963088408\tthat:0.06631245887492296\twith:0.05553709306732293\ton:0.055516148861375486\tfor:0.0517173897298435\t:0.01\n",
"they:0.27175351747991927\twho:0.1742959213944555\twhich:0.12279600502557071\tthere:0.09840638532190349\twe:0.08452910022954424\tmen:0.06680282515260055\tThey:0.06230764592488641\tand:0.05748782383355527\tthat:0.051620775637564564\t:0.01\n",
"make:0.20165154753017853\tand:0.15080923427705015\tthat:0.13804249785347059\tof:0.12239180828646615\tgive:0.09206323632163635\tas:0.07399272837629398\tis:0.07258818454402004\tfor:0.06987413091193259\ton:0.06858663189895153\t:0.01\n",
"the:0.288554670302953\tof:0.2768498996640131\tfor:0.08434264578969046\tan:0.07004232515970625\ta:0.06986217078584747\tin:0.060994258448113826\tby:0.05754210294608209\tto:0.04365160847557869\tand:0.038160318428015254\t:0.01\n",
"as:0.2621551337048023\tand:0.12819083886615812\tvery:0.10818205209321824\tso:0.10001719977379678\tthe:0.09827684612652438\tbe:0.0827187034967189\tare:0.07199045737684788\tis:0.07120940983450387\twas:0.06725935872742951\t:0.01\n",
"and:0.25338623518957576\tthe:0.1417729348261516\tit:0.11097602130831145\the:0.10442553987212883\twhich:0.09773342566529561\tthat:0.08615305162963126\tIt:0.07510249379913843\tthey:0.0642995812375574\tI:0.05615071647220956\t:0.01\n",
"of:0.5095899908307753\tin:0.2128010280858555\tto:0.09330535598233418\tIn:0.03778336751458792\tfor:0.03406702965428335\tthroughout:0.03322592073873481\tby:0.03052488736058722\tfrom:0.019523425535847027\tand:0.019178994296994833\t:0.01\n",
"and:0.5021953962866267\tto:0.1030282167460194\twhich:0.09070942981501157\tthat:0.07950892285495993\tit:0.07225289161354283\tas:0.04903152644659842\tIt:0.032579318052906175\twho:0.030893702466922204\tI:0.02980059571741275\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"to:0.22628494560806744\tthe:0.20092169926656542\tof:0.19730970841504225\tand:0.10963885279529491\tat:0.07331465390183073\tin:0.05503363335279411\t<s>:0.04596302271656127\ton:0.042208878513173766\tfrom:0.03932460543067003\t:0.01\n",
"the:0.20330791336198092\tand:0.16374723220953158\tof:0.12203318026621938\tto:0.11979475324583129\ta:0.11596184956525815\tbe:0.0837146771961551\twas:0.08039980232180864\tis:0.0604430544374977\tin:0.04059753739571725\t:0.01\n",
"is:0.2706326106082561\twas:0.15921625067326975\tand:0.1579901343650686\tare:0.10623015218280579\thas:0.0736900416714252\tnot:0.064129570925368\thave:0.06367280473746231\thad:0.05322921632604593\tit:0.04120921851029822\t:0.01\n",
"on:0.20882163947107169\tof:0.20580302678447474\tand:0.15283046093795438\tto:0.10307048091481884\tOn:0.0934440932218849\tall:0.06169111630679553\twith:0.059900783022025936\tin:0.05740836204605506\tthat:0.04703003729491897\t:0.01\n",
"a:0.6668222451782609\tthe:0.08163919397158587\tvery:0.05616435537606535\tand:0.04120478174468835\tof:0.03553472612287229\tso:0.033018908233906304\tA:0.02815268742805985\tin:0.024301236166769158\tsome:0.023161865777791894\t:0.01\n",
"to:0.5495112982051114\twill:0.1450511462764908\twould:0.05572865626182085\tshall:0.05243039128536251\tnot:0.04178809533467543\tmay:0.04023874484247048\tshould:0.03711478769812319\tand:0.03703848478314683\tcan:0.031098395312798597\t:0.01\n",
"it:0.1763405589699047\twhich:0.13858980971299167\tand:0.12970374612343888\tIt:0.12413620469295653\tthey:0.11833495429004258\the:0.10905724887936664\tthat:0.08128661585188769\twho:0.06315081385676692\tI:0.049400047622644425\t:0.01\n",
"the:0.24009782776766705\tof:0.21929314791840138\tto:0.1315805716129604\tand:0.12291491684712343\ta:0.09506364049819857\tin:0.08272884009922157\tfor:0.03929291516366697\t<s>:0.02958550329105213\tthat:0.029442636801708572\t:0.01\n",
"is:0.28110983654482796\thave:0.1452690490019085\tthat:0.1011252675558151\thad:0.09977332689019455\tand:0.09457387156401774\tfor:0.07333453358592133\twas:0.07322160355678227\tbe:0.06213292225919445\thas:0.059459589041338\t:0.01\n",
"the:0.8514581005254491\ttho:0.049339039716014985\tThe:0.023810476456397073\ttbe:0.018289326463401753\tof:0.017391813259110298\tand:0.009228001818112395\tin:0.00870150683821085\tby:0.005902294252819958\ta:0.0058794406704836405\t:0.01\n",
"the:0.2321207833647305\tno:0.17237363788337978\tany:0.1647803900011006\tand:0.12256192345752707\teach:0.07929801024405653\tor:0.07068931630975132\tsome:0.05043385986387994\tall:0.0499046172172152\tfrom:0.04783746165835901\t:0.01\n",
"of:0.28175668549919725\tin:0.12746678103918072\twith:0.10423800593281397\tby:0.10042817419788157\tto:0.08328254555352792\tas:0.08167276737641743\tis:0.07282710567059886\tfor:0.07014395954500714\tsuch:0.06818397518537508\t:0.01\n",
"and:0.1715161835985111\tis:0.1701504783439962\tas:0.11082801560618431\twas:0.10049374719407791\table:0.0995782405371278\tnot:0.0959529126271294\tenough:0.08218526606313246\thim:0.08082377757804238\torder:0.07847137845179847\t:0.01\n",
"be:0.2499008589765908\tbeen:0.1174212562606465\tis:0.11396978774900211\tare:0.11089127926287139\tand:0.10396484715008929\twas:0.09627113869028214\thave:0.06981602227720059\twere:0.06684296643486326\tbeing:0.060921843198453875\t:0.01\n",
"per:0.7516169586481418\tthe:0.11521559365056495\tof:0.03450271195368205\tand:0.025370546234877674\tan:0.023369904460680536\tby:0.01648271906720332\tto:0.0118478698647959\tthat:0.0071686485894737985\tThe:0.004425047530579977\t:0.01\n",
"contained:0.21195734665215293\tdescribed:0.20422195386504643\tstipulated:0.1575813651728388\trecorded:0.08801227956739072\tand:0.08591808985387941\tsituated:0.07920133131407768\tinterest:0.07356644326792618\tinterested:0.05966697016894978\tfiled:0.029874220137738088\t:0.01\n",
"a:0.20519534979956264\tthe:0.184876788208263\this:0.16529161278100993\ttheir:0.10935072726121443\tthis:0.10648282074261446\tmy:0.0728441623596876\tno:0.05788625266375025\tany:0.044349103132242426\tyour:0.04372318305165519\t:0.01\n",
"and:0.17902453103968283\twent:0.13907613081779802\tgo:0.11703828021850246\tfeet:0.10858526240142813\tas:0.10560094839085853\tthem:0.0929140584033672\tsent:0.08314287687944451\tup:0.08306466055338961\tmade:0.08155325129552876\t:0.01\n",
"<s>:0.5911664716768236\t.:0.09254162861311349\tit.:0.07581705834204039\tthem.:0.05818195815929814\tday.:0.037726686386629994\thim.:0.034790603659583\ttime.:0.03473040556580825\tof:0.0340401802064035\tcountry.:0.03100500739029967\t:0.01\n",
"the:0.7622746159270795\tThe:0.07152609469465292\tand:0.057607037585003254\ttho:0.04619014875353477\ttbe:0.018056175127612924\tof:0.012250376874417528\ton:0.009341427090075462\tabout:0.006385977616672987\ttwo:0.006368146330950648\t:0.01\n",
"the:0.4608410845731083\ta:0.13614202670631334\tand:0.10422671811393516\tin:0.0694763835795054\tThe:0.06059626499933908\tof:0.05141466559278752\tplace:0.03991900045455965\tpoint:0.034264456949653445\this:0.03311939903079818\t:0.01\n",
"and:0.2708642991567132\tof:0.2538056637295381\tthe:0.10419315201696677\tto:0.10392362544171004\tSouth:0.058186585659625395\t<s>:0.057831653145744184\ton:0.04821489787597119\tfor:0.04750575273110271\tfrom:0.045474370242628376\t:0.01\n",
"of:0.33406129049648303\tto:0.12049264072633424\twith:0.0963336285288878\tand:0.0939645479779181\tis:0.0864883967561169\tin:0.08226092310789548\tthat:0.061430624386753084\tby:0.057631216891386707\tfor:0.057336731128224655\t:0.01\n",
"the:0.7982410174004783\ta:0.05840345025339393\tThe:0.050963775996256525\ttho:0.04484116839530093\ttbe:0.015322503459402264\tthis:0.008210562392640208\tand:0.005582976990559042\tgreat:0.004864662149860219\twhole:0.0035698829621086062\t:0.01\n",
"a:0.5648664381493911\tof:0.14982282379862122\tin:0.0855148537446649\tthe:0.07826718566760206\tfor:0.027278948809864513\tvery:0.024661881595574562\twith:0.02177313677698295\tto:0.01997424777256417\tIn:0.01784048368473456\t:0.01\n",
"in:0.5107095565132559\tthe:0.26388340938607063\tIn:0.15501568180367037\ttho:0.01682186222450791\tand:0.012719205561644952\tiu:0.009679131438135851\tof:0.007505533986753687\ta:0.007053586932675277\ttbe:0.006612032153285359\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.2548093281064604\tof:0.17386428125298564\ta:0.13723413081542213\tthe:0.12795986170285664\tand:0.12395367040785477\tin:0.053901417233796795\tthat:0.0403247752745103\tbe:0.03948044012031861\twith:0.038472095085794675\t:0.01\n",
"so:0.47627061926135633\tand:0.09530224050531108\tof:0.08745815013759436\tSo:0.08067270470633492\ttoo:0.06806096403483484\tvery:0.06490975459169436\tare:0.04125134323251211\tthe:0.0380784389641374\tas:0.03799578456622452\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"the:0.261806086964665\tof:0.23954177962467774\tin:0.1451314784783841\tto:0.08914745990282881\tand:0.0855673914816423\ton:0.05611485964406875\ta:0.04672402434579197\tIn:0.0346006134706718\tby:0.03136630608726964\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"a:0.4727961389753726\tlarge:0.10474303973026487\tthe:0.09065102662738773\tany:0.08352694828492402\tthat:0.0801332111842901\tgreater:0.056181333926226776\tthis:0.039430522527623454\tone:0.03295334968521227\tevery:0.02958442905869821\t:0.01\n",
"a:0.2963546720534838\tis:0.18753650914787293\twas:0.13124791619749726\tthe:0.09732516301797582\tbe:0.07915884678353564\tare:0.07484785446462278\tnot:0.046195818810720865\tand:0.040867021959854484\twere:0.03646619756443644\t:0.01\n",
"of:0.3889763855135423\tin:0.2636268972877133\tIn:0.08922125224368369\tthe:0.0827828126028756\ton:0.06692133159371737\tto:0.04038757082011532\tand:0.02806875524967224\tfrom:0.01752404809586397\twith:0.012490946592816191\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"number:0.19875812164001402\tpoint:0.11371119469696638\tout:0.10274991504583562\tplace:0.10225565262474215\tsort:0.0992283301391096\tkind:0.095881912866821\tright:0.09476699105708426\tmatter:0.09229303600269159\tamount:0.09035484592673539\t:0.01\n",
"the:0.4520050799228119\ta:0.182700787156056\tof:0.12199358368308869\tin:0.06132853939290637\tand:0.04516763563042213\tfor:0.04344151750295578\tThe:0.028581982781950184\tthat:0.02829162850169561\tan:0.026489245428113307\t:0.01\n",
"to:0.6029234748158575\tnot:0.10685677045378247\twill:0.0805053125791318\twould:0.07348435472152394\tand:0.058714604224932194\tmay:0.01928356596757802\tmust:0.017761258017253204\tI:0.01655037912139117\twe:0.013920280098549686\t:0.01\n",
"those:0.2608226100313847\tmen:0.16759680843603608\tman:0.15495063583705182\tand:0.14146373870024206\tone:0.08382751928427092\tperson:0.05112602282308641\tpeople:0.04918140974682689\tall:0.04283535688125879\tpersons:0.03819589825984229\t:0.01\n",
"the:0.6074561403500369\ta:0.13653093717836476\tThe:0.08170009250440528\tand:0.055592161399538216\ttho:0.03653238170051862\tof:0.030461975888081045\tA:0.01901970865063956\ttbe:0.01281710283670948\tthat:0.009889499491706191\t:0.01\n",
"to:0.5393039065409442\tI:0.08890911411858664\tand:0.08663130249191711\twill:0.06968319515022305\tthey:0.06005428518813382\twould:0.04487778846159187\twe:0.03771739515513489\tcan:0.032056690846208984\tnot:0.030766322047259508\t:0.01\n",
"of:0.22702543728963262\tis:0.14706092987508457\twith:0.13718135047949068\thave:0.11106874039136191\tand:0.08952528717888741\tto:0.08612141019387766\tthat:0.07128833241381452\tfor:0.06354072963043625\thad:0.057187782547414426\t:0.01\n",
"and:0.3251515872474513\tare:0.12090845368297991\twas:0.11015658422731882\tis:0.10049634045516499\tthat:0.08447334941022835\tor:0.0750344339002429\tone:0.06131870893035738\tsell:0.05639212384536849\tbe:0.05606841830088787\t:0.01\n",
"the:0.533850641303255\ta:0.29768825898030227\tThe:0.03916626536206799\ttho:0.030789878118985314\tthis:0.029227277396585184\tgreat:0.019497446831542444\tA:0.013356018893499105\tlarge:0.01330552212917767\ttbe:0.013118690984585095\t:0.01\n",
"and:0.7719890163116961\tthat:0.06251536959262127\tto:0.0293693232923823\twhich:0.02786118414998955\tis:0.023296596919889865\tor:0.02123621925459468\tbut:0.018461030777724742\tare:0.01800156808573285\tby:0.017269691615368635\t:0.01\n",
"able:0.14511234966528908\tand:0.13172820859723178\tis:0.1247686614230459\thave:0.11730326646781511\thim:0.11082659939939717\thad:0.0955401572626202\tright:0.09040877079752839\tenough:0.08874364021609925\twilling:0.08556834617097307\t:0.01\n",
"of:0.4121043888104239\tat:0.15271237174765503\tto:0.1109592553703931\tand:0.08207826295560745\tin:0.06161305114297335\tby:0.059894054838892805\ton:0.044523026437002726\tabout:0.03316656745044903\tfor:0.03294902124660268\t:0.01\n",
"at:0.3661948337090336\tfor:0.31152373764035296\tof:0.09089832972894267\tand:0.05030615985288995\tto:0.04039872665890936\tthat:0.036663126356459755\tin:0.035022655514519455\tfrom:0.030765504657470126\tAt:0.028226925881422206\t:0.01\n",
"the:0.6458032117392868\tof:0.13588378593433587\ta:0.039854024571526994\ttho:0.03568885618155862\tand:0.0317740235070897\tno:0.031084070133369997\tThe:0.02814843026770536\ttheir:0.022596426772267583\tsurface:0.019167170892859086\t:0.01\n",
"that:0.36676990832500156\tand:0.2021494109104595\tbut:0.10784744981174711\tas:0.09568602346329859\twhich:0.06159835272923168\tif:0.04782769345076774\twhen:0.039627972801933566\tof:0.03607453689836179\twhere:0.0324186516091986\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.2972326679042343\tof:0.21459539888462645\tand:0.1277647182738476\tMr.:0.11066999498754179\tThe:0.0768578103402973\ta:0.054344220024211604\tthat:0.04131690574045794\tto:0.03449974091285552\t<s>:0.0327185429319274\t:0.01\n",
"the:0.3183183051762072\tof:0.1801669198523678\ta:0.12357808363194667\tand:0.11162715168076925\tto:0.0682544285317933\tan:0.05910347991306476\tby:0.051673676291832026\tbe:0.03981214208192875\this:0.037465812840090186\t:0.01\n",
"the:0.4093233558040992\tof:0.14347176912824763\tand:0.09918323127245089\tthat:0.08389521681892108\tThe:0.07051764743152035\ta:0.058349880834651466\tMr.:0.05600187837864818\tor:0.0372170226949604\tno:0.03203999763650096\t:0.01\n",
"No.:0.29214912243288826\tat:0.21548814964311586\tlot:0.12295161021541427\tblock:0.09400402310185797\t@:0.07692860202618382\tlots:0.0638755447010431\tand:0.04583093461558244\tJune:0.041855423260209496\trange:0.03691659000370484\t:0.01\n",
"and:0.22705933158200184\tthat:0.12222810041050475\tfor:0.10340336970230118\tof:0.10133173198172785\tmake:0.09437298643925861\tas:0.09433959133345796\tin:0.08876305544002096\twith:0.08265884027165848\tbut:0.07584299283906834\t:0.01\n",
"be:0.22390173188831275\twas:0.20663219498911486\thave:0.1168318442344\tbeen:0.10188993462042514\thad:0.07777113678908262\thas:0.0770901026747743\twere:0.0745883452679661\tand:0.06279635405071773\tis:0.04849835548520646\t:0.01\n",
"men:0.16410999899740547\t;:0.12603226027017259\tcity:0.1127521640874096\tin:0.1098901373227222\tand:0.10947695428799892\tout:0.10301335513134943\tup:0.09837631016247823\tStates:0.08418236142198945\thundred:0.08216645831847401\t:0.01\n",
"the:0.3852163572902061\tthat:0.10675452956953042\ta:0.10097618698752871\tsome:0.09491158003603485\tsame:0.09135195148482918\tthis:0.07822328458129345\tof:0.051897390725473384\tany:0.04230579226783924\tshort:0.03836292705726465\t:0.01\n",
"the:0.4644037833440781\ta:0.1490945881517486\tof:0.109895213805632\tno:0.07162101108486577\tto:0.045832080890266996\tand:0.03891201115057069\this:0.03889328640573084\tThe:0.03664695163842622\tabsolute:0.03470107352868064\t:0.01\n",
"the:0.2209685661826231\tof:0.20107314949074165\tand:0.1566887017910166\tMr.:0.13885892122495164\tto:0.07934668394677492\ta:0.057949343527177295\tin:0.052225547841073944\this:0.04665433991147185\tas:0.036234746084169024\t:0.01\n",
"at:0.6793084492568133\tAt:0.137654752124555\tany:0.043451616321297175\tfor:0.03263669588529954\tand:0.023690036414356457\tthe:0.020852418760818697\tof:0.020018746857496023\tsome:0.016766862705133275\tbut:0.015620421674230623\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.18935604166684056\tto:0.17953242091236743\ta:0.14637778243814775\tof:0.1395289866434187\tand:0.11967232053915405\twith:0.06563714893438972\tclean:0.06206947354274106\twas:0.04726445349250358\tso:0.04056137183043713\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"and:0.3378657687553083\tthe:0.14006300572603328\tto:0.1287218799093488\tof:0.10785943150731914\tthat:0.06872072269452849\tbe:0.0546008505935738\tin:0.0527261231555285\tor:0.0525575675256857\twhich:0.046884650132673934\t:0.01\n",
"the:0.695968383571066\ta:0.06544188001451957\tThe:0.05734117152212271\tand:0.05258094126941192\ttho:0.03469296228063304\tof:0.025585067859260943\tsaid:0.02445497960411473\this:0.019123642067766813\ttbe:0.014810971811104268\t:0.01\n",
"the:0.4223328257734688\ta:0.15527329231550713\tand:0.11977496335878836\tof:0.09013420920974317\tin:0.04983621047058699\tto:0.04349782560002844\tThe:0.04279473128550431\tan:0.03569920537214785\ttho:0.030656736614224932\t:0.01\n",
"of:0.3890001617372182\tin:0.1592425263852784\tto:0.14587969844835694\tfrom:0.06072024741782163\tand:0.05282411316023825\tby:0.05092905638548168\tfor:0.04727278060694076\tthat:0.043497647031078876\ton:0.04063376882758527\t:0.01\n",
"the:0.25709054090137656\tof:0.19050409392729878\ta:0.13924494073380525\tto:0.09414454173424001\tand:0.09039948229900271\tat:0.07803834663246123\tin:0.0558748589032849\tfor:0.04365548830845685\this:0.04104770656007366\t:0.01\n",
"of:0.42148508078375224\tto:0.1854415631832834\tthat:0.10053039152128933\tin:0.07990257315191875\tfor:0.04435921378758028\twith:0.04343985468169465\tand:0.04039888474163666\tall:0.03805464104643415\ton:0.036387797102410566\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"of:0.497663801564969\tto:0.09142749470452247\tin:0.08193130517347053\tfor:0.06879714494698795\tthat:0.06645003405143764\tand:0.05826995327760032\twith:0.04873443680431361\tall:0.04469198914790693\tby:0.03203384032879169\t:0.01\n",
"import-:0.28621230002195963\tpleas-:0.179891311551559\tand:0.14828583340624168\tof:0.09668989395343985\tdefend-:0.09231767809277423\tor:0.05974004840654406\tthe:0.046425844842555956\tthat:0.04365168508838835\tif:0.03678540463653729\t:0.01\n",
"and:0.31536826377481597\tthem:0.10939854192589613\tmade:0.10419278911695946\thim:0.09050199027318165\tpay:0.07760343254341166\tdemand:0.07659861312825111\tor:0.07486138817831292\tnecessary:0.07209828037696153\twork:0.06937670068220954\t:0.01\n",
"<s>:0.47877760640326145\tit.:0.11600098123471955\tthem.:0.08148523101060888\thim.:0.07627065172523192\ttime.:0.05919933493181269\tday.:0.04841506082394643\twork.:0.04541349721875763\tcountry.:0.043501455428945485\tout.:0.04093618122271592\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"I:0.2997053708636389\tnot:0.17014975494880383\twe:0.1337511435044756\tyou:0.08696903947908137\tthey:0.08617604569293982\twho:0.06902633107914667\tWe:0.05553596343789606\tto:0.05499233439263926\twould:0.03369401660137821\t:0.01\n",
"the:0.398324095072529\ton:0.14698154065624808\tat:0.1045470074579354\tof:0.09514608509011335\tand:0.06730436488388128\ta:0.05424877288505315\tfrom:0.042531128139634077\tto:0.041486266137443085\tin:0.03943073967716248\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"was:0.21898776741428613\tis:0.16089429356688462\tof:0.1475820838409587\tin:0.13355782359021742\tand:0.08891445242817511\tare:0.08405931384817297\tbeen:0.05568810476377224\tbe:0.054754328586720476\twere:0.04556183196081231\t:0.01\n",
"and:0.18094508512790916\tthat:0.1786048563036492\tas:0.14661261201912992\tof:0.1044285178297408\tto:0.09833838291224427\tfor:0.0862912468699494\tmake:0.07665295326103583\tbut:0.05959992198024801\tif:0.05852642369609343\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.303134032591169\tthat:0.297606976656036\tas:0.12323178679778064\tbut:0.06316432554717032\teven:0.059346434140206114\tBut:0.04121195883246587\tAnd:0.036674087613377315\tor:0.03486657882197133\tand,:0.030763818999823344\t:0.01\n",
"and:0.29476992466725616\tit:0.2523834471303402\tIt:0.11652428472789163\tnow:0.08617884240096571\the:0.060451959444351694\tbe:0.04883836790611324\tor:0.046680061540685484\tthat:0.044204477710903474\tis:0.03996863447149244\t:0.01\n",
"to:0.5817448267439164\tthe:0.07457923992941141\twill:0.06970569385486378\tand:0.058075301896560905\tof:0.052388027237534836\twe:0.043203959711810375\ta:0.03945515330372406\tI:0.037436909787381206\tnot:0.03341088753479695\t:0.01\n",
"to:0.29180415793153586\tand:0.21045365365751517\tof:0.1452599787014739\tthe:0.12575576703428043\tin:0.06574761127577354\t<s>:0.04104981934860873\tnot:0.04093701420182499\tI:0.03567624969745241\tby:0.033315748151535096\t:0.01\n",
"the:0.2072737110511116\tand:0.1838606446794515\ta:0.1411642662085484\twas:0.08670982742090688\tis:0.08044313050218144\tof:0.07945940425876356\tbe:0.07902414462539077\tan:0.07190968630999436\tto:0.06015518494365152\t:0.01\n",
"eight:0.4885670465687767\tsix:0.10105748116742526\tthree:0.08764014070020089\ttwo:0.07721202448489148\tfour:0.07203570276773906\tof:0.05376974264970251\tfive:0.04177270324006542\thundred:0.035902227942267065\tEight:0.03204293047893159\t:0.01\n",
"the:0.4456626343012115\tof:0.2552826518498\tan:0.07585956033159949\tand:0.05548016501715636\tin:0.042959314829722074\tThe:0.0389658501410239\tto:0.02738112978912027\tfor:0.02490249212888839\ttho:0.02350620161147803\t:0.01\n",
"it:0.2714494548861213\tIt:0.2641410715577613\tthere:0.09950080270981661\tthat:0.09833819457803311\tand:0.08095843918832192\twhich:0.07570046071549426\the:0.05194405615668129\tHe:0.024045870580253485\tman:0.023921649627516906\t:0.01\n",
"to:0.16889050230180563\tand:0.15891446437031911\tof:0.15884397483632715\tin:0.13518036410011175\twas:0.09121132328425902\tthe:0.07807638466717513\tis:0.07460290674742219\tbe:0.06880460638737085\tfor:0.05547547330520909\t:0.01\n",
"the:0.6827527985943189\ton:0.06717293226136645\ttho:0.052271186327477175\tof:0.04588646355786461\tin:0.03511630100947564\tThe:0.033459362979941634\tand:0.02624832594638906\ttbe:0.024897020669946767\tthis:0.022195608653219803\t:0.01\n",
"of:0.24656772464929244\tthe:0.21345823037957828\tin:0.16299740296447346\tand:0.08298745813918924\tto:0.07686536558306326\ta:0.07617118979561424\tfor:0.051083127643881704\tthat:0.04274984899508007\tby:0.0371196518498274\t:0.01\n",
"the:0.6775591707975088\tThe:0.08621323586885307\tand:0.06389235903165291\ta:0.050004821112685366\this:0.03328409501976278\ttho:0.03208618137175934\tan:0.016179880720681973\tof:0.015476525732702886\tin:0.015303730344392774\t:0.01\n",
"and:0.21140182009276945\tof:0.12630093078170396\t<s>:0.11816121182694672\ttwo:0.10209128211129447\tten:0.09882153564002126\tthousand:0.09350455230822405\thundred:0.08532543881766838\tfifty:0.07968993203359437\tthree:0.07470329638777727\t:0.01\n",
"and:0.22684169128412182\twas:0.22655997024245278\tis:0.1414460752756438\twere:0.0840280512903544\tare:0.08388486977230154\tbe:0.06172879039521298\tit:0.0572951826349772\tbeen:0.056615673540498325\ton:0.051599695564437116\t:0.01\n",
"I:0.2816118698897348\twe:0.1341322774621447\tthey:0.11859063261388873\twho:0.10618187067871429\tand:0.08269864915785202\tWe:0.0802086706107426\tto:0.0721045902522123\twould:0.05802420796539524\tyou:0.0564472313693155\t:0.01\n",
"the:0.5389043069084107\tThe:0.09762923075792902\tand:0.07144202157711343\tour:0.06291292400682037\this:0.05923466127384128\tof:0.05729302017227941\ttheir:0.046503143177346155\ta:0.02848215035477544\ttho:0.027598541771484086\t:0.01\n",
"to:0.6852095872424641\twill:0.05752447871397687\tand:0.049601779675401365\twe:0.04496315985456515\tnot:0.039001308630989474\tthe:0.03654852599516415\tcan:0.028770744172100512\twould:0.02636811124357371\twho:0.02201230447176456\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"this:0.3536460687230328\tthe:0.20134315625757632\tthat:0.1264116434376306\tfirst:0.08156403079915334\ta:0.04828420042459827\this:0.04808056548865858\ttook:0.04672647842370601\tsame:0.04619958990329872\ton:0.03774426654234545\t:0.01\n",
"of:0.4920337417138927\tin:0.10515312147251046\tthat:0.10377511574682478\tall:0.0757000338668509\tfor:0.06073832494249031\tto:0.05048211862240463\tand:0.03859022223766562\tfrom:0.033280256243229674\ton:0.030247065154131048\t:0.01\n",
"Mr.:0.3620916607607012\tthe:0.36161207041172383\tand:0.0689616971212912\t.:0.058763477568067594\tof:0.03647710265510219\tMrs.:0.03153714112961611\tDr.:0.025194921573713305\tThe:0.024056226043881156\tin:0.0213057027359035\t:0.01\n",
"No.:0.1933586283182993\tand:0.15676749055908437\tthe:0.13393812525374674\tof:0.1264478384532672\tat:0.08881292736526274\t.:0.08094643297346761\ta:0.08008049067163032\tsaid:0.06664873799122828\tto:0.06299932841401341\t:0.01\n",
"be:0.3288459222736692\twas:0.14341301281049781\tbeen:0.1284852121623202\tand:0.10190890450299456\tis:0.08886141073657951\twere:0.06737671873528582\tare:0.0613555227095857\tbeing:0.03546910596280148\thas:0.03428419010626575\t:0.01\n",
"and:0.17169304186977044\torder:0.14482427424410896\tas:0.11981837936464645\thim:0.11236110140145124\tis:0.10360458282229822\tgoing:0.08704028653231835\tthem:0.08481601736134567\table:0.08435601654389725\ttime:0.08148629986016341\t:0.01\n",
"he:0.25202059975552316\tI:0.2442143446769419\twho:0.0996063894427826\thave:0.07312426424647316\tthey:0.07280612238595349\tand:0.06769652624293486\tHe:0.0672136578393273\tshe:0.06162944939631514\thas:0.05168864601374838\t:0.01\n",
"the:0.3852091685420713\tof:0.15029792416713433\tand:0.13361736839571411\ta:0.11891032624485717\tin:0.05055226342026037\tto:0.042450229405257604\tfor:0.03799538051249681\tor:0.03633593244546821\tthat:0.034631406866740044\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.23341235727645962\tand:0.21060693186296947\tof:0.15621602146684543\tto:0.1172085908743635\ta:0.0899513115910068\tfor:0.06268825623242862\tor:0.04194821672382436\tbe:0.03899394914629359\twas:0.03897436482580857\t:0.01\n",
"the:0.38642456388553126\ta:0.15366480611953984\tand:0.1002679214457172\tvery:0.08312859671643338\tso:0.07285503781758104\tThe:0.064613969003164\tis:0.05249573885028277\tthat:0.03867849693505727\tit:0.03787086922669319\t:0.01\n",
"a:0.5378640342482929\tof:0.1642236590911788\tthe:0.06524419732383643\twith:0.05384399760236418\tand:0.041116714971730056\tmake:0.033994772316955184\tA:0.03325630344776478\tas:0.031537118923850235\tin:0.02891920207402738\t:0.01\n",
"of:0.2200441112941377\tin:0.18256830931042983\tto:0.16559664579132666\tand:0.08769927101167979\tthat:0.07693376813602146\ton:0.07330024934782023\tfor:0.07172399241240128\tby:0.06170123606000536\tIn:0.05043241663617765\t:0.01\n",
"and:0.1822878098260988\tis:0.13102666933680399\tin:0.1186274843964265\tare:0.11188658441342779\tof:0.1052099399141285\tto:0.09419717616815035\twas:0.0867213972993371\tfor:0.0853710050020382\tbe:0.07467193364358883\t:0.01\n",
"of:0.314425665506603\tto:0.17818773956325384\tand:0.17433062391543147\tin:0.09593468889848933\twith:0.06369150251391101\tfor:0.04791020851097738\tthat:0.04429508595228765\tby:0.039589557597622636\tall:0.03163492754142366\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"and:0.15256848673310489\tsuch:0.14731153053420695\tfar:0.12073398838609717\tdescribed:0.1143154754974988\twell:0.11153042844563595\tit:0.09638695456056151\tis:0.08935355501075025\tso:0.07908693814044321\tmuch:0.07871264269170118\t:0.01\n",
"a:0.2733888420291987\tthe:0.24905300490089188\tan:0.10334739617001902\tno:0.10296748550971181\tand:0.0784569888740768\tthis:0.050976743775624986\tis:0.05010788328835998\tThe:0.044831564599639384\tany:0.036870090852477305\t:0.01\n",
"of:0.21058297661381772\tthe:0.16664422351882852\ta:0.14687797212817486\tand:0.1389221771909303\tto:0.09551224746406706\tin:0.06939425697701311\tfor:0.06497206504287746\tbe:0.04960860598738935\tor:0.04748547507690166\t:0.01\n",
"of:0.17305733136378593\tas:0.17168325326011386\tis:0.15140740336541259\twith:0.1230368406940137\tin:0.08621364376328541\tby:0.077522436023017\tto:0.07646354134481434\tfor:0.07263063265376786\twas:0.05798491753178924\t:0.01\n",
"state:0.22660505081407464\tnumber:0.12961076376622624\tState:0.12465059569790833\tout:0.11690031111249555\tmatter:0.10335511155368338\tline:0.08658414711881184\tside:0.0756751566947842\tpart:0.06598311509059715\tpeople:0.06063574815141873\t:0.01\n",
"of:0.17390988285144748\tin:0.15817066514257155\tand:0.13110317743527233\tas:0.10855467172057454\tto:0.09976923770764182\twith:0.09688495082595204\tis:0.0848537246117349\tfor:0.06890492844321996\tsuch:0.06784876126158534\t:0.01\n",
"it:0.2953751866201883\tIt:0.22917058036645893\tthere:0.09030319205053913\the:0.07991795998461584\twhich:0.07853646262461578\tThere:0.07470396004987191\tthat:0.055871936189072276\tThis:0.04395664598612676\tHe:0.042164076128511016\t:0.01\n",
"be:0.7770530399236145\twas:0.05817165492530771\tbeen:0.05291790234626574\tand:0.02325092207767711\twere:0.022440987657425974\tis:0.019675619980580275\tare:0.01658972012061428\tbo:0.01229397844787708\tbeing:0.007606174520637276\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.3191673155695424\tthe:0.18933719986691377\tand:0.13016766844388808\tin:0.06865666261761132\ton:0.06074327094858061\tto:0.06015145287825365\tfor:0.05782003662363409\tby:0.052559916660503025\twith:0.05139647639107298\t:0.01\n",
"of:0.25919883803158345\tthe:0.18841275418598943\tand:0.12731149531046468\tto:0.10264461601135579\twas:0.07413436113579477\tin:0.07099931091010063\tbe:0.05839422167739358\t<s>:0.05607769843242761\tfor:0.052826704304890074\t:0.01\n",
"of:0.3899071964526061\tin:0.19009555597020078\tthat:0.09013240421728085\tfor:0.08640923458062776\tto:0.06336771053272987\tIn:0.06086926616959573\tby:0.040585180612967585\tand:0.039639090540744604\ton:0.028994360923246774\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"that:0.3352852244677467\tand:0.15101061572564908\tas:0.1145782961308799\tbut:0.10761844767915738\tif:0.08648243192623262\twhich:0.06211562147927721\twhen:0.061325708927912094\twhat:0.03627597683936699\twhere:0.035307676823778035\t:0.01\n",
"an:0.4008569888627701\tthe:0.19912001994123546\tmost:0.15700038993489535\tand:0.08344493138241263\tmore:0.048071137490574206\tof:0.02732898883303279\tvery:0.027189678725580688\tall:0.023673764646384994\tin:0.02331410018311376\t:0.01\n",
"of:0.29943684904354695\tto:0.14955098914370363\tin:0.09350327446748762\tfor:0.08753648874229963\tand:0.08509473402380469\tby:0.08416402641277104\tthat:0.06823158990818118\twith:0.06584550963917403\ton:0.05663653861903134\t:0.01\n",
"the:0.27617660439321345\tof:0.27100291037847957\tand:0.18581489955540598\ta:0.056035112321138635\tto:0.04298670896045503\tby:0.04278844273608518\tin:0.04220737845993434\this:0.03803149435972486\tThe:0.03495644883556293\t:0.01\n",
"<s>:0.5269112841592032\tit.:0.12245629793474531\tthem.:0.0716656892298435\thim.:0.06678560586390085\ttime.:0.04649761486800046\tcountry.:0.0434122344455541\tliver.:0.04077365787389438\tday.:0.03774937396099978\tlife.:0.03374824166385851\t:0.01\n",
"of:0.1389942446670664\tin:0.13834897730455523\twas:0.13375169383718188\tfor:0.12648654264470166\tto:0.11093770782253108\tis:0.10924902368449645\tas:0.10867439826393262\tand:0.06555447847045365\twith:0.05800293330508086\t:0.01\n",
"went:0.16931134438752454\tgo:0.13153589341868868\tdivided:0.11410829972819028\tcame:0.10537222122818254\tbrought:0.10486312796872113\tput:0.09706870727178447\ttaken:0.09165460686907627\tenter:0.08862346368096592\tcome:0.08746233544686602\t:0.01\n",
"of:0.4435305040342153\tin:0.17705854314440347\tto:0.06889216525096764\tthat:0.06546992878635899\tby:0.05680029915193767\tIn:0.049028049333583894\tfor:0.04802986468747759\tand:0.041749978671101515\tmake:0.03944066693995402\t:0.01\n",
"went:0.1794974806493376\tgo:0.15454708545878776\tcame:0.11151278596248962\tback:0.09777108854160564\tit:0.09728390677389735\tout:0.0959887918454101\tput:0.09227887075263337\tdown:0.08367866714280338\tcome:0.07744132287303515\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.47911636853392614\tand:0.10078480860105794\tof:0.09954079331996062\ta:0.08696531253960743\tin:0.08219915636699002\tthat:0.04998438521116081\ttho:0.032216955252757626\tno:0.029856704288588637\tany:0.02933551588595079\t:0.01\n",
"of:0.23516824231471586\twith:0.19540987511417418\tto:0.1629188698327777\tin:0.15500938562368613\tand:0.07088053005279998\tfor:0.07018251753291256\tby:0.040321025168227005\tIn:0.03151209352243346\tfrom:0.02859746083827298\t:0.01\n",
"the:0.3468633825872501\tand:0.18518224437283504\tof:0.15143750927554478\ta:0.09844640376854244\tto:0.0498406758687513\tor:0.04124777339412543\tin:0.04088644030696767\tthat:0.03999941070038591\t<s>:0.03609615972559739\t:0.01\n",
"the:0.3987997587937434\tand:0.14213458652192476\tof:0.1240253550918833\tThe:0.09637109089116062\tMr.:0.06397572111697562\tthat:0.06377831839668578\ta:0.04501196542652534\this:0.03024759277849259\ttho:0.02565561098260871\t:0.01\n",
"the:0.2973719272365705\ta:0.1587631399935713\tin:0.1535700728143474\tof:0.13108623693304752\tand:0.0936743856452673\tIn:0.04612387123354794\tto:0.038046542965813404\tsome:0.03626454094801011\tby:0.035099282229824384\t:0.01\n",
"and:0.30540310117480274\tof:0.2591732093242181\tto:0.10919905934775048\tthe:0.0950370596211873\tfor:0.07667761757838626\tat:0.04537529692666767\t<s>:0.040610491234808976\tby:0.03299500826395178\tin:0.02552915652822658\t:0.01\n",
"of:0.2636567515728808\tto:0.15113122780848737\tin:0.14799642705162244\tor:0.12337841045226366\tat:0.06630604648303912\tby:0.06599250524183466\tas:0.06500721369969277\tif:0.05377184288715111\tthat:0.052759574803027905\t:0.01\n",
"the:0.5972909068334303\ta:0.15991958132949474\tand:0.05856594746279102\tThe:0.05551275022921211\tto:0.03939234477281326\taverage:0.02696965308532761\ttho:0.02589397622019143\tgreat:0.013489181729809691\tor:0.012965658336929826\t:0.01\n",
"of:0.2794793916457396\tin:0.16229837582368578\tfor:0.14890899182488884\tto:0.128440687749855\twith:0.06539901789760698\tand:0.06208654949607796\tthat:0.049215690688448485\tby:0.0488020889196687\ton:0.04536920595402874\t:0.01\n",
"of:0.4061718721844183\tto:0.12549127481807346\tthat:0.11646835314454528\tby:0.09842653733529988\tand:0.09807313009608123\twith:0.04982855422007516\tfor:0.033121613173140343\tas:0.03243387979934149\tall:0.02998478522902498\t:0.01\n",
"that:0.27430387700083886\tand:0.16403598892792326\twhich:0.11518182488082544\tas:0.1097094349899535\twill:0.0840903770249145\twhen:0.07366135013600313\tif:0.05740715955693758\tto:0.05691007358965826\tshall:0.05469991389294535\t:0.01\n",
"of:0.4141232420194457\tin:0.14760655510293907\tto:0.08971566318200534\tby:0.07266953364523727\tthat:0.07024692219685608\twith:0.06127123587332129\tfor:0.053160640547402147\tand:0.05219722074512008\tIn:0.02900898668767309\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"not:0.4688577191558918\tand:0.189240189789711\tas:0.09247554589975535\thave:0.05285476885624987\thas:0.045904082809992225\tis:0.045739466816245786\tare:0.039708364535284646\thad:0.0280160227483158\tnever:0.027203839388553572\t:0.01\n",
"<s>:0.3407474958042286\t.:0.1439778885135098\tand:0.12975959489343503\tit.:0.08543738615559952\tthem.:0.06773340173347395\tof:0.06043838385297755\thim.:0.056937998621923135\tboy.:0.05688364179395075\tyear.:0.04808420863090167\t:0.01\n",
"the:0.47166512199393806\tin:0.13324799048530206\tfrom:0.12939443012213353\tand:0.07384914052580369\tof:0.07368960993696919\tIn:0.04380522638468848\ttho:0.024111270339283758\tto:0.020562922968634937\tthence:0.019674287243246297\t:0.01\n",
"the:0.5153632336780143\tand:0.10629592797875415\tan:0.07709952514778881\tor:0.05647435682986999\tthis:0.054695063343332156\ta:0.05396113007817751\tThe:0.04661243553967537\tall:0.041321954265378005\tother:0.03817637313900981\t:0.01\n",
"the:0.3181687892548084\ta:0.22920285451554498\tsome:0.08361446222034832\tthis:0.07688136437706945\tthat:0.07004609913994633\tshort:0.06415895808138343\tsame:0.05876319174808443\tfirst:0.049124330818248074\tany:0.040039949844566596\t:0.01\n",
"the:0.3331925550671004\tof:0.2332480466534416\tand:0.12395923476969917\ta:0.07928370184843045\tMr.:0.05736952256192119\tto:0.04770976412706071\tThe:0.04417668138726264\tin:0.04189710404630304\tthat:0.029163389538780702\t:0.01\n",
"it:0.1912037633768029\tand:0.14181893477537585\tthey:0.12842954853076882\twhich:0.10681691350284597\the:0.10149412192147439\tIt:0.09453437728173905\tthat:0.08217827055419531\tyou:0.07728264721486483\tI:0.06624142284193282\t:0.01\n",
"the:0.3101469464245839\tand:0.18139257296176556\tof:0.1189750832204775\tin:0.09177950457907187\tto:0.06476035881673946\tfor:0.06265243913967722\tthat:0.06163497939193545\tor:0.05030597233991142\tbe-:0.04835214312583766\t:0.01\n",
"was:0.1868501524911039\tand:0.18377752844597528\tis:0.15993371499914383\tare:0.12640479524443496\tbe:0.09074403913107874\tbeen:0.07703178011825772\twere:0.06222218080497927\tnot:0.06099770740345812\tor:0.042038101361568186\t:0.01\n",
"a:0.21530394407101\tand:0.17058216084428857\tthe:0.1474334676859905\tin:0.13273913267794032\tof:0.09318771499138591\tto:0.07375311665355669\twith:0.05873090863586543\tfrom:0.04970311516112206\tfor:0.048566439278840266\t:0.01\n",
"that:0.3109907580348074\tand:0.2123993260573927\twhich:0.10309447246561428\tas:0.09255059195916751\tbut:0.07856323752818853\tif:0.06691816772391593\tIf:0.04474375656297877\twhen:0.044717186182024755\twhat:0.03602250348591003\t:0.01\n",
"the:0.39403591422557377\ta:0.178255532989571\tand:0.11663522046834839\tof:0.11381236231991249\tin:0.044255175047889665\this:0.041022146258839466\tis:0.040987380095915474\tare:0.03145977503545613\ttheir:0.02953649355849354\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"that:0.38314639234260467\twhen:0.13078830405217987\tand:0.10494735551057087\twhich:0.08901523310559767\tas:0.07679054931488127\tif:0.05540889644007941\twhere:0.05373268422396405\tbut:0.05232720105559394\tsaid:0.0438433839545282\t:0.01\n",
"and:0.20885061360109825\tlaid:0.11837240659273295\tcame:0.10692668496277574\tbreak:0.10058019856379745\twent:0.09487589062476146\tcut:0.09467593185071363\tlay:0.0931427411506152\tit:0.0871188258407089\tway:0.08545670681279649\t:0.01\n",
"from:0.2439568612486867\tand:0.169831616483614\tor:0.1156269960669345\tof:0.10038234060483639\twrit-:0.08868278699026945\tthan:0.08164942037256163\tto:0.06954208021113506\tin:0.06158597506373904\tfor:0.05874192295822317\t:0.01\n",
"it:0.21175262889566568\the:0.19014680904145959\tIt:0.18982028099853918\tI:0.10966414085604292\tthere:0.07299980840495356\tHe:0.06663726083701502\tand:0.05018674089608051\tshe:0.049644215904146693\twhich:0.049148114166096796\t:0.01\n",
"No.:0.1933586283182993\tand:0.15676749055908437\tthe:0.13393812525374674\tof:0.1264478384532672\tat:0.08881292736526274\t.:0.08094643297346761\ta:0.08008049067163032\tsaid:0.06664873799122828\tto:0.06299932841401341\t:0.01\n",
"of:0.45286509993282864\tto:0.12936772118611853\tby:0.10657977973622622\tin:0.09104379595603694\tthat:0.06632290700634372\tand:0.045629181529780245\tfor:0.037115230855319155\twith:0.03184667995142132\tfrom:0.029229603845925253\t:0.01\n",
"and:0.32520145024625263\tbut:0.16813082620689765\tthat:0.1543805772522482\tas:0.08079247371603898\twhen:0.06945455259245453\twhich:0.05358985322342198\tif:0.04845131330154543\tBut:0.045100211817430805\t<s>:0.0448987416437097\t:0.01\n",
"the:0.39290480466516864\ta:0.2361069625769116\this:0.11467873110901684\tto:0.0786453609423599\ttheir:0.036527318554339716\tand:0.035098466663570506\ther:0.03292424078169781\tthis:0.03291713054011832\tits:0.030196984166816546\t:0.01\n",
"the:0.5282104024380401\ta:0.1548758249265963\tand:0.05267054457059807\this:0.04956413951571342\tThe:0.043608625615050335\tour:0.04347158007921086\ttheir:0.0413224482688138\tof:0.039100007273391295\tany:0.03717642731258594\t:0.01\n",
"the:0.4017098405391221\ta:0.22308489636130002\tof:0.09359045348520063\tand:0.08572816836758396\tin:0.0536545704771204\ttheir:0.034816648713441804\tis:0.034593181980895144\tits:0.031973580706929995\tThe:0.030848659368405994\t:0.01\n",
"and:0.2011568557429247\tthe:0.18744675197303373\tof:0.1731616281387204\tto:0.15124138919800478\tin:0.0835458167936189\tbe:0.06455039164324629\twas:0.044267193450221176\ta:0.04325789550780316\ton:0.04137207755242694\t:0.01\n",
"of:0.22362295419437203\tthe:0.18158756637795948\tto:0.14608641374019174\tat:0.1307230751676709\tand:0.0960571604054783\tin:0.06009339973294786\tby:0.05211063685156121\twas:0.05116314938828525\ton:0.04855564414153307\t:0.01\n",
"and:0.3242594410480908\tfact:0.15837648616867342\tis:0.13964838958627177\tso:0.08491370591210645\twas:0.06483662652479522\tbelieve:0.059533851410187355\tof:0.05801687718994125\tsay:0.052950810581172555\tsaid:0.04746381157876119\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"be:0.3739248140238352\tand:0.2227056004357695\twas:0.07569045514518989\tbeen:0.06480514468150968\the:0.06069988082150914\thave:0.057023913483939905\tare:0.047466178806796794\thad:0.04452285656157701\tis:0.043161156039872764\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"<s>:0.5326420632855325\tit.:0.09270081495704723\tof:0.06518779013576816\t.:0.05793345505994498\tthem.:0.05776309194811555\tin:0.04992238211322686\ttime.:0.047339562945395604\tday.:0.047145853722809265\tcountry.:0.03936498583215988\t:0.01\n",
"get:0.1466179279908691\twas:0.13816166858847523\tand:0.13411725524820045\thim:0.10611862598008347\tit:0.10231181039389517\tthem:0.09727726821367766\tare:0.09515897845536371\tgo:0.08768078124059613\tcome:0.08255568388883913\t:0.01\n",
"in:0.1866879523949948\tto:0.18589197216158515\tfor:0.15435103442564263\tof:0.1489844164504124\tand:0.0861483090960881\tthat:0.0682985575212463\twith:0.060457573845622184\tas:0.05067561870639264\tat:0.048504565398015675\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"I:0.31400247398967174\tand:0.18751487211335996\the:0.13956054237853005\tHe:0.0945599540898442\tshe:0.06550881303219697\thad:0.05995876717770556\thave:0.053473785340181476\twas:0.03814304623837234\t1:0.037277745640137784\t:0.01\n",
"the:0.4475342301106122\tand:0.15501785922981828\tof:0.11246895138119495\ta:0.10431720578756748\tto:0.041039693822787646\this:0.037627712550841415\ttheir:0.032576378966473314\ttho:0.02984235385409394\twith:0.02957561429661076\t:0.01\n",
"and:0.18929310138123437\tcovered:0.16935884120870554\tfilled:0.14496098815620134\ttogether:0.1149389467597416\tcharged:0.08927804784918368\tit:0.07994316895661391\tup:0.07366667277508843\thim:0.06832445206581947\tthem:0.06023578084741164\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.38121208956051794\ta:0.16037526857802756\tto:0.12864686989319762\tand:0.0981673253818992\tof:0.07699567693676995\tThe:0.04843629063131208\tin:0.04269713816676678\this:0.027264819624349027\twill:0.02620452122715989\t:0.01\n",
"of:0.33672424568280146\tin:0.14678802062706986\tto:0.11364573995622267\tfor:0.08450211588257416\twith:0.07114087352589918\tany:0.06981249612903115\tthat:0.062216617957506125\tand:0.05729647644438153\tby:0.04787341379451395\t:0.01\n",
"it:0.26864434974930373\tIt:0.19660240576767254\twhich:0.1320695580054355\tthat:0.08946995431699437\tand:0.08477480518149304\tthere:0.06929056079654618\the:0.05649548061494741\tThere:0.05576551841539908\twho:0.036887367152208236\t:0.01\n",
"the:0.7405386648505318\tThe:0.07696582161231907\tfeet:0.04004467098426235\tand:0.035470696788827916\ttho:0.029860668599961896\tas:0.021093507992011592\tbounded:0.017500109514995983\tsaid:0.015032463825535617\ttbe:0.013493395831553732\t:0.01\n",
"he:0.22480229380192837\tit:0.17485728277577847\tthey:0.12397626271710332\tI:0.10874733808034656\tthat:0.0944115016573233\tIt:0.0934061924792438\twe:0.05704965258936926\twhich:0.05692367062721336\tand:0.055825805271693715\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"be:0.217118905994726\the:0.18639953438945733\tI:0.18403529071928962\twas:0.10480656841771727\tare:0.06986086899855001\tis:0.060476446952952234\tand:0.05717041406345191\twere:0.05606228818978584\thave:0.054069682274069664\t:0.01\n",
"in:0.5742701094963092\tIn:0.1884743944231919\tof:0.11047696810755414\tto:0.04304260370463655\tfrom:0.01943546695368124\tfor:0.017731529372511292\tby:0.012822187619368163\tthat:0.012088642096378511\tiu:0.011658098226368952\t:0.01\n",
"is:0.3376843817075452\tand:0.17690967621502085\twas:0.155732637274874\tare:0.14068662288976458\tbe:0.04522576586176346\twere:0.04126854234466042\tIs:0.03904998387031715\tnot:0.028726010852354093\tI:0.024716378983700424\t:0.01\n",
"<s>:0.44105557104011195\tand:0.12098506677207574\tit.:0.11229537969270889\tthem.:0.07872475712049697\thim.:0.07704901427237312\t?:0.043854047304809816\t:0.04070825339761538\tcountry.:0.039287617627415845\tyears.:0.03604029277239232\t:0.01\n",
"to:0.5557710995833393\tI:0.08600115345656742\tnot:0.07933061155111117\tand:0.07541638381887009\tcan:0.06275561985832923\twill:0.05927238097630478\twe:0.026044480483078513\twould:0.023072239722670546\tcould:0.022336030549728908\t:0.01\n",
"the:0.22013740874126994\this:0.2167187672230167\ttheir:0.21044281389398634\ta:0.09498462902209474\tour:0.06416720050944683\tmy:0.0570826202829001\tits:0.055262668575390014\ther:0.045650293982039965\tof:0.02555359776985549\t:0.01\n",
"of:0.3088714385970811\tfor:0.14308085889885952\tto:0.13199461350833705\tin:0.10886798003644833\twith:0.09681519586251057\ton:0.06159520873640296\tabout:0.050460428485029206\tupon:0.046812249530289146\tby:0.04150202634504206\t:0.01\n",
"of:0.3505949369453092\tthe:0.21653399777425866\twith:0.09889027074417558\tin:0.08779183757653117\tto:0.058168793884504494\tfor:0.05585206736100905\ta:0.05298558997050593\tand:0.04392018866128133\tby:0.02526231708242469\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"in:0.3435281418700772\tthe:0.22328966162225716\tof:0.1236542575856465\tand:0.11329500217583427\tIn:0.060393788819043066\tby:0.04638825202063074\twith:0.02943268963346233\ta:0.02539145657621773\tfor:0.024626749696830774\t:0.01\n",
"of:0.294666428155827\tthe:0.2137604071240242\tin:0.1100794537592959\tto:0.09465705707677612\tat:0.08462268773428626\tand:0.07156295470871141\ta:0.04490704149948273\tby:0.03884624367114581\tfrom:0.03689772627045055\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"the:0.2702497323995954\ttoo:0.14733651704384326\ta:0.1402333967751836\this:0.10027653548829059\tany:0.08036480599372553\ttheir:0.06816656861551498\tof:0.06369171585513156\tbe:0.06180710982145339\tand:0.057873618007261624\t:0.01\n",
"a:0.30373338514371967\tthe:0.27318394032502785\tof:0.1396176266166184\tand:0.08447124880049493\tThe:0.048821479108017644\tMr.:0.03984942405931236\tby:0.03729172250139764\tan:0.032906736530052834\tto:0.030124436915358644\t:0.01\n",
"it:0.35505309117815476\tIt:0.2256851548211504\twhich:0.09186997500389063\the:0.07427712557156563\tand:0.06860291172058657\tthat:0.06252393229388647\tthere:0.045646756155683414\twho:0.03881624702318383\tThis:0.027524806231898347\t:0.01\n",
"those:0.46112278366727133\tmen:0.15271263087202785\tThose:0.07342833148307996\tpeople:0.06385501573476286\tman:0.05986047203846158\tone:0.05625536917139809\tand:0.05305228165944131\twomen:0.0369782972068449\tpersons:0.032734818166712164\t:0.01\n",
"they:0.22798302023026587\twho:0.16027185150635975\twhich:0.12075617739444383\twe:0.10428659505719451\tthere:0.09339196445267794\tyou:0.07633570634561965\tand:0.07259776617421237\tthat:0.06829302988942397\tThey:0.06608388894980216\t:0.01\n",
"the:0.18022459298833324\tand:0.1692210974597302\tof:0.15317384757317404\tin:0.142323933277085\tto:0.10787380132769393\tfor:0.08429431185773617\tor:0.059329075739320086\tthat:0.051629876388277665\twhich:0.0419294633886496\t:0.01\n",
"is:0.3574591313972601\tare:0.25460400451563053\tand:0.10590439336124803\tIs:0.0691299301774009\twas:0.05983012055178282\tit:0.042289081891148016\tnot:0.03539486957404786\tbut:0.03432045469530236\tam:0.031068013836179402\t:0.01\n",
"of:0.21553561003275554\tas:0.14029447289942157\tto:0.13073019296171015\tin:0.12764014142273009\tand:0.09051941184536484\twith:0.08538569829417555\tthat:0.07885592353803066\tby:0.06216158095837924\tsuch:0.05887696804743249\t:0.01\n",
"of:0.2534786130879051\tand:0.23086447024210013\tbut:0.10373765171285387\tknow:0.08027570491198117\tto:0.07681170348932287\tBut:0.06865620483011295\tfor:0.06087560033719698\tAnd:0.060728332524524975\tthat:0.05457171886400201\t:0.01\n",
"the:0.38831789826169594\tand:0.139809542895191\ta:0.12501391806892445\tof:0.10314411956739562\tin:0.08268039511025205\tto:0.03956399531970184\tan:0.039219964315958894\this:0.03639415350602168\twas:0.03585601295485838\t:0.01\n",
"went:0.1794974806493376\tgo:0.15454708545878776\tcame:0.11151278596248962\tback:0.09777108854160564\tit:0.09728390677389735\tout:0.0959887918454101\tput:0.09227887075263337\tdown:0.08367866714280338\tcome:0.07744132287303515\t:0.01\n",
"nothing:0.22999994403267135\t;:0.21058739988529876\tit,:0.10183340037460255\tanything:0.09037043480988034\tthem,:0.07785156182449439\ttime,:0.07737348964271352\tand:0.07361031441047886\thim,:0.06990752400737785\tis:0.05846593101248231\t:0.01\n",
"and:0.3060416402511869\twas:0.17519164165947718\tis:0.13718138753197637\tbe:0.12739828520050123\tare:0.07257638677277552\tit:0.04467185492522868\twere:0.04235597729977615\tbut:0.042343921690408445\tnot:0.042238904668669496\t:0.01\n",
"the:0.37190023267326017\ta:0.20471738116330923\tand:0.09204566273361835\tan:0.0919378946422381\tof:0.06625807473219751\tthat:0.04392737627018058\tin:0.042255906919283354\tto:0.04099417475174147\tThe:0.035963296114171095\t:0.01\n",
"of:0.3471254604275092\tin:0.16797031533055737\tfor:0.13851676992809409\tto:0.08807251420763126\tthat:0.06603540238542202\tat:0.05793667415085777\tIn:0.05044058809051784\tand:0.04775029590803554\tall:0.02615197957137481\t:0.01\n",
"of:0.4442470457568019\tand:0.10093776245298881\tto:0.09854854790813723\tthat:0.09772223555800282\tfor:0.07531354723542741\tin:0.054239526418130846\tby:0.053096567688494876\twith:0.03383808663633398\tall:0.03205668034568196\t:0.01\n",
"of:0.27313704154791973\tin:0.14190147331961336\tand:0.10776820482929642\tto:0.10654870133911326\tby:0.08552750841419972\twith:0.07528875783973459\tat:0.07289593156604483\tfrom:0.07246544114557583\tthat:0.054466939998502245\t:0.01\n",
"of:0.4476414548458987\tin:0.13070748923050046\tthat:0.08740894385723581\tto:0.07662225320510424\ton:0.06376204471058321\tfrom:0.048758154713483506\tby:0.04664786556898953\tIn:0.04545845854373439\tand:0.04299333532447021\t:0.01\n",
"of:0.3582541495959591\tthe:0.28994841854852127\tand:0.1301032474231809\tin:0.07784906754443188\tby:0.035821567961589515\ta:0.029085910873762208\tfrom:0.026762195601811735\twith:0.022455594246924126\t&:0.019719848203819324\t:0.01\n",
"the:0.35861451900589214\tMr.:0.1291559629555713\tof:0.1199072506314825\tThe:0.10475232618943306\tand:0.0967371407604443\tthat:0.07632406646832235\ta:0.046895937127093126\this:0.030747167493934736\tMrs.:0.026865629367826563\t:0.01\n",
"an:0.42472231522185433\tof:0.17669134481134327\tin:0.09056440153824208\tthe:0.06723054412790504\tis:0.06141908366078413\tand:0.05350481234771232\tmost:0.04895960715346131\twith:0.03519861069791611\tare:0.031709280440781425\t:0.01\n",
"one:0.2314366094552236\tout:0.18864256223575832\tpart:0.14694585910604258\tsome:0.12367015336334346\tthat:0.07023736669019377\tall:0.06683280619515869\tmuch:0.059800937165185496\tand:0.05192741029140557\ttime:0.050506295497688515\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.4619592159085895\tthis:0.08837198148943043\tof:0.07428924076448973\tour:0.0693174256707118\tthat:0.06849464789372477\ttheir:0.06367425078493119\tand:0.06051951441831318\this:0.057473976818985646\tor:0.04589974625082377\t:0.01\n",
"of:0.3325095250128426\tthe:0.21624872522542357\tin:0.14749715712233827\tby:0.14070842207454662\tto:0.05446660296032549\tIn:0.026912586324946135\twhich:0.026218829494769322\ton:0.025360835955191986\tthat:0.020077315829616103\t:0.01\n",
"be:0.2890315124833315\twas:0.2515337711651928\tbeen:0.16678238920714533\twere:0.08361270619119031\tis:0.07704624225859023\tare:0.046164442220794445\tbeing:0.03315682788147072\tand:0.022922749002701436\tbo:0.01974935958958331\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.4637766094010889\tof:0.1720053691457355\tand:0.08267332403359252\ttheir:0.053233717135349086\tAmerican:0.05239342917400926\tThe:0.04385488567029171\tfor:0.04271606714208156\this:0.04162681331145865\tother:0.03771978498639286\t:0.01\n",
"was:0.2636737132604185\tbe:0.20718234182870188\tbeen:0.11778073188860635\twere:0.09885171117451035\tis:0.09006696160581718\tand:0.05823735240999822\thave:0.0580124413002942\tare:0.051447706499748676\thad:0.04474704003190466\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.40748578338114105\ta:0.15961544019789237\tof:0.1051881645221869\tand:0.09988936785929728\tto:0.06234148091142628\tThe:0.04755656276417259\tin:0.041739985670056046\ton:0.03654486787306112\ttho:0.029638346820766517\t:0.01\n",
"of:0.5751590850514232\tin:0.11001726046020475\tat:0.0683116749074602\tby:0.049405117464160736\ton:0.041884164249828715\tfor:0.04156930196816541\tfrom:0.035991937454112326\tthe:0.0355544058429558\tand:0.03210705260168887\t:0.01\n",
"in:0.24473212567012673\tof:0.22094131389565994\tto:0.17240268704730569\tand:0.08714906094153861\tfor:0.07252748225949551\tIn:0.05548096007571599\tthat:0.05538946452533949\twith:0.04429541017936014\ton:0.03708149540545783\t:0.01\n",
"the:0.7719286545619316\tThe:0.06801317698530951\ttho:0.038778610472768954\ttake:0.027760551504960786\tand:0.02077360629408422\tin:0.01935565650157641\tno:0.019035141982822697\ta:0.012486246910711075\tan:0.011868354785834572\t:0.01\n",
"of:0.25693776819969066\tand:0.2094955387582391\tthe:0.11337438006137046\ta:0.09739886352866003\tbe:0.07217382976012138\tto:0.06455561601272865\tfor:0.06383901251326714\twas:0.056179827358718994\tis:0.056045163807203736\t:0.01\n",
"the:0.6258726522664784\ta:0.13461756997063534\tand:0.07968616292894322\tThe:0.034481446015133706\tthis:0.031150419685504766\tto:0.0286945160600366\ttho:0.027988573922704704\tof:0.014598649927972272\tin:0.012910009222591001\t:0.01\n",
"and:0.22660218331016788\twas:0.16216519964414217\tof:0.1543369517358993\tis:0.12506182885118391\tnothing:0.07223372324353544\tbring:0.06656749485518733\tanything:0.06412058257278813\tfor:0.06252613832323474\ttalk:0.05638589746386113\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.38489692704492023\tnot:0.25309895436503543\tis:0.08049586543360475\tThe:0.06666606115667226\twas:0.06157699334400126\tand:0.05014147968100144\tare:0.0355566998920736\tof:0.03272328629210211\ttho:0.02484373279058889\t:0.01\n",
"a:0.27978548166093964\tthe:0.2659919744358447\tfor:0.10714567378631298\tof:0.09401216895388162\tat:0.08334686559471018\tin:0.05301578116328584\tand:0.044031436882433196\tto:0.03771218877289838\tan:0.02495842874969349\t:0.01\n",
"and:0.2096297155861575\twas:0.15201401237831563\tbe:0.13720913671539012\tis:0.13077951450866274\tare:0.10360936316411633\tthat:0.07186814696636759\twere:0.06422451240194267\tbeen:0.0613507889192028\tnow:0.05931480935984459\t:0.01\n",
"June:0.22104321180896666\tMay:0.15379420168633787\tlot:0.1476645928341527\tApril:0.10061574667812988\tJuly:0.09254960444275101\tNo.:0.0853408787735326\tblock:0.0698036519963578\tMarch:0.06524573752646246\tdegrees:0.053942374253308945\t:0.01\n",
"the:0.4163816034420401\tthis:0.16145720170949587\ta:0.14422630604426306\tand:0.08291548388040809\tto:0.06661788695831267\tof:0.04948896080648442\tin:0.02566612534370919\tthat:0.023459847312739885\ttho:0.019786584502546792\t:0.01\n",
"the:0.23535211658783367\tand:0.184410827637978\tof:0.14827791658709305\tto:0.1316388961335419\ta:0.09207523093102993\tat:0.06274845552226836\tin:0.05545902915066156\tfor:0.042674663661472906\twith:0.03736286378812061\t:0.01\n",
"the:0.564158564875447\ta:0.1657282558529933\tthis:0.06313610677515098\ttho:0.041727532327802186\tof:0.03838658305501099\tand:0.03453214859682832\tThe:0.03337526367651976\tfurther:0.024536855069797477\tto:0.024418689770449902\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
";:0.22090971489875222\tnothing:0.13508905867316987\thim,:0.12034140628641939\tit,:0.1174467613330467\tis:0.09832858975925855\ttime,:0.09794524362026058\t,:0.07436224406698602\tthem,:0.06570893480216526\tyears,:0.059868046559941455\t:0.01\n",
"to:0.717597537845275\twill:0.06178072044969895\tthey:0.036323796097871563\tand:0.03339926409158079\twould:0.030995009464652966\tI:0.030430414682763755\tcan:0.03022821095480327\twe:0.02755573438200772\tnot:0.021689312031346025\t:0.01\n",
"of:0.19672626815229033\tto:0.17995568406480408\ta:0.11830846527681116\tand:0.11286120760037657\tin:0.09332756853241464\t-:0.07538792844467679\twith:0.07426292663995744\tthe:0.07286978517181965\tby:0.06630016611684934\t:0.01\n",
"to:0.30102863785986816\tand:0.20724594162951251\tof:0.11561430117577177\tthe:0.08949931874126583\tin:0.06780950692820926\tis:0.05678672479774325\tI:0.05395775487226535\tfor:0.04939417435915029\tnot:0.048663639636213486\t:0.01\n",
"<s>:0.19370573250836023\twas:0.1846160430653249\tand:0.17445700558366514\tbe:0.09160528748611196\tis:0.0775693532612169\twere:0.07571791958485419\tare:0.06533047471872337\tof:0.06410594964815133\tthat:0.062892234143592\t:0.01\n",
"the:0.2957934211703416\tand:0.17829974806025148\ta:0.11120121411009788\tof:0.10943864584774211\tto:0.07601497745217399\tin:0.07049417060565859\tthat:0.06066720624848918\twhich:0.046113178251195444\tI:0.04197743825404977\t:0.01\n",
"the:0.345085014255672\tof:0.16266816293145903\tand:0.13629283892285127\ta:0.1264512294903909\tto:0.05573611797138497\tin:0.052345230850228984\tor:0.03916420232231349\tbe:0.036143178827406176\twas:0.036114024428292986\t:0.01\n",
"and:0.2769765094247291\tis:0.1334367253538608\tfact:0.12049192203067935\tof:0.10838690988686077\tso:0.0813682234952099\tsaid:0.07823430477057064\twas:0.06646959704616157\tin:0.06621133413192891\tto:0.05842447385999898\t:0.01\n",
"the:0.5043040552563905\ta:0.269028803782072\tand:0.060838266226894096\tof:0.03292949735055351\tA:0.027600457806351508\ttho:0.026033104771473595\tto:0.025931389553503593\tthis:0.023169431752089853\tone:0.020164993500671382\t:0.01\n",
"the:0.5462903785468983\tthis:0.20578600326088423\ta:0.05329968906748723\tthat:0.03834926190790171\ttho:0.03827129208587691\tsaid:0.03523459725627685\tThe:0.027634950556194846\tand:0.025465849935242865\tour:0.01966797738323707\t:0.01\n",
"that:0.23288747505779359\t<s>:0.15050375950803124\tand:0.1404429331730941\tas:0.13578285782450047\tbut:0.0986123342983127\tit.:0.08561888994175046\twhich:0.06481575728039769\tof:0.04355217770296172\tthem.:0.037783815213158024\t:0.01\n",
"the:0.24343084569487752\tand:0.16178693456557883\tof:0.13887751795222011\tto:0.1244772705341572\ta:0.11336884681343598\tbe:0.05818394061425249\tis:0.050746831112712124\tin:0.049860590702662695\twas:0.049267222010103036\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"well:0.21321257425074594\tknown:0.1833023137221186\tsoon:0.17017982311130794\tfar:0.13451377472303216\tand:0.1048509904369157\tlong:0.06163044115944836\tsuch:0.04848962176196867\tjust:0.03999506790086283\tmuch:0.03382539293359975\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"<s>:0.5005106735791184\tit.:0.09062148122954745\tthem.:0.0763214517032343\tthat:0.06972594576121888\tof:0.06561412537368248\tand:0.05653818277026903\tcountry.:0.04716401774653375\t:0.04219361411544785\thim.:0.0413105077209478\t:0.01\n",
"be:0.27174475175079416\thad:0.16087082851473508\tbeen:0.1269992362981192\twas:0.11704649829384148\thave:0.10162157972969857\thas:0.08218571632145412\twere:0.06003100915069853\tand:0.03663561449660126\tis:0.03286476544405757\t:0.01\n",
"the:0.36378624988166575\ta:0.21333735890955294\tof:0.11938361029879672\tand:0.0907944497117768\tan:0.05400797676785257\tin:0.049892453393319734\tto:0.03892322299178406\tThe:0.032800630104672\tfor:0.02707404794057939\t:0.01\n",
"virtue:0.2531118323784269\tone:0.13783951179045353\tout:0.13781151302830072\tpart:0.095641585586563\tpursuance:0.08911439945977416\tresult:0.07412670930619975\tall:0.07128278395402765\ttion:0.06738851371312381\tmeans:0.06368315078313051\t:0.01\n",
"the:0.43432419690266333\tof:0.19576822582717138\tan:0.12049794931559969\tand:0.07001113101641551\tin:0.04349757747113631\tThe:0.04215787302425728\tby:0.033429278703822334\ttho:0.0274468027286432\twith:0.022866965010290816\t:0.01\n",
"and:0.24532520474320918\tthere:0.16610954869774408\tto:0.09978975004131933\tof:0.09355438019991526\the:0.0837805416697179\tthe:0.0800428505777564\tor:0.0773676272776924\tI:0.07606268748147998\tis:0.06796740931116547\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.2934620670631732\tof:0.2141593332667423\tand:0.15945002087278187\tto:0.06780370218056998\tthat:0.06419988100345989\tThe:0.06058387775262816\tin:0.0583461619364558\twhich:0.03917179644278349\tor:0.03282315948140535\t:0.01\n",
"is:0.19233156028604595\tbe:0.1854202262511825\tof:0.14203865239185298\twas:0.12496261907610492\tand:0.09620578661819473\tto:0.0733901455354962\twith:0.06381489541656042\tin:0.06253345775820213\ton:0.04930265666636008\t:0.01\n",
"as:0.635645302868923\tso:0.1315698162344852\tand:0.06999578326294506\tof:0.04173757410688585\tthe:0.028953787587317956\tis:0.028778043763741493\tvery:0.022128089028091862\ta:0.01646784309055135\tbe:0.014723760057058284\t:0.01\n",
"the:0.39473079875481726\ta:0.3653019769107731\tthis:0.049766885315818916\tThe:0.036840021498956495\tof:0.03676236912817017\tother:0.03463821252317345\tand:0.02654959174477046\tany:0.025939864178417805\ttho:0.019470279945102354\t:0.01\n",
"the:0.29854557202464377\tand:0.1745190950987386\tof:0.15775938223967384\tthat:0.12083926351875786\tin:0.06834174670401257\tThe:0.04624847050183587\twhich:0.04414875418318484\ta:0.04010688611046935\tMr.:0.039490829618683276\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"the:0.3218467846617875\tof:0.1828529761416146\tand:0.1232207420947663\ta:0.09674086771067118\tto:0.08641160396374103\tin:0.0783857202791078\tbe:0.0377967086794569\tfor:0.032157504111148996\twas:0.030587092357705764\t:0.01\n",
"that:0.36385243568775927\tand:0.15369924519388334\twhich:0.12768578918824794\twhen:0.08607683089641557\tas:0.08491224547045492\tif:0.06144565617336053\tbut:0.039229712329972036\twhere:0.038653753038947\twhat:0.034444332020959346\t:0.01\n",
"the:0.3964158310720498\tand:0.14386851798936642\tto:0.13697737447523986\ta:0.07574386805539973\tof:0.07108221834166827\tas:0.05830429316144708\tThe:0.04417946768269073\twill:0.03857371958645976\ttho:0.024854709635678235\t:0.01\n",
"the:0.35208098744397665\tthis:0.12295541275176579\ttheir:0.12192228872907748\tof:0.09555719392444655\tour:0.08656457186438786\tan:0.0612659667977159\tits:0.061190922435185514\this:0.047913419529125804\tother:0.040549236524318556\t:0.01\n",
"of:0.26146019844263535\tin:0.19472316275032267\ta:0.11147293089154181\tto:0.10413144658347188\tthe:0.1035541246787202\tand:0.07407237710754527\tfor:0.05647649760657315\tIn:0.04817101004238415\twith:0.03593825189680531\t:0.01\n",
"the:0.8008687468308721\tthis:0.07453931813598909\ttho:0.02577430758105306\timmediate:0.0247881294701915\ta:0.022153700773000575\tand:0.01708638004793034\tThe:0.011584781744342246\ttbe:0.007980998629553072\tJudicial:0.005223636787067951\t:0.01\n",
"of:0.29358947036125244\tin:0.18028893126427095\tto:0.1068098024950793\twith:0.09056444700024778\ton:0.08044527243799857\tby:0.07461474740538868\tfrom:0.06746986323674065\tand:0.05438751561889232\tupon:0.04182995018012925\t:0.01\n",
"of:0.19579587323139588\tthe:0.19395389185426096\tand:0.16899936873910917\tto:0.16866607865737424\tat:0.10575040280666641\tfor:0.0443105773816286\ta:0.039519240929562986\twith:0.037803865941423466\tin:0.03520070045857849\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.34824457419377525\ta:0.20638620984221684\this:0.12061345256831978\tand:0.09487511633645061\tmy:0.04850886187547575\tthis:0.0470559690566961\ther:0.04485175082585196\tfirst:0.04263773617531887\tto:0.03682632912589477\t:0.01\n",
"that:0.27090077704556653\tand:0.15312651985456757\tas:0.13987649390953413\tif:0.10480914098291425\twhich:0.08509535294613804\twhen:0.07026929768141071\twhat:0.06665407250841021\tbut:0.05952297669560378\twhere:0.03974536837585485\t:0.01\n",
".:0.25096843058720336\ta:0.1437279154736\tto:0.1237464114121198\tof:0.11214172937943184\t-:0.1096874210815358\tand:0.08991166889379736\tre-:0.06016423389978592\tthe:0.058345411516853185\tre:0.041306777755672805\t:0.01\n",
"and:0.33081637437181655\tthat:0.18663433312929106\tas:0.1468766342561219\tbut:0.09049276739006623\tfor:0.06107736729664156\tto:0.052475686612858716\twhich:0.04091998054191725\tthe:0.040853262770484275\tafter:0.03985359363080241\t:0.01\n",
"the:0.43163178421515525\tin:0.1380419332132659\tof:0.09686569914511105\ta:0.09401065627996195\tthis:0.063863538988765\this:0.05936762326884719\tfor:0.03878101017826875\tat:0.03411790998923082\ttheir:0.0333198447213942\t:0.01\n",
"feet:0.1661827899764964\twent:0.13840148588006626\tand:0.12471628821229151\tas:0.10253849969341691\tup:0.10141755333275869\t10:0.10035676626157643\tgo:0.09312648607067546\t20:0.08356466352949748\tchains:0.07969546704322089\t:0.01\n",
"went:0.1794974806493376\tgo:0.15454708545878776\tcame:0.11151278596248962\tback:0.09777108854160564\tit:0.09728390677389735\tout:0.0959887918454101\tput:0.09227887075263337\tdown:0.08367866714280338\tcome:0.07744132287303515\t:0.01\n",
"the:0.35861451900589214\tMr.:0.1291559629555713\tof:0.1199072506314825\tThe:0.10475232618943306\tand:0.0967371407604443\tthat:0.07632406646832235\ta:0.046895937127093126\this:0.030747167493934736\tMrs.:0.026865629367826563\t:0.01\n",
"is:0.17652196505802806\tto:0.15961665892124027\tof:0.11942784628081325\twas:0.11394569552862638\twith:0.10846363464426434\tin:0.09014626345923861\tand:0.07962055625732642\tfor:0.0749621396044917\tas:0.06729524024597094\t:0.01\n",
"to:0.5400853091156731\twill:0.12416605448473314\tnot:0.07997277840040475\tand:0.0642260782645938\twould:0.06169760608265211\tshould:0.04030937509262209\tshall:0.0357869357300038\tcan:0.022318688845303716\tmust:0.02143717398401348\t:0.01\n",
"to:0.6791451020271425\tand:0.07278855207224437\twill:0.04915320489675916\tcan:0.040556024837599285\tcould:0.034998798499879705\tnot:0.0337336464821516\twe:0.029844931680776045\tshould:0.02662422860742604\tcannot:0.02315551089602114\t:0.01\n",
"<s>:0.5746497061070784\tit.:0.09773453705682687\t.:0.059940676199078315\tthem.:0.05373846632082932\thim.:0.05033299440965587\t::0.04707292658911218\tand:0.038690220510351245\tday.:0.03713865829015961\ttime.:0.030701814516908097\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.298968348635794\tof:0.1549830536219306\tthe:0.13121332077777068\tto:0.0915481741186812\tthat:0.0841344243737663\tin:0.06445423111974354\t<s>:0.05909200052233126\the:0.05433530829034257\tas:0.051271138539639785\t:0.01\n",
"number:0.18152159739230295\tline:0.16121117495408868\tpoint:0.11117329959800062\tmatter:0.10140844259769216\tout:0.09297286837390435\tcity:0.09076659792771734\tamount:0.08992503502141458\tCity:0.08103768267653222\tplace:0.07998330145834712\t:0.01\n",
"his:0.3108284652468173\tthe:0.18487570350983606\ther:0.12197517737554384\tHis:0.11884493702467752\tmy:0.08228333382068308\tThe:0.06465863928655444\tMy:0.040350954072218746\tthat:0.03897754604534052\ttheir:0.027205243618328438\t:0.01\n",
"the:0.288596836910037\tat:0.24291862660133795\tto:0.12369926315640714\tnot:0.08403102074973808\tbe:0.07863323372809818\tsuch:0.053440925511145335\twas:0.049185680429811356\tAt:0.03668556946114325\tand:0.032808843452281605\t:0.01\n",
"and:0.18908650880201475\tis:0.16061519310642489\twas:0.1596406831158866\tof:0.10251057803718074\tit:0.08794708738555243\tnot:0.07793050540591424\tbe:0.0735087930510539\tare:0.06945256323221166\ta:0.06930808786376066\t:0.01\n",
"not:0.22732100839550937\tI:0.1824774846207267\tthey:0.13949221590278946\twe:0.13130354854768575\tyou:0.09635400691965762\twho:0.08215185924455012\tand:0.05178384004207285\tto:0.04654044311016042\tWe:0.03257559321684763\t:0.01\n",
"the:0.43198463274749466\tof:0.18669028292162088\tin:0.13759398136820367\tfrom:0.055820553202200446\tThe:0.043703751119055834\tfor:0.035296565850209176\tand:0.03427661919136939\tat:0.032350951109331755\tto:0.032282662490514175\t:0.01\n",
"that:0.1489749760935585\tfor:0.14830937760580712\tif:0.13420130787710768\tIf:0.12491313819937509\tand:0.11820985164690972\tto:0.10250083755311869\tas:0.09366941029187145\tdo:0.06605601562360248\tof:0.0531650851086492\t:0.01\n",
"the:0.6802306223141784\tThe:0.1011424171140648\tnot:0.053068615448810946\tcould:0.027527802541452172\tcan:0.02665429953001215\ta:0.02618619965466014\twould:0.02575254681919479\twill:0.025321630986898644\ttho:0.02411586559072787\t:0.01\n",
"for:0.7862656967888646\tof:0.07499487260437257\tin:0.029687571464067475\tto:0.02357464052007675\tFor:0.02051455418554717\tlor:0.01683553600109947\tduring:0.015323850032143123\tat:0.011415358822478646\tand:0.011387919581350221\t:0.01\n",
"the:0.6563915160770953\ta:0.07288820030776197\tthis:0.05643092098417385\tand:0.0479611213020283\ttho:0.04735553108720453\tThe:0.03487379029642561\tof:0.03429393482307555\tin:0.021045210556021363\this:0.018759774566213593\t:0.01\n",
"it:0.17022148455569647\tthey:0.1559135045065071\the:0.15190683051973633\tand:0.11985792875723768\twe:0.09160059825879127\twho:0.0844632798147145\tI:0.08278110221198123\tyou:0.075458266292791\twhich:0.057797005082544456\t:0.01\n",
"and:0.26276554424049875\twell:0.17165735638285678\tregarded:0.10215108442096366\thim:0.08688236618817878\tknown:0.08594969760882573\tsoon:0.07468266047506815\tit:0.07254659441566477\tis:0.06743217334715047\tbut:0.06593252292079285\t:0.01\n",
"two:0.14438252928372813\tthree:0.13535663044233787\t100:0.12136646626934357\tsix:0.11882276193090932\thundred:0.11551279482781025\tfour:0.1005093242756626\tten:0.09076278268122646\tfive:0.08858232001378084\ttwenty:0.07470439027520089\t:0.01\n",
"of:0.15862241364981214\tand:0.15751333905624854\tto:0.15637447451180367\tthe:0.14620390380107715\tin:0.129532116122774\ta:0.0677699611842351\twas:0.06062990956871154\tis:0.06058567911506544\tfor:0.0527682029902725\t:0.01\n",
"to:0.6526546198468366\tcan:0.0687334037220296\tcould:0.05678034158012565\twill:0.05425581607260121\tnot:0.05060670973077578\tand:0.0416248842247267\twould:0.024045768349746425\tI:0.02076483157751721\tyou:0.020533624895640853\t:0.01\n",
"and:0.2802179654686674\ttogether:0.17581662481571086\tcovered:0.10720042995908446\thim:0.0945742991305398\tup:0.08880677792452797\tit:0.06615739106357521\tmet:0.06358405713054323\tthem:0.061624174380125664\tbut:0.05201828012722528\t:0.01\n",
"for:0.17070972159869618\tof:0.15877062316752832\tas:0.14850344188682746\tand:0.11156331862922195\tto:0.09623724601086138\tis:0.09278473393176216\tin:0.08371137069398876\twith:0.06725823365684401\twas:0.06046131042426989\t:0.01\n",
"to:0.22563234363069315\twill:0.220416947006397\tmay:0.12204106584161117\tshould:0.0951960522966825\tcan:0.08543953488536968\tshall:0.08358193707014082\twould:0.05737932216511839\tmust:0.050287754406089784\tcould:0.050025042697897405\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.25296756508842694\tto:0.2154020023337419\tin:0.14937112723645737\tand:0.08007959789935276\twith:0.06727550951784922\tfor:0.06063935223675631\tat:0.0578196829521757\treserves:0.056755137889726436\thave:0.04969002484551347\t:0.01\n",
"<s>:0.5110837831478915\tit.:0.10591587410404914\tthem.:0.06556402642527304\tof:0.0622565729654287\tyear.:0.053736816886417085\tcountry.:0.05146140292246741\tday.:0.05045562743425347\t.:0.04706311310532128\ttime.:0.04246278300889839\t:0.01\n",
"the:0.3959764629853514\ta:0.2590742407878743\tThe:0.0740583720376373\tof:0.07296546104535366\tand:0.05712011441225638\tan:0.044191631653084915\tthat:0.030255240569779476\tA:0.02999579142060357\ttho:0.026362685088059033\t:0.01\n",
"and:0.17305165894018001\tthose:0.1438320847226602\tto:0.13444259183429658\tof:0.1052235234717092\thave:0.10198035438011073\twho:0.09895354033058207\thad:0.0969508251544563\t<s>:0.07912636101130145\tall:0.0564390601547034\t:0.01\n",
"of:0.3996771517906564\tand:0.19058556544080046\tare:0.07705140302183235\tis:0.07303795858705055\tnow:0.06562128403313867\tby:0.05359659959013234\tafter:0.04995715584206587\tin:0.04206008930413845\twas:0.03841279239018504\t:0.01\n",
"of:0.33406129049648303\tto:0.12049264072633424\twith:0.0963336285288878\tand:0.0939645479779181\tis:0.0864883967561169\tin:0.08226092310789548\tthat:0.061430624386753084\tby:0.057631216891386707\tfor:0.057336731128224655\t:0.01\n",
"last:0.2801827409820454\tthe:0.2749971278499836\ta:0.13601061679839652\tthis:0.08840490192650835\tone:0.06528613122612525\tnext:0.05372086778748644\tpast:0.038889897663369366\tfiscal:0.02946957247692285\teach:0.023038143289162316\t:0.01\n",
"time:0.15566278078848736\table:0.13989487341428972\tand:0.126789885204836\tright:0.10141430028820067\thim:0.1004356252715333\tenough:0.09858737005057427\tbegan:0.09162364026574703\tbrought:0.089725749548613\tthem:0.08586577516771882\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"<s>:0.4337217910641287\thim.:0.11416120427912035\tit.:0.1108713596001359\tthem.:0.07914729257990072\t.:0.0719821398273196\ttime.:0.0484807219432451\ther.:0.04665933116538696\tcountry.:0.04275086743319627\thim:0.04222529210756629\t:0.01\n",
"a:0.25837515361454694\tso:0.21204397014417575\tfeet:0.15618664675848032\tthe:0.08997457789642417\tvery:0.08288716458686338\ttoo:0.052064363743178126\tinches:0.04748497342524908\tas:0.04646793915255795\twas:0.044515210678524215\t:0.01\n",
"and:0.167673560168984\thim:0.1302595889239382\twant:0.12288405280822053\table:0.11252456763525269\tis:0.10177603532893538\tenough:0.09848886248683617\thave:0.09133909511025426\tme:0.08613098450363031\tnecessary:0.07892325303394836\t:0.01\n",
"they:0.17831927564623212\twe:0.17273777927866282\tyou:0.16448997700905404\tI:0.15677256758826993\the:0.12927290002304886\twho:0.049440078982388794\tthat:0.04786416507181565\tand:0.04643287027422059\tit:0.04467038612630697\t:0.01\n",
"it:0.1776273455251512\the:0.17449845244454024\tIt:0.134624216190051\twhich:0.13012482911285053\tI:0.11846513079849134\tthat:0.06961143258757323\tand:0.06412281842942415\tHe:0.06310059069501395\tshe:0.057825184216904246\t:0.01\n",
"the:0.751396665596741\tan:0.06524064230553946\tgeneral:0.03657796827854016\tThe:0.03508984043071523\ttho:0.03185751901925751\tprimary:0.0250703682016875\ttbe:0.016764798752734206\tsaid:0.014429565211006858\tspecial:0.013572632203778266\t:0.01\n",
"enough:0.1460197688707853\tand:0.14132991299633987\table:0.12532103140904757\torder:0.12087521672134159\tis:0.10659187402439463\tas:0.09839282102201653\thim:0.08820021934353602\tnecessary:0.0866702738326426\tunable:0.07659888177989588\t:0.01\n",
"the:0.32248525646726783\tthis:0.2848279540121546\this:0.09088106918864726\tthat:0.06859700697630082\tfirst:0.059471181186959224\tsame:0.0479714345584114\ttaken:0.040654171824742555\ton:0.03861619298184641\ttook:0.036495732803669814\t:0.01\n",
"to:0.31157797859985475\tthe:0.25445912315831576\tan:0.15673116512892965\tthis:0.10923433255270883\twill:0.048592460708370935\tand:0.03846238124191415\tsaid:0.026642507052561756\t\"An:0.022591923292334087\ta:0.021708128265010094\t:0.01\n",
"that:0.38290738192185925\tand:0.24969458719959275\tbut:0.08277960045876116\twhich:0.05314302687189341\twhere:0.05295758215877723\tif:0.050129890186682326\tas:0.04196917135546931\tBut:0.03825297840239077\tIf:0.038165781444573874\t:0.01\n",
".:0.1392279501999177\tJ.:0.13850984816996786\tW.:0.1364400263849639\tJohn:0.12722644650937187\tA.:0.11425203367917355\tMrs.:0.09514124562980834\tC.:0.09009912562999603\tH.:0.08255340455504659\tand:0.06654991924175427\t:0.01\n",
"to:0.23623897422479576\tand:0.23520251286490526\tthat:0.12486401567005125\tthe:0.09916907040381041\tfor:0.07189098396118507\tin:0.06610968687308817\tof:0.06599731755439714\tnot:0.04535997756914463\twas:0.045167460878622306\t:0.01\n",
"in:0.12881920758372978\tmen:0.1252559333320403\tit:0.1150461939581007\tout:0.11429910070663384\twork:0.10521850972395011\thim:0.10477842397844724\ttime:0.10336837779003066\tlife:0.09745591042716667\tup:0.09575834249990073\t:0.01\n",
"the:0.2802538226534028\ta:0.273721818029966\tof:0.0964644863397863\tand:0.09552322148492186\tto:0.07517658226949613\tin:0.05807135463602967\tan:0.04974096542804766\tat:0.031675316821225145\this:0.029372432337124468\t:0.01\n",
"<s>:0.2858120486084661\t.:0.1820478182444699\thappiness.:0.12745510989536307\tand:0.09309999871663534\tthe:0.08002636785268098\tMr.:0.07420513092080146\tit.:0.07028646180921284\tthem.:0.042042428641990266\tIt.:0.03502463531038002\t:0.01\n",
"of:0.49282306243065077\tin:0.1484991966243883\tto:0.14297980167643912\tthat:0.053717847580126425\tby:0.04841873530353788\tfor:0.02943408734671461\twith:0.02578344631937115\tand:0.024455805311680526\tfrom:0.02388801740709127\t:0.01\n",
"and:0.2953876189038615\twas:0.16428490131166157\tis:0.1170663883818668\tup:0.07776716508545514\tit:0.07559106251500251\tmade:0.0665568090126541\tput:0.06578409847025994\tplaced:0.06489134807601946\tthat:0.0626706082432191\t:0.01\n",
"of:0.3999636628859222\tto:0.15327128333500403\tand:0.08402541940398019\tby:0.07829726650577438\tthat:0.07573913242216179\ton:0.06937728173963717\tfor:0.04845732759576013\twith:0.042690585159671904\tin:0.03817804095208795\t:0.01\n",
"and:0.2810807178486598\twas:0.14358519258147773\tBeginning:0.1174528574405669\tweek:0.10716354225737154\tthree:0.0855581990653575\tis:0.06644781159551098\tdied:0.06438025072466787\thim:0.06431676748526562\tare:0.060014661001122\t:0.01\n",
"part:0.19767579779515335\tone:0.18249796999181242\tand:0.13190180526759407\tsome:0.0978797180245548\tout:0.09500345386664946\tthat:0.07937632955810345\tall:0.07701371227327215\ttion:0.0726034376324227\tsum:0.056047775590437485\t:0.01\n",
"the:0.7063597871049954\tThe:0.055922759796280835\tcounty:0.038588763644624276\tsupreme:0.0331943429167895\ttho:0.032618002639231106\tthis:0.03224793050278178\tsaid:0.032098855682139785\tdistrict:0.029711076079828154\ta:0.029258481633329347\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"a:0.27316882656435365\tthe:0.24816337124217983\tand:0.11524384298606913\this:0.0990085294339939\tof:0.06556754730404528\tthat:0.05325053789405492\tThe:0.050260228862924465\tthis:0.0488515153039918\tA:0.036485600408387164\t:0.01\n",
"<s>:0.25795803400281275\tit.:0.1778224872521141\tthem.:0.1731830925064709\tcountry.:0.07516321782276782\ttime.:0.07142776604802187\thim.:0.06879685793027346\tyears.:0.06534320505341516\tlife.:0.05347687505714647\tus.:0.04682846432697746\t:0.01\n",
"of:0.3657438774317981\tthe:0.19148039564893032\tin:0.1087987340639488\tto:0.07457299330423821\tby:0.060256881158969385\tfor:0.05574237237616318\ta:0.04530748992810972\tfrom:0.04469009300219154\ton:0.04340716308565068\t:0.01\n",
"to:0.4398713562066029\twith:0.14341109430400398\tfor:0.12171489089860105\tof:0.10768175951943221\tupon:0.04642919938884369\tfrom:0.04081734906034254\tby:0.033842108225692696\tat:0.029614524170431738\tagainst:0.02661771822604929\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"that:0.36331251910227375\tand:0.26881304627489866\tbut:0.09646765035613757\tit:0.09140226651686262\twhich:0.041803014299511665\tyou:0.03405277305312291\tBut:0.03338986625050933\tas:0.031190768143130716\tAnd:0.029568096003552684\t:0.01\n",
"and:0.4457828178275243\tthat:0.1909191748223346\tbut:0.12328168369100924\tor:0.052012138185842986\ttime:0.05083338233237528\tBut:0.047471008583709326\tAnd:0.030462733166749887\tand,:0.027589754747500184\tday:0.021647306642954205\t:0.01\n",
"the:0.2348936864380875\tof:0.17141990857045894\tand:0.15092221108899265\ta:0.10125325371681407\tto:0.08978991230211596\tbe:0.07036792028887345\tin:0.0685027598781156\twas:0.06545509613683566\tis:0.037395251579706204\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"there:0.2737750996042652\tThere:0.16312392626375546\tthey:0.15372208680883256\twho:0.07732674436178921\twe:0.07672548322279756\tand:0.06888585179835426\tThey:0.06134171484623942\tyou:0.05815876019232383\twhich:0.056940332901642486\t:0.01\n",
"a:0.5457636047808748\tthe:0.14999129555649293\tvery:0.0671403932564\tbut:0.053047814505814056\tof:0.044860033648797634\tand:0.03921229272247331\tA:0.033676518519295234\tis:0.03161899068593396\twith:0.024689056323918088\t:0.01\n",
"of:0.2352357307173567\tto:0.16373804253060634\tby:0.10711432698719914\tfor:0.10536828077806208\tin:0.09479430437296586\tand:0.09281097724266078\tthat:0.08241008769378608\twith:0.06900475209603336\tas:0.03952349758132968\t:0.01\n",
"and:0.3164398147339951\tof:0.13042297808603184\tto:0.10777396796221876\tthat:0.0950688964825297\tif:0.0820974035980299\tfor:0.06980223701177848\tbut:0.06864786925467722\tin:0.06539099142665572\twhen:0.0543558414440832\t:0.01\n",
"of:0.2568653809167087\tthe:0.23720654925062004\tand:0.12614351118232509\tto:0.10290021570129189\tthat:0.07368081103024293\ta:0.06608129371629808\tin:0.05432830348477381\tby:0.03679985104381098\tfor:0.03599408367392851\t:0.01\n",
"they:0.142076261320422\the:0.1351553922413973\tyou:0.13476136368382957\tand:0.1325367400168154\tit:0.1163752547225486\twhich:0.10650266999951666\tthat:0.08466591977888144\twho:0.07951935413997611\twe:0.05840704409661286\t:0.01\n",
"the:0.38557819602160265\ta:0.2126859408362802\tand:0.07975285578985929\tof:0.07138795426451841\this:0.058736444441803676\ttheir:0.057999737258352946\tany:0.05661086986615562\tto:0.035918157733572986\twith:0.03132984378785431\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"the:0.37003832012200133\tto:0.17089294104989347\tand:0.15264659790293603\tThe:0.09849868194356427\twill:0.059816418203629984\tthat:0.0425794504343572\tthis:0.03712503753410519\twe:0.030107157166151262\tthey:0.028295395643361244\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.37807921776056747\tin:0.194985544429122\tto:0.09815102664330344\tfor:0.08412539104438391\tand:0.06080115343644393\twith:0.056786595856860626\ton:0.04175421759841497\tby:0.040328430212493875\tthat:0.03498842301840974\t:0.01\n",
"the:0.2669182079528096\tof:0.19935127368247918\tin:0.14671180063154055\tand:0.11423449389500545\tto:0.07979405890733762\ta:0.07002364648363375\tIn:0.038480588913482175\tby:0.03808495901237361\tfor:0.036400970521338005\t:0.01\n",
"and:0.17698954323271562\tcarried:0.14364574788573167\tput:0.12007207057577556\tcalled:0.1088271233959839\tgo:0.09260315426035655\twas:0.09211780912159466\twent:0.09124788169333647\tbrought:0.0880269615939068\tgoing:0.07646970824059865\t:0.01\n",
"and:0.22495042531125603\tat:0.16325206122272432\ta:0.13354675216715464\tNo.:0.11431073242117486\tof:0.0809777598029548\tabout:0.08065460031066672\tthe:0.0752175344698032\tin:0.06033576839482703\tlot:0.056754365899438344\t:0.01\n",
"the:0.4518206639878282\tyoung:0.09025339046831114\tbusiness:0.08589808740912373\tof:0.07951288218755649\tand:0.07697367293443745\tThe:0.06404560654490159\ttwo:0.059205581308769975\tmany:0.04279706394276691\tby:0.039493051216304496\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"well:0.2113376870704535\tfar:0.15439074705362435\tand:0.15358787576361066\tso:0.13918152025849637\tsuch:0.08299064184289429\tsoon:0.07593993505425392\tlong:0.06597764632296645\tknown:0.054156049319331274\tjust:0.05243789731436923\t:0.01\n",
"and:0.24283076148975832\tto:0.21756566658293056\tof:0.15953497715278664\tthat:0.09803680050019653\tas:0.06620493545612388\tit:0.062069402882089994\tor:0.04988026097410582\tis:0.04702662609906993\thave:0.04685056886293845\t:0.01\n",
"was:0.2592424251425947\tand:0.14070207469830934\twere:0.13866268446166766\tbe:0.13076996172313662\tbeen:0.12574184474387\tare:0.0658841640111351\tis:0.05226200064289263\tbeing:0.03860579278480936\thad:0.03812905179158455\t:0.01\n",
"and:0.3566638953041958\tor:0.18991146236573977\tthat:0.10235579520512857\tbut:0.09731835952775168\tnot:0.08788064872058444\tfor:0.043164010040051895\tBut:0.04022831374858809\tis:0.03651282562155435\tbe:0.03596468946640538\t:0.01\n",
"I:0.17997083235113337\twe:0.14880410816094847\tthey:0.14051839814205855\twho:0.12444211970473236\tto:0.11105863749572345\twould:0.10562934512377051\tWe:0.06373547795003102\tyou:0.05888700394930202\tand:0.05695407712230023\t:0.01\n",
"the:0.4122297696543623\tthis:0.2312767174862012\tof:0.06590696196895268\tto:0.06490145115092658\tsaid:0.06026002456528672\tsupreme:0.05457698668343304\tdistrict:0.044774811150863604\ta:0.029169467626933163\tin:0.026903809713040582\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"in:0.17277663068708587\tup:0.1272432446879958\tmen:0.1135099520167039\thim:0.10351651903755121\tthem:0.09851576166637334\tout:0.09824713336545807\tit:0.09755920417365109\tit,:0.09710511366915911\twork:0.08152644069602161\t:0.01\n",
"is:0.2074355898680441\twas:0.15730821201198025\tand:0.14873283722980002\tthat:0.1288165912552976\thad:0.08675225883875809\tbe:0.0865422919817809\thave:0.0743319003542517\tbut:0.059799972821547975\tare:0.04028034563853959\t:0.01\n",
"be:0.20318074163432065\twas:0.1810029018914728\tand:0.15446129146824508\tbeen:0.11006060645686003\tis:0.10368971627447866\tare:0.0642469846360231\twere:0.0636301636417311\tthe:0.055049235698359754\the:0.054678358298508596\t:0.01\n",
"the:0.604665965824119\tto:0.1438214152727013\tnot:0.04663930024948618\tThe:0.046308913378517495\ta:0.043752863662170634\tand:0.0378684272992441\twill:0.02387375516131721\ttho:0.02192216650005467\tor:0.021147192652389558\t:0.01\n",
"the:0.2934620670631732\tof:0.2141593332667423\tand:0.15945002087278187\tto:0.06780370218056998\tthat:0.06419988100345989\tThe:0.06058387775262816\tin:0.0583461619364558\twhich:0.03917179644278349\tor:0.03282315948140535\t:0.01\n",
"and:0.26376455416670863\the:0.18613952474339404\tHe:0.11662245855313375\twho:0.0972698775638317\twhich:0.07383330581041614\tIt:0.07073541168293555\tit:0.06692896634421676\tbe:0.06035763095294901\twas:0.054348270182414546\t:0.01\n",
"the:0.32640849872095873\tand:0.2971408172659985\tit:0.07200029482402802\tthat:0.06829164997907228\tIt:0.06345063852677639\tof:0.06193023877298031\twas:0.036251023035320365\the:0.033565394291894445\tThe:0.03096144458297105\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"<s>:0.5835053554603239\tit.:0.10356303004041499\tthem.:0.06418451551161518\tcountry.:0.04605004884351035\ttime.:0.045831728289097866\tyear.:0.04061372537462403\t.:0.03938347276933955\thim.:0.033939148850661495\tday.:0.03292897486041254\t:0.01\n",
"and:0.14030927533472712\tof:0.13773289726642787\tabout:0.13479300346958134\tto:0.1321900755616683\tor:0.10571137991678192\tat:0.10555389678794125\tthe:0.10201769609807303\tfor:0.07036829395332714\tfrom:0.061323481611472046\t:0.01\n",
"men:0.16781911217192325\tcity:0.14921016930679418\tgold:0.10418839181420948\tcounty:0.10181573130431511\tright:0.09982727202632262\tlife:0.0972864948832144\tYork:0.091016146836854\trights:0.08956154086597862\tout:0.08927514079038847\t:0.01\n",
"the:0.2833392202962947\tof:0.2740875079226226\tand:0.132150740646128\tin:0.06480510317627967\ta:0.05925029363487511\tto:0.05894571859055753\tfor:0.05104176219589187\tat:0.04155658845044788\twith:0.024823065086902726\t:0.01\n",
"of:0.31662382482780055\tthe:0.18822284322808477\tin:0.11578788137479393\tand:0.09407676728996123\tthat:0.07488917283524958\tto:0.06204412499286629\tThe:0.052928240553401264\tfor:0.045864762222283736\tMr.:0.03956238267555868\t:0.01\n",
"the:0.546264012492491\ta:0.14003743588865783\toppo-:0.07543620258552305\tone:0.0559007354071913\tand:0.0521717498592445\tThe:0.04569637483856277\ttho:0.03178903908859795\tof:0.024975096948810987\tcounty:0.017729352890920622\t:0.01\n",
"the:0.7681156155024754\ta:0.06340440157005062\ttho:0.0292761695737795\tThe:0.028794440344905775\tlarge:0.024482442219308297\tfurther:0.021404461068682552\tthis:0.020724499372017823\tprincipal:0.017944100313008093\tsaid:0.015853870035771933\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.32344792120366006\tand:0.13574983968668922\ta:0.12045919366652863\tof:0.11144736938601565\tto:0.10819936268192318\tso:0.05485077267885555\tis:0.05113804921283257\tin:0.04560258755074353\tbe:0.039104903932751574\t:0.01\n",
"the:0.35704948455199803\tand:0.19569839124732874\tof:0.17066785543405627\tThe:0.11172442877965488\tthat:0.04277900599371835\tthese:0.03153273173181317\ta:0.028047350814569483\tor:0.027399312475863052\tto:0.025101438970998136\t:0.01\n",
"the:0.4697080538038115\tand:0.1218057466042571\tThe:0.08067089932008514\ta:0.07127930149868016\tour:0.06379006817601254\tother:0.049518221185711316\tpublic:0.0450279435490149\tan:0.04421407593883786\this:0.04398568992358966\t:0.01\n",
"the:0.6945456306808825\tThe:0.08412912924162982\ta:0.07560275395280033\tin:0.03597678907600068\ttho:0.033440896661919045\tand:0.020783507242490576\tof:0.01956990502669926\ttbe:0.01344367030242485\tthis:0.012507717815152777\t:0.01\n",
"is:0.190839830647519\twas:0.18453859701795416\tthe:0.16536986722395094\tbe:0.14990027266226666\tand:0.08274024975999349\tbeen:0.0729730585250275\tas:0.05381468203831982\tare:0.05232111648910036\tnow:0.037502325635868076\t:0.01\n",
"and:0.2275568136184341\tof:0.198357135738386\tthe:0.1750661188511791\tto:0.07855314553146203\tfor:0.06714821591926588\ta:0.0663876628110636\tthat:0.06195441710685245\twhich:0.06002681078592804\tor:0.05494967963742877\t:0.01\n",
"the:0.27170244539899724\tof:0.13553221023184736\ta:0.13251193920785892\tand:0.1248713240427205\tin:0.09359373228192124\tto:0.08795746607270952\tfor:0.06799142990720153\twas:0.03951564348371223\t<s>:0.03632380937303151\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.28165882755693256\tdown:0.11846415154417117\thim:0.10232904159872842\tit:0.09227024777774305\tcalled:0.08335496573739468\tput:0.08151740630487017\tlook:0.07849609619490824\tback:0.0768431462273477\tplaced:0.07506611705790406\t:0.01\n",
"the:0.20223508035378646\tof:0.15827021492450866\ta:0.13001279601466734\tfor:0.11951431697602496\tto:0.11423274079522644\tin:0.10900017796673618\tand:0.07258074019928412\tat:0.05523731030933446\tIn:0.028916622460431606\t:0.01\n",
"the:0.26798906505893316\ta:0.19588610296962417\tof:0.15782454701830745\tin:0.09881590805245294\tto:0.08875307561685514\tand:0.08579069831996983\tan:0.047691702558638194\tfor:0.025015846613499555\tthat:0.02223305379171974\t:0.01\n",
"of:0.3459935056255046\tin:0.22286072671964585\tto:0.09257939502708112\tthat:0.08108541225859207\tand:0.05564866304484147\tfor:0.05381171592040427\tby:0.052511867260834566\tIn:0.05053674613429885\twith:0.03497196800879726\t:0.01\n",
"and:0.1774169944735742\tis:0.1609502813365193\tor:0.15226223017979387\tbe:0.1250095621018527\twas:0.1002398282129908\tare:0.07263814658679284\tthe:0.06948068270681836\tno:0.06928371487098066\tmuch:0.06271855953067723\t:0.01\n",
"as:0.28875933913223506\tand:0.14933458933744412\tis:0.11610934878202267\ta:0.097445875816181\tthe:0.0855643819806782\tany:0.07693077256828977\tor:0.06197305024709744\tno:0.06144157767014946\tit:0.05244106446590238\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.32439601973335297\ta:0.24374019905158195\tof:0.1148859154931119\tand:0.10212572913548452\tvery:0.06472995190919276\tas:0.039761105915803195\this:0.0346598742687042\tin:0.03461227866170642\twith:0.031088925831062007\t:0.01\n",
"that:0.371739867996464\twhich:0.11851866647349125\tand:0.11799120008495087\tif:0.07779864410619086\tas:0.07513205183763351\tbut:0.06614765438119001\twhere:0.06504322807420472\twhen:0.061911374323883606\tIf:0.035717312721991044\t:0.01\n",
"I:0.1811131550623551\tthey:0.17050687934607714\the:0.15440076083159548\twe:0.13928946620092073\tit:0.13891187155032084\tyou:0.07120339168108021\tand:0.056669612888053944\tIt:0.04118081126764633\tshe:0.036724051171950226\t:0.01\n",
"<s>:0.4448140032971377\tit.:0.11254294596734296\thim.:0.08139571779827028\tthem.:0.07830339587395746\ttime.:0.07570024384723846\tyear.:0.05318208718846232\tcountry.:0.049628172631640745\tcity.:0.04734517427285354\tday.:0.047088259123096415\t:0.01\n",
"was:0.17866125702367355\tbeen:0.15150316605200992\tbe:0.14640091470068892\tand:0.12952731439332055\tare:0.08854298616197952\tis:0.08784284837300896\thave:0.0728077960819013\twere:0.07280394661059576\thad:0.061909770602821684\t:0.01\n",
"to:0.16527415368823617\tof:0.1516347041403396\tis:0.12799931644888746\twith:0.11271020050200416\tin:0.10020274744303709\tand:0.09265471470086294\tfor:0.08347938497849013\tby:0.07930410855186167\twas:0.07674066954628062\t:0.01\n",
"the:0.3272056954570342\ta:0.18477656750392707\tof:0.14683025255929244\tand:0.0949642716735493\tas:0.054216842413481944\this:0.05223018208944234\ttheir:0.05041050317895492\ttwo:0.041540170949846716\tmany:0.037825514174471095\t:0.01\n",
"of:0.21078558763234387\tthe:0.2084276552669612\tto:0.13887167799035063\tand:0.127786855831512\ta:0.10913730032056547\tfor:0.05902381088567372\tat:0.04799174049315132\tin:0.04773418421567473\tthat:0.04024118736376695\t:0.01\n",
"and:0.26113813610723585\tmade:0.1968494543792684\tor:0.0994177224842505\tcaused:0.07981664978811569\tthat:0.07692711090973736\taccompanied:0.07525294783963392\ted:0.06782937948600387\twas:0.06683813876463458\tdone:0.06593046024111981\t:0.01\n",
"one:0.408065472916482\ttime:0.1394281309247321\tand:0.13326600195220298\tday:0.08795152884113071\tthat:0.051633499581523405\tman:0.048044964598506996\tpart:0.04286781101364522\tout:0.04112457502711563\tOne:0.03761801514466093\t:0.01\n",
"above:0.4592653205396642\tman:0.16808687352317758\tbe:0.06815384558166179\tand:0.06495549052579748\twas:0.059943551676444114\the:0.047871291666378\tthe:0.04606983439650105\tbeen:0.03828174562171107\tlast:0.037372046468664696\t:0.01\n",
"of:0.29330704832504534\tat:0.1768631540271319\tthe:0.16430098271614715\tto:0.09786193691669799\tand:0.07679549800032127\tby:0.06804250676173128\tin:0.04318129461578404\tfrom:0.03715048258973436\ta:0.03249709604740668\t:0.01\n",
"and:0.20793249787317952\tor:0.17240450807505406\tnot:0.15415505803569837\twill:0.10344594250581769\twould:0.08396882063765254\tcan:0.07690200289455752\tcould:0.07226705165371398\tthat:0.07020936186705319\tmay:0.04871475645727311\t:0.01\n",
"and:0.209337648778876\tto:0.18447184383785298\tof:0.13535820614721444\tthe:0.12968779946872763\tin:0.11646632397220948\ta:0.09478450971219357\tor:0.04639924522935836\ton:0.03689076321961119\tthat:0.03660365963395642\t:0.01\n",
"of:0.18045438050695572\tto:0.1747026357974531\tthe:0.15749425223258814\tand:0.15345542519140226\tbe:0.09235457882182141\ta:0.07340216453377853\twas:0.06625041891181835\tre-:0.045984937709827485\tfor:0.045901206294354936\t:0.01\n",
"w:0.4423026525686932\tthe:0.1855464232998948\tand:0.10534878826707275\ta:0.0905685737789238\tof:0.0646335374506621\tThe:0.02836616238665834\twas:0.028051466441065872\tat:0.02367779605781007\t\\\\\\\\:0.02150459974921917\t:0.01\n",
"the:0.29801862990913136\ta:0.2880657935896966\tand:0.11198115276797026\tof:0.07577557537890846\tthat:0.05379314825470493\twith:0.047246561019866025\tbe:0.04705842595509553\tto:0.03496011521056557\twas:0.03310059791406122\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.5839749658752824\ta:0.17631242186367557\this:0.05005486241458157\tThe:0.03869016115849642\ttho:0.034119902447436574\tof:0.03168103947072294\tthat:0.030802461003161516\tany:0.025051670346329994\twhole:0.019312515420312825\t:0.01\n",
"a:0.29758910663305543\tthe:0.27423539380877837\tany:0.11748842211131856\tthat:0.08968490661350281\tthis:0.054721926404863785\tevery:0.04658436821377061\tgreater:0.04460875833254082\tlatter:0.03430552952077778\tno:0.030781588361391832\t:0.01\n",
"that:0.30511050006396\tand:0.22596048419566928\tas:0.11460968130685813\twhich:0.10292121837816895\tbut:0.07370461080564004\tif:0.05552503957185024\twhen:0.04977548796890032\tIf:0.03848380457893246\twhat:0.023909173130020556\t:0.01\n",
"put:0.2504041317564992\tand:0.13521143006497227\tof:0.10240390119938353\tas:0.09332042384668736\tget:0.08653786461405065\tfor:0.08519574650501902\tthrew:0.08420403939850811\tmake:0.07762561849041039\ttake:0.0750968441244695\t:0.01\n",
"as:0.1632115163363075\twent:0.1368778467452162\tfeet:0.12925150548943426\tand:0.12600256629526668\tup:0.10064823938027513\tback:0.08758324782822911\taccording:0.08659168328952854\tsent:0.08102701537690701\treturned:0.07880637925883564\t:0.01\n",
"the:0.32577977883643167\tof:0.1886998309649103\tand:0.16240343730877954\tto:0.08416537232496527\tin:0.05743937958564402\ta:0.05446373459510896\tby:0.04724223179553346\this:0.03701079136818399\t.:0.03279544322044283\t:0.01\n",
"I:0.2972347413548833\twe:0.1596737443819009\tthey:0.15880401414132647\tWe:0.10767922019127868\twho:0.06816921463312631\tto:0.061192502960840944\tand:0.051231682532044916\tyou:0.048807689139557305\tThey:0.037207190665041176\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"the:0.5749256792574732\tThe:0.16212511370161184\tof:0.06672887389079628\ta:0.04757901749146755\ttho:0.03671550078765646\tand:0.03597209798200984\this:0.02652015362290321\tthat:0.024143534183321345\tour:0.015290029082760236\t:0.01\n",
"the:0.2924507441643734\ta:0.2618477043632467\tand:0.11020848622914839\tof:0.09629057222831493\tto:0.0657944783354701\twith:0.0475258394681742\tin:0.040447285203933286\tfor:0.040446253326898274\tThe:0.03498863668044072\t:0.01\n",
"the:0.4413000003383425\ta:0.19762391297561152\tto:0.16690011693933995\tof:0.04771196806104024\tand:0.031480219631339575\tan:0.028358315570550022\ttho:0.02797163378149162\tthis:0.02660085518356247\tThe:0.022052977518722035\t:0.01\n",
"be:0.18502113540679238\twas:0.17375076238292436\the:0.15360034822965601\tand:0.13981388607025888\tbeen:0.09195437565998704\thad:0.08219918217208705\twere:0.07167035465302939\thave:0.046637513224963116\tis:0.04535244220030185\t:0.01\n",
"the:0.19993519684628172\twas:0.1369380751370772\tall:0.12558976881364087\tat:0.09569888475761353\tbe:0.09543663812901992\tto:0.094361726852632\tis:0.0868434459017834\tit:0.0851665669830138\tnot:0.0700296965789375\t:0.01\n",
"one:0.36040224094090456\tout:0.14966608779758153\tpart:0.09361898878988291\tsome:0.09135203551233698\tthat:0.06281502273201092\tall:0.06145907941317103\tand:0.05786204965912906\tmembers:0.05681571221449998\tside:0.05600878294048293\t:0.01\n",
"and:0.19634954420750192\tconferred:0.11543927975842608\tcalled:0.11395210976679038\tput:0.10843280749663996\tlook:0.10453234261893223\timposed:0.09687308869159798\tbestowed:0.08640567729406591\tdepend:0.08480181580087785\tlooked:0.0832133343651677\t:0.01\n",
"the:0.25814301480310603\tof:0.1612880397670364\tto:0.1302464478056886\tand:0.10316247757896187\tfor:0.09123775444534482\tin:0.08854106396523045\tbe:0.06805737146379903\ta:0.044832349475458555\twas:0.04449148069537424\t:0.01\n",
"the:0.34854709886328084\tto:0.24022518210435934\tnot:0.10146217243431188\tand:0.07897434062184557\tThe:0.05936231671764701\twill:0.059180998976934615\twould:0.036396438328334384\tmay:0.034486229056645994\tof:0.03136522289664038\t:0.01\n",
"the:0.33225162371278516\tof:0.20816191304124812\tand:0.12338915408188572\tto:0.08841793648083195\ta:0.08630195930053028\tin:0.04487303042914526\ttheir:0.040457022588411294\this:0.03519214540688972\tbe:0.030955214958272383\t:0.01\n",
"the:0.3365845181593539\tand:0.22491132132584496\tof:0.11012501276889929\ttwo:0.08392341417400956\tthese:0.06889069923733662\tfor:0.04754569285360583\tall:0.041241517576264056\tas:0.039691886893000634\ta:0.03708593701168514\t:0.01\n",
"the:0.31904360573278207\tof:0.17315917076143733\tand:0.12534789090235726\tto:0.09647386236527573\ta:0.06334210630031535\this:0.0538857038172744\ttheir:0.05387849831842087\tbe:0.05312243736196245\tin:0.05174672444017449\t:0.01\n",
"I:0.20918863154893388\twho:0.13107937432241845\tthey:0.12817582206896386\tto:0.1179097037523676\twould:0.10804552271005681\twe:0.09090176433733183\twhich:0.08793237235465061\tand:0.07650504490667118\tyou:0.04026176399860571\t:0.01\n",
"a:0.2589983384734151\tas:0.1755223456850415\tthe:0.129601241766951\tis:0.10322085411639388\tand:0.07604627554503071\tvery:0.07234179445542122\tare:0.06115101919887762\tpretty:0.05706976278975053\twas:0.05604836796911839\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.6898256339896466\tCourt:0.13236510059502696\tThe:0.062366587027531145\ttho:0.0286297209485199\tWhite:0.02801253206653624\ttbe:0.015022385281605684\tOpera:0.01404824485407132\ta:0.010692044989225174\tSchool:0.009037750247836896\t:0.01\n",
"the:0.49713493549810694\ta:0.24060837771956722\tand:0.08841823346082302\tof:0.05124899171998487\tThe:0.05008992480553858\ttho:0.017665771495837146\tin:0.01653713316071298\tany:0.015614942096657407\tor:0.012681690042771952\t:0.01\n",
"<s>:0.47484719090244587\tit.:0.12692280894973065\t.:0.09344381830294954\tthem.:0.07500500265610735\thim.:0.05850491336918988\ttime.:0.05212407903284545\tday.:0.039210635906966725\twork.:0.03574260428877689\ther.:0.03419894659098776\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"that:0.31045312736729286\tand:0.2741619673879975\tbut:0.09278721838768438\tas:0.0809731518512709\tif:0.06685178796096648\twhich:0.04741835803803108\tIf:0.04282012299873716\twhere:0.03994928580268348\tBut:0.034584980205336124\t:0.01\n",
"the:0.7037950160891491\tThe:0.14519848361784318\ttho:0.047848568903780565\ta:0.03157658162670801\tFirst:0.016059406572382577\ttbe:0.01598519483445372\tA:0.010721357638836642\tof:0.010155294327674733\tour:0.008660096389171625\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"and:0.18162378161506834\thas:0.150328848045306\tbe:0.12808049983329878\thave:0.12478936844945697\the:0.11752924616354085\thad:0.0946146197791457\twas:0.07266614531512906\tI:0.06700941340996255\tis:0.05335807738909167\t:0.01\n",
"of:0.4439364679462197\tto:0.1327278794129317\ton:0.12173973430790581\tin:0.11002353315245327\tfrom:0.04708584368428731\tby:0.04510211083324074\tat:0.03327153872075577\talong:0.029934554152629005\twith:0.026178337789576542\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"of:0.28861137915589297\tin:0.15610996318840478\tto:0.1083560011813985\tand:0.10040482766659066\tfor:0.09511327146660105\tthat:0.0685225282881235\twith:0.06568413843089253\tfrom:0.054590656931469084\tat:0.05260723369062707\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"time:0.5919944645781805\tout:0.06296107006826818\tin:0.05498526122102206\tit:0.0532527186069741\tup:0.04903106805230425\twork:0.04624603719064909\tgood:0.044758907878737264\tprincipal:0.044212982289668766\tlaw:0.042557490114195705\t:0.01\n",
"of:0.2735900659577961\tthe:0.1555769448654546\tand:0.12432954580218311\ta:0.11720381974340094\tto:0.1041505709777092\tin:0.08233958509752284\twas:0.045557072074220245\twith:0.043647118952881044\tis:0.04360527652883189\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"the:0.3723938701553325\tand:0.15252833185564207\ta:0.12925361082443607\tof:0.11797169073378395\tto:0.061419826164611634\tThe:0.04915650662481893\tin:0.045040880042659305\ttho:0.03117913162739798\tMr.:0.03105615197131758\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"and:0.4122351664000028\tbe:0.09400929347229837\tis:0.09035721271075918\tor:0.07803572941374047\tbut:0.07465629031969132\tit:0.07354979128024322\twas:0.05835100540802543\tdone:0.05681626270243204\tdo:0.051989248292807294\t:0.01\n",
"is:0.1936087435691293\twas:0.1438323593143901\tare:0.12186296434341748\tdid:0.11746438789983729\tdo:0.10721052931890086\tcould:0.08616034692945328\tand:0.07546047057592255\tdoes:0.07227133429734382\twill:0.07212886375160546\t:0.01\n",
"of:0.32146229282701183\tthe:0.1444735348206413\tand:0.11376054908175101\t.:0.11016467046665311\t<s>:0.06622108515580957\tby:0.06431167607191796\tMrs.:0.05797473365094863\tMiss:0.056539491174262296\tat:0.05509196675100433\t:0.01\n",
"the:0.4961791293235501\tof:0.18236658148623608\tThe:0.15233615871042275\ta:0.050672919207234\tand:0.036770136665587365\ttho:0.03447397615578383\tthat:0.013435051122348485\tno:0.013078333966798585\tthis:0.01068771336203878\t:0.01\n",
"person:0.23641619329197927\tand:0.20678568463049865\tone:0.11900372046499413\tman:0.08756447463949889\ther:0.085912867353349\tthose:0.0791191154626604\thim:0.063690603280523\tme:0.056642864321220045\tmen:0.05486447655527665\t:0.01\n",
"to:0.7183702520398\twill:0.06895061969504035\tand:0.06553866856612693\tshall:0.028794206694115858\twould:0.02364177585124151\tmay:0.022696575873127747\tnot:0.02088321438695479\tcan:0.020785557984118887\tcould:0.020339128909474025\t:0.01\n",
"and:0.21095364795944507\tthem:0.16062316455640202\twait:0.15946601217664844\tthere:0.12643459318061936\tit:0.08249021134953013\ttime:0.07240793162413775\thim:0.07136155968627447\tthat:0.05465965212811456\tnot:0.05160322733882831\t:0.01\n",
"a:0.3467012755736888\tthe:0.25921730284365907\tof:0.07668741351212967\tand:0.07591252292538848\tat:0.05052269503904611\tto:0.04989807891690519\tfor:0.0446095538723309\tany:0.04329076293270846\tthat:0.04316039438414308\t:0.01\n",
"the:0.2016885763717203\tand:0.17254624703116742\tof:0.13896025690163777\ta:0.1189067043693272\tto:0.10939402491767265\tin:0.07118472440917285\tbe:0.063597145991794\twas:0.05899266549291904\tare:0.054729654514588714\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.29245588880289897\tand:0.15263623240684154\tin:0.09972535047526912\tthat:0.09861943001223791\tto:0.09669741158261745\tfor:0.07205026808476298\twith:0.07023488041735687\tall:0.05440593005539666\tby:0.05317460816261842\t:0.01\n",
"of:0.3149742239743286\tto:0.1935690250418409\tand:0.11738975359995073\tin:0.09545503649809563\twith:0.08477375936646729\tfor:0.049984472499549945\tthat:0.047674019069616144\ton:0.0444888727931788\tby:0.04169083715697202\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"hundred:0.4503738365108241\ttwo:0.29658563736134735\tone:0.0891212033950726\tthree:0.039173615397145936\tfeet:0.025817701392789962\twife:0.02366475989054041\tdred:0.02220453956469675\tfour:0.021657121900225576\tand:0.02140158458735739\t:0.01\n",
"to:0.4738117869173522\tof:0.16848026767133997\tin:0.08499475716174686\tat:0.06486448922854661\tfor:0.051571073042102664\twith:0.04601273530711243\tby:0.04306436801378494\tand:0.02969280360028336\tfrom:0.02750771905773094\t:0.01\n",
"get:0.1466179279908691\twas:0.13816166858847523\tand:0.13411725524820045\thim:0.10611862598008347\tit:0.10231181039389517\tthem:0.09727726821367766\tare:0.09515897845536371\tgo:0.08768078124059613\tcome:0.08255568388883913\t:0.01\n",
"that:0.26452699615214015\twhich:0.15654287900726546\tand:0.13544022327477656\twhen:0.13485729002233723\tas:0.08744057019638542\tif:0.0710510726851646\twhere:0.05306283278902683\tbut:0.04771234449619156\twhat:0.03936579137671223\t:0.01\n",
"an:0.61059906605084\tthe:0.18946883443684678\tno:0.039193157434515985\tand:0.03606294492402994\tthis:0.03423017881146352\this:0.022849377737004097\tAn:0.020803680994816155\tThe:0.01961267032834095\tof:0.017180089282142548\t:0.01\n",
"the:0.6479839257347578\ta:0.10978707218643534\tThe:0.07925296436464185\tan:0.05865362789070929\ttho:0.05144873054840362\ttbe:0.013161362057877315\tour:0.011696369119269055\tthis:0.010531513243404608\tA:0.007484434854501017\t:0.01\n",
"more:0.22723773170335068\tone:0.13064651056072127\tday:0.1282013877221788\tperson:0.11341647927608782\taction:0.08273334620167308\tlaw:0.08265783364403673\tright:0.07693785241133319\tinterest:0.07546609385136688\tvein:0.07270276462925168\t:0.01\n",
"the:0.29393303671927523\tof:0.2098385620026316\ta:0.146470930401601\tto:0.11641851221372064\tand:0.06731560481824339\tin:0.05889733642992766\tThe:0.04111696699651957\tthat:0.032868297819317764\tfor:0.023140752598763126\t:0.01\n",
"the:0.25387585854953526\tand:0.16573125040311912\tof:0.13220542497073806\tbe:0.11122463475364033\tto:0.10941947712111581\ta:0.09084119012214986\tin:0.046223570180919306\tor:0.04131804815602004\tis:0.03916054574276227\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.23811253930202023\tand:0.21298609019688153\tof:0.1677512719197857\ta:0.07614902944589673\tI:0.06674463324137765\tbe:0.05865049511510523\tthat:0.05765571731457276\twas:0.05667543056542707\the:0.05527479289893308\t:0.01\n",
"the:0.27004892961346216\t1st:0.15109863150680777\tfirst:0.12513779671039005\ta:0.10378703560438178\t25th:0.08044042951759475\t7th:0.06850863141428767\t10th:0.0652308917143553\t12th:0.06469097803790061\t21st:0.06105667588081993\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"to:0.2808927073770892\twould:0.18800571901838511\twill:0.10844419530381859\tI:0.08765456966136302\twho:0.07394233476095441\tthey:0.0720845561732877\twe:0.07174021418372852\tnot:0.054214252677349875\tand:0.05302145084402356\t:0.01\n",
"the:0.3183183051762072\tof:0.1801669198523678\ta:0.12357808363194667\tand:0.11162715168076925\tto:0.0682544285317933\tan:0.05910347991306476\tby:0.051673676291832026\tbe:0.03981214208192875\this:0.037465812840090186\t:0.01\n",
"so:0.37324059295590956\tas:0.213134456277444\ttoo:0.1163056276063509\tvery:0.1095416568177494\thow:0.06081075726440399\tis:0.034797244884535804\tbe:0.033020455209429936\tand:0.026983390115996365\tnot:0.022165818868179865\t:0.01\n",
"and:0.30553631298007816\tfact:0.1255078398364129\tsay:0.12539062555997577\tknow:0.10559250754600998\tbelieve:0.07741479680653447\tsaid:0.07522192313395107\tall:0.061314112884881804\tso:0.05993708106556356\tthink:0.05408480018659215\t:0.01\n",
"in:0.2034549622624766\t;:0.17695854283381698\tUnder:0.17163420516011313\tgiven,:0.09453327128477794\thim,:0.07130837865540356\tthem,:0.06915994318530762\t,:0.06891324276114523\tup:0.0672863474814554\tthereof,:0.06675110637550359\t:0.01\n",
"one:0.2457922824415998\tsome:0.12651763903370486\tall:0.1063314735857588\tpart:0.09632247957245754\tthat:0.09369220667048933\tany:0.08692369179179714\tportion:0.08577178691188839\tout:0.0801290993544861\tmany:0.06851934063781807\t:0.01\n",
"to:0.3069439243007917\twill:0.2527232999065967\tmay:0.09698835025602733\twould:0.08384587021412694\tshall:0.06993135132050336\tshould:0.05877015844630125\tmust:0.04381275401392964\tnot:0.04110562021759732\tcan:0.035878671324125797\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.304222416321658\tof:0.2783640062590916\tin:0.1127591562231371\tto:0.06960703922280702\tand:0.06476560466453268\tby:0.04302903991785493\tsaid:0.040352385502366604\ton:0.03954345626792778\ta:0.03735689562062433\t:0.01\n",
"he:0.2551306972236114\tit:0.12821709378760415\tIt:0.1180101798349114\tHe:0.1054425958428364\tI:0.09665859422425728\twho:0.0920127527752696\tshe:0.08273940215952444\tthat:0.05689213167785442\twhich:0.05489655247413082\t:0.01\n",
"is:0.5639674022852336\tare:0.23130142032449585\twas:0.06773553730857053\tIs:0.0628014619585008\tand:0.0312094885025049\tla:0.009316210349037655\twere:0.008521921336567557\tit:0.00831775431105039\tarc:0.0068288036240387205\t:0.01\n",
"of:0.327024091358148\tto:0.15597511842030629\tin:0.12103256372564264\tby:0.08172844204142192\tfor:0.08070253231082729\twith:0.0645300789030006\tand:0.0611356840650135\tthat:0.05528980308502369\tfrom:0.0425816860906162\t:0.01\n",
"in:0.2131866054664273\tfor:0.18278527504286687\tof:0.17465590095326441\twithin:0.09270317324720147\tand:0.08112620763954176\tonly:0.07401156421911753\tIn:0.06727676343538887\twith:0.05638982722093512\tis:0.047864682775256746\t:0.01\n",
"and:0.29733290137262613\tof:0.18334922430859374\tto:0.17278360866860015\tthe:0.08534755073368087\tthence:0.06471383461311861\tat:0.05787926122813849\t.:0.05394065937303889\ta:0.040020472794585864\t1:0.03463248690761721\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"it:0.19425765126660227\tIt:0.15648430663796364\tThis:0.12328362131432566\twhich:0.12017717855384882\tthere:0.10623079393180142\tthat:0.09480540104319608\tNor:0.07292312079991044\tand:0.06331951207661092\twhat:0.05851841437574072\t:0.01\n",
"of:0.21012453380957336\tin:0.1565477641733717\tto:0.1404472578048836\tas:0.09492835849820332\tat:0.08859363282602135\twith:0.08315885113777308\tand:0.0774399819547109\tsuch:0.07137220520046861\tfor:0.067387414594994\t:0.01\n",
"covered:0.21090863546868177\tfilled:0.17878278755921292\tand:0.17545089244499773\thim:0.08034688654285996\ttogether:0.07952147427527038\tup:0.07549084584028021\tloaded:0.0681667755054602\tparallel:0.06098946169855012\tcharged:0.060342240664686665\t:0.01\n",
"of:0.2514704767404327\tthe:0.1681473304979066\tand:0.14181169004651248\tabout:0.11684281335635084\tthan:0.09239598819448211\tor:0.07144026942473518\tfor:0.06276705839666337\tin:0.0435191141021823\tover:0.04160525924073428\t:0.01\n",
"and:0.19583342605332962\tthat:0.1838994050203063\tas:0.12119181844284553\tof:0.12112615315282578\tto:0.08831964160181255\tmake:0.08098984926957423\twhich:0.07701187457248801\tbut:0.06372021473945984\tif:0.05790761714735823\t:0.01\n",
"rate:0.38001691710260466\tsum:0.23156895738760777\tperiod:0.08837635611050892\tupwards:0.07165412211171805\tdepth:0.07138074098955598\tdistance:0.05919431017069904\tnumber:0.03036120536919608\tone:0.029145692189626822\texpiration:0.028301698568482473\t:0.01\n",
"and:0.20570578939876963\tpassed:0.17824795753995246\tpassing:0.13366637579760457\tway:0.1035784842084695\twent:0.07719123578935083\tit:0.07598226470332366\tgo:0.07514565183586673\tall:0.07134472712029911\tpass:0.06913751360636342\t:0.01\n",
"of:0.27642771204623917\tin:0.15611045864340375\tto:0.12131023071299822\tfor:0.0924466383725917\ton:0.09078155028540542\tat:0.08783085988744996\tfrom:0.061788793772361454\tand:0.05330405491453527\tIn:0.04999970136501494\t:0.01\n",
"and:0.17410176532401225\ta:0.16579013429733114\tto:0.14906606959211194\tthe:0.14029726193315842\tI:0.09006397239482435\tfor:0.06963072657115989\tof:0.0683566903904347\tbe:0.06785856767621946\the:0.06483481182074796\t:0.01\n",
"for:0.4973246786328579\tof:0.1316867381216698\tto:0.12260706933127528\tin:0.1020072295582373\tand:0.030950054312620663\twith:0.029363649020169667\tat:0.02762825385521642\tIn:0.027025421174380046\tthat:0.021406905993572933\t:0.01\n",
"the:0.22017734795849447\tof:0.19917403103003606\this:0.1521842561030712\tthis:0.11429782895948634\tmy:0.09297544032198442\tsaid:0.06698919316381444\ther:0.0512605436030017\ttheir:0.04663380615905618\tin:0.04630755270105505\t:0.01\n",
"the:0.4937337685025012\tThe:0.11481688529875558\tof:0.08610785530040803\tand:0.06659547919658537\tthat:0.064539228149445\tthese:0.05029424429706246\tour:0.04665228147048911\tother:0.03409333854203617\tas:0.03316691924271706\t:0.01\n",
"the:0.32448065369695106\tand:0.16723826999587774\tof:0.10315341573806307\ta:0.09723763221847559\tthis:0.07996281158588836\tto:0.05996495141318129\ttheir:0.057873118145570376\tall:0.05230316361028506\tthat:0.04778598359570747\t:0.01\n",
"the:0.4548131460581101\tthis:0.10795780457742565\tThe:0.1049479382022482\tthat:0.08347705194684914\tof:0.07758326770384216\this:0.054557577958058774\ta:0.04080249427020721\ttho:0.03759610896549259\tThis:0.02826461031776608\t:0.01\n",
"and:0.25207630807212883\tthe:0.1590776369175443\tto:0.15773558448492864\tof:0.134008835886489\tin:0.07715387433799809\the:0.054225800065998656\tthat:0.05325079287740025\tor:0.05204646639327736\tre-:0.05042470096423504\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"a:0.37085459093658374\tthe:0.21000394783181825\tto:0.10908513400680502\tof:0.09422043328554139\tand:0.07801695132369937\this:0.0572173418088892\tour:0.024744009535348624\tin:0.023527565382989123\tmy:0.02233002588832535\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.8062614429249388\ta:0.07074204085357431\tThe:0.037971118303160065\ttho:0.034959893912346295\ttbe:0.014409726287693962\tand:0.01204628792953439\tthis:0.006056116421176157\this:0.004449906963798345\twhole:0.003103466403777544\t:0.01\n",
"with:0.14886409931711977\tof:0.14447416381657258\tin:0.12988064643016015\tto:0.1280947265060543\tis:0.12249041988156543\twas:0.10239616600889581\tfor:0.07781047810481515\tand:0.06838860319273059\tas:0.06760069674208626\t:0.01\n",
"and:0.3260689423137317\tof:0.1846568728253936\tor:0.10058110924794463\tI:0.08244809738647657\tall:0.06634638259409202\tfrom:0.06559692091814154\twas:0.05746828102926478\tbe:0.0535480572505928\tis:0.053285336434362514\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.6538000436814833\tand:0.09015411547553376\tThe:0.07945265526580497\ta:0.07657246664758771\ttho:0.03386343348081405\ttbe:0.016367112828224745\tmost:0.015268767705993348\tin:0.013318189691930384\tall:0.011203215222627705\t:0.01\n",
"of:0.24239194406029652\tin:0.19563634071915004\tto:0.1362604367491558\ton:0.1310081002441743\tand:0.0707973805851991\twith:0.06410075963463062\tupon:0.056297896207759164\tfor:0.04703315621341829\tfrom:0.04647398558621622\t:0.01\n",
"in:0.38029591400114954\ton:0.16482173982930762\tof:0.1127131176858697\tIn:0.09212752924161918\tto:0.06626732594827656\tand:0.060122967531543975\tall:0.04421654188792401\twith:0.03810358670094847\tthat:0.031331277173360914\t:0.01\n",
"and:0.24519449967650758\tof:0.2172617640929614\tto:0.15935517098998783\tthe:0.09070520648266919\tin:0.0731150938525396\twith:0.07128399515673141\ton:0.050983329451135255\tfrom:0.04161693803381323\tas:0.040484002263654346\t:0.01\n",
"that:0.3056112572569548\tand:0.15862136393773946\twhen:0.13771554565839508\twhich:0.11220381270347264\tas:0.05982557705302472\tif:0.059033106732652676\twhere:0.056751645138348746\tto:0.05133083575843716\tbut:0.04890685576097475\t:0.01\n",
"Miss:0.42774402318142685\tand:0.25081895066259113\tof:0.07437675542562927\tMrs.:0.06321797287351347\tsaid:0.05630485498405663\tthe:0.04998362760350464\tby:0.031508362267494865\tMisses:0.021002505164710097\t.:0.015042947837073101\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"and:0.19220644794748779\tas:0.1859057919005764\tis:0.10009244362757397\tit:0.09851922748846435\tup:0.09251153461245032\thim:0.08546142479719043\tfeet:0.08165909139576992\tright:0.07772444346637726\twent:0.07591959476410955\t:0.01\n",
"a:0.4869484608585177\tthe:0.25098111621211555\tof:0.053455536965788794\this:0.047832922616257094\tand:0.04485354857593001\tvery:0.029429732245314946\ttwo:0.027005700410788803\tan:0.02513035675817238\tthree:0.024362625357114698\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"and:0.3200238429875085\twas:0.15652928435215552\tis:0.09709326773306586\tfound:0.08015164216408954\tmade:0.07862935789413894\tare:0.07017134065480195\tthat:0.06393052912122682\tbut:0.06241666336039341\tup:0.06105407173261946\t:0.01\n",
"the:0.386975904723984\tof:0.19023670125614095\tto:0.1035849168576047\ta:0.07639391889267651\ton:0.06913249113784418\tin:0.059927287913355484\tand:0.042576589721090956\tfrom:0.03248263805346595\t<s>:0.028689551443837218\t:0.01\n",
"this:0.19690559058788445\tother:0.1832165483076814\tthe:0.16205097084884215\tof:0.08535106141447825\tall:0.0791743933732819\tpublic:0.07652060414051\tsame:0.07090141833574437\ttheir:0.06880086442602591\tone:0.06707854856555155\t:0.01\n",
"and:0.18840526496416418\tmiles:0.17815989111256372\tfar:0.1301307515363812\tfree:0.11206738138602956\tor:0.08674964397989247\taway:0.08190795143033694\ttaken:0.07413912400076807\tit:0.06984360833477657\thim:0.06859638325508731\t:0.01\n",
"to:0.6589366431093727\twill:0.10780738669957601\tnot:0.052050717951202904\tand:0.04145154069700286\twould:0.040730868491024384\tthey:0.023434275947093727\tI:0.023148522041103296\tmay:0.02140495826992313\tshall:0.02103508679370099\t:0.01\n",
"the:0.34719557809414614\tof:0.22523121420132727\ta:0.15130193155419622\tand:0.09085664885357969\ttheir:0.0462843639013859\this:0.039717227001732205\tto:0.03163717140635318\twith:0.031055511280917304\tin:0.026720353706362093\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"or:0.2403507772449139\tthe:0.19115280510803911\tof:0.14888590881409922\tand:0.14529955637397918\tin:0.0820960940834884\tfor:0.0656356906929594\tto:0.044754199384837635\tabout:0.03655159990691296\tby:0.03527336839077023\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
"a:0.3908930486846145\tthe:0.18867167904185542\tof:0.09214415409818069\tand:0.07976467005100195\tto:0.07962911164204287\tfor:0.06784596297828113\tin:0.03853502516753679\ttwo:0.02653765425807591\twith:0.02597869407841064\t:0.01\n",
"the:0.3301131195789923\tand:0.148288312124348\tof:0.13518356038465232\ta:0.11136441936114233\tThe:0.07209178236459679\tMr.:0.06666880143784547\the:0.044914673416811816\tthat:0.0419426161958475\tI:0.03943271513576336\t:0.01\n",
"of:0.40181434489870593\tfor:0.11257106545887992\tto:0.08883073767382363\tin:0.08454338823437584\tand:0.08178134185799561\tby:0.06968614119086206\twith:0.059291418991032525\tthat:0.055277274525461835\tfrom:0.0362042871688627\t:0.01\n",
"and:0.25418549375648974\tthat:0.20082293093600273\tas:0.15852891768462382\twhich:0.12614343010865073\twhen:0.07219257665021513\tbut:0.05929200578391366\twhat:0.0497658475375204\tif:0.04193286290579575\twhere:0.02713593463678798\t:0.01\n",
"the:0.2734865897411025\tand:0.20291078037112248\tof:0.17703044927706332\tto:0.14197740296400874\tor:0.05428351769639148\tfor:0.03851078262930968\tthat:0.03809577891252831\tas:0.032523212025938684\twhich:0.031181486382534873\t:0.01\n",
"the:0.4783330205535941\tof:0.10696763799699595\tthis:0.08274258994592712\tThe:0.07342300261437862\this:0.060090369066156196\ttheir:0.0571781520563615\tthat:0.04532820732131736\tand:0.04436322222916504\tno:0.041573798216104206\t:0.01\n",
"the:0.3803230215270761\ta:0.30518713928259644\tof:0.07124359266842452\tto:0.06211318274803923\tno:0.05573630019683726\tany:0.03885620493241339\tThe:0.031220078471538456\ttho:0.023994922417993468\this:0.021325557755081163\t:0.01\n",
"the:0.6486580270754396\tof:0.10362075281971127\ta:0.09192376375358918\tin:0.029706247300459787\ttho:0.02921804158908907\tThe:0.028882287775991257\tthis:0.026792648700715536\this:0.016320968153743006\tour:0.014877262831261295\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"the:0.6666908077472047\tThe:0.0921621582270724\tof:0.07468651343228068\tand:0.045602318570373564\ttho:0.030804861525028225\tto:0.023601297631443696\tin:0.023500492531613824\ta:0.017363105316432915\tby:0.015588445018549994\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.23226257295813926\tthat:0.2213516500208345\tas:0.15701596263182646\twhich:0.10054007038092679\twhen:0.07438407586317003\tbut:0.07385335729908371\tif:0.05878632390389569\twhat:0.042549143701917945\tIf:0.029256843240205548\t:0.01\n",
"and:0.4064873935614602\tdays:0.15581209450437378\tthat:0.0782088695968812\tand,:0.07057148430346123\tone:0.06172046287508123\tuntil:0.05830669742019718\tsoon:0.055920175593576246\tyear:0.055182194110219074\tshortly:0.047790628034749795\t:0.01\n",
"boy.:0.4306394857128026\tgirl.:0.4192613590245305\tof:0.0543666810011982\tMr.:0.026371753635673154\tand:0.016909674508036068\tthe:0.014551591435598275\tMrs.:0.011079437656503193\tto:0.009825800810828317\tby:0.006994216214829759\t:0.01\n",
"the:0.3391675329792061\tof:0.13438902981805323\tand:0.1305813677572269\tMr.:0.12434584983274222\ta:0.08517650253412659\tThe:0.06565077811854511\twas:0.042485993892171794\tto:0.0350542723106443\tin:0.03314867275728368\t:0.01\n",
"Miss:0.2391489544940608\tand:0.2106783474259739\tof:0.19759050924514965\tMr.:0.10626619246420044\tD.:0.0644784552530289\tMrs.:0.05377313218393937\tthe:0.040668165704356024\twith:0.039849296679005435\tsaid:0.0375469465502854\t:0.01\n",
"of:0.4707180466829126\tto:0.13071024818776386\tin:0.12401896569520782\ton:0.08113918100431854\tfrom:0.06533950052098039\tby:0.05091620363963509\tthat:0.024836236355551135\tIn:0.021510813376783542\tand:0.020810804536847066\t:0.01\n",
"the:0.5881830465451288\ta:0.27490639332270556\tThe:0.0368742952407851\ttho:0.029994715856919846\tand:0.01628376315127078\tthis:0.012969932735452504\this:0.01286331172130828\tlarge:0.00917289171967748\ttbe:0.008751649706751624\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"to:0.32850904901903855\tof:0.18639488888309066\twith:0.14285352504510687\tfor:0.07681517651808528\tupon:0.07133065974358563\tand:0.0655775628600102\tamong:0.04045871058036777\tby:0.03937498509528775\tfrom:0.03868544225542736\t:0.01\n",
"of:0.17896032679711565\tand:0.17347590152250694\twith:0.11550188896372414\tas:0.10862491898881448\tto:0.09669999432829311\tby:0.08986392149101753\tin:0.08828674975425993\tis:0.07551584426181601\twas:0.0630704538924522\t:0.01\n",
"two:0.7390221559797192\tthree:0.06459636593569343\tone:0.04737415293083196\tTwo:0.03848706662592227\tfour:0.031202825886083738\tfive:0.02248701424491477\tten:0.01821567229869844\tsix:0.015084826833790869\tmore:0.013529919264345446\t:0.01\n",
"years,:0.16270601460719014\ttime:0.12852657470430356\tin:0.12362720187448062\t;:0.11832081493207332\tporous:0.1026614492451613\thundred:0.094376847867295\tit,:0.09322632357261038\tStates,:0.08499726460405177\tmanner:0.08155750859283398\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2890540021005323\tto:0.13978058825181736\tin:0.1272555870273304\ton:0.09753558903871308\tand:0.0775994397492982\tfor:0.07592936988397297\twith:0.0661390779943173\tby:0.06566609001334199\tthat:0.05104025594067642\t:0.01\n",
"away:0.17860153893268557\tand:0.1780373751177418\tthem:0.10854488758228874\ttaken:0.10584621995081835\thim:0.10057586175981237\tfree:0.09248826024146947\tcome:0.07770308824262455\tout:0.07678778929530623\tin:0.07141497887725298\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"a:0.43504948680228767\tin:0.11189837727096849\tof:0.10470973472064639\tand:0.08471291840032248\tthe:0.06690693864113559\tto:0.05948518387483224\twith:0.059188186350363124\tmost:0.04069391568858269\tis:0.027355258250861287\t:0.01\n",
"the:0.38002804482052044\tsuch:0.1641318649327644\ta:0.13142211818575852\this:0.08679248004689967\tas:0.06843850192426508\tthis:0.0587515367368183\tsame:0.036342257213315035\tThe:0.03608842444944616\tmy:0.028004771690212354\t:0.01\n",
"a:0.3034513387105832\tthe:0.2984568231328004\tand:0.12760327494223733\tof:0.05628268333170367\tThe:0.046689175453425574\tour:0.04508603390368887\this:0.04088477904455275\ttheir:0.03820633114278837\tits:0.03333956033821975\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.31761134440032757\tof:0.21987340130616442\tand:0.13801279815457787\tto:0.07928458824357053\ta:0.061835950467582654\tin:0.0574951852264383\t.:0.04701858444781324\tat:0.0370379077792702\tby:0.031830239974255284\t:0.01\n",
"the:0.2895740290395114\tof:0.17373506185125653\tand:0.16506367628021845\tto:0.10360219768344171\ta:0.09228084386837633\tin:0.055230445114867514\tat:0.04724247957281733\tor:0.036136735864220254\tThe:0.027134530725290443\t:0.01\n",
"to:0.171550035881436\tof:0.1636456804758561\twith:0.15664525638705806\tis:0.11732254945198059\tin:0.10101969105808206\tas:0.07494995911715982\tfor:0.07407456025808783\twas:0.07172729007048462\tand:0.05906497729985495\t:0.01\n",
"and:0.2953876189038615\twas:0.16428490131166157\tis:0.1170663883818668\tup:0.07776716508545514\tit:0.07559106251500251\tmade:0.0665568090126541\tput:0.06578409847025994\tplaced:0.06489134807601946\tthat:0.0626706082432191\t:0.01\n",
"the:0.4149734693033643\tin:0.20760297066235897\tan:0.10022064754484085\tsuch:0.06497757508289657\tand:0.054237063045515996\tof:0.04168949349247\tIn:0.036000727369845394\tthis:0.03567904889723297\this:0.03461900460147507\t:0.01\n",
"the:0.6846034722915979\tan:0.09298850419299594\tThe:0.04485260802506616\tgreat:0.04043108907803816\ttho:0.032290072256264166\tlarge:0.029437125695166738\tand:0.026406323962641462\tsome:0.021428684129734598\tvast:0.017562120368494836\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"time:0.1559679530635385\tit,:0.13600874058768753\tup:0.11246985927328501\tman:0.10623814279706979\tthem,:0.10347043307405673\thim:0.10318427005950455\thim,:0.09361317067455117\t;:0.09246489830305783\tone:0.08658253216724887\t:0.01\n",
"the:0.3921991039846004\ta:0.18844912142051093\tof:0.10407115466546792\tto:0.0809425540898906\tand:0.07215935360434142\tin:0.05123472060167176\this:0.03679716027265396\tThe:0.03585714115801244\tan:0.02828969020285051\t:0.01\n",
"a:0.42086393949752127\this:0.18642528079565196\ther:0.11830240749261883\tmy:0.0951999690629095\tthe:0.06495741262976322\told:0.027421777367490137\tyour:0.026939419601908154\tA:0.025587486250840945\ttheir:0.024302307301296056\t:0.01\n",
"of:0.3610073807642417\tthence:0.12511578315424451\tsaid:0.11486844865569695\tand:0.10729888012458444\tin:0.07414091731824198\ta:0.07181504815182896\tthe:0.05497395811378524\tcertain:0.0418739410059273\tone:0.03890564271144881\t:0.01\n",
"to:0.4334881165261762\tfor:0.1525222799559408\twith:0.12750982282528658\tof:0.0764195111845576\ttold:0.05718641798259619\tupon:0.038484425247760704\ttell:0.03677412569099341\tat:0.03627727727686218\tasked:0.03133802330982641\t:0.01\n",
"of:0.17917073582946524\tto:0.15236279741976758\tas:0.14262546639499002\twith:0.10528926783582769\tthat:0.09115667470795734\tby:0.08664289509401094\tand:0.0833596073724158\tis:0.07625186121936062\tin:0.07314069412620476\t:0.01\n",
"of:0.4061718721844183\tto:0.12549127481807346\tthat:0.11646835314454528\tby:0.09842653733529988\tand:0.09807313009608123\twith:0.04982855422007516\tfor:0.033121613173140343\tas:0.03243387979934149\tall:0.02998478522902498\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"June:0.15230349775006338\tApril:0.1456620533606881\tMarch:0.13135127365496677\tNo.:0.12921209412581577\tand:0.1233451940349386\tJuly:0.10546172790730368\tMay:0.10339493004342781\tJanuary:0.051593325927799374\t9,:0.04767590319499632\t:0.01\n",
"be:0.321798279653354\twas:0.22607929606996022\tis:0.11555268340459754\tbeen:0.08280142631406814\twere:0.07933172325945875\tare:0.07167472862755213\tand:0.037434115987007154\tbeing:0.03164234994941285\the:0.023685396734589307\t:0.01\n",
"and:0.39592052656256477\tor:0.2111087709052633\tnot:0.14239260915573346\tthat:0.05947793260518965\tto:0.04394050458110337\tbut:0.04097131562667686\tis:0.03323298855980717\tof:0.03149208507312613\twas:0.031463266930535264\t:0.01\n",
"and:0.5017195741537963\tthe:0.18893552363021424\tof:0.07840709856510898\tto:0.05640875085136596\t.:0.043483649160566705\tis:0.03320502271593281\twas:0.031855943124794374\tbe:0.028376319340608667\tMr.:0.027608118457611942\t:0.01\n",
"of:0.2416491351859251\tto:0.1832545713821549\tin:0.18066095224706363\tand:0.0723543373838205\tfor:0.0714048322147051\tfrom:0.0697833737011476\tat:0.060990206771319826\ton:0.057596628937208884\tthat:0.05230596217665454\t:0.01\n",
"the:0.3332668131333577\ta:0.1442889191494264\tand:0.1056533995900426\tof:0.09579032167733698\tMr.:0.09530345647523054\tThe:0.09097967814664698\twas:0.0491494216272524\this:0.038967664250979694\tis:0.036600325949726606\t:0.01\n",
"it:0.29597062880021136\tthat:0.21180294773043418\tIt:0.13674360229824284\tand:0.11211529399854098\twhich:0.07508338905849231\the:0.04848470232276244\twhat:0.039401724609431116\tThere:0.0373784732710012\tthere:0.033019237910883424\t:0.01\n",
"the:0.40371444805137874\tof:0.1607309033259285\tand:0.12365554278272142\tto:0.07483764899065926\ta:0.06995233317686957\tin:0.050802715757777034\tby:0.0387345612044851\ton:0.037612118909813724\tat:0.02995972780036658\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"it:0.208109561462589\tI:0.13329059645584243\the:0.1310394831164381\tIt:0.10003560896983764\twe:0.09853154703362994\tthat:0.08680590198510074\tthey:0.07893219168108244\tand:0.07667423740586314\twhich:0.07658087188961663\t:0.01\n",
"the:0.3744960402735969\tof:0.15940723532675158\tand:0.14534201444509587\tto:0.09432571295211789\tat:0.0652289837193639\ta:0.042123600837813684\tin:0.04138422098967596\t.:0.0383707852834731\this:0.02932140617211125\t:0.01\n",
"and:0.1721257114275035\tto:0.141229607675882\tthe:0.13137377675651957\tof:0.11621693267090508\tin:0.10354346396898301\tbe:0.09840216971668114\twas:0.0976881448895947\tis:0.08081319004651072\tnot:0.048607002847420214\t:0.01\n",
"they:0.2946041178611575\twe:0.19093322601986337\twho:0.11425861054862588\tI:0.0928114507024977\tto:0.08097024866427911\tWe:0.0676129112733437\tThey:0.06166917594013235\tyou:0.051794651888107106\twill:0.03534560710199338\t:0.01\n",
"of:0.25072713718031603\tto:0.15619896133241645\tthe:0.13392214282768197\tin:0.12345432144591335\tand:0.10141454995674465\tfor:0.07166290825950047\ta:0.06617188690466556\tthat:0.04668643638690739\tbe:0.03976165570585397\t:0.01\n",
"a:0.344949301397022\tthe:0.2503627141006165\tand:0.12028031737605935\tof:0.08797217140279699\tmost:0.054266689152250754\tthis:0.03903610115892046\tis:0.032004289498264754\tthat:0.031069462666765368\twill:0.030058953247303795\t:0.01\n",
"the:0.308470707389144\tof:0.2301640666171046\tand:0.10416687742321015\tfor:0.0732518656365279\tby:0.07098096633149514\tto:0.06907085772227663\tThe:0.06106575074813673\ta:0.03675637592458407\tin:0.036072532207520894\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"it:0.24112649263459637\the:0.17660792899787944\tIt:0.1713624494321809\tI:0.08209974212840981\tHe:0.07828896755119588\twhich:0.07500438521777203\tand:0.06286527553672039\twho:0.0534546761422916\tthere:0.049190082358953446\t:0.01\n",
"the:0.45072442068859575\tof:0.15863699663840108\tto:0.08274862814216809\tin:0.07934149181786487\tand:0.06519368185071724\ta:0.04745882399311515\tat:0.04172253319245968\tby:0.036321053813860485\tthat:0.027852369862817552\t:0.01\n",
"the:0.4833168355429499\tof:0.20523049878892005\tand:0.08817931746489274\tby:0.060307876068150065\tThe:0.049056160810079553\tan:0.02955368046350953\tthat:0.025861637632834722\tin:0.02440061691399272\ttho:0.02409337631467071\t:0.01\n",
"the:0.31130843731237823\tof:0.1584857711392948\tto:0.14412165081006315\tand:0.13716019892257106\tin:0.060555721576201066\tthat:0.051262821204911366\tas:0.043902780853996286\ton:0.04369654593973089\tby:0.03950607224085328\t:0.01\n",
"the:0.45266001087917496\tof:0.14025585785713562\tin:0.0800698265950681\tand:0.07385946315084929\ta:0.06053366824126871\ton:0.05734498863209498\tfeet:0.047356868498301286\tto:0.04683971494983614\tthat:0.031079601196270935\t:0.01\n",
"the:0.21298000459552283\tand:0.2039636710878841\tof:0.18227586657211736\tto:0.0947332508750933\twas:0.07100993380022316\tin:0.06763282217115012\tfor:0.05552798378335023\the:0.05223279322482916\tMr.:0.04964367388982969\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"it:0.2399716716596697\tIt:0.21433270134211957\the:0.12038279747315722\tthere:0.10015927291106927\twhich:0.08512165220552412\tHe:0.0716761036709304\tthat:0.060653216456978784\tand:0.05801456547251138\tThere:0.03968801880803956\t:0.01\n",
"we:0.19038329624736097\tthey:0.17223557018284583\tyou:0.14389864822319592\tit:0.09960256616073718\twho:0.08610526948743723\the:0.08601628635108716\twhich:0.07731117232408055\tI:0.06969991005118724\tthat:0.06474728097206793\t:0.01\n",
"thence:0.5294595794042971\tbears:0.09876576294911563\tand:0.08014325837815826\t.:0.07008620846392796\tthenco:0.05326785135443247\tthe:0.04500472813285633\tMrs.:0.039050810199589156\t<s>:0.03806686576221567\tof:0.03615493535540751\t:0.01\n",
"the:0.6057276983356655\tThe:0.10450059456015466\tand:0.07549151141459098\this:0.052905134105849384\tof:0.04099588645411607\ta:0.04017817505383594\ttho:0.0311490024748505\tthis:0.021023181247273953\tthat:0.018028816353662977\t:0.01\n",
"the:0.2856890660809918\ta:0.23551547720680457\tof:0.13236864268290663\tand:0.12284846927410603\this:0.05532469288937335\tin:0.04464200712888527\tas:0.03976371240465586\tthat:0.03730025240351172\tpublic:0.0365476799287646\t:0.01\n",
"at:0.42445441909319803\tfor:0.22290251391824398\tof:0.06520661733034973\tand:0.06311850992461512\tas:0.05690741473885778\tin:0.050277417537573796\tto:0.03723060734302966\tis:0.03524549079211603\tsuch:0.03465700932201601\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.40680787259340423\tto:0.139361898588153\tin:0.1306645206900648\ton:0.1101482636883288\tby:0.05340982179595688\tfrom:0.04702704145476806\tfor:0.04023781879941364\tat:0.035073914006029466\tand:0.027268848383881168\t:0.01\n",
"the:0.7427604872708808\ta:0.05927579336201082\tThe:0.059057941527509865\this:0.03806396544134558\ttho:0.03490924624682962\ttheir:0.015989344228010162\ttbe:0.014273047963562465\tof:0.014114736410407457\tmy:0.01155543754944316\t:0.01\n",
"of:0.22294287118162306\tto:0.16954636300418283\tin:0.13933979911716232\tand:0.10501442334651247\tfor:0.08848941708020296\twith:0.08366208779805417\tby:0.06910793570784933\tthat:0.06289431407531326\tis:0.04900278868909961\t:0.01\n",
"the:0.3214041359971408\tand:0.20179318883020006\tof:0.12588307338100727\tto:0.10017517439786253\ta:0.08758707951885228\tI:0.04963988657451443\tas:0.0370179689670886\tthat:0.034835832000480516\tin:0.0316636603328533\t:0.01\n",
"and:0.3746026301460157\tfeet:0.1653818897144167\twas:0.10305855227334607\tlot:0.08838752800187237\tinches:0.0662863195927131\tis:0.05253520310014759\tthat:0.04995053102058167\trecorded:0.048358457774489993\tare:0.04143888837641683\t:0.01\n",
"made:0.2639673176569578\tand:0.2547708918514413\tthat:0.10083217744114822\tsecured:0.08971698227607519\tor:0.0864293212256963\ted:0.05001693507256943\tonly:0.04910181187121298\tit:0.04839184021791324\ttaken:0.04677272238698547\t:0.01\n",
"the:0.2760366028263551\tof:0.2675918249759311\tto:0.07904276531570611\tfor:0.07448477805745651\tin:0.07337051071743202\ta:0.06848022648911889\tand:0.06721102443445709\tby:0.051515023103596874\tat:0.0322672440799462\t:0.01\n",
"and:0.439886296959857\tso:0.09547585128943607\tis:0.08907895551602692\tof:0.0823664012409444\twas:0.07965787154381505\tfact:0.05433436996643328\tall:0.05175625578671504\tto:0.051026597362779647\tbut:0.04641740033399255\t:0.01\n",
"they:0.23364138526239633\twho:0.13900208200299138\twe:0.12732876218965317\twhich:0.12275187738233093\tthere:0.10656228561072974\tthat:0.07477931782100233\tThey:0.06349607118679011\tand:0.06127631025927464\tWe:0.061161908284831416\t:0.01\n",
"of:0.3863750797625567\tto:0.21982466373845239\twith:0.07512938711264021\tfor:0.06608932545552364\tin:0.06363175120233355\tby:0.06332151149630837\tand:0.055036118459545404\tfrom:0.031521644432272504\tas:0.029070518340367297\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"and:0.2275568136184341\tof:0.198357135738386\tthe:0.1750661188511791\tto:0.07855314553146203\tfor:0.06714821591926588\ta:0.0663876628110636\tthat:0.06195441710685245\twhich:0.06002681078592804\tor:0.05494967963742877\t:0.01\n",
"they:0.2749327626929498\twe:0.13590570647938507\twho:0.12882957363903988\tthere:0.09567113841470547\tThey:0.0898599572025549\tyou:0.08205227818142831\tWe:0.06937728047151177\tThere:0.057400811906928084\tand:0.055970491011496676\t:0.01\n",
"and:0.27385030718268744\tit:0.12506175564941835\tcalled:0.08675343921571417\tdemand:0.0860856228281942\tpaid:0.08604748032759993\tvoted:0.08581097652378188\thim:0.0833604749241101\ttime:0.08231594606160822\tnecessary:0.08071399728688569\t:0.01\n",
"it:0.18748910177213593\the:0.17662068303563777\tIt:0.13941236227314263\twhich:0.11807200366700182\tand:0.1115313428042673\tI:0.08995567727834793\tHe:0.07187598504226575\tthat:0.053773577463843154\tshe:0.04126926666335773\t:0.01\n",
"it:0.1912037633768029\tand:0.14181893477537585\tthey:0.12842954853076882\twhich:0.10681691350284597\the:0.10149412192147439\tIt:0.09453437728173905\tthat:0.08217827055419531\tyou:0.07728264721486483\tI:0.06624142284193282\t:0.01\n",
"the:0.7272891855760508\ta:0.052097282772508746\tThe:0.04597605731610108\ttho:0.040705108795815244\tand:0.03629475715933021\tany:0.025669751104035323\tall:0.02515341393897254\tor:0.019281226351317952\ttbe:0.01753321698586822\t:0.01\n",
"of:0.20509868068331527\tthe:0.18992360083848198\tand:0.1627077320911976\tto:0.11166884988859471\tbe:0.0979632635341338\tin:0.06540848799261574\tor:0.058966420912407294\tfor:0.05013839373631626\tre-:0.048124570322937356\t:0.01\n",
"of:0.22456024436816038\tthe:0.20117778106856923\tand:0.10619374617380355\this:0.10332539318436118\tto:0.08102461410218827\ta:0.07954544539433554\tin:0.07911015684195771\ttheir:0.0769526200091699\tour:0.038109998857454246\t:0.01\n",
"and:0.16051538492039444\table:0.12584552037456037\torder:0.12023274904774982\thim:0.10411986755347347\tis:0.10230358199714916\twas:0.09725639894996213\ttime:0.09647037435760988\thad:0.09226467812513447\tas:0.09099144467396625\t:0.01\n",
"and:0.2788534873815524\tto:0.1435451524423543\tof:0.13461447217554892\tthe:0.12220030186827203\tthat:0.07785718684489257\tin:0.06784839561234364\twhich:0.05828167705261113\tnot:0.05732114148116861\tcon-:0.04947818514125636\t:0.01\n",
"of:0.24735268988479495\tin:0.24484806076197993\tto:0.15594088199570844\tand:0.07706464077438069\twith:0.07698385669709623\tat:0.057764743802529536\tfrom:0.0435407875581086\ton:0.043350193652298676\tfor:0.043154144873103005\t:0.01\n",
"of:0.24593215515394143\tand:0.1707824568870435\tthat:0.16369030182146502\tto:0.12106757313005373\tin:0.08511033195111972\ton:0.07248105661865158\tfor:0.0511613331399167\twith:0.04344113687743714\twhich:0.03633365442037128\t:0.01\n",
"it:0.1549390830752105\tthey:0.14656059333886484\the:0.13908267245488537\twe:0.12728224084167997\tI:0.09122756863522546\tas:0.08975804965004193\tyou:0.08475422370845172\twhich:0.07866054708868901\twho:0.07773502120695128\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"Mr.:0.18921600881887063\tof:0.13214556079801804\tMrs.:0.11254952038613564\tand:0.10263205381155144\t.:0.10136380651001665\tto:0.09857345726643298\tJohn:0.0921101283780381\tW.:0.08483692172376635\tA.:0.07657254230717016\t:0.01\n",
"of:0.4155941699781437\tto:0.12981685482713856\tand:0.09050290718666609\tat:0.08064132708488395\tin:0.07085824581652707\tthat:0.06664357158087335\tby:0.047684825901929094\tfrom:0.04517056708374157\ton:0.04308753054009657\t:0.01\n",
"of:0.3008033259354469\tin:0.18549824520929936\tto:0.10475599255314552\ton:0.08619343440248727\twith:0.08233468406758201\tby:0.07864708768797682\tfrom:0.06473429515482454\tand:0.05379907621538125\tfor:0.03323385877385637\t:0.01\n",
"the:0.4411458400749896\tand:0.11154959254405168\ta:0.1090770224306174\tof:0.10894118218557693\tto:0.06154664581779171\tThe:0.04766284208676802\tby:0.037984487211313436\tMr.:0.03642529729725192\tin:0.035667090351639404\t:0.01\n",
"out:0.16588171371588217\tsum:0.15589868038760057\tinstead:0.11598040831256436\tthat:0.10466121841179767\tpart:0.09593771680403297\tthink:0.09555343744101769\tuse:0.08601987461114398\tmatter:0.08512216993569434\tnumber:0.0849447803802663\t:0.01\n",
"and:0.22457484791693796\tthe:0.21639535452019124\tto:0.1345470860660392\tof:0.12749301081947784\tin:0.06553649397530097\tthat:0.06165198815741721\twhich:0.05973289088305547\ta:0.0536871595894554\tor:0.04638116807212473\t:0.01\n",
".:0.21036562828964303\t<s>:0.16442881718914243\tMr.:0.1308898353384458\tthe:0.12309158607077199\tlot:0.08746011318909586\tand:0.08305372778876756\tit.:0.0662314712104476\tit:0.06344126372629734\tthem.:0.06103755719738842\t:0.01\n",
"of:0.29500553680670677\tin:0.1848535660147931\ton:0.1213719689551109\tto:0.1205777213889792\tby:0.06355635105467132\tat:0.05745685978970231\tfrom:0.05608170760122424\tand:0.05163772690203095\tIn:0.03945856148678132\t:0.01\n",
"is:0.1890032924792802\tin:0.1491902834677176\twas:0.14583552126665178\tmade:0.10014497425536109\tfor:0.0922588305876809\twith:0.0846065884140486\tas:0.08281651482967825\tmake:0.0808565679440371\tbe:0.0652874267555445\t:0.01\n",
"it:0.3349641634608517\tIt:0.2821273905989333\the:0.07518402809182298\tthere:0.07313812428280234\twhich:0.06380231169616617\tthat:0.051641987265936634\tthis:0.037152031399155926\tThis:0.03608899998186505\tand:0.03590096322246592\t:0.01\n",
"and:0.26388277994412696\twas:0.11712981377404111\tthat:0.10827086469130277\tbe:0.1009377095531898\tis:0.09973611309461755\tor:0.09305953265726254\tmade:0.07293175294235847\tit:0.07026615073250055\tare:0.06378528261060036\t:0.01\n",
"and:0.22548804382211918\tof:0.16551647653467494\tthe:0.10910891880260937\tto:0.10236234663377487\tin:0.09510539189201721\tbe:0.094972658901539\tI:0.07406902428534616\twas:0.0643687000531\tis:0.059008439074819334\t:0.01\n",
"of:0.42755577353566043\tin:0.1865452834113235\tby:0.07352165925423769\tIn:0.06358112505921852\tto:0.05507871225979129\tthe:0.05252408122503186\tand:0.05100783600373982\tfrom:0.04743958579998272\t<s>:0.03274594345101411\t:0.01\n",
"of:0.3257637842611308\twith:0.1373038856064581\tto:0.13037538373092789\tin:0.08412838847283124\tand:0.0732076037304758\tthat:0.07288272849614953\tby:0.06289993231423056\ton:0.05481554509470698\tfor:0.04862274829308918\t:0.01\n",
"of:0.316541242649545\tin:0.24199463784394065\tand:0.09493422049428944\tfor:0.08819314228611866\twith:0.08023114055533984\tto:0.05341609850149769\tIn:0.051320555091664714\tthat:0.03657790026605783\ton:0.026791062311546262\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.4328202584845207\tof:0.1235618329222373\tin:0.11928845566630558\ta:0.07964278467044411\tto:0.06301338093423667\ton:0.05154769300761268\tIn:0.043753664885299366\tThe:0.038656790168542045\t<s>:0.03771513926080151\t:0.01\n",
"the:0.43713230786375945\tand:0.22308040928444417\tThe:0.09729694718985815\ta:0.09700356383840773\tof:0.04043772653792659\ttho:0.03066167912455136\tthat:0.025188874716014033\tany:0.022387517290763832\tor:0.016810974154274745\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"the:0.456441924385728\tland:0.32223354349440825\tThe:0.07598026907584385\tand:0.06633200570622648\ttho:0.020956558225520318\ta:0.01632754563117295\tas:0.015204954414047806\tor:0.008276003890209183\ttbe:0.008247195176842945\t:0.01\n",
"is:0.2111271106684822\tand:0.18869826266459827\tof:0.18095419927118658\tit:0.09220047929124552\tare:0.07841792341867455\twas:0.07512798969824042\tnow:0.062241829594564584\tsame:0.05486191589670676\tfrom:0.04637028949630104\t:0.01\n",
"at:0.30280723103896673\tAt:0.1174662881417516\tin:0.1150215583896665\tany:0.10611951814819015\tof:0.0898088269509941\tto:0.08032805804682315\tand:0.07293248464823272\tno:0.054578029587602155\tfrom:0.050938005047772725\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"of:0.2849854145479755\tthe:0.19110664877206512\tin:0.16527432962541247\tand:0.08961911046956546\tfrom:0.05812517884405022\tat:0.0529175859907504\tto:0.05212621672161715\tIn:0.050379942932115986\tThe:0.04546557209644765\t:0.01\n",
"and:0.32258062634490264\tthat:0.15272727884817391\tin:0.11520228024842907\tthe:0.09302133211012242\tland:0.06785736568709232\toffice:0.06749463182854286\tcounty,:0.05783778188858248\tproperty:0.057439675802765655\tacting:0.05583902724138857\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.22761283493453946\tof:0.19557227273378142\tto:0.18466062832019614\tin:0.1455679549242983\tfor:0.07299359644416963\ton:0.06604810127485626\tIn:0.03602289625574455\tthat:0.031094227437958148\tat:0.030427487674456178\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"cents:0.31542625608318736\tcent:0.1254228993759165\t50:0.09264349637706397\t6:0.08921633723670536\t10:0.08884641905137729\tten:0.08541170134224631\t5:0.07193334955724522\t1:0.06285224375453895\t2:0.058247297221719195\t:0.01\n",
"the:0.47165822389602335\tof:0.2389176384655618\tand:0.07743617614740854\ta:0.048075246941742124\tThe:0.03622067938431858\this:0.035246047107332396\tin:0.03494548008633927\ttho:0.026893721608866213\ther:0.02060678636240779\t:0.01\n",
"and:0.3285352521060897\tto:0.2356684012251262\tI:0.0799222523720395\tnot:0.07164174015926374\twould:0.07051661285507241\twas:0.05361760288120929\twill:0.05206555957952194\twhich:0.05012991672119107\the:0.04790266210048614\t:0.01\n",
"know:0.3024290307637485\tof:0.12813023487724573\tfrom:0.11495091389589739\tand:0.10940822870905184\tis:0.09609027585981006\tdo:0.07324660287086625\tfor:0.06509432281973947\tto:0.06089299058123531\tin:0.03975739962240542\t:0.01\n",
"of:0.2285902567726564\tfor:0.21815201034114048\tin:0.13888285607061907\tto:0.12517232476392773\twith:0.07497818796110013\tand:0.06741074288863894\tby:0.05473212852392818\tall:0.043937146276513746\tthat:0.0381443464014753\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"the:0.20674797625342994\tmost:0.17620587257556372\tan:0.13474309810719934\tand:0.12893418046622074\tof:0.1021580489749501\tmore:0.0926096827830733\tto:0.04627656743730645\tby:0.04052254889375652\tvery:0.033605863432406576\ta:0.028196161076093237\t:0.01\n",
"to:0.3505603649752206\twill:0.15048933505503428\tnot:0.0881471332500264\thave:0.08703494123318041\thad:0.08603794635419257\thas:0.06944860824791743\tbe-:0.057385290826557724\twould:0.05536540083354279\tand:0.04553097922432777\t:0.01\n",
"the:0.656173142382044\tof:0.07923645990316047\tand:0.06647368971156722\ta:0.05148503295394541\tto:0.03585386974389006\tsaid:0.032404411983762725\ttho:0.02464462105721801\this:0.02417307988758146\tThe:0.01955569237683078\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"and:0.2591767401702746\twas:0.17094916037156466\tis:0.14492190650532719\tbe:0.1051157665376932\tare:0.10208480374009735\tbeen:0.06608000771107708\twere:0.058077117631772576\tnot:0.05463914526714367\tor:0.028955352065049733\t:0.01\n",
"have:0.145951275446566\tis:0.13837006259238568\thad:0.11688774051984978\twith:0.11654514842459407\tof:0.11322685363794845\twas:0.1082853118593383\thas:0.09211967950388276\tin:0.08337707955398291\tto:0.0752368484614521\t:0.01\n",
"be:0.3195971169570429\tis:0.1541733560733397\twas:0.13232786923044024\tbeen:0.11381166155722261\tare:0.09521982237394791\tand:0.06577386634604025\twere:0.055746798101000986\tbeing:0.029712850981520728\tIs:0.023636658379444557\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"it:0.23219976727391295\tcarried:0.1446457858323841\tgo:0.11658551214362323\tthem:0.11239928953359178\twent:0.11076509503637004\tcome:0.08105834113664985\ttaken:0.0700091437197063\tget:0.06198208363829477\tset:0.060354981685466755\t:0.01\n",
"and:0.28806300274383356\tto:0.20112892298352805\tof:0.09460268142118539\tthe:0.08288674383970855\twill:0.0809404381507124\tfor:0.0770407267216699\twould:0.06740392475116808\ta:0.05371990191829028\tin:0.04421365746990392\t:0.01\n",
"the:0.7540228551830757\tThe:0.058142073740576644\ta:0.0539804020999181\ttho:0.038774560378004266\tof:0.023398268207192603\tand:0.02018071241399254\tlarge:0.01696895767067475\tin:0.013193401129384332\ttbe:0.011338769177180982\t:0.01\n",
"the:0.3053145458021772\tof:0.23944327793797418\tand:0.10186753215967499\tto:0.09413092095757924\tin:0.07915851481953468\ton:0.05830942932311769\tfrom:0.03980429943428041\tthat:0.03651819879865695\tby:0.03545328076700468\t:0.01\n",
"and:0.3359723945695816\tfact:0.1316189254902583\tsaid:0.10667449643560811\tso:0.08713045707286649\tis:0.07379644658727269\tsay:0.0657800671011853\twas:0.06486039920086528\thim:0.06351804887687972\tfound:0.06064876466548251\t:0.01\n",
"the:0.3541821997694099\tof:0.17760360756499496\tand:0.1471883714303881\t.:0.08205790683962459\ta:0.06524705296088848\tto:0.05355154164107841\tby:0.039208946540064446\t<s>:0.03749824721867208\tin:0.03346212603487897\t:0.01\n",
"a:0.27654211849038535\tthe:0.2102644650401599\tcommon:0.1242516091991719\ttheir:0.08784539330443344\tno:0.07008442701200977\this:0.06870914724619834\tany:0.05632270705004369\tgood:0.05119389186455919\tevery:0.04478624079303835\t:0.01\n",
"of:0.2670355486601311\tto:0.19225996412432841\tin:0.15443007011739734\ton:0.09456056970691011\tand:0.07647120420477634\tfor:0.053887877966695516\tthat:0.05261361626014018\tby:0.051097379839953334\twith:0.04764376911966775\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"to:0.6316540815799173\tand:0.1231141508342615\tnot:0.06277325490644305\twill:0.04145507850303061\twould:0.03660342040968496\tmay:0.0334921703630674\tshall:0.02220568511620704\tI:0.020147370697207012\tthey:0.01855478759018108\t:0.01\n",
"the:0.42549551516069467\tof:0.21476799142234113\tto:0.06757034220426456\tor:0.06202725984893877\tsuch:0.051143785415418405\tand:0.04776196446708705\tthat:0.045116554870510986\tno:0.0417060598231011\tpublic:0.034410526787643364\t:0.01\n",
"of:0.3683223175581134\tin:0.13659339845286694\tat:0.11373240816098139\tto:0.08697982637729515\ton:0.08574815272875798\tfrom:0.06627475134348777\tfor:0.062027223146103955\tand:0.036977885350979255\tIn:0.033344036881414095\t:0.01\n",
"of:0.21638946947444745\tin:0.20423348175425463\tat:0.15075323883413538\tto:0.14668903892505358\ton:0.06857622194656741\tand:0.05639119996198331\tfor:0.0534935206651662\tfrom:0.05139753040132217\twith:0.042076298037069804\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"of:0.19287996100052976\ta:0.18662123382687812\tand:0.16243417411192806\tthe:0.15014854610097186\tin:0.0841018756545828\tto:0.08307592733470334\tan:0.054843367794159915\twith:0.0396420789354538\twhich:0.036252835240792314\t:0.01\n",
"the:0.4897360709101722\tthis:0.16351358785468953\tof:0.09538475135490752\this:0.06177819017089488\tour:0.043020406695468555\tan:0.03901642663343072\ttheir:0.03505262032963291\ttho:0.0326449071303827\tThe:0.02985303892042085\t:0.01\n",
"the:0.6848928680678725\tThe:0.10344291519459031\ttho:0.0676455546905999\ttbe:0.027412794313881272\tand:0.024700098381551325\tthis:0.024092156915357155\ta:0.022704968344009955\tof:0.020652823084463104\this:0.014455821007674402\t:0.01\n",
"the:0.4603784127924601\ta:0.42585855642156767\tthis:0.04376442026743218\ttho:0.013600815003290788\tThe:0.011934442357017743\tthat:0.011527720307080151\tand:0.008355242863484231\tno:0.007371882744481548\this:0.007208507243185423\t:0.01\n",
"be-:0.3867499885401842\thereto-:0.1507790638925999\tthere-:0.14159342100430042\tbe¬:0.12329552693505395\tbe­:0.10824944240336765\tbe:0.024655583314334095\tthere¬:0.022961955303403524\tand:0.017887248019243247\twas:0.013827770587513031\t:0.01\n",
"of:0.3482294701249243\tthe:0.190571289416577\tto:0.115217267833398\ta:0.11134868846456372\tand:0.07796373502611535\this:0.04459608610919419\tfor:0.03631886815662247\tsaid:0.03386896683593603\tin:0.03188562803266901\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"carried:0.17040125985848936\tit:0.1679315550452508\tgo:0.13040421937488214\twent:0.11948507843961408\tthem:0.09337344122684675\tcome:0.08223802930518782\tget:0.07922955608411111\tcame:0.07905980171435324\tsent:0.06787705895126461\t:0.01\n",
"the:0.2872663646311744\tto:0.18947769570243447\tand:0.14707524285860893\tof:0.1019447871031677\ta:0.07291442879405219\tin:0.050952865059828455\twith:0.049975166605908075\tfor:0.045917275260894126\tor:0.04447617398393168\t:0.01\n",
"and:0.25645110416229777\tof:0.19389816431079487\tfor:0.12090145096051996\tor:0.09538767995442836\tto:0.09188134719253997\tsection:0.06021095701250293\tat:0.0590081193356714\tthe:0.056291164986345905\tin:0.05597001208489882\t:0.01\n",
"or:0.21240619238446248\tno:0.1822122685984337\tand:0.12767223274374573\tmuch:0.09830072902062684\tof:0.0914534110474893\tany:0.086652930526645\tthe:0.06967616007864884\tfor:0.06353448640974192\ta:0.058091589190206135\t:0.01\n",
"men:0.2624533401248378\tman:0.11372269830104316\twomen:0.09735068466645061\tup:0.09171475096694619\ttime:0.08897177207882427\tPresident:0.08509203955591872\trights:0.08453156240470007\tpower:0.08344907554248632\tlabor:0.08271407635879299\t:0.01\n",
"the:0.6542120219603469\tand:0.0817529556670367\tof:0.0681866080980329\ttho:0.04143515862244505\this:0.03802622381820678\ttheir:0.031160824222477585\tThe:0.027641709452277716\ther:0.02721262597774396\ttbe:0.020371872181432434\t:0.01\n",
"the:0.17281410908385272\tof:0.15630351248763086\tand:0.15213688363374916\tby:0.11101424669050772\tto:0.09569286014401351\tfor:0.09114290166283409\tin:0.08166134057966576\ta:0.07312267833963282\tor:0.05611146737811325\t:0.01\n",
"the:0.6785336253636738\ta:0.07762191982812573\tof:0.0759430796937583\tThe:0.03842360456019856\ttho:0.03563580187403085\tin:0.029954816061519236\tand:0.02375925082890912\tby:0.01629183629400384\twith:0.013836065495780498\t:0.01\n",
"in:0.2859506251397239\tof:0.20377586534662223\tto:0.09543973276895225\twith:0.08727538445337295\tunder:0.07919884908982028\tand:0.06490226194623154\tIn:0.06218133281067967\tby:0.06002543851543201\tfor:0.05125050992916528\t:0.01\n",
"the:0.20311831739028638\tof:0.20305663768115753\tand:0.17532910741274838\tto:0.14453616937158853\ta:0.07322905923217755\tnot:0.054292511375099765\tfor:0.05143255119241882\tis:0.045661229570040096\tI:0.03934441677448293\t:0.01\n",
"a:0.4342103493686322\tthe:0.28127427940390076\tlarge:0.13107432102392513\tA:0.04765830538767432\tThe:0.04331646657401486\tgreat:0.017644277772326085\ttotal:0.013916780429481905\tand:0.011073407679680021\ttho:0.00983181236036464\t:0.01\n",
"the:0.27025998949320806\tbe:0.1667615494301674\tand:0.15514881048106094\tis:0.13603273902058116\twas:0.06302110024694538\tare:0.05426028968726214\tThe:0.05044788774171876\tnot:0.049458538376593454\tof:0.04460909552246275\t:0.01\n",
"the:0.701247410834918\tan:0.07404120392987977\ttho:0.050855958770301635\tThe:0.04163599818727612\tof:0.03210136110969216\ta:0.02851662709572429\tand:0.024839551120162576\this:0.020657582837814638\ther:0.01610430611423079\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"be:0.178803407350363\twas:0.1756868828845475\tis:0.17434384553599505\tand:0.11493393234775519\the:0.10070155365761972\tnot:0.09326537363883235\tHe:0.05694519376560393\tbeen:0.04803833652074261\tI:0.04728147429854067\t:0.01\n",
"<s>:0.568462569019253\tit.:0.09286696899088527\tthem.:0.06467547877488351\tand:0.060073164834554535\ttime.:0.04618634310602771\t?:0.041486816620020905\tcountry.:0.04030044739095153\tpeople.:0.03867166268225779\tyear.:0.037276548581165685\t:0.01\n",
"the:0.3734137039661222\ta:0.13975492402680648\tand:0.13963314417683828\tof:0.11228281495734176\tMr.:0.06450996398670218\tThe:0.05205351156643926\tto:0.04205446878495977\tin:0.03584877286985949\tan:0.030448695664930685\t:0.01\n",
"the:0.23096407016366577\tof:0.1722033400437719\tand:0.14147498841999784\ta:0.12083689853514935\tto:0.11852942901038442\tbe:0.06109875657352347\twas:0.058041221521029175\tin:0.05303128523338767\tat:0.033820010499090294\t:0.01\n",
"be:0.19861673645279096\twas:0.1870392294230395\tare:0.15265990417466432\tis:0.12358119872805372\tbeen:0.09973824841275518\twere:0.09314988280897721\tand:0.0635866650139498\tnot:0.03995426650165762\the:0.03167386848411172\t:0.01\n",
"be:0.34034028144767053\tand:0.18211546252244468\thave:0.1015360196105382\the:0.08013035838386871\tbeen:0.07476167183749319\twas:0.05946269836027415\thad:0.05639555041203301\twho:0.048783808033528255\tis:0.04647414939214925\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.43939504065241564\tto:0.14976483768331186\tof:0.13401757176781318\ta:0.07420797252362837\tby:0.0588564861860362\tand:0.05326223290604987\tany:0.029398566157475558\ttho:0.026258803144857817\ttheir:0.02483848897841133\t:0.01\n",
"of:0.4480261850774519\tto:0.11030033198170837\tthe:0.105550248021715\tin:0.07846618125793721\tand:0.07221480987093988\tby:0.05507838224377976\tfrom:0.04911523738476056\tCounty,:0.04217473001537978\tIn:0.02907389414632757\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.4478643198003368\ta:0.24318850317826915\tThe:0.1226443168446834\ttheir:0.037192653734293084\tthis:0.03620799263550831\this:0.031554812345380275\ttho:0.02552259284960046\tno:0.023606244520227658\tsome:0.022218564091700824\t:0.01\n",
"for:0.2753548395798289\tto:0.17728174690431278\tof:0.1708637606357247\tand:0.0905231333491977\tby:0.09022685648148514\twith:0.06707477995714035\tthat:0.05004352611225965\tor:0.03475511028812778\tbefore:0.03387624669192292\t:0.01\n",
"and:0.20435456638808408\tthe:0.1871879390757773\tof:0.15188708769505155\ta:0.12448680291506621\tan:0.09998799915835412\tto:0.0655491725074047\tin:0.05506107295971793\tor:0.05306429239806422\tthat:0.0484210669024799\t:0.01\n",
"able:0.15003214449443616\tas:0.14604608350286308\tis:0.14532293277660674\twas:0.11009825501060937\tand:0.10603521108283456\torder:0.10455306132156449\tenough:0.09082062634658633\ttime:0.06866052566126134\tright:0.06843115980323786\t:0.01\n",
"of:0.3420422053370365\tto:0.1388434664336376\tin:0.13786264416522526\tand:0.08027954924229379\twith:0.07123181302638898\tfor:0.06369579859368074\ton:0.06135083543937238\tby:0.04859824571313037\tfrom:0.04609544204923423\t:0.01\n",
"the:0.26631771811439525\tand:0.20187492102926918\tof:0.1589843633303804\tto:0.11059027842715602\tin:0.0571012098710703\tthat:0.051462395651177245\tsaid:0.050581573006078746\tfor:0.04673165755322649\this:0.04635588301724631\t:0.01\n",
"that:0.29683837338743163\tand:0.1614614831864822\tif:0.12312539640131466\twhich:0.10779846507873168\tIf:0.09757558162839486\tas:0.07134438770866355\twhen:0.04732537433703962\tbut:0.04356874114437088\twhat:0.04096219712757085\t:0.01\n",
"of:0.46347217700752746\tthat:0.11420477075808627\tin:0.08325238813911613\tall:0.07016593657864474\tfor:0.06794396817608227\tto:0.06355359122056482\tand:0.052459331557353134\twith:0.0459505920466064\tfrom:0.028997244516018674\t:0.01\n",
"and:0.15798104916802694\twell:0.15662127733301767\tlong:0.1330751212652617\tjust:0.12200487604418651\tsoon:0.10211625740111545\tsuch:0.08088591427700523\tare:0.08045466943072237\tis:0.0797566253870089\tso:0.07710420969365538\t:0.01\n",
"hundred:0.2723226431795192\tthe:0.17120429576322774\tfew:0.12364798863340232\t100:0.10041654094240104\tof:0.07676306267110665\t200:0.07194020623886793\t300:0.06517590165857949\tfifty:0.054696875503655366\ttwenty:0.05383248540924018\t:0.01\n",
"was:0.2509760282999841\tbe:0.18505077932432612\the:0.11701113355180003\tbeen:0.11020414413578779\tand:0.07223427095631858\thad:0.06835820269855555\thave:0.06320049799028302\tis:0.06187138518110441\thas:0.061093557861840266\t:0.01\n",
"and:0.26467324220466437\tthat:0.12855172715513946\the:0.1262424699331351\twhich:0.10706559508453214\tit:0.1051316141403998\tas:0.1030564768335649\twho:0.07533961838661223\tIt:0.0419295308459934\tthere:0.03800972541595855\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"it:0.2131788841045554\the:0.1867324812779885\tIt:0.14093961810063965\twhich:0.10085580692903923\tI:0.09523457785691533\tand:0.0799079407626281\twho:0.06284443033512091\tHe:0.05697400216718626\tthat:0.05333225846592657\t:0.01\n",
"and:0.3019860659872915\tof:0.14592732467319583\tthe:0.13864495245362915\tthence:0.08926731608954894\twas:0.0855563827330018\tin:0.06743232789634844\tby:0.056515560547822204\ta:0.05603122409317376\tis:0.048638845525988336\t:0.01\n",
"a:0.29758910663305543\tthe:0.27423539380877837\tany:0.11748842211131856\tthat:0.08968490661350281\tthis:0.054721926404863785\tevery:0.04658436821377061\tgreater:0.04460875833254082\tlatter:0.03430552952077778\tno:0.030781588361391832\t:0.01\n",
"the:0.5928194972621614\ton:0.09301235846350314\tday:0.054464897637962\tand:0.05203974894870126\tThe:0.051027008332245195\tOn:0.04589044410912231\ttho:0.040926509163856394\tof:0.031691299062918614\tuntil:0.028128237019529632\t:0.01\n",
";:0.20586487178146415\thim:0.12350856378931992\tit:0.10891933974776492\ttime:0.09929388390941972\tup:0.09759911098049075\t,:0.09326418915121729\tyears:0.08951539379731194\tfeet:0.08609810367291855\tit,:0.0859365431700927\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"of:0.3100882284289904\tat:0.17794821253079945\ton:0.11491288032631367\tin:0.10151134206786229\tto:0.07654856861270436\tAt:0.06608923467979312\tthat:0.0642974183910945\tfrom:0.04234676464583173\tand:0.03625735031661043\t:0.01\n",
"<s>:0.24874485300556862\tand:0.1682020865809346\tthat:0.16614717403417942\tit.:0.13657056482519125\tthem.:0.08435587503363759\t.:0.05941491729668708\ttime.:0.04564689077511018\tlaw.:0.041078418193043975\thim.:0.03983922025564745\t:0.01\n",
"and:0.26992740600792603\tit:0.14763486994409186\tas:0.11814407145050339\tIt:0.1104264985046542\tbe:0.09479747174939344\t<s>:0.07442624981974136\tis:0.06258018174837403\twas:0.059366460637917534\t.:0.05269679013739831\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"is:0.44410110038145234\twas:0.23012557249181884\tare:0.06934435729372343\tand:0.06701534173176242\tIs:0.0591524242420799\thad:0.034758673704862096\thas:0.031124884677625808\twere:0.029326294222753523\thave:0.025051351253921546\t:0.01\n",
"and:0.1887286649978269\tthat:0.18544678085702934\tas:0.11887801026938084\tbut:0.1054334749317296\tI:0.09087381461127886\twhat:0.08093619280101567\twhen:0.07988184550118989\tdo:0.07522694803718494\twhich:0.06459426799336404\t:0.01\n",
"he:0.3323541445690502\twho:0.20829919640295477\tand:0.14572153577306193\tHe:0.10418816270930131\tit:0.06009200692574084\tshe:0.044951146906969636\tIt:0.03791518868253566\tI:0.03217081465234008\tthat:0.02430780337804551\t:0.01\n",
"the:0.3704021965011488\tof:0.19383709484456516\tand:0.11006570207620793\ta:0.07666334436044114\ttheir:0.060182692771749875\this:0.054597549706725645\tby:0.053074503770993715\tto:0.042486912066025076\tfor:0.028690003902142693\t:0.01\n",
"is:0.29458473651120065\twas:0.1487273289636363\tand:0.1422407264649665\tnot:0.08806482183187268\thave:0.07528699967963605\tare:0.06885838902254716\thas:0.06452877984653328\twill:0.05929942895773811\twould:0.04840878872186932\t:0.01\n",
"and:0.16659610100634828\tthe:0.15795067258146858\tof:0.14620121855685184\tto:0.1379459326940898\ta:0.12260291304381193\tis:0.08716698094790248\tin:0.06375734790300283\tbe:0.05595359465931105\tan:0.05182523860721321\t:0.01\n",
"and:0.1988274146664822\tit:0.1761806483708886\tmade:0.09989488376212821\tthem:0.0997147983595032\tfeet:0.08700651726931752\twell:0.08656013339522557\tbe:0.0850650042206313\tup:0.0833715054652777\thim:0.07337909449054558\t:0.01\n",
"of:0.2582994245526273\tin:0.1274627762081054\tand:0.09634224679337225\tby:0.09625371426141287\twas:0.09232303777134802\tto:0.08686401809464514\tis:0.08554354693404603\twith:0.0842831203618493\tas:0.06262811502259377\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"and:0.4482331420721503\tso:0.10610540103822623\tfact:0.09514506065557288\tis:0.0847817678774783\twas:0.07153348135269065\tall:0.05163168332775131\tbut:0.0464000991261627\tknow:0.04537732007734247\tfound:0.040792044472625195\t:0.01\n",
"the:0.5504022013839471\tand:0.08191917687869361\tPresbyterian:0.06614215242745651\tBaptist:0.05752826905195703\tof:0.057468611912186544\tThe:0.055770466833798535\tMethodist:0.0460763138008709\ta:0.038078744866096734\ttho:0.036614062844993044\t:0.01\n",
"I:0.36170577070136356\tand:0.15168840974118367\the:0.12647146113724808\twho:0.09494160629313844\tman:0.06059879890004177\thusband:0.05737669279287434\tthat:0.05068608378876792\t1:0.046170280673567\tHe:0.04036089597181515\t:0.01\n",
"the:0.1841898439388741\tand:0.16913990475903895\tas:0.1639555182602928\tof:0.14169073904733415\tan:0.10219210188333845\ttheir:0.06289856905714503\tto:0.06191276931718308\this:0.05213082387998801\tmuch:0.05188972985680534\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"of:0.27516065525488775\tthe:0.2381565456879364\tand:0.11830076237076405\tto:0.09138319315816586\tby:0.07830463674890567\tMrs.:0.05629018100410713\tin:0.04960634565574625\t<s>:0.043581121427708654\tMr.:0.03921655869177822\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"that:0.2729510840698758\tas:0.18429386087851482\tand:0.16820647341179956\tif:0.08368963772954555\tbut:0.0835600624053698\tof:0.05569956270904736\twhen:0.054381460980310006\twhich:0.05367517311827446\twhat:0.03354268469726267\t:0.01\n",
"they:0.1998335772750468\tand:0.1285911753218984\tthere:0.12814134151344017\twho:0.11000642161413271\twhich:0.09779705705316387\twe:0.09513297728693008\tThey:0.08797460803454361\tThese:0.07229003956576903\tthat:0.07023280233507535\t:0.01\n",
"to:0.7259205731764026\tand:0.055244270570194196\tnot:0.05477011948071772\twill:0.05408792587358044\ta:0.03748162810270111\tshall:0.0197595333308098\tmay:0.018794422297911253\twe:0.012304817691936346\twould:0.011636709475746453\t:0.01\n",
"of:0.41048765456148717\tthe:0.12709475768670234\tthat:0.09670567859897039\tsaid:0.08865273057935402\tfor:0.08263338577941708\tand:0.06076175166768711\tsuch:0.04653765509161119\ta:0.045708274929209286\tpublic:0.03141811110556149\t:0.01\n",
"of:0.2921417268414436\tthe:0.20109624025138534\tto:0.10837257756477664\tin:0.09153893314929461\ton:0.0681499083572193\ta:0.06502602872384239\tand:0.06213141585352934\tby:0.05778514318695228\tfor:0.04375802607155669\t:0.01\n",
"New:0.910905234669002\tof:0.028654315848366734\tthe:0.01223807984470717\tto:0.011602909766267601\tXew:0.008721502548768304\ta:0.005637731019865214\tNow:0.004969762638515643\tfor:0.003925028370784029\tsaid:0.0033454352937232596\t:0.01\n",
"in:0.3605000000907676\tup:0.16511823611072826\tto:0.08987049176683823\tmen:0.08093591214306688\t;:0.0708559400148725\thim:0.06850552516191839\tthem:0.0526794162507823\tIn:0.05197410525796947\tout:0.049560373203056236\t:0.01\n",
"well:0.18763885440258532\tknown:0.1848432953380303\tsuch:0.1312109444336379\tand:0.11650300559404793\tfar:0.10672026401295964\tsoon:0.07431929105806052\tis:0.06769501413550778\tjust:0.06709023500275701\twas:0.053979096022413534\t:0.01\n",
"and:0.2583111201264527\tI:0.15003280154204496\tit:0.1315084666490953\the:0.1176450046474619\twho:0.09195817342829969\tthey:0.08554158604439183\tIt:0.062235204144881345\twas:0.04718811185506548\t1:0.0455795315623067\t:0.01\n",
"and:0.33897337989803006\tthe:0.19388779963305494\tof:0.11207447863873031\tto:0.08220012168427777\ta:0.06097083747540195\tin:0.05576928953166497\tI:0.05153072021797639\tas:0.04998827003528915\twill:0.04460510288557443\t:0.01\n",
"<s>:0.4153788045073141\tit.:0.16060526295057043\tthem.:0.08887949552518462\t.:0.08025406334396717\thim.:0.07997388805377507\tday.:0.0442248445607402\ttime.:0.04087785894873373\tI:0.04081253681396802\tIt.:0.038993245295746826\t:0.01\n",
"A.:0.7428045726830899\tJ.:0.04170055294036771\tN.:0.03602708018516733\tby:0.034716102421493804\t.:0.033471660931945216\tof:0.028985313116531186\tJohn:0.028416554080888112\tW.:0.023122608203668446\tA,:0.020755555436848372\t:0.01\n",
"he:0.33497020051957277\tthey:0.1778771303347434\tI:0.15189152577687665\tshe:0.08989930890698636\twho:0.06878003457698566\twe:0.056863202495264505\tit:0.045037616741138625\twhich:0.032516228439450304\tand:0.03216475220898171\t:0.01\n",
"of:0.3420422053370365\tto:0.1388434664336376\tin:0.13786264416522526\tand:0.08027954924229379\twith:0.07123181302638898\tfor:0.06369579859368074\ton:0.06135083543937238\tby:0.04859824571313037\tfrom:0.04609544204923423\t:0.01\n",
"Mr.:0.19078103605516913\t.:0.15159813808592967\tMrs.:0.1278412364892156\tW.:0.10450993127117397\tJohn:0.10162433821541511\tMiss:0.0883752758688126\tand:0.08691620611324757\tthe:0.06970368868888595\tof:0.06865014921215012\t:0.01\n",
"land:0.22191992612719194\twas:0.2213308281621733\tand:0.144757535521367\tis:0.08782846571014405\tsituate,:0.07443156014974803\tbeen:0.067981371242955\tbe:0.06071648053994885\twere:0.059364444883102135\tare:0.051669387663369704\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"<s>:0.19944934790290994\tthe:0.16802756684291031\tand:0.14423310668410363\ta:0.09262781350641894\t.:0.08984362391780876\tthis:0.08795031814535124\t1:0.08768037800635414\tpro-:0.061112584088994275\ton:0.05907526090514874\t:0.01\n",
"<s>:0.5427599578876955\tit.:0.10775407803883125\tthem.:0.08791189897291012\tcountry.:0.04902539134238675\t?:0.04357041656028963\tday.:0.04300692471612457\tpeople.:0.04243696373793271\ttime.:0.037078089767391686\tmen.:0.03645627897643786\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"was:0.24044416773272043\tis:0.19924637663337216\tand:0.12987461090179175\tbe:0.12361323590998208\ta:0.06940504127081842\tthe:0.06683918452935585\tbeen:0.0598490027259236\thave:0.05413858109333376\thas:0.046589799202701926\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.31491071775478086\tof:0.1819852063583867\tand:0.15973818673718354\tto:0.08210190978754724\ta:0.07192616817774335\tin:0.06102139026401743\tMr.:0.04626094925728953\tthat:0.0381259694073099\tthis:0.033929502255741435\t:0.01\n",
"of:0.3895332013635191\tto:0.11939899893975801\tthat:0.10678874237055602\tand:0.0974510145398766\tby:0.08804238441578793\tin:0.06654768065488216\tfor:0.047642936934608277\tall:0.04752923466669629\ton:0.027065806114315485\t:0.01\n",
"feet:0.21152080198844012\tand:0.20431753174851455\tso:0.10602462757439896\tthe:0.10209495768135812\tto:0.09520878204518916\ta:0.08083287241747072\tthat:0.07684358711695634\tall:0.06424103514312415\tas:0.048915804284547816\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"it,:0.16607554813043657\tin:0.16209330584565562\t;:0.15117735456826883\tthem,:0.1190253570138876\thim:0.09596513552107291\thim,:0.0803260997280358\tit:0.07559906280276002\tme,:0.0743667657483643\tup:0.06537137064151817\t:0.01\n",
"sum:0.2855483910862636\tnumber:0.17637131159335762\tyears:0.09708182057750944\trate:0.0929471759076748\tout:0.07962576721625399\tfull:0.07388409436233084\tline:0.06725770568867145\tamount:0.06089624864937584\tkind:0.056387484918562374\t:0.01\n",
"the:0.2918509793165005\tof:0.27614768275403007\tin:0.08035106357733839\ta:0.07914078829298155\tand:0.0755039697363953\tto:0.07456073582861386\tby:0.04301532416719809\ton:0.03521194629929313\tfrom:0.03421751002764915\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.5742771382516692\tThe:0.09340127353734777\this:0.07112576434947372\tthis:0.06541347835894379\tof:0.04351098745842891\ttheir:0.04208188893479956\ta:0.03866535654024846\tits:0.032160491765142483\ttho:0.02936362080394626\t:0.01\n",
"and:0.32239916608788655\tthem:0.12675238619783002\tit:0.10010717227693153\tthat:0.0916462931611764\twas:0.07361762533117142\tmen:0.07120402384898782\tor:0.0707031680732684\tmade:0.06705269116907098\thim:0.06651747385367693\t:0.01\n",
"of:0.4538454851631208\tto:0.12902461852425537\tin:0.08969134396585621\tby:0.07861666821890353\ton:0.06240430933306631\tthat:0.054649769557389205\tfrom:0.044946581033201226\tand:0.03909100956927308\twith:0.03773021463493432\t:0.01\n",
"the:0.8840210756367101\tThe:0.04055976379538139\ttho:0.035596417457605355\ttbe:0.012267887362665557\tand:0.004609614669017679\tthis:0.004433919275726699\this:0.003131660085343171\tof:0.002938781761895299\ta:0.0024408799556547667\t:0.01\n",
"N.:0.5039930499401002\tthe:0.2332098459825036\tX.:0.07899623663027003\t.:0.051486486527224797\tof:0.029135560193225232\tand:0.0251739878850666\tJ.:0.023987890452749728\tA:0.02249022435294831\tW.:0.021526718035911496\t:0.01\n",
"called:0.43563287292903524\tagreed:0.2193046908029236\tlooked:0.10031639124009119\trelied:0.058879296111364374\tacted:0.05615996475067746\tlevied:0.03317579583074516\tdepended:0.02923301535258553\tmade:0.028774767579278673\timposed:0.02852320540329889\t:0.01\n",
"of:0.27571708318283833\tthe:0.21831233842919695\tand:0.1877627985889314\tto:0.07195049484546018\tfor:0.050969308078743066\tthat:0.050289050071476694\tin:0.049686694840945345\tby:0.04389533794676736\tor:0.04141689401564067\t:0.01\n",
"the:0.34825423155363944\tof:0.16617095001393953\tand:0.11286310840258942\tthat:0.09950163101593293\tMr.:0.069192427731586\tThe:0.06747202200814982\ta:0.0641964283367045\tthis:0.03296247283026255\tor:0.02938672810719585\t:0.01\n",
"of:0.32263096040955946\tin:0.17917491520159243\tand:0.09809122982336861\tto:0.0950646360915529\twith:0.07691729424245837\tfor:0.0711531608324362\tby:0.05063411041779492\tall:0.050355177771641675\tfrom:0.04597851520959545\t:0.01\n",
"of:0.44248199155353923\tand:0.1269379234921086\tin:0.09244700513619568\tThousand:0.08916126384315486\tthe:0.08501202073916075\tto:0.06883625817186309\t<s>:0.043311727404437624\tTownship:0.02167733677380755\tIn:0.020134472885732613\t:0.01\n",
"the:0.7816188842871228\tThe:0.06762256072195659\ttho:0.04436702470171642\ta:0.037910100700584426\tand:0.0188224276595791\ttbe:0.016014923433436808\tno:0.008793653262949426\tan:0.008429766473397058\tthis:0.006420658759257306\t:0.01\n",
"are:0.19228806829110226\tbe:0.1382722092670723\tthe:0.13170854235592708\tis:0.12043602404117633\tnot:0.113335753596259\tand:0.10681955002414457\twas:0.0786929610964961\tof:0.05878731302034009\tmost:0.04965957830748218\t:0.01\n",
"and:0.313745491396932\tput:0.13759792989027658\twas:0.11307519544812583\tplaced:0.09350044529633868\tis:0.07118174542190389\tit:0.06896013629138537\tthat:0.06724092317653743\tout:0.06399868719816328\tdown:0.06069944588033698\t:0.01\n",
"and:0.38313577196477067\thim:0.08633579147109542\treason:0.0849154092493801\tmade:0.08427592616698751\tbut:0.08147530267248447\tenough:0.07305225209565179\tasked:0.06965930237359723\ttime:0.06381268945419652\tthem:0.06333755455183629\t:0.01\n",
"a:0.3619944110790323\tis:0.17894268525523255\tand:0.09509928568855402\tvery:0.06935096982703165\tso:0.06733161831683934\tare:0.06582753083941889\twas:0.06300390992882617\tof:0.045112920262669\tthe:0.04333666880239614\t:0.01\n",
"the:0.2625266516154365\tof:0.12890038702798903\tsaid:0.10691616906038039\tand:0.09918828745645811\tsuch:0.0953084008440284\tno:0.08628832825245274\tor:0.08412673427170074\tany:0.06387586769851288\tthat:0.06286917377304121\t:0.01\n",
"and:0.41853848775027436\the:0.1772623563199336\tI:0.10255176170755582\twhich:0.06997691975948683\tthey:0.05048982920426449\twho:0.04599753261536628\tthat:0.04303236388826254\tit:0.04135962720807991\tshe:0.040791121546776124\t:0.01\n",
"-:0.18153894832428982\tday:0.17285717631624417\tand:0.11234922398867818\tt:0.10165102636963251\tin:0.09271341963831646\tto:0.09151280091401841\tfeet:0.08406276845518042\t1:0.07962576925223237\tof:0.0736888667414076\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"the:0.3730170802122397\tof:0.15655489078376547\ta:0.12179325753289266\tand:0.11720982368826385\tto:0.0684670173587832\tin:0.05190197020258796\ton:0.040614095749998316\tThe:0.03025876885115022\tor:0.03018309562031873\t:0.01\n",
"the:0.19171647154817875\tof:0.14112722341567557\tand:0.13416554077907164\tbe:0.11792759908396455\tto:0.1134244355179606\twas:0.10074338199402286\tis:0.07513481676880751\ta:0.05881585421433086\tare:0.056944676677987666\t:0.01\n",
"the:0.4285103139262177\ta:0.17076660037823552\tone:0.15472267915705215\tsome:0.04617067702809064\tThe:0.04600590882989435\this:0.04269168629143898\ttwo:0.04145532956738312\ttho:0.030825832185011687\ttheir:0.028850972636675996\t:0.01\n",
"of:0.23558482057120203\tand:0.15947546799959383\tthe:0.1515902816224744\tto:0.14895664871845365\ta:0.09083050271541336\tin:0.079645117072479\tthat:0.04449975329548921\tor:0.043979519283075634\twhich:0.035437888721818855\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"that:0.42298469206553535\twhich:0.14718301048178825\tand:0.09974483873807846\tas:0.07404962512175495\twhere:0.05796028628681693\tif:0.056649758189326736\tbut:0.05011016041941644\twhen:0.043901133372010445\twhat:0.037416495325272525\t:0.01\n",
"and:0.4423801673029548\tor:0.15397487618417718\tthat:0.11071579694083411\tnot:0.09321962235839373\tbut:0.06870513801329686\tto:0.04491157416576994\tBut:0.02776838634321036\tis:0.02436250857017682\tfor:0.023961930121186064\t:0.01\n",
"to:0.3499373866087725\tand:0.1844919554773455\tbe:0.14377690236609258\twas:0.08884982829412251\the:0.06720775665425055\tbeen:0.046314810974022735\tI:0.04308635839047503\twere:0.04027526497482873\thad:0.026059736260089946\t:0.01\n",
"the:0.26350744134365095\ta:0.23592008964116876\tof:0.15281018696248772\tfor:0.11349182315912336\tin:0.07057228902887194\tat:0.052325056337871975\tand:0.03862790382501156\tthat:0.0319659961612836\tto:0.030779213540530186\t:0.01\n",
"the:0.4654928584375921\ta:0.2008194955763353\tand:0.06835447756393222\tThe:0.06441337222764273\this:0.04950786693221581\tof:0.04730713494292538\tany:0.0356866451530453\tin:0.03009373773764726\ttho:0.028324411428663914\t:0.01\n",
"is:0.13711014572135505\tvery:0.1353338412616943\tthe:0.12212894925643063\tmore:0.11589108254524796\tbe:0.1138805976839314\tmost:0.11331978667851471\twas:0.09833733890331034\tan:0.0905285139287207\tare:0.06346974402079487\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"quarter:0.15461022407636074\tsum:0.13976623521252643\tone:0.1272335564184051\tpart:0.12006902946218981\tthat:0.10968824776148188\tpurpose:0.09388752663037592\tinstead:0.08763973877214669\tand:0.07898479461903507\tnumber:0.07812064704747834\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"that:0.23646301966630343\tas:0.16569296021381652\tand:0.15302804214675783\twhich:0.11168162847379434\twhen:0.110524131973677\tif:0.07998746507578311\tbut:0.04850879293008404\twhat:0.0429225117377921\tWhen:0.04119144778199153\t:0.01\n",
"and:0.2862160796520936\twas:0.14288709712572803\tis:0.10013179325919742\tup:0.08704755478894143\tit:0.0800337757968272\tthat:0.07902528082567176\tmade:0.07455522224474313\tthem:0.07077100263027977\thim:0.06933219367651765\t:0.01\n",
"is:0.3178139884547201\tare:0.17490524267694166\twas:0.11022528016440089\tbe:0.10791444898087144\tand:0.09764875819527975\tnot:0.052820461846169356\tso:0.046510935612166376\tIs:0.043015781214721126\twere:0.03914510285472922\t:0.01\n",
"he:0.19740930079451227\tthey:0.15323356522658366\tI:0.14705310612115105\tit:0.1212200108397614\twho:0.09939413393265091\twe:0.07358092480578184\tthat:0.06799166504288252\tand:0.06587010859853683\twhich:0.0642471846381394\t:0.01\n",
"the:0.24700901442492468\tand:0.17582028318313592\twas:0.11914517712537158\tas:0.11414096510541422\tis:0.0783004370911413\ta:0.0732138053984077\tstreet,:0.06505040963691583\tof:0.0631689867025682\tso:0.054150921332120516\t:0.01\n",
"of:0.20787866562735885\tthe:0.1742711365087263\tto:0.16267690793899636\tin:0.13875120893710602\tand:0.08459136284580854\ta:0.07067365420770737\ton:0.06252605955722475\tby:0.046604222508911754\tat:0.04202678186816009\t:0.01\n",
"the:0.3928881114749429\ta:0.17286917852526854\this:0.13277855630934124\tThe:0.1049601934939827\tmy:0.05771178807498791\tand:0.04234219357886369\tof:0.03037307616410819\tA:0.02979546908724777\tHis:0.02628143329125706\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"be:0.33855365882435706\twas:0.16900997976887322\tis:0.13103363659142414\tbeen:0.12471130171128166\tare:0.07347510387280694\twere:0.05083572186349723\tbeing:0.04288807013805573\tand:0.03555793327295512\tIs:0.023934593956748858\t:0.01\n",
"the:0.27135268575605026\tof:0.18873372817013878\tin:0.16556691063057372\tand:0.10257142346025959\tIn:0.06392162296840173\tto:0.06233458669957905\tfor:0.06085068045434113\ttheir:0.03783721114523859\tthis:0.03683115071541713\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.3206966971689997\ta:0.213587688637112\tof:0.16643722091088178\tand:0.06626558972889944\tto:0.0629635391548525\tin:0.04535005106296338\this:0.04500902001550973\tthat:0.03547100009753138\tthis:0.0342191932232501\t:0.01\n",
"the:0.23606769123376112\tof:0.22206635498927407\tand:0.1395933148716674\ta:0.11105466710008743\tto:0.08729444283379054\tat:0.08413141168488544\tin:0.05028353747339499\tfor:0.03081425178874061\this:0.02869432802439846\t:0.01\n",
"for:0.2241838398725027\tof:0.19247237679762022\tto:0.1435603612303264\tat:0.12638943988747878\tin:0.11270977041045592\tand:0.06099384491556816\tduring:0.046792456828629043\tall:0.043186896830778206\ton:0.039711013226640446\t:0.01\n",
"day:0.17829895693805659\tand:0.15899177659448405\tmade:0.14871029061055335\tout:0.09287530658861139\tup:0.09118244764460895\tfeet:0.08376748653362669\tthem:0.0821225719521718\thim:0.07802484037383414\tit:0.07602632276405312\t:0.01\n",
"of:0.19195918083636823\tand:0.16315699654690158\tto:0.15814060037241645\tthe:0.14129304758738065\tat:0.08857077798893642\tin:0.07417294931299771\tfor:0.06948344113298154\ta:0.06252584730883629\tbe:0.04069715891318126\t:0.01\n",
"and:0.16051538492039444\table:0.12584552037456037\torder:0.12023274904774982\thim:0.10411986755347347\tis:0.10230358199714916\twas:0.09725639894996213\ttime:0.09647037435760988\thad:0.09226467812513447\tas:0.09099144467396625\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"is:0.15136464195252639\tand:0.14987461579429975\tof:0.1439175985875299\twas:0.12250807953804664\tby:0.11279043216156054\tfor:0.10971108742890864\tin:0.07410197440941416\tthat:0.0680159713996068\tto:0.05771559872810732\t:0.01\n",
"the:0.6014993194577257\ta:0.25716841379300626\tThe:0.043164148731830214\ttho:0.02944955409143599\tof:0.014714909175531136\ttbe:0.0142414724491963\tthis:0.013636712976315983\tand:0.009416225922097654\tgreat:0.006709243402860849\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"a:0.3781098245865728\tthe:0.29365718168296134\tno:0.05596580809459498\tThe:0.05071246804210793\tof:0.04918018822409154\tany:0.04569654161755108\tsuch:0.041026487476140835\this:0.03784368309810439\tand:0.03780781717787523\t:0.01\n",
"and:0.2202410989195374\tof:0.1479495517289874\tor:0.14216840488795962\twithin:0.10957002985771483\tthe:0.1088241635118217\tas:0.0780100118790501\tin:0.07490576855346728\tthan:0.05542091444368476\tabout:0.052910056217776905\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"city:0.2278424702459735\tcounty:0.11878196973404616\tCity:0.11242255079992802\tday:0.09883885653146102\tState:0.09826409659506223\tstate:0.09483898254507978\tCounty:0.08263466000515829\tBoard:0.08208547777036967\tline:0.07429093577292126\t:0.01\n",
"of:0.3091976638342204\tthe:0.2391103402346752\tand:0.13381140773686948\tto:0.11048312727110192\tin:0.046959948199223826\ta:0.042162053767383946\ton:0.0379696425071135\tThe:0.03534540331691183\tbe:0.034960413132499826\t:0.01\n",
"it:0.20687419694626064\tIt:0.2041185812592859\the:0.13331434700697872\twhich:0.10094655584395615\tand:0.08473585855072227\tThis:0.08385958200134508\tthere:0.061722523003561965\tthat:0.057831559521612695\tHe:0.05659679586627654\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"his:0.3549824215044518\ther:0.203174454530904\ttheir:0.14732887296949615\tmy:0.06874642564963837\tof:0.061166292390783875\tthe:0.055033877185911004\tour:0.03995644092995677\town:0.03280180756129893\tyour:0.026809407277559143\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.28911769851370467\tof:0.15034482710262848\tand:0.14727364343021293\ta:0.12256378698685642\tto:0.11180388212332248\tbe:0.05566769946958989\twas:0.044440704312762515\tor:0.03660687066406267\tis:0.032180887396860036\t:0.01\n",
"the:0.5443381295603745\ta:0.21721138193766873\tThe:0.06514357860369203\tto:0.05349628260222359\tand:0.033706598204234814\ttho:0.024043365737743464\tno:0.023914313150359988\tof:0.016785779222910354\ttbe:0.011360570980792614\t:0.01\n",
"the:0.30118770224415803\tof:0.136768744566076\tand:0.13292833990918573\ta:0.09641617605887866\tbe:0.0858286502888405\tto:0.08214791428939255\twas:0.056961996862790354\tis:0.052982645619020996\tin:0.04477783016165717\t:0.01\n",
"of:0.3524540163559507\tin:0.1477941741672871\tto:0.12861874327227646\tand:0.08371121655623442\tthat:0.08053609842300541\tfor:0.05899758890655248\tby:0.04956096617609346\twith:0.04746748920887609\tfrom:0.040859706933723844\t:0.01\n",
"of:0.2726801928531648\tfor:0.162337860113732\tto:0.14247071863884625\tin:0.10012739022146268\twith:0.08853120121124007\tand:0.08171738416238053\ton:0.06321392522617092\tby:0.04314413771191476\tthat:0.0357771898610878\t:0.01\n",
"to:0.5138604887149658\twill:0.21451992531363168\twould:0.05045856132747192\tcan:0.046300765597339595\tand:0.042403681977022455\tmay:0.035591111667673446\tnot:0.03494021798229417\tcould:0.02935038038624453\tshall:0.02257486703335632\t:0.01\n",
"in:0.3491711319101309\tof:0.12596463566062835\tto:0.09955614308189219\tand:0.09887583264394781\tIn:0.09660864390070723\tthe:0.075231122643589\twith:0.05521982112734808\twithout:0.04659026942603418\ta:0.04278239960572229\t:0.01\n",
"It:0.4346465778158984\tit:0.29797284959103865\tand:0.06873508572957958\twhich:0.062226476203383355\the:0.04541315974211921\tas:0.034027433485128655\tHe:0.01937985540014564\twho:0.014353143613429428\tthat:0.01324541841927699\t:0.01\n",
"of:0.41451996941524516\tthe:0.23286197606789757\tin:0.09010373054170648\tfor:0.06255870846188893\twith:0.05037894497627168\tto:0.05027220727454893\tand:0.040625152621918265\tby:0.025743700118352055\ta:0.022935610522170864\t:0.01\n",
"the:0.4812143396774111\ta:0.25976506145941924\tThe:0.15661461321059708\ttho:0.02900512988826279\tA:0.019172007745401818\tand:0.014823383950342288\tof:0.01256751577597082\ttbe:0.010415840981807093\this:0.006422107310787727\t:0.01\n",
"a:0.38330797305890213\tof:0.14334575230829547\tthe:0.10747438256339308\tto:0.09260295295400095\tand:0.09247202324644745\tin:0.05446328357765061\tfor:0.04502030947918386\tor:0.03642147585812739\this:0.034891846953999085\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"is:0.26385745373888336\twas:0.17481634379295583\thad:0.13994979809009062\thave:0.1355763518458555\tand:0.07056958445973967\tdo:0.05469510562889852\thas:0.05098652848932209\tIs:0.05005637226247977\tthat:0.049492461691774514\t:0.01\n",
"be:0.327601748552826\tis:0.1604150567516692\twas:0.11157265838811964\tbecome:0.08888130570894708\tamount:0.06969934102813251\tare:0.06926178294720058\tbeen:0.06469882297917079\tin:0.05070343269772858\tnow:0.04716585094620537\t:0.01\n",
"of:0.23677266547888126\tthe:0.20626385991640173\tin:0.11515141501866437\tand:0.09996292456948608\tto:0.09808160147528928\ta:0.0907437943033938\tfor:0.055716364478532066\tat:0.0485849701199864\tor:0.03872240463936488\t:0.01\n",
"the:0.2423620207365299\tof:0.20536500222371457\tand:0.166871077045992\tin:0.1176496937967874\ta:0.06877339806465797\twas:0.060401645356168765\tis:0.04771002123545104\tare:0.04130335500381535\tbe:0.039563786536882965\t:0.01\n",
"and:0.19668537088296256\tof:0.17773310401398085\tto:0.13168240291219754\tI:0.12391276246252826\tthe:0.09687269956756722\tthat:0.07500763937018168\ta:0.07477205533279513\tin:0.07098067888547782\tfor:0.0423532865723088\t:0.01\n",
"and:0.20348740443375116\twas:0.19576059397117312\tbe:0.1714315439591067\the:0.13078563556532488\tbeen:0.07972681593349311\tis:0.07299170001392045\twere:0.046888336495319635\tI:0.04659866977738847\thave:0.04232929985052244\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.7043487327421231\tof:0.08983144347995765\tand:0.040750387557893744\tThe:0.036458075106251056\tby:0.029097810845022186\ttho:0.02740264393500999\tVice:0.026293759853609433\tto:0.021907748006880907\ttbe:0.013909398473251929\t:0.01\n",
"the:0.540080861091086\tof:0.131193771064713\ta:0.09728889566246923\tcivil:0.06939621486411435\tThe:0.05079267444923699\ttho:0.03312805500808601\tthis:0.03015927931164624\tCivil:0.019998077531004795\this:0.01796217101764335\t:0.01\n",
"made:0.2390147886878667\tand:0.17254332981506387\tshown:0.1046830996702836\tout:0.08859751691392118\thim:0.08467345057285448\tup:0.0812510743207608\ted:0.0740914122490307\tdone:0.07289527257784642\tor:0.07225005519237225\t:0.01\n",
"and:0.5586292028304938\tthe:0.081405382680309\twas:0.06605007676339714\tI:0.05053528633455212\tis:0.04982340871787755\tare:0.04980661071925384\tof:0.04978355319614298\tor:0.04851487867508778\tnot:0.03545160008288595\t:0.01\n",
"thence:0.1992355574322042\tcame:0.12632980869647162\tand:0.12606960262650674\twent:0.11885487841460306\tget:0.11363002058892499\tgo:0.10718551914269964\tgoing:0.07191495465858802\tall:0.06497972289088948\twalked:0.06179993554911231\t:0.01\n",
"and:0.34444629034592467\tof:0.16771989622284453\tfact:0.13905496676142484\tin:0.09312870782680441\tis:0.0534084092879701\tto:0.05024725926186579\tfor:0.04933999685307294\tall:0.04685576378836461\tsay:0.04579870965172817\t:0.01\n",
"the:0.27331824607599536\tof:0.15423716086505732\tand:0.14528259025248202\tto:0.10262183581871517\tbe:0.08657383028225224\ta:0.07744275946770984\twas:0.05733333087575692\ttheir:0.04881454297593235\tin:0.04437570338609881\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"is:0.25811249887314525\twas:0.17790940234986777\tand:0.1439014652999136\tbe:0.11544533194251266\tare:0.10844260899916178\twere:0.06813976823250968\tbeen:0.043529742976254004\tnot:0.03997802291786138\tIs:0.03454115840877395\t:0.01\n",
"the:0.44149731765176325\tof:0.2037372222261584\tand:0.10951740980808172\tThe:0.10799553828304216\tfor:0.02991013442916365\tthat:0.02942122503664601\twhich:0.025465131862771766\ttho:0.02192532585078746\tMr.:0.020530694851585443\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"it:0.16780357755381595\tthat:0.15924330912563467\tand:0.13929489623370037\twhich:0.13299238453009488\the:0.12806656523045998\tIt:0.0907927672791818\twho:0.08791391174406342\tI:0.05415595646401801\tshe:0.029736631839030914\t:0.01\n",
"and:0.5166716118614051\tthat:0.11076353401438706\ttime:0.10878646991123624\tbut:0.0850755591935064\twas:0.039039326812471985\texcept:0.0358092658259529\tday:0.03308213966427072\tand,:0.03152298969448207\tor:0.02924910302228747\t:0.01\n",
"the:0.38349333811108804\ta:0.24089757533777104\tof:0.12319600679805012\tand:0.0643713335359951\tin:0.04545906967037448\twith:0.04253632203228458\this:0.03254393781467649\tto:0.031322379186449166\tthis:0.026180037513310862\t:0.01\n",
"the:0.18724622442390543\this:0.1850554432488133\ttheir:0.11763933456044273\tof:0.11544809937925843\tno:0.09356027020203143\tand:0.08337578484559574\tin:0.07756223053001991\ttwo:0.07747835290449584\ther:0.05263425990543698\t:0.01\n",
"the:0.3705962543079261\ta:0.1885255921125628\tto:0.11292932513865492\tthis:0.0951312354322798\tone:0.0604641138858121\tand:0.047755454150874045\tother:0.03980615320843043\tof:0.038091188341492305\tany:0.036700683421967556\t:0.01\n",
"the:0.5080787774374987\ta:0.15572770058523497\tof:0.09070654442459326\tand:0.06832379121005383\tThe:0.06396613573761113\tan:0.029726034450766416\ttho:0.02699947176051703\tto:0.02588869679833968\twith:0.02058284759538493\t:0.01\n",
"the:0.5363376338936523\ta:0.14376328860126378\tof:0.08431624532311781\tto:0.07627803530277077\tThe:0.04729440553041019\ttho:0.030969327502411177\tand:0.02867217332120211\tfor:0.02514220835438269\tno:0.017226682170789112\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"and:0.23680092630255908\tthe:0.2252832629525869\tto:0.15251697137798\tof:0.13815842615911808\twas:0.07509298009890637\tis:0.0466631714444699\tbe:0.039909039387642835\twill:0.03914895381638886\tare:0.03642626846034779\t:0.01\n",
"in:0.2923082894735924\tof:0.19914921946067007\tto:0.16151491999131531\tand:0.07962047378992143\ton:0.0788761420462201\tIn:0.04764079482996104\tat:0.04624935615366304\twith:0.04460457083775771\tfor:0.04003623341689897\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"it:0.37546094274421443\tIt:0.22027953578716658\twhich:0.11392286441583137\tand:0.0659896674689151\tthat:0.060235554584403224\the:0.0505938859883276\tthere:0.04664974821588446\twho:0.035317225304940934\tas:0.02155057549031635\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.2366263098396572\tthe:0.18595273144583613\tof:0.17325971486690858\tand:0.1706628968830764\tin:0.06173352481332121\ta:0.04854923544972586\tbe:0.04169830782015739\tnot:0.036539229148177886\tor:0.034978049733139394\t:0.01\n",
"to:0.6573547557335159\twill:0.09298088828624905\tand:0.08607242503031012\twould:0.046245305717859224\tin:0.026120604855183145\ta:0.021677032747881717\tnot:0.021429431169790698\tthe:0.019711213158350897\tof:0.018408343300859296\t:0.01\n",
"and:0.2185441439336013\twas:0.13048994353067261\thave:0.12516944674819322\thad:0.12353517735258343\thas:0.11162924715397951\tis:0.09432567359140069\tI:0.07432519494561679\the:0.05731090714162105\tbut:0.05467026560233145\t:0.01\n",
"the:0.8038508024762426\ta:0.06491865573901293\ttho:0.03473294438610949\tThe:0.03369152201575823\tand:0.014367075389794981\tgreat:0.01117144248362222\ttbe:0.010262893457075926\tno:0.010013420138252543\tan:0.006991243914131112\t:0.01\n",
"of:0.2583674187801683\tin:0.2427787334936439\tto:0.12823668660644286\tfor:0.10037748371828423\tIn:0.08356807173717447\tand:0.0791617077612328\tfrom:0.03782527083743055\twith:0.03740304045655927\tby:0.022281586609063486\t:0.01\n",
"a:0.7615858865643611\tthe:0.08477533918358404\tone:0.03868738692827269\tA:0.030314225104866973\tevery:0.023775750762412496\tand:0.014906464183980733\tfirst:0.013016839595857083\tlarge:0.012457958959651749\tThe:0.01048014871701324\t:0.01\n",
"to:0.6565703759405166\tin:0.07104257425892693\tnot:0.0629697668079766\tthe:0.041247613232101965\tand:0.040196792660117664\this:0.03828024820620195\thad:0.03069099173045724\tIn:0.0260085476425729\twill:0.022993089521128267\t:0.01\n",
"have:0.25719920988486866\tand:0.20719003072261363\thas:0.13951644908704816\thad:0.13353532393390888\tI:0.061669102656978524\tthey:0.052047487808969325\tis:0.05172064881543548\the:0.050087620690425744\tbe:0.037034126399751524\t:0.01\n",
"the:0.6745618349382546\ta:0.11380227193644021\tThe:0.050108242237798105\tand:0.03331872014722496\ttho:0.0327906088559972\tof:0.03211276143161762\tfor:0.02811909626517557\ttbe:0.01276930568874353\tas:0.012417158498748181\t:0.01\n",
"the:0.33820103687315217\this:0.3074315770339486\tmy:0.10592251641332377\ther:0.08383838812759734\ttheir:0.039772746465937\ta:0.03545443887006919\tof:0.0349563837703982\tits:0.024696507461322074\tour:0.019726404984251742\t:0.01\n",
"time:0.15945566687042143\tup:0.15680389843990394\t;:0.12320996107957827\tday:0.10501539269954664\thouse:0.0929224526758643\thim:0.09172459869965449\tmen:0.09009110944282324\t:0.08687433237068451\tmade:0.08390258772152309\t:0.01\n",
"<s>:0.3375868414274814\tthem.:0.1553492265740573\tit.:0.1553230092362886\ttime.:0.07614621583032272\thim.:0.06026005501538134\tas:0.057449516405550426\tday.:0.050980913324557404\ttion.:0.04852002533162487\tcountry.:0.04838419685473601\t:0.01\n",
"they:0.263188370477041\twe:0.15049962182211973\twho:0.10553985267989198\tthere:0.10208716103197628\tyou:0.09611430591015191\twhich:0.07918938062889441\tThere:0.07246012233216831\tThey:0.07018879313416541\tthat:0.0507323919835908\t:0.01\n",
"so:0.23843376715147224\tis:0.15376225210216968\tnot:0.13240813844528185\tas:0.0933132815418602\tare:0.08542113746442728\tand:0.08014518918791716\twas:0.07373288448043634\tvery:0.07365901070638196\ta:0.05912433892005333\t:0.01\n",
"D:0.23535934091199764\tS:0.1103737126263347\tA:0.10818426530155095\tC:0.10660611115752185\tJ:0.09782592796991402\tW:0.0898882144549579\tM:0.08762291456740327\tE:0.08477766582733096\tF:0.06936184718298874\t:0.01\n",
"the:0.24257832538523413\tany:0.23975182207142826\ta:0.2211625353289958\tof:0.0644440232115146\tno:0.05614244761935457\tother:0.05571826507140455\tone:0.039026224356535376\tsome:0.03693465137339288\tAny:0.03424170558213975\t:0.01\n",
"and:0.20744559076477076\tis:0.1387494425391554\tof:0.12673741047337356\twas:0.11539693008690681\tit:0.11250568557221584\tare:0.10192906921053398\tnow:0.079313858170125\tas:0.05487291794979533\tthere:0.05304909523312325\t:0.01\n",
"to:0.6135214064473523\twill:0.0880978870090595\twould:0.06970185352022208\tand:0.06659163754142178\tshall:0.03922684983524149\tnot:0.0347848657166398\tmay:0.033015163289343195\tshould:0.026306638203219292\tmust:0.018753698437500528\t:0.01\n",
"most:0.25096001995363276\tis:0.13203912484743238\tmore:0.12687790157374632\tand:0.0875695251737998\twas:0.08391735304402488\tthe:0.08350539766307537\tbe:0.07688244461738507\tan:0.07422553411989215\tvery:0.0740226990070112\t:0.01\n",
"the:0.26991401513534163\tof:0.17758310881913575\tand:0.1132165170202487\tbe:0.10651158488158954\tto:0.08172942900656562\this:0.06483671170343962\twas:0.06424434113642574\tre-:0.057268642520917214\ttheir:0.05469564977633614\t:0.01\n",
"the:0.44992613891550415\tof:0.22454193308849865\tand:0.09408750311133456\tThe:0.07651698408954202\ttho:0.03283820846924652\tin:0.032735115887280654\tsaid:0.028978493984281994\tby:0.02624173688006271\tto:0.02413388557424881\t:0.01\n",
"a:0.322256776741006\tthe:0.2479912434547063\tof:0.08210382992869972\tthis:0.07914010611007159\tto:0.07001062490593828\tand:0.057095450846725015\tthat:0.0458452754788416\tone:0.04307185546406565\ton:0.04248483706994574\t:0.01\n",
"the:0.52094739034057\tThe:0.11363371719257351\tcold:0.11233163232002812\tof:0.07176151584857444\ttho:0.04216282919754695\tour:0.03402116563997227\tthis:0.03367684607733789\ta:0.03119755763204023\twarm:0.030267345751356436\t:0.01\n",
"of:0.3038110913333851\tby:0.13004640046094001\tand:0.10912606948401961\twith:0.10572888735832288\tto:0.09340886931284031\tthat:0.07304502890787365\tin:0.06756750823750271\tas:0.06426428315766482\tis:0.043001861747450916\t:0.01\n",
"of:0.3593085858169004\tin:0.13933357939943086\tto:0.1364162645178682\tand:0.088335504356307\tfor:0.07444677721877853\twith:0.05644654458551098\tthat:0.047867136872507786\ton:0.04432998530891691\tby:0.04351562192377939\t:0.01\n",
"in:0.5691650014524939\tIn:0.1120688894044982\tof:0.08454388915316519\tor:0.05631492550287504\tto:0.0433686082280498\tat:0.036434115348575796\tfor:0.03386527417580937\twithout:0.0310845952358462\tby:0.023154701498686432\t:0.01\n",
"of:0.41301135976662445\tin:0.17292526834669045\tto:0.11716607909984796\tby:0.0652214407994967\ton:0.05700780607238694\tand:0.050268326970287415\tthat:0.04152806741801902\tfrom:0.03845599393956835\twith:0.03441565758707865\t:0.01\n",
"the:0.3156120566176114\tand:0.18065527291598812\tof:0.13282175656982317\tin:0.07149998222937443\tto:0.06905483533007659\tthat:0.05972209936444573\twas:0.05565071582586487\tI:0.053471938431946635\tbe:0.051511342714868964\t:0.01\n",
"to:0.634865968094671\tnot:0.06302910475794106\tand:0.06140238621306985\tcan:0.05486956904576151\tcould:0.0540175394086703\twill:0.042702393752342284\tI:0.029464032713616493\tthey:0.025897934351996842\twould:0.023751071661930526\t:0.01\n",
"of:0.2108535223067492\tfor:0.15669136546698822\twith:0.12254085938875742\tis:0.0979426207921416\tto:0.09760624675472224\tin:0.08170203052166135\tand:0.08136000968583855\tas:0.07993364433163475\tby:0.06136970075150661\t:0.01\n",
"of:0.7066491766090061\tto:0.07120016867395375\tin:0.06513962540994084\tand:0.04896815454368445\tthe:0.03628504868065644\tfor:0.02837247673259831\t<s>:0.013566135524010214\tfrom:0.010126447798708683\tot:0.009692766027441383\t:0.01\n",
"of:0.22850681642534088\tand:0.18054642647170197\tthe:0.1409395272176384\tto:0.12572603680964295\tin:0.10801035135911759\tthat:0.05852378535808314\tfor:0.053353734691623585\tor:0.05107177881034697\ta:0.04332154285650474\t:0.01\n",
"that:0.2209889811040906\tand:0.15207033279011303\tas:0.14462976982470205\twhen:0.14235627329891154\twhich:0.1148519808845047\tWhen:0.0651042458899145\tif:0.06443013027369297\tbut:0.05077695476048175\tuntil:0.034791331173589\t:0.01\n",
"well:0.21321257425074594\tknown:0.1833023137221186\tsoon:0.17017982311130794\tfar:0.13451377472303216\tand:0.1048509904369157\tlong:0.06163044115944836\tsuch:0.04848962176196867\tjust:0.03999506790086283\tmuch:0.03382539293359975\t:0.01\n",
"the:0.333491644696878\tto:0.14483174923610254\tof:0.13836347956101022\ta:0.13530224697264623\tand:0.08679645812652999\tin:0.06952097042193187\t.:0.031235759732179104\tat:0.028167557547231103\tor:0.022290133705490916\t:0.01\n",
"and:0.23252451508161945\tof:0.21066946042617074\tthe:0.20127227120853988\tto:0.11602588072302103\ta:0.0704238344236959\tI:0.04376167981419295\tin:0.04344430855840654\tor:0.03666410683986516\tfor:0.0352139429244882\t:0.01\n",
"the:0.3617779263679718\ta:0.14312752033123308\tand:0.1360536260392155\tof:0.12146127489303132\tto:0.0648903643512659\tin:0.056288571059677495\tThe:0.0372689738897609\tan:0.03475917146203292\tMr.:0.03437257160581108\t:0.01\n",
"and:0.34552905288708835\tI:0.15144418362723566\tthat:0.11149123836349087\tthe:0.07961448510726987\tbut:0.07062924444863011\tcan:0.06853155217130387\the:0.06699830309022808\tor:0.05002369560081509\twill:0.04573824470393794\t:0.01\n",
"of:0.38655600764197395\tthe:0.17833485677042338\tin:0.1697925816209492\tby:0.11478684371576024\tto:0.04369345296587816\ton:0.033595518712300015\tIn:0.022771387873043464\tfrom:0.02083394409189678\tupon:0.019635406607774863\t:0.01\n",
"and:0.2562998759567814\tthat:0.2187314670914437\tas:0.10316712104206423\tbut:0.09212762537767408\tmade:0.08736781639242519\tmake:0.062353498718669804\tto:0.058714015028540074\twhen:0.0564443884146501\tof:0.05479419197775149\t:0.01\n",
"they:0.27430562438208606\twho:0.15730241273698764\tmen:0.122888571689373\twhich:0.11946856212384457\tand:0.09253409777170302\tThey:0.06762577723423864\twe:0.06741612684715163\tthere:0.04693488177486403\tthat:0.04152394543975141\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"of:0.33595057667642475\tthat:0.13991201188244579\tand:0.12930986823957683\tin:0.10438619588460321\tafter:0.06345042549361944\tto:0.06087712879558945\tfor:0.059070009496866374\tby:0.05253473999281255\tfrom:0.04450904353806173\t:0.01\n",
"the:0.5013397492922371\tof:0.16674053364244018\tThe:0.13714525707718073\tthat:0.05309903815870697\ttho:0.0326506329891621\t<s>:0.029907592416947515\tMr.:0.025466371801444645\tand:0.023956428823138295\tby:0.019694395798742454\t:0.01\n",
"the:0.33120446074828425\tof:0.14540988823130213\tand:0.1412192544624996\ta:0.1377447104562221\tto:0.09206378381544497\tin:0.06802338655071061\tThe:0.025124251985585457\ttho:0.02467657296323127\tfor:0.024533690786719593\t:0.01\n",
"J:0.16212505640134686\tand:0.16055774327439643\tW:0.14409352398009934\tof:0.10821467827940769\tat:0.09003782296929078\t<s>:0.08804862430179455\tE:0.08235792626350752\t.:0.08095075216026493\tthe:0.07361387236989188\t:0.01\n",
"<s>:0.24728533594793464\tand:0.20253763753382348\tmade:0.0988615075741576\twas:0.09538551140811594\trecorded:0.07923243876425153\tthat:0.07572633810967984\tbe:0.06754695020072057\tis:0.06282737303055098\to'clock:0.06059690743076549\t:0.01\n",
"and:0.35233839292952024\tplace:0.11630998229988385\twas:0.09708309412283911\theld:0.08406860892014513\tmade:0.073526851487507\tcommittee:0.07100383530579545\twork:0.06919685443827088\tMinnesota,:0.06352463609507583\tup:0.06294774440096246\t:0.01\n",
"do:0.46323588921528736\tdid:0.26427765978951273\tdoes:0.10823541961328483\tcould:0.04883505285665004\twould:0.04378830986826582\twill:0.031072969200934074\tand:0.011093674980324637\tis:0.01076286019224127\tshould:0.008698164283499187\t:0.01\n",
"was:0.18087785493288766\tof:0.1734023407069216\tin:0.16215870874648547\tis:0.1355711307067312\tand:0.10374779162170138\tbe:0.07477864895331766\tare:0.06582585472390032\tbeen:0.05225591464123345\tnot:0.04138175496682131\t:0.01\n",
"this:0.2338448905125665\tthe:0.18291656370360218\tan:0.15376530689024573\ta:0.11938902184210959\this:0.09333666875434658\tone:0.060767799643636135\tno:0.05529772334780978\tevery:0.04623745988090579\tsuch:0.044444565424777864\t:0.01\n",
"the:0.38159317416632943\this:0.1355471534459218\ta:0.12228530978866922\tof:0.11183202215382827\tand:0.06913247367792706\tsaid:0.05060520687786934\ttheir:0.048764253717398724\tmy:0.03892085745638583\twith:0.03131954871567036\t:0.01\n",
"the:0.5816023865996358\tand:0.0918345049639018\tof:0.0817740310639773\tThe:0.0593475314627594\tsaid:0.05178210761813814\ttho:0.036819702099305164\tin:0.032087453728403284\tthat:0.029315682355689588\ta:0.02543660010818949\t:0.01\n",
"of:0.31449357894868496\tthe:0.18337011108828652\tin:0.11873423966962499\tand:0.10028715497764043\tto:0.09384029928810349\ton:0.04851014382305286\tfrom:0.044893096571980526\tfor:0.04302536165708127\ta:0.04284601397554516\t:0.01\n",
"spite:0.1487507634548454\tout:0.1458209698160799\tand:0.13969007688794002\tthat:0.10391708813818727\tvalue:0.10208382150396517\tpart:0.09633133876814114\tone:0.08915362516772866\tsum:0.08654755829201861\tamount:0.07770475797109394\t:0.01\n",
"that:0.2625488556160498\tand:0.2520467190191451\tif:0.11993807941009217\tbut:0.07862935832041908\twhen:0.06673635532880946\tIf:0.060088971133897426\twhere:0.05355476418847952\tas:0.051490858421913005\twhich:0.0449660385611945\t:0.01\n",
"the:0.7914037297902126\ttho:0.03813723759117889\tour:0.033372096095686456\tof:0.031078416132210848\tAmerican:0.027584979344457083\ta:0.018992157416735787\tand:0.017825460649231004\ttbe:0.016610046376853687\this:0.014995876603433695\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"to:0.3754042778697171\tand:0.2884008256966657\tthe:0.09211423169616423\tof:0.0764629949311275\twould:0.04211632351187695\tfor:0.0323147785400774\tin:0.029601083834398766\tthat:0.02682790968687856\twill:0.0267575742330938\t:0.01\n",
"the:0.6402710699437633\tJudicial:0.09979381717334208\tin:0.0556556623621443\tsaid:0.05305684924167807\ttho:0.0344137080262435\tof:0.033271781465327895\tCongressional:0.02831080002921923\tSchool:0.02358858742717196\ta:0.021637724331109484\t:0.01\n",
"taken:0.18684680946596052\tfar:0.12256107222481677\tget:0.12092823330539006\tput:0.10696837467512708\tcarried:0.10414270415736548\twent:0.09953265237829059\tgo:0.09017324103072946\tthem:0.0795944579438025\ttake:0.07925245481851759\t:0.01\n",
"the:0.38176925233014886\tand:0.31841081666500776\tThe:0.06327198868498768\tof:0.05751672588961818\tby:0.056814549931801586\tas:0.03786538850348946\t.:0.030515762547298632\ttho:0.023925224505188063\t<s>:0.01991029094245985\t:0.01\n",
"he:0.20789207604623045\tIt:0.1988010239314513\tit:0.18841071745916882\tand:0.1703245183377162\tshe:0.05576969193456509\tHe:0.049822639100030534\twho:0.043970454365322285\tI:0.04231365407929174\tthat:0.032695224746223564\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"the:0.47501461643748394\ta:0.1509489379854144\tand:0.07641582521898639\tThe:0.07584516586681493\tof:0.06793301992017688\t.:0.04113805402200238\tA:0.04028035185716468\tMr.:0.033363424260122884\ttho:0.029060604431833666\t:0.01\n",
"be:0.281815499433345\twas:0.14108466569694278\tand:0.1341968317370267\tbeen:0.10526769293480794\thad:0.08248763847234097\thave:0.07884912299756915\tis:0.061110109186682984\thas:0.05558043263306591\tgreatly:0.04960800690821858\t:0.01\n",
"of:0.4140816151752628\tand:0.10468809332915953\tto:0.09262100977621888\tin:0.0854045642805418\tthat:0.08259992907789321\tby:0.05498791114365366\tfrom:0.054489638307371156\tfor:0.052036965528689944\tthings:0.049090273381208915\t:0.01\n",
"of:0.3308442922213524\tto:0.1432471988342217\tin:0.131701708736979\twith:0.09441568321518254\ton:0.06848424163509252\tand:0.061113441995290306\tfor:0.05843564615357509\tby:0.05382836431950813\tfrom:0.047929422888798305\t:0.01\n",
"one:0.18194620645707993\tand:0.15607478367122093\ttwo:0.11611221790355318\tside:0.11318367767672678\tout:0.0955137588096896\tpart:0.08326089054684142\treason:0.08277848075666353\tpeople:0.08172086343909819\tthat:0.0794091207391264\t:0.01\n",
"time:0.1858386952704319\tit:0.13347444433082067\tmore:0.10921953553494212\thundred:0.10325462543714507\tup:0.09598613416247676\thim:0.09394771981812784\tlife:0.09305264390817018\tout:0.09109677263862842\tin:0.08412942889925719\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"of:0.2333367170013395\tfor:0.18213837517465895\tin:0.1469291933255103\twithin:0.13742013340447773\tIn:0.09622125057581485\tduring:0.06362483054612363\tand:0.049939600763271974\tfrom:0.04090817944441952\tto:0.03948171976438338\t:0.01\n",
"so:0.3951303158997033\twell:0.18289135950249416\tfar:0.07851553145636678\tand:0.07717096507941125\tsuch:0.06762643991661786\tmuch:0.058702302471361475\tit:0.046889839191201245\tmanner:0.04294895405322766\tdoubt:0.040124292429616286\t:0.01\n",
"<s>:0.22979191452184325\tof:0.14319849602035345\tit.:0.1423085931890739\tthem.:0.09799817994290941\tand:0.09064763285034051\tas:0.08483892873713436\tthat:0.07167556750035592\thim.:0.06854178377885639\tin:0.06099890345913269\t:0.01\n",
"the:0.5718962553032814\ta:0.16324418035820293\tof:0.11194255933103313\ttho:0.03899484157339433\tThe:0.026218988014069747\this:0.023304043890814887\tand:0.01956293496470395\tour:0.017447385176640007\ttheir:0.01738881138785958\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"of:0.3650046519767105\tdated:0.14307719305452252\tin:0.10187643164635538\ton:0.10126804875323098\tand:0.07507196685328574\tat:0.06941765458872234\tto:0.05266743088898213\tthe:0.04430727920699742\tfor:0.037309343031192994\t:0.01\n",
"act:0.2313462183733933\tday:0.1576056776339896\tpart:0.10351458374359032\tState:0.09329499826152307\tand:0.08846710041268498\tcity:0.08488276818736726\tout:0.08201041690105033\tthat:0.07590150727672067\tAct:0.07297672920968035\t:0.01\n",
"well:0.21321257425074594\tknown:0.1833023137221186\tsoon:0.17017982311130794\tfar:0.13451377472303216\tand:0.1048509904369157\tlong:0.06163044115944836\tsuch:0.04848962176196867\tjust:0.03999506790086283\tmuch:0.03382539293359975\t:0.01\n",
"is:0.3735497297229149\tare:0.2032827392251393\tand:0.1803286690748019\tIs:0.05558095449606522\twas:0.040066844663230086\tnot:0.03877936075381344\tI:0.037149815278519335\tbut:0.031255994279897364\thave:0.030005892505618473\t:0.01\n",
"the:0.2873953035074578\tof:0.21344440021812378\tand:0.11296142765504273\ta:0.08461592541970958\tto:0.08226070552655401\tbe:0.0742740825216053\tin:0.049384345903346547\tfor:0.04346745705650477\ttheir:0.04219635219165555\t:0.01\n",
"of:0.4861336251599419\tthat:0.1115594700781591\tin:0.09040851691733048\tall:0.06931543628039931\tand:0.059459389048942615\tto:0.05095129504310629\ton:0.04153840345432324\tfrom:0.04082483578089256\tfor:0.03980902823690446\t:0.01\n",
"it:0.2308295215186172\the:0.16593275789694661\tthey:0.11702002066218763\tIt:0.10761284194635261\twho:0.09571555387631454\twhich:0.07739622894719829\twe:0.07376423551857525\tand:0.071268635366784\tyou:0.05046020426702396\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"that:0.2070273917374271\tif:0.20604966688644344\tIf:0.1616308319926401\tand:0.1368845629283772\tdo:0.07227668310266096\twhich:0.06854376738300874\tDo:0.052905517008750645\twhen:0.04613714195233519\twhat:0.03854443700835655\t:0.01\n",
"of:0.2979812470379734\tin:0.1805013896245557\tto:0.13297681558029617\tand:0.08810865225191374\tfor:0.07101836790864041\tthat:0.06212439246729545\twith:0.060227187943598985\tby:0.05104740563936024\ton:0.046014541546366035\t:0.01\n",
"the:0.2675718039535785\tof:0.23149797246986645\tand:0.13126801513919192\tto:0.11781196660475796\ta:0.06531886340197898\tin:0.047297720466974835\tat:0.04498631150755511\twas:0.0435139305398418\tis:0.04073341591625438\t:0.01\n",
"he:0.25179289243962555\tit:0.22070046822878345\tand:0.12973099107657496\tIt:0.111466338891622\tHe:0.07921973130351419\tshe:0.06927502789033158\twho:0.046736495588932774\tthat:0.04125709675970126\twhich:0.039820957820914216\t:0.01\n",
"the:0.35617952099976535\ta:0.16028170929355814\ttheir:0.0942924543858023\this:0.09130652079008215\tof:0.08787797367401168\tand:0.06635134238974713\tare:0.048248528342331676\tin:0.04275225641117302\tits:0.04270969371352851\t:0.01\n",
"of:0.22069197218874617\tin:0.16987170337791424\tby:0.1147592567022095\tfor:0.10009388943528477\tto:0.09953242685335839\tas:0.08974678163902755\twith:0.08420487360728354\tand:0.057766496540975584\tthat:0.05333259965520025\t:0.01\n",
"was:0.28791393761739015\tis:0.24073957575219668\tare:0.09500399300516456\tI:0.08000229898843549\tand:0.06920022644460383\tbe:0.0672104548322175\twere:0.06345978521345523\tIs:0.04620671273918811\tbeen:0.040263015407348404\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.5857778455584016\tThe:0.1000520472096542\tthis:0.06948108952065415\tthat:0.05520121627990924\ta:0.04730934665197908\tand:0.042884711316966105\tof:0.036024233116959264\ttho:0.030970480360493647\tone:0.022299029984982725\t:0.01\n",
"and:0.24849596265680837\twas:0.13630028341188777\tbrought:0.12492330957578504\tis:0.0967409934192446\tthat:0.08502925602342755\ttalk:0.08174470029336743\tbring:0.07701178641869665\tall:0.0741144485800518\tnothing:0.06563925962073079\t:0.01\n",
"him:0.22511585349940635\t;:0.1342553032180852\tman:0.11574635372301251\thim,:0.0950718889975085\tup:0.09324255187190897\tand:0.09098934403345373\thimself:0.0835495239653671\tin:0.08043645717718255\tman,:0.07159272351407525\t:0.01\n",
"I:0.25726595740057484\tyou:0.17142757275118647\tnot:0.1548095081291174\twe:0.12142873454680987\tWe:0.07140632299763734\tand:0.06196619005073569\tthey:0.061777487008398586\tdon't:0.048783509212946635\twho:0.0411347179025932\t:0.01\n",
"and:0.2708555229503238\tof:0.16875357166365473\tthe:0.15806028549716694\tto:0.1266985020119527\tbe:0.06506136079902888\ta:0.05367233913074959\tmore:0.052564597091336124\tin:0.048713423836331086\twas:0.04562039701945622\t:0.01\n",
"the:0.27159777710392613\tof:0.21207495845380905\ta:0.1666788723462926\tin:0.08485992759477423\tto:0.08217900692102638\tand:0.06595543303544736\tby:0.04570725806604877\tfor:0.030561091679461833\tthat:0.030385674799213527\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"the:0.23855831420582568\tof:0.21725116005425268\this:0.13734861761457673\ttheir:0.13029875117236722\tand:0.07729310717436086\tin:0.06638857482494308\tpublic:0.050567001001238496\tat:0.03633491765298308\twith:0.03595955629945218\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"the:0.4018337174035255\tan:0.20652394783740063\tof:0.10546232383733174\ta:0.06523610486684271\this:0.056411165394769355\tThe:0.0473724802955412\ttho:0.04563813839169151\tAn:0.030805480024584556\tand:0.030716641948312924\t:0.01\n",
"that:0.33477060598829783\tthis:0.25071585055495427\tthe:0.15470059947406237\tfirst:0.07090427642403874\tany:0.04343755434716636\ttaken:0.04143409060849695\ttook:0.03984369234036508\ton:0.0293112992805127\tto:0.02488203098210588\t:0.01\n",
"the:0.3876192825613133\ta:0.24245894478966917\tto:0.08061207508537012\tand:0.06739253911751615\tof:0.06446055308225122\tthat:0.03961066972875309\tThe:0.03913401886577171\tby:0.03648447475224014\tno:0.032227442017115186\t:0.01\n",
"of:0.4153838724340702\tthe:0.15279913724682492\ta:0.10653694121122788\t<s>:0.07263669378693619\tthat:0.051255525004253184\tfor:0.05115249942219128\tby:0.04786368962566164\tto:0.046727893450532985\tand:0.04564374781830183\t:0.01\n",
"of:0.34114007131537\tto:0.15200999985469213\tfor:0.10644594576838846\tand:0.10044386457492255\tin:0.08280397815908254\twith:0.06565615623647691\tby:0.05740581249515138\ton:0.042122543310898576\tfrom:0.041971628285017326\t:0.01\n",
"it:0.3480806811567319\tIt:0.3033077168975875\twhich:0.0656694550331553\tthere:0.05611346552863104\tthat:0.05118202229777803\the:0.04985122752458861\tand:0.0456335796784712\tThis:0.03874706653299095\tthis:0.031414785350065394\t:0.01\n",
"it:0.35505309117815476\tIt:0.2256851548211504\twhich:0.09186997500389063\the:0.07427712557156563\tand:0.06860291172058657\tthat:0.06252393229388647\tthere:0.045646756155683414\twho:0.03881624702318383\tThis:0.027524806231898347\t:0.01\n",
"the:0.7829164627188088\ttho:0.04500557608309422\tsaid:0.030095076233995766\tof:0.027164644892830114\ttbe:0.024179388043393396\ta:0.02346770569303026\tthis:0.02214454322951923\tThe:0.01957586151075835\tour:0.015450741594569972\t:0.01\n",
"the:0.33404454697379315\tan:0.24598479648497432\this:0.10884477959169327\tThe:0.08763409629841687\tand:0.054879186947487106\ttheir:0.05274221981128873\tof:0.04160590873989812\tits:0.0343966564360943\ta:0.02986780871635424\t:0.01\n",
"the:0.5430707856479376\tof:0.13687931080349686\ttheir:0.0631323488313438\this:0.05590056626924035\ta:0.05262774047255317\tand:0.039383347433444515\ttho:0.03481012252961093\tour:0.0334439640385524\tor:0.03075181397382042\t:0.01\n",
"of:0.2859662656950196\tthe:0.2563316712976624\tand:0.10790529171281175\tsaid:0.08331977629093533\tthese:0.06434011381748846\tall:0.05629121008546557\tby:0.047038939601406544\tor:0.04533090022534515\tfor:0.04347583127386522\t:0.01\n",
"of:0.22477676469919997\tto:0.18071963000738772\tin:0.11392148701484019\tat:0.10382937309658317\tby:0.09341802144411798\tand:0.0876267974261804\tfor:0.07274879703388247\twith:0.07007813360676265\ton:0.04288099567104544\t:0.01\n",
"the:0.41832565917419784\tthis:0.21000510182507384\ta:0.09591395633142098\tThe:0.07780273993707584\tthat:0.06806835479745764\tand:0.04911519578021091\tThis:0.03007382119677928\ttho:0.021062720363236184\tof:0.01963245059454743\t:0.01\n",
"the:0.5352828105850697\tand:0.13365066849587\ta:0.06967615579514337\tof:0.0624016060579551\tno:0.04344578082754008\tThe:0.039109017192930536\ttho:0.037429695720530856\tall:0.03490233493225106\ttheir:0.03410193039270913\t:0.01\n",
"the:0.5140531194428726\tthis:0.09421985286532075\tin:0.07792825168389333\this:0.06901644435637629\tpost:0.06655739038646023\tof:0.06447550352804154\tto:0.057865493092256415\ttho:0.02364749032320902\tclerk's:0.022236454321569676\t:0.01\n",
"of:0.366026224936803\tto:0.15539458779547466\ton:0.10699431330907433\tby:0.08306703756703734\tin:0.06631594087578455\tat:0.06306127163778164\tfrom:0.055685467744058\tthat:0.048455078525739326\twith:0.04500007760824716\t:0.01\n",
"or:0.3192117544228829\tnot:0.1171266057892633\tand:0.11174353154819577\tmuch:0.1085803357996153\tbe:0.08484263148238003\tof:0.08303684000061515\twith:0.0661475692714183\tuse-:0.05895623321316947\tdoubt-:0.040354498472459685\t:0.01\n",
"and:0.21597828110317965\table:0.12846257352367407\tenough:0.09895315523035424\tis:0.09843416555592825\tthem:0.09666190866979392\thim:0.09429551127542689\tnot:0.09350381477885417\torder:0.08339486186847957\tas:0.08031572799430922\t:0.01\n",
"of:0.19338111972086564\tin:0.18298952234404992\tfor:0.12710591945543037\tby:0.10587375627230934\tto:0.09509955894908688\twith:0.09076262586603578\tand:0.07280642536645196\tIn:0.062452794431371\tthat:0.0595282775943992\t:0.01\n",
"to:0.6805516550835228\tand:0.14614811250764265\twill:0.0619106229751823\tnot:0.02742537602590563\twould:0.01935631911665113\tI:0.014456788327343036\tmust:0.01420285084928987\tthey:0.013366737651447011\tyou:0.012581537463015649\t:0.01\n",
"of:0.21794123308637872\tknow:0.205492397520078\tand:0.13398616858142928\tto:0.10890958485868302\tsee:0.07522534414307262\tin:0.06670558905662756\twith:0.06109468812407517\tmatter:0.06059642059561671\tsome-:0.0600485740340391\t:0.01\n",
"n-:0.1869983514540216\tthe:0.1730006138034935\ta:0.14738456764937985\tand:0.13468523780322442\tto:0.11315159997775302\t-:0.0839237011071601\this:0.0543155279062144\tnot:0.0497012328381851\ther:0.046839167460568036\t:0.01\n",
"State:0.3559270294997509\tday:0.15650667321648637\tstate:0.12400770326863875\tcounty:0.07699403591085066\tcity:0.0733669447210263\tline:0.0732720515377507\tCounty:0.06504902189788742\tside:0.034811446323523405\tcorner:0.030065093624085437\t:0.01\n",
"and:0.167673560168984\thim:0.1302595889239382\twant:0.12288405280822053\table:0.11252456763525269\tis:0.10177603532893538\tenough:0.09848886248683617\thave:0.09133909511025426\tme:0.08613098450363031\tnecessary:0.07892325303394836\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.3341443303844184\tof:0.2126818585796327\ta:0.13293634192733628\tand:0.07662203096260174\tby:0.064449928025651\tto:0.04861107681973986\tThe:0.045150945880227514\tfor:0.042227154326692225\this:0.03317633309370032\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"the:0.42122209882961853\this:0.1180068871569412\tof:0.11090480925286436\tto:0.09140103618335228\ttheir:0.07439069042952377\tin:0.055214548222526236\ta:0.05517897747716409\tand:0.034245385464386165\tour:0.029435566983623335\t:0.01\n",
"as:0.16683604475923364\tup:0.1539028598484388\tcame:0.12826444072495238\tand:0.1203462899100031\tcome:0.11364485149596151\tsent:0.08325251068286922\tback:0.0822367022569837\tit:0.07501903527794411\tpresented:0.06649726504361371\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.23421743829238634\tfilled:0.14255606911313085\tcovered:0.11099956442369732\tup:0.10448259031004953\tcharged:0.08976562798026519\tit:0.08098974475047782\ttogether:0.07914592500174995\thim:0.0764309294967871\tbut:0.07141211063145576\t:0.01\n",
"<s>:0.32285616252127114\tand:0.19134587213807477\twas:0.08226218979507015\tthat:0.08188763720483351\tmade:0.07382141432160089\tit.:0.06895875144309487\tfile:0.06813787898337534\tis:0.05420556549123636\tbe:0.046524528101443\t:0.01\n",
"the:0.4757332068206846\tof:0.1648791125642541\tand:0.07968236710902674\ta:0.063183108017336\tto:0.05395903304385412\tThe:0.04519656005053238\tsaid:0.04073012374825985\this:0.03527471068064564\tfor:0.03136177796540668\t:0.01\n",
"the:0.30795727325314903\tof:0.17967943784603851\tand:0.1682163464043912\ta:0.09529962795272326\twas:0.057187811754078846\tThe:0.056557534852272474\tto:0.04621834097561\tas:0.040011965373857365\tor:0.03887166158787938\t:0.01\n",
"of:0.21537888567026206\tthat:0.17670854654276125\tthe:0.15988339844726043\tand:0.15824425342754803\tThe:0.10248982060232253\twhich:0.05422020370865676\tMr.:0.04420888439893019\t<s>:0.043144893820097396\tby:0.03572111338216136\t:0.01\n",
"the:0.4042614453715767\ta:0.14503550165434714\tin:0.083969595331194\this:0.07423221243662609\tof:0.07200881583149543\tThe:0.06625919009403966\tthat:0.056670845700223155\tand:0.049016312210406685\ton:0.03854608137009103\t:0.01\n",
"New:0.9501917757758191\tof:0.009877745657366706\tNow:0.009279916204838918\tXew:0.009007171021800802\tto:0.002928067046179877\tMew:0.0028208088355418815\tand:0.00245964478669105\tthe:0.0019536601417816\tin:0.0014812105299800832\t:0.01\n",
"nothing:0.31488661985439564\tin:0.1622048446247785\t;:0.11437467006998321\tis:0.09946701221256898\tanything:0.0861769105226929\tit,:0.06424969986515802\tthem,:0.05456609355635031\tand:0.04726259539470592\tfor:0.04681155389936645\t:0.01\n",
"the:0.23096407016366577\tof:0.1722033400437719\tand:0.14147498841999784\ta:0.12083689853514935\tto:0.11852942901038442\tbe:0.06109875657352347\twas:0.058041221521029175\tin:0.05303128523338767\tat:0.033820010499090294\t:0.01\n",
"and:0.2906065355884855\tmade:0.1436777358689203\tor:0.11036674633164895\tthat:0.10267895637718864\thim:0.07232384145617174\tdone:0.07226369859464865\ttaken:0.07150958543796299\tit:0.06478942832561096\tbut:0.061783472019362115\t:0.01\n",
"made:0.32897717204525306\tand:0.16165590749082118\tpaid:0.08351014551037905\tgiven:0.08177917713336472\tor:0.07551168271566557\tdone:0.06539383123769393\tfollowed:0.06484889507945198\ted:0.0646023886216096\tsecured:0.06372080016576091\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.23096407016366577\tof:0.1722033400437719\tand:0.14147498841999784\ta:0.12083689853514935\tto:0.11852942901038442\tbe:0.06109875657352347\twas:0.058041221521029175\tin:0.05303128523338767\tat:0.033820010499090294\t:0.01\n",
"of:0.34027471467671666\tas:0.10382831098160024\tin:0.09220709450668907\tand:0.08857191048999369\twith:0.08805779764751304\tfor:0.08771731601574143\tto:0.07254621732044018\tat:0.06380427013584541\tis:0.052992368225460204\t:0.01\n",
"the:0.5076628671531154\tat:0.2631376156942473\tAt:0.05297062574332165\ttho:0.034269582625248304\tof:0.032324565888802774\tto:0.03051223624735961\tand:0.030460919276258134\tThe:0.02238020677281277\ton:0.016281380598834133\t:0.01\n",
"of:0.18889621255652908\tin:0.17344029139987502\tat:0.14066339779899656\tfor:0.11990367273711422\tduring:0.11076958109425589\tto:0.07979246603912211\tIn:0.062044683601134\ton:0.06190611738051835\tand:0.052583577392454804\t:0.01\n",
"part:0.21496902104278678\tone:0.20912369233988043\tsome:0.12867331343811736\tout:0.1057303116879626\tmembers:0.07618604502434112\tand:0.06636584999188522\ttion:0.06479865598258486\tportion:0.06226235532256281\tside:0.061890755169878825\t:0.01\n",
";:0.370830555960916\tand:0.12955587622433848\tthem,:0.10195636904467445\thim,:0.09418306376298548\tit,:0.07474637632054887\t<s>:0.05707345609395646\tmen:0.05660046969971623\tStates,:0.05341599193576092\tyears,:0.05163784095710307\t:0.01\n",
"a:0.3007564845598279\tthe:0.2808373026861622\tand:0.14986577447292027\tor:0.08088850463796544\tof:0.06324414825263165\this:0.02967421671906959\tto:0.029605918006570295\tin:0.028320022308247525\tour:0.02680762835660509\t:0.01\n",
"of:0.34540716911990466\tin:0.14510905187319723\tto:0.11120839216507301\tfor:0.09211449051552312\tby:0.06561658896443473\tand:0.06431571155383159\twith:0.061443230561380895\tfrom:0.05843703955567708\tat:0.046348325690977785\t:0.01\n",
"of:0.3761566067192577\tthe:0.16602777211863973\tsaid:0.10891017383822288\tfor:0.08647690068210356\tthat:0.07624845295017556\tand:0.06453703688352402\ta:0.04822467041251815\tThe:0.041459592418973096\tthis:0.021958793976585293\t:0.01\n",
"all:0.452425012617344\tand:0.1213423240699824\tit:0.08165143234593371\twent:0.07504130053748853\tpassed:0.06601773358570145\tspread:0.05616595063436267\tgo:0.05037340420547907\tcontrol:0.04473858373963683\tturned:0.04224425826407117\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3973471732241112\tof:0.15148752742507743\tand:0.14441177795627336\ta:0.10039976640996823\tThe:0.057966806900372224\tMr.:0.041249930492388204\tto:0.03681819378615323\tin:0.03296572819243\this:0.027353095613225915\t:0.01\n",
"of:0.3255176567906583\tin:0.2851575651922145\tto:0.12211324776314424\tIn:0.05473915086696196\tthat:0.04971182108721108\tby:0.0485176089821256\tand:0.03547796013054566\ton:0.03465783968069695\tfor:0.03410714950644151\t:0.01\n",
"was:0.19912554015605402\tis:0.16532774125115934\tare:0.12902698835234155\tand:0.12114989222170522\tbe:0.11423222416522964\tbeen:0.09543487098419366\tnot:0.06951804009771376\twere:0.05937990914102786\thave:0.03680479363057503\t:0.01\n",
"was:0.2527699050411656\tbe:0.15931436244633337\twell:0.13802877092916668\twere:0.11851174010960555\tare:0.09350985731609196\tbeen:0.07694940574782994\tis:0.06486955394127004\tand:0.06251836179961254\tbeing:0.023528042668924366\t:0.01\n",
"the:0.4960063031331357\tof:0.12149097541314449\tan:0.12013841942810684\tThe:0.11736775589998864\tand:0.05113562819280716\tin:0.025546311550442936\ttho:0.02358695349746032\tby:0.018543779342470892\twith:0.016183873542443005\t:0.01\n",
"the:0.3229136201479837\tof:0.24628598619543493\ta:0.1392013752288108\tto:0.07088970704755324\tand:0.055797737531977504\tin:0.05463349136760545\tThe:0.04126725950695871\tby:0.03193778630927928\tfrom:0.02707303666439659\t:0.01\n",
"that:0.30477923424740977\tand:0.18193295459359404\twhen:0.12669161518032496\tbut:0.09465495545291686\tas:0.08050190460265892\twhich:0.06622347418946783\tif:0.052474928020421564\tuntil:0.0419913756001036\tWhen:0.04074955811310252\t:0.01\n",
"the:0.3245562452005889\tsuch:0.15964531526734166\tand:0.15795975080705874\ta:0.07927212302702931\tor:0.06244885819618937\tThe:0.06189786390441921\tof:0.049990466233489954\tthis:0.04829877450679709\tthat:0.04593060285708578\t:0.01\n",
"man:0.2986317572934399\tone:0.13715040354979144\tand:0.12081111499875212\tthose:0.1203934108414829\tmen:0.08856037600837494\tperson:0.08698368736066187\twoman:0.05999179632260245\tall:0.04665791764271212\tpeople:0.030819535982182303\t:0.01\n",
"of:0.36305329888321847\tthe:0.2168511257689726\tin:0.15723006121165167\tand:0.06231454797136362\tfor:0.04939715643145252\ttheir:0.04225637845058233\tthis:0.03679194475399327\tan:0.03347420554261705\this:0.028631280986148467\t:0.01\n",
"of:0.2658250819860034\tin:0.170131542759162\tto:0.12169488711440235\twith:0.08079350607764182\tby:0.07940331999078871\tas:0.0788758353900011\tis:0.06863210745309054\ton:0.06724339653696697\tfor:0.05740032269194304\t:0.01\n",
"is:0.2303802215940981\tare:0.19293269814900318\twas:0.16968888230618226\tbe:0.11295512264392008\twere:0.07709217002952642\tand:0.057817426644010204\tthe:0.053715556174048155\ta:0.05063897047241544\tbeen:0.0447789519867962\t:0.01\n",
"and:0.277996730899043\tto:0.17322689951438638\tthe:0.1321015479891752\tof:0.10506772889468453\tthat:0.062308226954482\tbe:0.0618755410132223\tre-:0.06157234041771205\tI:0.06110129857387365\tin:0.054749685743420956\t:0.01\n",
"the:0.793110188418194\tThe:0.0680007249322337\ta:0.04727984495107901\ttho:0.037815219509135065\ttbe:0.01388223114083001\tand:0.00872439562697209\tthis:0.008147956113458716\tof:0.007678123471032178\tA:0.005361315837065278\t:0.01\n",
"have:0.38464248485588953\thas:0.287309757693328\thad:0.19117463298449705\tnot:0.04506596626872391\thaving:0.03560589893008913\tnever:0.01696158902759316\tlias:0.010284253456651859\tever:0.009874386600757522\tbad:0.009081030182469698\t:0.01\n",
"is:0.29083496633587086\tare:0.17885719995906366\tand:0.12170067686216979\twill:0.11647395776713536\tnot:0.07545588034659846\twould:0.05914775799678276\tcan:0.05174356255899444\tIs:0.048794210709706895\twe:0.0469917874636778\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"I:0.31679402468807766\t1:0.1178223326824127\tand:0.11249534163526792\tthey:0.10234027419648342\twhich:0.09343076605538983\tthat:0.09130004692772561\twe:0.05511804831053298\twould:0.05404798101035571\twill:0.046651184493754126\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"it:0.3974288810655867\tIt:0.293642549291998\twhich:0.06305545602239321\the:0.050983587864229504\tand:0.04727937793846708\tthere:0.046579080134048545\tthat:0.04008154170435226\tThis:0.02808506757632753\tHe:0.022864458402597255\t:0.01\n",
"and:0.3569369828172388\twas:0.16965876793091547\tbe:0.08128878700946408\tfeet:0.07266997782826652\tsituated:0.0711098646792474\tthat:0.06379992481251148\tbeen:0.061459154745292136\tis:0.05948724584736636\tmade:0.05358929432969775\t:0.01\n",
"of:0.4918135901470244\tfor:0.1097224035777057\tin:0.09992834934160963\tto:0.07963384415759389\tand:0.05558499842716486\tby:0.05425038078867492\tthat:0.04097838616745469\ton:0.03023212946098171\tfrom:0.02785591793178995\t:0.01\n",
"of:0.2892593919345714\tin:0.1487093368818357\tto:0.12364726557986971\tand:0.08100424542429852\tfrom:0.07921569356416491\tfor:0.07226250356976427\tIn:0.07080590082203018\tat:0.06403346985548722\ton:0.061062192367978094\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
"of:0.34195195569131276\tthat:0.13112854989418238\tand:0.11773051965713749\tto:0.11460173967089864\tby:0.0832711265331769\tin:0.07440879330494013\twith:0.04779659956917363\tfrom:0.04050918800111315\tfor:0.03860152767806499\t:0.01\n",
"is:0.16742209614947762\ta:0.15791925602321022\twas:0.12881702240557177\tthe:0.10209186713416986\thad:0.10201436940001862\tand:0.0957480821514621\thave:0.0839015595787544\thas:0.08110500256769738\tare:0.070980744589638\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"be:0.5197058394674862\tis:0.10949301748332503\twas:0.08036561674281845\tbeen:0.0698105003562374\tare:0.052503997921728746\tnot:0.047303203894761704\tand:0.0439618334301008\tbeing:0.03604149722941124\tas:0.030814493474130306\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.585529749704245\twas:0.11419903249382125\tHe:0.0541695905659852\twill:0.048200260787429554\tis:0.04385373126521834\tshall:0.04270427116043657\twere:0.04131718179729612\tare:0.030460801602180777\twould:0.029565380623387122\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.4361406080448813\tan:0.3301516281542256\tThe:0.056835605618374724\tand:0.039382559020063476\tin:0.03399227561779563\tAn:0.03045025639207824\ttho:0.023393562858970467\tthorough:0.022745218789833946\ta:0.016908285503776502\t:0.01\n",
"and:0.24413116292889298\tclosing:0.18173686344826198\twas:0.10859381659603785\tvalued:0.08665763038641584\theld:0.07932710425709101\tsold:0.07518688429361538\t2:0.07335995221601971\tis:0.07241280837793868\tarrived:0.06859377749572665\t:0.01\n",
"it:0.2112600983861695\tand:0.18701561389073504\tthat:0.13408961718414286\tas:0.09043615354760778\tto:0.07884685047022831\tIt:0.07796827900915186\tof:0.07521191902438157\tI:0.07398230903901534\tman:0.06118915944856765\t:0.01\n",
"of:0.23893817346111243\tthe:0.20310405091768752\ta:0.14497552055718887\tand:0.10175545452652067\tin:0.08890560716485375\tto:0.08163456984502818\tfor:0.07618759590233674\ton:0.027979879711235837\tby:0.026519147914035982\t:0.01\n",
"of:0.5098472274332899\tin:0.13268782784949315\tto:0.10592018786131684\tthat:0.04760484698437597\tby:0.04756578762629169\tfor:0.044769435977049424\twith:0.03932066956143651\tand:0.032009553032577166\tfrom:0.030274463674169264\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.7764999296158964\tthis:0.04679199793244175\ttho:0.04387746530910722\tThe:0.03456594335067862\ta:0.02583605601162931\tsaid:0.019428816109126425\ttbe:0.01852164543110365\tand:0.01290829813455908\tthat:0.011569848105457572\t:0.01\n",
"a:0.5998009961308172\tthe:0.1901663687393559\tand:0.07269003732433676\tof:0.03362294754943434\tmost:0.032598550339770535\tThe:0.025971889855195985\tto:0.012467676788730807\tA:0.012237486218320161\tin:0.010444047054038372\t:0.01\n",
"as:0.197810334551977\tand:0.17852329317885332\tright:0.13239256442435163\table:0.10285238727297427\tnecessary:0.08244422429091564\thim:0.08059785045509078\tis:0.0725481125494572\tmade:0.07206094697499794\ttime:0.0707702863013821\t:0.01\n",
"for:0.17244591378445848\twant:0.16762893741850285\tto:0.11770411698134392\task:0.10958073657411242\tgive:0.10723281201836538\tand:0.08837190437075781\tenable:0.08153493736189084\trefer:0.07840960477341832\tof:0.06709103671715003\t:0.01\n",
"I:0.8297636158126203\t\"I:0.06261630100694261\t1:0.045141297720590154\tand:0.02693294841774465\the:0.007858426235836104\thave:0.005198659563237336\tyou:0.004550585747701617\twe:0.0040376461041326415\t“I:0.003900519391194762\t:0.01\n",
"<s>:0.4693979884895438\tit.:0.1291284383163923\tthem.:0.07993278773457173\ttime.:0.05883830114720039\t.:0.058272424730048324\thim.:0.05698101414682551\tcountry.:0.04990347149350188\tyear.:0.04444587229472551\tday.:0.04309970164719067\t:0.01\n",
"of:0.41410937531165276\ton:0.13361528465557276\tin:0.10068506302574029\tto:0.09922362007558191\tfrom:0.062241379864843446\tat:0.05170917727994232\tand:0.04895626946085145\tfor:0.04353039389903216\tby:0.035929436426782924\t:0.01\n",
"the:0.7284021974903513\tThe:0.046922648781791955\ta:0.042290211872799355\tand:0.039977601373380724\ttho:0.03266660630459279\tan:0.02986996862753897\tgreat:0.02868955000019063\tby:0.022500525772680947\ttheir:0.018680689776673403\t:0.01\n",
"of:0.34728264899099676\tin:0.14215887982351633\tto:0.1404147383067016\tfor:0.09864627815064264\twith:0.054785701123241666\tby:0.053644066795130625\tfrom:0.05329000574984092\tat:0.05108682303848268\tand:0.04869085802144684\t:0.01\n",
"be:0.3261862609708531\twas:0.21382144541080195\tbeen:0.11650953817505898\twere:0.08110053017715275\tis:0.07612559436144445\tare:0.05614303134415687\tand:0.045349978136029166\the:0.0444178290535846\tI:0.030345792370918098\t:0.01\n",
"I:0.37533601445970743\twe:0.1660046400768893\tto:0.13869090064287892\tWe:0.08469124952664128\tand:0.059929998842924215\tyou:0.04952964659141554\tnot:0.0425327205991677\tthey:0.038736946272185734\twho:0.03454788298818992\t:0.01\n",
"to:0.6319059271570762\twith:0.08758396829194019\tof:0.07482800903256727\tfor:0.05770789270294688\tin:0.047653883522174714\tby:0.027251168730573254\ttold:0.023239937756214423\tand:0.020709239397389705\tupon:0.01911997340911751\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"was:0.16713091370826924\tis:0.15646542580320585\tas:0.14516323747993204\ta:0.10546710812129574\tare:0.10022430173697107\tso:0.09679814604209022\tbe:0.07564765105751192\tand:0.07496781103638432\twere:0.06813540501433957\t:0.01\n",
"be:0.243571707546794\twas:0.1656455328627362\tis:0.13013360521502884\tare:0.1114079348103074\tand:0.09324610948387765\twere:0.07462699414192799\tbeen:0.07314180623787203\tmore:0.05704661670572269\tnot:0.04117969299573319\t:0.01\n",
"of:0.22403420600549523\tin:0.14516170479825935\tand:0.13212057878410222\twith:0.1101450228669899\tto:0.09261782204281765\tfor:0.08424706121080791\tby:0.06881763727215481\tsuch:0.06729939123844483\tas:0.06555657578092805\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.2800201075459086\tof:0.18882796711224334\tand:0.12627996162247315\tto:0.1033980557093825\ta:0.07120412266480591\tbe:0.06516588277624905\this:0.05715550984727075\twas:0.055423545408809845\tin:0.04252484731285672\t:0.01\n",
"the:0.557934411409266\tof:0.08316006216839314\tan:0.07823985427481434\tin:0.05814001729153149\tAmerican:0.05759880784484477\this:0.04322932594933031\tand:0.041575456093516656\tany:0.03669173474650559\ttheir:0.0334303302217978\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"the:0.26625872993485494\tof:0.1625835508361643\ta:0.15346038844653312\tin:0.13878788975637707\tto:0.09483390445074552\tand:0.07373671975915319\tat:0.039614362007148546\tIn:0.03747865620485129\this:0.023245798604172047\t:0.01\n",
"the:0.3963691105472609\ta:0.12052118032377837\tof:0.0888032434777962\tsaid:0.08579864913679427\t<s>:0.07930487626375006\tin:0.07400115044024069\tand:0.06857345529372226\tThe:0.050863789666056404\tNo:0.025764544850600788\t:0.01\n",
"the:0.2565592856763004\tand:0.16157736779121995\tof:0.15134338486157242\t.:0.09007137648877869\ta:0.08125653102515105\tto:0.07861665297838209\twas:0.06837325609453332\tby:0.05214073674016157\tin:0.050061408343900514\t:0.01\n",
"the:0.34908347312361265\tThe:0.224954187971407\tA:0.11505263094371017\ta:0.10229738033732133\tthis:0.06739917188542573\tof:0.05524548713725964\tsaid:0.026973460816870937\this:0.025968240596949098\tMr.:0.023025967187443458\t:0.01\n",
"of:0.3329676822801331\tthe:0.27892605225571454\tand:0.16164113055676804\ta:0.04231087297138623\twith:0.039844689984751734\tto:0.03750674493443691\tby:0.03415849796785269\tThe:0.03137933000315643\ttheir:0.0312649990458002\t:0.01\n",
"the:0.24868646290323432\tof:0.16104541791680754\tand:0.12518979719446938\tto:0.1218368850680648\tat:0.09036037131072976\ta:0.08321987972823076\tin:0.06413860476896088\tor:0.04805229645404009\tfor:0.04747028465546257\t:0.01\n",
"of:0.4456777840806273\tto:0.09560895113887723\tin:0.09284068819157618\tfor:0.08486881655226551\tand:0.07299337516704156\tthat:0.06857975944056091\tby:0.05542877245174271\twith:0.04558075691807833\ton:0.028421096059230225\t:0.01\n",
"the:0.3247145973921336\tof:0.1912783922217495\tto:0.12657663807666622\tand:0.09633872751529743\ta:0.09623368406197352\tin:0.07246051313932513\tat:0.03990566458342589\tfor:0.021408717282748693\ttho:0.021083065726680054\t:0.01\n",
"and:0.3093655620212602\tto:0.17370118736174034\tof:0.13038200997623184\tthe:0.08771758421888157\twhich:0.06191870937029182\t<s>:0.05888938295259155\tre-:0.05752501777704928\tin:0.055852125160339605\tthat:0.05464842116161378\t:0.01\n",
"and:0.23580255416797472\twell:0.20966744422890934\tsoon:0.1124205769277958\tknown:0.09580680441054117\tfar:0.08146310857794631\thim:0.07783439401727266\tit:0.07046044511430063\tjust:0.05661291465818841\tregarded:0.0499317578970711\t:0.01\n",
"of:0.5096914960463135\tin:0.26327679899990786\tIn:0.0488960312216289\tto:0.04839721142208178\tthroughout:0.03177350416492719\tfor:0.02444217493599574\tby:0.02381083724313838\tfrom:0.022144736574457237\tthat:0.017567209391549418\t:0.01\n",
"on:0.26735118975860217\tof:0.24550610313907056\tdated:0.18056605770584966\tending:0.0868831020226611\tin:0.056170483574946854\tapproved:0.04500981084631592\tto:0.03882331150381738\tOn:0.03633515071000657\tand:0.03335479073872983\t:0.01\n",
"has:0.30771012964408184\thad:0.21708669711542256\thave:0.1368235878049748\twas:0.09279390008248628\tand:0.06497218529353174\tmortgage:0.056034713258425906\thaving:0.04716856856629219\tbeen:0.0383800488707171\tbe:0.02903016936406756\t:0.01\n",
"the:0.22621754684143483\tof:0.2121246296450364\tand:0.1387178532151598\ta:0.1330548885143689\tto:0.07801628138881134\tMr.:0.06384327045324964\tin:0.05393160683610293\twith:0.04333205764451371\tor:0.04076186546132228\t:0.01\n",
"which:0.15496386796764045\tit:0.15072730065574702\tthey:0.12268353006958817\tand:0.11221982455644267\tyou:0.10719853471700902\tthat:0.10051951342096695\the:0.09174005237583996\tIt:0.09165503494915202\twho:0.05829234128761378\t:0.01\n",
"which:0.255838017870698\tit:0.13303302280174323\tIt:0.1328440315880115\the:0.12608854745141604\tand:0.09550314927845814\twho:0.07898328622258206\tHe:0.06249124073586746\tthat:0.06196585535906089\tas:0.043252848692162706\t:0.01\n",
"and:0.25270837885461067\twas:0.13829601213063705\tsale:0.10369783849464313\tsell:0.10310680088816955\tis:0.09676146274200244\tare:0.08485395968471965\tnot:0.07354135043502759\tas:0.07187389970178623\theld:0.06516029706840373\t:0.01\n",
"the:0.3831503938444565\tof:0.1492569472633867\tand:0.11293223456262946\tto:0.10172907021591555\ta:0.08389787910239893\tmost:0.06118311323075722\this:0.03961195621396088\tin:0.030154990500242344\ttheir:0.02808341506625228\t:0.01\n",
"the:0.5251963145867579\tThe:0.1255610668206828\ta:0.08676719631147525\tand:0.060729258536983695\tat:0.044390358916201966\tof:0.04217608253502482\tMr.:0.03640658140785039\this:0.03463497012743934\ttho:0.03413817075758394\t:0.01\n",
"is:0.25283365325295226\twas:0.23201888482601596\tnot:0.12322430181677244\tare:0.08882796447082998\tbe:0.07208231098289045\ta:0.06487290613731156\twere:0.056624524217949154\tin:0.05250620683890738\tthe:0.04700924745637076\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"and:0.2165381807466691\tthe:0.18724203922351226\tof:0.14904754853675403\tto:0.11548725602063734\tbe:0.07888300539379994\twas:0.07500647985195938\tin:0.06698318540006265\tis:0.055634215838476345\tare:0.04517808898812875\t:0.01\n",
"the:0.2896108146811276\tof:0.18397419761328573\tto:0.11468204475268728\tand:0.10771170434286421\ta:0.07592978697561267\t<s>:0.06706784898641821\tin:0.06000383266755675\t.:0.048069145363931746\tI:0.04295062461651602\t:0.01\n",
"of:0.21569272072073573\tas:0.12186156121926711\tby:0.1148991124485833\tin:0.09979567930874937\tfor:0.09609846565048581\tsuch:0.09124993909328327\tis:0.08855616879885292\tto:0.08548012400399298\twith:0.07636622875604954\t:0.01\n",
"the:0.3045841366320723\tof:0.30447642199519875\tand:0.10932820637360081\tto:0.06879672080946335\tat:0.06745773732862961\ta:0.046523305290787596\tin:0.03839494212144507\t.:0.025327102383684883\tfor:0.025111427065117545\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"has:0.3605755933470742\thave:0.3163646381787759\thad:0.19309483805293787\tnot:0.04369178471779901\thaving:0.025441283091460976\talways:0.01621023602576035\tever:0.012286881462376107\tnever:0.01201594612171696\tlias:0.0103187990020988\t:0.01\n",
"to:0.2333497457753922\tof:0.19829904331092194\tin:0.18007538150672825\tfor:0.08500612376861874\tthat:0.07811138202070593\tand:0.07146329012511882\twith:0.054368911727729195\tby:0.05252220915684075\tunder:0.03680391260794428\t:0.01\n",
"the:0.24530449212159763\tof:0.16248162840082866\tand:0.14843583561982954\tto:0.14812932033974008\tin:0.07026439162584772\twas:0.06501632637583915\tMr.:0.05213509403927933\tthat:0.051159642967783914\tis:0.04707326850925396\t:0.01\n",
"the:0.3222700586422684\tof:0.1974830349703252\tand:0.14821900911444638\tMr.:0.0814022366829615\ta:0.07018330339807602\tto:0.052117954772225555\tThe:0.04496263648487065\t.:0.03895710737577016\tby:0.034404658559055994\t:0.01\n",
"be:0.1861246683055882\tis:0.165570265816252\twas:0.14898917871582879\tand:0.148064349017029\tare:0.08322890188432426\twere:0.07677842121006448\tbeen:0.07573522038093951\tthe:0.0550206092940943\thave:0.05048838537587943\t:0.01\n",
"recorded:0.22325770229068634\tand:0.14944921015488755\ttime:0.13453821407156652\twas:0.09876852635903467\tat:0.0973861639955784\tthat:0.0793685169588892\tis:0.07856215087329298\tbe:0.06617303620646234\tfor:0.06249647908960201\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"the:0.26351559705761063\tof:0.20176980468710737\tand:0.1575135665443189\ta:0.1011729916939024\tto:0.09962553929043218\tin:0.06054108870633049\twith:0.04054596563706453\tfor:0.033898947419923324\tor:0.03141649896331027\t:0.01\n",
"more:0.42897191827470343\tone:0.23113670593947463\ttwo:0.15588727953013579\tfive:0.037956986820914695\tdozen:0.029384684489764407\tfour:0.029162246985826645\tthree:0.028426912514649454\tten:0.025342829004206716\tsix:0.023730436440324333\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
";:0.19669173864448003\tand:0.18612501305085422\tup:0.10797025678167922\tfeet:0.09298009891957618\tthem,:0.08955171950714343\tit,:0.08790137574961032\tout:0.07950961305553611\thim:0.0759103289390061\ttime,:0.07335985535211438\t:0.01\n",
"al-:0.2968984231970954\tthe:0.15550395889588983\tall:0.09979432174365864\ttheir:0.08785335116810856\tother:0.07681485181670251\tof:0.07258475057673065\tand:0.07011827466765623\this:0.06621272284783886\tal­:0.06421934508631927\t:0.01\n",
"the:0.3703974622170521\tdegrees:0.23604662290930614\tminutes:0.16253696861300843\tthence:0.104181120204158\tdegrees,:0.03100246980598852\ttho:0.024934554745473417\tfeet:0.024510621348419154\tand:0.019882704147332942\tgrees:0.01650747600926117\t:0.01\n",
"to:0.41150994787547807\tand:0.33457682366908015\tnot:0.04682399608049895\twill:0.04344079393529064\tthat:0.03657401485219989\tI:0.03652055450569058\twould:0.03121215122047131\twho:0.02479972891326757\twhich:0.02454198894802293\t:0.01\n",
"north:0.4475706415932609\tfeet:0.12551733402880494\teast:0.08391334517790347\tstreet:0.0740495419497939\tland:0.05468649834098591\tNorth:0.05413073083253674\tsouth:0.053172350245890045\tchains:0.05081673212985219\t;:0.04614282570097178\t:0.01\n",
"the:0.4296733500335901\ta:0.30677805126575586\tof:0.06029590949388562\tThe:0.05322170354312578\twith:0.039216402772143465\tand:0.0350654902695585\this:0.025048632470323417\ttho:0.021419640146003824\tin:0.019280820005613347\t:0.01\n",
"of:0.2911491838762084\tfor:0.1575309522864633\tat:0.10238671425394434\tto:0.10219831658205872\tand:0.09686447518698345\tthat:0.08579214146054302\tin:0.06396014862868894\tby:0.056360169085020895\twith:0.03375789864008877\t:0.01\n",
"a:0.42186606801940213\tthe:0.10190092551215284\tis:0.08764333203047364\tand:0.0844468663529746\tas:0.06713917241386926\tthat:0.06219671336881314\tof:0.05972164008177714\twas:0.05399024948237776\tin:0.051095032738159456\t:0.01\n",
"and:0.2954976590676623\tthe:0.1900603358641207\twill:0.12341087472469171\tto:0.0962234199273839\tof:0.07196422739002481\tI:0.06502654771349327\ta:0.05312532570402331\tcould:0.049428739106651576\tcan:0.045262870501948486\t:0.01\n",
"of:0.352867362390408\tthe:0.21721209093766056\tto:0.10469300000238069\tand:0.09669236082818274\tin:0.06602772680917622\tby:0.051041459739399254\tthat:0.03547755485415687\ta:0.033916468956567934\tfrom:0.0320719754820677\t:0.01\n",
"of:0.3435992426491545\tand:0.2219568637555845\tthat:0.11331649265764186\tto:0.08641531064214496\tin:0.07682453470948779\tfor:0.0662920369467859\twith:0.03196863960929373\tfrom:0.025620381416734853\tby:0.024006497613171918\t:0.01\n",
"to:0.2846607759471431\tof:0.2284460986782203\tfor:0.14552445493051402\tin:0.08668862347845449\ton:0.07356914334835342\tand:0.05390204718526626\tIn:0.04712210612980315\twith:0.042224156855292405\tby:0.02786259344695281\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"the:0.47134182454943113\tof:0.15959036431418955\ta:0.1311130000323129\tin:0.06123326377958622\tand:0.04015949500731561\tThe:0.035188351803890905\tat:0.033398314603825745\tto:0.02984417276273477\tvery:0.02813121314671298\t:0.01\n",
"the:0.2892798126474847\this:0.16722166505015848\tand:0.12882430921368407\ttheir:0.11409091228430918\tof:0.0634178632130642\tor:0.061632326966683776\tin:0.05842939800514033\twas:0.057432936186427676\ther:0.04967077643304773\t:0.01\n",
"those:0.25951273479179715\tman:0.15407938538350682\tmen:0.1510980557089871\tand:0.11334241553163941\tone:0.09442018827086614\tpersons:0.06445140326520649\tperson:0.06201211056492142\tall:0.052787411792445095\tpeople:0.03829629469063047\t:0.01\n",
"and:0.21587756808629543\tas:0.1871912227373768\tthat:0.15435466996740893\twhen:0.10372959053996003\twhich:0.08789444859156803\tfor:0.07438669738902288\tif:0.06409800016618665\tbut:0.06234090155857023\twhere:0.040126900963611094\t:0.01\n",
"of:0.3535101752615976\tin:0.16637226418000714\tto:0.1514404465707334\tfor:0.07444404949800848\ton:0.06534622014424858\tby:0.05522709516746868\twith:0.04448249294576371\tand:0.04295935908015029\tIn:0.036217897152022095\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"that:0.4238571537358822\twhich:0.13736658230284773\tand:0.1270148857256401\tas:0.07315760921159364\twhen:0.05725182920044231\tw:0.05534800350283615\tif:0.0443053809464815\tbut:0.03916104844614849\twhere:0.03253750692812773\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"a:0.4176154609170126\tthe:0.40322995198359746\tper:0.04779854501311577\tone:0.029291586565371362\tevery:0.02341705586171939\ttho:0.021505724612655493\tlast:0.019332738680850062\teach:0.014831033973666799\tthis:0.012977902392011034\t:0.01\n",
"of:0.31063185156561574\tin:0.3044256576178372\tand:0.07822482280794679\tIn:0.07487553097007961\twas:0.05814418324456559\tis:0.05368458507920578\tfrom:0.03940681403976899\tare:0.03818723186898782\tto:0.03241932280599246\t:0.01\n",
"hundred:0.21256153157240074\tHundred:0.1309179622362047\tNorth:0.11580110428985206\tstreet:0.1139187828426542\tnorth:0.0997376759982765\t1:0.09344902985497104\teast:0.07594270020665014\tmen:0.07518285043166437\tcity:0.0724883625673262\t:0.01\n",
"the:0.2578423981179616\tof:0.19741446101961269\ta:0.12801448532527318\tother:0.09545784179006683\ttheir:0.07701583216762134\this:0.06183132615322653\tour:0.06114398024423683\tthese:0.056327210534598646\tpublic:0.0549524646474023\t:0.01\n",
"of:0.37193846286173576\tin:0.1317510926526986\tto:0.11614686807891776\tand:0.09179715739364669\twith:0.08193496439077338\tfor:0.057150615096712765\tby:0.050630064540699474\tthat:0.04451924709209025\ton:0.044131527892725196\t:0.01\n",
";:0.3240364725311314\tnothing:0.140514924837674\tit,:0.12131909456812429\tand:0.08186938633546977\tthem,:0.08080981602048773\tis:0.07638052319289883\tor:0.07583984419524044\ttime,:0.04756575141895295\tall,:0.04166418690002058\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"and:0.36982779042345776\tto:0.16787976333709098\t<s>:0.09530362350376026\tof:0.08624370611986594\tin:0.0776796524203485\ton:0.05337804043391586\twhich:0.04954460238867509\tby:0.0487207661148354\t.:0.04142205525805008\t:0.01\n",
"<s>:0.3524364014246782\tthem.:0.15445015839131512\tit.:0.13882065810215444\ttime.:0.07743679976523872\thim.:0.06989613994722738\t.:0.05519793235050145\twork.:0.048875796947477027\tday.:0.0476885784501576\tcountry.:0.045197534621249924\t:0.01\n",
"of:0.25919883803158345\tthe:0.18841275418598943\tand:0.12731149531046468\tto:0.10264461601135579\twas:0.07413436113579477\tin:0.07099931091010063\tbe:0.05839422167739358\t<s>:0.05607769843242761\tfor:0.052826704304890074\t:0.01\n",
"the:0.42322247560010073\tNational:0.29659064354064124\tSavings:0.07116817277837902\tof:0.04683512975151768\tState:0.04001860868462892\tand:0.037033548385743784\tThe:0.035427905918430196\ttho:0.02315164284573524\tany:0.016551872494823094\t:0.01\n",
"and:0.33342336910198833\tof:0.1536406588227789\tfor:0.10258644802254656\tfact:0.10239526376649137\tis:0.0690011422137518\tin:0.06783333181060314\tbut:0.05988137472302229\tto:0.05230622209147044\twas:0.04893218944734695\t:0.01\n",
"and:0.1614347899551591\tbe:0.15770900669577867\tto:0.15135928123319706\twas:0.1426240924204296\tI:0.08669391313102298\tbeen:0.08083841058134271\twill:0.07656653239372803\tis:0.07452964542149208\the:0.05824432816784986\t:0.01\n",
"and:0.4082358659059083\tas:0.20173746211133045\tthat:0.17582805740589308\tbut:0.052442417101731906\tor:0.05014592785820659\tBut:0.027024808179309193\teven:0.025456712498217487\twhich,:0.024580779794228316\tAnd:0.024547969145174632\t:0.01\n",
"Now,:0.6025505396273463\tNow:0.11444027196202008\tNow.:0.06042799353780574\tis,:0.05103061730093642\tand,:0.04322540464139628\tand:0.04240772152256158\tare,:0.037727348898158465\tIf,:0.02042314741041137\tthat:0.017766955099363616\t:0.01\n",
"of:0.4372811740881058\tto:0.11378204561740272\tin:0.11130563750146794\ton:0.0847236412178563\tthat:0.07840397732425695\tand:0.06992371962052707\tfor:0.038842496062712305\tIn:0.028326113282739603\tby:0.027411195284931248\t:0.01\n",
"and:0.263862062087125\tis:0.12219217921690527\twas:0.120501678782115\tthat:0.11238461365359963\tbut:0.1093211238993779\tare:0.10072873520014715\tor:0.062398017914343296\tnot:0.054070358037136\tto:0.04454123120925075\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"the:0.32459660461412326\tany:0.1572763942560775\tthis:0.11328057958727743\ta:0.11217494627887475\tevery:0.08163927708125003\tof:0.0547208688470373\tother:0.04915490564371381\tsome:0.04869007536799434\tthat:0.048466348323651744\t:0.01\n",
"and:0.23188217865745508\ttime:0.14306187424556427\tready:0.1349911069380445\tdemand:0.1166620178788386\tused:0.08287243954795238\treason:0.0789610587832086\tnecessity:0.06938119425160298\tnot:0.06918264092560286\tnecessary:0.06300548877173066\t:0.01\n",
"the:0.34266326959770643\tand:0.1873739391350335\tof:0.1162962428849144\ta:0.08606499270317343\tto:0.060212297109094946\tThe:0.05885240882749347\tMr.:0.054688619480127404\tthat:0.04837323912195996\tby:0.03547499114049648\t:0.01\n",
"he:0.24197949183040168\tI:0.21337287298316746\tthey:0.17635597206479325\twe:0.08258156825390826\tshe:0.06777073217159829\tthat:0.05524849155378004\twho:0.054401511405436045\tand:0.04928338227100552\tit:0.04900597746590952\t:0.01\n",
"<s>:0.271718939012929\tit.:0.19544079425957905\tthem.:0.1235659725655281\thim.:0.11650845024383524\ttime.:0.0693130737290791\tcountry.:0.06674628025874714\tlife.:0.05337136142661315\t?:0.05087849806830622\twork.:0.04245663043538278\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.2608477288749207\tso:0.15418597432284173\tsay:0.10909816675815547\tfact:0.09376866153213209\tsaid:0.0886081528955072\tknow:0.08686009470952578\tme:0.08007687917600152\tis:0.06909046178667248\tbut:0.047463879944242955\t:0.01\n",
"the:0.3763309056420799\tof:0.1503451551738515\tand:0.1297319150070869\tMr.:0.07308757121993768\tThe:0.07066818816072408\ta:0.06702079550468405\tthat:0.045629217965908346\tas:0.04180724393986899\t<s>:0.03537900738585849\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.23162151653407348\to'clock:0.22337441030599486\tin:0.14254067690736477\ton:0.08280148422816842\tthat:0.07925541748515233\tand:0.07841778807043431\tIn:0.06405133000867737\tto:0.04653678702740702\tOn:0.0414005894327274\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"and:0.2854264651535844\twas:0.1199371907304285\tmade:0.10613345733596058\tthat:0.0990842628268067\tis:0.07922806179484164\tout:0.07754549482770905\tup:0.07620427238330926\twork:0.07579316491126531\tbut:0.07064763003609449\t:0.01\n",
"he:0.22480229380192837\tit:0.17485728277577847\tthey:0.12397626271710332\tI:0.10874733808034656\tthat:0.0944115016573233\tIt:0.0934061924792438\twe:0.05704965258936926\twhich:0.05692367062721336\tand:0.055825805271693715\t:0.01\n",
"the:0.23162914077824537\tis:0.15999764087159798\tan:0.1500667833132136\tand:0.149949169606448\twas:0.08024265398230065\tare:0.07844260326876255\tnot:0.05546127343086869\tof:0.04252464386348591\tbe:0.0416860908850773\t:0.01\n",
"or:0.1704511908243868\tand:0.1663940837148854\tof:0.1522609305385349\tis:0.12694130974790113\tare:0.11105840033569944\tthe:0.0927689359875506\twas:0.06568761756784221\tfor:0.054746290643277296\tabout:0.049691240639922224\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.3771569830326812\tto:0.15639581719284276\tthat:0.11086282579756711\tby:0.09064642731761739\tin:0.07658837338436707\tand:0.06898491390931626\twith:0.0439406471558283\tfrom:0.03483750019712137\tas:0.030586512012658437\t:0.01\n",
"of:0.3268626959833955\tthe:0.17994095334887644\tto:0.122061432534124\tin:0.10913732085470834\tand:0.09499470595465354\tby:0.047906737129281916\ta:0.042122728956266633\tfor:0.03383711326306796\tfrom:0.033136311975625575\t:0.01\n",
"of:0.38321338718665354\tand:0.1497047685803166\tin:0.10520995263328595\tto:0.10225870894152486\tthat:0.07243384117463512\twith:0.05985556556590881\tby:0.04490733135626972\tfrom:0.040330904610045605\tat:0.03208553995135988\t:0.01\n",
"as:0.19436001227001629\tand:0.1409601278107517\taccording:0.12688257803862749\tup:0.1166538996954941\tthem:0.09546248046552396\tregard:0.08571584773899625\tcome:0.08276545836165355\tback:0.07647325798284847\treturn:0.07072633763608811\t:0.01\n",
"the:0.27004892961346216\t1st:0.15109863150680777\tfirst:0.12513779671039005\ta:0.10378703560438178\t25th:0.08044042951759475\t7th:0.06850863141428767\t10th:0.0652308917143553\t12th:0.06469097803790061\t21st:0.06105667588081993\t:0.01\n",
"and:0.3079069995791492\tof:0.15703359043111892\tthe:0.09695346957938135\tbe:0.08008775556196854\ta:0.07801796281644585\tin:0.06960382693033287\tis:0.06885254681667448\twas:0.06803906530008293\the:0.0635047829848459\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.3530251995051372\tof:0.1725577643926472\tto:0.15405271388536537\tthat:0.08176770205542913\tby:0.07799085875343623\tin:0.046600995020472595\tas:0.03811387867190476\twhich:0.037728100500736154\tthe:0.028162787214871303\t:0.01\n",
"the:0.33758039761255415\tof:0.21633161136957077\tand:0.12906152555649922\tto:0.11414882325148107\tin:0.050883064366160975\ta:0.046738077950108634\tfor:0.03655000094170071\tas:0.03174185155220493\tat:0.026964647399719585\t:0.01\n",
"the:0.34364924440997374\tof:0.18485997728502906\ta:0.1212058801942383\tand:0.09605228921121482\tin:0.07189752277409439\tto:0.06716183381171732\tfor:0.03654734460194308\tor:0.03539409603242749\tthat:0.03323181167936186\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.25356289039958857\tall:0.17683794889438467\tof:0.12535127595188625\tother:0.08239303021540093\tand:0.08236413759489485\ton:0.07635478187246784\tthese:0.06802485996173029\ttheir:0.06313699187554406\tbe:0.06197408323410245\t:0.01\n",
"out:0.17479152493052696\tone:0.1612745066563113\tsome:0.1543730398369646\tall:0.11549577046618895\tpart:0.104420569411086\tbecause:0.07383495211930248\taccount:0.07284118264889747\tmany:0.07000946912075943\tand:0.06295898480996275\t:0.01\n",
"about:0.25627345662624385\tand:0.1525780414491158\tor:0.14188319998168508\tof:0.12453050103236311\tto:0.08145690538344733\twas:0.06819806607973272\tthan:0.06337352604878882\tat:0.06231494742578281\tis:0.039391355972840617\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.41415335102675577\ta:0.16168356146878968\tof:0.11355050699964189\tand:0.10541940537423934\tThe:0.05072568505286658\tto:0.044227762344454025\tin:0.03906889571782732\ttho:0.03384881760515044\tMr.:0.02732201441027496\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"of:0.2723343506012546\tthe:0.15211691413223916\tin:0.14474908498894518\tand:0.10669210785856478\ta:0.10005318306439581\tfor:0.07093535759997557\tto:0.05989380476082654\tby:0.044053180532697744\tIn:0.039172016461100696\t:0.01\n",
"the:0.2946672515173435\ta:0.19623106882800292\tof:0.1750920763194982\tin:0.08470107962196283\tand:0.06730454872886621\tthat:0.049540483061718404\tan:0.0441204818339337\tas:0.03922338883388826\tto:0.039119621254785915\t:0.01\n",
"to:0.3723349332368032\twill:0.17980673688281829\tmay:0.080880393777465\tshall:0.07440215308701839\twould:0.07261537212347752\tcan:0.06311618886502049\tshould:0.062041525606077175\tcould:0.044106009909052474\tnot:0.040696686512267564\t:0.01\n",
"statute:0.4186740486360634\tand:0.1773874122872153\tthat:0.07552749244437032\tor:0.07132424490596527\tas:0.05800094168043707\tis:0.05059550344693197\tit:0.04914277446266791\twas:0.04506424724176516\tbe:0.044283334894583616\t:0.01\n",
"out:0.20913951613367876\tone:0.16183787472634523\tnumber:0.11671036185633249\tmeans:0.09907968061171493\tplace:0.09059392990652419\tkind:0.08490699058795652\tsome:0.08041615824231119\tamount:0.07804179237787515\tall:0.06927369555726161\t:0.01\n",
"of:0.19876338013405914\tsuch:0.13933996966499632\twith:0.12346715499129748\tto:0.11137192285104953\tin:0.10912495215830574\tas:0.09408945978826261\tfor:0.07616465381307505\tand:0.07508332739717427\tis:0.06259517920177995\t:0.01\n",
";:0.14708084855117523\tin:0.12760763455747906\tone:0.1166999161165969\tup:0.11609349218661465\tthere:0.11530930079588944\tmen:0.11504420037693022\tit,:0.10058348528575854\tthem,:0.08018342326651151\tto:0.07139769886304448\t:0.01\n",
"the:0.6528059424773198\tthis:0.08227420552410566\tan:0.07133763093835924\ta:0.05509385039084751\ttho:0.03902161562243248\tThe:0.02959573214005175\tany:0.02119372182534115\tour:0.020510395789999844\tof:0.018166905291542638\t:0.01\n",
"the:0.2366695049741145\tof:0.171417182725107\tto:0.1103642950013706\tand:0.10573472350497891\t.:0.09473422559031636\tMr.:0.08825249857628616\ta:0.0777462500971279\tin:0.0620918774307186\tat:0.04298944209997995\t:0.01\n",
"and:0.25741194153730856\tthe:0.17066964281857433\tof:0.14389063486113232\tto:0.1350621871629177\ta:0.060634576604416034\tthat:0.057835388468332874\twas:0.05774629654409644\tsaid:0.05493057942129967\tbe:0.051818752581921916\t:0.01\n",
"all:0.21357881357464759\tit:0.17109218651982136\tand:0.14009933012402886\twent:0.08953810753119093\thim:0.08033885886518542\tthem:0.07688681981197465\twas:0.07654321505881781\tis:0.07157275585741621\tturned:0.07034991265691713\t:0.01\n",
"the:0.24343084569487752\tand:0.16178693456557883\tof:0.13887751795222011\tto:0.1244772705341572\ta:0.11336884681343598\tbe:0.05818394061425249\tis:0.050746831112712124\tin:0.049860590702662695\twas:0.049267222010103036\t:0.01\n",
"the:0.30628272852936234\tof:0.29266776103583936\ton:0.10111695884874927\tat:0.07871794877273412\tfrom:0.06726248087188437\tin:0.04676604280677448\tand:0.045799176986047754\tby:0.028538955771357396\tto:0.022847946377251103\t:0.01\n",
"they:0.18080631959574955\twho:0.1750815008604293\tand:0.12413526538554485\twhich:0.12181051907677966\twe:0.09351303224851278\tThey:0.08721273691065339\tthat:0.07631906310648412\tthere:0.07604495193272705\tmen:0.05507661088311933\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"at:0.3811729830337083\tfor:0.13627408383995143\tto:0.08582786369334523\tof:0.08346195149432732\tabout:0.08274465020700175\tthe:0.07088241910649776\tand:0.06504391756112296\tin:0.04549113155347143\ta:0.039100999510573935\t:0.01\n",
"of:0.36876438201867373\tto:0.14987539468733338\tat:0.08298418731914423\tfor:0.08232093098376486\tin:0.07392931100422866\tthat:0.06662684976373441\tand:0.06532579769870024\tby:0.054092389148951266\tfrom:0.04608075737546927\t:0.01\n",
"It:0.23841182645848097\tit:0.21824502470799959\tI:0.10628269665729698\tthere:0.10356699866170523\the:0.09935185675291462\tThis:0.07151350969947534\tand:0.06355775541249249\twhich:0.04666572036885077\tHe:0.042404611280783995\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"at:0.4562891757644557\tof:0.13314261351985224\tto:0.11917083786917342\tin:0.11320130160094674\tfor:0.044110512794253445\tfrom:0.04163281781953254\tIn:0.03779810310854781\tAt:0.0227678747742466\tand:0.021886762748991487\t:0.01\n",
"the:0.2569753914548661\tand:0.19562318736474676\tof:0.12076019478778793\tto:0.09468467296423633\ta:0.08152430890971911\twas:0.06570150192683048\tin:0.06383061256560314\tbe:0.056194940731177506\tMr.:0.054705189295032604\t:0.01\n",
"the:0.2655547061970945\ta:0.11984531090167465\this:0.1166570211521847\ttheir:0.10893950838564095\tthis:0.09125590909844604\tof:0.09006336643076862\tin:0.07742761617063597\tour:0.06209008349191532\tgreat:0.058166478171639155\t:0.01\n",
"made:0.2195546599814402\tand:0.18561109181996902\taccompanied:0.144815638601681\thim:0.09541865039509974\twas:0.08555379799498081\tup:0.0660686024961397\tit:0.06504256922597976\ted:0.06418895017978775\tfollowed:0.06374603930492198\t:0.01\n",
"he:0.23461108174321355\tand:0.15870717109678972\tit:0.12278480252439182\twho:0.103050909074278\tHe:0.10127958859555754\tIt:0.0972595841851471\twhich:0.07771123774839825\tthat:0.05608256503793535\tshe:0.03851305999428872\t:0.01\n",
"of:0.4009708504557972\tand:0.12472857175867988\tto:0.09006148679103704\tfor:0.08778183853644984\tthat:0.0755259563210443\tin:0.06779930288563923\twith:0.05635515206504965\tby:0.0468050905171568\thave:0.03997175066914597\t:0.01\n",
"put:0.18847409294273135\tto:0.18513274911014835\tof:0.17031586654199354\tkeep:0.09474672552990601\tget:0.07813572212585805\ttake:0.07699164268760639\tfor:0.07482053609968632\twith:0.06891151619551981\tgive:0.05247114876655016\t:0.01\n",
"the:0.292637807673609\tand:0.2213087906255793\tof:0.11863059456932074\tin:0.069392364097213\twas:0.0693297847939321\tto:0.06048329639524874\tfor:0.053710583531059\tthat:0.052451811278698544\tis:0.052054967035339364\t:0.01\n",
"the:0.26791389962251005\tand:0.2060464017598321\tof:0.1366151749500514\ta:0.13057479788155224\tto:0.05864680646413484\twas:0.05264525948852615\tbe:0.050260325745846844\tis:0.045728058744988295\tat:0.04156927534255822\t:0.01\n",
"and:0.2112656544461926\tit:0.15805436947476864\tis:0.1320832514182605\twas:0.09945075881967688\thim:0.09116847119142775\tfeet:0.08482051921006432\tthat:0.07407312113502325\tout:0.06989889462230033\tthem:0.06918495968228562\t:0.01\n",
"the:0.23974091638113026\tof:0.1969361884141801\tand:0.19046554665080836\tin:0.09407716793877345\tto:0.09242042121960872\ton:0.0602655665467947\tthat:0.04264054456303816\tas:0.03754127152809341\tan:0.03591237675757279\t:0.01\n",
"went:0.17178871805255977\tcarried:0.15946554813513641\tget:0.11397926239097952\tgo:0.11356092600383767\tpassed:0.10239743750061629\tfar:0.09493524296229022\ttaken:0.09012404357862908\tturned:0.07732884363330848\tran:0.0664199777426425\t:0.01\n",
"the:0.3783233056851461\ta:0.18810947141554435\tof:0.117987219638117\tand:0.06907723898419545\tare:0.05789959875181497\twith:0.0519640834557383\tvery:0.0462300985051645\tthese:0.042021595043612206\tother:0.038387388520667004\t:0.01\n",
"W.:0.18090597761858682\tMrs.:0.15045333208372488\t.:0.12624089870642388\tMr.:0.10967608151259149\tJohn:0.10341847246215677\tJ.:0.09979980684613282\tM.:0.08144325449585788\tS.:0.06951658190365707\tH.:0.06854559437086846\t:0.01\n",
"up:0.15814385675393813\taddition:0.13742981650675554\tand:0.12458187151217107\tcame:0.11414416982463267\tas:0.11250542114965958\tdue:0.08882136789922333\taccording:0.08683615157811309\treference:0.08455786721599691\tsent:0.08297947755950968\t:0.01\n",
"was:0.24774603140940615\tbe:0.14103585575989716\the:0.1063440017700851\tare:0.09950623853837755\tis:0.09647668674477552\tbeen:0.09120266663398621\twere:0.08357964213027552\tand:0.07474765400692715\tnot:0.04936122300626972\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"feet:0.40723289328325385\tso:0.1541400269093496\tinches:0.09062694267549952\tand:0.07417606606313946\ta:0.06052339366098689\tas:0.05465154812821923\tis:0.05412472667620259\twas:0.050670223791102954\ttoo:0.04385417881224584\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"<s>:0.24643505364970167\tthat:0.22567481111489607\tand:0.11986402130738497\tit.:0.10509411761497947\tbut:0.07308474448235741\tas:0.06237988616146023\tthem.:0.06028718069699419\tcountry.:0.04939834692648971\tof:0.04778183804573639\t:0.01\n",
"of:0.36237699085490277\tand:0.1584298618362114\tare:0.1021402174342317\tis:0.08583334846083972\tin:0.07783911308007345\tthe:0.05858709598298881\tby:0.04963069438025839\tnow:0.048775650303785716\tfor:0.04638702766670799\t:0.01\n",
"was:0.20132007229060425\tbe:0.1854907800839878\tis:0.17565975672038223\tare:0.13801568311502382\tand:0.0883577787902333\twere:0.06957052644481533\tal-:0.04681675482419213\tam:0.04338016534791158\tbeen:0.04138848238284955\t:0.01\n",
"he:0.20840429420937265\tand:0.20595958626555524\twho:0.11958065717729792\thas:0.10327527730907946\tI:0.08269802795476983\tthey:0.07903160061780941\twhich:0.06816570166279683\tshe:0.063317749421743\tHe:0.0595671053815757\t:0.01\n",
"the:0.3512517721665908\ta:0.1636197724919029\tand:0.11166884920351652\tof:0.0923036582707141\tto:0.07460562551363435\tin:0.06410620333148918\tThe:0.05279357765444189\this:0.0467339245414278\ton:0.03291661682628248\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.37668106988304945\tand:0.14563163362336956\ta:0.09783159338873648\tof:0.09443418566631163\tMr.:0.0827453608742433\tThe:0.06773331892338548\tis:0.05615369308694588\twas:0.03641971645236759\tbe:0.032369428101590755\t:0.01\n",
"was:0.25463058949695705\tbe:0.2520452029764532\tis:0.15176294840386526\tbeen:0.0813106974425593\tare:0.0591226912217203\tand:0.05395930981219559\twere:0.04938262492444196\tnot:0.04631048662567573\thad:0.04147544909613164\t:0.01\n",
"of:0.4695241345506001\tin:0.19885349759578877\tto:0.10263051736049658\tfrom:0.05860656300290968\ton:0.0453671561456441\tby:0.037637966025012064\tIn:0.02976243592272966\tat:0.027618203094139853\tfor:0.019999526302679132\t:0.01\n",
"the:0.36246456783866093\ta:0.18184834535664635\tof:0.1317879922919672\tand:0.08979257835617445\tto:0.05468308221804668\tin:0.049615895882783916\tbe:0.041329883953256014\this:0.041312460684435615\tor:0.037165193418028986\t:0.01\n",
"able:0.18221192615727286\tenough:0.11744211338880539\tbegan:0.11116928395334544\tand:0.1075155181693138\tright:0.10483962336669028\ttime:0.10438842465459325\torder:0.09396830138087103\thim:0.09210917334705768\tis:0.0763556355820502\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"that:0.4248767727810632\tand:0.21696169084527836\tbut:0.07728732858024093\tif:0.05209935182685942\twhen:0.05161873506627446\twhere:0.04967867968515334\twhich:0.04575344605788949\tas:0.042465679687247924\tThen:0.029258315469992895\t:0.01\n",
"he:0.2913966569416202\tI:0.2329214623184916\tthey:0.1358545404873134\tshe:0.08346364777631463\twe:0.06871481078940406\tand:0.054329344265138746\twho:0.04702952708024239\tit:0.03970841301723734\tthat:0.03658159732423769\t:0.01\n",
"of:0.23247340958949442\tthe:0.18549381681525848\ta:0.16563991642025827\tand:0.13405826467782853\tto:0.09689243502144809\tin:0.07121652963131524\tfor:0.03659070670469316\tthat:0.03389909517504871\tby:0.03373582596465522\t:0.01\n",
"the:0.7718097860870021\tThe:0.08496113944392816\ttho:0.03711886995311214\tits:0.027728498850858777\tour:0.01984892495780323\ttheir:0.013785119978064773\ta:0.012854961071407774\ttbe:0.011535107629601537\tthis:0.010357592028221478\t:0.01\n",
"<s>:0.34536584090749134\t.:0.17030142884856103\tit.:0.13808065866444633\tand:0.07698061398237181\tMr.:0.05626286163417944\tboy.:0.0542794900009697\thim.:0.052391136692829125\ttime.:0.05019891112518788\tgirl.:0.0461390581439633\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"the:0.2870188507795269\tby:0.2337868893092408\tand:0.1704777086736826\tof:0.08156132730851645\tsaid:0.05786288148245704\t<s>:0.05166677303272644\tto:0.047280497580960826\tThe:0.03336463893064976\tthat:0.026980432902239428\t:0.01\n",
"is:0.44410110038145234\twas:0.23012557249181884\tare:0.06934435729372343\tand:0.06701534173176242\tIs:0.0591524242420799\thad:0.034758673704862096\thas:0.031124884677625808\twere:0.029326294222753523\thave:0.025051351253921546\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"to:0.31183925208060853\twill:0.126130591692272\tt:0.11984709946223056\tthat:0.09195814575382462\twould:0.08591361815159086\tand:0.0853485014069716\tI:0.06613257642948804\tmay:0.05734860361106113\twhich:0.045481611411952734\t:0.01\n",
"of:0.4325262965006754\tto:0.11455460174793375\tin:0.10410087224767896\tand:0.07101947834816168\twith:0.06987258841558958\tby:0.054241688905615724\tthat:0.053557795149520304\tfor:0.04585907678945132\ton:0.04426760189537326\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.5752343176843888\tin:0.14728314967164774\tto:0.07586931738189924\tby:0.06094295978398383\tIn:0.03187140209691087\tfrom:0.02685828138852238\tthat:0.02651800685039899\tfor:0.023111756606175194\tand:0.022310808536072903\t:0.01\n",
"the:0.6467801637858189\tof:0.09560488615558566\tThe:0.08037133561297699\ta:0.033143847138153236\tfrom:0.03298819876811152\ttho:0.03117720774355363\tand:0.027085859132555748\tfor:0.02417573292205857\tin:0.018672768741185758\t:0.01\n",
"one:0.33708984341259335\tpart:0.14875576146602673\tout:0.10384043397499726\tportion:0.09083714555922895\tside:0.07562804233059955\tsome:0.06197550487992145\tthat:0.060324718837243906\ttion:0.057990436636891\tmember:0.05355811290249791\t:0.01\n",
"secured:0.5336685870434595\tmade:0.10638087951975662\tand:0.08550724488639849\tprovided:0.05702204426176156\tconveyed:0.05366404586072775\texecuted:0.041185281960231676\tthat:0.04029795779638895\tdelivered:0.036366909633562615\tfiled:0.03590704903771286\t:0.01\n",
"of:0.2442091513167649\tat:0.18722318599580587\tin:0.14201561149440772\tto:0.10917809626578173\ton:0.0876512142655118\tfor:0.06870824872846423\tand:0.0661191441988565\tfrom:0.04695251959403473\tthat:0.037942828140372614\t:0.01\n",
"up:0.18221495063507118\tmen:0.1234993953539625\ttime:0.11527257074984575\thim:0.11333022494131098\tyears:0.1015139868314754\t;:0.09333325615261823\there:0.09004003517934062\tit,:0.08631519857348517\tday:0.08448038158289028\t:0.01\n",
"and:0.43687302444182485\tthe:0.1656483222238112\tof:0.13185335859983305\tfrom:0.062217104083992794\ta:0.04831119059525676\tthat:0.04125702827114566\this:0.04026267487342586\tor:0.03241680918928567\tas:0.031160487721424126\t:0.01\n",
"to:0.25717018450531304\twill:0.19829733899235513\twould:0.1415241045440231\tmay:0.09908017878214848\tshould:0.07955880467146435\tshall:0.07349905741243663\tnot:0.07244585600772294\tmust:0.03837026346409415\tcan:0.030054211620442157\t:0.01\n",
"of:0.34274355272284135\tin:0.2464128468676838\tfor:0.09174634152779249\tand:0.07561156025880225\tby:0.06288915427947309\tare:0.05592311426047391\tIn:0.04902482834890969\tis:0.03667137115215386\twith:0.028977230581869656\t:0.01\n",
"of:0.39681938364279756\tthe:0.1660333616972083\tand:0.10283586165667626\ta:0.07922171720207676\tto:0.06780844012305043\twith:0.05495612281074111\tin:0.04489832413106012\tfor:0.041422555553237074\tsome:0.03600423318315246\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.23781721663697947\tNavy:0.18980550119945877\tWar:0.1351266178164404\tof:0.13274760770849783\tTreasury:0.10603556982993685\tFire:0.084385346793452\tState:0.0655803108122912\tand:0.021231189967164634\tAgricultural:0.017270639235778765\t:0.01\n",
"it:0.20845608755439402\the:0.1687388031110009\tIt:0.1558571110141384\tthere:0.10998328713517042\tI:0.0954570731728006\tHe:0.07335748389033457\twhich:0.06741009088989819\tThere:0.060094986234801036\tand:0.05064507699746187\t:0.01\n",
"a:0.20476048136812153\tto:0.19245913356316552\tthe:0.17682253388252547\tthis:0.15241101100946577\tlast:0.09769657839659035\tand:0.05345377158804743\tnext:0.046187161135521834\tcan:0.03707661591726766\tor:0.029132713139294435\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"for:0.29489276419746485\tof:0.2523440022676101\tduring:0.13492762353425033\tin:0.10410423253229831\tto:0.06217613667240507\tall:0.038759957989421064\tIn:0.03739965699463148\tat:0.03682863540916798\tDuring:0.028566990402750854\t:0.01\n",
"the:0.34584706959979256\tof:0.19708121978245174\tand:0.12613815621372287\ta:0.10447936440073811\tto:0.08956612217732185\tin:0.041016674070462486\this:0.03200308395156672\tfor:0.028548771976268244\tMr.:0.025319537827675372\t:0.01\n",
"point:0.1624511366643799\tnumber:0.13437948141646788\tline:0.12941384540697837\tamount:0.12064626881098804\tday:0.11875968537485486\tout:0.09886989960198694\tbushels:0.08049453431359904\tstate:0.07962722287779597\tcosts:0.06535792553294904\t:0.01\n",
"the:0.3750384762589013\tand:0.15576776943066303\tof:0.11608042505907364\tMr.:0.08439344936867432\tThe:0.0792024172348829\ta:0.061633308384532494\this:0.0442242362747654\tI:0.03748669960758615\tthat:0.03617321838092082\t:0.01\n",
"for:0.2404568543899606\tof:0.19073581711897075\tto:0.12572958470555864\tand:0.09163897352723771\tin:0.08458251427101142\twith:0.08176959462428865\tabout:0.06706360359027476\tupon:0.06510782249694265\tby:0.04291523527575476\t:0.01\n",
"of:0.27674418359778935\tfor:0.1310630874381887\tto:0.12225949617901047\tand:0.11861243537793394\tby:0.09984656416996335\tin:0.08082239546571575\twith:0.06552409710678045\tthat:0.056255655129510536\tat:0.03887208553510742\t:0.01\n",
"the:0.24530449212159763\tof:0.16248162840082866\tand:0.14843583561982954\tto:0.14812932033974008\tin:0.07026439162584772\twas:0.06501632637583915\tMr.:0.05213509403927933\tthat:0.051159642967783914\tis:0.04707326850925396\t:0.01\n",
"is:0.17514906410384865\tas:0.1551282822221947\tand:0.13350901425543146\tseemed:0.10060773641129674\twas:0.09320996450495501\thim:0.0898962227553296\tseem:0.08257665139768071\tseems:0.08065313336928243\treason:0.0792699309799807\t:0.01\n",
"and:0.18131214675548282\tsaid:0.1668324004007402\tof:0.1592346328484425\tin:0.13418010759890403\ton:0.10129593966546613\tto:0.09229934884821175\tat:0.06008452008704495\tfact:0.049523899029018284\tfrom:0.045237004766689244\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"the:0.677758424695925\tThe:0.06915165470174503\tand:0.04842016432690057\tassessed:0.045516747625198126\tpar:0.04420237735750635\ttho:0.032961749051453666\tin:0.02540120118173747\tof:0.023414569170016337\ta:0.023173111889517532\t:0.01\n",
";:0.19144271596780793\tit,:0.16073763154027443\there:0.12049437696626474\thim,:0.11804649775025872\tthem,:0.09400661208989028\thim:0.08015674650162938\tup:0.08012724368830139\ttime,:0.07692296664228485\tin:0.06806520885328828\t:0.01\n",
"to:0.2693604826883398\ta:0.1827091017239264\tthe:0.1633346407465591\tgreat:0.0875797229770177\tof:0.0687589584753132\tin:0.06595249542576563\tlarge:0.05771893090981783\tand:0.05506986418094314\tfull:0.03951580287231711\t:0.01\n",
"the:0.7486550225366531\tand:0.053408987972149546\ttho:0.05077130808371849\tThe:0.03343389637006097\tsaid:0.029509992288055016\ta:0.021335883128875376\tan:0.019643153764214973\ttbe:0.019271187093171122\tthis:0.013970568763101442\t:0.01\n",
"the:0.23782049310212533\tand:0.19214892314342139\tof:0.1765901506244558\t.:0.09973880484111639\tto:0.06735634874139797\tby:0.06218655947585804\tMrs.:0.05882569915609157\t<s>:0.05162777795757545\tMr.:0.043705242957957996\t:0.01\n",
"the:0.4320995583881551\tof:0.14335201496351516\tand:0.10351278576403533\ta:0.09289432076421932\tfor:0.059603860359418\tto:0.046643405520275974\tin:0.04028944737312885\tat:0.03972708564128774\twas:0.0318775212259644\t:0.01\n",
"able:0.14511234966528908\tand:0.13172820859723178\tis:0.1247686614230459\thave:0.11730326646781511\thim:0.11082659939939717\thad:0.0955401572626202\tright:0.09040877079752839\tenough:0.08874364021609925\twilling:0.08556834617097307\t:0.01\n",
"it:0.18924446846710682\tthey:0.1617011815799078\twe:0.13504833292056026\the:0.0968247584315821\tyou:0.09402679218518761\tIt:0.0918722994789885\tthat:0.08249575728333151\twhich:0.07027829102980948\tI:0.06850811862352578\t:0.01\n",
"of:0.26365362265741593\tthe:0.1704905140822076\tto:0.11306213465073207\tand:0.1041612911258714\ta:0.10341881961543098\tin:0.08147405164165124\ton:0.0624931657200141\tthat:0.04990767704676707\tby:0.04133872345990952\t:0.01\n",
"he:0.24197949183040168\tI:0.21337287298316746\tthey:0.17635597206479325\twe:0.08258156825390826\tshe:0.06777073217159829\tthat:0.05524849155378004\twho:0.054401511405436045\tand:0.04928338227100552\tit:0.04900597746590952\t:0.01\n",
"the:0.35295075096745687\tof:0.23576116297493566\tto:0.12888654523496526\tand:0.09050904376590592\tin:0.04133297937505859\tbe:0.041256673741006576\tfor:0.03751470473767561\t<s>:0.031533700307135176\ta:0.03025443889586021\t:0.01\n",
"and:0.4507464091290412\tthat:0.12017042480682909\ta:0.0798647610066896\tbut:0.07851679901784937\twas:0.06784990166390423\t;:0.05201065205472505\tas:0.049794902940499146\tis:0.04769894791451482\tthe:0.0433472014659476\t:0.01\n",
"the:0.31731899731419366\this:0.25052688181815264\ta:0.12841514023546693\tmy:0.08435812238608971\ther:0.08261934459206441\tand:0.0365102525582043\tyour:0.03215587653540828\tof:0.03170111491466865\ttheir:0.026394269645751433\t:0.01\n",
"<s>:0.5943634504914762\tit.:0.08025331597383818\t.:0.06526781210625669\tthem.:0.05407242088167544\thim.:0.050816830214593246\tday.:0.0416287870989855\ttime.:0.03717298205037291\tcountry.:0.03436743960248565\tyear.:0.03205696158031614\t:0.01\n",
"and:0.30893563898695797\trecorded:0.19647414103766966\tthat:0.10161320396730188\toffice:0.07539826709903061\tfeet:0.07306893992450464\tinterest:0.060552319413419084\tor:0.05926684488085345\tpayable:0.05797598617836224\tas:0.056714658511900544\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"the:0.2750798455198843\tthis:0.16726521565965224\tany:0.1469566470513928\ta:0.1363297062587107\tno:0.11908451184469201\tevery:0.05170788840382712\tthat:0.04579971355520417\tof:0.023965743369448667\tThe:0.023810728337188038\t:0.01\n",
"of:0.38872922053319475\tin:0.2638001546955156\tto:0.0720554274439016\tIn:0.05885648329719272\tby:0.05737144425441884\tat:0.05455866613856436\ton:0.03878451340900951\tfrom:0.03498977749437273\twith:0.020854312733829965\t:0.01\n",
"and:0.4411913835658316\tthat:0.23978024826383804\tor:0.08299326499536336\tbut:0.0709415093413153\tit:0.03972114668803472\tonly:0.037694803014315444\tmade:0.027896735744640112\twhich:0.02543202013603575\ttime:0.0243488882506256\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
".:0.17921948508185798\tthe:0.17865536667754417\tand:0.13285770609564276\tof:0.12271096677171323\tto:0.0925927148441608\tMr.:0.0733407735702612\tMrs.:0.07282868314789696\tMiss:0.07266232258346225\ta:0.06513198122746064\t:0.01\n",
"of:0.1537826439971264\tand:0.14351042057280228\tas:0.14040247578538873\tfor:0.1382894768143878\tto:0.10879242358043771\tput:0.0897930602072348\tthat:0.0744893245107768\tin:0.07441388295184118\twith:0.06652629158000435\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.25736041903016005\ta:0.19708050356851362\tto:0.17382933985619117\tand:0.0947886000352611\tin:0.059958609647751834\tof:0.057117577543964695\tnot:0.05551311771120407\tabun-:0.05473326066921939\twill:0.03961857193773407\t:0.01\n",
"of:0.3869783035647579\tin:0.21492185207099654\tto:0.11178530117010436\tand:0.054119153678918765\tthat:0.048623188379915666\tIn:0.04780578328085678\tby:0.04507216933149293\tfor:0.04125300597992876\twith:0.039441242543028415\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"and:0.1946807431621486\tthat:0.18415537457038195\t<s>:0.1344168402665615\t.:0.11102707889038328\tit:0.07842206847814756\t,:0.0755250169085113\t:0.07363977168710541\twhich:0.07277882712099841\tas:0.06535427891576212\t:0.01\n",
"be:0.38377012343378114\twas:0.140198004576577\tis:0.12041768148332613\tare:0.10103895305241431\tbeen:0.07936201455982601\twere:0.05264629182780072\tnot:0.04099159477377916\tand:0.03746697549476483\tbeing:0.03410836079773071\t:0.01\n",
"to:0.5519126657846303\tand:0.07437264285650906\tI:0.07299058310142127\tthey:0.058575068581211885\twe:0.05082246923185774\tyou:0.04706758141946531\twould:0.04686869205214508\twill:0.046334131365361575\tnot:0.0410561656073979\t:0.01\n",
"is:0.23674401525880662\thad:0.16803731843843045\thave:0.14390880328426628\twas:0.14123825649857216\thas:0.13995218378602775\tare:0.07936935371313711\tIs:0.03353412094643773\twere:0.02657092430952562\tdo:0.020645023764796218\t:0.01\n",
"have:0.32110917099725084\thad:0.31621957297904596\thas:0.20369650500243872\twas:0.042381300392962507\tand:0.024110834160118836\tbe:0.02305167612060714\tis:0.021277027749901308\thaving:0.01916154507005333\tbeen:0.018992367527621495\t:0.01\n",
"the:0.5561706520498256\tThe:0.11229151438833225\tof:0.10521193168741373\tthis:0.06673946912786048\tthat:0.05016780946772546\ta:0.0313392754299363\tand:0.02634934409106621\ttho:0.02572244172255925\tThis:0.016007562035280504\t:0.01\n",
"make:0.1968535340460522\tmade:0.17166064479701054\tput:0.11846364671243377\tget:0.1052219568155824\ttake:0.09717062046514469\tkeep:0.09092703438924915\ttaken:0.07915273705180277\tgive:0.0687727031214382\tkept:0.061777122601286205\t:0.01\n",
"the:0.19349656783908664\tin:0.18504648661148873\tand:0.16756300787322875\tof:0.11579052314993234\tto:0.09704226377818853\tor:0.07542843515387129\ta:0.07502828720940732\tIn:0.05110938717412653\tat:0.02949504121066994\t:0.01\n",
"the:0.7312085221187561\tThe:0.1610311006947722\ttho:0.03323611382408531\tthis:0.016218607629127604\ttbe:0.011784646913439063\tthat:0.011408931143822599\tThis:0.008735380165971744\ta:0.008648468416300691\tour:0.007728229093724685\t:0.01\n",
"of:0.5134160660290498\tto:0.0886203906455849\ton:0.07921820010023009\tin:0.0782813058792108\tby:0.06644480246821434\tand:0.045458698635126096\tfrom:0.04029158967735339\tthat:0.03948391571576328\tat:0.03878503084946743\t:0.01\n",
"and:0.3466000856180893\the:0.1462828336351403\thad:0.10008706473615675\tbe:0.09111665973860789\twas:0.08162798666235388\tI:0.060641671030197776\thave:0.05912232329094802\tthat:0.052830354336991486\tthe:0.05169102095151463\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"of:0.26972211547743186\tMr.:0.1341142975600261\tthe:0.1177246423275885\tand:0.10930082018188636\tat:0.09552890448829227\tby:0.0883649538796043\tto:0.07492209142424909\tdis-:0.05176114936235328\tfor:0.04856102529856804\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"the:0.4523040761781632\ta:0.08601438328463988\tso:0.08344098776531732\tother:0.07788037497232563\tto:0.07643687756355651\tsuch:0.058693143422199695\tre-:0.056270908118787114\ttho:0.05119240103425146\tand:0.047766847660759164\t:0.01\n",
"I:0.33107032691242044\tthey:0.14979650053711469\tyou:0.1165501999331443\twe:0.11124386952233077\tand:0.08573016942658869\the:0.05931908014391358\twho:0.0512572076276241\tYou:0.04629085821713318\tWe:0.03874178767973021\t:0.01\n",
"the:0.7469353475017634\ta:0.05026289902145727\tand:0.039390860690945904\ttho:0.03201545916804407\tin:0.029322185764919576\tof:0.02832652240108852\tThe:0.025168615379391267\this:0.022762638935069652\tgreat:0.01581547113732027\t:0.01\n",
"the:0.398388335237365\tof:0.1556645247028411\tthese:0.08364452893625271\tThe:0.07843958681151554\this:0.07245067543002358\tand:0.05667414554729078\ttwo:0.04955030618304873\tsome:0.04793833175037182\ttheir:0.047249565401290494\t:0.01\n",
"of:0.43490842747986636\tto:0.11561766729691893\tin:0.08613561979137925\ton:0.07768624432440238\tat:0.07585072088353038\tby:0.06102972444250152\tfor:0.05015039768933709\tfrom:0.047727480915733284\tand:0.04089371717633077\t:0.01\n",
"the:0.24596288955955295\tand:0.16331079864438022\tof:0.1497562475098918\tto:0.11241360832287664\tin:0.09064769647032553\this:0.060910616163415525\tbe:0.060673008123120625\ta:0.054443630683502685\tfor:0.051881504522934004\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.1742400753232728\tgoing:0.12054605069883027\thim:0.1140358960568757\tis:0.11198066079957673\ttime:0.10153418794314156\table:0.09649645255060463\tas:0.09632583922096133\torder:0.0887420330273239\tenough:0.08609880437941306\t:0.01\n",
"the:0.5269882284711055\tof:0.10402081129140277\tWestern:0.10284882185796496\tand:0.07235196814516763\ta:0.06599229766513055\tThe:0.04233924556067234\ttho:0.02870399691592201\tlarge:0.023689166945570345\tan:0.02306546314706393\t:0.01\n",
"I:0.29168188171603987\tto:0.14246453168012804\twe:0.12512399906766933\tthey:0.09264781655709249\twould:0.0851083107798543\tWe:0.07638683068926663\twho:0.06452271763319462\tyou:0.06067599916542702\twill:0.05138791271132766\t:0.01\n",
"one:0.23605402837694317\tpart:0.17194359534856798\tsome:0.13057929531661294\tout:0.12609862768167032\tall:0.08237599258252051\tportion:0.07212181862165871\tany:0.059401597507645225\tmuch:0.056366864893261065\tthat:0.05505817967112018\t:0.01\n",
"he:0.29759384126645533\tI:0.14712822519614255\twho:0.13357369841600397\tthey:0.09630194152462256\tshe:0.07780358321265955\tand:0.07122033994947809\twhich:0.06282023249521906\tHe:0.05213221799963883\tthat:0.051425919939780025\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.36448427843454484\tthat:0.1258707608491304\tby:0.12466168303486135\tto:0.10221334951584063\tin:0.07605065109935912\tand:0.07165822170306843\tfor:0.04865936824083497\twith:0.03921177583435405\tas:0.03718991128800623\t:0.01\n",
"in:0.31792377872811106\tof:0.3160478906012064\tIn:0.08985564593972063\tfor:0.06884183363249788\tto:0.06561217393555714\tfrom:0.03690872438645059\tat:0.03551889091090369\ton:0.03218534376603158\tthat:0.0271057180995211\t:0.01\n",
"the:0.5764976416279587\tan:0.13960572032793647\tThe:0.07170536629848716\tof:0.06944067143658407\ttho:0.028452659273184442\tin:0.028201974074869414\this:0.02668395909929764\ta:0.025796978683019146\ttheir:0.023615029178663087\t:0.01\n",
"from:0.1408471128159982\tand:0.13864073982157082\tgive:0.12308132543580362\tof:0.11690498071019698\tfor:0.11194955137732554\twith:0.0972548152554179\tas:0.09548044624190305\tin:0.09221888719258574\tthat:0.07362214114919813\t:0.01\n",
"and:0.35191244160203955\tthat:0.2088618405477544\ttime:0.11633772747427895\tbut:0.10257574540072963\tday:0.08700696739176635\twhich:0.038806610409689093\tdo:0.031193574372504498\tdays:0.026919651164873066\tthe:0.026385441636364384\t:0.01\n",
"the:0.40097266317493135\tthis:0.2140581702481896\tlast:0.11797389095921397\ta:0.11269801685148563\tnext:0.03882168692638593\tevery:0.027918421008445264\tThe:0.027578316398206095\tfirst:0.025227684989017344\tthat:0.02475114944412493\t:0.01\n",
"a:0.19695323005005633\tthe:0.16816913302810177\tof:0.14822321855124101\tand:0.13939369829278436\tto:0.08838261293154283\tin:0.07993288548178436\tfor:0.0784798399018892\tthat:0.05177581610431104\tby:0.03868956565828905\t:0.01\n",
"N.:0.3379391929569853\tS.:0.2628840733373512\tnorth:0.12549704166971248\t8.:0.09503047110010221\tsouth:0.06900896873959955\tthence:0.03973352059523933\tand:0.023359271772177982\tof:0.019513221553331548\tlot:0.017034238275500265\t:0.01\n",
"him.:0.25317321457065084\t<s>:0.18130793926850525\tit.:0.15129184530075573\tthem.:0.0907766489008253\tlife.:0.07254184254062769\ttime.:0.06368201276776488\tyears.:0.06338560871683434\ther.:0.06282010670713185\tman.:0.05102078122690411\t:0.01\n",
"the:0.4886666072865456\tThe:0.2596689141452807\tand:0.07007923073118724\tto:0.044470467602728596\tof:0.0309929166904109\ttho:0.026189677820558647\tthat:0.02547968968529347\ta:0.023855975183393323\this:0.0205965208546014\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"as:0.22713013832443654\tand:0.14913268565836643\tup:0.12014873316021932\thim:0.08859689887480426\tcame:0.08573191708160047\tthem:0.08362630907797408\tcome:0.08309578494597854\tit:0.07827016552533762\tis:0.07426736735128274\t:0.01\n",
"the:0.3095876780584938\tof:0.17316931702614413\tto:0.12268602141238893\tand:0.12089557564332551\ta:0.08723231527611129\tin:0.05333032522055631\tbe:0.04669364142145447\tis:0.03842252484347462\tfor:0.0379826010980508\t:0.01\n",
"to:0.26430537991195313\twith:0.22189542876708748\tfor:0.13145966769727485\tof:0.12095557243699379\tupon:0.07041237561615137\ton:0.0554738486082836\tagainst:0.04941711182891035\tin:0.03842099385453453\tfrom:0.03765962127881074\t:0.01\n",
"at:0.22606604972269348\tof:0.20393953051698147\tin:0.16750080429008354\tto:0.09178212860210258\ton:0.07338281661280806\tfor:0.07328046460725855\tand:0.0653471204622718\tthat:0.045503935447936676\tfrom:0.04319714973786389\t:0.01\n",
"the:0.370468028844082\tof:0.16197959071813423\ta:0.11620225545906815\tand:0.08997785154833243\tto:0.07537666464476171\tin:0.050236849413235495\tor:0.04761768841594652\tthat:0.041025473223717454\tThe:0.03711559773272205\t:0.01\n",
"and:0.6773171550201491\tof:0.08141862591455745\tthat:0.06900824519565538\tby:0.05780433568759132\t<s>:0.03670504221795486\tto:0.030548800211983043\tsaid:0.01345129211953643\tsister,:0.012281499649984939\tfrom:0.011465003982587285\t:0.01\n",
"and:0.25607855654383166\tthe:0.232976014297585\ta:0.1011039369424828\tA:0.09550581336299062\tMrs.:0.07816854155485184\tof:0.06604198215718317\t.:0.055420096805561626\t<s>:0.054963626859755914\tMiss:0.04974143147575749\t:0.01\n",
"of:0.2879064669194967\tin:0.24596414768051103\tand:0.10820845216404885\tto:0.09314630581640905\ton:0.08141713597891058\tfor:0.05376069964023511\twith:0.041087657114371394\tfrom:0.04093770613401446\tIn:0.03757142855200292\t:0.01\n",
"the:0.279807205437013\tI:0.21365608347386927\ta:0.13937598616676664\tand:0.08145605989252477\tnot:0.07548668343831878\twe:0.06799077503383469\tto:0.056133875613555186\tyou:0.038298257065494924\twho:0.03779507387862266\t:0.01\n",
"out:0.259970022090428\tnumber:0.1270492007085476\tamount:0.1185888812941924\tplace:0.09967653950151974\tpurpose:0.09524074593671822\tcost:0.08363864668320183\tline:0.07174631736481127\ttion:0.0672561356311379\tboard:0.06683351078944313\t:0.01\n",
"part:0.23778318274648852\tout:0.13650194996190237\tone:0.13545965218630326\tside:0.13023444109046506\tday:0.11277447639813931\tand:0.0624896910783979\tportion:0.06245552651548233\tthat:0.05669612236879782\tcase:0.05560495765402345\t:0.01\n",
"<s>:0.40503749299508096\tit.:0.1648277973236291\tthem.:0.11978284897157628\thim.:0.06475006504161851\ttime.:0.06110451381365808\tcountry.:0.04844788492837501\t.:0.04478272601418663\tday.:0.04250298766166827\tlife.:0.0387636832502071\t:0.01\n",
"the:0.27561886274537956\tof:0.1952531732620512\tand:0.16976870551504375\tto:0.0950836377911057\tin:0.07374570886239616\tthat:0.05499695557351459\tfor:0.04793679366161944\tby:0.04431680658497327\ton:0.03327935600391625\t:0.01\n",
"it:0.2277667432208716\twhich:0.13941250667008595\the:0.12894566790074866\tIt:0.11860337441045683\tand:0.09966209044342629\tthat:0.09770428239226572\tbe-:0.07946549882673551\twho:0.05491329322416052\tthere:0.043526542911248925\t:0.01\n",
"there:0.3940259511940087\tThere:0.20907678766799084\tthey:0.13591065617314915\tand:0.05636043797824098\twho:0.055800136740768926\tThey:0.041474364655915\twe:0.0387645155857635\twhich:0.035188380066608765\tthat:0.023398769937554187\t:0.01\n",
"the:0.6996842814854728\ta:0.10312846252546914\tof:0.04210711987981017\tThe:0.040769118749780744\ttho:0.028428914008963663\tuntil:0.0239383456708827\tand:0.021276818685242407\tthis:0.015913384117584313\ttoo:0.014753554876793968\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"the:0.30203881895949847\ta:0.18395506785575846\tof:0.16873631212843848\tin:0.09204294180971802\tfor:0.07023775506713065\tand:0.058703932053046075\tto:0.04384760128240317\tby:0.040681992493739244\this:0.029755578350267535\t:0.01\n",
"was:0.27977433601870544\tbe:0.17392506983137218\tis:0.16142939698654665\tbeen:0.144343393776088\twere:0.06694342776650358\tare:0.054427459680031855\tbeing:0.0386811337439232\tand:0.03670683279936627\thad:0.03376894939746286\t:0.01\n",
"it:0.22032745468847664\the:0.20076413298571408\tI:0.13323657851913465\tthey:0.09118638266553038\tthat:0.07899630474111168\twho:0.06889970757666233\tand:0.06846676232695809\tIt:0.0670534761113512\twhich:0.0610692003850611\t:0.01\n",
"of:0.2302491811519916\this:0.21842422194277383\ta:0.15199313852644625\tthe:0.11494307199710062\tmy:0.10959975039621676\ther:0.09135754916266552\tfor:0.029450089144208293\tyour:0.022696931411569313\ttheir:0.021286066267027823\t:0.01\n",
"the:0.2562524097919641\ta:0.15301953386577638\tof:0.14793099557925382\tand:0.12941454595372873\tfor:0.06950862362334673\tin:0.06778691618690018\tat:0.0598025549310835\tthat:0.05361278261152159\tto:0.052671637456424836\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"and:0.2477220734283836\tnot:0.13524746358901157\tthem:0.10733526047245205\tup:0.10207472698290312\tit:0.08779411077800155\tthere:0.08566688859275184\tcontinued:0.07944584123046994\thim:0.07438644159651923\ther:0.07032719332950713\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"of:0.3084672275065208\tin:0.24423525117112443\tto:0.12763288452368698\tIn:0.05967467896421297\tfor:0.05792815775568984\tfrom:0.052399536292557204\tby:0.04849583326779586\ton:0.04739831106242108\twith:0.043768119455990864\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"a:0.2843580812254703\tthe:0.2254461121645873\tto:0.16414621729417345\tand:0.10151592084733022\tI:0.05730979122820883\twe:0.046220664564445686\twho:0.041136893068694544\tthey:0.03724760443549814\tThe:0.032618715171591726\t:0.01\n",
"and:0.16918862602263318\tright:0.16769894398753116\tas:0.12097645799354327\tis:0.11060429371135434\table:0.10119767692139396\tthem:0.08828798698421468\tnecessary:0.08143372412231849\thim:0.07807014862375604\ttime:0.07254214163325488\t:0.01\n",
"and:0.22859318752855465\tof:0.20688115317871988\tto:0.10485675754180256\tare:0.08093122689156014\twith:0.07873748672845025\tat:0.07698480693413873\tthat:0.0761094074922538\twas:0.07183860938571968\tin:0.06506736431880017\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"Mrs.:0.26992953161680283\t.:0.14503034888408234\tMr.:0.1340947194911473\tand:0.09677900791743692\tof:0.09271080828113656\tDr.:0.0659741883395425\tJ.:0.06518747830155364\tby:0.060716546085948626\tW.:0.05957737108234924\t:0.01\n",
";:0.2140406523710403\tmortgage:0.17515171653900855\tMr.:0.11907178366862219\tstreet:0.09875469644921217\tmortgage,:0.09579419019654717\tcontained,:0.07947761068705063\t,:0.07874590570648383\tfeet:0.06699557099634464\tone:0.06196787338569041\t:0.01\n",
"and:0.18440668185141432\tis:0.16176561123123673\tas:0.10504970314699047\thim:0.10056267282937408\twas:0.0990886602616605\tnot:0.08980026513732768\tnecessary:0.088739311748612\thave:0.08319547983262292\tthem:0.07739161396076136\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"to:0.35475188267547586\twill:0.20677282583166295\tmay:0.09349468960283792\tshall:0.06687436688333061\tcan:0.06568132209987293\tshould:0.06315092515475462\twould:0.05152084772785943\tmust:0.045602790914161\tcould:0.042150349110044685\t:0.01\n",
";:0.24522732450126675\tup:0.16651269664144078\thim,:0.09150646748715027\t,:0.08879389618161869\t.:0.08703383830847566\tit,:0.08297729184831844\tstreet:0.08120731690448335\tin:0.0758293056263325\thundred:0.07091186250091348\t:0.01\n",
"of:0.34166340115224214\tthe:0.16175208821525683\tand:0.1207523276560215\ta:0.11169557844010487\tin:0.08490878159688152\twith:0.05043303065584231\tby:0.04863278961132174\tto:0.03910183187137612\tfor:0.03106017080095299\t:0.01\n",
"of:0.34450708428155963\tthe:0.33968007064842964\tour:0.0719692206358643\ttheir:0.0633063615469956\tand:0.05631191258080514\tThe:0.038510693951851034\this:0.03255433129310033\tall:0.02164826337163589\tor:0.021512061689758433\t:0.01\n",
"the:0.24586786277439154\tand:0.16997323033442863\tof:0.1608974002526721\tto:0.1249237815759012\tbe:0.07553177693575928\ta:0.06150987802157047\twas:0.06041598053696065\tat:0.046389189906892676\tin:0.044490899661423375\t:0.01\n",
"and:0.19838036453519364\the:0.1453517428701363\tit:0.131545008281317\twhich:0.11067110084088176\twho:0.1077580166352294\tIt:0.10079944995203655\thas:0.06740741674997998\thad:0.06414194332590188\tHe:0.06394495680932344\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"the:0.7469353475017634\ta:0.05026289902145727\tand:0.039390860690945904\ttho:0.03201545916804407\tin:0.029322185764919576\tof:0.02832652240108852\tThe:0.025168615379391267\this:0.022762638935069652\tgreat:0.01581547113732027\t:0.01\n",
"the:0.44410226745363673\tat:0.17168627122600894\tof:0.15907585157838577\tfor:0.06244345735371928\tin:0.05380083032026611\ta:0.03577230881130079\tour:0.024997028697271318\ttho:0.01952477802825573\ttheir:0.01859720653115535\t:0.01\n",
"to:0.572055677079507\tthe:0.10291631957412889\twill:0.06550984875469673\tand:0.06447387682459804\tshall:0.0630901214206615\tmay:0.042569013494375516\ta:0.033761125813591315\twould:0.030599368192931117\tshould:0.015024648845509787\t:0.01\n",
"him:0.22511585349940635\t;:0.1342553032180852\tman:0.11574635372301251\thim,:0.0950718889975085\tup:0.09324255187190897\tand:0.09098934403345373\thimself:0.0835495239653671\tin:0.08043645717718255\tman,:0.07159272351407525\t:0.01\n",
"the:0.33857450313297194\tof:0.22661452688197226\tand:0.09632035265682728\ta:0.08298924954357251\tto:0.07482028116055857\tin:0.049773234397000654\tfor:0.04732466192902027\tor:0.04134853028470124\tThe:0.03223466001337524\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"was:0.18494208007894075\tand:0.15997546350220582\tis:0.15088318462818165\tbe:0.09417887012570081\tare:0.08723277081366447\tbeen:0.08574587393443356\tnot:0.08232977490659425\tor:0.0807162987267382\twere:0.06399568328354056\t:0.01\n",
"the:0.45072442068859575\tof:0.15863699663840108\tto:0.08274862814216809\tin:0.07934149181786487\tand:0.06519368185071724\ta:0.04745882399311515\tat:0.04172253319245968\tby:0.036321053813860485\tthat:0.027852369862817552\t:0.01\n",
"the:0.18464956272095986\tat:0.16260406504428784\tNo:0.15552913126776768\tNo.:0.1506964975088086\tand:0.1424188322218812\ta:0.05347577359447849\tabout:0.05116867326426797\ton:0.04879522944935517\tof:0.04066223492819315\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"foreclosed:0.21354426481975966\taccompanied:0.15326393402647306\tmade:0.13791131994204262\tand:0.13215418511823615\tfollowed:0.12340081914410177\tsurrounded:0.0697778146110107\tup:0.05787632017490193\tcaused:0.051337079258656944\tsecured:0.050734262904817265\t:0.01\n",
"and:0.2869644433305565\tthat:0.2123016823811757\ta:0.12792853825331466\tone:0.08679078964537013\tbut:0.06329736992465258\tlong:0.06296471931113348\t;:0.0622605807028215\tworth:0.04862997779321495\tand,:0.038861898657760525\t:0.01\n",
"of:0.5151231485831418\tto:0.10947083605526035\tin:0.08723701215003621\tby:0.07896969963281915\tthat:0.06079882569715585\tand:0.046065454822333915\tfrom:0.037541253721853636\twith:0.029897590901215434\tat:0.024896178436183573\t:0.01\n",
"they:0.17575189562716811\twe:0.15884948974267682\the:0.15316210749662412\tI:0.14793626125930318\tit:0.10583886363524375\tthat:0.06699093900055623\tyou:0.0645982230351958\twhich:0.06241058168563478\tand:0.054461638517597194\t:0.01\n",
"I:0.2972347413548833\twe:0.1596737443819009\tthey:0.15880401414132647\tWe:0.10767922019127868\twho:0.06816921463312631\tto:0.061192502960840944\tand:0.051231682532044916\tyou:0.048807689139557305\tThey:0.037207190665041176\t:0.01\n",
"the:0.5065129055186693\tin:0.11911641381828753\tof:0.10992400739733785\tto:0.08001010458359513\tthis:0.049772685122751695\tat:0.039644599216754214\ttho:0.03158805677034889\tIn:0.03066314877165796\tThe:0.02276807880059724\t:0.01\n",
"the:0.3036331843673764\tother:0.1561582030426096\tand:0.14730478842897132\this:0.07700683329546971\tmore:0.07185834437800707\tas:0.06160668779347605\ttwo:0.05884182233504286\tof:0.058741660107104576\ta:0.05484847625194239\t:0.01\n",
"the:0.3816830357894635\ta:0.16525916432344623\tof:0.11321478579410847\tand:0.09345846911364304\tto:0.07600139632985076\tThe:0.05908301390358625\twith:0.039353902658164484\tan:0.0355006712007448\tin:0.02644556088699226\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.45412017451507897\ta:0.29396358115039606\tThe:0.08376557528617748\tand:0.040141036551997994\ttho:0.037487913877772866\tconsumptive:0.02573304366504399\tother:0.01865073546857744\tof:0.018649820947862106\ttbe:0.01748811853709325\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"and:0.2998733451215016\tthe:0.22640215733455918\tof:0.08210686823067183\ta:0.08171642934211865\tan:0.07776831165431403\this:0.07009990466321545\ttheir:0.06589032671166979\ther:0.04527634339056338\tis:0.04086631355138602\t:0.01\n",
"be:0.21674228715651064\twas:0.19883597471779568\tis:0.14907155343599904\tbeen:0.09979000617924065\tand:0.09310455381641977\twere:0.06504554459222144\thave:0.057257998981491816\tthe:0.055872464014022544\tare:0.05427961710629822\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"the:0.3313690642176291\tand:0.19719348372757117\tor:0.10893704454958855\tof:0.09519039093773558\tin:0.06821987590230487\tany:0.06621170965896837\tto:0.04426209714417091\tall:0.04082057190739313\tat:0.037795761954638456\t:0.01\n",
"a:0.3034341557818798\tthe:0.24512001474184386\tof:0.15188295694265205\tand:0.08494109803405019\tto:0.06092123229077192\tThe:0.038408626957090554\tin:0.035851830687245616\tthat:0.0358452515987642\tan:0.03359483296570173\t:0.01\n",
"the:0.42564987496672985\ta:0.116429278576286\tof:0.10502209791651214\tand:0.08392627051613638\ton:0.07715365309664195\tsaid:0.07682894909750054\tdescribed:0.041719846615722575\tThe:0.037251746138637964\ttho:0.02601828307583277\t:0.01\n",
"of:0.235157970469249\tthe:0.21040457790473274\ta:0.13410027868876173\tand:0.11383505619145995\tat:0.06919173638100755\tto:0.06072844213599271\t.:0.05963452410421578\t<s>:0.057569696671424954\tin:0.04937771745315557\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"of:0.343693744984266\tand:0.13477565042182937\tto:0.09311051889206207\tSection:0.0756476946060626\tfor:0.07356350827302711\t.:0.07124394854145029\tNo.:0.07088584383673632\tNew:0.06602168973016773\tJune:0.0610574007143983\t:0.01\n",
"of:0.3639993698783781\tto:0.12107984248644961\tand:0.11552124064890508\tin:0.09198580482221849\tfor:0.07501518821384201\tthat:0.06897171265248547\tby:0.056904826114398906\twith:0.052653986291932575\tall:0.043868028891389646\t:0.01\n",
"the:0.22587700153765214\tall:0.16992722685429196\tof:0.16826537345902104\ta:0.15067014367269738\tand:0.11456380532371625\tin:0.05378052197744408\tmost:0.05319923025299219\tto:0.02747098663237357\tthat:0.02624571028981137\t:0.01\n",
"to:0.7868519828784943\twill:0.051770024159800414\tand:0.03715156090535633\tshall:0.024850159802897908\tcan:0.023929490496230717\tnot:0.01942771608896718\tcould:0.017923701567647388\twe:0.0144291246783644\tshould:0.013666239422241305\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"and:0.30908013350719543\tcovered:0.15608434972688331\tfilled:0.10343576130365886\tbut:0.09828767802052155\tup:0.07943785469674321\ttogether:0.07808385841040077\tit:0.05717036011322121\thim:0.055848629053660385\twas:0.052571375167715234\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.2423620207365299\tof:0.20536500222371457\tand:0.166871077045992\tin:0.1176496937967874\ta:0.06877339806465797\twas:0.060401645356168765\tis:0.04771002123545104\tare:0.04130335500381535\tbe:0.039563786536882965\t:0.01\n",
"hundred:0.2219547768527995\tup:0.14710691202085605\ttime:0.11944197195584247\tstreet:0.11066766189320533\tdollars:0.0940788333653787\tboys:0.08880360799187319\twomen:0.07021450780780422\twife:0.06905875461531626\tland:0.06867297349692422\t:0.01\n",
"that:0.24132884699554186\tand:0.17007011318423262\tas:0.15473247105502086\twhich:0.11365476136805698\tif:0.08132596680747976\tbut:0.07623447558669805\twhen:0.07541500930950362\twhere:0.047248119173082616\twhat:0.029990236520383726\t:0.01\n",
"was:0.20539834387460562\tand:0.15457631854299356\tbe:0.13158680156246966\thave:0.10780379601668207\tis:0.091226428011828\twere:0.08067132077180982\thad:0.07384502749202257\tare:0.07360077602093487\tbeen:0.07129118770665374\t:0.01\n",
"that:0.2810726415126911\twhich:0.16330646194209503\tif:0.15419202713687435\tas:0.11875861027096202\twhen:0.10205747824016881\tand:0.070385685066374\tbut:0.03373194631470424\twhere:0.033542858663432144\tIf:0.03295229085269841\t:0.01\n",
"and:0.2377552830049108\tthe:0.19664319879819428\tof:0.1528667443608291\tto:0.1471178391960896\twhich:0.059329699771690704\tbe-:0.05422022227952557\tthat:0.050784917433498326\ta:0.04632580216560945\the:0.04495629298965226\t:0.01\n",
"to:0.31892216491177455\tin:0.1963395656533427\ta:0.13922964775256802\tthe:0.1299428328708334\tand:0.056349692460204034\tof:0.05158155403608701\tIn:0.03934737120862909\tgreat:0.029403233466809005\tfull:0.028883937639752333\t:0.01\n",
"to:0.2831696873478767\twill:0.20862990006415782\tmay:0.10070590427702157\tshall:0.0911394923012978\tshould:0.08149028008056555\twould:0.07692534609026287\tnot:0.05035286506123487\tcan:0.04886043226277332\tmust:0.04872609251480942\t:0.01\n",
"it:0.18827238284428763\thim:0.14410478355647563\tin:0.12002795461836434\t;:0.09734813611861576\tthem:0.09285374486468502\tmade:0.09231963418836174\tit,:0.08698835628714736\tthem,:0.08677508666614253\tand:0.08130992085591995\t:0.01\n",
"hundred:0.8746405416588818\tdred:0.04299506543212241\tdollars:0.04148370253712112\tdue:0.010277419753322603\tfive:0.006457201375114532\tone:0.004130492723747134\ttwo:0.0034131353427564936\tHundred:0.0034002988442463308\tfour:0.003202142332687627\t:0.01\n",
"the:0.4170550160071505\tof:0.17171051030744613\ta:0.09840728246718561\tin:0.06434403333110779\tand:0.05927596120107457\tThe:0.05173151941110525\tno:0.04976440471997886\ttheir:0.04215581274747844\tany:0.03555545980747271\t:0.01\n",
"the:0.32931518134970156\tof:0.2710829821550597\tand:0.11219613221516728\ta:0.0644882324754135\tto:0.0633905806961436\tin:0.0430322347428102\tThe:0.04247288851686077\tthat:0.03270834409185839\tby:0.03131342375698504\t:0.01\n",
"sum:0.1648703730892017\tout:0.11307775521688435\tamount:0.11090839996168092\tnumber:0.11072884578616649\tBoard:0.10709279218170512\tday:0.10091951320741446\tline:0.09892782668492611\tcounty:0.09783432205349214\tpurpose:0.0856401718185288\t:0.01\n",
"the:0.26270449983543037\tof:0.23784664643221268\ta:0.20337466211127858\tin:0.06234970577657421\tand:0.0589852505558021\tfor:0.056638768660713046\tto:0.04715637137189138\tthat:0.03448899416628203\twhich:0.026455101089815684\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"-:0.22456838158221581\tti:0.18655910701447107\tto:0.12782386012359034\ttl:0.1050811085641114\tof:0.08343911155506109\tI:0.06895153211060419\tt:0.0686731962156954\t.:0.06378786214167739\ta:0.06111584069257328\t:0.01\n",
"of:0.3728798589710132\tin:0.10679255801003197\tfor:0.10548830657680139\tand:0.09808468579533683\tthat:0.08977383915781684\tto:0.08053331733226725\ton:0.05522920803004978\twith:0.049628025459149766\tby:0.03159020066753299\t:0.01\n",
"in:0.24333994743612922\tof:0.18871067140801695\tthe:0.14254258973892459\tand:0.10760876324558527\tfor:0.09174081455919122\ta:0.06366595919272895\tto:0.061841865908333744\tIn:0.05733705309984939\twas:0.03321233541124056\t:0.01\n",
"be:0.3222308538829175\tbeen:0.11619279773416331\twas:0.1030298871502696\tI:0.09615217649139314\tever:0.0870668867982193\thave:0.08225450813629269\the:0.06554511503108902\thad:0.06134181901279174\tnever:0.05618595576286369\t:0.01\n",
"to:0.35070235234101205\twill:0.23747072676545528\twould:0.111529944760306\tshall:0.0836684506099716\tmay:0.07149932693752681\tshould:0.05078411471133304\tnot:0.03359463335243597\tmust:0.03352299392440999\tcan:0.017227456597549293\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"the:0.3545641137054762\tThe:0.23711981807442023\tthis:0.13482910916081703\ta:0.07826281692112518\tthat:0.06437077321336172\tThis:0.05933674880837931\this:0.022895764732005244\ttho:0.020674077063327623\twhole:0.017946778321087518\t:0.01\n",
"was:0.2913822267059822\tbe:0.19159401601685402\tand:0.13725779049265693\twere:0.12269658257821768\tare:0.061860157915153806\tis:0.06051037955681609\tbeen:0.058949023142566656\ta:0.03332802779618204\tvery:0.03242179579557065\t:0.01\n",
"of:0.2253941184970146\tthe:0.22235184329535704\tin:0.154478342567993\tto:0.10560147083007033\tat:0.08338609613666667\tfrom:0.06340447184725076\tand:0.06334138429756486\tIn:0.04423893995085344\tby:0.027803332577229174\t:0.01\n",
"is:0.15805939117099513\twas:0.153522518426938\tare:0.15198482347871242\ta:0.14118437406449674\tthe:0.11943427380274751\twere:0.09495337598432238\tbe:0.07859546471229752\tand:0.04921993510688655\this:0.0430458432526038\t:0.01\n",
"girl.:0.2805756160837208\tboy.:0.275515803682147\tof:0.16004546055608632\tthe:0.06507535498302387\tlots:0.04734223819510954\t.:0.04713329968531032\tand:0.04327677193241086\t<s>:0.039359040519750095\tSt.:0.031676414362441216\t:0.01\n",
"the:0.21548267152692854\tof:0.20664464973091626\tand:0.13121185825684453\tto:0.12121506917238048\ta:0.08216664157460972\tin:0.07841572167600788\tat:0.07827295544935534\tby:0.04082847867890061\tfor:0.03576195393405666\t:0.01\n",
"the:0.47342887095760816\tThe:0.1408876004467291\ta:0.10241340046237231\tdistressing:0.06698218129200104\tof:0.045554168499187704\tother:0.04194251187024852\tno:0.04073660267909232\tour:0.03957170489209389\tand:0.038482958900666886\t:0.01\n",
"go:0.1379256917699633\tthem:0.12646493036403733\tput:0.12386155667120093\tcome:0.11846129453330463\twent:0.10421152398322023\tcame:0.09912143707310431\tbrought:0.09758586594579569\tback:0.09258561916109298\tit:0.0897820804982806\t:0.01\n",
"of:0.3594574890331113\tin:0.15658093538193446\tto:0.10117276570187698\tfor:0.09492462377634399\tat:0.09321277780817147\tand:0.06296068456577823\tthat:0.043515943592281656\tby:0.04083824840220062\tIn:0.037336531738301336\t:0.01\n",
"to:0.2301088789013404\tthe:0.2005345667151421\ttook:0.11818633815236203\ta:0.1123698747096409\ttake:0.10275809386248329\ttaken:0.06759120236630323\tand:0.063711951032132\tthat:0.04829963577618824\tin:0.0464394584844078\t:0.01\n",
"the:0.36160101496864905\tof:0.14005264961863276\tand:0.08823053970069596\tin:0.08740800054709041\this:0.07978828603757356\ttheir:0.06875611623618873\tthis:0.06537825595269264\tthat:0.05525421745880342\tor:0.04353091947967346\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.21749644841484947\tof:0.17361122254231234\ta:0.1509220682128043\tMr.:0.09265055123437346\tand:0.09214326307604662\tto:0.0800775549417959\tin:0.07430032121248577\tat:0.05445267807266168\t.:0.05434589229267052\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"and:0.179642974784162\tof:0.16371697337866006\tin:0.10885683543020691\tthat:0.10726223330526863\tput:0.10248338569178428\ton:0.09168470654228401\tas:0.0915852541178361\tmake:0.07720750119874842\ttake:0.06756013555104962\t:0.01\n",
"of:0.27016977349931554\tMr.:0.18600420143684837\tthe:0.16301651962943947\tand:0.11099230579083734\tto:0.07346670218111923\t.:0.05827837555672117\ta:0.04824065315893516\twas:0.04128509416011963\this:0.0385463745866642\t:0.01\n",
"and:0.20248582949526708\tday:0.15637489846934613\twhich:0.14050114765402746\the:0.12988771622378026\twho:0.10424354112349121\twas:0.0717858301483267\tI:0.06523725538730675\tHe:0.06003109901680472\tbe:0.059452682481649734\t:0.01\n",
"of:0.241076574979548\tthe:0.23978501408286745\tin:0.1480714618504191\tto:0.1112475630634649\tand:0.07824249389440861\ta:0.07385431283227956\tIn:0.037787522668594135\tfor:0.02997229162806033\tfrom:0.02996276500035805\t:0.01\n",
"well:0.3114097065760158\tfar:0.16389585514350904\tso:0.11210585724895158\tand:0.08500485111349255\tsoon:0.08148001157353814\tsuch:0.06933250176455526\tit:0.05860358140119117\tmuch:0.05525634286939323\tknown:0.0529112923093532\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"<s>:0.24643505364970167\tthat:0.22567481111489607\tand:0.11986402130738497\tit.:0.10509411761497947\tbut:0.07308474448235741\tas:0.06237988616146023\tthem.:0.06028718069699419\tcountry.:0.04939834692648971\tof:0.04778183804573639\t:0.01\n",
"put:0.21245783231561874\ttaken:0.17736338020548742\tmade:0.11885532730363525\tcame:0.1005057607680261\tset:0.09570022884922154\tit:0.07829334006626691\tcome:0.07654691721179556\tlocked:0.06620644915383707\tpicked:0.06407076412611142\t:0.01\n",
"of:0.4350691121933086\tin:0.17590693507051808\tto:0.10103820455278756\tIn:0.05410244356178705\tthat:0.04894784282719977\tfor:0.04796761694587244\tby:0.04368040144683445\tand:0.04226712549192657\ton:0.0410203179097653\t:0.01\n",
"the:0.3319253583682338\tand:0.17176325614856014\tof:0.14119926908580027\ta:0.14004527676886455\tto:0.06776408066123342\tin:0.039275682563503306\twas:0.03515109287125067\tbe:0.03293092268427288\tis:0.029945060848281014\t:0.01\n",
"he:0.29759384126645533\tI:0.14712822519614255\twho:0.13357369841600397\tthey:0.09630194152462256\tshe:0.07780358321265955\tand:0.07122033994947809\twhich:0.06282023249521906\tHe:0.05213221799963883\tthat:0.051425919939780025\t:0.01\n",
"and:0.3069677166766969\tthe:0.21218635586594245\tto:0.14187262002016168\ta:0.09766881027880744\tof:0.08509857667908922\tthat:0.050819772902028076\tin:0.03667826581808987\tby:0.02994028293768082\tas:0.028767598821503485\t:0.01\n",
"and:0.2574968293755876\twas:0.10283462459727934\twent:0.10171688013078786\tthat:0.09969522473453889\tgo:0.0936940103198666\tput:0.090490761697594\tCommittee:0.09004910932115216\tgoing:0.08307167808529468\tup:0.07095088173789894\t:0.01\n",
"the:0.2935930368874303\tand:0.20003539239638438\tof:0.16624491776673697\ta:0.06985032675590187\tto:0.061400635926014274\tbe:0.056514359931314755\tor:0.054534914718667435\tin:0.05287390643742491\t<s>:0.03495250918012508\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"gold:0.5581642389104192\thundred:0.12052889072237587\tmen:0.08933798568758869\twife:0.057740763155311486\trelatives:0.04174268668565325\tcity:0.03811482161167378\tland:0.030936482520491408\tin:0.026856518703656764\tup:0.026577612002829328\t:0.01\n",
"and:0.2572258616813817\tmade:0.16128606949170524\tup:0.10472758293446799\tor:0.09113140713649279\tdown:0.08314410893250195\ted:0.07585297797866242\tthat:0.07579199100048334\tout:0.07214235137880427\twest:0.06869764946550015\t:0.01\n",
"the:0.33234301859327503\tof:0.16511810112924477\tand:0.14359386254401948\ta:0.07809521494992094\tthat:0.07723479213752328\tThe:0.052790940042757695\tin:0.051550293467254364\tno:0.0449303041329755\tMr.:0.04434347300302878\t:0.01\n",
"that:0.34901160282704624\tand:0.12905694289562097\twhen:0.11195805744935065\twhich:0.09515059839585663\tif:0.09367029153968624\tas:0.07503911277556882\tbut:0.057683117603950056\twhere:0.053824969175761926\tIf:0.024605307337158506\t:0.01\n",
"of:0.4370690017114948\tin:0.16301969622229673\tto:0.11012073832208184\ton:0.10832393423279825\tat:0.04450932476739282\tfor:0.03543630613936171\tby:0.03393428209598824\tIn:0.02995791062815556\tfrom:0.02762880588043\t:0.01\n",
"of:0.22276029096296046\tto:0.1357439960083538\tat:0.12103741349443554\tand:0.11172063505098612\tfor:0.09290060191875373\tin:0.09109789925314646\twith:0.07601683987291045\twas:0.07506831853401578\tis:0.06365400490443775\t:0.01\n",
"of:0.3732262004706412\tto:0.16397961393745195\tin:0.1079815739495333\twith:0.0979737786972683\tand:0.07075888989169418\ton:0.06567367712887784\tby:0.040809607947550564\tfor:0.035978776954601825\tis:0.03361788102238076\t:0.01\n",
"that:0.26930417871230444\tas:0.15727244996245027\tand:0.1563876603840746\tif:0.08484692381639038\tbut:0.07617680510850935\tfor:0.07077115245689192\tof:0.0636813410327608\tmake:0.060243648343585164\twhich:0.051315840183033076\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"it:0.2131788841045554\the:0.1867324812779885\tIt:0.14093961810063965\twhich:0.10085580692903923\tI:0.09523457785691533\tand:0.0799079407626281\twho:0.06284443033512091\tHe:0.05697400216718626\tthat:0.05333225846592657\t:0.01\n",
"of:0.290216588950475\tin:0.1552607907009458\tto:0.12447644402228912\tand:0.10519347352813001\twith:0.09657977502028464\tfor:0.07860979980368667\tby:0.05236163718052052\tthat:0.05168680603360318\tfrom:0.035614684760065025\t:0.01\n",
"the:0.8134874609674253\ttho:0.04555737521613847\tThe:0.03699022068779265\tof:0.034171029165687344\tand:0.015071770799221562\ttbe:0.014602814334692122\ta:0.012437298176588651\ton:0.009986290074269088\tsurface:0.0076957405781848095\t:0.01\n",
"the:0.23545616196851724\tto:0.2156964262522404\ta:0.13005552552302216\tof:0.11929332247968742\tin:0.11608041482540164\tgreat:0.05970138833208002\tgood:0.043505594112636964\tand:0.035536092529861806\tfull:0.03467507397655236\t:0.01\n",
"the:0.26316548172535564\tfor:0.21435688977301026\tof:0.1767981927751022\tand:0.08111960049133107\tno:0.06436576131329166\this:0.057024632530355994\tin:0.04929170919365948\ta:0.042332401407749076\ttheir:0.04154533079014478\t:0.01\n",
"within:0.23937838422352548\tof:0.17365849624798044\tin:0.16555706722739474\tat:0.10161469330488497\tto:0.07665398364704665\ton:0.06787461221255567\tfor:0.06269511319667707\tfrom:0.060597358956231584\tIn:0.04197029098370339\t:0.01\n",
"he:0.16125553763111258\tthey:0.14906799396490875\tI:0.13170414552340481\twe:0.12192436792051252\tAmeri-:0.10907088699533747\tyou:0.10514331890529449\tit:0.09250845483084628\twho:0.05983107782960599\tone:0.05949421639897716\t:0.01\n",
"the:0.7989383435071797\tThe:0.0817662364307122\ttho:0.04484319457451364\ta:0.013654185474192483\ttbe:0.01353937058992744\tthis:0.01007959891267076\tof:0.010048905067651973\tsaid:0.008641005087402183\tand:0.008489160355749434\t:0.01\n",
"the:0.47324425788611985\tand:0.11266250766263597\tof:0.08363041862519985\tStates:0.07800362389399634\tsaid:0.05688817883786642\tNational:0.05206424176715666\t.:0.048106025656718614\tGeneral:0.04632149096414962\tThe:0.03907925470615669\t:0.01\n",
"they:0.21581515924896305\twho:0.1464732330250199\tthere:0.1094481416881997\twe:0.1054384184484492\tand:0.09555524539656333\twhich:0.09294776908795961\tyou:0.08173759452491636\tThey:0.07780237125368135\tthat:0.06478206732624733\t:0.01\n",
"with-:0.3576129679711993\tand:0.13267940693472852\twith¬:0.11451310788620381\tsent:0.08010058554602631\tit:0.07285198521077864\twent:0.07154533041769674\tgo:0.05574666501089949\tthe:0.053595847151130555\tcame:0.05135410387133665\t:0.01\n",
"and:0.2642028563901234\tthat:0.14934347559364516\theld:0.11323432212873087\tat:0.08600477729894643\trecorded:0.07931656944945921\twas:0.07749633162156319\ttime:0.07599002066858546\tit:0.07338907306293492\tnow:0.07102257378601133\t:0.01\n",
"of:0.27429270916097126\tis:0.1463557315234703\tand:0.1250320696657732\tknow:0.1088776858056109\tfor:0.10819118786859674\tin:0.06440831180714156\tto:0.06378898532244269\tbut:0.04991621880425909\twith:0.04913710004173425\t:0.01\n",
"up:0.1364490363535214\tout:0.12210445219008247\ttime:0.11636091465129163\twork:0.11478891118616796\tin:0.11341896840682665\tit:0.10839608919058241\t;:0.09574741576509772\thim:0.09181676579376961\tpower:0.0909174464626601\t:0.01\n",
"and:0.22548804382211918\tof:0.16551647653467494\tthe:0.10910891880260937\tto:0.10236234663377487\tin:0.09510539189201721\tbe:0.094972658901539\tI:0.07406902428534616\twas:0.0643687000531\tis:0.059008439074819334\t:0.01\n",
"and:0.22813005603170383\tthe:0.1572099043860072\tis:0.11521833637416955\tan:0.10420866558073172\twas:0.09504037588459194\tare:0.08564450459716828\tbe:0.08247759847336691\tthat:0.0643390720756877\tbeen:0.05773148659657292\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"the:0.42893723728726985\ta:0.3472022247716855\tof:0.04389796656323706\tand:0.03684115299801049\tother:0.029344071103317396\tvery:0.026948838418438394\tA:0.026641567656328125\this:0.026401216642219873\ttheir:0.02378572455949332\t:0.01\n",
"of:0.26616921747806205\twas:0.11852028208898172\tand:0.11370062134362456\ton:0.11067531534978763\tin:0.09976825023550331\tto:0.09105935844538253\tis:0.07090564579096445\tfor:0.06104670968901339\tare:0.058154599578680424\t:0.01\n",
"a:0.34097179078445844\tthe:0.282051933546048\tof:0.10201125377494587\tso:0.07029218056613128\tthis:0.049796894346484516\tand:0.04266416527135386\twith:0.03925343151134488\tvery:0.036192691199728545\tthat:0.026765658999504616\t:0.01\n",
"to:0.2327785327830104\tand:0.21229427480962393\tthe:0.1410405268379394\tof:0.10975303501443558\tis:0.06340027349170996\twas:0.061252185742387895\tbe:0.060664461601101526\tfor:0.05869577018973899\tre-:0.05012093953005223\t:0.01\n",
"is:0.3342379144152615\tare:0.27803412846542264\tand:0.08834192250930642\twas:0.08618918736439196\tIs:0.05792112409594868\tnot:0.03844639545980022\tbe:0.038351896216271046\twere:0.03436051376318329\the:0.0341169177104142\t:0.01\n",
"the:0.356569618870926\tand:0.14182144082139744\tof:0.11647590377038261\tin:0.09211705731779637\this:0.0736937292647815\tat:0.06802944751912807\tto:0.053062403798076765\ttheir:0.049692629835062195\tsaid:0.038537768802448906\t:0.01\n",
"of:0.21375420201278877\tto:0.1316319527879571\twith:0.11460800261721145\tis:0.10287803035493286\tfor:0.09674763520827172\tand:0.09096280795503767\tin:0.09048671477561979\twas:0.07976563424224252\tbe:0.06916502004593822\t:0.01\n",
"the:0.27062093316726427\tof:0.2058837608840983\tand:0.08834827289900334\tThe:0.0853987581870392\tMr.:0.0848051425396133\tthat:0.08185133110159959\tin:0.0776092527328897\tMrs.:0.049118875532564533\twhich:0.046363672955927845\t:0.01\n",
"and:0.2141376929981055\tas:0.18929375789273398\tis:0.09932585733157487\ttime:0.08928123282306943\tor:0.08516700227721469\tsubject:0.08250606082622892\thim:0.08079975213100898\tmade:0.07850981231065023\tthem:0.07097883140941338\t:0.01\n",
"of:0.42972831806257816\tto:0.1009400046262172\tthat:0.10058827211850843\tand:0.07865031065699772\ton:0.07692668101434931\tby:0.057358177002827075\tin:0.053048361248284714\tfor:0.05116929256845302\tfrom:0.04159058270178438\t:0.01\n",
"of:0.2546793110024634\tthe:0.21224658817143938\tto:0.13934186666122453\tat:0.1060966210519837\tand:0.07988257625012192\ta:0.07716931015693984\tin:0.04839906678965375\twas:0.03728725035036537\tfor:0.03489740956580799\t:0.01\n",
"of:0.2830490551324133\tfor:0.1783014470884359\tto:0.15943738631284854\twith:0.11203563042235976\tin:0.07005163695336043\tupon:0.05411928514058929\ton:0.048736085857691125\tabout:0.043720865400344706\tand:0.040548607691957034\t:0.01\n",
"of:0.2775823654949323\tin:0.14015884515621155\twith:0.121582681636841\tis:0.09897663119884043\tto:0.08864696712774395\tand:0.07963801328291438\tfor:0.07606510035879992\twas:0.059050824946662\tby:0.048298570797054324\t:0.01\n",
"of:0.1631677934654842\tis:0.14056921750772153\tto:0.13652683140786076\twas:0.11916121475650829\twith:0.10752467690064556\tand:0.10583015404260185\tin:0.09724578560229616\tas:0.06215370733395931\tby:0.057820618982922345\t:0.01\n",
"to:0.6567241123025417\twill:0.09047880167121085\twould:0.06894378392023515\tand:0.05270548825120062\tnot:0.05100052294249778\tcan:0.019601063792458982\tmay:0.01751550512713279\tshould:0.0173870857815681\tI:0.015643636211154055\t:0.01\n",
"the:0.5718200597028764\ta:0.24581444223187018\twhite:0.05605544579651239\tthis:0.02966844819332745\ttho:0.023576559562500675\tand:0.017397041588361226\tlarge:0.015873343678005383\tThe:0.015574907565837983\tof:0.014219751680708166\t:0.01\n",
"the:0.24343084569487752\tand:0.16178693456557883\tof:0.13887751795222011\tto:0.1244772705341572\ta:0.11336884681343598\tbe:0.05818394061425249\tis:0.050746831112712124\tin:0.049860590702662695\twas:0.049267222010103036\t:0.01\n",
"<s>:0.4811480744785851\tit.:0.11362845981686331\tthem.:0.08433884778029362\thim.:0.07319816945502994\t.:0.06969185095971074\ttime.:0.05499775025234862\tcountry.:0.04116192008712955\tday.:0.039234452880245595\twork.:0.032600474289793326\t:0.01\n",
"and:0.26276554424049875\twell:0.17165735638285678\tregarded:0.10215108442096366\thim:0.08688236618817878\tknown:0.08594969760882573\tsoon:0.07468266047506815\tit:0.07254659441566477\tis:0.06743217334715047\tbut:0.06593252292079285\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"those:0.4529909351618139\tmen:0.17669254562461442\tand:0.0777641735520194\tpeople:0.06973463070913263\tThose:0.060505069472183176\tman:0.04228232023178334\tall:0.04140258357632076\tpersons:0.03955708558100816\tone:0.029070656091124202\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"of:0.3744679427904173\tin:0.25786424571498784\tto:0.1019056193795733\tfor:0.09814945932958943\tIn:0.04677455778021036\tand:0.03498513051769539\twith:0.028838314162317583\tfrom:0.02590911410913225\tat:0.021105616216076793\t:0.01\n",
"in:0.20484377117992708\tthe:0.1789630476046136\ta:0.15547726016817529\tof:0.11853059252212453\tand:0.10133357431383683\tto:0.08414718432905638\tfor:0.06270303865495257\tIn:0.044838132417842555\tan:0.03916339880947116\t:0.01\n",
"all:0.21357881357464759\tit:0.17109218651982136\tand:0.14009933012402886\twent:0.08953810753119093\thim:0.08033885886518542\tthem:0.07688681981197465\twas:0.07654321505881781\tis:0.07157275585741621\tturned:0.07034991265691713\t:0.01\n",
"of:0.18045438050695572\tto:0.1747026357974531\tthe:0.15749425223258814\tand:0.15345542519140226\tbe:0.09235457882182141\ta:0.07340216453377853\twas:0.06625041891181835\tre-:0.045984937709827485\tfor:0.045901206294354936\t:0.01\n",
"the:0.48510634382119644\tof:0.15786782881168968\tand:0.06829240425307684\tthis:0.05858176857512152\tsaid:0.04776419100240175\tits:0.04469391525368747\tfor:0.044206304145417964\tto:0.0438729772288015\tour:0.03961426690860693\t:0.01\n",
"day:0.2127116569079983\tnumber:0.17031138217183855\thalf:0.12370043696738696\tpart:0.11357650258752708\tmillions:0.07506639444956953\tall:0.0747929349795767\tout:0.07474843860405789\tone:0.07404754373587413\tquarter:0.07104470959617087\t:0.01\n",
"of:0.19222805621105238\tand:0.19004492527061204\tfor:0.16723821323246857\tthat:0.08157992246258691\tby:0.08105634998065794\tin:0.08085618155323196\tis:0.07585553825917475\twas:0.06193668086281729\tto:0.059204132167398324\t:0.01\n",
"the:0.3217504587634767\tof:0.17761375424890746\tin:0.1090603610310247\tand:0.10868940118452104\tto:0.08617207446285557\ta:0.07441328189590997\ton:0.04528235782503716\tat:0.036014122737170216\twith:0.03100418785109707\t:0.01\n",
"a:0.23082638298730201\tthe:0.18473203257266818\tto:0.182980040157843\tand:0.13988323579700143\tof:0.07347320232300479\tis:0.04936530600599035\tnot:0.046318621507058885\twas:0.04281747533912632\twill:0.03960370331000506\t:0.01\n",
"of:0.3198693667622088\tthe:0.22769593568773783\tand:0.11531327751649682\tto:0.08792501874278845\tat:0.07355297531030017\tin:0.06924831602682052\tfrom:0.03329933869463881\tThe:0.032924750980812045\t<s>:0.03017102027819663\t:0.01\n",
"the:0.752502283161074\tThe:0.04544001048963289\ttho:0.04073223758942156\tMissouri:0.04025662037469137\tMississippi:0.03630812655295519\tof:0.023834660680014646\tPotomac:0.01750420550347448\tthis:0.016956946434588175\ttbe:0.01646490921414762\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
";:0.17739627448209838\tit,:0.15864753476062923\tthem,:0.12202049442370508\tin:0.10623287372066594\tup:0.1007613878453408\tit:0.09469836016048809\thim,:0.08551760767502341\thim:0.07455127187730792\tthem:0.07017419505474125\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"to:0.24811034056819778\twill:0.15906562908218813\tmay:0.11268835481634289\tcan:0.11191266308560788\tcould:0.07754591956635912\tshould:0.07608729864709453\twould:0.06537604077149213\tmust:0.05317000182994435\tnot:0.045891321773007726\tshall:0.04015242985976546\t:0.01\n",
"the:0.21168661632910743\tand:0.17342087587379088\tof:0.14965243031096215\tas:0.14862640424456694\ta:0.08287979349307766\tto:0.07107758859510925\tbe:0.05689152027188907\tsuch:0.04860602071964438\tin:0.04715875016185233\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"of:0.22250458285092234\tthe:0.1886514029189389\tany:0.1364124846158964\tand:0.12349837978644843\tthat:0.08793608166233316\tin:0.06582267733185002\tsome:0.0569572591091616\tevery:0.05513517557177981\tis:0.0530819561526694\t:0.01\n",
"and:0.2428061386481229\tto:0.18300044814510713\tI:0.12527212210714558\twho:0.11938820193341101\the:0.09178815379232817\twhich:0.0711818538768309\tthat:0.05713993628169791\tthe:0.056724532729387094\twe:0.04269861248596926\t:0.01\n",
"the:0.5311990925914803\tand:0.09227632831896376\tall:0.08637267602817841\tsuch:0.05446529710455\tother:0.048082695247672586\ta:0.0469582278179255\this:0.046106023607075754\tof:0.04584999667010408\ttheir:0.03868966261404965\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"brought:0.14134668571240977\tgo:0.1365473806122784\tput:0.13636720900209112\tcome:0.1164008790460434\twent:0.11332523863802069\tget:0.09614108788246405\tenter:0.08661757298090055\tthem:0.08205395895189371\tcame:0.08119998717389826\t:0.01\n",
"the:0.504908771081215\tan:0.19306384124705833\tof:0.06995789719882832\tThe:0.04463181876476438\this:0.0432440718174886\tyears:0.037548734466440165\ttho:0.03732368741428982\tand:0.03259256120925733\ttheir:0.02672861680065803\t:0.01\n",
"man:0.30515668734518586\tand:0.18052534267888162\tone:0.1336284050013829\tthose:0.09243853426758909\tmen:0.08417323662346295\twoman:0.07597687274857998\tall:0.048793331821774324\tpeople:0.03485717212897203\tperson:0.03445041738417123\t:0.01\n",
"the:0.5800220065431336\tThe:0.10832340912252256\tthis:0.08281674497901025\tthat:0.06745202567958662\tand:0.04455658588966446\tof:0.03506343296660886\ta:0.03398385268385194\ttho:0.023220258205076838\tsaid:0.014561683930544822\t:0.01\n",
"and:0.19468387128387024\ta:0.18095507928828247\tthat:0.1622406629659271\tthe:0.12173586361050481\tit:0.0927794128236039\tin:0.0633511180957385\tt:0.058862677855572414\tof:0.058353662260482435\tland:0.057037651816018144\t:0.01\n",
"the:0.3623743073210984\tto:0.14350486213310282\ta:0.123630717652237\tof:0.09598410471924136\tin:0.0923709850763967\tand:0.07127197880500498\tthis:0.047997708811554525\tthat:0.03121717347869273\tIn:0.021648162002671487\t:0.01\n",
"of:0.24498788882894354\tthe:0.1990394779155274\tand:0.17503263892200271\tby:0.1147038060991805\tat:0.1018120945086571\tto:0.05249710282841382\tfrom:0.045537211875815456\tas:0.02853628011236932\t<s>:0.02785349890909007\t:0.01\n",
"of:0.35881236315422627\tin:0.1285338836243428\tto:0.1199889852956576\tat:0.08902657570939344\tby:0.07060823460612808\tfor:0.057981854858113906\tIn:0.056422772814854166\t<s>:0.05487995576349958\tand:0.05374537417378407\t:0.01\n",
"in:0.22568021117096215\tof:0.18692940341006392\tas:0.09119042606390385\tand:0.09008561466322934\tto:0.08829751974590068\tby:0.0880511052909195\twith:0.0837971498313692\tfor:0.06883728213289977\tis:0.06713128769075145\t:0.01\n",
"the:0.2358907630512036\tof:0.17953299779151127\tand:0.16228049872665679\tto:0.09482768306529227\ta:0.0928484856516463\ton:0.06829392660003043\tin:0.05535223912765194\tthat:0.05463209768295961\twas:0.04634130830304773\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"of:0.29427840420111334\tand:0.19037350337791353\tin:0.11041665492830458\tto:0.0953233373283196\tat:0.07052500963088408\tthat:0.06631245887492296\twith:0.05553709306732293\ton:0.055516148861375486\tfor:0.0517173897298435\t:0.01\n",
"the:0.36715389486329825\ta:0.22460418130383325\tand:0.11416831703140226\tof:0.0796557630913216\tThe:0.06996438284003619\tan:0.05210502329932918\tMr.:0.028948914080672735\tto:0.027297453447863527\tas:0.026102070042243117\t:0.01\n",
"of:0.2947816448856356\tand:0.12077975314964738\tin:0.11972900992439928\tto:0.11177996770677866\ton:0.08837148109666025\tthat:0.07191167799060616\tfor:0.07003551989762355\tat:0.06508226108411524\tfrom:0.04752868426453382\t:0.01\n",
"Lode:0.2037900833653692\tSilver:0.19503946440285624\tthe:0.13540570808329994\tHill:0.12633038508304612\tand:0.1242849244316623\tEureka:0.05378076978789949\tCopper:0.052695001373097586\t<s>:0.04972754254863102\tConsolidated:0.048946120924138165\t:0.01\n",
"of:0.40160425868992866\tto:0.12940907486784572\tand:0.11721245436230143\tthat:0.09996236437385167\tas:0.05934313569671025\tin:0.055953132801812654\tall:0.046285493078963375\tfor:0.041108072947504876\tby:0.03912201318108143\t:0.01\n",
"the:0.4505268490143757\tThe:0.12382932207234319\tthis:0.1065375699431913\ta:0.08809605124955457\tThis:0.07190644659005399\tthat:0.04804464540390547\this:0.043366855263634096\tand:0.03075719565188296\tof:0.026935064811058805\t:0.01\n",
"went:0.19991699894079915\tall:0.1392756309062932\tgo:0.12589226480828672\tturned:0.11588874239844676\twas:0.10155804675837407\tcame:0.09101673353526499\tcome:0.08477744309718706\tand:0.07577402761511733\tgoing:0.055900111940230715\t:0.01\n",
"about:0.21440291010565773\tand:0.18945399737070745\tor:0.1365130257965145\tto:0.1132398605230725\tat:0.10885212900567139\tof:0.07636697067773368\tthan:0.0669177184758039\tthe:0.04459017209438302\tfor:0.03966321595045583\t:0.01\n",
"interest:0.5907043265660901\tterest:0.1081721627725627\tInterest:0.10181777450281501\timprovements:0.0948387979622587\tit:0.025013640545234094\tand:0.022721810366120036\tdue:0.021528165172107705\tthem:0.01412895718638543\tis:0.011074364926426241\t:0.01\n",
"and:0.29116711795804945\tis:0.12469124485907976\tof:0.1089427915391583\twas:0.10583177372684865\tas:0.09535784369342871\tbe:0.09159230336863274\tare:0.0778106749909694\tor:0.05015296003744344\twere:0.04445328982638952\t:0.01\n",
"the:0.23344748130381154\tand:0.17210789865171341\tto:0.158230742789393\tof:0.12877797232842478\ta:0.11898645914507014\tin:0.062013854627394394\tat:0.04132155046118328\tor:0.040853512442438504\tis:0.034260528250570965\t:0.01\n",
"to:0.2781501673776037\tcan:0.12288803604774143\tcould:0.1138658011324216\twill:0.11333771452498027\tI:0.08631427755128544\twould:0.08227564498583295\tthey:0.07371524695440178\twe:0.06664766556103376\tand:0.05280544586469905\t:0.01\n",
"ten:0.15930487185285927\t10:0.14541430797534555\t50:0.1363965197067913\tfifty:0.13138648452723573\t20:0.1042818573247517\tthree:0.08217797916488719\tfive:0.08128407590711607\t25:0.07571109758089106\t5:0.07404280596012217\t:0.01\n",
"W:0.14910773017956414\tM:0.12276990578542449\tJ:0.12075148222724486\tC:0.11156552709985228\tS:0.10363588713123016\tE:0.10247688778446311\tA:0.09710894198133282\tH:0.09413683549342977\tB:0.08844680231745826\t:0.01\n",
"of:0.23263405770696685\tat:0.15112258939896792\tin:0.13071599623158883\tto:0.10950454781810545\tfor:0.101239446110944\ton:0.10013154685253053\tand:0.07507416717033927\tfrom:0.04755879529717124\tIn:0.042018853413385876\t:0.01\n",
"part:0.2616051257347694\tone:0.17241232749815008\tside:0.16360342569786457\tportion:0.08433966332604263\tpayment:0.06971510808453478\tparts:0.06227259080338477\tmembers:0.059937409742747624\tthat:0.05968262067665106\tand:0.056431728435855075\t:0.01\n",
"the:0.31222252380020193\tand:0.1922979967817035\ta:0.15297568833488714\tThe:0.07678939828477897\tone:0.06742085876830409\ttwo:0.05654997731917386\tbe:0.04533070588963481\tthat:0.04508871115389862\tthis:0.04132413966741713\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"seems:0.20061032224562486\tought:0.1626558226948623\tseemed:0.11415043407775209\tseem:0.11350109702171879\tand:0.09261260981894813\tis:0.08389850523345983\tsaid:0.08225642808909558\tsupposed:0.07131107961557845\tnot:0.06900370120295983\t:0.01\n",
"and:0.23117365540512338\tthe:0.2280543382278351\tof:0.1478684087356096\ta:0.09057998236261681\twas:0.06845767528770509\tin:0.06568274004476997\tto:0.0615611745907188\tis:0.05235743490164658\tbe:0.044264590443974815\t:0.01\n",
"purpose:0.18290206844241896\tinstead:0.17809435609342683\tout:0.1538567610502881\tsum:0.09616524194807972\tis:0.0946898715734833\tquestion:0.07270410560399737\tare:0.07250961517754782\tamount:0.07203209910319572\tdisposed:0.06704588100756216\t:0.01\n",
"a:0.21203539588932938\tof:0.20273634930723997\tor:0.11062939063911777\tand:0.09091202161650652\tin:0.09013456617347358\tthe:0.07553796626981299\tany:0.07145478732652497\tfor:0.07094948267458664\tby:0.06561004010340808\t:0.01\n",
"that:0.252642048246336\tand:0.1778771772190445\twhich:0.13410784903447365\tto:0.10552419222448858\twhen:0.0984815426264279\tas:0.0816972402697138\twill:0.05888602708846721\tbut:0.04072168024332621\tif:0.040062243047722\t:0.01\n",
"know:0.2397647968656112\tof:0.16285760555461512\tand:0.12629778616492704\tto:0.10395816150459335\tsee:0.09003617630358085\tdo:0.08877429164822438\tis:0.06141778713790321\tmatter:0.061380777358478064\tfor:0.055512617462066864\t:0.01\n",
"<s>:0.5323931200162186\tit.:0.11018390482601273\t.:0.08144299270952146\ttime.:0.05016526239221659\thim.:0.050117008558639396\tthem.:0.04892401124597546\tcountry.:0.04395827133099151\tyear.:0.03665303146153076\tday.:0.036162397458893346\t:0.01\n",
"the:0.5422329948031501\ta:0.13700134661686608\tand:0.07915192256133127\tof:0.06531146519235878\tThe:0.04711151237075322\tor:0.03664031733476878\ttho:0.032272186261714804\ttheir:0.02655770799241742\this:0.023720546866639575\t:0.01\n",
"of:0.3057759901600336\tthank:0.2616504744726356\tto:0.1275046644733598\tand:0.06941342403641217\tThank:0.05171254325461181\tAlmighty:0.04800110538703915\tfor:0.04780857493989792\twith:0.044377985839575286\tthat:0.03375523743643456\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.42910467850079\tto:0.11694084642140463\tthat:0.09550998098478819\tand:0.08115582928505193\twith:0.06790549012358102\tby:0.0659098273260134\tin:0.04996672060817148\tas:0.04504904210208554\tfor:0.03845758464811389\t:0.01\n",
"he:0.22480229380192837\tit:0.17485728277577847\tthey:0.12397626271710332\tI:0.10874733808034656\tthat:0.0944115016573233\tIt:0.0934061924792438\twe:0.05704965258936926\twhich:0.05692367062721336\tand:0.055825805271693715\t:0.01\n",
"to:0.2992770412624508\twill:0.22358185789002527\tmay:0.10773011468181522\tcan:0.07798152413512123\tshall:0.07444335231231784\tshould:0.07350153058539124\twould:0.04801697192096535\tmust:0.04793997642554108\tcould:0.03752763078637196\t:0.01\n",
"the:0.6768627974896106\tin:0.06291856457056888\tThe:0.0585098913099327\tand:0.049060590157670114\ta:0.04250614034914327\ttho:0.03756680159007044\tgreat:0.021563916433142066\tIn:0.021135527735493306\tof:0.019875770364368734\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"is:0.20531716177253911\tof:0.1548571616806375\twas:0.14749203504570196\tand:0.13792749623615277\tin:0.10120155365734503\tas:0.07174518036482276\tto:0.06110690582472406\tby:0.05557954502909937\tany:0.054772960388977374\t:0.01\n",
"the:0.33250719272423573\tof:0.15669558815530527\ttheir:0.1263070134657518\tour:0.08334007842782926\this:0.0789097427581228\tother:0.07393811121642563\tits:0.050453324905634866\tall:0.048438215556899644\tAmerican:0.03941073278979517\t:0.01\n",
"of:0.36271625229249144\ton:0.1477762621256609\tin:0.1049950723330936\tto:0.09590546738412442\tby:0.08547657152088199\tand:0.07162450506560371\tthat:0.04334562425684729\tfrom:0.040054966221159394\tfor:0.03810527880013725\t:0.01\n",
"of:0.2879095906736429\tby:0.15147283143704135\tto:0.13226073003663077\tthat:0.1285469390652348\tand:0.12636804441264757\twith:0.05074601143565901\t<s>:0.04360499343411609\twhich:0.037163493311764606\tas:0.03192736619326302\t:0.01\n",
"he:0.24719856121055875\tand:0.22596642096727165\tbe:0.18043712108469986\tI:0.06763838984712327\twho:0.059568563783939585\twas:0.0574050823270858\thave:0.05597562453216027\tHe:0.04917787814708192\tis:0.04663235810007885\t:0.01\n",
"and:0.3359723945695816\tfact:0.1316189254902583\tsaid:0.10667449643560811\tso:0.08713045707286649\tis:0.07379644658727269\tsay:0.0657800671011853\twas:0.06486039920086528\thim:0.06351804887687972\tfound:0.06064876466548251\t:0.01\n",
"be:0.2849878177734486\twas:0.16376970522261863\tbeen:0.139630523095664\tis:0.08137535428611144\tand:0.0778977821742777\thave:0.07402961052937597\thas:0.0635515075652333\twere:0.052963840615662\thad:0.05179385873760839\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"to:0.2512498341081137\tthe:0.20774063373853358\tan:0.12707537333556373\tof:0.1069193848888348\ta:0.08890702376417497\tin:0.07304419790113843\tand:0.07260988274253319\twith:0.03354250634172504\tnot:0.028911163179382443\t:0.01\n",
"and:0.19828130361329427\tas:0.16167001911362971\torder:0.12838003305491688\tnecessary:0.1156896451296532\tright:0.09125643904208529\tis:0.07914562994113429\table:0.0757743461357711\tpower:0.07142568609181339\thim:0.0683768978777019\t:0.01\n",
"<s>:0.31345759865139594\tit.:0.1892532436862689\tthem.:0.09223545836743488\thim.:0.0910400757089321\t?:0.08764720621449311\t.:0.07958514196739587\tme.:0.05756971655091861\ther.:0.03973797730124201\tyou.:0.03947358155191865\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.33287846452402836\ta:0.30001728107195713\tthis:0.08810612702178716\tThe:0.06278575814637037\tand:0.054034566602970284\this:0.047661725598976655\tone:0.04668513545776391\tevery:0.029026077674899512\ttho:0.028804863901246768\t:0.01\n",
"and:0.21582520555697648\tmade:0.214536899439926\tup:0.09803578163061594\tdone:0.0962632766187468\tout:0.082230695368401\tcaused:0.0775822747522032\tor:0.07321594564414954\tit:0.06760504051608549\ttaken:0.06470488047289556\t:0.01\n",
"of:0.21838797575570154\tthe:0.1764958999718014\ta:0.148759846654091\tto:0.12615447465296736\tand:0.10084460306115489\tin:0.08195425316673363\tat:0.04989567614174829\tfor:0.04657604012914679\tby:0.04093123046665515\t:0.01\n",
"them.:0.27514958012342783\t<s>:0.2222514830175073\tit.:0.13910165523665471\tmen.:0.07376108718434343\thim.:0.07191919462122999\ttime.:0.057778753413971484\tcountry.:0.05375983421240472\tpeople.:0.04831609422015593\tday.:0.047962317970304535\t:0.01\n",
"not:0.27165351613371524\tto:0.25387435580143547\tI:0.17131508817521834\tdon't:0.073723341318433\tyou:0.06668533152739857\tand:0.051332788879850856\twe:0.04136737813927094\tWe:0.033742179876494346\tYou:0.026306020148183434\t:0.01\n",
"the:0.5461620972172785\ta:0.1843898061472342\tbrick:0.05462017209407854\this:0.04691978514460796\tframe:0.03680502876428873\tThe:0.036049896865917065\ttho:0.03419839082966134\tand:0.027160853178749993\ttheir:0.023693969758183758\t:0.01\n",
"and:0.24428898768597\tyears:0.13326866598301404\tfree:0.11224566031641812\tmiles:0.0892068862623156\thim:0.08709309114977147\ttaken:0.08637906415696271\tof:0.08202568009718235\taway:0.07998169865168518\tthem:0.07551026569668047\t:0.01\n",
"as:0.23061381526678573\tso:0.15852530170502627\tare:0.1242325010071385\tis:0.10807778502254059\tvery:0.08588972279447575\tbe:0.0714980580428274\tand:0.07125699082365847\tof:0.07075605044119214\twas:0.06914977489635515\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"the:0.30908806204995304\tand:0.2021199752140314\tof:0.13486912198728426\ta:0.08156652884358065\tto:0.06872515330429758\tthat:0.049147080372366585\tThe:0.04881586833161894\tMr.:0.04812337385799479\tor:0.04754483603887259\t:0.01\n",
"and:0.28120375981593765\tbill:0.19265358774268582\tPresident:0.0828459890673966\tknown:0.0826018960006399\twas:0.08002417100261604\tresolution:0.07319588784922872\tis:0.07075165837341905\tof:0.06546454969156505\tnot:0.06125850045651121\t:0.01\n",
"out:0.15061324814149515\tamount:0.14037523430557688\tpurpose:0.11515068212881414\tnumber:0.11452490315736613\tone:0.10308737030665857\tmeans:0.09968348434168547\tmatter:0.0968840813389499\tyears:0.09105673508103557\tway:0.07862426119841827\t:0.01\n",
"the:0.5343885214523834\tThe:0.11192511746240348\tthis:0.09766965217928932\ta:0.06421440630193793\tthat:0.06383905538795155\ttho:0.03611613032332447\tof:0.033924731568181855\this:0.026689943324278088\tand:0.02123244200024977\t:0.01\n",
"the:0.3661510278115807\tof:0.18604011314490668\tand:0.1109152575647309\tin:0.09556882822052379\ta:0.07472429387547162\tThe:0.04949365505368283\tto:0.04579469490461243\tat:0.03277907132192454\ttho:0.028533058102566386\t:0.01\n",
"<s>:0.5911664716768236\t.:0.09254162861311349\tit.:0.07581705834204039\tthem.:0.05818195815929814\tday.:0.037726686386629994\thim.:0.034790603659583\ttime.:0.03473040556580825\tof:0.0340401802064035\tcountry.:0.03100500739029967\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.8863726773530108\ttho:0.04767429894468294\tThe:0.02037911013063574\ttbe:0.014848854384155502\tof:0.010704508851547225\tand:0.0029070840653533446\tby:0.0026907681676473397\ta:0.0026265092802739095\ttlie:0.0017961888226931213\t:0.01\n",
"and:0.20574901464648052\tbe:0.1782627871071889\twas:0.1377230897430883\tto:0.08832819096533921\tbeen:0.08618103965957719\tis:0.0810041601548845\tof:0.0796758931950268\the:0.07002166678811851\twere:0.06305415774029603\t:0.01\n",
"feet:0.21959778359237705\twent:0.1718218569574151\taccording:0.1271328412512035\tgo:0.10324709531960384\tand:0.09690431191880237\tsent:0.07196762290527006\tsubject:0.06704859689201847\trelating:0.06685884328000286\tback:0.06542104788330678\t:0.01\n",
"and:0.24324582888378196\tthe:0.1385113941096484\tof:0.12598359052043423\tto:0.11712117345795753\twas:0.09128462150356687\tfor:0.0720983562371112\tin:0.07175195145176773\ta:0.06672163572922717\tis:0.06328144810650484\t:0.01\n",
"the:0.2644739053163246\ta:0.2522557778891288\tThe:0.13832675624623256\tand:0.1270370395895451\the:0.05649105501499377\tthat:0.05115664723860371\tI:0.039583790160760086\tA:0.03464186224940538\tlittle:0.026033166295006092\t:0.01\n",
"and:0.2433965671591451\thim:0.1591857612555844\twas:0.15546468801479868\tis:0.08403713707126538\tit:0.08119311744346455\tup:0.0765112129798562\tas:0.06975526414728683\tcome:0.06105440877997866\tplaced:0.05940184314862022\t:0.01\n",
"would:0.15442914376698164\tand:0.14168467513298827\ta:0.13350973032411653\twas:0.12299992576973758\tnot:0.09749386756535243\tsomething:0.09441086586069228\tto:0.09257702422377684\tis:0.08900408687539607\tlooked:0.06389068048095844\t:0.01\n",
"the:0.2757533507337096\tof:0.2091089729440173\tand:0.13153684155828668\tto:0.09358304438585405\ta:0.081146021672498\tbe:0.06265229726697669\tin:0.04877686700606273\twas:0.045169969758803476\tis:0.04227263467379149\t:0.01\n",
"the:0.49008759458264567\tthis:0.08872430676872341\tevery:0.07362007382279014\tthat:0.07110460668351594\tnext:0.06553868705175456\tother:0.05389769724925966\ta:0.05225802273133187\tone:0.05047787782173091\tall:0.04429113328824782\t:0.01\n",
"and:0.29976317250318063\tfor:0.11762014969641486\tof:0.10909083458797497\tnot:0.09994261400957209\tabout:0.09981071867952002\ttime:0.07049569260427092\tas:0.06561263650320782\twas:0.06407523833209523\tin:0.06358894308376357\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"that:0.31477914547653374\tand:0.20075168692270082\tbut:0.1078760036867674\tas:0.09014379652450287\twhen:0.0823790812736193\twhich:0.08073958256682875\tif:0.04767380552388467\twhere:0.03845583820312528\tuntil:0.027201059822037178\t:0.01\n",
"the:0.2447609397811796\tand:0.20200444718786137\tof:0.1986975994846867\ta:0.0909893927345677\tto:0.06145431689100224\tin:0.05632114762281005\twas:0.0538703414808706\tthat:0.042194053180521746\tby:0.03970776163650004\t:0.01\n",
"of:0.29571310815330076\tto:0.16134431248745904\ton:0.10365585392281453\tand:0.09379325289278308\tfor:0.08372949555213699\tin:0.06788885987559362\tby:0.06495718587385457\tat:0.06020931335696609\tthat:0.0587086178850913\t:0.01\n",
"-:0.25134583111708886\tand:0.15589943064566297\tto:0.14789117603391255\tI:0.08999456443107923\tf:0.07551422879808235\t<s>:0.07480276735679822\t.:0.07222994257573002\tthe:0.06261379310970659\tf.:0.05970826593193924\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"of:0.22980118444730693\tand:0.22693873938118042\tto:0.18343447929216947\tfor:0.0804423747324406\tthat:0.07132088794940028\tin:0.06761276248258313\twith:0.04576668374594334\tor:0.043159076617589116\tnearly:0.04152381135138665\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.3661033215516148\tin:0.15226722649351418\tthe:0.1292548233019136\tand:0.12787554077324395\tfrom:0.09260293830664065\tfor:0.034139300814934784\tor:0.030080313037460147\tIn:0.02933024025669054\tby:0.028346295463987335\t:0.01\n",
"that:0.30371066784491974\tif:0.1528592157661182\twhich:0.13093290885882847\tas:0.1067643537300592\tand:0.09146677604370172\twhen:0.06012942554608973\twhere:0.057718502696278005\twhat:0.047491073256094876\tbut:0.03892707625791013\t:0.01\n",
"<s>:0.2613088549649225\tand:0.15580981423434095\twas:0.12353456311453885\tbe:0.12011264833573745\tis:0.07434522515091425\tare:0.07263628290767327\tthat:0.06650679362055881\twere:0.0627739386615939\t.:0.05297187900972013\t:0.01\n",
"of:0.28768034382228136\tin:0.18122734920518865\tthat:0.12344716691703687\tto:0.07446492834042218\tunder:0.07124158816500614\tany:0.07113046011996975\tand:0.06211198641638576\tfor:0.06028084362685405\twith:0.05841533338685521\t:0.01\n",
"the:0.46743960586215993\tsaid:0.25902485690697763\ta:0.062234094872626024\tof:0.05894410305517061\tthis:0.04173797499910366\this:0.03882269035759103\ttho:0.027121099224896812\tin:0.018178630098256248\ttheir:0.016496944623218074\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"and:0.2799490607850435\tto:0.13536145426027976\twas:0.12532311977518976\tis:0.11647623700449218\tthe:0.0955408097677598\tnot:0.06275589560373088\tbe:0.06115216251063991\tof:0.05681845625814637\tan:0.056622804034717866\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.3128127214263046\tmade:0.1905990268468962\tthat:0.10357879789052055\tor:0.09051445745057835\tit:0.07070940136880872\tfollowed:0.060829952250544786\tdone:0.05856854563713341\tcaused:0.05119705814262677\tgiven:0.05119003898658672\t:0.01\n",
"the:0.3853062731803413\tof:0.26851085639706035\tand:0.12172038244582212\tan:0.04153798870435629\tother:0.03884216903352835\tor:0.03782545596815829\this:0.03650157694018281\tthis:0.030130004719243163\tone:0.02962529261130733\t:0.01\n",
"to:0.3795211082901946\twill:0.22813591070009004\tand:0.07407512922843669\tshall:0.06720206575966287\twould:0.05676695798690712\tthey:0.055606093448851\tnot:0.04416617013122117\tmay:0.04248479424601594\tshould:0.04204177020862071\t:0.01\n",
"number:0.3091317030967422\thundreds:0.10855346930098947\tamount:0.10683042086046839\tthousands:0.10656691544426491\tkind:0.07747549316354946\tclass:0.07462368935965676\tcouple:0.07411187986607165\tseries:0.06707273205706363\tplenty:0.06563369685119341\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.47730124653411293\tof:0.14637164403838163\ta:0.13402815856165165\tin:0.05275474210148018\tfor:0.0525790508573663\ttheir:0.036980183194370714\tsome:0.03261764881817374\tthis:0.029083179292690754\this:0.028284146601772288\t:0.01\n",
"<s>:0.5359515666430382\tit.:0.12050481997505645\tthem.:0.09946406045368157\tcountry.:0.04303754649527292\ttime.:0.04223756053515764\thim.:0.038485454865163096\tus.:0.03832367945957663\tworld.:0.03658649889964677\tday.:0.03540881267340669\t:0.01\n",
"be:0.23454051890189517\tand:0.1676955911536511\twas:0.14578585294472096\tis:0.11136358349180822\tbeen:0.08044474608740007\tare:0.07063395726020118\twere:0.06757492996930883\the:0.06497274172000982\thave:0.046988078471004634\t:0.01\n",
"the:0.6189860714686293\tcourt:0.10609282030723602\ta:0.0811061224426676\ttho:0.04548732012152771\tThe:0.03587128991625342\tmy:0.034457396206893316\this:0.027299421716290302\tthis:0.020673433489368325\topera:0.020026124331134036\t:0.01\n",
"they:0.2751949705560759\twho:0.13687574294120822\twe:0.10795658789329475\tand:0.10148995877582903\twhich:0.10032550830058978\tThey:0.09536625522992093\tthere:0.0638730429063453\tthat:0.058384316599535045\tyou:0.05053361679720104\t:0.01\n",
"Mr.:0.23912125449713859\tthe:0.23705660495456388\tof:0.1415327706790359\tand:0.12992053668767986\tThe:0.07124486107907668\tMrs.:0.05082361753551818\t<s>:0.045531107981747955\t.:0.03955863766768128\tthat:0.035210608917557576\t:0.01\n",
"one:0.21303943994489263\tout:0.1698340805609801\tpart:0.1472687798153334\tsome:0.10564771493692295\taccount:0.1047360670487683\tany:0.0723917686949588\tall:0.06334962810761698\tthat:0.06091520523433158\ttion:0.052817315656195345\t:0.01\n",
"the:0.4038888879022517\ta:0.2023547081363746\tto:0.125383930662554\tof:0.0571764238612245\tevery:0.04819440225894617\tthis:0.04400082948887444\this:0.04317015924478561\ttheir:0.039113598107239515\ttho:0.0267170603377496\t:0.01\n",
"and:0.19663565717511108\the:0.1590604629751269\tbe:0.13889038343981763\twas:0.09977118342110917\thas:0.09044065856844664\thave:0.0799595607034155\thad:0.07759116643716985\twho:0.07706681423755467\tI:0.07058411304224854\t:0.01\n",
"the:0.27004892961346216\t1st:0.15109863150680777\tfirst:0.12513779671039005\ta:0.10378703560438178\t25th:0.08044042951759475\t7th:0.06850863141428767\t10th:0.0652308917143553\t12th:0.06469097803790061\t21st:0.06105667588081993\t:0.01\n",
"in:0.3003157086259072\tof:0.22129030242522593\tfrom:0.16746925589096087\twith:0.06126148460572061\tIn:0.060549961696606834\tby:0.05094237284046594\ton:0.04822152188466671\tupon:0.040068523460947865\tfor:0.03988086856949816\t:0.01\n",
"the:0.46582213401798644\tof:0.11813564524698672\tin:0.11020948254759118\ta:0.10064028122380038\ttheir:0.044251050839546086\tto:0.03958621383641684\tand:0.03835151812051628\tany:0.03834925526132691\tIn:0.03465441890582906\t:0.01\n",
"the:0.4841379428532901\ta:0.17642480431468033\tthis:0.10047183440007879\tdining:0.09816400206178331\tThe:0.028586567844761195\this:0.027059205287243093\tcourt:0.02694902099131079\ttho:0.025791753533663447\tand:0.022414868713188832\t:0.01\n",
"the:0.6770184269171864\tof:0.08221178394185444\tother:0.04801151431183628\tthis:0.04008252814359068\ta:0.03373720145075685\tThe:0.03226977211178734\ttho:0.031945108872370336\tsaid:0.025438803825775808\tour:0.019284860424841732\t:0.01\n",
"in:0.14081922777303538\tup:0.13874891581862403\tmade:0.11438803758118404\t;:0.10805266909721242\tit:0.10786373964605228\tit,:0.10716033417897484\thim:0.10013324207554894\tout:0.0947820901973747\twork:0.07805174363199326\t:0.01\n",
"as:0.17570771504429286\tand:0.14691264794322195\tis:0.12976908359000947\tenough:0.09574300393056602\table:0.09384229814825551\tright:0.09185656418392346\torder:0.0864135167953892\tgoing:0.0852788000007006\thim:0.08447637036364089\t:0.01\n",
"of:0.2616976228646263\tin:0.15724106356757453\tto:0.14017010901911817\tand:0.09964683080692453\tat:0.099349460785964\ton:0.09764136297699581\twith:0.04736378285680711\tfrom:0.046898920653475715\tfor:0.039990846468513995\t:0.01\n",
"to:0.20824004866035978\tthe:0.2040097545902015\tand:0.19980432728505823\tof:0.15978957334487476\tin:0.06337877849958568\ta:0.05463758289552893\tnot:0.03746152227349155\tI:0.031804518390908185\tbe:0.030873894059991417\t:0.01\n",
"and:0.22597815624741485\tone:0.17456606454071236\tit:0.1164630046428801\tthat:0.11137613281567905\t<s>:0.10062115029033251\tout:0.090674534897487\tday:0.06148663065325185\twork:0.0552186661235739\ttime:0.05361565978866845\t:0.01\n",
"of:0.24054612664030398\tthe:0.23134729317373148\ta:0.12307836210816837\tin:0.10200644051443102\tand:0.08358327811089314\tfor:0.06284983155258313\tto:0.05941456848440095\ton:0.04897108979144876\tas:0.03820300962403916\t:0.01\n",
"the:0.30152048770274475\this:0.13893045119827885\thealthy:0.09476919224243413\tthis:0.09211837708584614\ta:0.08429806198471271\ther:0.07974273356816743\tgood:0.07846486135418046\tmy:0.06707825580612903\ttheir:0.05307757905750671\t:0.01\n",
"the:0.41960400851900864\tof:0.15747386278790595\tfor:0.1467290096711253\tand:0.0777294088461848\tin:0.06903788063487801\tby:0.035950202297450516\tfrom:0.0328934672334286\tto:0.02964678078321371\tat:0.02093537922680463\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"beginning,:0.3644462202323462\tand:0.1366403463969216\twest,:0.11212876689908088\tning,:0.0753701312051083\tginning,:0.06877614759837276\tlot:0.06734749449273872\tbeginning;:0.06721444198740888\tone:0.052460158432591185\tsection:0.04561629275543146\t:0.01\n",
"of:0.2961378364416716\tin:0.196340957644997\tthe:0.12252948082367253\tto:0.08693925818903896\tfrom:0.06951187292445549\tand:0.06550253851847376\tIn:0.054013526715922563\tfor:0.05179931626505328\tat:0.0472252124767149\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"and:0.4753630914642694\tAnd:0.16908229988174533\tnot:0.12181233288152349\tas:0.09084502398258333\tthat:0.03638346719579383\tbut:0.027684844771815605\tis:0.027663079905897274\tdo:0.020661093844602546\tit:0.020504766071769247\t:0.01\n",
"and:0.1390807564514581\table:0.1172699921339807\tinclined:0.11264383740129874\tbegan:0.11257028316868084\treason:0.11186394006528023\tenough:0.10371048650475503\thim:0.10279962615609585\tme:0.09955985379255257\tas:0.09050122432589786\t:0.01\n",
"the:0.2594205302439901\tof:0.18654111504155335\tand:0.14980457588960347\ta:0.14300445659557265\tto:0.11266998464881188\tin:0.045066931684193054\tfor:0.033288995496607535\twith:0.0325152961874752\tThe:0.027688114212192614\t:0.01\n",
"of:0.28059495498551096\tin:0.23042676682598112\tto:0.14325868795753752\tand:0.09284208615396106\tby:0.0717157089108626\tfrom:0.06568617558142205\tIn:0.06454452850648082\tat:0.020825099090386587\tfor:0.020105991987857393\t:0.01\n",
"it:0.20622348714107272\tthat:0.16057455996523642\tthere:0.14151153360535962\twhich:0.11963266539685385\tthey:0.10506951759105808\tIt:0.08276968157081656\the:0.06915141905166503\tand:0.0620236112565421\tThere:0.04304352442139564\t:0.01\n",
"the:0.4669302625652774\this:0.14971417949244145\ta:0.09688904568483585\tof:0.09077132678288212\ttheir:0.05240475428279838\ther:0.04132760525122925\tand:0.040269526739356444\tour:0.026420365930983507\tmy:0.025272933270195596\t:0.01\n",
"to:0.22154552107591224\tof:0.19360580187253087\tin:0.15188290223553114\ton:0.14491741763150148\tat:0.0796976930492374\tfor:0.06224328980900977\tfrom:0.050641913904358786\twith:0.04828790688251882\tand:0.03717755353939949\t:0.01\n",
"three:0.19279697731532905\ttwo:0.16467916308965086\tmany:0.13785310916254612\tfour:0.11005783504033953\tfive:0.10177810510635743\tseveral:0.07569980042604027\tfew:0.07568938861103443\tten:0.07107366265411402\tsix:0.06037195859458832\t:0.01\n",
"and:0.2197990913161108\tis:0.14400557876463402\tas:0.10990698663355274\ttime:0.10202671916292028\tthem:0.0973472004956855\thim:0.09482600801483522\table:0.08197968099286954\tright:0.0707741101772166\twas:0.06933462444217536\t:0.01\n",
"and:0.24413116292889298\tclosing:0.18173686344826198\twas:0.10859381659603785\tvalued:0.08665763038641584\theld:0.07932710425709101\tsold:0.07518688429361538\t2:0.07335995221601971\tis:0.07241280837793868\tarrived:0.06859377749572665\t:0.01\n",
"he:0.25804153726188217\tit:0.11645350547970212\twhich:0.11494095259334056\twho:0.10016493861859872\tthat:0.09505879060940096\tand:0.09020174911822765\tHe:0.08658782201620924\tIt:0.07978162569655856\tshe:0.04876907860608006\t:0.01\n",
"all:0.2052072376362731\tand:0.1656793780544644\tof:0.1381456356324633\tfor:0.11622597132013011\twas:0.11177474517936757\tat:0.07291753114374436\tit:0.06332698793736738\twent:0.06101312218261672\tis:0.05570939091357279\t:0.01\n",
"and:0.19784363851704323\tthe:0.18276704782244832\tto:0.14500827149026402\tof:0.12945615612789987\tin:0.09818664300029176\tor:0.07959240523144688\tfor:0.05705759260499335\tthat:0.05427595194482773\tcon-:0.04581229326078481\t:0.01\n",
"it:0.2785062729759501\tIt:0.20141476549610265\the:0.13744314665694493\tI:0.09219424675928593\tand:0.08935763302433071\twhich:0.0644125401890308\tHe:0.051063613787848766\tshe:0.045915339445330834\tthere:0.029692441665175286\t:0.01\n",
"and:0.2705179520333999\the:0.17781324535012288\tI:0.13106289081721967\twhich:0.09587282308995021\tHe:0.08427501884118471\tthat:0.06663701734323696\twho:0.0621913277646562\tthey:0.055469516797737636\tshe:0.04616020796249195\t:0.01\n",
"of:0.3150567606571244\tfor:0.14198206426555585\tin:0.13030704690462364\twith:0.09056470374389108\tto:0.08702466807146246\tand:0.07551331974455422\tat:0.053637686125381764\tall:0.049336664727556025\tby:0.04657708575985059\t:0.01\n",
"and:0.2872855932588996\tis:0.13028010380855143\tare:0.11054302141998959\tthat:0.11043108689342071\t<s>:0.07899774008845051\twas:0.07845754025910608\tof:0.07135483338811019\tor:0.06470552774243195\tIs:0.05794455314103982\t:0.01\n",
"and:0.33670550057808174\tof:0.26024131515442933\tis:0.06586432030345328\tso:0.064870234426403\tare:0.06461919220269709\tthat:0.05435846048137375\tfor:0.05150615769412267\twas:0.047572604714332174\tin:0.04426221444510705\t:0.01\n",
"he:0.24690779282578104\twho:0.1549933905459218\tI:0.13230341733765144\tthey:0.10007106586891547\tand:0.08935552743836536\twhich:0.0854594990456329\tthat:0.08069740997367807\tshe:0.05143526587197059\tit:0.04877663109208337\t:0.01\n",
"the:0.5581495681161999\ta:0.13920673957599977\tto:0.07531796461344047\tof:0.07410402713355416\tThe:0.043961187360467696\tand:0.03146434554517054\ttho:0.024942075426574846\tits:0.02246543176322003\tno:0.02038866046537273\t:0.01\n",
"of:0.20107488417226116\tin:0.1955067057583691\tto:0.127361692104422\tand:0.11990727085676901\tthe:0.1045210483007398\ta:0.09033202467013654\tIn:0.0520174454591061\twith:0.051878318268166704\tfor:0.04740061041002951\t:0.01\n",
"and:0.19228401073364065\tthe:0.1313298526858574\tor:0.1306311199332915\tof:0.12354888965716775\tin:0.09078030986414558\tabout:0.08859208648564271\tfor:0.08247831140363643\twith:0.07561706832829147\tare:0.07473835090832669\t:0.01\n",
"the:0.3376881731769783\ta:0.2304929568176765\tand:0.10377232537822301\tmost:0.07245686973857796\tbe:0.05806473712285158\tis:0.05752114733357367\tare:0.05455492987697932\tof:0.039208304603131565\tan:0.03624055595200813\t:0.01\n",
"of:0.2947816448856356\tand:0.12077975314964738\tin:0.11972900992439928\tto:0.11177996770677866\ton:0.08837148109666025\tthat:0.07191167799060616\tfor:0.07003551989762355\tat:0.06508226108411524\tfrom:0.04752868426453382\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"and:0.14687097063519727\twas:0.13144016153503102\tbe:0.1298179898420686\tof:0.126909027809208\tto:0.12400741317345794\tthe:0.12208409535462889\ta:0.08691788614863778\tbeen:0.06163426610110866\twere:0.06031818940066173\t:0.01\n",
"and:0.2165381807466691\tthe:0.18724203922351226\tof:0.14904754853675403\tto:0.11548725602063734\tbe:0.07888300539379994\twas:0.07500647985195938\tin:0.06698318540006265\tis:0.055634215838476345\tare:0.04517808898812875\t:0.01\n",
"and:0.26276554424049875\twell:0.17165735638285678\tregarded:0.10215108442096366\thim:0.08688236618817878\tknown:0.08594969760882573\tsoon:0.07468266047506815\tit:0.07254659441566477\tis:0.06743217334715047\tbut:0.06593252292079285\t:0.01\n",
"men:0.22190510562162422\tcity:0.15947862646083896\thundred:0.10902804997747162\tWilliam:0.09595112931661434\tJames:0.09533316606871434\tMayor:0.08504890097049622\tRobert:0.07743686913537777\tland:0.07385896376951134\tstreet:0.07195918867935111\t:0.01\n",
"in:0.33028972151448366\tof:0.19543775312740447\tIn:0.11191210748799375\tfor:0.08225665968267411\tto:0.06692099718183327\tand:0.06391144187588398\tfrom:0.05189946606090556\twith:0.04695782759469488\ton:0.04041402547412629\t:0.01\n",
"in:0.3384046224709802\tof:0.25488543611751086\tthat:0.11765585266810746\tby:0.07024243908853048\tand:0.06555247812144435\tIn:0.050690465532179735\tfrom:0.03296785496955466\tto:0.030947238208389263\tfor:0.02865361282330304\t:0.01\n",
"United:0.8210352873053699\tthe:0.05193240601161514\tother:0.03166476599096427\tSouthern:0.022310179292304493\tper:0.016669771300172193\tthis:0.013235139122835929\ta:0.012963405179057665\tof:0.01228750272514043\tand:0.00790154307253983\t:0.01\n",
"the:0.7415188984257353\tThe:0.07137370005054189\ttho:0.040316991948868224\tand:0.030647586935438266\tof:0.026363994990554782\tother:0.02157769072979183\tall:0.021011283338122355\ta:0.020370155139201505\ttbe:0.01681969844174597\t:0.01\n",
"the:0.42554143142955875\tof:0.2577977205916756\tfor:0.05615398096999852\ta:0.053210268130685606\tThe:0.045125520275926354\tany:0.04480077717637477\tand:0.04154104857248507\tby:0.03606314187654978\tevery:0.029766110976745544\t:0.01\n",
"of:0.3064548128410847\tin:0.13451021958574313\tthat:0.13128206868390754\tto:0.1215605249810727\tand:0.08000629054803014\tfor:0.06198795378243899\twith:0.05951700167116916\tby:0.04790608925107299\tat:0.0467750386554807\t:0.01\n",
"the:0.5631640663811452\tThe:0.139518375248108\tof:0.08121619885629584\tthis:0.054255470718658\tfederal:0.038332516246623594\tthat:0.030759120944151484\tour:0.029421214498232894\tgeneral:0.027689958637903758\ttho:0.02564307846888113\t:0.01\n",
"the:0.568426019541185\tan:0.14944716454307577\tthis:0.0784472160128626\tThe:0.06797442052530622\ttho:0.041468360538009015\ta:0.023209467797078116\tother:0.021579028475761052\tThis:0.020560361800532848\ttbe:0.0188879607661894\t:0.01\n",
"him:0.22511585349940635\t;:0.1342553032180852\tman:0.11574635372301251\thim,:0.0950718889975085\tup:0.09324255187190897\tand:0.09098934403345373\thimself:0.0835495239653671\tin:0.08043645717718255\tman,:0.07159272351407525\t:0.01\n",
"the:0.7057212104862842\tThe:0.07664644842588077\ta:0.055873992144735526\trapid:0.041805059036380814\ttho:0.0398900893798924\tgreat:0.022893421097266147\tand:0.020121244650809656\tof:0.013746453695272392\ttbe:0.013302081083478181\t:0.01\n",
"a:0.5665464804332416\tof:0.169451292084179\tin:0.08027467306873483\tthe:0.05563886155870365\twith:0.03163081955150117\tvery:0.026642228415813537\tfor:0.024919761893286527\tno:0.019922694059749703\tIn:0.014973188934789959\t:0.01\n",
"to:0.2217463971622426\tand:0.19225798005313668\tthe:0.1471929736654893\tof:0.13936763631664392\twas:0.0700426155661776\tin:0.05699809170812658\tbe:0.05643252036394439\tis:0.05594569383473537\ta:0.050016091329503416\t:0.01\n",
"of:0.3053201260176513\tin:0.15502082667269165\tto:0.11061818913111031\tand:0.11005072871403838\tfor:0.07858318538356222\ton:0.07122161957957238\twith:0.06800385353867228\tfrom:0.048128583295157686\tat:0.043052887667543706\t:0.01\n",
"the:0.37152690722546\ta:0.16067729015132767\tand:0.14675088427856234\tof:0.07724323665711878\tThe:0.05477457886971272\tin:0.05300380563761825\twith:0.051554822453152876\tto:0.04436625587688854\tis:0.030102218850158707\t:0.01\n",
"the:0.7549208027183822\tand:0.06359700639886885\ttho:0.04988074477289363\ta:0.04028239003289291\tThe:0.03703872223266112\ttbe:0.014894298990189566\tan:0.01051498187173781\tthat:0.009668489090085526\tin:0.009202563892288343\t:0.01\n",
"and:0.424262740400577\tthat:0.21105928904320093\tbut:0.1167074728200193\tBut:0.054839101489017175\tday:0.050907205711045275\ttime:0.05024178815036634\tcome:0.030763782863498474\tago,:0.02771168213340699\tAnd:0.023506937388868564\t:0.01\n",
"out:0.20484184856702875\tthat:0.12506863279874877\tname:0.11139414049963874\tpeople:0.10713282517056189\tfavor:0.09149850587936387\ttime:0.08978360858091117\tand:0.08866766464000633\tcase:0.08771994010626805\ttion:0.08389283375747252\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.6518644195884169\tamong:0.07523679949031054\tfor:0.06698582107718151\tto:0.04766601983186333\twith:0.04597859110254206\tby:0.04333923567778216\tAmong:0.021945938712084997\tupon:0.019760277507308042\tin:0.017222897012510504\t:0.01\n",
"<s>:0.49087146734058307\tit.:0.10171612779035905\tthem.:0.08533630682868089\ttime.:0.06666658130492208\t.:0.050650860594710925\tcountry.:0.0505285527077632\thim.:0.050439534074252224\tday.:0.04956736115227381\tyear.:0.044223208206454756\t:0.01\n",
"the:0.3575873425570205\tthis:0.1208707969977656\this:0.11591844649120511\tin:0.07881837141020238\tof:0.07420791059121049\tthat:0.06722002403597777\tsame:0.06558088018037041\tmy:0.05651659715160705\ttheir:0.053279630584640636\t:0.01\n",
"and:0.26276554424049875\twell:0.17165735638285678\tregarded:0.10215108442096366\thim:0.08688236618817878\tknown:0.08594969760882573\tsoon:0.07468266047506815\tit:0.07254659441566477\tis:0.06743217334715047\tbut:0.06593252292079285\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"of:0.2111073510533655\tand:0.2027864104566796\tin:0.1579395119428971\tto:0.11515431977061771\tthe:0.07094383169745808\tfor:0.06282730478898163\tat:0.05959652104083471\tstreet:0.05783646837335892\tor:0.05180828087580652\t:0.01\n",
"of:0.29964286037637883\tto:0.1973461481650174\tin:0.11367634842915555\ton:0.0987250376586758\tand:0.08128524018819365\tat:0.054057352912635345\tfrom:0.049735223235936425\twith:0.048754264637581896\tby:0.046777524396425185\t:0.01\n",
"on:0.506524092053167\tOn:0.16089344459627272\tnext:0.06982864016697483\tfirst:0.05527591117960176\tof:0.050105395784163446\tlast:0.045013078002376215\tand:0.04439937930840699\tuntil:0.03138623968624189\tafter:0.026573819222795184\t:0.01\n",
"the:0.7162356429148993\tThe:0.0729563281724872\ta:0.05719866385898185\ttho:0.043529483921228046\tand:0.04162777847619565\this:0.020411283050697136\ttbe:0.014207466374072695\tin:0.012036037686214926\tgreat:0.011797315545223145\t:0.01\n",
"the:0.26692919700509743\tof:0.17016801151255767\tand:0.1430756669073715\tthat:0.08567233779178111\ta:0.07140473673112661\tto:0.06686547652312638\tThe:0.06591693537233992\twhich:0.06108829450685444\tin:0.05887934364974505\t:0.01\n",
"the:0.7094443771499301\tof:0.047541992992444645\ttho:0.04729723752600465\tthis:0.040456396751398775\tan:0.036222794245305105\tand:0.03499057927177151\ta:0.02574572922942972\tthat:0.025487401863031285\tin:0.022813490970684035\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.3013673442186535\tin:0.2256059859180911\tto:0.13825846817005008\tby:0.07653120446551107\tand:0.0552690853685818\tthat:0.05456542266561978\twith:0.053188993290789015\tunder:0.04275851937319165\tfor:0.04245497652951206\t:0.01\n",
"the:0.26821139754720336\tof:0.2321116092164102\tand:0.11288330434358389\tto:0.0839949453403755\ton:0.06633191961513757\ta:0.06474748845750614\tin:0.0646107811417762\tby:0.06185648873522322\tfrom:0.03525206560278403\t:0.01\n",
"of:0.321530920750835\tto:0.14636352071318032\tin:0.12020528648288607\twith:0.08515544760817309\tby:0.08505441320243934\tand:0.06822706649198651\tfor:0.059154451340600406\tthat:0.05791059525000761\tfrom:0.04639829815989168\t:0.01\n",
"the:0.49071181013339044\tof:0.09917142227616707\ta:0.09063038226324949\tThe:0.07279693358379771\tand:0.06260663546232871\ttheir:0.06105850829128822\tthese:0.04089188814292679\tother:0.03808416488156045\tsuch:0.03404825496529114\t:0.01\n",
"of:0.21411416347999995\tin:0.18647533155173596\tto:0.1571447907557927\tand:0.09785684396971212\tas:0.08489726601416413\twith:0.0701969234032176\tfor:0.06756193300320393\tis:0.060009674700360574\tby:0.051743073121813005\t:0.01\n",
"the:0.5914295936594018\ta:0.1833420961877774\tThe:0.0641742254597642\ttho:0.048584098114795436\ttbe:0.025635234192037358\tan:0.025247243123658204\tthis:0.02026449583944286\tany:0.016455839984361054\tevery:0.014867173438761603\t:0.01\n",
";:0.166410416870824\tit,:0.14067740649544613\tyears,:0.13016694302705759\there:0.09487690594470952\tthem,:0.09378174610294242\thim:0.09260168877066724\tit:0.09104309653116786\ttime,:0.09065192185789876\t<s>:0.08978987439928655\t:0.01\n",
"a:0.29459157634302763\tsaid:0.19749915414356226\tby:0.18578639526570034\tthe:0.1529819938006253\tcertain:0.07475452484656477\tin:0.027082724148591565\tand:0.022034744630031057\tof:0.021519440331039166\tfirst:0.013749446490857945\t:0.01\n",
"No.:0.32530556107980824\tand:0.18394250833647072\tat:0.10645165966321307\tas:0.08624725062986703\tthat:0.0792027005845914\t<s>:0.055216575176132585\tan:0.054480072748208874\tto:0.05305403293549411\tabout:0.0460996388462138\t:0.01\n",
"the:0.479297469074927\tof:0.183261116074085\ta:0.12176801382651574\this:0.05001698621037921\tand:0.03639113505255365\tThe:0.03249319387397701\ttext:0.030933958834820904\ton:0.0284861094864104\tsaid:0.027352017566331214\t:0.01\n",
"and:0.32745107267362\tdo:0.18773941909960107\twas:0.10311454738647158\tAnd:0.08496158551250992\tis:0.08096017701334905\tnot:0.05975866024961793\tbe:0.05480392069115407\tor:0.047342721012412756\tbut:0.04386789636126359\t:0.01\n",
"they:0.2226293496907488\tthere:0.19100560444436882\tThere:0.12146331199472163\twe:0.10627940553074859\twho:0.09196498255020337\twhich:0.08093235504077412\tthat:0.0634012538829739\tThey:0.05947029151878236\tand:0.05285344534667851\t:0.01\n",
"and:0.29215264426448745\twas:0.1460354725977545\tis:0.11436710339533344\tdo:0.11312222476873186\tor:0.09142103944770523\tnot:0.07731038256170697\tbe:0.05918875390546549\tare:0.05485211715080089\twere:0.04155026190801416\t:0.01\n",
"I:0.411832692374785\twe:0.2411150913205089\tWe:0.07001021100705587\tto:0.06406421634019337\twill:0.05202224065111495\tyou:0.04381434758636353\tthey:0.04265033116214864\tcan:0.032856515636878685\tnot:0.03163435392095097\t:0.01\n",
"of:0.34071689275770173\tin:0.162244170328643\tto:0.13602454263306102\tand:0.0982946260080865\tthat:0.07028386805482817\tfor:0.053388328170773734\twith:0.05328033383571257\tfrom:0.042272547350020125\tby:0.033494690861172946\t:0.01\n",
"a:0.41226519124232336\tthe:0.3056100948610437\this:0.11280249870586781\ttheir:0.037601636595987864\tThe:0.03498094462139956\tof:0.028756253403325875\tmy:0.023225959542307332\ttho:0.018748975747835715\tits:0.016008445279908804\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.28124851442277427\tby:0.180854350517991\tthat:0.15342322813145062\tand:0.12560963837085168\tto:0.0851214630742222\t<s>:0.06174871370393691\tsaid:0.03757167016804163\twhich:0.03427219090742636\twith:0.03015023070330532\t:0.01\n",
"sum:0.39844219523734536\trate:0.19102718714147895\tnumber:0.10107406831849884\tone:0.07030403102755706\tperiod:0.06589496185945465\tdepth:0.054691593902975094\thundreds:0.03671475044040234\tamount:0.036487210743690934\tpayment:0.03536400132859675\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"to:0.18807728249103833\tand:0.1515828472138269\tof:0.12732347270100863\tthe:0.11989910358734432\tbe:0.09156640694129753\twas:0.0914947437144206\tfor:0.0796694851503024\tis:0.0750544461508341\tI:0.06533221204992716\t:0.01\n",
"of:0.3713469509544565\tto:0.1514708017555304\tthat:0.10527984797247181\tin:0.08678755123882\tand:0.06990737924797069\tby:0.06375572719248994\ton:0.055288338966648115\tfor:0.04561655489153375\tfrom:0.04054684778007883\t:0.01\n",
"as:0.2503395413523125\tand:0.12846489575016073\tup:0.10870416592958963\taccording:0.10281356858919301\tcome:0.10184768512104386\tcame:0.09155280243263224\tregard:0.07971471354938511\tgiven:0.06387518649061748\tit:0.06268744078506551\t:0.01\n",
"it:0.43347313998051884\tIt:0.21074485232205384\tthere:0.07298484346345296\the:0.06149203904707085\tthat:0.05764614221423334\twhich:0.053972028181908036\tand:0.043207789586334006\twho:0.034576768583026656\tHe:0.021902396621401424\t:0.01\n",
"the:0.22421702424882406\tto:0.20168663080796442\tand:0.172876766991225\ta:0.12563426816930676\tI:0.0638959805680891\twill:0.05814356836551889\t1:0.053873587926483134\tThe:0.04562196369694029\tthat:0.044050209225648305\t:0.01\n",
"of:0.3311218871503176\tto:0.1564545346777244\ton:0.1217131430053328\tand:0.080292374777924\tthat:0.07444739103807398\tat:0.05983759550894024\tin:0.0585803128778996\tfrom:0.05477694988243368\tby:0.05277581108135368\t:0.01\n",
"and:0.30691768841380734\tto:0.2747214705260884\the:0.09147576289552703\twho:0.0729294380761556\tI:0.06006637984563058\twill:0.04998309545694458\tbe:0.045457189175457796\tnot:0.04460289589245125\tthey:0.04384607971793737\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.3330780306095659\ta:0.17652479588184378\this:0.16814996203988847\tof:0.09796946140624414\tmy:0.06276378778866089\tsaid:0.04390984793035817\ther:0.03729615798546441\tto:0.03548854945535291\tin:0.03481940690262127\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.46512986269624595\tof:0.20137203535293408\tThe:0.08913732041017779\tand:0.05425610546129666\tthat:0.04812595062190358\tby:0.04577219867108797\tto:0.03704887620947483\tat:0.024624264167202117\tfor:0.02453338640967705\t:0.01\n",
"to:0.36667853889223306\twill:0.16469197263486063\tmay:0.10213546745188039\twould:0.08070490333150067\tcan:0.0686782914258341\tshould:0.06539141353700821\tnot:0.049514092292828084\tcould:0.04758234607309525\tshall:0.04462297436075962\t:0.01\n",
"to:0.3382095320489563\tand:0.21216579017137732\tthe:0.10137482389519036\tof:0.07701780818657018\thad:0.05933134710609208\tin:0.0555665182363792\twill:0.0537614766164228\the:0.047704205353917895\tnot:0.0448684983850936\t:0.01\n",
"and:0.18929310138123437\tcovered:0.16935884120870554\tfilled:0.14496098815620134\ttogether:0.1149389467597416\tcharged:0.08927804784918368\tit:0.07994316895661391\tup:0.07366667277508843\thim:0.06832445206581947\tthem:0.06023578084741164\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.22042126890701255\tof:0.20408318417113178\tthe:0.18452980186415882\ta:0.08750555355894948\tto:0.07065734084190221\tis:0.05873176727113704\twas:0.05726416189082198\tbe:0.05368261462279395\tin:0.053124306872092075\t:0.01\n",
"of:0.15862241364981214\tand:0.15751333905624854\tto:0.15637447451180367\tthe:0.14620390380107715\tin:0.129532116122774\ta:0.0677699611842351\twas:0.06062990956871154\tis:0.06058567911506544\tfor:0.0527682029902725\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"that:0.2376520708806692\tand:0.15164463986944382\tto:0.13666909515574896\twhich:0.10948628312431528\twill:0.09129694954360515\tas:0.0810667111359323\twould:0.06737271352788328\tmay:0.05776309551919013\tshould:0.05704844124321188\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"of:0.24059244853094627\tthe:0.19754824402226043\tand:0.18620911162898604\tto:0.0940624459293436\tin:0.07839068317494356\tsaid:0.056659278367284675\tbe:0.04793254180743412\tfor:0.04582273039147496\twas:0.04278251614732634\t:0.01\n",
"a:0.47603451673343294\tthe:0.3445984379323249\tThe:0.06497185602960437\tA:0.02976880712442993\tthis:0.026527571906620244\tappropriation:0.01460275836486053\ttho:0.014526762829882491\ttariff:0.011418314041628538\tany:0.007550975037215941\t:0.01\n",
"the:0.33601536274839616\tof:0.16958902826991312\tMr.:0.10573912457216135\tThe:0.10541590539910746\tand:0.08531333366099246\tthat:0.07291914405203645\ta:0.05455260066519831\tthis:0.03190090597915657\tin:0.028554594653037953\t:0.01\n",
"the:0.3365966658243967\tand:0.2050154410439561\tan:0.17235823722784885\tThe:0.0722925069178166\tmost:0.049800421042600546\tof:0.04680642770935598\tas:0.04180621822645146\tvery:0.03271660160966339\ttheir:0.03260748039791042\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"and:0.47213562521669233\tthat:0.09552920356980568\tinterest:0.06633862067005994\trecorded:0.06581405347603823\tit:0.06375319088470738\tor:0.05782577173616122\tout:0.05638037521876733\tmade:0.056338027536220095\ttime:0.05588513169154786\t:0.01\n",
"be:0.23777448438562834\tand:0.2327708723621889\the:0.09795705709236378\twas:0.09569718703722503\tare:0.08661618244063929\tis:0.06968028903862589\tnot:0.05915657588391208\thave:0.05774283593511534\thad:0.05260451582430131\t:0.01\n",
"be:0.20041205542997403\tand:0.19192143477940646\twas:0.1504793564183267\tis:0.10973087489465469\tas:0.09292349854651334\tare:0.09139114493499768\tbeen:0.07526429608737537\twere:0.048633188706139134\tthe:0.02924415020261252\t:0.01\n",
"a:0.32074622139833636\tthe:0.25135267255546684\tto:0.18333594615060214\tand:0.06562279063843385\tThe:0.06509600212251858\tA:0.031347900898184504\tannual:0.030977355495680006\twill:0.023643081811975247\tthis:0.01787802892880237\t:0.01\n",
"an:0.29734711372000266\tthe:0.20970566545962255\tof:0.15795840446901827\tand:0.1324058376338581\tfor:0.044512857303391835\tsuch:0.03993063696053186\ta:0.03877420397824059\ttwo:0.0371973692088642\ttheir:0.03216791126646992\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
".:0.1693614511198382\t-:0.12313394165127724\tand:0.11904540782536616\tin:0.1148715293539567\tof:0.11128802790537222\tfrom:0.10328317285499174\tpre-:0.086879270842067\tde-:0.08118706016701102\tlots:0.0809501382801197\t:0.01\n",
"Mrs.:0.240337688506856\t.:0.2311062065514034\tMr.:0.13844615762874063\tMiss:0.07946885595310749\tW.:0.06888513245583279\tJ.:0.06882609839082171\tNo.:0.05880096456443666\tE:0.05376838040971031\tJohn:0.050360515539091\t:0.01\n",
"and:0.3001656816032403\tthat:0.12299120516127927\tlook:0.10934118211629928\tdepend:0.10273980746253973\teffect:0.07901041552719541\tit:0.07546251114244452\tcalled:0.06879594237836699\tone:0.06575310023665823\tdepends:0.06574015437197628\t:0.01\n",
"the:0.40313068482336106\ta:0.32514982627354916\tthis:0.05201555027898132\tof:0.05010604022470407\tThe:0.04242790244166413\tand:0.0318174076878464\tto:0.030417021410474386\tat:0.030313078859614383\ttho:0.024622487999805057\t:0.01\n",
"of:0.3361148749520111\tfor:0.19210725473668658\tin:0.10818094247355718\tto:0.08159078494581756\tby:0.06873892298104065\tand:0.05632892212882571\tthat:0.05319050008505763\twith:0.05147989018552864\tIn:0.04226790751147483\t:0.01\n",
"the:0.36051072052476685\tof:0.17281304215434465\tand:0.1139811815403608\ta:0.08979779750195722\tto:0.07563618370616314\tbe:0.05662951240474314\this:0.042135587239983785\twas:0.04190956329290082\tin:0.036586411634779596\t:0.01\n",
"he:0.1857106668923095\tand:0.16676591246660755\tI:0.1341331230343699\tit:0.11377491236401949\tthey:0.08736727002712691\tthat:0.08594340343874561\twhich:0.08154139504180334\twho:0.07203626067406566\twe:0.06272705606095212\t:0.01\n",
"was:0.23600170019866618\tis:0.23412256680353316\tare:0.11545702214165551\tbe:0.09183092668178115\tand:0.07830921407445679\tbeen:0.076153444492915\twere:0.07025704863497513\tthe:0.04735912065861075\tvery:0.0405089563134064\t:0.01\n",
"to:0.4608529062456118\tand:0.1165299586479271\tbe:0.09434616593501975\tthe:0.08492949338161156\tnot:0.06247169331270574\twill:0.054533991831303655\twas:0.05234849939910112\ta:0.03269122522570335\tbeen:0.031296066021015936\t:0.01\n",
"of:0.28585326530148736\tto:0.1348257034074615\tand:0.1303573513695322\tin:0.12079378938377175\tfor:0.09785161584784226\tthat:0.06817765478204975\twith:0.06121400735728227\tby:0.04885327774234176\tfrom:0.04207333480823131\t:0.01\n",
"and:0.5630281288305425\tbut:0.10302092752128048\tthat:0.08125331156393312\ttime:0.06129767969981134\twas:0.05250297352297701\tit:0.035400040176521305\tday:0.03461454254811031\tBut:0.0305442404610193\thim:0.028338155675804437\t:0.01\n",
"was:0.25368218131402853\tand:0.2218625336524965\tbe:0.10069714171800459\twere:0.08968383041608659\tare:0.08466949998887617\tis:0.08264160557064389\thim:0.05751391696433493\tit:0.050152834341272504\tthem:0.04909645603425613\t:0.01\n",
"of:0.4609069158437067\tin:0.09908654752073852\tfor:0.08514609752775171\tto:0.08327262414943463\tand:0.07923412556309488\tthat:0.07281514634220612\tby:0.047534580375105315\tas:0.03182967740107223\twith:0.030174285276890072\t:0.01\n",
"is:0.17584928940821604\tand:0.1437438535346068\tas:0.12438223965353472\torder:0.1048234351280323\tenough:0.0985645665450189\thave:0.09607742412944775\tright:0.08371014603419488\tnot:0.08357053442996634\thad:0.07927851113698225\t:0.01\n",
"be:0.4680313598481093\twas:0.11963664141733155\tbeen:0.09886277056318876\tis:0.08963763801479635\tand:0.05218674652229353\tare:0.0459617438388731\twere:0.04254909381680699\the:0.03710854599185753\thave:0.036025459986743016\t:0.01\n",
"a:0.3582157510093197\tthe:0.2586427042356898\tno:0.17877262463608132\tthis:0.08390129525367031\teasy:0.026979567663135806\tany:0.02456936649282437\this:0.02195453087702666\tThe:0.02090941955300996\tevery:0.016054740279242037\t:0.01\n",
"the:0.2715969304368774\tand:0.1708797043470871\tof:0.16050658211856705\ta:0.10294521031332218\tin:0.09172950058765036\tto:0.06745564032066945\tfor:0.055558084187928285\tIn:0.03616940127240592\tthat:0.033158946415492274\t:0.01\n",
"of:0.3543014123710041\tin:0.17000256417152437\tfor:0.11325356514142942\tto:0.10889191627224201\tat:0.05597098025601542\tis:0.05348528452533378\tand:0.04912243497738307\tfrom:0.0428330605439979\twith:0.042138781741069734\t:0.01\n",
"of:0.3728798589710132\tin:0.10679255801003197\tfor:0.10548830657680139\tand:0.09808468579533683\tthat:0.08977383915781684\tto:0.08053331733226725\ton:0.05522920803004978\twith:0.049628025459149766\tby:0.03159020066753299\t:0.01\n",
"of:0.21562148913240275\twas:0.16341970512045761\tand:0.1288276608281716\tare:0.11418573478946278\tis:0.10619178627104271\twere:0.084693943036442\tfor:0.06286157464713574\tin:0.058373258989052844\tall:0.055824847185831895\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
";:0.24189029576339335\tit,:0.14447455886319682\thim,:0.13078560541511702\tthem,:0.09615167478019503\tit:0.08115502745303596\thim:0.07882403108585184\tin:0.07795527625761661\ttime,:0.06946212330919997\tStates,:0.06930140707239349\t:0.01\n",
"to:0.30697129920102373\ta:0.24485556382943735\tthe:0.16492492576741216\tand:0.09880362291316575\tof:0.04506126520915889\twill:0.043036987695544406\this:0.028957233266756064\tnot:0.028866978048613517\tor:0.028522124068888235\t:0.01\n",
"of:0.2385278850815901\tthe:0.16802364293714533\tand:0.12948864632017906\tto:0.12756909556412252\tin:0.08455289842744297\ta:0.07072259306338716\tbe:0.06299644397177792\tfor:0.06094683413443188\tis:0.04717196049992302\t:0.01\n",
"of:0.22210004503670158\tthe:0.215004548183898\ta:0.1636896905732623\tand:0.13635181660588036\tto:0.10325468372960224\tor:0.040798351499284916\tin:0.039867367890940045\tat:0.035588074655142875\tfor:0.03334542182528761\t:0.01\n",
"of:0.18880213152044256\tbe:0.15952634421614736\twas:0.1448436456572958\tand:0.12188592596947893\tis:0.11522722466958864\tas:0.07186882862224966\tto:0.06784985882723787\tin:0.06762663294412088\tbeen:0.05236940757343838\t:0.01\n",
"to:0.788456168898409\tnot:0.05480100401443986\tand:0.043054232597067074\twill:0.023978293897347007\twould:0.020684549596096318\tmay:0.01694283341535962\tof:0.016653128207060646\tshall:0.013006400876492158\tcan:0.012423388497728265\t:0.01\n",
"and:0.23269702242011067\tmade:0.22981759683133623\tor:0.11115481161761777\tthat:0.07236086063876271\thim:0.07054273789002967\tfollowed:0.07041660789627405\towned:0.07020071888558449\ted:0.06697266320322266\taccompanied:0.0658369806170616\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"I:0.18929863357942384\tyou:0.18108444203793936\twe:0.17220944510444866\the:0.13741726989333503\tthey:0.1189478738961865\tWe:0.0608338369467268\tYou:0.046615493091903625\tit:0.046175875157790376\tshe:0.037417130292245734\t:0.01\n",
"this:0.5347727499290231\tthe:0.0913024659533519\tto:0.0695412233773667\this:0.06677669691809522\tin:0.05630158863090623\ta:0.05190303390233848\tmy:0.043915767072520075\tgood:0.03889720627474205\tthat:0.03658926794165627\t:0.01\n",
"is:0.34292632942557216\twas:0.11793252288422891\thave:0.11026298811053771\tbe:0.1082860354118234\tand:0.08695989161149832\thad:0.08271305474595515\twill:0.052189383848504634\thas:0.044463831832014335\tIs:0.0442659621298654\t:0.01\n",
"to:0.33374178194784143\twill:0.25057634785895\tshall:0.1115458164177688\tshould:0.06726724657547434\tmay:0.05762681793275022\tcan:0.04891924077201312\twould:0.045310390271447135\tnot:0.03767469818076324\tmust:0.03733766004299166\t:0.01\n",
"it:0.18679305196147591\the:0.16876783716295488\twhich:0.14326776303978445\tand:0.13233713303363692\tIt:0.12485685047701775\tthat:0.09411031057835115\twho:0.07572467526344327\tHe:0.034950062063988006\tas:0.029192316419347636\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"it:0.3082060212048176\tthat:0.25450170073784895\tIt:0.14048942886279406\twhich:0.09295052193456221\tand:0.059347388845515395\the:0.04786233082169846\tThere:0.031995916383998194\tthere:0.027716269030763366\tThat:0.026930422178001658\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.32529871746742123\tand:0.14912372841316746\ta:0.14027165602407993\tof:0.11217120035068996\tto:0.08552326351301597\tin:0.057930174340973487\tfor:0.05237941980174096\tThe:0.03409502491110042\this:0.03320681517781065\t:0.01\n",
"to:0.4578279007081993\ta:0.1619483875631491\twill:0.09758166500396734\tthe:0.08646443354262638\tnot:0.05117953158224914\twould:0.046002311847599946\tand:0.034341192708430654\tshall:0.02754035224458743\this:0.027114224799190758\t:0.01\n",
"and:0.3338967645844843\twas:0.12033738840254274\tis:0.09593434813429898\tBeginning:0.08318566721134907\tlook:0.08299409277174184\tbe:0.07424891739439102\tit:0.07028023932803563\tare:0.06640065738748735\tthat:0.06272192478566906\t:0.01\n",
"of:0.2569859210910987\tand:0.22466833566588232\ton:0.1034942908146389\tin:0.07800366875150576\tis:0.07243591934962598\tare:0.06888718439648403\tto:0.06409222627708074\twas:0.06166781805959301\tan:0.059764635594090454\t:0.01\n",
"the:0.6669487995185507\ta:0.08093680959932316\tThe:0.05158523426379452\ttho:0.04820417593943872\tand:0.0475240541877656\tgreat:0.029542942421192476\ttbe:0.02282330117239367\tin:0.02198132969741298\tthis:0.020453353200128196\t:0.01\n",
"and:0.30639892174136835\tthe:0.201328607960422\ta:0.10590145685930408\tthat:0.07728658596259633\tof:0.07256561656862083\tto:0.06625169406545321\tman:0.06198327032368994\ttime:0.05679892857441254\tmen:0.04148491794413284\t:0.01\n",
"and:0.19583342605332962\tthat:0.1838994050203063\tas:0.12119181844284553\tof:0.12112615315282578\tto:0.08831964160181255\tmake:0.08098984926957423\twhich:0.07701187457248801\tbut:0.06372021473945984\tif:0.05790761714735823\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"a:0.6396664128024238\tthe:0.13076291653564698\tA:0.05226972477784275\tof:0.039482587066783745\tThe:0.03743788916942398\tno:0.03158426011958628\tand:0.026274585328231483\this:0.018526445758892573\tas:0.013995178441168373\t:0.01\n",
"a:0.5765616261484376\tthe:0.13322779110835514\tand:0.06475787291124381\tof:0.0464194042902133\tmost:0.04632223857386956\tA:0.03472864728920151\tvery:0.03295687119338822\tan:0.03089902681981033\tone:0.02412652166548056\t:0.01\n",
"of:0.2976157319078441\tin:0.14911745837380977\ton:0.14804127792147423\tto:0.14639099932020178\tand:0.06611044620172796\tthat:0.054043752700906264\twith:0.050066580843258955\tfrom:0.03985613826210003\tfor:0.03875761446867703\t:0.01\n",
"the:0.19836175636655523\tand:0.1674130352389857\tof:0.16070716605411697\tto:0.14121474152525526\ta:0.12385002738842145\tin:0.07400006600096737\tat:0.051765895272262975\tor:0.041681126885312204\tthat:0.031006185268122963\t:0.01\n",
"and:0.18929310138123437\tcovered:0.16935884120870554\tfilled:0.14496098815620134\ttogether:0.1149389467597416\tcharged:0.08927804784918368\tit:0.07994316895661391\tup:0.07366667277508843\thim:0.06832445206581947\tthem:0.06023578084741164\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"the:0.5336041412528113\tan:0.1373884164206292\tof:0.08457536599027618\this:0.08033215778090935\tin:0.038213984912790544\tthis:0.03767370732242048\tThe:0.02669966529283964\ttho:0.026262108632563452\tgood:0.02525045239475982\t:0.01\n",
"well:0.18763885440258532\tknown:0.1848432953380303\tsuch:0.1312109444336379\tand:0.11650300559404793\tfar:0.10672026401295964\tsoon:0.07431929105806052\tis:0.06769501413550778\tjust:0.06709023500275701\twas:0.053979096022413534\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.6033536273118829\tto:0.0861984608677465\tThe:0.05844124409803903\tand:0.04807396439227473\tan:0.04708616680107924\ta:0.04515991093655969\tno:0.03755970019158131\this:0.03436651565686119\ttho:0.029760409743975366\t:0.01\n",
"the:0.3852091685420713\tof:0.15029792416713433\tand:0.13361736839571411\ta:0.11891032624485717\tin:0.05055226342026037\tto:0.042450229405257604\tfor:0.03799538051249681\tor:0.03633593244546821\tthat:0.034631406866740044\t:0.01\n",
"as:0.16965826325559194\tis:0.14818404283656805\tand:0.12370882301475286\tin:0.12067544892233732\twas:0.09955790788094804\tof:0.09227919201671768\tbe:0.0917758190955384\tto:0.07493973968889546\tthe:0.0692207632886501\t:0.01\n",
"the:0.24098097828128448\tany:0.2343452658720527\ta:0.17657890274372337\tAny:0.10440565063184389\tevery:0.07809463044335109\tno:0.04864308723907966\tother:0.03860270995766924\tsome:0.03531423212995606\tThe:0.033034542701039456\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"It:0.23127912378197046\tthere:0.21240176058284072\tit:0.19501212350781538\tThere:0.10713821937054821\tThis:0.06595333365099705\twhich:0.04771265982771375\the:0.04597925216904934\tthat:0.04565003547638064\tthis:0.038873491632684394\t:0.01\n",
"the:0.2975076155854317\tof:0.18095708603830288\tand:0.16143558651189846\tto:0.08106366127438577\tin:0.07679923815828021\ta:0.06949398083985753\this:0.052943516492411746\twas:0.03531346474292608\tIn:0.03448585035650551\t:0.01\n",
"six:0.33905415523933563\tthree:0.1564880324192537\ttwo:0.11940733535829025\tfour:0.08554906959177852\ttwelve:0.06550989383399558\teighteen:0.06426640412740776\tfew:0.06079806300728536\tseveral:0.05674305764930497\teight:0.04218398877334834\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.5527271289635453\ta:0.20300711620664957\tThe:0.06412612671151673\tof:0.06285482464797436\ttho:0.02795973778492496\tA:0.020766997712155073\tour:0.020593245436077687\tin:0.01925512685605444\tgreat:0.018709695681101875\t:0.01\n",
"of:0.35026545511731527\tto:0.15234591290004176\tin:0.10319985591373623\tand:0.09531871382987539\tthat:0.08167055777904976\tby:0.06529500002452972\tfor:0.0618889688905497\twith:0.047514251808197336\tas:0.032501283736704696\t:0.01\n",
"amount:0.18451834698770145\tpayment:0.12752257453928736\tout:0.11773798217753961\tvalue:0.11619392664193294\tpart:0.11477524831687132\tproof:0.10470183198149745\tall:0.08274505676876123\ttion:0.07631394920116809\tproceeds:0.06549108338524051\t:0.01\n",
"in:0.2034549622624766\t;:0.17695854283381698\tUnder:0.17163420516011313\tgiven,:0.09453327128477794\thim,:0.07130837865540356\tthem,:0.06915994318530762\t,:0.06891324276114523\tup:0.0672863474814554\tthereof,:0.06675110637550359\t:0.01\n",
"the:0.6347492558876329\tan:0.15710610441607537\tThe:0.05795568801687374\ttho:0.03997087237693077\ta:0.02839860543577918\tthis:0.021578354189370357\ttbe:0.021097944195476313\tgeneral:0.01569050751548107\tsaid:0.013452667966380278\t:0.01\n",
".:0.2020695564329838\tMr.:0.17418034381683256\tW.:0.12883202090091847\tE.:0.11412012358102737\tNo.:0.08566901686849104\tMrs.:0.0820820769185215\tC.:0.07351024019634197\tJ.:0.06836457579081946\tH.:0.061172045494063694\t:0.01\n",
"the:0.6435060471113394\ta:0.0987075306384018\tof:0.06387753741145191\tThe:0.06334318196111483\ttho:0.04513961085184882\tand:0.026998609317255066\ttbe:0.01786939796381922\tto:0.015999719382074916\tin:0.014558365362694076\t:0.01\n",
"of:0.3420422053370365\tto:0.1388434664336376\tin:0.13786264416522526\tand:0.08027954924229379\twith:0.07123181302638898\tfor:0.06369579859368074\ton:0.06135083543937238\tby:0.04859824571313037\tfrom:0.04609544204923423\t:0.01\n",
"the:0.3158707750996543\tMr.:0.1547710223261566\ta:0.11798136622636758\tand:0.10900965656765252\tof:0.0911691763265817\tThe:0.06986701955179865\twas:0.052955386358330254\tis:0.03974878602813905\tto:0.038626811515319326\t:0.01\n",
"to:0.6029234748158575\tnot:0.10685677045378247\twill:0.0805053125791318\twould:0.07348435472152394\tand:0.058714604224932194\tmay:0.01928356596757802\tmust:0.017761258017253204\tI:0.01655037912139117\twe:0.013920280098549686\t:0.01\n",
"the:0.8324016039459744\tThe:0.03187988907783874\ttho:0.025588773809154475\ttheir:0.022543128218297157\tour:0.018089732749315995\tof:0.016677722746434913\this:0.015946426822304717\tand:0.014896887191593957\tits:0.011975835439085508\t:0.01\n",
"in:0.20281717445107106\tmen:0.14646012796596722\thundred:0.12379687775898\ttime:0.10083811146623368\tlaw:0.09005641453989949\tlarge:0.0859346949491736\tone:0.08273998301468373\tdue:0.07868251104220818\tand:0.07867410481178291\t:0.01\n",
"they:0.20124633534100814\twe:0.1666659540166681\tyou:0.15042255995523593\tI:0.10630417606470047\the:0.09662443763235766\tthat:0.07705456427798456\tand:0.07626434214614046\twhich:0.05795032685883628\twho:0.057467303707068505\t:0.01\n",
"the:0.20297176158172933\tand:0.16705750159562585\tof:0.1544601086497806\ta:0.1243991756124099\tto:0.10003975780361755\twas:0.07873778199592486\tbe:0.06650673834653327\tis:0.04849649966466754\tbeen:0.047330674749711164\t:0.01\n",
"and:0.24980766035303945\tthe:0.15812205616062136\tof:0.15096372228139082\twas:0.1130879978943032\tis:0.08626553811482889\tan:0.0697526296841939\tin:0.06951094226348353\tor:0.04859320112978296\tfrom:0.0438962521183559\t:0.01\n",
"set:0.25319223556465337\tsetting:0.2059550433094475\tput:0.20273274219286608\tbrought:0.10243738304654383\tsets:0.06949290530693014\tand:0.060189531586777596\tbring:0.03788366469387497\tto:0.031404769800379394\tcame:0.0267117244985272\t:0.01\n",
"no:0.16383426669996745\tthe:0.16096678700436487\ta:0.13348490154014106\tand:0.11690715638858676\tof:0.10686004421265388\tor:0.10555936219923015\tany:0.07396600306776151\tmuch:0.06897306676301218\tfor:0.05944841212428217\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"a:0.44873641295271416\tone:0.12092158695872617\tthe:0.1149135147122032\tin:0.06124765768674701\tcertain:0.05987130393704278\tthis:0.051782887523732675\tof:0.047585571650248265\tany:0.04755624231829039\tA:0.037384822260295346\t:0.01\n",
"are:0.17809276837375526\tbe:0.1699424251026179\tis:0.15855649674932645\twas:0.10524764198701136\tand:0.08690699566508306\tmost:0.08351446995363677\tmore:0.08027734850629664\twere:0.06704882314090184\ta:0.06041303052137057\t:0.01\n",
"and:0.30639781998486104\tmade:0.18857775553738781\tor:0.10116367823942714\tthat:0.08336196094440916\ted:0.07717108177345786\thim:0.06215773039327584\tthem:0.06153410543261168\theld:0.057104129625738444\tdone:0.05253173806883095\t:0.01\n",
"a:0.543472948626212\tthe:0.2766192494630576\tof:0.0526812226805816\tThe:0.04077924202197932\tand:0.01935255462114912\tthis:0.015266936728435543\tA:0.015212976898206356\twith:0.015030368873365547\tfor:0.011584500087012926\t:0.01\n",
"to:0.4552192659675855\twill:0.18594422095363203\twould:0.09745853168647718\tshall:0.0728943710740203\tmay:0.05683910299099606\tshould:0.04336622374031262\tmust:0.03845959021492064\tand:0.021032498581461678\tnot:0.018786194790593944\t:0.01\n",
"that:0.3466634403017666\tand:0.1749718313221938\tis:0.11679788666773895\twas:0.07514006615255879\tof:0.06717883306863673\tbe:0.06690738475733246\tbut:0.06495289296463622\tby:0.03882550961966268\twhich:0.03856215514547376\t:0.01\n",
"the:0.7059184965614644\tof:0.07127411412236752\ttho:0.04224921327126916\tat:0.03901733445816019\tand:0.034234968758815744\tThe:0.03292856195901233\tto:0.03102643275920717\tsaid:0.0168227086791656\ttbe:0.016528169430538007\t:0.01\n",
"he:0.18734760960426472\tthey:0.17544079088016404\twe:0.14285310662227513\twho:0.09872903257710125\tI:0.08627515898021765\tyou:0.08402156633095977\tit:0.08259440146704977\twhich:0.07080488006890756\tand:0.061933453469060123\t:0.01\n",
"the:0.24444622193701554\ta:0.21070276872029026\tof:0.1800036420853026\tto:0.11433824818265097\tand:0.06876034913778473\tas:0.054658080663489254\tat:0.041209447820092525\tin:0.04099398487702257\tfor:0.034887256576351625\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.3219759356734432\tthe:0.2671765681218788\tin:0.16989209992281432\tto:0.05132459757010136\tand:0.04908927654004383\tfor:0.03847850741756548\ta:0.036310307840800866\tIn:0.032850696274347835\tThe:0.022902010639004277\t:0.01\n",
"virtue:0.2164966330534184\tone:0.17113157944299776\tout:0.12577844537907082\tquarter:0.11631476226635021\tpart:0.09655937994218515\tthat:0.08251174278924364\tpayment:0.07048469827377575\ttion:0.05781609712431462\tside:0.05290666172864361\t:0.01\n",
"the:0.683600384478052\tThe:0.08057949553085787\tan:0.04986653341640912\tthat:0.03964456231632236\twhole:0.03190726348779367\ttho:0.029844341710000808\tthis:0.02663050823286863\tand:0.024855513557358606\ta:0.0230713972703369\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"<s>:0.2411607809504617\t.:0.1378782263417606\tit.:0.1114060214592783\tthem.:0.10210391005902562\thim.:0.09199456872905586\tit:0.08449396330934805\tMr.:0.07924758866587515\ther.:0.07514970734003497\tme.:0.06656523314515969\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"was:0.16783388477194516\the:0.16559296991617678\tbe:0.1611515085583308\tand:0.1556197089625628\tI:0.09990939779325757\tis:0.0847051364552305\twere:0.0554072049143905\tare:0.05109945881954268\twho:0.04868072980856314\t:0.01\n",
"of:0.5064776734418203\tin:0.1023676067687955\tto:0.08340638910029576\tand:0.06302426422445553\tby:0.054098461106151206\tfrom:0.04935791935323133\ton:0.04830546657652655\tat:0.04361063672218022\tthat:0.039351582706543604\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"there:0.20563433726255975\tmortgage,:0.16633944273323617\t;:0.1652792544170093\tit,:0.10278803046054671\tcause,:0.09836095393889274\tmortgage:0.07159413669324424\tthem,:0.06948418655480336\tStates:0.05815939786276587\tyou:0.052360260076941875\t:0.01\n",
"the:0.35861451900589214\tMr.:0.1291559629555713\tof:0.1199072506314825\tThe:0.10475232618943306\tand:0.0967371407604443\tthat:0.07632406646832235\ta:0.046895937127093126\this:0.030747167493934736\tMrs.:0.026865629367826563\t:0.01\n",
"the:0.6232878691609006\tof:0.10940303110140488\tan:0.08855754241958991\tThe:0.05777421418915663\tand:0.0309258972404544\ttho:0.028894948723270558\ton:0.018624533144957538\tin:0.01787460308517225\tby:0.014657360935093228\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.3121130917931821\tin:0.280691434727791\tto:0.12211248716026639\tIn:0.06247424376473112\tfor:0.06069219902832363\tby:0.05108121940590246\twith:0.035373554714099836\tthat:0.03425437248973629\tfrom:0.031207396915967224\t:0.01\n",
"the:0.44383544886970194\tthis:0.3252847720742832\tThe:0.04888551606067052\tour:0.03397968153782057\tthat:0.03258983149200172\ta:0.031328738749405435\this:0.026370570312858322\ttho:0.026144171288767424\twhole:0.02158126961449093\t:0.01\n",
"out:0.19410720960531896\tnumber:0.1628685434013333\tamount:0.1468112780622837\tmatter:0.1091829810721035\tstate:0.09661801138626917\tpoint:0.07695410729266974\ttime:0.06846915911927438\tday:0.06785349014899647\tkind:0.06713521991175092\t:0.01\n",
"the:0.5445665403319037\ta:0.13334192540996662\tof:0.09008615283386563\tand:0.06596182529299761\tin:0.047881492463791746\ttho:0.03038958470016765\tan:0.029976218007223783\tThe:0.02425828661077095\tor:0.02353797434931228\t:0.01\n",
"and:0.30937248239004295\tthat:0.14926177207768093\tas:0.12706581059587674\twhich:0.07533535813185005\tthe:0.0745852795685487\tof:0.06797592753701469\tbut:0.06524530027187\t<s>:0.06371476663143535\twhen:0.05744330279568063\t:0.01\n",
"of:0.4365301455040677\tin:0.10236862017871816\tall:0.10035552265474347\tthat:0.08559961225200034\tand:0.07273712572101033\twith:0.058509941950571215\tfor:0.054285499298106436\tto:0.04120185199518462\tas:0.03841168044559773\t:0.01\n",
"of:0.21541462742457773\tin:0.15438757465469372\tto:0.12862453448469677\tor:0.10505581650870473\tat:0.0979598402773329\tby:0.09058990353060345\tthan:0.07457521615261045\tthat:0.06582894510998913\tfrom:0.05756354185679111\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"one:0.16305256839655205\tin:0.14213280308304757\tright:0.1320887975668438\tup:0.11817865814531019\thim:0.09929130749317916\thundred:0.0991597669980012\ttime:0.09050181720973707\t;:0.0757143191575999\tgood:0.06987996194972915\t:0.01\n",
"the:0.2577487745847449\tof:0.16989528800263906\tand:0.13569593344895242\ta:0.10548156714768445\tto:0.09952150639238352\tin:0.09542664041129328\tfor:0.052531437082001455\tthat:0.03887026062634079\tan:0.03482859230396003\t:0.01\n",
"is:0.17170256932686415\tand:0.16836705931951684\tthat:0.1607640133888108\tby:0.12303468772789919\thave:0.1188451286897893\thad:0.07043846417042723\tof:0.06782389220285837\twas:0.0572005733740686\thas:0.05182361179976556\t:0.01\n",
"and:0.2900786883299696\tof:0.253812329231048\tthat:0.08708574710429355\twhen:0.08166504740598166\tto:0.07834823250440313\tsaid:0.07813083924942217\tuntil:0.045015005543894114\tthe:0.04050614546841561\tby:0.03535796516257207\t:0.01\n",
"the:0.3301781607746501\tof:0.18075403296259018\this:0.11053593692597292\ttheir:0.10565816247408266\tand:0.09510790313743046\ta:0.05203199212473484\tits:0.0415562444873122\tan:0.037295615810387525\ther:0.03688195130283911\t:0.01\n",
"of:0.2370243890719056\tat:0.14471262428549633\tto:0.14156937724059837\tin:0.11951136004391019\tthe:0.10804852171397424\tfrom:0.07176711640436838\ton:0.05888160404437097\tand:0.057378793228093104\tby:0.05110621396728271\t:0.01\n",
"of:0.25570693145847484\tin:0.14419123250619176\twith:0.11336512042686664\tto:0.0998574611424579\tfor:0.09407172617169005\tand:0.0897014328056371\tis:0.07422936045027281\tby:0.06228906523600142\twas:0.05658766980240744\t:0.01\n",
"the:0.45455287422955376\tof:0.1450255248144143\ta:0.11212257685930468\tin:0.10178620174238866\tsaid:0.04216929205671989\tother:0.03696099112708767\tand:0.0355961401743786\tlarge:0.031230243681199817\ttwo:0.030556155314952507\t:0.01\n",
"able:0.1483348390560458\ttime:0.13682406356138466\tbegan:0.12467071949213207\tand:0.11444574977308632\thim:0.10960657525432711\tenough:0.10358792513567686\tis:0.08643740640707338\tas:0.08389625450443441\tright:0.08219646681583939\t:0.01\n",
"instead:0.4614615455543289\tInstead:0.15333888833879084\tcapable:0.10324435793393681\tpurpose:0.06996793152075007\tnumber:0.049750387602527\tsum:0.04506473628935696\tamount:0.038694256401599264\trate:0.03720530297251163\tquestion:0.03127259338619876\t:0.01\n",
"with:0.18862366244226825\tof:0.17825504328253072\tthe:0.17379549097689215\tand:0.1672703499330958\tan:0.10403317103249587\ttheir:0.05092872009920956\tno:0.05056565174762099\tany:0.04156184047225774\tas:0.03496607001362896\t:0.01\n",
"and:0.279693101415729\tas:0.15791546586511318\ttime:0.1093815532227175\torder:0.08052743475522817\tpower:0.08023326668423361\tnecessary:0.07710775468599013\tright:0.0697860557453657\tgo:0.06855718797301757\tis:0.06679817965260515\t:0.01\n",
"the:0.35544739261111763\tof:0.23825298810102488\tand:0.15588421134226554\tim-:0.06625138476681836\ta:0.04148684029239988\t<s>:0.03928598661304236\t.:0.033299160026632406\tfor:0.032214228562280726\ttwo:0.027877807684418224\t:0.01\n",
"of:0.2925588232145619\tto:0.18035538095064121\tand:0.1021938926360966\tin:0.10150081051557103\tthat:0.07752730521818313\tby:0.06314122566921454\ton:0.05853739608897071\tat:0.05770531454441442\tfrom:0.05647985116234645\t:0.01\n",
"it:0.184474460618118\tthey:0.12956356347511147\the:0.1253876313154486\tand:0.11739805248978236\tyou:0.11016561764994899\tI:0.0914748623517664\tIt:0.08770120057790098\twhich:0.08044227712984217\twe:0.06339233439208097\t:0.01\n",
"and:0.2803666967466385\tday:0.24790276646239107\ttime:0.1524761332752717\tthat:0.09556432698885875\tbut:0.0751082035559887\to'clock:0.03634940402068187\tnight:0.03481976732160155\tas:0.034370137973428354\ttimes:0.033042563655139495\t:0.01\n",
"in:0.26114896666505094\tof:0.2106735747662108\tto:0.13647377165127736\twith:0.07843224380579754\tfrom:0.07127929825705684\tfor:0.067472205664255\ton:0.0563439492735738\tand:0.055627581584339864\tIn:0.0525484083324378\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.29893655576751194\ta:0.20188632162657705\tat:0.12007999648121842\tto:0.10286359934418572\tof:0.08968951868149834\tan:0.05129879924659533\tand:0.04804822941129269\tin:0.046866176758759426\tfrom:0.03033080268236099\t:0.01\n",
"the:0.47477278227067843\tthis:0.14367525507524093\tan:0.10218592085174644\tof:0.08011052374214994\tand:0.051442833012736826\tThe:0.048758449359623195\ta:0.03891707784834416\tin:0.029899430999488195\ttho:0.020237726839991855\t:0.01\n",
"a:0.3783772849151187\tis:0.1408193546823629\tthe:0.13171938343514858\tare:0.08933317168620596\twas:0.08244676818757911\tbe:0.0697864840532083\twere:0.03388024621624235\tnot:0.033605625100705895\tand:0.030031681723428252\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"few:0.2107799938300363\tten:0.13422941407837433\tthirty:0.12343747714049555\tseveral:0.10851983467874467\tthree:0.1026106779948449\tsixty:0.08634674470432888\tthe:0.07685708565979464\ttwenty:0.0744467962658066\ttwo:0.07277197564757411\t:0.01\n",
"the:0.5163116242370708\tof:0.17748543015320048\this:0.05596491502322679\tfor:0.04718000720511192\tand:0.04290220573061185\ttheir:0.041687814468672736\tThe:0.03850024118548758\ttho:0.036047719756674694\tall:0.033920042239943216\t:0.01\n",
"miles:0.18218830279971138\tand:0.1484412800849311\taway:0.1234127847098296\tcame:0.11233925870778054\tfeet:0.1058543348906955\ttaken:0.08474211090053461\tcome:0.08100167628675067\tup:0.07961070278211209\tfar:0.07240954883765476\t:0.01\n",
"made:0.30077457550068193\tand:0.1778222810621618\taccompanied:0.09241099391475195\theld:0.07222732479560394\ted:0.07195767259738695\towned:0.07146889143988808\tshown:0.06967742525825105\ttaken:0.06798770417552862\tgiven:0.06567313125574568\t:0.01\n",
"and:0.30270925673550475\tfact:0.16943001944517186\tso:0.11358010044095931\tis:0.11266763121327539\tknow:0.07568042407507537\tbelieve:0.06812016133190102\tsay:0.05750618905495806\twas:0.047547212930166706\tfound:0.04275900477298741\t:0.01\n",
"the:0.16903444272115992\tFifth:0.1229111177903722\tLake:0.11616602902560272\tPennsylvania:0.1070409651950029\tCentral:0.10305713908033987\tThird:0.09892652562204929\tSummit:0.09462416094458839\tJersey:0.09393422129929074\tUnion:0.08430539832159398\t:0.01\n",
"that:0.19875799997718666\twhich:0.14972540138712553\tand:0.11821881214711463\tit:0.11124925113133295\the:0.10810063780139853\twho:0.1025244102530853\tIt:0.07545320673700032\tthere:0.07462184746156376\tnever:0.05134843310419239\t:0.01\n",
"be:0.3227997414693742\twas:0.1964725989244476\tis:0.11651413537157494\tare:0.07924911764751066\tand:0.07313784791743592\tbeen:0.07229615881917906\twere:0.05994839635627762\tbeing:0.040408865183704734\the:0.02917313831049538\t:0.01\n",
"the:0.23796499947839342\tand:0.18783625054922265\ta:0.13835001913050796\tof:0.11958198165565806\tto:0.11265980894360407\tfor:0.06181028098181047\tthat:0.049008266436999424\twill:0.04277084388095558\tin:0.04001754894284841\t:0.01\n",
"the:0.1866189946252878\tvery:0.13106317850806132\tof:0.13020275961549752\ta:0.10754295862411149\tso:0.10620062304400113\tfeet:0.10021080279210764\tas:0.0963596553507922\tand:0.07793160151712929\ttoo:0.05386942592301163\t:0.01\n",
"and:0.22813005603170383\tthe:0.1572099043860072\tis:0.11521833637416955\tan:0.10420866558073172\twas:0.09504037588459194\tare:0.08564450459716828\tbe:0.08247759847336691\tthat:0.0643390720756877\tbeen:0.05773148659657292\t:0.01\n",
"and:0.22928252146739705\tof:0.1701333815029671\tthe:0.14985043222250397\tto:0.11015798563392723\tis:0.08147108606495199\tI:0.06496087311483224\tbe:0.06297856374405811\tthere:0.061067719206286994\tor:0.060097437043075325\t:0.01\n",
"of:0.20320302958578995\tthe:0.18282831414365514\ta:0.17999937914220981\tand:0.1346319643713663\tto:0.10298600865919073\tfor:0.054599774248035866\tin:0.05230382946930832\tthat:0.040139659840323014\tat:0.039308040540120937\t:0.01\n",
"the:0.3222700586422684\tof:0.1974830349703252\tand:0.14821900911444638\tMr.:0.0814022366829615\ta:0.07018330339807602\tto:0.052117954772225555\tThe:0.04496263648487065\t.:0.03895710737577016\tby:0.034404658559055994\t:0.01\n",
"and:0.26276554424049875\twell:0.17165735638285678\tregarded:0.10215108442096366\thim:0.08688236618817878\tknown:0.08594969760882573\tsoon:0.07468266047506815\tit:0.07254659441566477\tis:0.06743217334715047\tbut:0.06593252292079285\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.22235177351789784\tbe:0.17388580425693317\tI:0.13277557413080351\twas:0.12295642712649396\the:0.1025423849099281\thave:0.06953610770899253\tis:0.06266374535991706\thad:0.055885795104537575\thas:0.04740238788449617\t:0.01\n",
"of:0.3685090914844917\tand:0.1518770711613964\tin:0.12089065787925023\tthat:0.10006704077109935\tfor:0.08046740887700528\tto:0.07112397565734671\tby:0.034772089567119274\tfrom:0.032476390070584026\ton:0.029816274531706922\t:0.01\n",
"a:0.37899957604053736\tthe:0.23726121585914783\tin:0.113034448303017\tof:0.06227816678340587\tand:0.055004336377117644\tno:0.04129201546529614\tfor:0.040444069330571965\this:0.03278240970023276\twith:0.02890376214067337\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"the:0.27711558892703886\tof:0.24269960898010032\tand:0.1435513214355596\tto:0.10157275248549204\ta:0.06137242563551792\tMr.:0.049882082198526946\tor:0.039043236437836124\tThe:0.037533202587623965\tas:0.03722978131230421\t:0.01\n",
"the:0.6441343416368644\tsaid:0.15646470426398665\tof:0.06991248835860736\ttho:0.02802172995096602\this:0.026044674620792786\tThe:0.01937029733239205\ta:0.01731840180106025\tand:0.015557865761736466\tthis:0.01317549627359405\t:0.01\n",
"it:0.20745969707657905\tand:0.14500638011715372\tthey:0.1131037248603258\tI:0.1119869372995891\tIt:0.10350087404960544\the:0.09199939737971656\tyou:0.08039231433963595\twhich:0.06952220276335667\twe:0.06702847211403776\t:0.01\n",
"number:0.2794800084111738\tline:0.15671634637423973\tstate:0.13087462069010294\tState:0.08743627344798974\tcounty:0.0758570627355934\tcity:0.07382232154963746\tpeople:0.06360653245896622\tout:0.06215481762676902\tquarter:0.060052016705527775\t:0.01\n",
"the:0.6107023059621512\ta:0.1774517508608711\tThe:0.07803570526721215\ttho:0.04366533621230766\tand:0.02025871823504228\tany:0.017181851444011336\ttbe:0.017064395504996804\tthis:0.013991718698914354\tgreat:0.01164821781449306\t:0.01\n",
"of:0.2308695472657073\tfor:0.16732703149749464\tin:0.14859794298274415\tat:0.12840016808128685\tto:0.10433148098311645\tand:0.07216586239965417\ton:0.05927989407345589\tthat:0.04062428736224335\tfrom:0.0384037853542971\t:0.01\n",
"one:0.21303943994489263\tout:0.1698340805609801\tpart:0.1472687798153334\tsome:0.10564771493692295\taccount:0.1047360670487683\tany:0.0723917686949588\tall:0.06334962810761698\tthat:0.06091520523433158\ttion:0.052817315656195345\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.4572017942798052\this:0.1643946300015188\ta:0.13920100095083104\tof:0.05216369221805271\ttheir:0.0509661326376222\tsaid:0.03598240029566252\tour:0.03389570773712439\ther:0.03211538703077671\tin:0.024079254848606388\t:0.01\n",
"of:0.18690624053633184\tis:0.1495184314648699\twas:0.12890124163326636\tfor:0.11286675001465872\tand:0.0917972860587856\tin:0.08766788863050963\tto:0.08550472714000508\twith:0.07597618279519122\tas:0.07086125172638172\t:0.01\n",
"and:0.25232232525208637\tof:0.200739207132387\tin:0.11445167234888987\tfor:0.10336633557765897\tto:0.0944879069369424\tby:0.0758034375005898\twas:0.04977872976009279\tIn:0.04961509079528413\tor:0.04943529469606871\t:0.01\n",
"of:0.31311570642625036\tin:0.26013142230336034\tfor:0.10236725134916166\tat:0.07424373507989428\tIn:0.05972054905416503\tby:0.05705397496383892\twith:0.0424779569422673\tto:0.042433449712493874\tthat:0.038455954168568264\t:0.01\n",
"sum:0.1648703730892017\tout:0.11307775521688435\tamount:0.11090839996168092\tnumber:0.11072884578616649\tBoard:0.10709279218170512\tday:0.10091951320741446\tline:0.09892782668492611\tcounty:0.09783432205349214\tpurpose:0.0856401718185288\t:0.01\n",
"be:0.2275675264269193\twas:0.20115206727940743\tbeen:0.17152238735197792\twere:0.09380973065459249\tand:0.08067994467719047\tis:0.056392985770118934\thave:0.05610479166224518\tare:0.052347108989632435\the:0.0504234571879158\t:0.01\n",
"provisions:0.16627098017731173\tcopy:0.15165327534695813\tdate:0.12617568642366098\tpart:0.12388683156619237\tone:0.1044724200406653\tout:0.09585475097905363\tpeople:0.09019386903076457\tpublication:0.0773301702042243\tmembers:0.054162016231169084\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"of:0.2827424356701846\tin:0.21014752229747102\tto:0.12587195710757518\tand:0.09512296715854125\twith:0.06733268768015438\tthat:0.06451142125688966\ton:0.057255656721339726\tfor:0.046222798229545004\tIn:0.04079255387829921\t:0.01\n",
"the:0.5811417902841594\tThe:0.08064135120079063\ta:0.0699173296396217\tof:0.06467810614682598\tand:0.05375658412543409\this:0.04174275629688252\ttho:0.03459573136560702\tin:0.032635050334809346\tfor:0.030891300605869275\t:0.01\n",
"the:0.6515278990228168\ta:0.08314851502353764\ttho:0.054063595791534684\tof:0.049475434029135026\tThe:0.046307003950561566\tand:0.04184648149229256\tthat:0.022883236539712824\ttbe:0.022363573293874693\tour:0.01838426085653428\t:0.01\n",
"the:0.2778917821478307\tand:0.18179560941880735\ta:0.14065748077955534\tof:0.1358683742397532\twas:0.05779269367297565\tbe:0.054895235703175\tMr.:0.0537919387281957\tto:0.04733977452495885\tor:0.039967110784748065\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"such:0.2104032791312893\tthe:0.1624100171306262\tsame:0.14046064934403793\tthis:0.10499158212929623\tthat:0.09644260391669031\tsome:0.08635987751985139\tother:0.0730616553455298\tand:0.06566716314864492\tany:0.05020317233403378\t:0.01\n",
"feet:0.2647986094766404\twent:0.17370347231911906\tand:0.11787993626257924\taccording:0.11568946117742268\tgo:0.10010052761117114\tthem:0.06237427228763774\thim:0.05705740237730474\tsent:0.055126476028850735\tcame:0.04326984245927416\t:0.01\n",
"the:0.4542796024249059\tThe:0.18816239977398086\ta:0.11986235539034314\tthis:0.05759524035141282\tof:0.043030615268999296\tThis:0.03932392159886094\tand:0.033257522653166206\tthat:0.028637882231088988\this:0.025850460307241863\t:0.01\n",
"I:0.2127824945549486\the:0.1730051395306995\tthey:0.13893687562979515\twe:0.12751244644765364\tit:0.10925212384308824\tyou:0.08379430337544327\tand:0.05568759473872088\tIt:0.04453521765547496\tshe:0.04449380422417573\t:0.01\n",
"of:0.20667154411335312\tto:0.1674821884595449\tand:0.16064577445523673\tin:0.09585524705784275\tby:0.08986780053057818\twas:0.07868452882315856\tfor:0.07424830958531055\tthe:0.06159507944998718\twith:0.05494952752498798\t:0.01\n",
"of:0.2008820080533417\tto:0.19611740019001625\tin:0.12074298326090975\tfor:0.10583219840067395\tand:0.10441101720193802\tthat:0.0931323811861136\twith:0.07206792351187222\tby:0.05797895376482622\tas:0.038835134430308435\t:0.01\n",
"as:0.1762263313077311\tand:0.1706157591694651\tright:0.10999394893267618\tgo:0.0971091495361761\tmade:0.09638101756897334\ttime:0.0928863151057105\tsubject:0.08506944501657379\twent:0.08200011288502763\thim:0.0797179204776664\t:0.01\n",
"the:0.23896910248688027\tof:0.2358719950760178\tand:0.16290085719960612\tto:0.11421781921926928\ta:0.08471100618357327\tby:0.0427171001015309\tfor:0.04125786050004583\tin:0.035966778594858216\twith:0.03338748063821819\t:0.01\n",
"and:0.3476163769632415\tthe:0.18216983056316902\tof:0.12072429010692179\tis:0.06638054910020977\tin:0.06563767924444622\twas:0.059203929989350486\ta:0.0532768127652075\tas:0.04972575181896661\tare:0.04526477944848713\t:0.01\n",
"the:0.4080745361662223\tlast:0.16266991244839857\tat:0.0985686816922427\tSaturday:0.06849594151123208\ta:0.061045060782530775\tof:0.05896874793422529\tMonday:0.051396451370154465\tthat:0.0441300672712822\tday:0.03665060082371166\t:0.01\n",
"was:0.294852053728711\tis:0.2224974517724032\tare:0.132752098741813\twere:0.07880949092469386\tand:0.05776006323092942\tdid:0.05534911633109264\tdo:0.054996983968089545\thad:0.05286697320009012\tcould:0.04011576810217737\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"the:0.21421201776866328\tand:0.19227183371566595\tother:0.1784688787201754\tall:0.09401068080295943\tthis:0.08196603162651822\tthese:0.0720362652447081\tof:0.05392074747755545\tthat:0.05171751156393933\tby:0.0513960330798148\t:0.01\n",
";:0.2098188775838789\tit,:0.16642171471435438\thim,:0.11610054940859091\thim:0.11438612862878061\tthem,:0.09664584678272661\tin:0.08347234845136188\tus,:0.08028965333944303\ttime,:0.0660231117853206\ttime:0.05684176930554309\t:0.01\n",
"it:0.3519891055449359\tIt:0.19169204501469544\tthere:0.14353398241598925\tand:0.08497295031605918\tthat:0.05656415793090323\twhich:0.051499543917760765\the:0.04434621163325223\tmore:0.033227461751716904\tone:0.03217454147468709\t:0.01\n",
"of:0.21728456168929197\tin:0.1841214085233092\tto:0.18404658202355506\ton:0.09751617818915519\tfor:0.08053017898480978\tand:0.06496404526657559\tthat:0.06482148173118843\tfrom:0.05313336231245102\tIn:0.04358220127966367\t:0.01\n",
"the:0.26319120441421734\tand:0.1817785870098654\tof:0.1487504945115468\ta:0.08006357929843982\tto:0.07898388881001621\tbe:0.06920432845900125\tMr.:0.06859485992842065\tis:0.050739812001520626\tor:0.048693245566971986\t:0.01\n",
"and:0.28631779538902824\theld:0.10695800936331136\twas:0.09961144432841233\tthat:0.09484508790470558\tit:0.09305052804842409\tout:0.08562565059198396\tup:0.08166012462488849\tpeople:0.07179272073791577\thim:0.07013863901133023\t:0.01\n",
"to:0.788456168898409\tnot:0.05480100401443986\tand:0.043054232597067074\twill:0.023978293897347007\twould:0.020684549596096318\tmay:0.01694283341535962\tof:0.016653128207060646\tshall:0.013006400876492158\tcan:0.012423388497728265\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.6702984522878931\tnot:0.09556775167484523\twill:0.05769490014837285\twould:0.04484246669418183\tand:0.03588683912659726\tcan:0.025312426638070585\tshould:0.02199223492750312\tshall:0.019583031518921587\tcould:0.018821896983614497\t:0.01\n",
"of:0.18090795727068243\tand:0.17616970470911544\tto:0.16079173061607863\tthe:0.15909889375982417\tin:0.1319066968021384\tfor:0.06705243699736166\twith:0.044523304160999026\ta:0.03809030471707841\tIn:0.03145897096672182\t:0.01\n",
"the:0.2516610983656348\tand:0.20591804982169054\tof:0.12850810508649738\tto:0.08874145419088499\tat:0.08152961733009521\ta:0.07890664421591197\tfor:0.06512632521055454\tabout:0.045948066007582195\twas:0.04366063977114843\t:0.01\n",
"and:0.19683677196900626\tof:0.18803235076482616\tto:0.1450841060944621\tknow:0.144696892057582\tsee:0.06672008048854206\tor:0.06565730824402155\tbut:0.06504434385915053\tis:0.06068048593769312\tin:0.057247660584716184\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"he:0.19428736266208543\tit:0.17985328482852528\tIt:0.14082492772237057\tand:0.11917079184791558\tI:0.08716537943386848\tHe:0.08035754464888333\twhich:0.07074609856429302\tthere:0.0620308434800496\tshe:0.055563766812008746\t:0.01\n",
"the:0.5456832996479312\ta:0.1293239073522138\tof:0.11091327046427239\tto:0.05218145959562609\tThe:0.04139086384772243\tin:0.03475738914397843\tand:0.03097866315823922\ttho:0.024526240265454014\tthat:0.020244906524562595\t:0.01\n",
"a:0.29400891168706483\this:0.2718747379341291\ther:0.14157544459729285\tmy:0.08487864218319428\tthe:0.08206437046494335\ttheir:0.04585847418971458\tand:0.029031062348279447\twas:0.023499994690905017\tyour:0.017208361904476575\t:0.01\n",
"the:0.5445665403319037\ta:0.13334192540996662\tof:0.09008615283386563\tand:0.06596182529299761\tin:0.047881492463791746\ttho:0.03038958470016765\tan:0.029976218007223783\tThe:0.02425828661077095\tor:0.02353797434931228\t:0.01\n",
"the:0.523197139126293\tand:0.12884068291935852\ta:0.11597537520661412\tPrime:0.0556171104193467\tThe:0.05077104308129202\ttho:0.04220079792647474\tof:0.03249008132563298\tor:0.02201332092310809\ttbe:0.01889444907187972\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.3622512003190337\ta:0.1809775584614521\tand:0.10916772066772196\tor:0.07348144689535713\tany:0.06548686307183808\tthat:0.058904811008227205\tother:0.04916263068651884\tsome:0.04596155890884502\this:0.04460620998100606\t:0.01\n",
"of:0.31624236365374403\tthe:0.2610966880419316\tand:0.10121992383243542\tto:0.06702590891337296\ta:0.06157695992500226\tat:0.05141800075804659\ton:0.04913304680699484\tin:0.043706331351511515\t.:0.03858077671696085\t:0.01\n",
"the:0.2860096569382895\ta:0.19429997308187957\tevery:0.08535452580316137\tnext:0.08378365769914593\tone:0.07865703734752474\tthat:0.07459644314605132\tfirst:0.07180825965271811\tthis:0.0639865448883723\tto-:0.051503901442857165\t:0.01\n",
"have:0.35555157865966663\thas:0.289962390924289\thad:0.2193008102814949\tnot:0.04942892773149174\thaving:0.03621411477393523\tnever:0.015094617798870558\tever:0.008372903406581835\tlias:0.008201251596288331\tbad:0.007873404827381844\t:0.01\n",
"to:0.20824004866035978\tthe:0.2040097545902015\tand:0.19980432728505823\tof:0.15978957334487476\tin:0.06337877849958568\ta:0.05463758289552893\tnot:0.03746152227349155\tI:0.031804518390908185\tbe:0.030873894059991417\t:0.01\n",
"him.:0.21783980816964937\t<s>:0.1881665162968343\tit.:0.14556996603513578\tthem.:0.09542484047946033\tyears.:0.08165280573516273\ttime.:0.06663694024572438\tlife.:0.06644808684166795\thimself.:0.0662719926794789\tand:0.06198904351688618\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.2283939006605752\the:0.22079184069588625\tI:0.1181442792317479\tthey:0.11518249093612816\tbe:0.07440694478362916\twho:0.06464417355058127\thave:0.0599373469806075\twhich:0.05522544913790607\twe:0.053273574022938364\t:0.01\n",
"the:0.8578490396942527\ttho:0.030996843167094747\tthis:0.027581572497436632\ta:0.018823889636691998\tThe:0.014938953481215732\tand:0.01294238934114337\ttbe:0.010616656544222013\tof:0.008432406705198982\tour:0.007818248932743778\t:0.01\n",
"and:0.16051538492039444\table:0.12584552037456037\torder:0.12023274904774982\thim:0.10411986755347347\tis:0.10230358199714916\twas:0.09725639894996213\ttime:0.09647037435760988\thad:0.09226467812513447\tas:0.09099144467396625\t:0.01\n",
"the:0.7060662628237305\tan:0.12455744140839517\ttho:0.03319048077770169\tThe:0.030441754437745196\tof:0.02601875597197633\tand:0.02136747975087335\tto:0.019561274167738892\ta:0.0144631931897442\ttbe:0.014333357472094663\t:0.01\n",
"and:0.25737290645186667\tof:0.17957405422491726\tthe:0.14619567225470498\ta:0.0957918271651453\tto:0.08822594087171945\twas:0.06802146797304325\tin:0.06036719409128018\tbe:0.050016388584221264\the:0.04443454838310155\t:0.01\n",
"to:0.5852840912026808\twill:0.15116656423982316\tand:0.052654610183054625\tshall:0.05239509963692345\twould:0.039246464892809474\tnot:0.03512527994745764\tshould:0.02736086040167753\twe:0.02435713243603942\tmust:0.022409897059534032\t:0.01\n",
"to:0.3877378900594243\twill:0.20108599556288753\twould:0.10069656282236039\tshall:0.0755954366359698\tshould:0.06465065204867344\tmay:0.06294092780737742\tnot:0.042731924022555795\tmust:0.03678785945404829\tcan:0.017772751586703193\t:0.01\n",
"the:0.32414272374648134\tof:0.32159591802128085\tand:0.15336505647012286\ta:0.045734877199819515\tin:0.041844500567163136\tfor:0.031159638302324152\tThe:0.026512585273372254\twith:0.023908222002105996\tto:0.02173647841732984\t:0.01\n",
"get:0.1466179279908691\twas:0.13816166858847523\tand:0.13411725524820045\thim:0.10611862598008347\tit:0.10231181039389517\tthem:0.09727726821367766\tare:0.09515897845536371\tgo:0.08768078124059613\tcome:0.08255568388883913\t:0.01\n",
"be:0.3215726545882276\tbeen:0.15458058586588103\twas:0.11927004877738492\tand:0.11669859835657483\tis:0.08112516770342504\tare:0.05537358703409489\twere:0.05242976560590005\tcase:0.045725475687294403\tbeing:0.043224116381217224\t:0.01\n",
"to:0.5359484624719786\tand:0.1643937489031909\tyou:0.059981221310552335\tI:0.05770204042389192\tnot:0.04755454790149271\twill:0.03457377110520776\tthey:0.03285578005258848\twe:0.029756790951933353\tmay:0.027233636879163872\t:0.01\n",
"in:0.2713127362150924\tand:0.1606241852123144\tof:0.12392868277347686\tto:0.10425752810284739\tthat:0.07595229166838137\talmost:0.07426688912660825\tIn:0.0634497790188723\twith:0.06014290192028519\ton:0.0560650059621218\t:0.01\n",
"the:0.47578584295576926\ta:0.24067200078513934\tin:0.11810052915121994\tIn:0.037829770101378786\tand:0.03037935831213729\tThe:0.02802651995153634\ttho:0.026185258774691873\tof:0.021231918252036745\tgreat:0.011788801716090333\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"the:0.5759663843897341\ta:0.14484787068192662\tand:0.09116512270257099\tThe:0.06050125953311487\ttho:0.03198916073573538\tgeneral:0.026876900932927925\tor:0.023186685256351862\tState:0.02075899693868611\tfirst:0.014707618828952272\t:0.01\n",
"to:0.3712652508335052\tcan:0.14323290771799693\tnot:0.10434597342712909\tmay:0.08699826319414182\tcannot:0.08440731385566909\tcould:0.06476732843758297\twill:0.05758413099629763\twould:0.04013383131990166\tand:0.03726500021777544\t:0.01\n",
"the:0.5240064275307966\ta:0.11376600701497741\tevery:0.0963210265597725\tthis:0.08833279969369102\tgreat:0.0416730845992036\tin:0.03594909703556622\ttho:0.03209089424377234\tfirst:0.02915120741952298\tand:0.02870945590269738\t:0.01\n",
"and:0.1828487188357314\twas:0.17082437509609846\tis:0.1319028517345912\tbe:0.11688577765073967\tare:0.10946121259218372\tit:0.07947039795334276\twere:0.0731415249016126\tbeen:0.06514253877313088\tengaged:0.060322602462569264\t:0.01\n",
"an:0.7230207926844454\tthe:0.1326569685397044\tthis:0.031978356775783666\tin:0.027283250536899024\tand:0.02150424186257958\tof:0.01899343741092294\this:0.012666212486831424\tto:0.011264699007766587\tAn:0.010632040695066803\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.59711033620222\tof:0.08538204909960145\tThe:0.05363147014214357\tAmerican:0.051573507470315146\tcolored:0.044530364213836354\tyoung:0.041931222617471994\tour:0.04119041453510133\tand:0.03983740930350399\tmany:0.03481322641580623\t:0.01\n",
"that:0.3398159603842373\tand:0.1881959735196832\tas:0.15637377401951932\tbut:0.07943633285122904\twhich:0.07677650296033542\tif:0.049884031861740695\tof:0.03827480466933513\twhat:0.03104041761925895\tthough:0.030202202114661\t:0.01\n",
"per:0.38187160525766334\ta:0.35775907952388825\tthe:0.08771957730210342\tone:0.08143717603329333\tand:0.021466448838669303\tA:0.015607669020801417\teach:0.015574984110882963\tto:0.014422891461654876\this:0.014140568451042928\t:0.01\n",
"and:0.39152961307626905\tof:0.16129853896448199\tso:0.07916908696704543\tis:0.07785460120908608\tbut:0.06773890590586674\tfact:0.05924922401414922\twas:0.05359481879123313\tall:0.05204787919065704\tin:0.04751733188121141\t:0.01\n",
"that:0.4537119146489766\tand:0.16717023459917282\twhich:0.12878443786705387\tas:0.05871226652318454\twhen:0.043321152558266705\tbut:0.03813313222139027\tw:0.037056716108286675\tif:0.034465994914685216\twhere:0.028644150558983283\t:0.01\n",
"man:0.2533348151608897\tthose:0.20047937694808066\tmen:0.1729099768488889\tone:0.08857891083816309\tand:0.07621457843870723\twoman:0.06078972542156699\tall:0.05318370979398915\tpeople:0.043685138922370075\tperson:0.04082376762734435\t:0.01\n",
"the:0.2081065220049675\tof:0.1919474270004913\tand:0.15533559588595758\tto:0.10953449622986335\tin:0.07669519386248698\ta:0.07338105888324314\tMr.:0.06678394289599238\twas:0.06469408396412238\tbe:0.043521679272875376\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"with:0.18862366244226825\tof:0.17825504328253072\tthe:0.17379549097689215\tand:0.1672703499330958\tan:0.10403317103249587\ttheir:0.05092872009920956\tno:0.05056565174762099\tany:0.04156184047225774\tas:0.03496607001362896\t:0.01\n",
"able:0.16476468956565668\tenough:0.11618499558449112\torder:0.1127774004433305\tand:0.10770230905684038\tright:0.10423521491986491\tis:0.10418823328546226\tunable:0.09963857793164675\tbegan:0.09074479233141822\tready:0.08976378688128922\t:0.01\n",
"and:0.28236627465301084\tthe:0.20723426604969658\tof:0.17114462321901844\tto:0.08349457292475697\tthat:0.06105862745899761\ta:0.04968165985351651\tin:0.047714363716289065\twhich:0.0453777970640012\twill:0.04192781506071274\t:0.01\n",
"the:0.3187533310365806\tof:0.19153223533904776\tand:0.13333775657562166\ta:0.08569118153695421\tto:0.07805362827458312\this:0.04896787193732948\tbe:0.04728575140178597\tmy:0.044784222538298106\tI:0.041594021359798936\t:0.01\n",
"was:0.15779101241401491\tand:0.1389906067255344\tby:0.1359734934821855\tor:0.12086172850265266\tin:0.10246535814449148\tof:0.09563733083426602\tis:0.08469039880618427\tthe:0.079835513029321\tare:0.07375455806134971\t:0.01\n",
"it:0.2665934037164222\the:0.16842000760947717\tIt:0.16091550540739655\twhich:0.08745394146349114\twho:0.08136897266351026\tand:0.07786637980186846\tHe:0.061154696308349354\tbe:0.047725195065888\tthat:0.038501897963596765\t:0.01\n",
"and:0.2793279363562735\tof:0.1636929224208879\tthe:0.14397728582457842\tto:0.10141444015278946\twas:0.07080095043168784\tthat:0.06528672122276853\tis:0.059461799016744435\the:0.05440257111541271\tbe:0.05163537345885716\t:0.01\n",
"the:0.20330791336198092\tand:0.16374723220953158\tof:0.12203318026621938\tto:0.11979475324583129\ta:0.11596184956525815\tbe:0.0837146771961551\twas:0.08039980232180864\tis:0.0604430544374977\tin:0.04059753739571725\t:0.01\n",
"the:0.26442548175895014\tand:0.1801487908604003\tMr.:0.12832048149158512\tof:0.12707666645287982\twas:0.0832648049927976\ta:0.05891194888138345\the:0.05269954700167158\tThe:0.051437917992428715\tbe:0.04371436056790327\t:0.01\n",
"be:0.4355779513002904\twas:0.19317412363888517\tbeen:0.12340148781034053\twere:0.05533878087065047\tis:0.04646864571433207\tnot:0.04568223262308421\tare:0.039019066585551015\tever:0.027971199512000746\tbo:0.023366511944865314\t:0.01\n",
"it,:0.17421113456748955\tthem,:0.14906553813066808\t;:0.1382890680059646\tyears,:0.09999381587070146\thim,:0.09963841692320599\tit:0.08448295039229899\tthem:0.08274290150541948\there:0.08138321576958409\ttime,:0.08019295883466776\t:0.01\n",
"of:0.17313822640573256\tin:0.1352258014797707\tfor:0.13311029130127686\tto:0.10137752405273423\tis:0.09994851265777846\twas:0.09965911742799513\tand:0.08350230743372589\twith:0.08204865751619801\tas:0.08198956172478812\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"-:0.1955940160750217\tai:0.19131789701304536\tthe:0.12500546945761565\ta:0.1122663220031812\tat:0.08318561829437636\tto:0.08033157879587687\tI:0.0721994987905799\tin:0.06640281037451583\tof:0.06369678919578707\t:0.01\n",
"to:0.782864042121591\tcan:0.04352852314486114\twill:0.040582780056608724\tand:0.030469737705751402\tnot:0.027505938383357437\twould:0.02190778476875453\tTo:0.016016669262973075\tcould:0.015026323410685704\tmay:0.012098201145416895\t:0.01\n",
"the:0.8010282570943209\tThe:0.05367089911047593\ttho:0.03851598241294985\tand:0.0262241545163748\ta:0.021791783708494605\ttbe:0.015086822579700664\tof:0.013319600169074214\this:0.010439130317046604\tin:0.00992337009156245\t:0.01\n",
"that:0.34515865426972514\twhich:0.14418346863785733\tand:0.14063477854162035\tas:0.13621630044207123\tif:0.06864968766858044\tsaid:0.050773347850261455\twhen:0.041283257131943536\tbut:0.03727610168445904\twhat:0.02582440377348152\t:0.01\n",
"of:0.27180982581551005\tthe:0.17805119635661038\tto:0.1307756043208467\tand:0.10323660692677077\tin:0.09588271044631401\this:0.062016229825061296\tfor:0.05747827036123852\tbe:0.04549082310543441\ta:0.04525873284221398\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"he:0.21236976584642633\twho:0.15091908100628376\twhich:0.13423069933853982\tthey:0.1114226506626021\tit:0.10310378443593025\tthat:0.08782466281035546\tI:0.07127377388196328\tthere:0.06045635920866448\tshe:0.058399222809234465\t:0.01\n",
"of:0.2892052706336959\tand:0.1813265559395475\tthe:0.1448468034624025\tto:0.0964617481255119\ta:0.09107383914586827\tfor:0.05153471305605286\tthat:0.04785426466741117\tin:0.04409747291579139\tby:0.04359933205371852\t:0.01\n",
"the:0.26547828815838903\tother:0.21627227262658932\tof:0.19214420579753297\tall:0.13298246812161998\tsuch:0.04882294121435099\ttheir:0.037683957635784165\tto:0.03714210639158958\tany:0.03295333651527849\tthese:0.026520423538865457\t:0.01\n",
"of:0.3924651286456199\tand:0.0978255043190048\tto:0.09605318013270167\tthat:0.09007567826974701\tin:0.08237385670978742\twith:0.07396276102750998\tby:0.0714869372848906\tfrom:0.044237403240508455\ton:0.04151955037023\t:0.01\n",
"and:0.2668358219549178\tthe:0.23420419794198893\tof:0.11735065555210618\tto:0.10434520491725817\the:0.062110540407542915\tfor:0.05365366897911182\tin:0.05127683655184913\twill:0.051078006856778185\tbe:0.049145066838446744\t:0.01\n",
"the:0.6675381482024637\tof:0.0777640841714047\tin:0.06693201889280626\tand:0.06186883126867901\tThe:0.03528531217308074\ttho:0.035181332253900494\tIn:0.02156032122004592\tthat:0.012100949875857824\ttbe:0.011769001941761273\t:0.01\n",
"of:0.34141775998495927\tthe:0.18371322475518032\tin:0.10601700956856636\tto:0.101608706021545\tand:0.08041520661279687\ta:0.06907527902660847\ton:0.04278452589889864\tfor:0.03358529232456965\tat:0.03138299580687531\t:0.01\n",
"of:0.27358707487840733\tin:0.21275994670845377\tand:0.12405989795172427\twas:0.07532570727249761\tIn:0.06845350676951423\tto:0.06633125126333016\ton:0.06444848629025927\tis:0.053864144506030866\tby:0.051169984359782476\t:0.01\n",
"and:0.23910122123352057\tof:0.18009849406521639\tin:0.13641105958137878\twas:0.11018091047535487\tare:0.09213592170886417\tbe:0.06152033555166568\tbeen:0.059822966474979276\tis:0.0576269265578333\twere:0.0531021643511869\t:0.01\n",
"the:0.7402683741964897\ta:0.06494245197373716\this:0.05138872598673613\ttho:0.02954313573721004\tThe:0.028379247265796353\tof:0.025522068710833665\ttheir:0.02225747700750497\tmy:0.015345461704832671\tthis:0.012353057416859287\t:0.01\n",
"the:0.2811646289976183\tand:0.22879344481865696\the:0.09665923094029813\twas:0.09291531962749494\tbe:0.07230924672133916\tI:0.07078679991030785\twere:0.05178562581679447\tThe:0.04999259369953408\thad:0.04559310946795598\t:0.01\n",
"the:0.5842319507205475\tof:0.11142355193804651\tand:0.07038974149827895\t.:0.04729714203640898\tThe:0.0444656781342384\tsaid:0.04136030309445726\ttho:0.035729933458638646\tin:0.029435937551045472\tMr.:0.0256657615683383\t:0.01\n",
"feet:0.7951655646353247\tchs.:0.059913983550953114\twent:0.029485802654863138\tft.:0.021559121574989255\tchains:0.019321417881165485\tright:0.017028704292478505\tand:0.016724858207230693\tfeot:0.015756091389452817\tdown:0.015044455813542313\t:0.01\n",
"know:0.20599655176729018\tof:0.18434115747854096\tto:0.12011641673283838\tin:0.10851281012538884\tand:0.0947239887026073\tsee:0.088471366858727\twith:0.06334923148805391\tmatter:0.06266605240735394\tfor:0.06182242443919948\t:0.01\n",
"the:0.3774719076274308\ta:0.27873576421113166\tto:0.1314581077792539\tand:0.046156160032049455\this:0.03835317866247916\ttheir:0.033018540724401885\tthis:0.03230033372139253\tThe:0.027877530333519456\tits:0.024628476908341246\t:0.01\n",
"with-:0.50916428094031\tand:0.08917161909754925\tfind:0.08162869987296702\twith¬:0.07484519970796578\twent:0.051956395963267496\twith­:0.049332953914623\tset:0.048558854249243624\tcarry:0.042956854177215474\tgo:0.04238514207685828\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"the:0.6771604125454543\tThe:0.10405495946918285\ta:0.05955263304505964\tof:0.04513217032495798\ttho:0.035400578681523104\tand:0.02552338989868955\tin:0.019624987803883828\tby:0.012120843026961373\ttbe:0.011430025204287365\t:0.01\n",
"more:0.3399511309798218\tof:0.12338976351398352\tthe:0.09003032785032533\tto:0.08994750128091973\tless:0.08196787438196218\tand:0.07234666857485643\tfor:0.07055527090226879\tgreater:0.06903229487451261\tbetter:0.052779167641349656\t:0.01\n",
"as:0.2985161342998676\tbe:0.21538515598508545\tis:0.12162806494449845\tand:0.08749895254638534\tare:0.07859686173524184\twas:0.057728003037305624\therein:0.04521854126074256\tmanner:0.044331060728287644\tbeen:0.041097225462585554\t:0.01\n",
"of:0.1999424687125699\tin:0.1656467326208487\twith:0.11645299053601685\tis:0.1040801064141914\twas:0.09222275369589086\tto:0.09117078987590282\tas:0.08128756733327806\tby:0.07100448636304192\tand:0.06819210444825957\t:0.01\n",
"it:0.18996776648825836\twhich:0.16693146919859034\tIt:0.1638838509302785\tthat:0.1088783226660808\twho:0.09754653858074362\the:0.09729440751502057\tthere:0.07644641877125938\tand:0.047844242933137104\tThere:0.041206982916631135\t:0.01\n",
"right:0.14498930154108566\tand:0.14490627059025893\table:0.13089070000017228\torder:0.12160117565788678\tmade:0.11144490107913345\tbegan:0.09571438731439802\tgo:0.08064696002923302\tas:0.08001489741286016\tnecessary:0.07979140637497179\t:0.01\n",
"of:0.3157160003613231\tand:0.1448157486679456\tthe:0.14213332720074184\tfor:0.1226838964611895\ton:0.08698856620131301\tfrom:0.0553071163125035\tto:0.04865667337815363\tabout:0.04601522841175804\tfeet:0.027683443005071712\t:0.01\n",
"<s>:0.1812349992510244\tof:0.1485336386140675\tand:0.13006061262552893\tthat:0.12162976213486221\tfor:0.11327536416934483\tto:0.10727666673496507\tas:0.09432962898021971\tin:0.047328756450730224\tbut:0.04633057103925719\t:0.01\n",
"the:0.2985070367095665\tof:0.22823883383643853\tand:0.18509944745462079\ta:0.07009287037703321\t.:0.05496107869977593\tThe:0.04325544799080888\tin:0.038663551162982375\tat:0.035793868407326485\t<s>:0.03538786536144739\t:0.01\n",
"it:0.2785617870082724\tIt:0.14058657073537015\tas:0.12754388100244876\twhich:0.12453991685388906\tthat:0.10374278837395833\tthey:0.0775235962159316\tthere:0.055052625199923454\tand:0.042753566693321025\the:0.039695267916885144\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"of:0.37888252473908907\tin:0.1282086180355952\tto:0.10441990140392647\tand:0.09593832568712528\tthat:0.06971949913892456\twith:0.06106707741411148\tfor:0.0608570667914635\tby:0.05176039007607272\tfrom:0.039146596713691764\t:0.01\n",
"know:0.20831005322820814\tof:0.17490440833293885\tand:0.16422534047026321\tto:0.11379831566269412\tor:0.0894677887180011\tsee:0.08277321125482821\tdo:0.056574108317144295\twith:0.05186213472630067\tfor:0.04808463928962136\t:0.01\n",
"seems:0.20061032224562486\tought:0.1626558226948623\tseemed:0.11415043407775209\tseem:0.11350109702171879\tand:0.09261260981894813\tis:0.08389850523345983\tsaid:0.08225642808909558\tsupposed:0.07131107961557845\tnot:0.06900370120295983\t:0.01\n",
"of:0.39762324547172634\tin:0.26683365063192516\tto:0.09361883493416964\tIn:0.06946543047279935\tfrom:0.04526568332755266\tand:0.0368184918344685\tSouth:0.031842699644138946\tfor:0.0287224661618975\twith:0.019809497521321683\t:0.01\n",
"he:0.25961962303470815\tit:0.12744278086804212\tthat:0.1268902206734563\twhich:0.09481371991846406\twho:0.08854500497100852\tand:0.08462410245094608\tI:0.07966538436950996\tthey:0.07047920691886865\tIt:0.05791995679499613\t:0.01\n",
"and:0.26459296055211207\twell:0.20310619057021642\tknown:0.11089893342512758\tfar:0.1099496145054363\tthat:0.0743669830167934\tin:0.060928470903236\tmade:0.05715551260876778\tas:0.05645340864511419\tit:0.05254792577319643\t:0.01\n",
"of:0.362133078449096\tto:0.158289120496801\tand:0.13783771530404562\tin:0.1176538162137908\tby:0.055713936263305903\tfor:0.04597070552506934\tall:0.0451648199638724\twith:0.04129097466377969\tIn:0.025945833120239105\t:0.01\n",
"and:0.24886768355745395\tto:0.2104528790760637\tof:0.1964908932776959\tthe:0.14065730354852884\tI:0.04571812338277746\tin:0.0391691284725516\t<s>:0.03831833146332005\ta:0.03655665779863761\tfor:0.03376899942297101\t:0.01\n",
"the:0.32344792120366006\tand:0.13574983968668922\ta:0.12045919366652863\tof:0.11144736938601565\tto:0.10819936268192318\tso:0.05485077267885555\tis:0.05113804921283257\tin:0.04560258755074353\tbe:0.039104903932751574\t:0.01\n",
"the:0.24986431031678558\tDeer:0.2277760061457404\tGrand:0.15595310013966643\tsaid:0.13508505221619752\tof:0.08724238075116693\tsub-:0.04226343954244799\tor:0.03307215888831134\tand:0.029922159619855834\tstreet:0.02882139237982795\t:0.01\n",
"I:0.2732489239644518\twe:0.17617814803174364\tthey:0.1474959810707173\twho:0.10812685508557988\tWe:0.10074190001411792\tyou:0.05379187475987474\tThey:0.04594620870144866\twould:0.0430423795777022\tto:0.04142772879436394\t:0.01\n",
"the:0.30060179356401123\tof:0.18826189021911008\tand:0.16358060993491338\tto:0.13449089246542412\ta:0.05855641904237988\tthat:0.04632405944145141\t<s>:0.03635869961260624\tThe:0.032777833298809074\tin:0.029047802421294445\t:0.01\n",
"the:0.3101469464245839\tand:0.18139257296176556\tof:0.1189750832204775\tin:0.09177950457907187\tto:0.06476035881673946\tfor:0.06265243913967722\tthat:0.06163497939193545\tor:0.05030597233991142\tbe-:0.04835214312583766\t:0.01\n",
"and:0.33239989233247463\tof:0.10906428886952288\tso:0.10194209472296804\tsaid:0.10084916516986978\tfact:0.09491754657429345\tto:0.07090237211259408\tall:0.062189491814995224\tis:0.06158182084015964\tgiven:0.05615332756312231\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"and:0.24880342808396733\tit:0.13004082066380335\tnot:0.11531520210772177\thim:0.09655116730315638\twas:0.08707426415382356\tthere:0.08370981791677358\tis:0.0825605726489113\tbut:0.07757204074433986\tthat:0.06837268637750289\t:0.01\n",
"and:0.2908094080775133\tbe:0.21275042890710225\the:0.1251840203085547\twas:0.0754855876146505\tis:0.0740559724421692\thave:0.0564490768020403\twho:0.05631071306329796\tthey:0.05530497076326166\tbeen:0.04364982202141006\t:0.01\n",
"as:0.2524008056870584\tis:0.19882028255572637\twas:0.12429497943033116\tbe:0.11372823863661288\tand:0.10748956891618788\tnot:0.0663891224159077\tare:0.05845555361065586\tbeen:0.03820733866523475\tIs:0.030214110082285073\t:0.01\n",
"the:0.28194576944076694\tin:0.16830115934442097\tof:0.12175089403444911\tand:0.10861914080625808\ta:0.0827300313214211\tto:0.07226688505594739\tthat:0.05730899637674186\tany:0.05038384377867689\tfor:0.04669327984131783\t:0.01\n",
"be:0.3198607998899404\tis:0.2519029519667156\twas:0.10003962784347317\tand:0.06675212132846854\tbeen:0.05588683628801255\tare:0.049452897885041674\tof:0.04933885130790541\tnot:0.04893327553992755\tso:0.04783263795051523\t:0.01\n",
"of:0.26182314873404294\tto:0.15955166242681296\tfor:0.10846784161131116\tand:0.08982069139084164\tby:0.08893091089615991\twith:0.07827004845367644\tthat:0.07083253055370707\tin:0.06984676014697029\tas:0.06245640578647762\t:0.01\n",
"the:0.25043916454981885\tof:0.21659617165600029\thundred:0.11243437490031136\tmany:0.07502568615456796\tand:0.07193177440216496\tfew:0.07175786988286735\ttwo:0.07120294778205143\tthousand:0.06639029272250214\tby:0.054221717949715656\t:0.01\n",
"number:0.1827535310953414\tpiece:0.15761797179737239\tline:0.13134542019014162\tkind:0.10463996779081434\tsort:0.09682837059382468\tamount:0.09079495924454531\tboard:0.08213404050637677\tBoard:0.07693618608461748\tyears:0.06694955269696583\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.8219880349822869\tThe:0.0572230334331343\ttho:0.03474009865327672\ta:0.03350300663356312\ttbe:0.013414880888981554\tthis:0.009663695022434424\tand:0.008022034160195288\tan:0.006244820765199966\tin:0.0052003954609277205\t:0.01\n",
"be:0.3815702715010108\twas:0.2111327786754505\tis:0.08494764841678835\tbeen:0.07621023464095547\twere:0.0727782630759154\tand:0.059685291934145214\tare:0.05536818863248309\tbeing:0.025281795043705712\the:0.023025528079545554\t:0.01\n",
"of:0.21117435763001066\t.:0.1594096194106117\tthe:0.15358069010401934\tand:0.140029907110392\tJohn:0.07536611439243111\tA.:0.0660193253858156\tMiss:0.06566616116472085\tH.:0.06005863552721135\tJ.:0.05869518927478727\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"they:0.1656293186544688\tit:0.14718725320923617\tI:0.13911525474397318\the:0.13517212239762635\tand:0.11617537429809911\tyou:0.10581980728694049\twe:0.06344024117967605\twhich:0.060303840255538414\tIt:0.05715678797444145\t:0.01\n",
"the:0.3887251873701422\tand:0.19418139316348373\tof:0.16525703200196268\ta:0.057232651944801614\tto:0.050987387334622054\tThe:0.03680948961551606\tin:0.03417219894548981\t.:0.0313964921843071\ttho:0.03123816743967465\t:0.01\n",
"the:0.36607440056592166\ta:0.1206726139929553\tthis:0.11846607832365261\tof:0.09586192260531981\tin:0.07087262514001848\tquarter:0.0699348578883592\tevery:0.05601517811335796\tthat:0.04940470498579102\tfirst:0.04269761838462403\t:0.01\n",
"the:0.3897793605086191\tof:0.20480600690331546\tand:0.07783593727942777\ta:0.06885753491610642\tin:0.061051611475386736\tto:0.057079007089372094\tby:0.052165281300980824\tfor:0.043868735649481475\tat:0.0345565248773102\t:0.01\n",
";:0.14858161272700382\tup:0.1467474654948133\tone:0.12198578422094011\thundred:0.10656946158930602\tday:0.10285343698004001\tit,:0.09962059277649313\tdue:0.09113539537332348\tthem,:0.08780961320473646\tmade:0.08469663763334367\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"both:0.18552509555024163\tthem:0.11510325069591053\tit:0.10524799723268265\tthe:0.10193294163968318\tfeet:0.10158140953190008\twell:0.09923943738132708\tmen:0.09860317242414227\tand:0.09433726551068838\tup:0.08842943003342427\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"the:0.292637807673609\tand:0.2213087906255793\tof:0.11863059456932074\tin:0.069392364097213\twas:0.0693297847939321\tto:0.06048329639524874\tfor:0.053710583531059\tthat:0.052451811278698544\tis:0.052054967035339364\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.5261033524814753\tof:0.17198547841442746\tand:0.06668059387903402\ta:0.0530367039653942\tfor:0.04862074372770557\tin:0.033456792579018686\this:0.03288057575402891\ttheir:0.03178467793069512\tto:0.025451081268220686\t:0.01\n",
"of:0.2398708670291844\tthe:0.22743525417047472\tand:0.13139002385520804\tto:0.10376973167625372\ta:0.08712962001455624\tat:0.06768600089169872\this:0.04664315861358613\tin:0.04554117936171022\tis:0.04053416438732785\t:0.01\n",
"of:0.3010790243290333\tin:0.28366019365801887\tto:0.10485288483195473\tIn:0.07168101660061829\tand:0.0559338618846321\tthat:0.05350354221954182\ton:0.04344781557547365\tfrom:0.038931652205114936\tfor:0.036910008695612326\t:0.01\n",
"is:0.17547306894649084\tas:0.16637386077643135\tand:0.10975649364563426\tseemed:0.10019231770455378\thim:0.09935835505600621\table:0.09340883214762076\twas:0.0915761993851579\tenough:0.07875025414499698\ttime:0.075110618193108\t:0.01\n",
"of:0.18374920975532094\tand:0.17041502860124685\tfor:0.13722662368375477\tto:0.13145336070825117\tat:0.10399846411297603\tthe:0.08430598962064165\tin:0.07333475914951251\tthat:0.056955975908246796\ta:0.04856058846004937\t:0.01\n",
"was:0.22415574371386882\tand:0.2110551789391199\tis:0.1733516162125223\tbe:0.08255725590994101\tbeen:0.06352360068086782\the:0.06164106414839059\thas:0.0599436335515693\tit:0.0568912297436642\tI:0.056880677100056086\t:0.01\n",
"and:0.20640199996913144\tthe:0.19513979195518444\tto:0.1820168501707598\ta:0.1511478685445872\tat:0.0888387473287772\tof:0.060796000082638385\ton:0.041078294430185174\tor:0.033605946170235615\tby:0.030974501348500792\t:0.01\n",
"and:0.26101964257099325\tthe:0.16415911306783446\tof:0.12408699178331607\tto:0.09827162529083787\tthat:0.08015138600331724\twhich:0.07794798357721452\tin:0.0697676812569126\ta:0.059983688785928135\tor:0.05461188766364605\t:0.01\n",
"so:0.30106764526166185\tas:0.1594142417368375\ttoo:0.14662293735068116\tvery:0.11912597325596035\ta:0.0768337391180406\thow:0.05921979456784427\tof:0.04547482314572756\tis:0.045405427348809854\tnot:0.036835418214436796\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"this:0.3581531499328229\tThis:0.2289338145512126\tthe:0.18937572416249307\tthat:0.07507108255816303\tThe:0.04597848402401368\twhole:0.025384025584922396\tone:0.025163522600671537\tany:0.021963561707314217\this:0.019976634878386572\t:0.01\n",
"of:0.23170269280583022\ton:0.19382362680516757\tin:0.1918423255789484\tto:0.13891909530276134\tfrom:0.06267723158640603\tIn:0.05912058039929489\tfor:0.04159472430339258\tand:0.03761738765106908\tby:0.03270233556712992\t:0.01\n",
"a:0.3592881739533128\tthe:0.21192406670007316\tis:0.10880093558529376\twas:0.09658720179040066\tbe:0.05909318920468125\tare:0.053204779608334835\tand:0.039641101285060605\tnot:0.03125947966499801\twere:0.030201072207844966\t:0.01\n",
"not:0.19141518125706355\tyou:0.12883463538498088\twould:0.12285779209737167\tto:0.11593868654498454\twill:0.10834285039657382\tcannot:0.10174619527633329\tthey:0.08129885348368318\tI:0.07626694116160088\twe:0.06329886439740827\t:0.01\n",
"of:0.33414019334305783\tin:0.1193163369723613\tthat:0.09184271625067619\tfor:0.08893498064177045\tany:0.08657045303001525\tto:0.08592384413265503\twith:0.08520797874999389\tby:0.058306818404313926\tupon:0.03975667847515616\t:0.01\n",
"and:0.5170295445657328\tthat:0.07657271748126364\tas:0.07437327961119211\tAnd:0.06434397902634773\tis:0.057741578217593445\tbe:0.05349479362109388\tit:0.05287436305989897\twas:0.04750464897645512\tto:0.046065095440422366\t:0.01\n",
"the:0.3727091127604743\ttake:0.3418219748606355\ttaking:0.08317299974613886\tto:0.03436967747849446\ta:0.03421368093946092\ttook:0.03284930344696243\ttaken:0.03214761627662365\tand:0.029446035000314022\tor:0.029269599490895647\t:0.01\n",
"the:0.278305383325824\tof:0.24945770729576316\tand:0.21115352753637823\tThe:0.05102522910488571\tto:0.047836591761720934\ta:0.04337618184648026\tfor:0.03916386431459384\tin:0.03779993463743551\tat:0.031881580176918174\t:0.01\n",
"the:0.6909464731648476\tThe:0.08599042925802547\this:0.04899319853860734\tat:0.04584546247353086\ttho:0.0375345941758919\ttheir:0.02303560212699381\twas:0.021410357597646208\tand:0.018865869070959166\tmy:0.01737801359349764\t:0.01\n",
"and:0.26075294419921313\tof:0.22915902799622742\tfor:0.10582329999415234\tis:0.09087370564962333\tto:0.07948866286902459\tfact:0.07659015955742253\tin:0.05656764429993612\tbut:0.04571590502073367\tall:0.04502865041366701\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"together:0.41806924273470086\tand:0.20729818262112892\tconnection:0.06938401986937735\tconnected:0.06191841831840699\tit:0.05419620132344389\tdo:0.04868631902903216\tTogether:0.04814491198966658\thim:0.0434621770341045\tthem:0.03884052708013888\t:0.01\n",
"to:0.7421926377803764\twill:0.09033008935355803\twould:0.039722520837555286\tand:0.03905820715177989\tnot:0.021083182276228393\tmay:0.016698485369545654\tcan:0.014549663238329869\tI:0.014476563508391514\tcould:0.011888650484234944\t:0.01\n",
"of:0.40774956220192454\tin:0.22976723993441822\tthe:0.10578798585405844\tfrom:0.07495358140398738\tto:0.05644630172058259\tIn:0.04671637014558777\tby:0.026485462077350832\tand:0.024099286640628034\ta:0.01799421002146214\t:0.01\n",
"and:0.26745267416887475\tBeginning:0.22525587652116277\twas:0.11377028395927055\tCommencing:0.10809071640443553\tis:0.07344548581441636\tthat:0.051702392669663144\tlook:0.05066270801955132\tit:0.049895643535544223\thim:0.049724218907081376\t:0.01\n",
"and:0.2705907675932464\tthe:0.14746265398063077\tto:0.1318326486828283\tof:0.10420719392527239\tfor:0.095865034981433\twill:0.07554048064638663\tthat:0.057988272608934015\ta:0.05564313008957005\twhich:0.05086981749169847\t:0.01\n",
"and:0.2652634788189831\tplace:0.20608702038716104\tpoint:0.1196718034689221\tcases:0.08459865196600339\tspot:0.08338543012990264\tthat:0.07005480893263438\tevery-:0.06056738561391333\tplaces:0.05325281402571342\tof:0.04711860665676656\t:0.01\n",
"the:0.19966594348907915\tand:0.17922247150045179\tof:0.15563650816883337\tit:0.09240841064240218\tthat:0.08600859434364928\twill:0.07223203728714628\tto:0.0701500041630769\ta:0.0694699337325797\tas:0.06520609667278127\t:0.01\n",
"and:0.2619304760946804\tnot:0.1736818553146972\tof:0.10576104153790422\tthat:0.09773133099413737\tin:0.07944326507590299\tis:0.0699470763065736\tfor:0.06913197455253926\tit:0.06907088863087069\twas:0.06330209149269428\t:0.01\n",
"and:0.1855266834317403\tthe:0.17928268355096624\tof:0.1537079584360458\tto:0.14257578856808903\tbe:0.09033375319685075\twas:0.07646336480896145\tis:0.06802686908593894\tin:0.052184043745382366\tfor:0.04189885517602517\t:0.01\n",
"the:0.21188864052440531\tMr.:0.18230324160418387\tof:0.14365646177927832\tMrs.:0.10583101989079333\t.:0.09386656130533207\tand:0.08416657032891245\tby:0.06677109781304016\tMiss:0.05434407117366929\tJ.:0.047172335580385076\t:0.01\n",
"the:0.5101614784978014\tsaid:0.18737809816171636\tThe:0.07504818363305694\ta:0.06424286349916335\tof:0.03721294669440086\tand:0.035621818503543005\tthis:0.02949199582665493\tthat:0.026070181434781937\ttho:0.02477243374888122\t:0.01\n",
"the:0.4949235288684638\this:0.1351048849443216\ta:0.06883273615460797\ttheir:0.06604722186559722\tand:0.06410360899951859\tThe:0.05057762544580767\tof:0.03855966635509371\ttho:0.036805797118272005\tmy:0.03504493024831741\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.2344792043612265\tand:0.1879959092709331\tof:0.13507886899256621\tby:0.08829798253983687\tare:0.08073832153348424\twas:0.07434658375082344\tto:0.07321331127368107\tis:0.05898261182038303\tan:0.05686720645706555\t:0.01\n",
"a:0.36414687985677363\tthe:0.28945743871961865\tof:0.09715284158814004\tThe:0.05166850725792568\tto:0.04999788112856331\tand:0.04984397688879233\tan:0.03758268902265356\tA:0.029200413908697435\tthat:0.020949371628835346\t:0.01\n",
"and:0.17341766595477814\twill:0.16362732968771046\tI:0.16101970430852675\twould:0.09743978995526462\the:0.0906974985394129\tthey:0.08946858763093521\tnot:0.08032645561354172\twe:0.08026315930910687\twho:0.053739809000723386\t:0.01\n",
"the:0.3852091685420713\tof:0.15029792416713433\tand:0.13361736839571411\ta:0.11891032624485717\tin:0.05055226342026037\tto:0.042450229405257604\tfor:0.03799538051249681\tor:0.03633593244546821\tthat:0.034631406866740044\t:0.01\n",
"and:0.17565151401501433\tof:0.1693590549182678\tto:0.16815386707729313\tI:0.10762067317242824\tfor:0.10414485509485889\tthe:0.06994998545589694\tin:0.06820345184069318\twi:0.06400116680375229\tis:0.06291543162179532\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"of:0.29118047174707007\tand:0.1757537886620285\tin:0.12875169808407108\tfor:0.09362229079715588\tto:0.08753374088251252\tthat:0.06375106624655734\twith:0.06338157976379154\tall:0.050782007424572256\ton:0.03524335639224078\t:0.01\n",
"it:0.24112649263459637\the:0.17660792899787944\tIt:0.1713624494321809\tI:0.08209974212840981\tHe:0.07828896755119588\twhich:0.07500438521777203\tand:0.06286527553672039\twho:0.0534546761422916\tthere:0.049190082358953446\t:0.01\n",
"he:0.4626858432275594\tand:0.12239235466598652\tHe:0.09344531799164073\tI:0.07611585574919955\tshe:0.06761866978887157\thave:0.06399174865015224\tis:0.037479881534816205\twho:0.03375192065432583\thad:0.032518407737447914\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.2938522352200971\tthe:0.24819590173708098\tand:0.11969300575644332\tin:0.07091505630862042\ttheir:0.06039908148069219\ta:0.059800177336002236\this:0.050861032569951295\tor:0.043716039775019214\tto:0.04256746981609316\t:0.01\n",
"it:0.30484125798964684\tIt:0.2544639010529965\twhich:0.11012706971336343\tthere:0.08280022151822534\tThis:0.0640269063955799\the:0.05777756725873365\tthat:0.047288057574345295\twho:0.035237627470267895\twhat:0.03343739102684119\t:0.01\n",
"the:0.3518883023618443\this:0.22896860607682412\ta:0.1408294081462464\ther:0.06840152783142357\tmy:0.06453086672203753\tand:0.05346272608008913\tto:0.031727824523225874\tyour:0.03106393986288563\ttheir:0.019126798395423576\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2651191041561604\tto:0.15902387146935756\tfor:0.14847592966167034\tand:0.09608100681338001\tin:0.08864697683198765\tby:0.06746136767362815\tthat:0.06516709691702467\twith:0.05862181668217918\tunder:0.04140282979461223\t:0.01\n",
"and:0.2878262999223231\twhich:0.20403505032011351\the:0.10767513788694527\tIt:0.08617764780587811\tit:0.07824411472907912\tthat:0.07588289100211047\thave:0.051737473446125615\twho:0.05040535899331959\thas:0.0480160258941052\t:0.01\n",
"the:0.24595583657850162\tof:0.21495727378362803\tand:0.13393368550910048\tto:0.12247455764936488\ta:0.07002243566947185\tby:0.058449082511691494\t<s>:0.055936365745404296\ton:0.055007306677895926\tfrom:0.03326345587494148\t:0.01\n",
"<s>:0.24643505364970167\tthat:0.22567481111489607\tand:0.11986402130738497\tit.:0.10509411761497947\tbut:0.07308474448235741\tas:0.06237988616146023\tthem.:0.06028718069699419\tcountry.:0.04939834692648971\tof:0.04778183804573639\t:0.01\n",
"it:0.2837305078576197\tIt:0.20152701282994856\the:0.16580848824961875\tI:0.09043772624172819\tHe:0.06530498743196474\twhich:0.05591978795526604\tand:0.045054681234833936\tshe:0.04448831708438693\tthere:0.037728491114633\t:0.01\n",
"in:0.23825170981030286\tand:0.2264381583793566\tto:0.1434407231973473\tof:0.10424059673179355\tIn:0.06899645387868518\tafter:0.06787079326549833\the:0.04969012775341186\tfor:0.04924405894897891\tthat:0.04182737803462546\t:0.01\n",
"for:0.6013289230689811\tat:0.09110443293380621\tin:0.06992563329248286\tFor:0.06400949516320573\tof:0.056865022347074023\tand:0.03590442668851858\tthat:0.02637639047509608\tIn:0.022913857647085412\tto:0.02157181838374994\t:0.01\n",
"of:0.5117494809737941\tthe:0.24883560165099713\tsaid:0.06688364093262955\tEng-:0.04079666510498243\ton:0.02831343421083743\tdescribed:0.025713607203424693\tthis:0.02433417819028084\tin:0.022829859446563485\tour:0.020543532286490224\t:0.01\n",
"his:0.28117879062463313\ttheir:0.22025063193297084\tand:0.10227463499690218\tof:0.09263115340617133\tmy:0.07408512711306847\tour:0.06913574139538309\ther:0.05214755109639643\tmany:0.05044550402722198\tthe:0.047850865407252606\t:0.01\n",
"is:0.31951760176546634\tare:0.19163860183836834\twas:0.15368267549824108\tand:0.10570781093280956\twere:0.057177451311255165\tIs:0.057024500446761835\tbut:0.04404342100967994\tbe:0.040216998215991756\the:0.02099093898142593\t:0.01\n",
"<s>:0.29207441653803845\tand:0.22271678275296156\tthat:0.11837511456160706\twas:0.08553824978284391\t.:0.06268571121841245\tbe:0.06023776491705416\tis:0.05194672075508322\tbut:0.0493442551941794\tfeet:0.047080984279819875\t:0.01\n",
"of:0.28660205638958686\tto:0.13630207810280906\tin:0.11221220031042933\tat:0.09091149461870045\tfor:0.08626398095075996\tby:0.08015269857507397\tor:0.06871985765786004\tif:0.06758244889364594\tthat:0.061253184501134324\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"a:0.22296249402828075\tthe:0.22024837911567044\tand:0.18180641598779673\tof:0.09800173697214572\tto:0.07943287090004209\tin:0.05391618698558149\tfor:0.05151074007243888\tmore:0.04217669130999481\tthat:0.039944484628049\t:0.01\n",
"as:0.19436001227001629\tand:0.1409601278107517\taccording:0.12688257803862749\tup:0.1166538996954941\tthem:0.09546248046552396\tregard:0.08571584773899625\tcome:0.08276545836165355\tback:0.07647325798284847\treturn:0.07072633763608811\t:0.01\n",
"and:0.2781240803536436\tthe:0.24499327341649485\tany:0.149876260036132\tor:0.06397738688298062\tall:0.05889272148695808\tin:0.05678342573136507\tof:0.0564669213305342\tsome:0.04441867041103911\tan-:0.03646726035085242\t:0.01\n",
"and:0.23734077769691914\tthat:0.12793612774851235\tof:0.1135368078051796\t<s>:0.09712882796941788\tthe:0.09688307805290702\t-:0.08455771477803699\tit:0.08066024149164285\twhich:0.0773829143889882\tin:0.07457351006839595\t:0.01\n",
"more:0.61792152676378\tless:0.30736975424625357\tthree:0.015856878617428277\trather:0.014125485452873109\tmoro:0.008523458289532635\tbetter:0.007866032645765509\tother:0.006864907301435027\ttwo:0.005841799353187173\tMore:0.005630157329744773\t:0.01\n",
"the:0.24443541423954634\tof:0.18374312724406464\tto:0.15163824320550195\tand:0.1458265365129777\twas:0.07871943567445676\tis:0.059835011215779735\tthat:0.043518630813424865\ton:0.042263069864140246\tMr.:0.040020531230107854\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.5928788572719854\thigh:0.09102552116000254\tand:0.07178471317556966\tThe:0.05427862657711382\tlow:0.052200865030443806\ttho:0.035908652062017474\tin:0.03365858585148453\tof:0.0304474482204507\ta:0.027816730650932153\t:0.01\n",
"and:0.2014516994592032\tthe:0.1595126103428818\tof:0.15413369281247444\ta:0.13825525449150425\tto:0.09802150809366585\tthat:0.08076012035122782\tin:0.06125902592884706\tfor:0.05098105665076284\ther:0.04562503186943288\t:0.01\n",
"of:0.22464712816680416\tfor:0.19331961274483064\tin:0.14769609650521273\tto:0.14126939486306486\twith:0.09375677642416021\tand:0.07717433165823813\tat:0.0438799919110056\tall:0.03582208323005566\tby:0.03243458449662816\t:0.01\n",
"the:0.2152619333506972\tto:0.1602876840419026\tof:0.12195256892339093\tand:0.11776603568827718\tat:0.11165835998304419\tfor:0.07979084678065497\tin:0.07798707681691223\twas:0.05270833645103703\tis:0.05258715796408372\t:0.01\n",
";:0.14099648764783912\tit,:0.11967066680326216\tin:0.11681118873348909\tup:0.11375609777390536\tthem,:0.11352792153632651\thim,:0.11175844987988479\thim:0.10982565950269928\tthem:0.08462205756098831\tit:0.0790314705616053\t:0.01\n",
"of:0.3236739400322047\tthe:0.17522126355847117\ton:0.13659216664388932\tand:0.11762970093097352\tat:0.06483933865343272\tto:0.06277611377794551\tfrom:0.04330010879201497\tin:0.042204689432037513\twith:0.023762678179030557\t:0.01\n",
"men:0.19745198911335177\tstreet:0.127993222025304\trights:0.11819052309946497\tcity:0.10716398085429239\thouse:0.09559947527536626\tstate:0.09118873042003896\tone:0.08801297667548624\tland:0.0850156457563817\twomen:0.07938345678031365\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"of:0.4415223254799161\tin:0.22285811504356326\tto:0.10863796317944772\tfor:0.04454138222108918\tIn:0.04424139023589728\tthat:0.036856594730027815\ton:0.036093473861833314\tfrom:0.030831678591184852\tby:0.02441707665704054\t:0.01\n",
"be:0.22720467416491902\tis:0.15663273382975712\twas:0.15156761606107277\tnot:0.09919936580122982\tbeen:0.08055259055332355\ta:0.07060531373758434\tthe:0.06975333949939654\tno:0.06871270637223961\tto:0.06577165998047729\t:0.01\n",
"a:0.1987559573528591\tso:0.17362727099498979\tvery:0.15715297029972117\tthe:0.10281780220492101\tof:0.09368187826141527\tis:0.06854870576277458\tbe:0.06735471406734665\tas:0.06630524296085273\tare:0.061755458095119765\t:0.01\n",
"that:0.3079226774387507\tand:0.12740983564660438\twhich:0.10800237368995363\tas:0.10384320372855738\tif:0.10217540447352638\twhen:0.08153448436885082\tbut:0.06292234845485281\twhat:0.052329547174469006\tIf:0.04386012502443491\t:0.01\n",
"of:0.367563955030944\tto:0.10542727409805819\tand:0.10425163184824796\tin:0.08959589629597636\twith:0.07753462591860157\ton:0.06613590704384607\tfor:0.06607513790592778\tthat:0.05711983122720849\tby:0.05629574063118957\t:0.01\n",
"and:0.1495899024693767\tmiles:0.14173092433846196\tfree:0.13778745773831563\tfar:0.11531946154984084\taway:0.11422025854048723\tsuffering:0.09289524012248203\thim:0.08182258540364966\tthem:0.08046450554330968\tor:0.07616966429407625\t:0.01\n",
"of:0.28640640461061107\tin:0.18574846569308753\tthe:0.13619296599720906\tfor:0.1029673868366163\tand:0.0659405014742328\tat:0.06585125079721059\ttheir:0.050807951702578624\tfrom:0.048444754801736975\tby:0.047640318086717086\t:0.01\n",
"a:0.25927569668854844\tthe:0.1596816715678198\tof:0.144059877520807\tand:0.13781557821441345\tthat:0.07771796962021134\tto:0.0735251714437793\twill:0.054104766993769156\tyou:0.048944679846919525\tby:0.03487458810373192\t:0.01\n",
"the:0.35861451900589214\tMr.:0.1291559629555713\tof:0.1199072506314825\tThe:0.10475232618943306\tand:0.0967371407604443\tthat:0.07632406646832235\ta:0.046895937127093126\this:0.030747167493934736\tMrs.:0.026865629367826563\t:0.01\n",
"the:0.3218467846617875\tof:0.1828529761416146\tand:0.1232207420947663\ta:0.09674086771067118\tto:0.08641160396374103\tin:0.0783857202791078\tbe:0.0377967086794569\tfor:0.032157504111148996\twas:0.030587092357705764\t:0.01\n",
"<s>:0.4173164225725801\tit.:0.1363583792777605\thim.:0.11025291419831101\tthem.:0.08780030555057207\ttime.:0.0608332873359603\tday.:0.04583414515528582\tcountry.:0.04527116446958167\t.:0.04501599342514429\twork.:0.041317388014804196\t:0.01\n",
"and:0.20348906658929009\tto:0.18344649491676243\tthe:0.12878929711072118\tof:0.10497680884400802\tin:0.0851550016199043\tbe:0.08475666165101707\twas:0.07037028601373783\tre-:0.06636749950536976\tfor:0.06264888374918934\t:0.01\n",
"the:0.5702538009468723\tThe:0.120681214188969\this:0.11416774789822903\tmy:0.04392153192316321\tour:0.037129260946400844\ttheir:0.034982867790401856\ttho:0.024928155787078122\tyour:0.02197252937523978\tand:0.021962891143645982\t:0.01\n",
"to:0.7567029891243918\tand:0.059297970363313475\twill:0.04750009129947945\twould:0.02723702948162527\tcan:0.0241035356897098\tI:0.021217175202841235\tnot:0.01929707141157958\tcould:0.0181083299788307\twho:0.016535807448228572\t:0.01\n",
"that:0.2994240904225421\tand:0.21670346937709573\twhich:0.14122881951388647\tbut:0.09192054755653989\tas:0.07340828337400185\twhen:0.06241604775346419\tto:0.03709501725824319\twhere:0.03572550459949674\tif:0.03207822014472997\t:0.01\n",
"of:0.19772967641121048\tas:0.1623673418679956\tis:0.11714445471395858\tand:0.09677175778520736\tthat:0.0943754287296158\twas:0.08357915383269263\tby:0.08031186848504734\tfor:0.07886594540065145\tto:0.07885437277362076\t:0.01\n",
"a:0.5223694731938258\tthe:0.14828458741456418\tthis:0.10483958093181162\tsaid:0.05066692963943001\tto:0.04425725136869303\tthat:0.0414509033389508\tstarting:0.03071683544346956\tin:0.02421863400824424\tany:0.02319580466101077\t:0.01\n",
"and:0.24324582888378196\tthe:0.1385113941096484\tof:0.12598359052043423\tto:0.11712117345795753\twas:0.09128462150356687\tfor:0.0720983562371112\tin:0.07175195145176773\ta:0.06672163572922717\tis:0.06328144810650484\t:0.01\n",
"able:0.1460884501832367\tis:0.1327602778722476\tand:0.12406381927128401\twilling:0.11515186704151566\tas:0.10022329918574203\tready:0.09602337365376808\tunable:0.09581860499410023\thave:0.09273006244417653\tgoing:0.08714024535392915\t:0.01\n",
"the:0.3962949495465446\tof:0.15783793976659047\tand:0.11820190240666259\ta:0.08725299632490734\tto:0.08555916535135934\tin:0.0484589888332238\tor:0.039354258230343456\tbe:0.028572848201443412\tfor:0.028466951338925\t:0.01\n",
"a:0.36733837745304476\tof:0.20930479419388945\tthe:0.1418321010273453\tin:0.08940711385632603\tand:0.05263054009163412\tfor:0.04069679166752938\twith:0.037325855070140364\tby:0.025920039805228737\tvery:0.02554438683486194\t:0.01\n",
"and:0.19865574234565242\tLots:0.16244693192105472\tthe:0.1496409968713232\tof:0.1262979025185701\tlots:0.076268542054311\tto:0.07339886648128544\t1:0.06961163493266415\tsouth:0.06759261038095549\tthan:0.06608677249418349\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"the:0.44290935331529907\tan:0.1154961620279815\tand:0.11220014026520325\tof:0.07542564055814771\tmost:0.07393318303736907\ta:0.06451085647534707\tThe:0.04772521232947496\tor:0.029090658542996948\this:0.028708793448180482\t:0.01\n",
"men:0.19894291467849892\t;:0.16688934732136124\tin:0.10298308815773363\tcity:0.09232397203409991\tand:0.09206108117352081\tone:0.09074628757358015\t:0.0895565834342809\tup:0.07920630952105269\tright:0.07729041610587174\t:0.01\n",
"two:0.2076573406847707\tthree:0.14024325083864003\tfive:0.1340919586388882\tsix:0.12670142969365694\tten:0.12227776235506702\tfour:0.09332689912608\tone:0.07061843700142587\teight:0.048807228973452084\thundred:0.046275692688019045\t:0.01\n",
"in:0.6050614085174025\tIn:0.13200463247788422\tthe:0.06846611457156565\tof:0.05768059302002426\tfrom:0.03522732819699936\ta:0.027976659922054586\tthis:0.02259959814704807\this:0.020677001187429194\ttheir:0.020306663959592287\t:0.01\n",
"and:0.40864052218060615\tbut:0.13053288478382655\tis:0.1144887341614335\twas:0.09373668400382687\tthat:0.08874150239135194\tbe:0.04404840894988247\tare:0.043318258886554765\thave:0.03437514638321293\thad:0.03211785825930493\t:0.01\n",
"that:0.24851564147726635\tas:0.1862259222278045\twhich:0.12632110892447784\tand:0.10389519460685259\twhen:0.09356410762279063\tif:0.07564880364068473\tbut:0.06218166497864762\twhere:0.053201400439320534\twhat:0.04044615608215515\t:0.01\n",
"the:0.291805945552912\tof:0.19342355124636548\tand:0.1501271194670858\tto:0.08789682410157106\tin:0.08592845644912266\ta:0.059756726633215566\tbe:0.04169138610199541\twas:0.03989037619497697\twhich:0.039479614252755195\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.4546929279038407\ta:0.11365557069512151\tof:0.09036161819593432\tan:0.08840315729699551\tand:0.07588308652672421\tThe:0.06173077519386467\tin:0.04577078819634899\ttho:0.03631278405241932\tany:0.023189291938750793\t:0.01\n",
"of:0.29633572450437873\tin:0.14608538748858488\tto:0.1415677969515685\tfor:0.0941246122349261\tand:0.08474980319055245\twith:0.07400648853301359\ton:0.05839473007661018\tfrom:0.05014706301412718\tby:0.044588394006238215\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.7302656310802613\this:0.05693592902260103\ta:0.03759078052883224\ttho:0.03468916792724477\tin:0.030163807452386737\ttheir:0.02885744066723314\tany:0.027708188483026974\tthis:0.022891576403194055\tThe:0.020897478435219715\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.17088875819441882\tmade:0.14700725502613016\tup:0.14037496326714635\tsecured:0.1032245946741212\tout:0.10290304256707901\ttaken:0.09703783258711497\ted:0.08520391730418442\thim:0.07433795841065471\tdone:0.06902167796915025\t:0.01\n",
"those:0.2620325408316669\tand:0.2542426081629069\tmen:0.1358384419906584\tpeople:0.08288362237137059\tpersons:0.06454797086029966\ttwo:0.057335601553412906\tthese:0.04539143603680406\t<s>:0.04525036398033673\tboth:0.042477414212543946\t:0.01\n",
"they:0.3108320068115007\twe:0.1416150298329768\twho:0.10215659321944376\twhich:0.08754563692364888\tThey:0.07549061664274916\tand:0.07048841619358877\tyou:0.07038237330106752\tthat:0.066758740719713\tWe:0.06473058635531148\t:0.01\n",
"will:0.2754260582151497\tto:0.26502829714075965\tmay:0.08974948564411209\tshall:0.08217768177084493\twould:0.07869052747728551\tshould:0.06041660485486818\tmust:0.04860124052649\tcan:0.04436288435907588\tcould:0.023058890467551215\tnot:0.02248832954386277\t:0.01\n",
"those:0.2940535532506414\tmen:0.1775897284481624\tand:0.15045334244571254\tman:0.14522336634823307\tpeople:0.06434478322106482\tone:0.04976628334666498\tall:0.04605762766324428\tThose:0.03167901439061417\tpersons:0.03083230088566223\t:0.01\n",
"he:0.1696781811805841\tof:0.15125616438695197\tthe:0.14031035466158828\tand:0.13942252418010392\tis:0.11338845433768444\tHe:0.11119375059632036\tthat:0.056790150201288137\tbe:0.05633759310288383\twas:0.051622827352594824\t:0.01\n",
"in:0.2302369982846756\tof:0.21337907374835416\tfor:0.1104729492060416\tto:0.10371676456943\tby:0.08409619871369928\tand:0.06999224005883266\tIn:0.06167138495960386\twith:0.05991798625557256\tis:0.05651640420379036\t:0.01\n",
"away:0.23659703027767814\ttaken:0.1498540700625455\tand:0.1305516562222904\tcome:0.10253730378259353\tthem:0.08963397271673977\tcame:0.08579836897436895\thim:0.07391851146988045\tderived:0.0618818999016364\tout:0.05922718659226694\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"and:0.30936538711391154\tof:0.2551858804932224\tto:0.09347207146335378\tabout:0.07763774702423258\tthan:0.055695961531328955\tthe:0.05273415532441885\ton:0.05094386789118816\tin:0.04992420549854867\tor:0.04504072365979506\t:0.01\n",
"the:0.29227643787135366\tof:0.17782088749567468\tin:0.14157680581294024\tand:0.10933893853717594\tthat:0.07058603379589196\tsuch:0.05254266446356545\tto:0.05240085009927354\tor:0.04720995348500608\twhich:0.046247428439118325\t:0.01\n",
"that:0.22130646457927133\tif:0.18898608896874408\tIf:0.15855489680363039\tand:0.12892091075186915\twhich:0.08835718740626476\tas:0.08748838012832001\twhen:0.043359279748376854\tbut:0.03685455929366056\twhat:0.03617223231986293\t:0.01\n",
"the:0.33616542463330407\tof:0.3084654004840373\ton:0.08983263803364634\tfrom:0.06925924722889036\tin:0.06552232824906824\tto:0.0450047679515154\tand:0.026350501128051308\tSouth:0.025459234566406443\tNorth:0.0239404577250806\t:0.01\n",
"the:0.23269138389509939\tof:0.17227055812632708\tand:0.13665891320837797\tin:0.10858944276806193\tfor:0.08928936883968625\ta:0.08689335141896441\tto:0.07530007284549832\tIn:0.049738565149260526\tthat:0.03856834374872413\t:0.01\n",
"in:0.3778269605521277\t;:0.10050235910876815\tup:0.08899839657869923\tfrom:0.07676498916508702\tthem,:0.07438647247016913\tthereof,:0.07121527800757294\tIn:0.06788607972251222\thim,:0.06663710614671445\tbenefit,:0.06578235824834908\t:0.01\n",
"the:0.3250320972030885\ta:0.23686920491488947\tand:0.09898806509471468\tof:0.08643858737005874\tto:0.05962764965811808\tin:0.05865455995892609\tThe:0.05059086224564413\tan:0.04455021716346503\tis:0.029248756391095285\t:0.01\n",
"is:0.22089822959536826\tand:0.18387808269038552\twas:0.13811299532752336\tbe:0.12644312904317534\the:0.08837698747964245\tI:0.06624945268713966\tHe:0.060767105105227495\tso:0.058273228193752025\tare:0.04700078987778588\t:0.01\n",
"to:0.30549348341880367\tfor:0.18659425496228882\ttold:0.10917621807585712\tasked:0.09877041501220078\tadvised:0.0697321742528112\tfrom:0.0653130836936508\tpermit:0.056644608947737575\twith:0.05476825348313121\tallow:0.04350750815351882\t:0.01\n",
"this:0.41100048948619683\tthe:0.3921939927662361\tsaid:0.06783261450969466\ta:0.03037519106765875\tYork:0.02010071687703088\ttho:0.01940580183051526\tthat:0.01894958423460707\tof:0.01669194934513626\tour:0.013449659882924235\t:0.01\n",
"the:0.3917627351632284\tof:0.17191096405693984\tto:0.12297595959423421\tat:0.07226510522034309\tand:0.06903704402813833\tby:0.05056043780181515\t<s>:0.041124036937808854\tin:0.03697939447906569\tsaid:0.03338432271842645\t:0.01\n",
"the:0.7403548075992421\ta:0.08007375043019943\tthis:0.04185626105492235\ttho:0.04127795139233763\tThe:0.03487668762567506\ttbe:0.017593057385277396\twhole:0.013119729115434636\tour:0.012109939606324971\this:0.008737815790586367\t:0.01\n",
"to:0.6262876687800507\tand:0.0794261123855894\twill:0.07576876439390864\tnot:0.0707040211200416\twould:0.04134791730006128\tI:0.03260003165675229\tmay:0.025246072862117285\tcan:0.020564686810898705\tshould:0.018054724690580053\t:0.01\n",
"and:0.18363282820901694\tthe:0.12124915320812743\tto:0.11727909452132212\twill:0.1049323296525499\twhich:0.10304301242018114\tsaid:0.10255730649379331\tof:0.10121423398487817\tthat:0.07967799157623706\tmay:0.07641404993389389\t:0.01\n",
";:0.27420800686232105\thim,:0.17737404957553712\tit,:0.12315888676290337\ther,:0.09702503718414962\ttime,:0.07368920820762186\tand:0.07026947959500657\tthem,:0.06937552138339675\tman,:0.05855265829341169\tme,:0.04634715213565194\t:0.01\n",
"of:0.37917705586509626\tthat:0.1251078222537047\tin:0.11616138288817691\tto:0.10497686977890211\tby:0.08925490609734017\tand:0.06963002571333493\tfor:0.04405314780796409\twith:0.03550757080909421\tfrom:0.026131218786386648\t:0.01\n",
"of:0.2523558492351206\tand:0.16928746430123887\tin:0.12483596792384392\twith:0.10151053519944812\tto:0.09883079762593788\tfor:0.0747987315281138\tthat:0.06518170357774512\tby:0.05384617829720701\tat:0.04935277231134487\t:0.01\n",
"a:0.22457985780694859\tthe:0.2160382490379285\tand:0.149780868688603\tnorth:0.08127154947156605\tat:0.0774487660253618\tof:0.06723294339589153\tline:0.06414886720295312\twest:0.06024610195272154\tsouth:0.049252796418025914\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.23275759924600387\tof:0.175691873071473\tto:0.15837168235966023\ta:0.13999222908938\tat:0.11674053826544527\tand:0.06010989804314587\tin:0.04741856981743395\ton:0.03459781943061636\tfor:0.024319790676841497\t:0.01\n",
"was:0.17200961636904852\tbe:0.15397514929588843\tbeen:0.148997230009112\tand:0.1326344992256197\twere:0.10236292364122307\tare:0.08294371738854096\tis:0.0735503347182961\thave:0.06686072198542312\tto:0.056665807366848106\t:0.01\n",
"to:0.2401283906301484\thas:0.18533862890743052\thave:0.15539428913882763\thad:0.14134046562577923\twill:0.09621066227229419\twould:0.054529763425599245\tand:0.053000620841036364\tmay:0.03689648214635795\tnot:0.027160697012526262\t:0.01\n",
"of:0.4439806827773154\tis:0.08921591406086372\tto:0.0827755623582013\tfor:0.08028346969902174\tin:0.07245699715722365\tand:0.06873477572635728\twith:0.06042675975121883\tthat:0.04961744048834344\tby:0.04250839798145469\t:0.01\n",
"of:0.3361656255633818\tin:0.16543378537173462\tto:0.13107468944702017\tfor:0.08485520009079954\tand:0.0720281526869444\twith:0.05907724772724238\tby:0.05213156172062931\tis:0.04548285320687575\tat:0.043750884185372166\t:0.01\n",
"is:0.3865163345804228\twas:0.18204251495878843\tare:0.17574420357328668\tIs:0.05749341884924253\twere:0.047291336741995815\thave:0.039586252989480056\thad:0.03536441341445881\tand:0.03476638884071542\thas:0.03119513605160949\t:0.01\n",
"to:0.30765020428972256\twill:0.1815779064404925\tshall:0.10288290382458651\tmay:0.0916993322783664\tshould:0.08274393619115722\twould:0.06800559602492551\tmust:0.05555334867258783\tcan:0.05118916040427996\tnot:0.04869761187388145\t:0.01\n",
"about:0.2498240536952694\tof:0.22248056414011846\tat:0.1463252987936388\tand:0.09603920224569854\tcontaining:0.08609225198851948\tto:0.0645525220073308\tthan:0.05698601393673354\tfrom:0.03473686825154761\tthe:0.03296322494114325\t:0.01\n",
"the:0.19836175636655523\tand:0.1674130352389857\tof:0.16070716605411697\tto:0.14121474152525526\ta:0.12385002738842145\tin:0.07400006600096737\tat:0.051765895272262975\tor:0.041681126885312204\tthat:0.031006185268122963\t:0.01\n",
"of:0.19292439642576809\tthousand:0.131169760417563\thundred:0.11243653152442205\ttwo:0.0995158259156835\tfew:0.09895250649996283\tfive:0.09889112711672335\tten:0.09103053596573119\tmany:0.08673830048596717\tthirty:0.0783410156481789\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2767811413315943\tthe:0.22532264492857\tthat:0.10321654943039395\tand:0.09766749157309097\ta:0.07218602115388535\tThe:0.06243694324318819\this:0.060750609305264026\tall:0.049214926572785256\tas:0.04242367246122807\t:0.01\n",
"to:0.5893232866053465\tan:0.14534486777483444\twill:0.0745490405915872\tthe:0.051767533794262896\tand:0.030825317006176217\tof:0.02743522852329472\twould:0.027046978348518113\tby:0.022304634907759715\tnot:0.02140311244822022\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"law:0.17849875393309425\tin:0.15362993775817899\taction:0.1312948435868424\tcity:0.11190079746683933\tmore:0.0971238479973626\towner:0.0847194672858231\tone:0.0797290692853683\tperson:0.07891214430629323\tday:0.07419113838019771\t:0.01\n",
"the:0.3371199727832528\ta:0.14571341508055327\tof:0.14248045800946924\tand:0.12866761303070035\tin:0.06555434545368477\tto:0.05723012986529463\tfor:0.04049076471595427\tThe:0.04001357439140892\tMr.:0.03272972666968174\t:0.01\n",
"of:0.47424604119449765\tby:0.10171919199091257\tto:0.08891794870064966\tin:0.0857834002058579\tand:0.06223676003297906\tthat:0.054661035195526717\twith:0.04837530648330675\tfrom:0.04065187870966022\ton:0.03340843748660932\t:0.01\n",
"the:0.3521790065282881\tan:0.15730251335387382\tto:0.12466277596530059\tthis:0.08837191954885056\this:0.0740352034905044\ta:0.05797644426265543\tand:0.054148921644854325\tthat:0.05016083323686919\tin:0.031162381968803467\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"and:0.4176388054641092\tof:0.09122189310945371\tis:0.08151465402581844\tto:0.07464100943115234\tor:0.07281733808894529\tbe:0.06898495269012604\tare:0.06419780033401451\twas:0.06086806827880312\tthe:0.05811547857757739\t:0.01\n",
"it:0.35835403077289185\tIt:0.18033896309510394\tthere:0.10005802787283471\the:0.08633223790107593\tthat:0.0786661222512119\tthey:0.062195379566770945\twhich:0.057389596688828697\tand:0.040989301969020085\tI:0.025676339882261923\t:0.01\n",
"of:0.27786722543568354\tthe:0.17695922146375348\ta:0.13561493131391908\tand:0.10247758160165221\tto:0.08260370945264404\tin:0.06722543089244222\tby:0.06419603674865715\tMrs.:0.044140456604036336\tthat:0.03891540648721191\t:0.01\n",
"of:0.3048659099369944\tthe:0.2704783354258796\tin:0.21015627743194726\tand:0.0790301038220537\tIn:0.050066998951556835\tfrom:0.027465222802737988\tThe:0.017670828533854467\tto:0.015959912479217492\tNew:0.014306410615758169\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"and:0.33588990512315525\tso:0.1278726139938375\tfact:0.11537720847939432\tsay:0.07932676977727737\tsaid:0.0769132033296819\tknow:0.07286255230245701\tis:0.06380559007158074\tbelieve:0.06086605721333128\tbut:0.05708609970928473\t:0.01\n",
"it:0.21798593052455412\tthey:0.15506521952745397\twhich:0.1464503760706386\tthat:0.08997312673330614\tIt:0.08922096050606222\twho:0.08069476545016604\tas:0.07427663858078079\twe:0.07368129437221253\tyou:0.06265168823482559\t:0.01\n",
"the:0.7795310059410883\ttho:0.03915794919402085\tThe:0.032381678095013695\ta:0.03025114117921767\tan:0.028765547198341204\ttbe:0.0236798131317828\tof:0.019523759108672677\tand:0.018656854009460454\ton:0.01805225214240241\t:0.01\n",
"the:0.2147310547762382\tof:0.20337053351879977\tin:0.1532291174294918\tthis:0.12093641675973348\tto:0.11301902609450998\ta:0.053157392877735264\tsaid:0.04434183478778719\tand:0.04426000069302411\this:0.04295462306268015\t:0.01\n",
"and:0.24102030610305705\tto:0.15466596425989132\tbe:0.15116658020845242\twas:0.10688073641889244\tbeen:0.0799248592929294\tnot:0.06784690549389893\tthen:0.06704676945289333\thad:0.0616768022239914\tis:0.05977107654599371\t:0.01\n",
"far:0.21078439462861095\twell:0.17576442902776315\tsuch:0.12362451069847058\tdescribed:0.11794178958161483\tand:0.10867141346620239\tso:0.08142949909466304\tmuch:0.06838167321619185\tregarded:0.05391946459645933\tknown:0.04948282569002375\t:0.01\n",
"them.:0.30631848512808474\tit.:0.16971993377319153\t<s>:0.14610188885792288\thim.:0.08455510649848166\tme.:0.07000196144307833\tthemselves.:0.05634455063054611\ttime.:0.05428489863611735\tus.:0.05322655252896916\tmen.:0.04944662250360826\t:0.01\n",
"the:0.33234572955597735\tThe:0.12871074483780276\tmost:0.12795848382604336\tand:0.10638377398801194\tof:0.07786886691579524\tas:0.06156856548809881\tthat:0.05544248092842482\ta:0.05330118580695664\tmore:0.046420168652889116\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"as:0.19013635946329807\tand:0.14892094237392686\tup:0.148132257018336\taccording:0.10048198341783922\tregard:0.0882453444411632\tcame:0.08453893333370532\tcome:0.07830269616131262\taddition:0.0780661672134502\treferred:0.07317531657696848\t:0.01\n",
"the:0.7553284314622013\tThe:0.058752918290807254\ta:0.03340230090106249\tvery:0.031459624312462714\ttho:0.026537946408817945\tand:0.023965738475361938\tis:0.022922263744698378\tare:0.021601024248391887\twas:0.016029752156195967\t:0.01\n",
"of:0.3145126190713022\tto:0.1839101397526519\tin:0.12021535518017552\tthat:0.07576691743456174\tand:0.06673703157286005\tby:0.06646397049555801\twith:0.06329312305410341\tis:0.05305180476212992\ton:0.04604903867665733\t:0.01\n",
"to:0.6231585290844119\tI:0.06806831251079644\tnot:0.06129312371336944\tyou:0.05085503984769801\twill:0.04953862752483244\tand:0.042825020890680514\twe:0.03717654808899664\twould:0.032599606784487624\tthey:0.02448519155472698\t:0.01\n",
"to:0.41169993934745586\tand:0.14074611789229674\tthe:0.13481418641093854\tof:0.10172074776122532\tnot:0.07340838554804936\twill:0.04438394568491483\twould:0.029391020923623452\tshall:0.02862183487655396\tI:0.025213821554942183\t:0.01\n",
"the:0.42338646674259467\ta:0.16207768329789707\this:0.12184954894593686\tThe:0.06100066231636592\ttheir:0.058229520080416965\tour:0.04598536801590533\ther:0.04070503044924197\tand:0.04062680080216752\tto:0.03613891934947364\t:0.01\n",
"that:0.2078145275546218\tin:0.1787699269188148\tof:0.13918577418610759\thave:0.10711267082735271\thad:0.10062715710911645\tand:0.07733803429608505\tfor:0.06690416756384844\thas:0.06416635496779402\tIn:0.0480813865762591\t:0.01\n",
"linear:0.5111949863161213\tof:0.11464201463142908\tfew:0.06514337627281809\ttwo:0.05841225100333687\tand:0.053410512676964214\t100:0.05178899425291574\tfive:0.04936354188696343\tten:0.04461642513762547\tfifty:0.04142789782182584\t:0.01\n",
"<s>:0.30310252267128546\tand:0.17654985524163133\twas:0.08869762695890182\trecorded:0.08546547974838441\tmade:0.08508175570245388\tis:0.07164292628760087\tfound:0.06149895909434871\tplace:0.05981731125514884\tbe:0.05814356304024459\t:0.01\n",
"for:0.1904275258994517\tof:0.18076167403246413\twith:0.13520594799391122\tto:0.11565724229176087\tdo:0.09480001307818248\tin:0.08706730488045017\tupon:0.0826322603955146\ton:0.051988040082004534\tabout:0.05145999134626023\t:0.01\n",
"the:0.6413140625538724\ta:0.12748021446542854\this:0.05430225218167881\tour:0.04274979575883123\ttho:0.03783895340883999\ttheir:0.029604300697626866\tmy:0.01977177423215456\tof:0.01868429131714906\tits:0.01825435538441844\t:0.01\n",
"is:0.1765681557807278\twas:0.15161958352715865\tand:0.13867776004752744\ta:0.11124321724264072\tof:0.08831842543731651\tthe:0.08583029892039853\thas:0.0840477704539788\thad:0.07788398995091683\thave:0.07581079863933467\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.18986383946160562\tgo:0.1313008589125538\tgoing:0.1309620202896538\twork:0.10689597319887\tcarried:0.09881110789498941\tthem:0.09439722033459282\tput:0.08068533560316976\tthat:0.08051329016795178\tinterest:0.07657035413661306\t:0.01\n",
"and:0.21493091867814712\tmade:0.17928929690926054\tthat:0.10285208685730593\tit:0.1018330418077632\tonly:0.08441843936411259\tor:0.07832230071831846\tdone:0.07666239921831233\tthem:0.07645893500702179\thim:0.07523258143975824\t:0.01\n",
"from:0.21802200205555064\tthe:0.19694833446729548\tin:0.12247782210057058\tthat:0.08945903226427072\tsome:0.08261572909543535\tany:0.0797247730890875\tthis:0.07278699757577482\ta:0.06676927872790638\tsame:0.06119603062410855\t:0.01\n",
"of:0.3604378939279428\tand:0.18417724295966706\tto:0.11530815514885231\tthat:0.07673307279964209\twith:0.07615055001814502\tby:0.059126819681383655\tfor:0.04414574215772069\tin:0.0437848717253896\tare:0.03013565158125672\t:0.01\n",
"was:0.24026457368433973\tbe:0.2037888851514641\tbeen:0.14865768707292537\the:0.1103149710503319\thad:0.06862126170206724\tis:0.06433847761150072\twere:0.0556837198793109\tand:0.05046391740662209\thave:0.047866506441437945\t:0.01\n",
"<s>:0.24614661729688914\tthem.:0.22419267035370077\tit.:0.17208459306519036\thim.:0.09503381346386126\tand:0.0538011868723756\tmen.:0.051325501892832186\tpeople.:0.05090734334881112\tcountry.:0.048289019313522\tus.:0.04821925439281763\t:0.01\n",
"it:0.30006698167319595\tIt:0.17982012281936183\twhich:0.13280947517765976\tthat:0.0859694482013703\tand:0.07544393771454103\the:0.06860858490090371\tthere:0.06144316820450515\twho:0.05198837442007751\tas:0.03384990688838472\t:0.01\n",
"it:0.41290272574252995\tIt:0.21770419090184556\the:0.08514975598479974\twhich:0.06993677021396343\tand:0.0610210842196388\tthat:0.05662955546271886\twho:0.03775490183004586\tHe:0.02900055345660773\tthere:0.01990046218785023\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"of:0.3324203930410929\tthe:0.29921553516722876\tto:0.10742807657320605\ta:0.05806167874494735\tand:0.045108477345091325\tin:0.04351825732262636\tat:0.04052260013092489\tby:0.03689012513149283\ton:0.02683485654338947\t:0.01\n",
"the:0.25362703903234946\tof:0.21424205068829918\tin:0.12370167463345941\tto:0.11545550328867085\tand:0.09591627126415259\this:0.054838109050133296\tIn:0.044307430165448976\ta:0.04427433466830941\ttheir:0.043637587209176903\t:0.01\n",
"State:0.15289743959999808\tcity:0.14659958296397377\tday:0.13591694884936428\tout:0.11337724748875531\tside:0.09728949302627486\tCounty:0.09253539253466518\tstate:0.09073164870521873\tCity:0.08933095417266333\tline:0.07132129265908649\t:0.01\n",
"No.:0.25222266244798813\t9,:0.13408869572468382\tJune:0.10093755322708624\tApril:0.0998268673565512\tMarch:0.09722849305084989\tMay:0.08538239611191051\tand:0.07665274678923345\tto:0.0731856894515657\tJuly:0.07047489584013109\t:0.01\n",
"in:0.34826112829500816\tIn:0.17093721808849874\tof:0.10337081855955749\tthe:0.1014137764339466\tand:0.10075554253053451\tall:0.06291066899675335\tfrom:0.043055781094445446\tto:0.03293531972500774\tor:0.026359746276248094\t:0.01\n",
"the:0.6090554212068122\ta:0.12361837670646246\tand:0.07727792504851054\tcirculating:0.05819479406236601\tor:0.04603894401440606\ttho:0.02475887531592788\tThe:0.020484377149898553\tof:0.01574521078349502\tin:0.014826075712121141\t:0.01\n",
"sum:0.1648703730892017\tout:0.11307775521688435\tamount:0.11090839996168092\tnumber:0.11072884578616649\tBoard:0.10709279218170512\tday:0.10091951320741446\tline:0.09892782668492611\tcounty:0.09783432205349214\tpurpose:0.0856401718185288\t:0.01\n",
"etc.:0.16721223585311967\tand:0.1409145066715845\t1:0.13409911739794894\tthat:0.12816114856633934\t<s>:0.10437861998714325\t.:0.0903291281285591\t-:0.0794550457626643\tthe:0.07283192612513507\tA:0.0726182715075058\t:0.01\n",
"a:0.2894207006083945\tany:0.22378953031590268\tthe:0.2116826754709773\tno:0.0736559870123204\tone:0.050097926747013466\tother:0.04503945667988061\tof:0.03480804101411596\tNo:0.03197267541202001\tevery:0.02953300673937519\t:0.01\n",
"and:0.5090272997432481\tthat:0.10778905250937586\tbut:0.06846398265974658\tdays:0.06334103378610689\tand,:0.062487699779472376\tsoon:0.05827063280562924\tuntil:0.04307539225482937\tshortly:0.03949720582159897\ttime:0.03804770063999251\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.3528153324821192\tin:0.15932891495967297\tto:0.12172702666378053\tfor:0.08560942779146655\tand:0.07037367601688635\tthat:0.06467495724573463\tby:0.0511715108231456\twith:0.044098730645807056\tfrom:0.04020042337138719\t:0.01\n",
"the:0.35661805825354365\tand:0.16331399433744215\tof:0.10799524916815267\tmost:0.07764881299020676\tbe:0.07107285348069893\tor:0.06483367570972944\tin:0.051085862414792634\twas:0.04952513037271524\tan:0.047906363272718605\t:0.01\n",
"the:0.3299431306570386\tthree:0.1347298036895383\tof:0.10423327765237073\ttwo:0.09285609221603609\tfour:0.08114386278741496\tfive:0.07281385685432076\tand:0.060593244137324635\tThe:0.05897444899336153\tten:0.054712283012594336\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.2485574645214244\tand:0.19599015896865016\tof:0.11997646782430034\tto:0.10832671786233856\twas:0.08306687445300183\ta:0.0662522364514955\tbe:0.06490342642871659\tis:0.051780678071133096\tare:0.05114597541893947\t:0.01\n",
"out:0.17743456461807092\tamount:0.1293926442567202\tkind:0.12203950594810947\tsort:0.1067575524356711\tnumber:0.10464960661878639\tright:0.10083506542222534\tmatter:0.09195157259659335\tone:0.08679098651155857\tstate:0.07014850159226461\t:0.01\n",
"of:0.2314787866626774\tin:0.1635415441364617\tat:0.13623310511628933\tto:0.12475822205396489\tand:0.08174569600768211\ton:0.07648236697015053\tIn:0.06384841914428711\tAt:0.062453483901137044\twith:0.04945837600734988\t:0.01\n",
"of:0.37888252473908907\tin:0.1282086180355952\tto:0.10441990140392647\tand:0.09593832568712528\tthat:0.06971949913892456\twith:0.06106707741411148\tfor:0.0608570667914635\tby:0.05176039007607272\tfrom:0.039146596713691764\t:0.01\n",
"of:0.34149624747561397\tto:0.1278360730178111\tand:0.11216778053475236\tall:0.09537827231696853\tthat:0.08541928101554858\twith:0.0814243459626875\tin:0.05601356730505628\tfor:0.04927893199911606\tby:0.04098550037244561\t:0.01\n",
"of:0.4582296766877383\tand:0.12212737018868096\tto:0.0859994777940944\tabout:0.07690726931639044\tin:0.05732290671880281\tat:0.05105485805238287\tthan:0.04910163281168533\tby:0.04567041730437085\tfrom:0.043586391125854065\t:0.01\n",
"lots:0.4729634129054889\tNo.:0.20143515730137854\tat:0.056549896784289296\tof:0.05335260367294682\tand:0.05210634112900288\tto:0.04377073525854436\tLots:0.040329363143791756\tthe:0.03627204298687697\t.:0.03322044681768043\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.28246154582438365\tof:0.15299240141226966\tand:0.13617510812243225\tto:0.10572843301021204\ta:0.0862826105563712\tbe:0.07529464419189333\tis:0.05715875834760748\tin:0.051304671225660556\twas:0.04260182730916977\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.19882004552197108\tin:0.18894034545773242\tto:0.10882461289622955\tand:0.10475928392840532\twith:0.10045909801506564\tfor:0.09080677879375111\tas:0.08128433398759959\tthat:0.058107854941928085\tis:0.05799764645731726\t:0.01\n",
"the:0.28911769851370467\tof:0.15034482710262848\tand:0.14727364343021293\ta:0.12256378698685642\tto:0.11180388212332248\tbe:0.05566769946958989\twas:0.044440704312762515\tor:0.03660687066406267\tis:0.032180887396860036\t:0.01\n",
"is:0.2463313652324885\tbe:0.12796002447627855\twas:0.12592229215704667\tin:0.12558065404915017\tare:0.08360848955590314\tand:0.08254876048776565\tof:0.0715647728761468\tamount:0.06861762348641402\tthat:0.057866017678806496\t:0.01\n",
"the:0.4240766770630049\ta:0.16249535481607225\this:0.1274583267454591\tand:0.059477365793356225\tsuch:0.05674742980691346\tof:0.042673170095441484\tas:0.04103249787579419\tthis:0.039993148925513575\ther:0.03604602887844493\t:0.01\n",
"the:0.4373546854605903\ta:0.12658803086129963\ttheir:0.08145364101407566\this:0.07386121247270125\tand:0.06754972159226168\tof:0.051907391617870446\tthis:0.05099665599587981\teach:0.050970899408136476\tevery:0.04931776157718471\t:0.01\n",
"and:0.2713958356139988\tcommittee:0.12196471445168558\tthat:0.12088335686488993\tCommittee:0.11013757498277134\twas:0.08468899846840802\tfeet:0.07897512130622883\tout:0.07502261916662309\tmade:0.07026595361663135\tup:0.05666582552876299\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"he:0.2188681772358935\tit:0.18595627756923913\tthey:0.12447781678179369\tI:0.09606223838216958\tIt:0.0854835466791253\twho:0.0756116527898356\tthat:0.07544707224595475\twhich:0.07095251204417567\tand:0.05714070627181274\t:0.01\n",
"as:0.3723241520447311\tof:0.12834585129369164\tand:0.11043896172646227\twas:0.10456577086047611\tis:0.07110613440461801\tbe:0.06604042057846508\tfor:0.04904892804671867\tby:0.045259722158475776\tin:0.04287005888636134\t:0.01\n",
"him:0.22511585349940635\t;:0.1342553032180852\tman:0.11574635372301251\thim,:0.0950718889975085\tup:0.09324255187190897\tand:0.09098934403345373\thimself:0.0835495239653671\tin:0.08043645717718255\tman,:0.07159272351407525\t:0.01\n",
"and:0.6753745644137943\twas:0.08486063116136726\tSince:0.06195967609193638\tis:0.04726448856619813\tAnd:0.03832540756847496\tHe:0.029277634768609836\t;:0.017780565417925425\tare:0.01761897414493377\twere:0.017538057866760128\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"is:0.19731103399235908\tand:0.12231205398331836\tfor:0.11985894442484817\tfrom:0.11931444087009874\tare:0.10621781307893934\tbe:0.09678439377134156\tto:0.08251680016855216\tof:0.07291313519532233\twas:0.07277138451522042\t:0.01\n",
"Mr.:0.35298472894292565\t;:0.13569740232565344\t.:0.08737427383884205\tMr:0.08360820338555904\tcity:0.08084934613980291\twife:0.06561165138140643\t1:0.06301962520034086\thome:0.06149283028519396\tmen:0.0593619385002757\t:0.01\n",
"he:0.21041171211364312\tand:0.19681399676034136\tit:0.14424272658866555\tthat:0.12964160428101115\twho:0.07196266055225954\tIt:0.07012336257780342\twhich:0.057784523594923407\tthere:0.05494803795086502\tHe:0.05407137558048757\t:0.01\n",
"to:0.2291599023600459\tI:0.13871946602755938\twould:0.1330455404601739\tthey:0.11537319596311135\twe:0.10498230354658346\twho:0.08173080463455146\twill:0.07730390766292998\tyou:0.05776733890846799\tand:0.0519175404365766\t:0.01\n",
"the:0.41781411911028743\ta:0.19917275235184875\this:0.08733299016953616\tthis:0.07166601283254145\tin:0.05009278153270936\tone:0.04345296358606185\tour:0.041026764867872996\ther:0.040126069431825145\tevery:0.03931554611731669\t:0.01\n",
"of:0.3457666199497193\tin:0.13584302590029676\tto:0.1143001634412779\tfor:0.09886369917007409\tand:0.087737197081992\tthat:0.07904342527540832\ton:0.050666670677319815\tby:0.04058086303956087\tfrom:0.03719833546435091\t:0.01\n",
"the:0.6864336415105893\tThe:0.10432932773707762\ta:0.07165398345864098\ttho:0.030117436401735857\this:0.029994492044828357\tand:0.022260670725992977\tof:0.016813699164185295\tour:0.01453461277500728\ttbe:0.013862136181942456\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"and:0.36589722240622385\tthat:0.11879104527843783\twas:0.0808321569096629\tthem:0.0758169660651014\tmade:0.07343615971296241\tas:0.07226863543357233\tit:0.06934005464314696\tup:0.06798728477283876\tor:0.06563047477805344\t:0.01\n",
"up:0.1737616542663419\tas:0.12358932867718746\twent:0.12126099625209914\tfeet:0.10852007962899117\tback:0.10778950773120394\tand:0.10358571423275538\tsent:0.09272689443227272\tdown:0.07981364295220406\tgo:0.0789521818269441\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.42932675219387656\tthis:0.16407785769442226\ta:0.11255590225605522\tThe:0.08457680361385288\this:0.05648618223313727\tThis:0.04762150692093662\tthat:0.033809427447999606\tpresent:0.03200173707123948\tone:0.029543830568480086\t:0.01\n",
"time:0.16583176719390258\tup:0.1374428662186972\thim:0.13569995663651607\tout:0.11873416223605032\tit:0.10992980666216844\tin:0.0907954290666625\tthem:0.08567496071291172\twork:0.0851966410022111\tmen:0.06069441027088002\t:0.01\n",
"the:0.40584786756481706\tof:0.21062391491231378\ta:0.13654660006288477\tand:0.07248044642528714\tin:0.0565916266577858\tvery:0.029239253174218657\tfor:0.028959085747414993\ttho:0.02779285220332722\tas:0.021918353251950594\t:0.01\n",
".:0.2343942952110185\tand:0.15622109709858004\tMr.:0.13461967433492647\tof:0.09775799086772481\tI:0.09686813144792122\t<s>:0.08004806155814428\tJohn:0.06899849553463291\tat:0.06072583147265133\tto:0.06036642247440046\t:0.01\n",
"the:0.41334293094321917\tan:0.19644360528592647\tof:0.1257920680663383\tprimary:0.06723337303999996\ton:0.04481736339578284\tgeneral:0.039199653768425005\tsaid:0.03867866617049733\tfor:0.03603910843569786\tand:0.02845323089411294\t:0.01\n",
"the:0.5599945462947383\ta:0.22313361420839442\tThe:0.060047542978923056\tof:0.03715746718483107\tand:0.025667290687634015\ttho:0.02325281365979466\tno:0.02268393305228487\this:0.022478134834600497\tlittle:0.015584657098799177\t:0.01\n",
"to:0.2353142279905663\tof:0.20201836892625455\t<s>:0.16946865162562927\tthat:0.08707660963393063\tfor:0.07859279535697801\tand:0.06799502638338949\tit.:0.051833845887182387\thim.:0.05093186644039737\tin:0.04676860775567211\t:0.01\n",
"the:0.31904360573278207\tof:0.17315917076143733\tand:0.12534789090235726\tto:0.09647386236527573\ta:0.06334210630031535\this:0.0538857038172744\ttheir:0.05387849831842087\tbe:0.05312243736196245\tin:0.05174672444017449\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.19449218439115257\tand:0.1720529300710841\tof:0.14072648893149953\tto:0.1306582185261051\ta:0.10864764597806323\twas:0.06863644043976365\tin:0.06840985754017502\tbe:0.05664546737906667\tis:0.04973076674309003\t:0.01\n",
"to:0.532221647367508\tthe:0.1331208185413563\tan:0.12897032716613124\twill:0.053687066905364456\tthis:0.05335342685898026\tand:0.03517027739368175\tthat:0.020141099387111644\twould:0.01785439596561381\ta:0.015480940414252633\t:0.01\n",
"be:0.20677585249834668\twas:0.16918596776663974\tis:0.1292426305756323\the:0.10906733935671169\thave:0.1040854121982655\tbeen:0.09639850426404563\thad:0.06051344053627557\thas:0.05743223676397213\tHe:0.057298616040110766\t:0.01\n",
"day:0.9306543456003332\tdav:0.015091726282296776\tMonday:0.007975536068491253\tmonth:0.007132097291125569\tmiddle:0.006800214508135429\tState:0.006000830295033763\t1st:0.005994807504347629\tcity:0.005349688300905652\tpart:0.005000754149330747\t:0.01\n",
"<s>:0.508086730386848\tit.:0.11364250474498067\tthem.:0.08967128421040037\t.:0.05735424515022424\tcountry.:0.049304715888290294\ttime.:0.04838482560929417\tyear.:0.04633643255605263\tday.:0.04010152727255622\thim.:0.037117734181353446\t:0.01\n",
"and:0.3611715861362694\tis:0.10057978584052146\tnot:0.09851390702151772\tor:0.08678558965722302\tare:0.07932334923693614\tdo:0.07857944678350108\twas:0.07635212775838954\tAnd:0.06715358402593397\tbe:0.04154062353970769\t:0.01\n",
"the:0.38888764840684586\tof:0.20232757012206548\tand:0.11745135616725987\tor:0.08688093472945023\tThe:0.04435601852507018\tthese:0.04078744626093432\tfor:0.03938473510639589\tby:0.0359915638846433\tabout:0.033932726797334715\t:0.01\n",
"and:0.23286322680857055\tof:0.186567291339073\tthat:0.11113609761982249\tto:0.10506883844499586\tif:0.09953369457585386\tfor:0.0738354686309789\tbut:0.061748913739253904\twhen:0.06048817603663132\twas:0.05875829280482017\t:0.01\n",
"up:0.1794486824024785\ttime:0.1546427640836442\tin:0.15222692549920158\tdown:0.09536926251388071\tlife:0.09231687547486686\tland:0.0830923630004956\thim:0.07892399954606723\tout:0.07769606108488357\tpower:0.07628306639448174\t:0.01\n",
"the:0.4269204107123281\tof:0.226013129432704\tin:0.0612833286460464\tsuch:0.05732566206321501\tto:0.052752130974925655\ta:0.04745794888108907\tall:0.04384946919405888\tany:0.040366330000102535\ton:0.03403159009553033\t:0.01\n",
"the:0.35732172982645555\tany:0.23765187383533018\tan:0.1287815499124055\teither:0.04811795515102574\tto:0.0461237855048886\tpresiding:0.04522430262974504\tof:0.043715848670761684\tsuch:0.042945222381989924\tthis:0.04011773208739785\t:0.01\n",
"the:0.3415156296872453\tand:0.15810136082975432\tof:0.14848315339772505\tto:0.11757737985831357\ttheir:0.06686903328091315\this:0.05290268790761814\tin:0.03687172888920533\ta:0.03403318297903778\tthat:0.03364584317018729\t:0.01\n",
"the:0.23632566192425677\tof:0.18886074844018247\tand:0.12682049354783523\tto:0.09524780069146993\twas:0.08498950973556638\ta:0.07330451419837286\tbe:0.06504520465050595\tin:0.06462390742693405\tis:0.05478215938487641\t:0.01\n",
"the:0.2686635713483296\tof:0.16010824045014527\tand:0.1593663368800091\tto:0.11787375993345725\ta:0.07276654388336477\tbe:0.06429477580072379\tin:0.05966067700417689\tfor:0.04438815198806901\tor:0.04287794271172442\t:0.01\n",
"an:0.3298636501331755\tmost:0.18910266762938763\tthe:0.17494747620055814\tand:0.08595565738449318\tof:0.0742704608690639\ta:0.040437701402719274\tother:0.034216369574763233\tto:0.03331217485260986\tthis:0.027893841953229335\t:0.01\n",
"one:0.33708984341259335\tpart:0.14875576146602673\tout:0.10384043397499726\tportion:0.09083714555922895\tside:0.07562804233059955\tsome:0.06197550487992145\tthat:0.060324718837243906\ttion:0.057990436636891\tmember:0.05355811290249791\t:0.01\n",
"and:0.32508827920622946\tcalled:0.17433470643435237\tdue:0.08119015470176152\tconferred:0.07964568953168148\tmade:0.07739100194191122\tbased:0.0675880366013873\tcall:0.0627362834041282\tthat:0.061694477235208725\tdepend:0.06033137094333986\t:0.01\n",
"Mr.:0.24510152008600408\tMrs.:0.2240642886166854\tU.:0.19648036965417434\tand:0.075706781602642\t.:0.0632516368065299\tDr.:0.05286927950639741\tJohn:0.048202812498170065\tof:0.046156632749062745\tW.:0.03816667848033404\t:0.01\n",
"of:0.30726130944591307\tin:0.2175876516318947\tto:0.12158621943753734\ton:0.10707830106017131\tfrom:0.06309801694752407\tfor:0.053870830369077326\tIn:0.047369734054498014\tand:0.036293117350952774\twith:0.03585481970243142\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"a:0.3685053686896941\tthe:0.24980740663511056\tis:0.12928326188115816\twas:0.06960667382031749\tare:0.05099428153652991\tbe:0.03736670285803542\tThe:0.03210389121869509\tnot:0.027683563244247363\tA:0.024648850116211905\t:0.01\n",
"the:0.5442094660611123\tand:0.1728981531382084\tof:0.06755861969489715\tor:0.048522832469082136\tThe:0.04733670952875613\twith:0.03359794028729045\ttho:0.027178269540565684\ta:0.02564124289194369\tfor:0.023056766388144044\t:0.01\n",
"it:0.2989737012286625\tIt:0.24261472377815405\twhich:0.10356398808709064\tthere:0.08706159667463481\the:0.06758205162219026\tthat:0.06479631422367342\tThere:0.05706355686320398\twho:0.034298105592969697\tHe:0.03404596192942078\t:0.01\n",
"the:0.6460945270405065\ta:0.09201001880411183\tof:0.059871095578664046\tthis:0.04169131486920436\ton:0.039274888933327284\ttho:0.038716802391226976\tand:0.027181031591336564\tsaid:0.022704059701923823\this:0.022456261089698556\t:0.01\n",
"and:0.24004408046617692\tthat:0.17309048781984365\tI:0.150737247968813\twhich:0.08004403445706482\t<s>:0.07306464698886912\tit:0.07297516744003331\t1:0.06864399311542535\tas:0.0685999990039144\the:0.06280034273985934\t:0.01\n",
"the:0.5749300566611418\t.:0.09797140648806991\tand:0.07375341517721735\tMr.:0.05589455435503869\tof:0.04616207875552563\tThe:0.03830981975734198\tin:0.0379522092395776\ta:0.03260105964127539\t<s>:0.03242539992481172\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"you:0.15229395712685728\tit:0.1485783752122948\tand:0.13056398430549876\tthey:0.12392686303582241\twhich:0.09799150163831577\the:0.09534329775684305\tI:0.09360012175247097\tthat:0.08739374954967757\tIt:0.06030814962221932\t:0.01\n",
"of:0.39139499467165434\tin:0.13128772091221377\tto:0.11141388831647231\tfor:0.07667428079024789\tand:0.07135432315611828\twith:0.06180615296090067\ton:0.05538152073181484\tby:0.04859418800061114\tthat:0.04209293045996677\t:0.01\n",
"and:0.35315218645721114\tthat:0.11835483459355085\tit:0.1153408044233801\tfound:0.07013930176251786\tmade:0.06891855340915606\tis:0.06851004504571005\thim:0.06692019640895636\twas:0.064989940361327\tbut:0.06367413753819051\t:0.01\n",
"the:0.718126610737605\ta:0.08280533241578512\ttho:0.04596058027980914\tand:0.03501743284648986\tThe:0.03219930546544499\tthis:0.020669390221321703\tof:0.019697687099540298\this:0.018414948801351992\tour:0.017108712132651808\t:0.01\n",
"the:0.31670456320987606\ta:0.23997542256879992\tof:0.13323614037994505\this:0.07407377759363765\ttheir:0.055698862756971314\tand:0.04981754009709689\twith:0.04628244902155128\tall:0.03969589223461306\tin:0.03451535213750865\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.32409726519055104\ta:0.1951332675642807\tand:0.1254625812305214\tof:0.12286322738773413\tin:0.06078794594479939\tto:0.05068320888449783\t<s>:0.04046060304175358\tThe:0.03688864596324386\twas:0.03362325479261811\t:0.01\n",
"the:0.4936293514137151\ta:0.3587398960091312\tThe:0.03912504010066909\tto:0.01922784949040319\ttho:0.018821903830786843\tno:0.018605167810183783\tany:0.015736174671929812\tand:0.013100623949510056\tmost:0.013013992723670926\t:0.01\n",
"the:0.3474916783492143\ta:0.19409614746733442\tto:0.09918991763482664\ttown-:0.08821613200650297\ttown­:0.0814866952585503\tof:0.06105234472347978\tThe:0.044718061587864\tand:0.04156780769635253\tthat:0.032181215275875086\t:0.01\n",
"the:0.5567972993230036\tof:0.0801796877438619\this:0.0637993412916222\ttheir:0.06280449110070364\ta:0.05406867161991368\twhose:0.049567836578021406\tand:0.04767094810985946\tin:0.04283555914272925\tIn:0.03227616509028511\t:0.01\n",
"the:0.4263448783509636\ta:0.28338127375204025\tThe:0.07914930776271575\tthis:0.0404413470412873\tA:0.03648942022417153\ttho:0.03571625087528806\tthat:0.03218286372821954\tof:0.028444818009335442\tand:0.027849840255978513\t:0.01\n",
"and:0.190494265966803\tcovered:0.18316282477703563\tfilled:0.13447777221390397\ttogether:0.13360527635178143\tcharged:0.09623558165493185\tup:0.08218350460043088\tbut:0.06019302161043958\tit:0.05888545756967721\tsupplied:0.05076229525499646\t:0.01\n",
"of:0.3999636628859222\tto:0.15327128333500403\tand:0.08402541940398019\tby:0.07829726650577438\tthat:0.07573913242216179\ton:0.06937728173963717\tfor:0.04845732759576013\twith:0.042690585159671904\tin:0.03817804095208795\t:0.01\n",
"of:0.3690784749774218\tto:0.11371153156517767\tat:0.11137026754362131\tfrom:0.09871893931079241\tthe:0.0819454167046844\tand:0.07359775574619878\tby:0.07176312146594746\tin:0.05029566476031092\tfor:0.01951882792584531\t:0.01\n",
"that:0.28468631911482045\tas:0.16873605735088223\tif:0.13312576535698512\tand:0.12140488534129719\twhich:0.07913991090819217\twhen:0.062349557384128264\tbut:0.061862164029310156\twhere:0.044608582331597355\tIf:0.034086758182786926\t:0.01\n",
"the:0.3480474048172614\ta:0.17158741194664826\tof:0.12463152430242949\tand:0.11470547162523166\tan:0.06397749595262803\tto:0.05379346907921346\tin:0.0481065769305163\tthat:0.03648898616312992\tThe:0.02866165918294142\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"and:0.3228251478841163\treason:0.14855774103364883\tnecessary:0.08589474441536632\tpay:0.07918040810959909\tdemand:0.0782739749082368\tbut:0.0764148425736826\tmade:0.06765122219451958\tprovided:0.06755406486583948\tdo:0.0636478540149908\t:0.01\n",
"the:0.22669854374274823\ta:0.16065144283152755\tand:0.15682055975370968\tof:0.14859189720612156\tto:0.10768267476423311\tin:0.05931814572121813\tbe:0.05857337530993183\twas:0.03748628502926306\tis:0.034177075641246855\t:0.01\n",
"I:0.2636844936311666\the:0.25359162889914927\tHe:0.11274056499000089\twho:0.0907903895787575\tthey:0.07083406903916487\tshe:0.06324486275662437\twe:0.051948348098115424\tand:0.05053108381227724\tShe:0.03263455919474387\t:0.01\n",
"a:0.32588405938506754\tthe:0.2726834895776453\tand:0.10389092614793584\tA:0.07050413442396733\tof:0.061224174116501294\t<s>:0.0502833577232098\tper:0.040208484190202745\tsaid:0.034201320391912746\tone:0.031120054043557534\t:0.01\n",
"30:0.26133328282515544\t20:0.12704677326558486\t40:0.10388397435212586\t45:0.09262647185574013\t33:0.08817627334809583\t15:0.08700247986265426\t35:0.08436611406431933\t48:0.0742235362608118\t51:0.07134109416551232\t:0.01\n",
"that:0.25505569512609666\twhen:0.17831182432348686\tand:0.12948592033081302\tas:0.11909392670241488\twhich:0.10427409858228376\tbut:0.06654833102662845\twhere:0.05454030609210617\tif:0.044257296816698107\tuntil:0.038432600999472134\t:0.01\n",
"the:0.5023825219502728\tThe:0.17287569051447702\tthis:0.07490716633031493\ta:0.07419594354871438\tThis:0.06153072575415019\ttho:0.03573076877842598\this:0.02466211253066134\tcommerce:0.02348037567835839\tof:0.020234694914625075\t:0.01\n",
"in:0.5185067913374198\tof:0.14096549190826718\tIn:0.12971450049712402\tany:0.086750358819532\tfor:0.02662447689089909\tno:0.02470441260578728\tupon:0.021531703689994904\tthat:0.021120165382785487\twith:0.020082098868190373\t:0.01\n",
"the:0.2501550870616374\tof:0.17327320107306704\tand:0.14388289249475147\tto:0.11475751953988338\ta:0.09038001401223485\tin:0.07346713906469314\tbe:0.06537517806815311\tis:0.042347954547891406\tor:0.036361014137688295\t:0.01\n",
"the:0.8076152062331344\tThe:0.053950392254297826\ttho:0.03277361312921802\tat:0.021404338262588026\ta:0.020758509105481455\this:0.018063828534779128\ttbe:0.013901280906959588\ttheir:0.011278136820294785\tits:0.010254694753246673\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"above:0.2960634500845927\tbe:0.14974403539809641\tman:0.13253933141379504\twas:0.10303503919880276\the:0.08196322565998554\tbeen:0.07038368280050995\twere:0.055768570298029674\tand:0.05574941336006585\tis:0.04475325178612209\t:0.01\n",
"and:0.2418178253205861\tbe:0.1846979570893986\twas:0.1714840886206377\tis:0.11211203174860679\tare:0.06696641719207268\tas:0.058325513469791805\twere:0.055505538411702145\tbeen:0.053673972427273224\tof:0.0454166557199309\t:0.01\n",
"of:0.36285203323998894\tthe:0.27290807775512665\tand:0.07577500945800313\trecover:0.05765649045720099\tfor:0.05551360926308395\tThe:0.04865070838772945\tin:0.04353304641405658\tthis:0.03681306964781228\tsuch:0.03629795537699807\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"It:0.23594464495994605\tit:0.22717316733381915\the:0.1504054052601361\twhich:0.10469889818326023\tHe:0.06869022683838816\tI:0.0582633784886276\tand:0.054476820881807574\twho:0.04906449841993971\tshe:0.04128295963407546\t:0.01\n",
"of:0.2398708670291844\tthe:0.22743525417047472\tand:0.13139002385520804\tto:0.10376973167625372\ta:0.08712962001455624\tat:0.06768600089169872\this:0.04664315861358613\tin:0.04554117936171022\tis:0.04053416438732785\t:0.01\n",
"going:0.26738691669112036\tgo:0.1933598153532223\twent:0.11718963579570205\tgoes:0.10231285348537615\tcarried:0.08043757537378236\tand:0.06397033228828157\tfeet:0.05914133459773008\tpassed:0.055022365229574606\tdone:0.051179171185210565\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.43114557048978036\tof:0.14908952579214674\tand:0.1045072440886855\tin:0.07217827145912264\tto:0.06728188081474026\tthat:0.05156175125775929\ta:0.05092066144907935\tbe:0.036081310616252533\this:0.027233784032433272\t:0.01\n",
"to:0.24865584981323077\tof:0.1755186973191839\tand:0.17473038965234514\tthe:0.1716102340425209\tor:0.07406657288806956\tin:0.048262800125335556\tnot:0.03552156459878043\tat:0.03181613714623288\tfor:0.029817754414300773\t:0.01\n",
"and:0.18784140996604134\tof:0.1490887430116108\tin:0.12741405174626447\tthe:0.12173717920647893\ton:0.09649611517282079\tat:0.09222434863135759\tfor:0.08189248322055774\tto:0.06820701309502954\tfrom:0.06509865594983882\t:0.01\n",
"be:0.39826761391959153\tis:0.15796057815986497\twas:0.10146957623459725\tare:0.09611501207808676\tbeen:0.07593253708059396\tnot:0.0371231055572556\tand:0.03691216580366941\thave:0.03272333828051424\twere:0.028487225607293165\the:0.025008847278533086\t:0.01\n",
"of:0.22164806883989052\twas:0.18302484420608378\tis:0.14555789473781836\tand:0.12825755463580168\tare:0.079151406933162\tat:0.06608384853473079\twere:0.05904432692010732\tin:0.057659350143702395\tfor:0.0495727050487032\t:0.01\n",
"and:0.20574901464648052\tbe:0.1782627871071889\twas:0.1377230897430883\tto:0.08832819096533921\tbeen:0.08618103965957719\tis:0.0810041601548845\tof:0.0796758931950268\the:0.07002166678811851\twere:0.06305415774029603\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.4114991059119455\tto:0.15058220612447837\tin:0.09675841314866342\tfor:0.08886941928698783\tthat:0.060129653902898636\tand:0.05846963721855624\tfrom:0.04527991632925893\tat:0.039266408959238296\ton:0.03914523911797293\t:0.01\n",
"of:0.44312963913615244\tin:0.12282353304317452\tto:0.09499541446950903\tfor:0.09048544875518257\tand:0.0730095293923649\twith:0.06868216657964463\tby:0.03586696515268456\tthat:0.030535724383627488\tfrom:0.03047157908765976\t:0.01\n",
"and:0.23749675482912586\tcovered:0.13875918055451128\ttogether:0.10908004926060494\tfilled:0.10240357263225028\tit:0.09524661810405691\tdo:0.09001222509213799\tthem:0.07489655202215911\tup:0.07184143139991794\thim:0.07026361610523571\t:0.01\n",
"the:0.5556308824190578\ta:0.13720448338418917\tlarge:0.08285774618978543\tGrand:0.05815297679000421\tgreat:0.04270661281259393\tThe:0.03529607322748043\ttho:0.03206939177009458\thigh:0.023492945548011696\tvast:0.02258888785878269\t:0.01\n",
"the:0.6137983159775982\ta:0.08076905414888255\tof:0.07820053318804962\tMen's:0.06701386561445852\tand:0.047542788720087145\tThe:0.03774443637027746\ttho:0.030733804695949187\tin:0.01992087175949419\ttbe:0.014276329525203085\t:0.01\n",
"the:0.25667383095902047\twe:0.13839745124855368\tto:0.1309614185522146\tI:0.11673050224062871\tWe:0.1063127810151885\tno:0.08595950777537405\tand:0.07149218382764909\ta:0.04591654573596828\tsincerely:0.037555778645402584\t:0.01\n",
"and:0.23434895996823976\tof:0.22955408581209782\tthat:0.09409037305409815\tin:0.08639572819125022\tare:0.08527121571466885\tto:0.08328782642627251\twith:0.07250267584278741\tis:0.05608191192628823\twas:0.04846722306429699\t:0.01\n",
"the:0.7515516290409329\tThe:0.06831560207837191\ta:0.06690417780126329\ttho:0.03274670796639094\tand:0.01759094674637124\ttbe:0.016216037744837104\tby:0.013955594452220926\tof:0.012174480065536194\tto:0.010544824104075638\t:0.01\n",
"<s>:0.26142681908191784\tof:0.15855007777555713\tin:0.15089353190853635\tto:0.13711535148279327\tat:0.07447879338497189\tfor:0.0596233874362193\tthat:0.05554141478334802\tand:0.04654059105714835\tby:0.04583003308950771\t:0.01\n",
"the:0.25536421426644684\tof:0.16143157139976627\tand:0.11988813480631445\ta:0.09258020596600254\t.:0.0886903827830793\tat:0.08067849408353318\t<s>:0.07735832086728837\tto:0.06796870731098859\tin:0.046039968516580404\t:0.01\n",
"and:0.2500139557465716\tof:0.1577493546094138\tto:0.1349424065470087\tis:0.08629698222507516\twas:0.08055671547012434\tfor:0.07576534216973776\tare:0.07339536277519826\tin:0.07279594799724061\twith:0.05848393245962985\t:0.01\n",
"the:0.2841053618885933\tand:0.17409525159595357\tof:0.1267821049460687\ta:0.11276643083346743\tto:0.0707897767756075\twas:0.06679206630236653\tI:0.056027005813178696\tMr.:0.04957580655972496\tbe:0.04906619528503924\t:0.01\n",
"he:0.23821941843816813\twho:0.14539959481969444\tand:0.13396284861327032\twhich:0.12326385419492465\tit:0.10524941877067034\tHe:0.07647555750607184\tIt:0.06388595938208756\tthat:0.058115667910448844\tshe:0.045427680364663846\t:0.01\n",
"they:0.29456972127128095\twe:0.1296088874247781\twho:0.12777430162695463\tand:0.1221518046519373\tyou:0.07722217804844109\twhich:0.07031603158390948\tThey:0.0614019844168737\tthat:0.059535955266433904\tWe:0.047419135709390575\t:0.01\n",
"and:0.23337832073472708\tof:0.14719064916981853\twas:0.1269815154220225\tare:0.12156824343305432\tis:0.0851522018534693\tby:0.0727655113450206\tfor:0.07000971333471352\tto:0.06823452092361244\tafter:0.06471932378356175\t:0.01\n",
"the:0.5045061553561311\ta:0.17625206175097374\tand:0.07387472218535995\tThe:0.06235153854686844\this:0.05798031626402827\tof:0.031632315909491594\ttho:0.031089194195121628\tbe:0.02621178988502394\ttheir:0.026101905907001396\t:0.01\n",
"that:0.22589800819119046\tand:0.15513259560268788\twill:0.13073779740023783\tto:0.10879797661238737\twhich:0.09142458963169241\tas:0.07543580639651168\tif:0.07276998457406988\twould:0.06971627749222804\twhen:0.06008696409899433\t:0.01\n",
"of:0.18045438050695572\tto:0.1747026357974531\tthe:0.15749425223258814\tand:0.15345542519140226\tbe:0.09235457882182141\ta:0.07340216453377853\twas:0.06625041891181835\tre-:0.045984937709827485\tfor:0.045901206294354936\t:0.01\n",
"of:0.2698660523118012\tthe:0.23484995954929386\tand:0.09904608166287818\tto:0.08908406635712102\tat:0.07671458294901894\ta:0.0659892453558625\t.:0.06118162458386225\tin:0.05380488689934228\tby:0.039463500330819835\t:0.01\n",
"to:0.49185407585675534\ta:0.10576507344136858\tthe:0.09951892274738594\twill:0.08638797846027012\tnot:0.07769469437210497\tand:0.049100570416842224\tmay:0.034263037649572774\twould:0.025417267951119482\tcannot:0.01999837910458053\t:0.01\n",
"owned:0.2778237823068342\tmade:0.12915734501143822\tdelivered:0.1206326024929629\tassisted:0.10198923553477153\tand:0.0966715289911885\toccupied:0.08434079915268108\tconveyed:0.0772321215889164\taccompanied:0.06323193114761544\theaded:0.0389206537735916\t:0.01\n",
"sale:0.6161918246325003\tand:0.09223723399842065\ttherein:0.054314275445928144\twas:0.05173885905257804\tbe:0.040525237430644186\tis:0.0380046974946491\tas:0.03710080186037897\tmortgage:0.03007538595278554\tland:0.029811684132115004\t:0.01\n",
"or:0.2045692572631001\tnot:0.165069560207902\tand:0.1406603448030436\tredemption:0.12589568267922982\tthan:0.08972502997109885\tis:0.06896450207811626\twas:0.06877777860304822\tlook:0.06433523491393658\tthere:0.06200260948052438\t:0.01\n",
"the:0.536621449654995\tcourt:0.18346214977701852\tschool:0.050783953368371465\tThe:0.04419530924049947\this:0.043852296365596136\topera:0.04054352568511813\ta:0.03257277741978576\tsaid:0.031892342717509\ttho:0.02607619577110656\t:0.01\n",
"in:0.2701618008657198\tof:0.22322812646490608\tto:0.10487137246615127\twith:0.08632673851129095\tfor:0.07000513782906682\tand:0.0698531746124623\tat:0.06272645191630617\tIn:0.053970168075094124\tfrom:0.048857029259002434\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"a:0.32362394375427567\tthe:0.31233144258629036\tyoung:0.10437406871450579\tThe:0.08559581255559408\tA:0.06584656075051812\tevery:0.03243347257722975\told:0.03135906711349276\tand:0.01958832585992229\tEvery:0.014847306088171058\t:0.01\n",
"to:0.6230523669881924\twill:0.1005103631629355\tand:0.0919232273937654\tthe:0.03903360547936195\tI:0.0354245878973957\twould:0.03497422388911457\twe:0.02848935292596281\ta:0.019089766465790612\tWe:0.017502505797481006\t:0.01\n",
"the:0.49771108509126194\ta:0.2717866017966557\tThe:0.05480182777105604\tof:0.052742977096447\twith:0.028909596586051703\tand:0.022989719972206783\ttho:0.022211081297783132\tA:0.02000547084410876\tvery:0.018841639544428888\t:0.01\n",
"the:0.40203826747209637\tin:0.2781356805358473\ta:0.1455547255431513\tIn:0.07252028607362312\tThe:0.019697763133043594\tthis:0.019524671467952923\tany:0.017979209906185168\ttho:0.017481983514254566\tevery:0.017067412353845658\t:0.01\n",
"the:0.23174893850408618\tand:0.12551440839716432\tas:0.11143775786841334\t<s>:0.1102769619466863\tthat:0.10733196371434878\tof:0.10160059932940368\tI:0.08252922160699785\tif:0.06224345819598211\tThe:0.05731669043691759\t:0.01\n",
"and:0.2379976800727215\tthe:0.20100817014980685\tis:0.10492267095510664\the:0.10253089196028829\tthat:0.07535349860351108\twhich:0.074243078007954\tnot:0.06863728454623097\tbe:0.0657627412816522\tit:0.05954398442272842\t:0.01\n",
"of:0.3630607183836505\tand:0.1867176181686744\tto:0.126587203481481\tby:0.10560930529423083\tfor:0.05294422490974945\tat:0.04713555293999874\tfrom:0.04215675552397246\tin:0.03558642492896219\twith:0.030202196369280367\t:0.01\n",
"one:0.22521744032678306\tand:0.15148543020685828\tsome:0.13273282758323363\tout:0.13030403369847146\ttime:0.0928837696001405\tpart:0.08325064854181365\tthat:0.06764648243547321\tall:0.0557530673760683\teach:0.05072630023115782\t:0.01\n",
"of:0.3486622817698229\tthe:0.19280812861077798\tand:0.10734261458714824\tin:0.08515494339470993\tto:0.07905792219791803\tfor:0.0607528936457584\tthat:0.044967857889717605\ta:0.036232657081943564\tby:0.03502070082220329\t:0.01\n",
"was:0.18364430568214168\tis:0.162759712418395\tof:0.15076326429589537\tbe:0.1199935589150808\tand:0.11801156758615221\tare:0.07374084163794083\tto:0.0680648263692199\t-:0.06018770740776149\tfor:0.05283421568741274\t:0.01\n",
"the:0.6396473951559211\ta:0.20879968569435847\tThe:0.03835448205555729\ttho:0.02759900379740415\tof:0.024523809138440593\tin:0.01568214508480122\tany:0.014476811102216562\ttbe:0.010742369425208747\tthis:0.010174298546092019\t:0.01\n",
"the:0.2561122386263557\ta:0.14125808720580113\tof:0.13404318009807886\tand:0.10362317858583231\tat:0.08640042551714287\tto:0.07756226121141872\tin:0.07250113958493383\tfor:0.06894254937634693\tthat:0.04955693979408957\t:0.01\n",
"the:0.2916162192067636\tRepublican:0.205660326570531\tDemocratic:0.11721011833609454\ta:0.10781301616057608\tany:0.05875170372895561\this:0.05414856834809552\tone:0.053465284500113126\tof:0.052244800312100735\tthis:0.04908996283676954\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"-:0.22905915061447613\tto:0.21646258246493133\t.:0.12388799439628011\tt:0.10694183529118235\tti:0.08504407409236164\tI:0.06782407740209441\t<s>:0.06488178801336227\ti:0.048392809518461616\tof:0.04750568820685004\t:0.01\n",
"the:0.5421429740218874\ta:0.10660646480892277\tsepa-:0.09818654592496766\tthis:0.0498184399146883\tany:0.04786149085696305\tof:0.04214060959407014\tsame:0.040486547673158284\tand:0.03142566606062725\tThe:0.03133126114471522\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"that:0.22190900604479433\tas:0.15814286434106922\tand:0.14725282322050032\twhen:0.14064797915759425\twhich:0.10024052015462875\tif:0.062012906985433665\tbut:0.060666198493097775\twhere:0.057148551797969085\tbefore:0.0419791498049128\t:0.01\n",
"<s>:0.5077204322896133\t.:0.13794055356225604\tit.:0.08067719263893704\tthem.:0.06360146968227404\thim.:0.047824772087541684\tday.:0.04328270891793961\tcity.:0.03809488877323477\ttime.:0.03683931255310579\tyear.:0.03401866949509769\t:0.01\n",
"the:0.20467854619250483\ta:0.16688819837561775\ttook:0.16046060841277338\ttake:0.11945670302807362\tto:0.11456252191250829\tin:0.08386156362623168\this:0.05207225569755654\tno:0.04560810403884961\tand:0.042411498715884295\t:0.01\n",
"is:0.18661444081614292\thave:0.1623037900774767\twas:0.1378126149108157\thas:0.1336056820825177\tare:0.10596102201289642\thad:0.09378418283021321\tnot:0.07818846617581839\tand:0.05529748067089571\twere:0.036432320423223294\t:0.01\n",
"and:0.22043221216889355\tor:0.1402435894492591\tappear:0.13388606094278052\tdays:0.124708957017998\tthat:0.09367849322853246\ttime:0.08957390444209595\tbrought:0.06392370992962311\tjust:0.062112643107892156\tlong:0.06144042971292521\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"and:0.2310931925224\tcontained:0.18189150187687583\tserved:0.16470358446954678\tsituated:0.0832836269588494\tproperty:0.07523467689405387\tinterest:0.07210340216842065\tland:0.07039581793820512\tor:0.05709556004153315\tthat:0.05419863713011525\t:0.01\n",
"is:0.32768645866088775\tbe:0.2934515246905601\twas:0.10076599339271626\tare:0.07292199433428585\tIs:0.0518193225684906\tbeen:0.04257096493101604\tand:0.04179131614398357\the:0.029633406255197767\tnot:0.02935901902286196\t:0.01\n",
"was:0.22224834512800085\tbe:0.1820882308205486\tand:0.16757331041142773\tis:0.15407911214774758\twere:0.07100750161366269\tare:0.06839578058515618\tbeen:0.05750462974852359\tto:0.03420753297643947\the:0.032895556568493356\t:0.01\n",
"of:0.22516529045380787\tto:0.1452797229018144\tand:0.13889339584425367\tin:0.1315574654383241\tfor:0.10309325756061351\twith:0.0828099699767283\tthat:0.05763416717073796\tby:0.05614930240604123\ton:0.04941742824767886\t:0.01\n",
"and:0.3497565658653669\twas:0.11359982220150441\tof:0.10512052396785651\tthe:0.08434632503846134\tI:0.07263695604169365\the:0.069799155712698\ther:0.06786919878831847\tto:0.06534505501931795\tbe:0.06152639736478275\t:0.01\n",
"of:0.37637045426306576\tin:0.22574860392551702\tto:0.10936202837824356\tIn:0.05339413954969779\tfor:0.047973139894450754\ton:0.0477698187742778\tfrom:0.04657042957327049\tand:0.04243434891566152\tthat:0.040377036725815225\t:0.01\n",
"is:0.26334606186643345\tnothing:0.20001453075327721\twas:0.09266428592816316\tare:0.0843621411731606\t;:0.08366437123701793\tanything:0.07892043621637715\tand:0.06545180077953085\tit,:0.06298103036147791\tbe:0.05859534168456176\t:0.01\n",
"any:0.1897819533934468\tno:0.15946085400115803\tNo:0.1564117890365598\tthat:0.10915726108769323\tthe:0.08992887419463694\tof:0.08911528865420655\tsome:0.07591380972316644\tand:0.06117159787189499\tevery:0.05905857203723712\t:0.01\n",
"that:0.3657437588038818\twhich:0.15543590404986893\tand:0.10870635337295763\tas:0.0861359609551999\tif:0.08431735957475078\twhat:0.056124764742429396\twhen:0.04690268569991153\twhere:0.04504090989058847\tbut:0.04159230291041144\t:0.01\n",
"and:0.2503179771193183\tit:0.1191931764009684\tthat:0.11111674088683451\tmade:0.09607595369407342\twas:0.09224657807501195\tthem:0.09209259261588562\tfound:0.08802579283705521\tis:0.07319718064234634\tup:0.06773400772850624\t:0.01\n",
"feet:0.16566530055203563\tand:0.15830955822731993\tmen:0.12318583917351082\tit:0.11132728504145045\tthem:0.09491262239362781\tmade:0.09116121518246559\twell:0.09017600604476055\thim:0.08080596145667249\tup:0.07445621192815671\t:0.01\n",
"one:0.21303943994489263\tout:0.1698340805609801\tpart:0.1472687798153334\tsome:0.10564771493692295\taccount:0.1047360670487683\tany:0.0723917686949588\tall:0.06334962810761698\tthat:0.06091520523433158\ttion:0.052817315656195345\t:0.01\n",
"and:0.24451186867984265\tis:0.17638534709084008\twas:0.167723588669915\tare:0.11269515445157204\twill:0.08835128735185704\twere:0.07896274697641939\tbut:0.054809862011881254\tHe:0.034580698982199426\tI:0.03197944578547331\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.567427143141002\tin:0.13367096164952344\tthe:0.10706096260424934\tCounty,:0.09031243625854772\tto:0.02182377392057634\ton:0.01800533609116822\tand:0.01759315698597582\tfrom:0.017437911587640183\tcounty,:0.016668317761316845\t:0.01\n",
"that:0.22894298162916124\tand:0.18389959895169808\twhich:0.14233538044387992\twhen:0.10658309596613334\tas:0.09538865855949213\tto:0.09182559855047093\tif:0.04809103819452874\twill:0.04780503333124626\tbut:0.04512861437338917\t:0.01\n",
"it:0.33951862802776367\tIt:0.19706178503055488\twhich:0.11328211140964926\the:0.07712448792724577\tand:0.0757183681426737\tthat:0.07027533986589132\tThis:0.0465004289062779\twhat:0.03714889030004778\twho:0.03336996038989567\t:0.01\n",
"the:0.47640483576962583\tsupreme:0.10869523268254419\tcircuit:0.09837235878942048\ta:0.07817895695598318\tdistrict:0.06883851344944639\tsaid:0.05608541436404819\tThe:0.037959380316109174\tthis:0.03645216312175169\tpreme:0.029013144551070822\t:0.01\n",
"the:0.5495287893930453\tof:0.16104484909695568\tand:0.06227818291316991\tto:0.04857104899298384\ta:0.04608292085119176\tThe:0.039326271667248364\tin:0.028907856097435482\ttho:0.027441480672011943\tthis:0.026818600315957824\t:0.01\n",
"and:0.30813827370948377\tsaid:0.1730589697868629\tfact:0.11175374042727586\tstated:0.09076470050424858\tso:0.07733344451894186\thim:0.06626454011197735\tknow:0.06377304208821113\tsay:0.049787186448953615\tis:0.04912610240404502\t:0.01\n",
"men:0.2731702010647946\tone:0.11865994562727966\tman:0.11566990680482998\tit:0.10749890452807515\tright:0.08092322182606324\ttime:0.07566938360402697\twomen:0.07455536946862254\tmade:0.07414970919169232\tout:0.06970335788461558\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"and:0.2996888291677481\tthat:0.17085971560498123\twhich:0.11591051103377074\tas:0.1150222878630635\tbut:0.07757774864558399\twhen:0.06657243444301325\tif:0.05447713480311492\twhat:0.04506079985386207\thave:0.04483053858486231\t:0.01\n",
"and:0.32515553213626125\tthat:0.29126606270680055\tas:0.10628292109216969\tbut:0.0732514167309409\tBut:0.051062683762046916\tAnd:0.04149735786724819\tor:0.03464661863463881\tdo:0.03400279497972793\teven:0.03283461209016575\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.3477149616244239\tthe:0.1538325431381699\tof:0.13202859360000388\tto:0.08723421791793828\ta:0.07841203150074808\twas:0.06577850505664147\tas:0.04255306051830522\tbe:0.042380913047885285\tis:0.040065173595884074\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"I:0.25539779671872864\the:0.18349300334795196\tand:0.15967626042938365\thave:0.10497769054355284\thad:0.08001900757539634\tthey:0.060495659494274656\twe:0.05237105773407709\thas:0.05069881245627134\twho:0.042870711700363384\t:0.01\n",
"so:0.1760165658941351\tof:0.14949769167081106\tin:0.12044463059327694\tand:0.11001724059777046\tas:0.10675562777882028\tthe:0.09979829453072665\tfor:0.09482125265586638\twith:0.06977344793354932\tgreat:0.06287524834504374\t:0.01\n",
"of:0.2094516051588005\tas:0.1264115211559106\twith:0.11783509578971092\tin:0.11435911483682636\tis:0.10484421791138053\tto:0.09139418939714429\tby:0.0864576179308981\tand:0.07160674380532174\twas:0.06763989401400695\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.38373488266549505\tand:0.1417317005694266\tI:0.10821479214883885\ta:0.09409770925898735\tto:0.07211011846801023\tyou:0.0606047774370622\tor:0.04775426269773208\tnot:0.04613014904753961\twe:0.03562160770690808\t:0.01\n",
"of:0.3614087471993659\tin:0.24935405560538\tto:0.11129762130740292\tIn:0.06002884368575014\tby:0.05242734286031831\ton:0.05111178909098331\tfor:0.03674554356162022\tthat:0.03622562609695302\tfrom:0.03140043059222616\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"to:0.588866432368409\twill:0.11985715357749802\twould:0.07698760959218116\tthe:0.04950444495151361\tnot:0.042726860787379424\tand:0.039322666710318484\twho:0.026404103516642994\twe:0.02547019351426062\tshould:0.020860534981796713\t:0.01\n",
"a:0.18378738514292822\tand:0.17593907584851706\tin:0.1592008294654304\tof:0.10473099488914708\tthe:0.10251845386546818\twith:0.0746186557997976\twas:0.06808926562670575\tfor:0.06400953452792248\tbe:0.05710580483408318\t:0.01\n",
"the:0.6640815020341746\tsaid:0.15032282700436012\tand:0.04070303835213803\ttho:0.02905554277908202\tthis:0.028718595489096835\tThe:0.023827234155262517\ta:0.021714721335162813\tof:0.016866546057654353\ttbe:0.014709992793068482\t:0.01\n",
"the:0.36007957622374165\tand:0.1647361780707947\ta:0.13340854689956114\tof:0.11797114713514299\tto:0.08261822317243796\tThe:0.04392626138561703\tin:0.029901516810452496\this:0.029583298719743075\tbe:0.02777525158250888\t:0.01\n",
"to:0.551784367415699\tand:0.10298581408026049\tnot:0.0802167715804677\twill:0.0649823459176949\ta:0.06014778493176352\twe:0.041808222808000395\twould:0.03700722856815801\tmay:0.0258742269924506\tthey:0.025193237705505377\t:0.01\n",
"it:0.3015171229558848\tIt:0.2619239201557766\twhich:0.09626795511435841\tthat:0.08898798449304163\tand:0.08511105156584331\the:0.061266256503055685\twho:0.037523872593120546\tHe:0.02875196267310322\tthere:0.0286498739458157\t:0.01\n",
"the:0.20430155198314956\tof:0.17273580417316312\tin:0.15801429352994745\tand:0.1364836783102874\ttheir:0.08343805256886587\this:0.0638060619386374\tno:0.062024204318386435\tor:0.05744126183983228\tan:0.05175509133773069\t:0.01\n",
"and:0.1551143959809371\thim:0.1228649811003413\table:0.11339265141476382\tis:0.10969666770510485\tas:0.10671661386113254\tbegan:0.10089273437533938\tthem:0.09600437110686602\tright:0.095607902004489\tgoing:0.08970968245102592\t:0.01\n",
"and:0.3263647552579012\tof:0.18034356092949677\tto:0.11181231694963173\tin:0.09421459749244987\tfor:0.07458155577146919\tthat:0.059908072666210434\tor:0.0542045606842733\tfrom:0.04912690972755014\twas:0.03944367052101722\t:0.01\n",
"the:0.4254653188724556\tof:0.1824356635001177\tto:0.09163335558886722\tin:0.06716756669241074\tand:0.06581304653601608\tby:0.04286697674001646\ta:0.04187825495456122\t<s>:0.03779976890323678\ton:0.03494004821231817\t:0.01\n",
"and:0.27436245036883095\twas:0.14448176894817452\tis:0.13580427054792873\tdo:0.1300948847428064\tare:0.10464344086497208\tbe:0.05569213076355586\twere:0.05341921244930933\tnot:0.04889876470710106\tor:0.042603076607321\t:0.01\n",
"the:0.6844184681025479\tand:0.13206263123922918\tThe:0.033884882682589004\ttho:0.02967206851582505\tthis:0.024243238432354045\tCounty,:0.023753470610941154\tof:0.02310209626293428\ta:0.019773852608151416\tcounty,:0.019089291545427888\t:0.01\n",
"and:0.5145870481829047\tof:0.13579716509428713\tin:0.06074427446454966\twas:0.05656592946002774\tto:0.05468351670774774\tnot:0.04948977589207242\tthe:0.04019011747933715\tfor:0.03953636177645423\twill:0.03840581094261922\t:0.01\n",
"there:0.31792060553551105\tThere:0.2289986106408456\tIt:0.12723188543055353\tit:0.12505343413185893\twhich:0.048489575379316786\tThis:0.04517066265750571\tthat:0.04385909080490402\tthis:0.031144485852852247\the:0.0221316495666521\t:0.01\n",
"they:0.30042824242823585\twho:0.1950547703093929\twhich:0.0960797278257302\tand:0.09500175187485603\twe:0.08585129900795603\tThey:0.07925191496174139\tmen:0.06910498898154853\tthat:0.03616200846309813\tit:0.03306529614744097\t:0.01\n",
"the:0.4129810200782327\tof:0.168084360465317\tand:0.1153107964712601\this:0.10604227658334968\tto:0.050848321622652334\ttheir:0.04422500315101893\tby:0.04130562241416356\ta:0.02569045834399302\tin:0.025512140870012735\t:0.01\n",
"we:0.24762344069507466\tI:0.17035648807066917\the:0.1574152246846507\tthey:0.12131206775856748\tyou:0.08646507753611236\tWe:0.07076619324482059\twho:0.05194958171775103\tit:0.04996177945950042\tand:0.03415014683285363\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"June:0.17741043185854669\tNo.:0.1442999229887182\tJuly:0.11443891327493567\tMay:0.1112915282950738\tApril:0.10213497154989845\tMarch:0.09309287224245874\tlot:0.09216964093103236\tSection:0.08060325852053286\t.:0.07455846033880326\t:0.01\n",
"State:0.1502047745531088\tnumber:0.13938989938116322\tline:0.1364283445567739\tday:0.11415609529892072\tstate:0.10303218347600615\tcity:0.09706627837266145\tboard:0.09441026648607855\tside:0.07940801912478325\tcounty:0.07590413875050392\t:0.01\n",
"and:0.167673560168984\thim:0.1302595889239382\twant:0.12288405280822053\table:0.11252456763525269\tis:0.10177603532893538\tenough:0.09848886248683617\thave:0.09133909511025426\tme:0.08613098450363031\tnecessary:0.07892325303394836\t:0.01\n",
"the:0.4050174859406095\ta:0.19287214050206902\tand:0.10402994375221243\tof:0.09361146418781789\tThe:0.06404476208814887\tto:0.03545830884306381\tA:0.033886725060714676\tby:0.030582100277420404\tan:0.0304970693479435\t:0.01\n",
"of:0.4146280153675938\tand:0.21096551114289688\t<s>:0.0872734775164732\tin:0.0631400514368199\tis:0.052244090240224125\tthe:0.04613430921245016\tcounty,:0.04502261644580354\tWest:0.03568501680672304\tby:0.03490691183101523\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"he:0.19173337232355075\tand:0.18056560780194628\tit:0.17494044678573398\tbe:0.10717627492111123\tIt:0.09456337964398404\tI:0.08667335105653182\tone:0.05806261417844429\twho:0.04935096159791791\tthey:0.04693399169077968\t:0.01\n",
"he:0.2272316218740325\twhich:0.15482211483494532\tit:0.13108360064179722\twho:0.11098408256780556\tthat:0.09164792681250553\tIt:0.08815807821807489\tHe:0.07363258986895568\tand:0.06618689277515644\tshe:0.0462530924067268\t:0.01\n",
"to:0.51019035401147\tand:0.1282828950940329\tnot:0.09665633594631404\twill:0.07111855417509413\tI:0.04235297550551573\twould:0.041881124253081485\tthey:0.04038824669907218\tmay:0.030371790069835928\twe:0.028757724245583764\t:0.01\n",
"and:0.26173624961695785\tas:0.15146080038609855\thim:0.10005835208746312\ttime:0.08379809625746391\tright:0.08000828131280072\tup:0.07921757687050938\tway:0.07866601080384641\twent:0.07843938050184188\tthem:0.07661525216301812\t:0.01\n",
"as:0.2826673162952988\tand:0.21000232027539958\tto:0.10267633041199561\tof:0.07700073992216402\twith:0.07070322524513654\tfor:0.06785010823536745\tby:0.06608050581692056\tthan:0.05774046314608463\tthat:0.05527899065163275\t:0.01\n",
"the:0.22068520728929386\tand:0.21391290068337135\ta:0.2069177275626424\tit:0.07685689476082004\tis:0.0644662667425968\tIt:0.05920723189066059\the:0.05497927790432802\twas:0.04686558519362188\tbe:0.046108907972665154\t:0.01\n",
"to:0.2579934679856101\twill:0.25716066202686916\tmay:0.09940882977352528\tshould:0.09388003845590547\twould:0.07932460153261252\tshall:0.06821255860978659\tcan:0.04795903857246232\tmust:0.04774653434054357\tnot:0.03831426870268495\t:0.01\n",
"that:0.31045312736729286\tand:0.2741619673879975\tbut:0.09278721838768438\tas:0.0809731518512709\tif:0.06685178796096648\twhich:0.04741835803803108\tIf:0.04282012299873716\twhere:0.03994928580268348\tBut:0.034584980205336124\t:0.01\n",
"in:0.20634189207519552\tof:0.1981065996033326\tto:0.123458307959821\tfor:0.09432613623709989\tIn:0.08009632235809014\tby:0.07635568321455681\ton:0.0744652490236086\tand:0.07042944619180104\tthat:0.0664203633364944\t:0.01\n",
"one:0.21303943994489263\tout:0.1698340805609801\tpart:0.1472687798153334\tsome:0.10564771493692295\taccount:0.1047360670487683\tany:0.0723917686949588\tall:0.06334962810761698\tthat:0.06091520523433158\ttion:0.052817315656195345\t:0.01\n",
"of:0.2840363190262051\tby:0.15598887611571835\tand:0.14646262750256178\tto:0.14371951214897538\tthat:0.10512059634645278\twith:0.0491341012308661\twhich:0.043239861569187785\t<s>:0.03523647884429967\tfor:0.027061627215733044\t:0.01\n",
"the:0.6603328674788375\tan:0.057820411320766735\tThe:0.0575737288542457\tand:0.05298368177191014\ta:0.041701655464289694\tthat:0.03648896118520544\tto:0.02921828193833549\tany:0.029105215714068027\tthis:0.024775196272341312\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"to:0.26220594866660685\tof:0.17179345176258268\tand:0.17157036803283213\tin:0.14395524307649524\twith:0.06190531237745299\tfrom:0.050431375532227755\tby:0.04455821192481506\tare:0.043078631723474224\tthe:0.04050145690351302\t:0.01\n",
"the:0.6399639905250509\tof:0.08532328405587611\tand:0.04993794348841005\tto:0.04684855711734698\tan:0.04561185676111192\ttho:0.033242098638712955\tThe:0.031282221072104814\tor:0.029013120672888318\ta:0.028776927668497834\t:0.01\n",
"and:0.3378657687553083\tthe:0.14006300572603328\tto:0.1287218799093488\tof:0.10785943150731914\tthat:0.06872072269452849\tbe:0.0546008505935738\tin:0.0527261231555285\tor:0.0525575675256857\twhich:0.046884650132673934\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.42690900784772706\tthat:0.10573107106642742\tto:0.10551314825878626\tin:0.10119565544975265\tand:0.0745504272605984\tfor:0.0664967539357255\tby:0.046194331889304614\twith:0.032309451138744325\tfrom:0.03110015315293374\t:0.01\n",
"out:0.1471520931009819\tput:0.13685625488305744\tgo:0.12623049682273274\twent:0.118747809755819\tenter:0.1142232724480244\ttaken:0.10085501159313691\tbrought:0.0825501115143349\ttake:0.08189633946715635\tthem:0.08148861041475633\t:0.01\n",
"of:0.42709252092664307\ton:0.12856159349495735\tin:0.09837329009324533\tand:0.06992426837948629\tto:0.06833496806205819\tby:0.06482430358120028\tfrom:0.04626907891145915\tfor:0.044458879170302036\tupon:0.04216109738064827\t:0.01\n",
"<s>:0.5660938136885056\tit.:0.08323990027496711\tthem.:0.06853476330640096\t.:0.05918035036954978\thim.:0.05396599677545661\ttime.:0.04340010986073159\tday.:0.03991016701926948\tcountry.:0.03894406786446523\tof:0.0367308308406534\t:0.01\n",
"out:0.159950435414814\tone:0.1404944592656127\tpurpose:0.1349492477537603\tmeans:0.10861036266495026\tis:0.0925024717025902\tall:0.09029691363268777\tthat:0.08865627513216988\tuse:0.08774838388220645\tnumber:0.08679145055120853\t:0.01\n",
"the:0.2674492964256619\tof:0.20511700061949348\tand:0.14485297190820026\ta:0.10901726580538401\tto:0.07826945908641957\tbe:0.053803876767259305\twas:0.04954367835637349\tis:0.042308161686394764\tin:0.03963828934481334\t:0.01\n",
"and:0.30132020239915897\tis:0.11119746070334267\tbe:0.10342383628277005\tserved:0.08924283171230943\tthat:0.08794619158593868\ttime:0.07790541440461883\twas:0.07681424830763602\tor:0.07597111826904795\tnow:0.06617869633517741\t:0.01\n",
"the:0.7605861022648828\tfeet:0.05103884856267501\tThe:0.035912872062699754\ttho:0.034915728930140014\tmiles:0.0332318699917679\tand:0.028718182077030995\tsaid:0.019193543560615957\ttbe:0.013662318198758013\tof:0.012740534351429514\t:0.01\n",
"and:0.26594315878444674\tof:0.22933545630346117\tthat:0.12479247484575438\tthe:0.09166086683242511\tby:0.06834566005062791\twhich:0.057820186622795464\tto:0.053239634010883295\tit:0.05190797760865765\tin:0.04695458494094833\t:0.01\n",
"the:0.4025268863206588\tof:0.2872967801046908\tin:0.0655806195046726\tand:0.06264045163418247\tto:0.05159067925241615\tthis:0.0342072466663573\tfor:0.030865940254387617\tThe:0.028837467716297204\tour:0.02645392854633687\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.2274042971499361\tthe:0.20271664897545216\tand:0.12808673703200713\tto:0.1053491150950283\tin:0.09190963150906721\tbe:0.0654098204832012\ta:0.05828099837938107\tor:0.05692500395274872\tfor:0.053917747423178175\t:0.01\n",
"and:0.19433510573309606\tbridge:0.18819252122194727\tcame:0.12976583652015194\tup:0.09644358331385654\twent:0.09129270334560786\tdirectly:0.07996485111968163\tout:0.0767132844805258\tgo:0.06763501286498921\tway:0.06565710140014373\t:0.01\n",
"to:0.3467751575045371\twill:0.20942369836360963\tmay:0.08994092546377434\twould:0.07826426574466623\tshould:0.07001392021380685\tshall:0.06478043770533688\tcan:0.04904672324021315\tnot:0.04241219791542283\tmust:0.03934267384863291\t:0.01\n",
";:0.22090971489875222\tnothing:0.13508905867316987\thim,:0.12034140628641939\tit,:0.1174467613330467\tis:0.09832858975925855\ttime,:0.09794524362026058\t,:0.07436224406698602\tthem,:0.06570893480216526\tyears,:0.059868046559941455\t:0.01\n",
"the:0.31039242718107035\ta:0.19643180386293724\this:0.15165135923481182\tof:0.09596397032646566\tand:0.06567230314506799\ther:0.05354271534754611\ttheir:0.04148669531298506\tmy:0.038388543114431205\tthis:0.036470182474684455\t:0.01\n",
"It:0.3266857175597988\tit:0.13195489442576572\tthere:0.13183790859317351\twhich:0.10719594067158102\tthat:0.10180446106339319\tThis:0.05410317374713002\tThere:0.05302876367069201\tthis:0.04673749446568823\tThat:0.03665164580277761\t:0.01\n",
"and:0.3057135282981235\tin:0.12938636157639732\tthe:0.10855623510485674\t.:0.10233178697300999\tof:0.0858782001653508\tby:0.07752851269468367\tBook:0.07747747910805224\tIn:0.05718672959360253\tbook:0.045941166485923245\t:0.01\n",
"the:0.2542530716217347\ta:0.15520871124301025\tof:0.15043577097031371\tto:0.12416771410771368\tand:0.07821679229275154\tin:0.07660260139688002\tan:0.05545488766255273\ton:0.05138208837779513\tfrom:0.044278362327248286\t:0.01\n",
"said:0.6694016695324476\tsuch:0.07479143417509994\tthe:0.06352153291780785\ta:0.05640644159898923\tcertain:0.03344552262912968\tto:0.02570146789676645\this:0.02420865669342227\tof:0.024062320734806398\tand:0.018460953821530526\t:0.01\n",
"of:0.5752343176843888\tin:0.14728314967164774\tto:0.07586931738189924\tby:0.06094295978398383\tIn:0.03187140209691087\tfrom:0.02685828138852238\tthat:0.02651800685039899\tfor:0.023111756606175194\tand:0.022310808536072903\t:0.01\n",
"in:0.35168738267170013\tof:0.2161308246731403\tIn:0.18342830430030385\tto:0.09495364515598143\tfrom:0.04895899606398856\tby:0.02729718036905675\tand:0.024276392632415607\tat:0.022801158408050377\tthe:0.020466115725362916\t:0.01\n",
"and:0.33048183646436796\tannum,:0.2062559985221253\tbe:0.19755858366481094\tare:0.061371021965354156\tsale,:0.05092062266723898\twas:0.03818332005946521\tis:0.03662241378721406\tannum:0.036119803547777336\tinterest:0.03248639932164593\t:0.01\n",
"the:0.34736930596873644\tand:0.15763208057710154\tof:0.11166840498221758\tI:0.08175444363542049\ta:0.0812856516024162\tthat:0.059471574058130014\tThe:0.057399646832771156\tin:0.05269010156251936\tto:0.04072879078068718\t:0.01\n",
"the:0.5823404380432202\tand:0.18598824907674033\ta:0.04944237329657237\tThe:0.048230822114946816\ttho:0.03161599363986972\tor:0.03145049158009505\tof:0.030632216538495845\twith:0.015249036345319229\tin:0.015050379364740301\t:0.01\n",
"and:0.24557953753858167\tas:0.12650188766855958\tright:0.10063687424013512\table:0.09493796281140489\tis:0.09150584345496597\tnecessary:0.0913638300458168\torder:0.08850480089406655\thim:0.08350812954573669\tthem:0.06746113380073271\t:0.01\n",
"of:0.20513061752555828\tto:0.1661903538629138\tis:0.1194792631309335\tin:0.10318592690905087\twith:0.09770366834972315\tas:0.09033271908501489\tand:0.08298583734710399\twas:0.06579095331112866\tby:0.05920066047857301\t:0.01\n",
"was:0.18313785213629435\tbe:0.1418222967153923\tbeen:0.12927035551881852\tare:0.11919694752418564\tis:0.10516339645055613\twere:0.0860525825976303\thas:0.08487966421373852\tand:0.07297455362214564\thave:0.06750235122123864\t:0.01\n",
"the:0.39679295459971375\tof:0.10981907923820704\ta:0.0973673091878073\tand:0.08865386882001625\tto:0.08441856390806124\tThe:0.06707654369225664\tor:0.056146699542888624\this:0.04919578667170777\tnot:0.04052919433934127\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"miles:0.18299242298967028\tand:0.18135997670380358\tfar:0.16581539654994035\taway:0.10764235266872317\tfeet:0.07872910834228829\tthem:0.07419353254142841\twas:0.06995796329265747\tis:0.06628971409784934\thim:0.0630195328136391\t:0.01\n",
"the:0.7816565732709777\tThe:0.06796750638687976\ttho:0.040476511949194785\tof:0.024415269105656976\tand:0.021586900735607335\tour:0.020096738854827444\ta:0.014807448218149612\ttbe:0.01090447258355908\ttheir:0.008088578895147303\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.22164806883989052\twas:0.18302484420608378\tis:0.14555789473781836\tand:0.12825755463580168\tare:0.079151406933162\tat:0.06608384853473079\twere:0.05904432692010732\tin:0.057659350143702395\tfor:0.0495727050487032\t:0.01\n",
"and:0.2856595858338429\tthat:0.12769517955602877\tI:0.12244895948478993\twhich:0.11528337531338427\tof:0.10904160428148196\tthe:0.08661223686854515\tto:0.05285040125756709\twhi:0.04679023037451192\t<s>:0.0436184270298481\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"the:0.24596288955955295\tand:0.16331079864438022\tof:0.1497562475098918\tto:0.11241360832287664\tin:0.09064769647032553\this:0.060910616163415525\tbe:0.060673008123120625\ta:0.054443630683502685\tfor:0.051881504522934004\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.5113625345819803\tThe:0.1217471234043763\tof:0.11445080173130298\tand:0.05148873471323966\tin:0.04258876108889156\tthat:0.04138855392170663\ttho:0.03960521690367684\ta:0.03637663947080507\tthis:0.030991634184020702\t:0.01\n",
"of:0.21661551630274298\tand:0.18282749276200075\tin:0.10252841729615182\tto:0.08774054080476627\tthe:0.08670557709540762\tat:0.08431420030404307\twith:0.08286292252286377\tan:0.07811323973328271\tbe:0.06829209317874091\t:0.01\n",
"have:0.15354287946064382\tof:0.14700029098077383\tand:0.13428615641545041\tto:0.11407329446873885\thad:0.10478674943980648\thas:0.10063103123543632\twas:0.08978843296490481\tis:0.07697265252455268\tbe:0.0689185125096929\t:0.01\n",
"and:0.23519407566295011\tI:0.213200999283904\the:0.16775496711697274\twho:0.1261176687518322\tthey:0.06876040165588049\tHe:0.0494463887243923\twe:0.049040928408473114\tshe:0.04324765868687344\tthat:0.03723691170872162\t:0.01\n",
"and:0.22497612075815618\ta:0.20251634832266763\tthe:0.19584643104993263\twas:0.08702102283464538\tbe:0.06524053413713198\tof:0.05638748369336789\tis:0.0550416853609994\tare:0.05403073087606878\twere:0.04893964296703018\t:0.01\n",
"the:0.3348584091049321\ttake:0.12725801750351234\tan:0.1236345485440197\tno:0.12163705766189238\tof:0.07654459473814151\tthis:0.06328105856688486\tand:0.05508904929845606\ttaking:0.04472668760865308\tto:0.04297057697350803\t:0.01\n",
"the:0.43371011716481706\ta:0.17428303166406264\tin:0.09091492830518884\tan:0.07222883211279488\tof:0.06566005699729634\this:0.05008832507887031\tno:0.036618283943056495\tThe:0.035952058758772366\ttheir:0.03054436597514108\t:0.01\n",
"<s>:0.48088391711944395\tit.:0.1121436800289078\t.:0.08176178972258216\tthem.:0.07909271936245885\thim.:0.06426912747150024\ttime.:0.04901945524130228\tcountry.:0.048347695468140044\tday.:0.03873649688219205\tyears.:0.03574511870347253\t:0.01\n",
"the:0.30312375272321207\tof:0.16166032831436067\tin:0.15866673895310268\tand:0.12148168771679982\ta:0.07125236416583758\tIn:0.06611204284083301\tare:0.03918844466898429\tto:0.03743532869932168\tThe:0.03107931191754829\t:0.01\n",
"the:0.7217150152013792\ta:0.09452384388212125\tThe:0.08706793943181249\ttho:0.02837732747979073\tand:0.022113755162159465\tof:0.011414985477730965\tour:0.009956185415944886\ttbe:0.00797015279881792\tthat:0.00686079515024317\t:0.01\n",
"and:0.2004071393256778\ttogether:0.17557421321754482\tcovered:0.14439131391204008\tone:0.135376229537707\tthence:0.08161469000631305\tup:0.07837410736045335\talong:0.05897206274710975\tfilled:0.05892930895026584\tcharged:0.0563609349428883\t:0.01\n",
"is:0.25026591316573965\twas:0.16683185557722202\tthe:0.13414668462429155\tand:0.11246226367729859\tin:0.09434357872869249\tof:0.07765189325572396\tare:0.05424653197024321\ta:0.0502790923583583\tit:0.049772186642430216\t:0.01\n",
"the:0.15558068973429331\tand:0.13354667717150695\tbe:0.12578054873716796\twas:0.1184682401045136\thave:0.10846874603152128\thas:0.09405937577561069\tbeen:0.09099142275373596\the:0.08322259179563286\tI:0.07988170789601738\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"to:0.37100709160104733\twill:0.22421944628695975\twould:0.09385292792503519\tshall:0.0707034404201489\tmay:0.06082406138375061\tnot:0.0580551975061408\tshould:0.05455278993844772\tmust:0.03613053958694591\tcan:0.020654505351523765\t:0.01\n",
"the:0.2650172190384681\tand:0.2551687184559734\the:0.10294119370990533\thad:0.08339803820358226\tHe:0.06413114624129625\thave:0.061650344338418435\tI:0.057145962796577174\thas:0.05195743257860035\twho:0.048589944637178806\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.44485959926215446\tof:0.146772041149834\tother:0.06569482994285775\tand:0.06207652572499095\tthis:0.05977163137283222\tfor:0.059244964009546944\tin:0.05301789548911577\tany:0.051516709784022945\tthat:0.04704580326464518\t:0.01\n",
"the:0.8042750945001542\tan:0.04636524442905468\tand:0.044277019805193156\tThe:0.04150157303918106\ttho:0.021989367106322596\tof:0.012884492872431248\ttbe:0.009006668030965014\tin:0.005028370832580137\tequal:0.004672169384117824\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"one:0.24238710914605296\tday:0.15809732644656702\ton:0.10454606940568768\tin:0.10182249184703403\tperson:0.08577923091694678\tand:0.07666947960318439\tman:0.07454306179073504\ttwo:0.07432268691482583\tyear:0.07183254392896636\t:0.01\n",
"the:0.6181267891922759\tof:0.08954503148636385\ta:0.07586674323318082\tby:0.059390725898353675\tThe:0.03881726598622238\ttho:0.03287961387085925\tin:0.02966271405917556\tfirst:0.025113247118053635\tand:0.020597869155514946\t:0.01\n",
"the:0.24343084569487752\tand:0.16178693456557883\tof:0.13887751795222011\tto:0.1244772705341572\ta:0.11336884681343598\tbe:0.05818394061425249\tis:0.050746831112712124\tin:0.049860590702662695\twas:0.049267222010103036\t:0.01\n",
"of:0.553611922852767\tin:0.15131089205714193\tto:0.08388992443279268\tthat:0.05445165621170139\tby:0.031239276357067098\twith:0.030932249593583674\tfor:0.02935099306965666\tand:0.028290464742375555\tIn:0.026922620682914216\t:0.01\n",
"the:0.6985457680982469\tThe:0.11278717852404056\ta:0.09487830248979053\ttho:0.041136634497669675\tand:0.013956638600961422\ttbe:0.012021790600158616\tin:0.00830024332677309\tTho:0.005190745058605867\tof:0.0031826988037534495\t:0.01\n",
"the:0.8241362793464836\ttho:0.04275225538890965\ta:0.029284547419926622\tThe:0.028086976491787066\ttbe:0.020034621411647153\this:0.019623541221581782\tand:0.011729541233131599\tin:0.007716929659081589\tits:0.0066353078274508995\t:0.01\n",
"the:0.5900094328861\ta:0.2537078762193303\tThe:0.03589142202075733\ttho:0.027859466661202027\tand:0.02641929179001029\tof:0.01557851072305965\tany:0.014199794394801703\tgreat:0.0134131580515271\tevery:0.01292104725321175\t:0.01\n",
"is:0.24498216482002988\tand:0.23727823228099684\tnot:0.09354502476421238\tas:0.08400912415577742\tbe:0.07358003990272198\twas:0.07297056871641332\tit:0.07176180937950792\tare:0.060924454284753446\tIs:0.050948581695586755\t:0.01\n",
"of:0.28772092565312846\tat:0.21507033966615022\tto:0.16310453205571945\tin:0.07296834010279567\ton:0.05642014117385209\tfrom:0.05428644415299298\tand:0.04971545423181484\tthat:0.047057015275150514\tby:0.043656807688396\t:0.01\n",
"in:0.2667975205981045\tof:0.1903349139277239\tthe:0.1370724868354924\tIn:0.08106452940707667\tto:0.07737797751573935\ta:0.07721032090418972\tfor:0.06707791182284316\tand:0.05818620462540257\tfrom:0.03487813436342766\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"the:0.3101469464245839\tand:0.18139257296176556\tof:0.1189750832204775\tin:0.09177950457907187\tto:0.06476035881673946\tfor:0.06265243913967722\tthat:0.06163497939193545\tor:0.05030597233991142\tbe-:0.04835214312583766\t:0.01\n",
"the:0.2268845622791569\tof:0.2150015638062236\tto:0.1377257799671593\tand:0.1347201214432118\tin:0.06315162142555467\twas:0.06272385668345443\t<s>:0.05909115739238519\tbe:0.05264815618932333\ta:0.03805318081353079\t:0.01\n",
"and:0.4962986709901393\tbe:0.09330673655028106\twho:0.08212379525181263\the:0.07422398595957579\tI:0.05932728948390455\twas:0.05494543406601632\tan:0.045857050528970746\tnow:0.0440130377884064\tthe:0.03990399938089329\t:0.01\n",
"the:0.2836710182198301\ta:0.15391968445172757\tof:0.1452640395830545\tto:0.09913356539546138\tand:0.09387059173462943\tin:0.07917282831231669\tat:0.061383191505494275\ton:0.038061768902674376\this:0.03552331189481164\t:0.01\n",
"and:0.29118840109067373\tCommittee:0.15772499961862088\tcommittee:0.14800352027803662\tthat:0.10186152741380372\twas:0.07230013965300897\tor:0.06969387709234197\tfronting:0.05115731775481834\tland:0.04949153070598927\tinterest:0.048578686392706474\t:0.01\n",
"of:0.3032605404235932\tthe:0.22836459557683947\tand:0.11325280748579665\tto:0.09767158272258823\tin:0.06162576924757175\ton:0.05364457360873898\ta:0.04790272125684163\tsaid:0.0428391839349944\t<s>:0.04143822574303563\t:0.01\n",
"they:0.16313044739402244\twe:0.162164423628787\tit:0.13124180164218927\tI:0.12405205557140475\the:0.10425132319487572\tyou:0.09335945253362639\tand:0.08202284790488955\tIt:0.07162517892996534\twhich:0.05815246920023953\t:0.01\n",
"the:0.37091728658310624\tof:0.14721729955355684\ta:0.12585902226885934\tand:0.11662575536026575\tto:0.07191814176392894\tThe:0.04783486613453324\tin:0.045002220918126244\tMr.:0.03624207869028519\ttho:0.02838332872733812\t:0.01\n",
"the:0.4851905311047248\tof:0.12931743756623532\tand:0.09011264293067395\ta:0.06529327612288477\tThe:0.0618423366885913\tto:0.05489796359727951\tin:0.03832250481426256\this:0.03316110887939534\ttho:0.031862198295952326\t:0.01\n",
"and:0.2485600061045666\tis:0.1898842864575098\twas:0.12193722741635794\tso:0.11570470774567317\tbut:0.07812694154059319\tbe:0.07117756030459234\thas:0.0562906694755357\tare:0.055564717951166666\tnot:0.05275388300400455\t:0.01\n",
"of:0.37961474664236666\tto:0.19143601322302337\tand:0.09791732101610809\tfor:0.07593508358728857\twith:0.07012789129893726\tis:0.046404106709397264\tin:0.04612123603867669\tas:0.044655089198479034\ton:0.03778851228572297\t:0.01\n",
"the:0.23632566192425677\tof:0.18886074844018247\tand:0.12682049354783523\tto:0.09524780069146993\twas:0.08498950973556638\ta:0.07330451419837286\tbe:0.06504520465050595\tin:0.06462390742693405\tis:0.05478215938487641\t:0.01\n",
"to:0.2645080305250364\tof:0.22516594992383782\twith:0.12767788377715683\tfor:0.12198366327382763\tby:0.061816849745235436\tupon:0.055624021591074754\tbetween:0.048721574588294375\tamong:0.04634140370229845\tagainst:0.038160622873238244\t:0.01\n",
"of:0.3659829229761595\tin:0.2280389032709897\tat:0.06639538409747058\tfor:0.06319705846436736\tand:0.05959553120293723\tIn:0.05882962939633105\tthat:0.05223847161911311\tto:0.05183868091497522\ton:0.0438834180576562\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"be:0.22688769533433342\tbeen:0.20553910212022836\twas:0.2024998579895623\twere:0.0916344658788493\tare:0.08518922653995209\tis:0.062302782217645535\tand:0.056109917704599874\tresolution:0.030208611957893722\tbeing:0.029628340256935545\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"of:0.3989036664639626\ton:0.13843942064466522\tto:0.1248882469342737\tin:0.09317210224440976\tfrom:0.06773716470692583\tby:0.06296905924729021\tand:0.04042338979755727\tat:0.032210157132134785\tthat:0.031256792828780675\t:0.01\n",
"line:0.282423107463602\tstreet,:0.1630742405914064\tand:0.15731042633040282\tdifference:0.1127033790555725\tof:0.06792485758073195\tstreet:0.0564755976619534\tor:0.051230437532767605\tlot:0.05016204119258173\trelations:0.04869591259098166\t:0.01\n",
"of:0.3308442922213524\tto:0.1432471988342217\tin:0.131701708736979\twith:0.09441568321518254\ton:0.06848424163509252\tand:0.061113441995290306\tfor:0.05843564615357509\tby:0.05382836431950813\tfrom:0.047929422888798305\t:0.01\n",
"of:0.31772118733219995\tto:0.11885262088322367\tin:0.11078665977355591\tand:0.10985818450590197\tfor:0.1053329430765751\twith:0.07167814095321648\tthat:0.06764764695550644\tby:0.04941457536248961\tfrom:0.03870804115733081\t:0.01\n",
"the:0.27670381416635637\tof:0.21091347651095713\ta:0.14673671246434578\tand:0.13857871798342572\tin:0.06969991699815954\tthat:0.059593250132544205\twas:0.03202320078650375\tno:0.028319271768648853\this:0.027431639189058547\t:0.01\n",
"that:0.31045312736729286\tand:0.2741619673879975\tbut:0.09278721838768438\tas:0.0809731518512709\tif:0.06685178796096648\twhich:0.04741835803803108\tIf:0.04282012299873716\twhere:0.03994928580268348\tBut:0.034584980205336124\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.21845282607008776\thave:0.15293818072830453\thad:0.1385249006341653\thas:0.11696566167295801\twill:0.11591186517679447\tnot:0.08294000235044963\twould:0.07673782018820356\tthey:0.04651873315782657\tmay:0.04101001002121007\t:0.01\n",
"of:0.3951899971681053\tand:0.10943649827560734\tto:0.09246682021329176\twith:0.08129691610707518\tfor:0.07460310288295667\tthat:0.07014555999103021\tby:0.06917672159919952\ton:0.05358945699394935\tfrom:0.04409492676878466\t:0.01\n",
"the:0.3003239843946416\tof:0.24123798292280735\tto:0.10967522063229845\tand:0.10241337743572466\tin:0.04851293154742209\t<s>:0.047867601471535626\twas:0.04741818560160526\ton:0.047088981773871705\tfor:0.04546173422009339\t:0.01\n",
"men:0.2632519916353771\thundred:0.14263257076204044\tup:0.09927607366382107\twomen:0.09835576582906656\twife:0.08888804777773114\ttime:0.07840596099536955\tdull:0.0747571471791686\tland:0.07251512080459944\tquiet:0.07191732135282597\t:0.01\n",
"those:0.3021147691355344\tand:0.19428447445537772\tman:0.15570271850557535\tmen:0.1377560111860551\tpeople:0.0595123681306742\tone:0.04547627513059085\tall:0.04239418540424745\twoman:0.028123828719088157\tmen,:0.02463536933285681\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.2819688105509132\tthat:0.2301418702249719\tas:0.22505597689475598\tbut:0.06927514817526978\teven:0.0553432991736943\tor:0.03504039921417471\tBut:0.0347013310889262\tAnd:0.029575321440918265\tand,:0.028897843236375672\t:0.01\n",
"a:0.49676378663126036\tthe:0.29072519978919464\tlarge:0.08624504749113762\tThe:0.0297988744981803\tA:0.02510721416152202\ttotal:0.01853655904316151\tgreat:0.015867838514017532\tthis:0.013616228360718472\tany:0.013339251510807424\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.2176444406307874\tof:0.21032817253870764\tto:0.20574675201779968\tand:0.10545724507911237\tin:0.05828659954186711\ton:0.05369867559536912\t<s>:0.052758235502345235\ta:0.04307083081855826\tat:0.0430090482754532\t:0.01\n",
"in:0.281777426137178\tof:0.13250588820954903\tthe:0.10104945148714507\tIn:0.09769462432242475\twith:0.08329649890818147\tany:0.07875175815640699\tand:0.07701979953598495\tfrom:0.0712251079833245\tfor:0.06667944525980524\t:0.01\n",
"the:0.5041302411947188\ta:0.22707334243981173\tand:0.061718979014641365\tour:0.041034520108281014\tThe:0.03794025134355113\ttho:0.035539843791346996\ttheir:0.030872986051273848\tof:0.02812695033706898\tthis:0.023562885719305832\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"the:0.2382284484858104\tand:0.20122952992515808\tof:0.19304712948183925\ta:0.09216272240482247\tto:0.08973984001616922\tI:0.050478338513428325\tin:0.044774889303067195\tthat:0.04292983420610713\tat:0.03740926766359787\t:0.01\n",
"the:0.31451820869359204\tand:0.1910868420930252\tof:0.17214251383292817\tMr.:0.07164327786849121\tto:0.06075301941766429\tThe:0.05689491638693517\tthat:0.04683646698247533\the:0.04116489764029818\this:0.0349598570845902\t:0.01\n",
"and:0.21827711254745671\tof:0.19319788751543396\tto:0.17665008869864662\tthe:0.169946469789289\tin:0.0644494177586194\tor:0.04577135576859088\tbe:0.04393324812225755\ta:0.04079975831705609\twas:0.03697466148264986\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.8042865780425352\tThe:0.044534987366780875\tand:0.043145104879654526\ttho:0.028753673591216743\tno:0.01933259306310429\tmuch:0.014465110400096595\ttbe:0.012444410989354936\ttheir:0.011940164955305687\tlittle:0.01109737671195122\t:0.01\n",
"of:0.2967652427091595\tin:0.13595345674633916\twith:0.11103006989691834\tand:0.08322182544764764\tis:0.08186930297248517\tto:0.0813404954244078\tas:0.07292811701496521\tby:0.07116153678195856\twas:0.05572995300611862\t:0.01\n",
"the:0.5896833964597671\this:0.0894341164514161\ta:0.06612389639925707\tof:0.053536984911135635\tand:0.04347386952244888\tmy:0.039333879739779705\ttheir:0.03926110076391791\ttho:0.03815766936944313\tits:0.03099508638283448\t:0.01\n",
"Mrs.:0.2456138601721358\tand:0.2182436876520097\tto:0.12969398037073432\tof:0.10617158313339883\tMr.:0.07001489306021458\tby:0.06536874141013745\t.:0.058083992613862\tfrom:0.04981668249671962\t<s>:0.046992579090787634\t:0.01\n",
"the:0.2427062413794355\tof:0.23068382346604135\tto:0.14891884959403634\tand:0.10717457225494818\ta:0.07012936893180254\tbe:0.05464217939629745\tin:0.05181740094029481\tis:0.044897797978948266\tnot:0.03902976605819537\t:0.01\n",
"that:0.27639138674865726\tas:0.19660345156376907\tif:0.12029913569267081\twhich:0.11482106002398831\tand:0.0824446270839955\twill:0.07101992573151715\twhen:0.04738790380646988\twould:0.04737711747513306\tshould:0.03365539187379899\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.23955229910374132\tthe:0.17143019117835495\tand:0.16748077458574515\tto:0.12132346065252632\tin:0.09186302095157198\tfor:0.05308401025106665\ta:0.05031824323248294\tat:0.047531864669448684\tthat:0.04741613537506208\t:0.01\n",
"of:0.16858306853638802\tlarge:0.15201243781380322\tthe:0.14283093253047235\tin:0.14096017472939792\tsuch:0.1256433907556517\tand:0.11668604115135699\tgreat:0.05487333133994632\ta:0.0469674075143373\tmuch:0.04144321562864619\t:0.01\n",
"the:0.25454299256765656\this:0.23001386913168367\tan:0.1657810913525171\tof:0.09690251986069796\tthis:0.061168587948198135\tmy:0.06096392159037818\tin:0.056749418319089646\tpost:0.03723307096470894\tto:0.026644528265069828\t:0.01\n",
"be:0.29696900877470916\ta:0.1274632950071766\tis:0.12467758664016568\tmost:0.10438875929847759\twas:0.08380854225410732\tand:0.07793764519966576\tare:0.07308672279714272\tthe:0.061085572733253456\tbeen:0.040582867295301764\t:0.01\n",
"the:0.6336488110122906\ttho:0.056952071074093204\tthis:0.052692124893109066\tThe:0.048889179291456024\ttheir:0.04851044929546566\ta:0.04435231984720189\this:0.040539449173984686\tcon-:0.03366927744181142\tour:0.030746317970587574\t:0.01\n",
"the:0.42484136025276587\ta:0.16101559905426896\tand:0.11338375123705748\tof:0.09491161877102083\tin:0.05427789892098572\tto:0.045527590833289666\tThe:0.03604440787615774\this:0.03158152508761739\tthis:0.02841624796683637\t:0.01\n",
"they:0.30451269405534076\twho:0.13981902588285613\twe:0.11466630036102037\twhich:0.09003207148821722\tthere:0.08992069658515053\tand:0.08474351112247676\tThey:0.05897941752814289\tyou:0.05425939568675786\tthat:0.05306688729003748\t:0.01\n",
"is:0.2929696510276424\tand:0.23197872738267064\tare:0.18333557418296892\tbut:0.05638759259698863\twhich:0.04875071853630713\tIs:0.047149941267107066\tthat:0.0461462703203762\twas:0.04361582233938574\tnot:0.03966570234655331\t:0.01\n",
"of:0.5464043286264019\tthat:0.10720328126427325\tthe:0.09982086868485959\tand:0.05742096430283927\tby:0.04700055349696155\tin:0.04428238005569599\tto:0.03895472247908029\tthis:0.027128536351631045\tfor:0.02178436473825702\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.652828294237926\ta:0.07100210584383668\tand:0.04775107487225658\ttho:0.04533836629891271\tthis:0.04127266533603777\tor:0.03394320617293106\tThe:0.03341226329788786\tof:0.032473624779073264\tany:0.031978399161138024\t:0.01\n",
"of:0.29634648945960945\tin:0.2535912671793268\tto:0.09768084399968902\tfor:0.08707264949924332\tat:0.06726366503454398\tIn:0.06252656761074236\twith:0.0477587248197764\tand:0.041077172492103076\tby:0.036682619904965616\t:0.01\n",
"and:0.2699438602044352\thave:0.14667823645116934\thad:0.12067224427442018\tI:0.11424294361852508\thas:0.09351752713621146\the:0.09165615197563418\tis:0.05375998478754374\tthey:0.05205870697306772\twas:0.04747034457899328\t:0.01\n",
"of:0.31126761380166207\tin:0.16602003185823358\tand:0.10722936773033456\tfor:0.08029882551631223\tto:0.0789825060011982\twith:0.07826683094717211\ton:0.06147952147345762\tby:0.05462737190882571\tfrom:0.051827930762803974\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2492713228623393\tthat:0.13976824003886854\tfor:0.11608426599134058\tand:0.10875876583870428\tby:0.10480242197274905\tin:0.09209862025376324\tto:0.07990484953499673\twith:0.054030184367462236\ton:0.045281329139776165\t:0.01\n",
"the:0.3424569188893425\tof:0.16455096508506786\tand:0.1003391983493111\tin:0.07793473062826332\ta:0.07209510006773207\tto:0.06732638938243359\tat:0.06389181510543011\ton:0.060317434314675476\tby:0.04108744817774398\t:0.01\n",
"the:0.20804366163776322\tand:0.20033713566996003\tof:0.1906818456933861\ta:0.11734121817868008\tto:0.09019664356190003\tor:0.05549392619383656\tare:0.04711765134528392\tis:0.04245767264985082\tfor:0.03833024506933924\t:0.01\n",
"of:0.22910150922766157\tin:0.11539276438983914\tas:0.11127934553323833\tis:0.1093065249044014\tto:0.10099004487606558\twith:0.08929933663062477\tby:0.08343707285879862\tand:0.07635553566197055\twas:0.07483786591740003\t:0.01\n",
"will:0.2835517668690073\tand:0.22064982458233223\tcan:0.08460004752658233\twas:0.07699091920781323\tthe:0.07662303283859778\twould:0.06748411976275177\tit:0.06275551229282915\thad:0.06011071204343698\tthat:0.057234064876649185\t:0.01\n",
"in:0.29698142781749015\tof:0.13923873891211885\tto:0.1275498619184954\ton:0.07858423650105612\tby:0.07636623304264752\tfrom:0.07479622285872231\twith:0.07469998112509083\tupon:0.06408446476734961\tIn:0.05769883305702926\t:0.01\n",
"the:0.2637351962852026\tand:0.1829556970763585\tof:0.15512704992970708\tto:0.09901034785229981\tin:0.08891847907071722\ta:0.06188432822775293\this:0.05132313193481526\tsaid:0.04424377986600468\tthat:0.042801989757141876\t:0.01\n",
"the:0.6128546322613306\ta:0.1519259026573229\tand:0.05934514658927832\tThe:0.05372060090989327\tof:0.034540593164345205\ttho:0.02807122714167393\tgreat:0.02053886363590112\tfor:0.01569530157291952\tor:0.013307732067335086\t:0.01\n",
"and:0.4025020835898423\tthat:0.11434901487935653\tor:0.09382167933383821\tis:0.08977805492577662\twas:0.06743741839939299\tare:0.0657250688951116\tmade:0.054165967925987234\tbut:0.052417356001565205\tbe:0.04980335604912939\t:0.01\n",
"the:0.37276065194570396\tand:0.15872907008152423\tof:0.13359177443566386\ta:0.11556837769165279\tThe:0.058078205793782735\tto:0.047379056539191146\tin:0.04225734605831975\twith:0.03223662927591752\tMr.:0.029398888178243977\t:0.01\n",
"it:0.35505309117815476\tIt:0.2256851548211504\twhich:0.09186997500389063\the:0.07427712557156563\tand:0.06860291172058657\tthat:0.06252393229388647\tthere:0.045646756155683414\twho:0.03881624702318383\tThis:0.027524806231898347\t:0.01\n",
"the:0.3393509345658744\tand:0.1938622644390826\tof:0.11352468692343032\tto:0.08066783015141218\tin:0.07597978873654088\tthat:0.06418575447826133\ta:0.05491242401129197\tfor:0.03417093261661263\twhich:0.0333453840774937\t:0.01\n",
"to:0.31469607664279836\tthe:0.2357686858966837\tat:0.11963162170842984\tof:0.08638316823615026\this:0.06793847029597351\ttheir:0.057672875295741784\tand:0.044783829607010765\tno:0.034110018344238956\twill:0.02901525397297267\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.22492204864950682\tand:0.1653093647458327\tof:0.1541673799779414\ta:0.11588766530629073\tto:0.09617533449098715\tbe:0.08543005060633602\twas:0.06359817063379206\tis:0.045653806272295115\tas:0.03885617931701799\t:0.01\n",
"<s>:0.3057208957215461\tit.:0.20917540701624454\tthem.:0.12651652159548568\thim.:0.07599168903468957\tcountry.:0.06434666782938393\ttime.:0.06244852098197763\tagain.:0.051045098856665305\tpeople.:0.04923150714972585\tlife.:0.045523691814281474\t:0.01\n",
"the:0.5153584833087639\ta:0.19515641187402707\tThe:0.07647958049317732\tand:0.05498213317393441\tof:0.03947559048812851\ttho:0.030429981926706005\tany:0.030277587874187748\tsome:0.026798791293430418\tno:0.021041439567644524\t:0.01\n",
"have:0.2285656364251628\tand:0.2132749051687884\thas:0.12205489970074596\thad:0.107697478018006\tthey:0.07449856853000625\tI:0.07281376138282954\twho:0.0665048299648184\the:0.06198030164267276\twe:0.0426096191669698\t:0.01\n",
"of:0.41306531914334366\tin:0.11230034167768149\tat:0.0997922336764276\tto:0.09021291163481802\tby:0.06574358303858152\tfor:0.05805558947936109\tfrom:0.051722007731512094\ton:0.050272969807686724\tand:0.048835043810587744\t:0.01\n",
"of:0.19703641803293193\tto:0.1291398043739193\tas:0.10851273984514402\tand:0.10743962064050128\twas:0.10310859393806607\tis:0.09544631470127667\tin:0.09410811671846624\tfor:0.0862857011461551\twith:0.06892269060353952\t:0.01\n",
"be:0.29096325743112744\twas:0.18226137975182843\tbeen:0.10525351344943945\tare:0.08889411240223717\twere:0.08876216312318583\tis:0.08681508059661616\the:0.05051346415595821\thave:0.05040752216836445\tand:0.04612950692124284\t:0.01\n",
"and:0.22145487756883014\tdo:0.12809288106808575\twas:0.10729450321691962\tamended:0.10455510258209134\tas:0.09375235547389674\tis:0.08730191828083021\tbe:0.0856090667296932\tnot:0.08466774663763453\tare:0.07727154844201842\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"to:0.45970747497101055\twill:0.12488520085987609\twould:0.08868852394332793\tnot:0.0688857214027727\tI:0.06283326239706825\tand:0.058810462171831286\tthe:0.04860987514313443\tcan:0.04309358941269159\tthey:0.03448588969828712\t:0.01\n",
"men:0.22430957254120573\tmade:0.16122556683040046\twife:0.12580646910200213\tup:0.10849681173143352\tright:0.08339402737085244\tin:0.08086207057160985\tcity:0.06952806896773538\tday:0.06820242677751583\tit:0.06817498610724457\t:0.01\n",
"number:0.20885932208434108\tout:0.1538552237397949\tday:0.11035709953892572\tone:0.10010785943270624\tand:0.09046657955426679\ttion:0.08782501890960506\tpart:0.08011895138308249\ttime:0.07953993590668677\tthat:0.07887000945059106\t:0.01\n",
"of:0.336643296191915\tin:0.1339970718354092\tto:0.11553059813369625\tand:0.0780370064270797\tby:0.07575244067997089\ton:0.07193127052449044\tthat:0.06548912241638975\twith:0.05945475677275022\tfor:0.05316443701829849\t:0.01\n",
"the:0.7796891465424407\tThe:0.056710949271402966\ta:0.03685747181392837\tre-:0.027750211691754522\ttho:0.026181908162811383\tand:0.02419657681003009\this:0.014814826859282454\tthis:0.012102439750531937\tto:0.011696469097817477\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.3222700586422684\tof:0.1974830349703252\tand:0.14821900911444638\tMr.:0.0814022366829615\ta:0.07018330339807602\tto:0.052117954772225555\tThe:0.04496263648487065\t.:0.03895710737577016\tby:0.034404658559055994\t:0.01\n",
"the:0.6713233763945994\tof:0.11687539888944716\tand:0.05069373171965821\ttho:0.03556251707618633\ttheir:0.027491474666081272\tother:0.023777133853727865\tThe:0.02277870675652199\this:0.021009088951910747\tin:0.020488571691867172\t:0.01\n",
"the:0.29187764604094735\tof:0.22178196805794081\tand:0.12194274173166579\ta:0.07943900673134333\tto:0.0772972271610953\tat:0.05837903430942658\tin:0.054015147310237904\tbe:0.04423005804037607\this:0.041037170616966816\t:0.01\n",
"<s>:0.43063525591907675\tit.:0.11854566125708031\tthem.:0.10921027028339074\ttime.:0.06460887078498279\thim.:0.06371445185651987\tcountry.:0.05412369680877685\tof:0.05163516766508979\tday.:0.05152530101233336\t.:0.04600132441274966\t:0.01\n",
"w:0.7294269970801147\tand:0.06966431118705396\tof:0.04031370790122055\twas:0.03739833530360256\tis:0.03244289992895158\ta:0.022479075642268184\thave:0.021312074026390362\t<s>:0.01935163771508187\tare:0.01761096121531619\t:0.01\n",
"of:0.41131993115394677\tto:0.16507537509009754\tfor:0.12058575744493039\twith:0.09264853342428962\tupon:0.055646449698391734\tamong:0.0509220497704801\tby:0.03281975384558086\tfrom:0.032422778812532055\tbefore:0.02855937075975093\t:0.01\n",
"and:0.4244377188217532\twas:0.12387562619451126\tis:0.09380272758518465\tare:0.07095861924964592\tdo:0.0702438556612075\tthat:0.059064041626252575\tor:0.05481149555629102\twere:0.04803561721859743\tbut:0.044770298086556456\t:0.01\n",
"the:0.8538444381917847\ttho:0.0296203563402771\ta:0.021906966457254717\tof:0.02086075187622049\tthis:0.01774910303101421\tThe:0.01511641156585042\ttbe:0.012816737997790068\tour:0.010127626272330782\tAmerican:0.00795760826747753\t:0.01\n",
"it:0.2759112831721272\tIt:0.22334103878416167\twhich:0.11646568322484485\the:0.08030211109255415\tand:0.06900141155757349\tthere:0.06301699365905496\twhat:0.056512927199599584\tthat:0.055730314322703194\tThis:0.049718236987380926\t:0.01\n",
"is:0.28866929824108023\twas:0.21319849168130503\tand:0.19821454736731692\tare:0.07998212934284049\twere:0.05394409556323077\tbut:0.05108420313046428\tIs:0.0371096910074514\tHe:0.036796452808111814\thas:0.031001090858199003\t:0.01\n",
"of:0.4115137028573472\tin:0.11599421457640575\tto:0.11328753375795442\tthat:0.08285187277295586\tand:0.07134250496134908\ton:0.06203233520611548\tby:0.05558866573602839\tfrom:0.04155413720502934\twith:0.0358350329268144\t:0.01\n",
"and:0.22680810849365046\tthe:0.17546645813842865\tmost:0.13033070869120006\ta:0.11049727247093075\tthat:0.09614567526555387\tof:0.07546124205757467\tto:0.07506188875724831\tin:0.05508556182751139\tare:0.04514308429790181\t:0.01\n",
"that:0.3807051985181764\tand:0.17786599614408774\tas:0.09889448872935565\tif:0.07986348985997334\twhich:0.06770495068616865\tbut:0.06355012320055181\twhy:0.04265864364288444\twhen:0.04166803433434387\tIf:0.037089074884458124\t:0.01\n",
"the:0.24596288955955295\tand:0.16331079864438022\tof:0.1497562475098918\tto:0.11241360832287664\tin:0.09064769647032553\this:0.060910616163415525\tbe:0.060673008123120625\ta:0.054443630683502685\tfor:0.051881504522934004\t:0.01\n",
"Harper's:0.36399924800878747\tthe:0.19826160198889264\tof:0.11926325661172617\tand:0.07149373345192962\tNo:0.05771031572545728\tMr.:0.05329545112052895\tlying:0.05034567857872273\tlot:0.041936790556208324\ta:0.03369392395774676\t:0.01\n",
"as:0.1826475654790194\tand:0.17355041281779546\tit:0.14437516796436178\tup:0.12948338426235587\taddition:0.08306339049922119\tregard:0.07118760656949819\tcame:0.07103628652519017\tcome:0.06955397884812979\tsimilar:0.06510220703442816\t:0.01\n",
"Van:0.9457882271901167\tof:0.016164118143626307\tand:0.00640768782455218\tthe:0.005339569112066457\tA:0.004421331640738851\tMr.:0.003948911778441844\tauthor-:0.0029683247352428233\ta:0.0024956380889973426\t<s>:0.002466191486217588\t:0.01\n",
"not:0.48672713880827767\tis:0.14194347155789808\twas:0.11531716010435229\tand:0.05778390870455028\tare:0.05691081277955486\tthe:0.03849975395931737\tbe:0.03504871590196745\twere:0.03328554598104264\thad:0.024483492203039213\t:0.01\n",
"be:0.1902355890389136\twas:0.12562089232009224\tand:0.11889978908759513\thave:0.09967313185876199\thad:0.09623927144113119\tare:0.09575482027269051\tbeen:0.09434807975671608\twere:0.08713550180534956\tis:0.08209292441874956\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"be:0.19548500619553807\tand:0.18892242667191153\twas:0.16260434880094235\the:0.12609015405991844\tbeen:0.06819638819597447\twere:0.0657791904635536\tI:0.06568111302710743\tthey:0.06054675471183201\thave:0.0566946178732221\t:0.01\n",
"in:0.17413264377532126\tas:0.16694339953632564\tfor:0.1452545639745138\tof:0.13897561023054625\tis:0.08836633338225904\twith:0.08442473107060688\tto:0.07125266082269495\tand:0.06314475183162005\tsuch:0.0575053053761121\t:0.01\n",
"one:0.272561840834379\tsome:0.17567181277195737\tmany:0.10063293298888824\tall:0.09012185611021117\tout:0.08848657377219274\tpart:0.08783075355359866\tany:0.06250830842543066\tmost:0.05768093203675736\tportion:0.0545049895065848\t:0.01\n",
"is:0.1971034750333019\tand:0.1964884093995318\twas:0.15000181162138046\tbe:0.11869580849165189\tare:0.10569937741681003\tit:0.06528369049312624\tmade:0.05483007850186879\tnot:0.05298896162849346\twere:0.04890838741383547\t:0.01\n",
"in:0.3249776142317823\ta:0.2664938662240866\tIn:0.1643214419629037\tthe:0.14401247718139748\tthis:0.037641487982222416\tand:0.01968571091930121\tof:0.011355571342747438\tiu:0.011300782855224754\tgreat:0.010211047300334022\t:0.01\n",
"of:0.204018360741782\tto:0.18966344226230436\tin:0.1457901456781267\tat:0.13319874283057503\ton:0.07951137224046197\tand:0.07838234229542813\tfrom:0.06928683389080241\twith:0.0471217761263657\tthat:0.04302698393415372\t:0.01\n",
"it:0.3565026245617404\tIt:0.2240941370111716\twhich:0.09883733612966472\the:0.0773013089872996\tthere:0.059571749202078375\tthat:0.05915426347972616\tand:0.04707199213615371\twho:0.0367534449723359\twhat:0.030713143519829463\t:0.01\n",
"it:0.18996776648825836\twhich:0.16693146919859034\tIt:0.1638838509302785\tthat:0.1088783226660808\twho:0.09754653858074362\the:0.09729440751502057\tthere:0.07644641877125938\tand:0.047844242933137104\tThere:0.041206982916631135\t:0.01\n",
"went:0.1794974806493376\tgo:0.15454708545878776\tcame:0.11151278596248962\tback:0.09777108854160564\tit:0.09728390677389735\tout:0.0959887918454101\tput:0.09227887075263337\tdown:0.08367866714280338\tcome:0.07744132287303515\t:0.01\n",
"and:0.30763339868843964\twas:0.12279075732850271\tarrived:0.09882045213449979\tthat:0.08915553042599228\tbut:0.08781257213762228\tis:0.07218349181149265\tmade:0.07133808162171153\theld:0.07087840075868322\tlook:0.06938731509305586\t:0.01\n",
"called:0.18711501726271357\tand:0.1769778594175597\tdepend:0.09478461571071492\tdue:0.09303871463409803\tlevied:0.09099539381330117\tlook:0.08921603547266618\tbased:0.08850532416130108\tmade:0.08545027494106065\tplaced:0.08391676458658467\t:0.01\n",
"of:0.29257016320474416\tto:0.15414546973400411\tin:0.13559278386578624\tfor:0.09840894187100924\tand:0.07869268907348383\tby:0.07537437688127123\tthat:0.05729199735013667\tfrom:0.053800768884420654\twith:0.04412280913514386\t:0.01\n",
"is:0.33913154736346407\twas:0.25103499643404587\tare:0.11145783572342854\twere:0.05647811921219595\tIs:0.05428034038522891\tas:0.046462904203387445\tit:0.04561194275987133\tand:0.04408321672470121\tdo:0.04145909719367661\t:0.01\n",
"the:0.178773384293596\tand:0.15905693441419114\tof:0.1507009654572478\tto:0.12785537177660436\tbe:0.1151551695765266\ta:0.09109342413565304\tin:0.05932541876549419\twas:0.0550093693954189\tis:0.05302996218526802\t:0.01\n",
"a:0.2774555432017044\tso:0.21211504288702066\tthe:0.1861532707074266\thas:0.0676384910962867\thave:0.06639035669621836\thad:0.06140515874381506\tand:0.04177845049826735\tvery:0.04172463968870629\tnot:0.03533904648055463\t:0.01\n",
"the:0.3140185639798594\ta:0.17677731824081225\tof:0.12156818754403564\tlast:0.11808117933116859\tthis:0.07935557123629464\tpast:0.049515972702837516\tsome:0.0462872161021769\tfor:0.04330718354978066\this:0.041088807313034464\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"of:0.29308403451912945\ton:0.14618860818009188\tto:0.11611169679034236\tin:0.10994652543450051\tat:0.07755129964115468\tand:0.07053568332303523\tfrom:0.06754088332408151\tfor:0.057443770618998795\tby:0.05159749816866559\t:0.01\n",
"the:0.31439832661691314\tand:0.16380354352700813\tof:0.1293805035926888\tMr.:0.09705522300957961\ta:0.0872629095588825\tThe:0.0733244280758257\tthat:0.06330451842459446\t.:0.03116425354641813\tto:0.03030629364808946\t:0.01\n",
"the:0.5360753392221824\tof:0.182708107634578\tThe:0.06545210027388729\tin:0.055503350188487226\tand:0.05319262533573648\tthat:0.04245436147586156\ttho:0.024811373014137387\tfrom:0.017155120074642517\tCounty,:0.012647622780487231\t:0.01\n",
"be:0.2686298511892239\tand:0.1590863718209664\twas:0.12249391490388983\tis:0.10136796725675674\tbeen:0.097192705414905\the:0.07980755814339786\tthe:0.06607933215654921\tare:0.05742569981373738\thas:0.037916599300573846\t:0.01\n",
"the:0.35861451900589214\tMr.:0.1291559629555713\tof:0.1199072506314825\tThe:0.10475232618943306\tand:0.0967371407604443\tthat:0.07632406646832235\ta:0.046895937127093126\this:0.030747167493934736\tMrs.:0.026865629367826563\t:0.01\n",
"to:0.42317642805409655\tthe:0.15716379808977174\tand:0.1443224981542289\tI:0.07004048090977333\twill:0.05198312983814319\tnot:0.049931239262612\twould:0.038648178370692766\ta:0.028060059820580976\tthey:0.02667418750010046\t:0.01\n",
"want:0.16944750095132705\tglad:0.1465032649805999\thim:0.12057422464855273\tand:0.11156362631705705\twanted:0.1094280975362622\table:0.10289427384099585\tme:0.0823872997396847\tthem:0.07437032557181102\tsurprised:0.07283138641370944\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"as:0.8979669176551773\tso:0.028883802432012273\tns:0.012116582670001704\taa:0.011221273807017677\tAs:0.010578173967362856\tis:0.009077766067223629\tbe:0.00817771880336495\tand:0.006101368922114597\tvery:0.005876395675725095\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"set:0.14957070120708038\tit:0.134253583894775\tput:0.12515009322122123\tcame:0.12124321437096497\ttaken:0.11325955365524525\twent:0.10276514566055586\tmade:0.0840131571546645\ttake:0.08051610656447371\tpicked:0.079228444271019\t:0.01\n",
"be:0.33069842960742907\tis:0.20548059757510523\twas:0.1019146563978342\tnot:0.0715905111050265\tit:0.06748221723921999\tbeen:0.061958004969047444\tand:0.05537483137083445\tas:0.048264508482333005\tare:0.04723624325317011\t:0.01\n",
"the:0.27539139429129283\tand:0.16128909733219177\tof:0.15424185479835031\tthat:0.1208094739498696\tin:0.10347680838897531\twhich:0.053767380561732116\tThe:0.04509934942625059\tas:0.03940212961746989\tMr.:0.03652251163386742\t:0.01\n",
"the:0.7581908107197257\tThe:0.10313352316103518\ta:0.03722908690047163\ttho:0.03714924656723494\this:0.016549656626435934\ttbe:0.013588862178869988\tthis:0.012743683978141056\ttheir:0.006277918684781198\tits:0.0051372111833042165\t:0.01\n",
"of:0.32743052788210025\ta:0.20450332156343917\tthe:0.10242148768637882\tto:0.0953168987797215\tin:0.06677155732438857\tand:0.05718882579420003\tas:0.05524968640480828\ton:0.04055914668539844\twas:0.04055854787956496\t:0.01\n",
"and:0.4484131619775725\tthat:0.13112399004211253\ttime:0.1157455120339333\tbut:0.09223118931800355\twhich:0.05036209192574055\tor:0.04479602937437649\tit:0.04179721578251755\tday:0.033965822156142696\twhich,:0.031564987389600584\t:0.01\n",
"was:0.17629524428378976\tis:0.1705759293335799\tof:0.14997077033568684\tand:0.12084057685569412\tan:0.10112919154466815\tare:0.08365269032316998\tthe:0.08300790053882173\twere:0.05453876820061377\tin:0.049988928583975606\t:0.01\n",
"time:0.14028804533363548\tit:0.12729163280619432\tgood:0.12230232622596261\tmore:0.11900275665065731\tprompt:0.10318476425700683\tdue:0.09782936180870314\thim:0.09761817461846627\tthem:0.0944546958812519\tmen:0.08802824241812214\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"as:0.173436796673747\tup:0.13412971342767138\tcome:0.11852609360688013\tand:0.10381223245833751\tback:0.103277566060711\tcame:0.1016016249346761\tgo:0.09825838167250896\tit:0.07923533163549472\tregard:0.07772225952997326\t:0.01\n",
"they:0.2579566516333001\twe:0.14477540302744266\twho:0.12366047428963461\tand:0.10122726906581149\tyou:0.09960683373249145\twhich:0.07563947020499631\tThey:0.06696442030957392\tthere:0.060313963857318395\tWe:0.05985551387943109\t:0.01\n",
"the:0.3782414225537488\tof:0.21312479191447145\tto:0.12947834221937074\ta:0.05197100695916896\tand:0.050962147308247996\tthis:0.04707193278816353\tfor:0.04191403565623128\tin:0.04106072874960888\tThe:0.03617559185098832\t:0.01\n",
"not:0.3112277396743959\tis:0.13977542341907218\tthe:0.13237268764256774\tand:0.11550285150073793\twas:0.11134968248741389\tare:0.0799087160092446\twere:0.051349827676706115\tIs:0.025382491070083956\tbe:0.02313058051977762\t:0.01\n",
"of:0.29550163211159614\tin:0.15711172168244378\twith:0.0925170250707486\tis:0.082672611150358\tand:0.07884291689861687\tby:0.07708632365259052\twas:0.07446414919488166\tto:0.06599389819105696\tas:0.06580972204770748\t:0.01\n",
"the:0.6811919930174051\tThe:0.17449290414811405\ttho:0.034875780309561594\tof:0.03439133049334115\tthis:0.016691377898152455\tand:0.016029834912397962\ttbe:0.010935015642629997\tour:0.01090647021851616\ta:0.01048529335988157\t:0.01\n",
"to:0.41821841533329795\tnot:0.3992050691912986\twill:0.057557750661539044\tnever:0.03230591122340623\twould:0.025963832464163672\tand:0.019861763437291312\ta:0.015086449635870166\tshall:0.011989742394645779\tmust:0.009811065658487293\t:0.01\n",
"and:0.2743619235957881\tof:0.272131547690924\tto:0.11168186825379463\tin:0.10293400027437978\tfrom:0.06742903673627827\tall:0.06585530032171438\ton:0.0372595641190317\twith:0.029656447930198056\tsaid:0.028690311077890898\t:0.01\n",
"of:0.3113502320943487\tand:0.17502586177204904\tto:0.132348116582113\tfor:0.07665102539921116\tin:0.07664929053386346\twith:0.07453432252853211\tby:0.05491892050121453\tfrom:0.04519337487182815\tat:0.043328855716839795\t:0.01\n",
"<s>:0.31752992730781987\tit.:0.1832038453359369\tthem.:0.12772951816945532\thim.:0.09406300587226456\ttime.:0.06212476024379308\tcountry.:0.05876911599376728\tday.:0.05342911719425257\tyear.:0.046745515101901294\tand:0.0464051947808091\t:0.01\n",
"of:0.23554625159798698\tthe:0.23281787263922185\tthese:0.1354194152973972\tThese:0.08696984606737293\tbusiness:0.07048113133865129\tyoung:0.06956810161613856\tThe:0.05675665862631059\ttwo:0.05152826433529141\tand:0.05091245848162902\t:0.01\n",
"of:0.25371585808725466\tfor:0.1452311039138016\tin:0.1427318347683715\tand:0.13534122953315836\tto:0.11680391004254692\tthat:0.06663486659826795\twith:0.05339210477954224\tall:0.041155434591262356\ton:0.03499365768579446\t:0.01\n",
"and:0.35300645440956296\tthat:0.2031892171245079\tas:0.15692861119759352\tbut:0.06651879692357407\teven:0.05975685123398287\tAnd:0.042216136067045835\tor:0.03780334824475082\tBut:0.035631161844753456\tsee:0.03494942295422833\t:0.01\n",
"a:0.2702114819330739\tthe:0.14641130585204357\tthey:0.09709153575307722\twho:0.09476295984611234\tI:0.08822635558521191\tnot:0.08752362258740429\twe:0.08549991033961882\tand:0.06821039165503234\tto:0.05206243644842553\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"any:0.28464968183685724\tthe:0.17352911552064532\tand:0.16815564361045368\tno:0.14429413595004878\tor:0.060204812931117235\tsome:0.04842954775913647\tall:0.045111213933498595\tof:0.03290196032218285\tin:0.03272388813605986\t:0.01\n",
"the:0.5076628671531154\tat:0.2631376156942473\tAt:0.05297062574332165\ttho:0.034269582625248304\tof:0.032324565888802774\tto:0.03051223624735961\tand:0.030460919276258134\tThe:0.02238020677281277\ton:0.016281380598834133\t:0.01\n",
"the:0.29877039408120276\tand:0.14715698759814141\tat:0.11386303162851831\ta:0.10647553853932462\t-:0.07228325230177517\t.:0.07018788370452053\t<s>:0.06314176584986114\tof:0.06224247312384108\t25:0.055878673172814926\t:0.01\n",
"that:0.2743721578322774\tand:0.22161995754774289\tbut:0.15796022775615445\tas:0.08417686545649884\twhich:0.08396455812624122\tBut:0.04842739441172044\twhat:0.042465308906575815\tif:0.040587508194342974\twhen:0.03642602176844592\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.38248027932364087\tthe:0.14982020863504972\tto:0.13821832746875495\tand:0.08208294458100915\tin:0.05637631160214347\tat:0.050544565805447916\tfrom:0.048747999568522646\tsaid:0.047917269232046304\tby:0.03381209378338498\t:0.01\n",
"a:0.6556143733853559\tthe:0.23660243551351218\this:0.029238361433062264\tand:0.017078164876919346\tto:0.01343750471095943\tthis:0.010911832994555632\tThe:0.010719735259224906\ttho:0.009144995435000915\ther:0.007252596391409519\t:0.01\n",
"the:0.15700796841471687\this:0.14863705363184201\ther:0.11394876708016302\tof:0.10989139406951665\tand:0.10460825228055176\tgo:0.10401564926208147\tit:0.09454057031513106\tat:0.08942172196187098\ta:0.06792862298412618\t:0.01\n",
"of:0.30953520114446864\tthe:0.24606157142769186\tin:0.23967235175867446\ta:0.06277672938472985\tIn:0.04121736364516167\this:0.03173003366305954\tby:0.020589116210339882\twith:0.01933794463619658\tfor:0.019079688129677624\t:0.01\n",
"of:0.21691986795858173\tthe:0.19690770048974351\tand:0.13502145604837124\tto:0.09441737416444072\tbe:0.07577678070195322\tis:0.07523403750430702\tin:0.06822046581320036\ta:0.06659615857451134\twas:0.06090615874489076\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"the:0.2955324622823837\tand:0.1646751237662727\twas:0.10875192450804577\tis:0.09704570218239973\ta:0.09590707551853742\tbe:0.06856130471414444\this:0.0610545548487331\ther:0.052266769414468006\tof:0.04620508276501511\t:0.01\n",
"it:0.16088540466263812\tgo:0.15583192623398787\ttaken:0.13847406578261967\twent:0.12250072543068018\tthem:0.09688906142079479\tset:0.0913535653580799\thim:0.08275956221838289\tcame:0.08203638981999256\tcome:0.059269299072824064\t:0.01\n",
"more:0.4500788600062063\tless:0.16900716644448105\tbetter:0.08289749761439143\tgreater:0.07115848974331247\trather:0.07103038283837584\tworse:0.03862141159128229\tlarger:0.036206064534620795\thigher:0.03591796783111622\tother:0.035082159396213466\t:0.01\n",
"the:0.35704948455199803\tand:0.19569839124732874\tof:0.17066785543405627\tThe:0.11172442877965488\tthat:0.04277900599371835\tthese:0.03153273173181317\ta:0.028047350814569483\tor:0.027399312475863052\tto:0.025101438970998136\t:0.01\n",
"to:0.3504444290396578\twill:0.2304633529847178\twould:0.15017001798483062\tmay:0.06048113618382543\tshould:0.053613581943932904\tshall:0.04834312830010496\tnot:0.039472904970293\tmust:0.03745622841685202\tcan:0.019555220175785405\t:0.01\n",
"not:0.19613302794502765\tto:0.1759483837184429\tand:0.12865227098656043\tI:0.1053837156470568\twould:0.09732069303021057\twe:0.09021499739791468\twill:0.08757443366454669\tthey:0.05680850504341877\tit:0.05196397256682135\t:0.01\n",
"man:0.23808246961640966\tand:0.20005510063159185\tthose:0.1610041407179588\tmen:0.1282493351445859\tone:0.09444537013287327\twoman:0.051673575870208543\tperson:0.04618917831205055\tpeople:0.03900996003617431\tgirl:0.03129086953814727\t:0.01\n",
"the:0.43264263838218137\tof:0.1315171441017247\tto:0.1279320344611956\ta:0.07029008468474823\tin:0.06972355017876121\tand:0.04346997726225372\tthis:0.04274986102292285\tsaid:0.03890945037873498\this:0.032765259527477344\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.35966887416736054\ta:0.2129024285283628\tand:0.12293109232006635\tof:0.07025856285669563\tan:0.06704691182434468\tto:0.04729088428700539\tThe:0.04198547489041681\tin:0.03497561144599805\this:0.03294015967974987\t:0.01\n",
"first:0.30066478157765936\tthird:0.24561898963287646\ton:0.15094440278571666\tsecond:0.0758285280313082\tlast:0.06500485064457923\tand:0.04418207238372158\tnext:0.037358216072272764\tof:0.03689255773543924\tfourth:0.03350560113642661\t:0.01\n",
"the:0.367719286547876\tof:0.14652000236943066\tand:0.13241989592960954\ttheir:0.09344840977248739\tits:0.06387851162269535\tto:0.06199565689494506\this:0.05084063596678608\ta:0.04422110162395921\tin:0.028956499272210782\t:0.01\n",
"it:0.30857517491653896\tIt:0.3023051486370632\twhich:0.1280900015273701\tthere:0.07299229611320082\tthat:0.039667165874570254\the:0.039100857287017426\twhat:0.03472454696834144\tThere:0.034079423050721126\tThis:0.03046538562517653\t:0.01\n",
"the:0.2674492964256619\tof:0.20511700061949348\tand:0.14485297190820026\ta:0.10901726580538401\tto:0.07826945908641957\tbe:0.053803876767259305\twas:0.04954367835637349\tis:0.042308161686394764\tin:0.03963828934481334\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.41293577334243825\tin:0.10412961860640846\tto:0.10279934491522026\tfor:0.08292601603823296\tby:0.06356675378459836\tthat:0.06264880470706702\ton:0.05668956990495398\tand:0.053244576405605454\twith:0.051059542295475394\t:0.01\n",
"and:0.2291390181792206\tof:0.1830607892676923\tin:0.16425231642322347\tthat:0.09088298972410737\tfor:0.08638306795422163\tby:0.06838251738939324\tto:0.05895267635611615\twith:0.054855802249511844\tor:0.054090822456513546\t:0.01\n",
"line:0.23184498606730658\tstreet,:0.22304894306334946\tcity:0.1304748807994771\trelations:0.09161543561657043\tstreet:0.08917410950584363\tand:0.06014140157727059\tavenue,:0.05864675030838531\tState:0.055635198966674175\twar:0.049418294095122786\t:0.01\n",
"the:0.25037909793207774\tof:0.19469118516022443\tand:0.17743138125890162\tto:0.089842195453889\ta:0.0737639423002129\tat:0.06520101689812319\tin:0.06480731870183194\tor:0.038717350854700384\t.:0.03516651144003897\t:0.01\n",
"and:0.24562641981964994\tthe:0.2117694941246003\tof:0.2009799373360638\tto:0.09537333427167767\tin:0.062336995017341086\tfor:0.05387779531080464\tMr.:0.04484042574765618\ta:0.044801904786641616\tMrs.:0.030393693585564704\t:0.01\n",
"to:0.30102863785986816\tand:0.20724594162951251\tof:0.11561430117577177\tthe:0.08949931874126583\tin:0.06780950692820926\tis:0.05678672479774325\tI:0.05395775487226535\tfor:0.04939417435915029\tnot:0.048663639636213486\t:0.01\n",
"the:0.2881817842330118\ta:0.20805686993287073\tthat:0.18113242527409698\tthis:0.15596442089969767\tof:0.03993199165325281\tto:0.03165339483958221\tsame:0.02996281870987832\tevery:0.02849162955485059\tany:0.026624664902758916\t:0.01\n",
"the:0.4413000003383425\ta:0.19762391297561152\tto:0.16690011693933995\tof:0.04771196806104024\tand:0.031480219631339575\tan:0.028358315570550022\ttho:0.02797163378149162\tthis:0.02660085518356247\tThe:0.022052977518722035\t:0.01\n",
"of:0.4026342861923267\tand:0.14038177468800037\tto:0.12921375856288106\tthe:0.11183685335859704\tI:0.04559673575477123\tthat:0.04341294366080534\tat:0.04274960084981294\t<s>:0.03768965602672108\tfor:0.03648439090608421\t:0.01\n",
"the:0.25333416144536347\tof:0.16238499435315218\tand:0.15794196113290299\t.:0.10361609104887083\ta:0.08188293651816923\tto:0.07371521545685684\tat:0.05810670111131096\t<s>:0.052244552506152286\tMrs.:0.04677338642722108\t:0.01\n",
"it:0.2785617870082724\tIt:0.14058657073537015\tas:0.12754388100244876\twhich:0.12453991685388906\tthat:0.10374278837395833\tthey:0.0775235962159316\tthere:0.055052625199923454\tand:0.042753566693321025\the:0.039695267916885144\t:0.01\n",
"of:0.4034962321176427\tby:0.11832915620885168\tto:0.10786265701453494\tthat:0.09983950741507282\tand:0.096560600890497\tfor:0.05043496299225522\twith:0.04188111446382257\tin:0.0415386261290338\ton:0.03005714276828922\t:0.01\n",
"the:0.5947400021858416\tthis:0.10468953625883598\tThe:0.07655421523179777\tthat:0.06812997471318916\ta:0.05450960812874262\twhite:0.03032458541044737\ttho:0.02665297851252972\tThis:0.017294481781131334\twhole:0.017104617777484357\t:0.01\n",
"that:0.36343453931478875\tand:0.18572112134217209\twhich:0.10220835938480793\tas:0.08330672832754323\tbut:0.07251059741816528\tif:0.0630400806351979\twhen:0.04547118021932886\tfor:0.03942820959432342\tto:0.03487918376367277\t:0.01\n",
"the:0.2377032934091077\tand:0.18442110823485502\tof:0.1418913037481826\tto:0.11325343159007804\twas:0.07058665526700938\tin:0.0694218032299526\ton:0.058722084249493\tbe:0.05785815273272289\tis:0.05614216753859875\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"and:0.15928501242391008\tis:0.146739518323759\tthe:0.132020655339771\tof:0.12988039748286667\twas:0.11253954064920008\tbe:0.09880160784303532\tto:0.07547275110854118\tas:0.06942477748375672\tare:0.06583573934515997\t:0.01\n",
"and:0.20793200599658945\thave:0.18988815884164967\thad:0.1721935849967826\twho:0.11242758105909957\the:0.09810629644021077\thas:0.06934043972539154\ten-:0.05509805572022838\twhich:0.0438504785012687\tthat:0.04116339871877937\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"and:0.46211318428234216\tbut:0.10980047373759429\tthat:0.10919259615325107\tare:0.07984900761802545\tas:0.06397182211379582\tis:0.045301643142024915\tmen:0.041347175811347975\tif:0.04022088859653721\tis,:0.0382032085450812\t:0.01\n",
"that:0.27060119700341584\twhen:0.2275607646854224\tand:0.1292450185234094\tas:0.09232140527584748\twhich:0.08150291029689834\tbut:0.05314156049852105\twhere:0.048467552282745\tif:0.04418111006961452\tWhen:0.04297848136412612\t:0.01\n",
";:0.38220082683781204\tit,:0.12268848457064219\thim,:0.11043000720942638\ttime,:0.08421786160170751\tthem,:0.07112741111991273\tand:0.05992156316191074\tis:0.057739513903866634\t,:0.05422928253784632\tme,:0.04744504905687533\t:0.01\n",
"of:0.33400853097765815\tthe:0.16122767480468833\tto:0.09165314911686852\tin:0.08300217546484334\ton:0.07972891608294155\ta:0.07586709253209152\tat:0.06588242524193909\tand:0.06368742595008235\tfor:0.034942609828887125\t:0.01\n",
"so:0.3951303158997033\twell:0.18289135950249416\tfar:0.07851553145636678\tand:0.07717096507941125\tsuch:0.06762643991661786\tmuch:0.058702302471361475\tit:0.046889839191201245\tmanner:0.04294895405322766\tdoubt:0.040124292429616286\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"of:0.23816682122322025\tin:0.21480499753709467\tfor:0.12144217982225576\tto:0.10862937610078927\tand:0.09559675654379893\twith:0.08342406382523132\tby:0.043653465368899684\tIn:0.04305086116398047\tthat:0.041231478414729614\t:0.01\n",
"he:0.2551201520408392\tit:0.1288527672382355\tand:0.12677751374117283\twhich:0.11430383549362245\twho:0.09737427734167386\tthat:0.0943520398413628\tIt:0.07306541375906984\tHe:0.05605309586453941\tshe:0.04410090467948399\t:0.01\n",
"purpose:0.1509384817448906\tsort:0.12567142430702702\tline:0.12155256293773248\tmatter:0.11737093704419814\tnumber:0.1045435749798324\tout:0.10326006467270524\tmeans:0.09090058961058374\tkind:0.09053346777216749\tquestion:0.0852288969308629\t:0.01\n",
"the:0.37710515282398516\ta:0.18399367072375028\tto:0.134715777192989\tno:0.07584799894170709\tand:0.05471741543768522\tbe-:0.047596125931491894\twill:0.04637589459530667\tthis:0.035197377044936536\twould:0.03445058730814814\t:0.01\n",
"the:0.62529977190407\tan:0.11290600333803533\ta:0.07278166556346\ttho:0.043320692622557645\tThe:0.0372746319481259\tand:0.036013512601894546\tor:0.023957659993213126\ttbe:0.019750894826230433\ton:0.018695167202412995\t:0.01\n",
"<s>:0.5964376085481624\t.:0.08711193920501305\tit.:0.07551185858136401\tthem.:0.049217015497795315\tof:0.046567545890369544\tday.:0.040310979728701436\thim.:0.03513570882906043\ttime.:0.031191587530225193\tyear.:0.028515756189308523\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"it:0.1921278232971985\tI:0.16353672814364642\the:0.14828097751304353\tIt:0.12009222869643395\twe:0.11874289695586418\tthey:0.11459528351250944\tWe:0.047894328539064\tand:0.04657853342455461\tyou:0.03815119991768531\t:0.01\n",
"to:0.5502731430577686\tnot:0.10293422644532169\twould:0.07242608323232308\tand:0.07152736144442307\twill:0.06809410715653895\tmust:0.03476626114772018\tmay:0.03117120025246946\tcan:0.030432715682567123\tcould:0.028374901580867844\t:0.01\n",
"and:0.47837529056404693\twas:0.23399022752286436\tHe:0.06430849215260152\twere:0.06106656246483285\tis:0.058135790848305675\tare:0.035370550758107404\the:0.025149252688473137\tbe:0.01888287111017651\tit:0.014720961890591666\t:0.01\n",
"to:0.18201763226341572\twould:0.17425541804710745\twe:0.12587958209754174\tI:0.122163714710879\twho:0.11386206204685392\tthey:0.10493040039856863\tnot:0.05898365250371028\twill:0.058207214485595925\tyou:0.049700323446327306\t:0.01\n",
"a:0.20447071663788774\tand:0.16535246916943552\tof:0.15452986728542467\tthe:0.1441942599475319\twith:0.11134963829762144\tto:0.06644296950863544\tas:0.056664425867269094\twas:0.05379389167329838\ttheir:0.033201761612895946\t:0.01\n",
"the:0.44348300177498867\tan:0.1930723147572041\tThe:0.07617940722752135\tsaid:0.07611011296702362\tprimary:0.04444977251325656\tof:0.041065375657522135\tgeneral:0.0409984221702671\tthis:0.0379687796366691\tAn:0.036672813295547335\t:0.01\n",
"of:0.3845488614207434\tin:0.13452875329160977\tand:0.09198859828713138\tto:0.08755725394482924\tthat:0.08543532454774043\tby:0.057090956859196025\twith:0.056925822976923744\tfor:0.049982299278721824\ton:0.04194212939310428\t:0.01\n",
"the:0.6100958413682225\tThe:0.15323144268480074\ta:0.0762997162218943\tof:0.06003688482397068\ttho:0.034134433549245835\tand:0.023956498901063137\tin:0.012793613302180856\tby:0.010071785567068251\tA:0.009379783581553653\t:0.01\n",
"have:0.32856985966971103\thas:0.3186578533787705\thad:0.2160977995712206\thaving:0.046942887026850254\tnot:0.030878323080646863\tever:0.015717156670063903\tnever:0.012403184074733105\tlias:0.011257477922682252\tbad:0.009475458605321513\t:0.01\n",
"sum:0.21906310793492872\tday:0.2139182294019255\tState:0.14880446278344875\tthat:0.09165965444961832\tand:0.07654280377738834\tpart:0.06723352685578132\taction:0.06283072871226907\tit:0.05568102673354952\t<s>:0.0542664593510905\t:0.01\n",
"was:0.25136635402202634\tbe:0.1805923239739397\twere:0.1368516322759587\tbeen:0.11397981009871701\tare:0.09861556949958379\tis:0.07896710966638869\tand:0.054875211308118566\tbeing:0.048894422559133996\thad:0.025857566596133176\t:0.01\n",
"and:0.24514080494360466\tof:0.23186455546022047\tto:0.11121807870007587\tby:0.08868217515527338\tfor:0.08603229605353602\tall:0.06730625607083747\tthat:0.06629549250139989\tthe:0.056478579658688244\tin:0.03698176145636384\t:0.01\n",
"of:0.29633572450437873\tin:0.14608538748858488\tto:0.1415677969515685\tfor:0.0941246122349261\tand:0.08474980319055245\twith:0.07400648853301359\ton:0.05839473007661018\tfrom:0.05014706301412718\tby:0.044588394006238215\t:0.01\n",
"the:0.3103279440235315\tof:0.17413654868527798\tand:0.16924373084989433\tto:0.09410335785526062\ta:0.08334285316950657\tin:0.05267958019374887\tbe:0.03777522488732701\this:0.03486601099791866\tor:0.033524749337534535\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.22867797383680968\tof:0.2087631138561731\tand:0.18027989253412738\ta:0.08935248670618118\tto:0.08739015389361746\tas:0.049532749141737525\tthat:0.049441026379687045\tis:0.04921669672675217\twith:0.047345906924914465\t:0.01\n",
"the:0.37796446143552404\tno:0.20784014574003024\tof:0.10227378187439068\tmuch:0.09198974799105766\tThe:0.0498051437800253\ta:0.04288949594087074\tand:0.03967141932319069\tany:0.039591497393711955\this:0.03797430652119874\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"was:0.2973111216044535\tbe:0.2666089652720102\tbeen:0.15819637232128994\tis:0.08007366219465174\twere:0.06378490850123951\tbeing:0.03583524163115397\tare:0.033268216948552636\the:0.030371615186848878\thad:0.024549896339799666\t:0.01\n",
"and:0.2017108177298318\tin:0.16894947716344358\tof:0.11419134565511246\tto:0.1115508360298311\tthat:0.09115358736396835\tas:0.08317887721437348\tfor:0.07453412920272957\tmake:0.0744527539360834\ton:0.07027817570462623\t:0.01\n",
"be:0.31338051481205603\tand:0.1591676417946082\tas:0.1492716183791792\twas:0.09413336587731118\the:0.08125989393266334\tis:0.07249683589554483\tbeen:0.04675036352505153\tit:0.038474696023196746\thave:0.03506506976038884\t:0.01\n",
"day:0.4806237003724674\tside:0.12434741452857734\tpart:0.08451279294741096\tState:0.06607447305305611\tMonday:0.05302308741838082\tcity:0.049754198078273096\tline:0.04415728087525237\tmiddle:0.04379804517465087\tquarter:0.043709007551930974\t:0.01\n",
"the:0.3715350808947646\tof:0.1870123643645522\tpersonal:0.12517025367398918\treal:0.07267160316301532\tsaid:0.06761021897443041\tdescribed:0.05046150097292008\tand:0.048947827887989286\ttheir:0.03454042790468278\ttaxable:0.032050722163655884\t:0.01\n",
"<s>:0.4630827253648123\t?:0.15187747847075325\tit.:0.08173748821807642\tof:0.06449811456363794\tto:0.055771110296217986\t.:0.05113451489136719\tand:0.04589122648870285\tthem.:0.042442304626943816\t-:0.03356503707948823\t:0.01\n",
"of:0.3748103475415095\tin:0.17764053699756233\tto:0.11389997210518693\tfor:0.07614805358480665\ton:0.07061795788223735\tand:0.05514431318587547\tfrom:0.04436984209666239\tthat:0.04033061328248628\tby:0.03703836332367303\t:0.01\n",
"of:0.18964402558292942\tin:0.1763112192044053\tfor:0.13521550872908886\tas:0.11967897963280873\tand:0.09832832617005847\tto:0.09059723291364327\twith:0.07447944064998015\tthat:0.055883924627871624\tis:0.04986134248921412\t:0.01\n",
"of:0.3399595951006997\tin:0.17661959180055423\tto:0.10724906672176422\tthat:0.07997348955293168\tby:0.06848127556269216\tfor:0.06428813132241201\tand:0.06244671163040386\twith:0.05176903545908901\tIn:0.03921310284945318\t:0.01\n",
"in:0.29358875575322924\tof:0.18281504615540048\tto:0.17598981705477265\tIn:0.06769541460886698\tand:0.06726374531785694\ton:0.0616344730196996\twith:0.05139195120738718\tthat:0.048984719938444096\tfor:0.04063607694434277\t:0.01\n",
"and:0.24667053047778717\tto:0.1987496681634553\tthe:0.11996574645111414\tof:0.11046382737881537\tthat:0.07864893681528005\tor:0.06394016361487674\tre-:0.06261897627321195\t<s>:0.058705277560517403\twould:0.05023687326494171\t:0.01\n",
"the:0.46594236148700946\tan:0.21655787072062643\tof:0.08558613435614187\ta:0.062130179025273055\tThe:0.05239521460074089\tby:0.03228894614774695\tand:0.031636116132472615\ttho:0.02343382300781049\tAn:0.020029354522178182\t:0.01\n",
"that:0.3560105230962728\tand:0.22300199571327378\twhich:0.10934991430001134\tbut:0.07880470411805644\tas:0.06848038813693408\twhen:0.04570556941848771\tif:0.0423891938005536\twhere:0.033371378384670025\twhat:0.03288633303174043\t:0.01\n",
"his:0.27043263996832084\ttheir:0.19294438188797805\tthe:0.1872516389811497\ther:0.09588437738640294\tmy:0.09004056709884069\tyour:0.04916931308018874\town:0.03911742044182058\tour:0.03544493213237371\tof:0.02971472902292472\t:0.01\n",
"and:0.1855266834317403\tthe:0.17928268355096624\tof:0.1537079584360458\tto:0.14257578856808903\tbe:0.09033375319685075\twas:0.07646336480896145\tis:0.06802686908593894\tin:0.052184043745382366\tfor:0.04189885517602517\t:0.01\n",
"as:0.4903150038903391\tso:0.2110251324420227\tand:0.08362757644207455\tbe:0.047467786625607473\twas:0.045136228022727556\tit:0.040877351424126955\tis:0.03734757682803043\tIt:0.018403810571986166\tAs:0.01579953375308508\t:0.01\n",
"made:0.2158815538468705\tand:0.20077490257576494\tsecured:0.14753829268333635\tthat:0.11457813761836731\tor:0.07371829904753552\ted:0.06802283869976046\taccompanied:0.06002550773098258\texecuted:0.05699823449385169\towned:0.05246223330353073\t:0.01\n",
"the:0.5791499374252409\ta:0.17600985568498456\tis:0.05470656478212492\tof:0.05153337520443183\tand:0.03980664067942657\tThe:0.02919921683746997\ttho:0.025611852044704706\tan:0.018792135045295373\tare:0.0151904222963211\t:0.01\n",
"of:0.40588172267798567\tin:0.2308517128161083\tto:0.0938481618920813\tby:0.06092388541481552\tand:0.044475577130075654\tIn:0.042878780645164406\tthat:0.037470626357437385\tfor:0.03685662543157271\tfrom:0.03681290763475902\t:0.01\n",
"able:0.1528193991762348\torder:0.13652182635516222\tas:0.13651696305987326\tand:0.10176684278482842\thave:0.10125499165205618\tis:0.09873488480217843\thad:0.09806518336952678\tenough:0.08593801461555721\tnot:0.07838189418458275\t:0.01\n",
"the:0.15315417542670548\tof:0.1474619205254358\tand:0.1434895081163942\tbe:0.1380101494701949\tto:0.11257930602342806\twas:0.10680730325663455\tis:0.07750856055039425\tor:0.0558112570911162\tare:0.05517781953969663\t:0.01\n",
"of:0.32263096040955946\tin:0.17917491520159243\tand:0.09809122982336861\tto:0.0950646360915529\twith:0.07691729424245837\tfor:0.0711531608324362\tby:0.05063411041779492\tall:0.050355177771641675\tfrom:0.04597851520959545\t:0.01\n",
"the:0.4956126678275801\ta:0.33790775651192867\tThe:0.08050404702101632\ttho:0.023487023737245902\tand:0.014330739372977205\tA:0.012804754230172685\tof:0.010536208192629262\ttbe:0.007956895767601332\tthis:0.006859907338848506\t:0.01\n",
"of:0.39463353834650006\tthe:0.11259483597710998\tall:0.10803344972340696\tfor:0.09218502546424519\tin:0.08345670840010294\tand:0.07532130326255841\ttheir:0.04704207356193341\ther:0.0388219330174111\this:0.03791113224673177\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"thereof,:0.14372438831378914\tmortgage,:0.12751479507458588\tdollars:0.12579978373888626\t;:0.10723346882143683\tyears,:0.10673002332253108\tdue:0.102987140651874\thundred:0.09298856002446235\tof:0.09185049187953251\tStates,:0.09117134817290193\t:0.01\n",
"day:0.2589395411644889\tcity:0.14101578922606675\tside:0.11457463854390026\tState:0.10832150037277868\tpart:0.08479967963713955\tline:0.08263016130252847\tCity:0.0747179710541618\tname:0.06361684157817338\tplace:0.06138387712076228\t:0.01\n",
"he:0.2573970358257803\tand:0.1678037589242824\tI:0.1467537947883405\tthey:0.13412232231699966\twho:0.07489557787211451\tHe:0.06169220283116191\tshe:0.05396620591716062\tit:0.05301517119337635\twe:0.04035393033078376\t:0.01\n",
"the:0.29854557202464377\tand:0.1745190950987386\tof:0.15775938223967384\tthat:0.12083926351875786\tin:0.06834174670401257\tThe:0.04624847050183587\twhich:0.04414875418318484\ta:0.04010688611046935\tMr.:0.039490829618683276\t:0.01\n",
"and:0.24828552660720216\tto:0.17643742358466666\tin:0.11008615384364935\tthe:0.10810266710599067\tof:0.09739508383146954\tthat:0.06690588452659539\tnot:0.06628098702947632\tfor:0.06283895985246352\tI:0.053667313618486444\t:0.01\n",
"the:0.5445665403319037\ta:0.13334192540996662\tof:0.09008615283386563\tand:0.06596182529299761\tin:0.047881492463791746\ttho:0.03038958470016765\tan:0.029976218007223783\tThe:0.02425828661077095\tor:0.02353797434931228\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"a:0.25181696673149134\tthe:0.18085856845609544\tto:0.15537555061537806\tof:0.1377633135328837\tfor:0.08098724577420274\tand:0.055971891246752566\tin:0.05065400539940858\tat:0.038813123633511394\tbe:0.03775933461027624\t:0.01\n",
"of:0.294005732049567\tto:0.12815459264983933\tin:0.1225316346960198\tfor:0.10676425644954197\tand:0.10103306267669623\ton:0.0635470585940832\tfrom:0.06264574876613284\tby:0.05583843572746507\twith:0.055479478390654556\t:0.01\n",
"to:0.3596347110804047\tand:0.13911597525826588\tthe:0.11470810756465394\tnot:0.08631146961374613\twill:0.07900643358349463\tof:0.06597364864097657\tfor:0.06110504160753492\tor:0.0451927673597188\twould:0.03895184529120445\t:0.01\n",
"number:0.20461553777802435\tdeed:0.1233102292847884\tcity:0.11678359016678182\tState:0.10179864152173317\tsum:0.09938368879065264\tcounty:0.09762969412839066\tCounty:0.08732942095695494\tline:0.07985245795239204\tstate:0.07929673942028191\t:0.01\n",
"and:0.35300645440956296\tthat:0.2031892171245079\tas:0.15692861119759352\tbut:0.06651879692357407\teven:0.05975685123398287\tAnd:0.042216136067045835\tor:0.03780334824475082\tBut:0.035631161844753456\tsee:0.03494942295422833\t:0.01\n",
"of:0.4379546567447862\tin:0.14609068062067054\tto:0.11677434146476079\tand:0.05962065960052424\ton:0.05445302933539153\twith:0.04894217181619497\tthat:0.043400627669437315\tby:0.042173996066899574\tfor:0.04058983668133492\t:0.01\n",
"and:0.18929310138123437\tcovered:0.16935884120870554\tfilled:0.14496098815620134\ttogether:0.1149389467597416\tcharged:0.08927804784918368\tit:0.07994316895661391\tup:0.07366667277508843\thim:0.06832445206581947\tthem:0.06023578084741164\t:0.01\n",
"is:0.23777168306728338\tHe:0.19543956081469624\the:0.13783179497207484\tthe:0.08359491757336118\tbe:0.08337184206597097\tand:0.07104685423188005\tof:0.07102071133240559\twas:0.06869349129323708\tIs:0.04122914464909072\t:0.01\n",
"and:0.6562314334276595\twill:0.08787740746875214\tshall:0.051239253481577395\twould:0.04426012059812287\tAnd:0.035456423520000606\tthat:0.02987120804396301\twas:0.029798318941941154\tI:0.028080323189447528\tbut:0.02718551132853565\t:0.01\n",
"the:0.3756973884481016\tand:0.18017854390221322\tof:0.14072497419713706\tto:0.06320679828326586\ta:0.0572446722344708\tat:0.052673659890549486\tby:0.04177535907524544\ton:0.04011124851647906\tor:0.03838735545253749\t:0.01\n",
"a:0.23312652688705476\the:0.19063806774428804\tthe:0.13395281670069006\tand:0.11411491638313444\tHe:0.07905013936204504\tI:0.07170848546032342\twho:0.061451171130548266\tso:0.0555172717639753\tbe:0.050440604567940805\t:0.01\n",
"make:0.24400621291741012\tgive:0.1732434776430636\tand:0.13874148388699503\tof:0.0910150207413459\tas:0.0836918382656226\tthat:0.07093094143329609\tin:0.06392282720177937\tto:0.06240814088217223\tfor:0.06204005702831507\t:0.01\n",
"and:0.27235863890763945\tthat:0.25885892000919664\tbut:0.11909203110934602\tas:0.07814540203821271\tif:0.06777615672579032\twhich:0.05973620702620084\twhen:0.05177791619072065\twhat:0.046038984117551245\tBut:0.036215743875342175\t:0.01\n",
"of:0.4006418529755991\tthe:0.20579227551935692\tyoung:0.09553531885074944\thundred:0.06322717940858653\tand:0.059758577264310754\twhite:0.05162220314329746\ttwo:0.0471174185816564\tbusiness:0.03503626697084898\tthousand:0.031268907285594366\t:0.01\n",
"of:0.39309040772908915\tthe:0.12406099967735493\tin:0.12120146510299436\tto:0.12036466672361025\tand:0.06642836637280505\tat:0.06257896133510146\tfor:0.04879124431624856\tfrom:0.028334855695563835\tIn:0.025149033047232445\t:0.01\n",
"of:0.3052959057703501\tand:0.17587074756736695\tby:0.16017609399219437\tin:0.09374788474835034\tto:0.08026145716577857\tfor:0.07795299313114262\twith:0.03902234368415441\tIn:0.035597317470087965\tor:0.02207525647057472\t:0.01\n",
"as:0.19436001227001629\tand:0.1409601278107517\taccording:0.12688257803862749\tup:0.1166538996954941\tthem:0.09546248046552396\tregard:0.08571584773899625\tcome:0.08276545836165355\tback:0.07647325798284847\treturn:0.07072633763608811\t:0.01\n",
"the:0.3903554486419606\tof:0.1616310963649997\tand:0.1448352659380403\ta:0.11321343424292302\tto:0.05171883420356637\tor:0.03460557415015624\tan:0.03438879545143723\tThe:0.030973454855848855\tat:0.028278096151067713\t:0.01\n",
"the:0.32485507413084924\tan:0.2538073037889591\tto:0.12688670081477788\tof:0.07801040751338131\tand:0.05818356501454705\ta:0.04071633873437522\tis:0.0385703713485776\tin:0.03536030766995663\tnot:0.03360993098457604\t:0.01\n",
"and:0.3254865396597605\trecorded:0.19748242510204786\tthat:0.10837435777427329\twas:0.08437592482878305\tmade:0.06642110797620882\tup:0.05660911992456705\tmen:0.05382192126800477\tfeet:0.04960149040566442\theld:0.047827113060690186\t:0.01\n",
"to:0.4726455052520814\tand:0.1751724600858118\tof:0.06884146351699999\tin:0.06063959409687959\twill:0.0582126605197923\tthe:0.05312811836907345\tnot:0.03588306353251529\tor:0.03280104463561708\twould:0.03267608999122911\t:0.01\n",
"the:0.6244112290070936\tof:0.154532037599613\tin:0.05564918317940029\tThe:0.03778878919477586\tat:0.02986616126587394\ta:0.024480545470519293\tand:0.02315399300487726\tby:0.020127840268295977\ttho:0.019990221009550797\t:0.01\n",
"they:0.2778891512690949\twho:0.1902617601347004\twe:0.12127021575199289\twhich:0.11090458489791874\tand:0.06936616726947667\tthat:0.06241512455530697\tThey:0.05718324539424688\tyou:0.05454123086050088\tWe:0.046168519866761605\t:0.01\n",
"with:0.2861694881921447\tto:0.26192556654676824\tupon:0.09340322487744374\tof:0.09102870036287049\tfor:0.07584064928859266\ton:0.05282520871386314\tagainst:0.0522530200068407\tby:0.045427673071269124\tfrom:0.031126468940207232\t:0.01\n",
"to:0.49987330354037696\ta:0.17408737659802118\tthe:0.061536910871064776\tre-:0.05636459561185387\tnot:0.05187804365381576\tand:0.051089348590623834\twill:0.040866515388985634\tthey:0.027412998337094947\twould:0.026890907408162794\t:0.01\n",
"that:0.4191864264306642\twhich:0.12306459701814328\tif:0.10584152411724204\tas:0.0800588901554097\twhen:0.0655064430572058\tand:0.062325436114272305\twhere:0.05382186608530334\twhat:0.04122796967848988\twhom:0.03896684734326954\t:0.01\n",
"of:0.33414019334305783\tin:0.1193163369723613\tthat:0.09184271625067619\tfor:0.08893498064177045\tany:0.08657045303001525\tto:0.08592384413265503\twith:0.08520797874999389\tby:0.058306818404313926\tupon:0.03975667847515616\t:0.01\n",
"last:0.28195577758727486\ta:0.23540920428160295\tthis:0.14358239625852795\tthe:0.11371802113720553\tpast:0.07035042330362466\tnext:0.05768027271119998\tper:0.03728854277584361\tone:0.028232428938993713\tevery:0.021782933005726805\t:0.01\n",
"and:0.3891410771730926\tthat:0.1838118405728944\tbut:0.16686986415504704\ttime:0.07706117271634955\tBut:0.06072365092951834\tor:0.032347409177408616\tAnd:0.03234518226196476\tday:0.026499748898239098\tago,:0.02120005411548543\t:0.01\n",
"a:0.3027099024647167\tthe:0.1764363621980772\tsome:0.16752322536972847\tany:0.1565043789141983\thighest:0.04216155070513369\tin:0.03795713321185072\tone:0.037449207958709096\teach:0.035071773112317135\tno:0.034186466065268734\t:0.01\n",
"of:0.2755037559918844\tthe:0.2644572583035653\tand:0.14351698276211494\tto:0.07387776755551986\tin:0.0660203423347073\ta:0.052463887282780626\twith:0.04469723033883839\tfor:0.035796370027855365\tby:0.03366640540273372\t:0.01\n",
"cut:0.22441664555381396\ttake:0.13081515182204392\ttook:0.12458024369698523\ttaken:0.12046521262002205\tcutting:0.09283854915109215\tset:0.0826010301440561\tget:0.07576328990809612\tput:0.07019221330515443\tthem:0.06832766379873613\t:0.01\n",
"and:0.23528274901050533\tthat:0.16814935232024875\tas:0.15187563187016587\twhen:0.14207672504630092\twhich:0.1256995261868089\tif:0.054873573002842374\tbut:0.05096471871916986\twhere:0.03544595510784015\twhat:0.02563176873611792\t:0.01\n",
"property:0.2425364406201879\tand:0.19240218320589447\tland:0.1170608712005018\tpremises:0.08304699380485038\tbe:0.0789291386532878\tone:0.07490259429845744\tthereunto:0.07469693011090964\tas:0.06875274669327758\tlands:0.05767210141263304\t:0.01\n",
"his:0.20957731300477225\tin:0.155167806586981\tmy:0.14274628060685748\tthe:0.1321906920333545\tof:0.10759521791376131\ta:0.08301223303288824\ther:0.07026252597266\tand:0.048452766518084216\tIn:0.04099516433064098\t:0.01\n",
"they:0.2761693685482012\twe:0.14994464697224721\tthere:0.11600325764707058\tThey:0.08746330601667836\twho:0.08713678570774382\tThere:0.07744715847024274\tyou:0.06919138566794363\tand:0.06789931664106189\tWe:0.05874477432881063\t:0.01\n",
"of:0.2887230720444396\tin:0.1635099374557461\tto:0.15672809212503055\tand:0.07680447811810345\tat:0.07369645052699304\ton:0.07270615263289752\tfrom:0.05976445817311063\tthat:0.052089776365290885\twith:0.04597758255838839\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.2644856015384603\twas:0.1317983514320763\tis:0.12172613037992536\tbe:0.09429108436977233\tmade:0.09199527274023644\tthat:0.09135462493313826\tare:0.06555461463844062\tit:0.06447183121502892\tor:0.06432248875292151\t:0.01\n",
"the:0.3568383666004523\tand:0.1577832279767684\tof:0.15086972339224544\ta:0.09601399880610045\tto:0.07713072479919085\tin:0.04357060387177\twas:0.03962780199327489\tor:0.03430077603200068\tbe:0.033864776528197096\t:0.01\n",
"the:0.253956142489818\tof:0.16831847420956056\ta:0.14660378725332943\tand:0.11872591044485299\tto:0.0723540476505756\this:0.0673934170190347\tin:0.06641083037950722\tour:0.048267233551614504\tfor:0.04797015700170687\t:0.01\n",
"the:0.2897383324568781\tof:0.17113076544121678\ta:0.10182560711526899\tto:0.08415539991493161\tin:0.07588252600215932\tany:0.07161219763621446\tfor:0.06930496705250555\tor:0.06569006370210649\tand:0.06066014067871867\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"of:0.26204450338714586\tthe:0.20359557435943898\tand:0.17825452989323007\tto:0.11792820298097988\ta:0.05389841863779612\tbe:0.052562188211168086\tin:0.04503280422114027\twas:0.04044734454367649\tfor:0.03623643376542417\t:0.01\n",
"foreclosed:0.21354426481975966\taccompanied:0.15326393402647306\tmade:0.13791131994204262\tand:0.13215418511823615\tfollowed:0.12340081914410177\tsurrounded:0.0697778146110107\tup:0.05787632017490193\tcaused:0.051337079258656944\tsecured:0.050734262904817265\t:0.01\n",
"or:0.23843679165869403\tof:0.20570841833825385\tfor:0.13085386714738467\tand:0.09907045578557137\tin:0.08639825274810163\tthe:0.07074752050763945\tby:0.06374861166535035\tabout:0.047579909973079586\tto:0.04745617217592501\t:0.01\n",
"the:0.5542746579641487\ttheir:0.11631061635621931\tour:0.06477768047877433\tof:0.05958304688712925\tand:0.046614227658576445\this:0.045365778163138366\tits:0.034900269571066095\tequal:0.03445077237569284\tother:0.03372295054525481\t:0.01\n",
"the:0.2932710440183058\tand:0.18068484721742636\tof:0.12914845709783632\ta:0.09040207373832183\twas:0.07177404033673933\tbe:0.06633341714530273\tMr.:0.0642269026695004\tis:0.04970241125576916\tThe:0.044456806520798184\t:0.01\n",
"number:0.13744615670223045\tboard:0.13666454934904543\tamount:0.13336288108143649\tmatter:0.13199941429812975\tkind:0.1132733364137178\tout:0.10401616111911581\tBoard:0.08754216588906615\tsort:0.07395214308278589\tline:0.07174319206447223\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"On:0.24051301747690151\ta:0.18666268943476602\ton:0.12835324177321242\tthe:0.1271373465929021\tof:0.12044105766058073\tby:0.0697394796538169\tin:0.05316606788839257\tand:0.03426227655249058\tA:0.029724822966937157\t:0.01\n",
"he:0.20943113962666574\tit:0.15796606894851828\tIt:0.12982621948424253\tand:0.11922707551407714\tI:0.10738949807789656\twhich:0.0927527069733816\tHe:0.0751398867324598\tshe:0.05090133688667786\twho:0.04736606775608048\t:0.01\n",
"and:0.28324643865944565\tprovided:0.14964481998622928\treason:0.10576884487832953\tvoted:0.090255743448761\tdemand:0.08977323622202645\ttime:0.07408185153277012\tnecessary:0.06624038652316551\tused:0.06562648954341505\tvote:0.06536218920585729\t:0.01\n",
"and:0.2802179654686674\ttogether:0.17581662481571086\tcovered:0.10720042995908446\thim:0.0945742991305398\tup:0.08880677792452797\tit:0.06615739106357521\tmet:0.06358405713054323\tthem:0.061624174380125664\tbut:0.05201828012722528\t:0.01\n",
"well:0.42505290790780725\tand:0.13017570418746321\tfar:0.09211967611866224\tmuch:0.06921732218854655\tsuch:0.06295277662371597\tknown:0.06039365349236185\tso:0.05275662047952049\tlong:0.0502093210721171\tis:0.0471220179298055\t:0.01\n",
"the:0.4358069813679035\tand:0.24191842022402427\tin:0.055549911144823744\tthat:0.05379488216994355\tthis:0.04355049749401168\tof:0.042958254607970855\this:0.03943901135354001\tto:0.038531362677003723\ta:0.038450678960778646\t:0.01\n",
"to:0.3411777529553855\tan:0.22544536454806663\tthe:0.17400360042500448\tthis:0.08662650223052418\twill:0.05411143244443979\tand:0.03592356910284094\t\"An:0.030528926339717447\ta:0.022380605320901272\tAn:0.019802246633119688\t:0.01\n",
"the:0.4576660153231299\ta:0.15413144355211034\tand:0.09355743054509938\tto:0.07315179391402415\tof:0.06539102744155981\tThe:0.05968105653358186\tas:0.03509694490766686\tbe:0.027125927785157346\tor:0.02419835999767042\t:0.01\n",
"of:0.42058044830042207\tand:0.10834269583710811\tto:0.08668642581653047\tthat:0.08558672121139224\twith:0.08118486055781213\tin:0.055683324311476504\tis:0.053241341755998595\tby:0.052111487726786\tall:0.04658269448247387\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"is:0.29281748170845173\twas:0.15333154929211867\thad:0.10642688831468507\thave:0.0948657053657874\tand:0.08685732481759768\tbe:0.07990286114988383\thas:0.06655162146875997\tthat:0.05980238337566929\tare:0.04944418450704648\t:0.01\n",
"of:0.24748316730969536\tto:0.1887139419327974\tin:0.12474584255086431\tand:0.10946274744601112\twith:0.07202065715818359\ton:0.0692626490382542\tis:0.06280121144620869\twas:0.06037227240504977\tby:0.055137510712935565\t:0.01\n",
"the:0.2811359505820853\tsaid:0.16665179759093712\tSupreme:0.12148621663281739\tof:0.09699011225823012\tSixth:0.0865270683249352\tFourth:0.06376754108701423\tSeventeenth:0.061136560812793304\tFirst:0.06058844868885498\tTenth:0.051716304022332384\t:0.01\n",
"a:0.45298386905291105\tthe:0.277972163154512\tto:0.11034057981155987\tand:0.04769249946085793\tin:0.022664685208702774\tor:0.021819554543958817\tThe:0.020379196553254483\tof:0.019885202558089395\ton:0.016262249656153617\t:0.01\n",
"of:0.4636512981560198\tin:0.13829803162957727\tat:0.07931042737443221\twith:0.0754131469449102\tfor:0.07023916570428798\tthe:0.04434924517068344\tto:0.042611603566021596\tIn:0.03855035089532704\ton:0.037576730558740494\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"per:0.8567170551850469\tthe:0.045661211717494876\tand:0.02736210535965733\tto:0.014036583582401332\tof:0.013464824039977246\tas:0.009727179294841097\tby:0.00865019264922572\tan:0.008030301768336832\tsuch:0.006350546403018487\t:0.01\n",
"the:0.27004892961346216\t1st:0.15109863150680777\tfirst:0.12513779671039005\ta:0.10378703560438178\t25th:0.08044042951759475\t7th:0.06850863141428767\t10th:0.0652308917143553\t12th:0.06469097803790061\t21st:0.06105667588081993\t:0.01\n",
"the:0.18339688078573316\tcalled:0.17018930624676445\ttheir:0.129945117065141\this:0.10779339542419646\tcall:0.09777522118982959\tmuch:0.08037675573374806\tmore:0.07998137415066779\tno:0.07369743816546569\tand:0.0668445112384538\t:0.01\n",
"the:0.47503906999739653\tThe:0.1520506149353811\tthat:0.10341399458071726\tand:0.09601173366192145\tof:0.049218702769371445\ttho:0.04145785474756128\tthis:0.03394189916929494\tif:0.020413847241315536\tthese:0.018452282897040526\t:0.01\n",
"the:0.3315551549155621\tof:0.1620160228738577\tand:0.15161499195062692\ta:0.12218425025970872\tto:0.09146387073999558\tin:0.04777260836534461\ttheir:0.030659313650427133\this:0.02708608604414602\tfor:0.025647701200331222\t:0.01\n",
"the:0.23902113051807497\tof:0.17161930811364157\tand:0.17048986578540204\ta:0.11739811201043993\tto:0.08606435629581513\tbe:0.0650953131635733\twas:0.05762626390684623\tis:0.04231754636491667\tin:0.04036810384129018\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"of:0.19772967641121048\tas:0.1623673418679956\tis:0.11714445471395858\tand:0.09677175778520736\tthat:0.0943754287296158\twas:0.08357915383269263\tby:0.08031186848504734\tfor:0.07886594540065145\tto:0.07885437277362076\t:0.01\n",
"the:0.29348734035947927\tand:0.21800905869438575\tof:0.15798693257990812\tThe:0.07098336672023307\tthat:0.06016316734182636\tthese:0.05256309489874121\tThese:0.04957857554119429\tin:0.047710532982857816\tsuch:0.039517930881374175\t:0.01\n",
"of:0.2786121014537842\tto:0.19127150595179832\tin:0.16881611353328047\twith:0.06730766783298063\tand:0.06283155639407993\tfrom:0.06117019517930914\tby:0.06000195309493053\ton:0.05374121545993158\tIn:0.04624769109990516\t:0.01\n",
"to:0.2636052423822396\tin:0.19297924588514312\tof:0.18281785915931165\tat:0.07096159630674775\tfrom:0.06533127148643543\tand:0.06252851824515251\tfor:0.0545820273577128\tby:0.05267974529113902\twith:0.044514493886118084\t:0.01\n",
"the:0.47710520269795287\tof:0.1539599171919487\ta:0.08062904420760401\tin:0.0785993685737004\tthat:0.05103302557839802\tto:0.039703257360410506\ttho:0.03877641296965832\tThe:0.035286894483450404\tand:0.0349068769368768\t:0.01\n",
"beginning,:0.4781501721411405\tand:0.19913195713414136\tbeginning;:0.06468125615498733\tas:0.04564608133456971\tthat:0.044859746763783036\tginning,:0.04258402972720732\tlot:0.04214062921487202\tone:0.04131660825620798\tning,:0.03148951927309076\t:0.01\n",
"he:0.36288949378748275\tI:0.2244906846498001\tthey:0.07980605785195898\tshe:0.07980180130185753\twe:0.055596611446020384\tthat:0.051041446932484566\tone:0.051005194517013845\twho:0.048991986382076275\tand:0.03637672313130562\t:0.01\n",
"of:0.21442126305637302\tto:0.20119406879025925\tin:0.13730482285161658\tknow:0.09737868554160443\tfor:0.08160895983829654\tand:0.07793188552365657\tfrom:0.06248641697206011\twith:0.05980633039840174\tis:0.057867567027731666\t:0.01\n",
"of:0.4372552267028932\tthat:0.11478956344119344\tto:0.10249613576499077\tand:0.08388824994467832\tby:0.0742035664326956\tin:0.062089329059211336\tas:0.04083585021977792\twith:0.039906048380000454\tfor:0.03453603005455914\t:0.01\n",
"the:0.563928614948719\tan:0.18062880401504466\tThe:0.10029305416345587\ttho:0.03530236346825236\tAn:0.03381885176880536\tof:0.028375655839573556\ta:0.016541392974855337\tand:0.015698979897856683\tthat:0.015412282923437028\t:0.01\n",
"that:0.3304862410362213\tas:0.15698660678789275\tand:0.11441601867071532\twhen:0.11081834389453431\twhich:0.10583504605176514\tbut:0.05546177210460395\tif:0.05210807211024127\twhere:0.03447830077967794\tsaid:0.029409598564348122\t:0.01\n",
"it:0.3496907191817825\tIt:0.27499878196408284\the:0.07633674358843637\tthat:0.07578438369820449\twhich:0.06482561095254548\tThis:0.04409162802021033\tthere:0.03735663292471658\tthis:0.034415077463820935\twhat:0.03250042220620052\t:0.01\n",
"he:0.3355594050636734\tHe:0.1580707189832157\twho:0.1415555554458712\tand:0.09228764836176435\tI:0.06814785202368558\tshe:0.061794794464488045\tbe:0.05074784226792952\tit:0.048513085287981206\twas:0.03332309810139104\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"belonging:0.20769430499304795\tperson:0.1421659265467577\tone:0.14200847236262545\tand:0.0972154332520762\tmore:0.09681422103998628\ton:0.08560690924408772\ttwo:0.08022200869605528\tStates,:0.06917615344162241\tman:0.06909657042374098\t:0.01\n",
"<s>:0.2757838294537493\tand:0.26406842814044035\tthat:0.10832212960927687\tbut:0.06870905919513332\ta:0.06609265190877468\tor:0.06056871866645435\tmade:0.05072712218089184\twas:0.048770866482111264\tnot:0.04695719436316809\t:0.01\n",
"to:0.29875961360819053\tthe:0.23937957208494454\tof:0.15265190213869356\tin:0.0900099699753534\ta:0.07695029702451096\tand:0.04817754612957047\tfrom:0.03237521937198004\this:0.03178106870827205\tat:0.019914810958484498\t:0.01\n",
"the:0.5515931976749336\tthis:0.15835528550804473\ta:0.07135348543538311\tour:0.052636198805609324\ttho:0.03863276679838282\tof:0.03464832822548245\this:0.03340282548827112\tThe:0.030488781269689767\twhole:0.01888913079420306\t:0.01\n",
"the:0.26008963325081247\tto:0.1510271650502291\tand:0.13794930828343374\tof:0.10931438730792993\ta:0.10200655896335122\tin:0.09281048347406343\tthat:0.054950120990788755\tfor:0.04984162508689479\tat:0.03201071759249652\t:0.01\n",
"number:0.23648665961454457\tline:0.1311807165602487\tState:0.12480063051786539\tstate:0.11908759699876631\tplace:0.08366809471357468\tboard:0.08300842007512627\tCity:0.07345339358096503\tmatter:0.07106411116426735\tpeople:0.06725037677464159\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"nothing:0.16284059837738796\table:0.14142839065068322\tand:0.1299474156007064\tright:0.0991958313693117\torder:0.09733470572985022\tenough:0.09100525580828449\ttime:0.09081226610786572\twant:0.09036079061227624\tgoing:0.08707474574363402\t:0.01\n",
"the:0.30066537045736186\tof:0.18083337303704702\tand:0.14849071523579158\tto:0.13697527746982274\tfor:0.05023447445190032\tin:0.049590724586391306\tbe:0.04591187306033971\tis:0.04039018647411833\twas:0.03690800522722708\t:0.01\n",
"of:0.34176851604501607\ton:0.13164995514852088\tin:0.12807298106263787\tto:0.10676424005946084\tand:0.0699512193473053\tfor:0.05522237082809126\twith:0.05478252619747601\tby:0.052163376010243366\tfrom:0.049624815301248376\t:0.01\n",
"the:0.25819723229135083\tmost:0.20769650660467653\ta:0.20116525383378067\tand:0.0737938152284095\tvery:0.07308669266958333\tof:0.07013581688913896\tany:0.03690703065203507\tno:0.03646253291394913\tall:0.032555118917076124\t:0.01\n",
"the:0.2971497220479125\tof:0.2499086220516038\tand:0.08175183271197076\tare:0.07198295743974013\tin:0.06748539588793327\tno:0.060685460854158206\twas:0.05767079472887675\tis:0.05183114318408327\tbe:0.051534071093721164\t:0.01\n",
"made:0.19218639471057558\tand:0.13592849936119003\towned:0.1353002536635849\taccompanied:0.13320102092778655\tassisted:0.09576175113971226\toccupied:0.09115494321665155\tdelivered:0.07645568577645154\ted:0.06539457926586825\tfollowed:0.06461687193817929\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"to:0.2531863153210874\tthe:0.13631733715393185\tand:0.12064131209801963\tof:0.10677124039768943\tin:0.09516946349408716\twill:0.08234100371972237\tat:0.07775828576148235\tI:0.07063300435602994\tcould:0.047182037697949965\t:0.01\n",
"the:0.3066676449630029\tof:0.19582366675647814\ta:0.13023763620644474\tand:0.10457295181519655\tMr.:0.06908371857246665\tThe:0.05892166365278862\tto:0.04916383443051618\tin:0.04152884551073372\tby:0.03400003809237247\t:0.01\n",
"of:0.25296756508842694\tto:0.2154020023337419\tin:0.14937112723645737\tand:0.08007959789935276\twith:0.06727550951784922\tfor:0.06063935223675631\tat:0.0578196829521757\treserves:0.056755137889726436\thave:0.04969002484551347\t:0.01\n",
"as:0.20017946776925305\tand:0.1465964758612171\tup:0.11880107945608467\tcame:0.10593296243996118\tit:0.08936668582370258\thim:0.08459818621002786\twent:0.08292001111366028\tcome:0.08227831521441929\taccording:0.07932681611167393\t:0.01\n",
"in:0.36896934783888513\tof:0.22952866930735719\tto:0.11340860623582673\ton:0.10064210905456135\tIn:0.06822828767714405\twith:0.029243667062257724\tfrom:0.02865929809606153\tand:0.027909543637817506\tat:0.023410471090088744\t:0.01\n",
"was:0.2136791677788751\tbe:0.16368610066548808\tis:0.16026619650805748\tas:0.14982200974329177\tbeen:0.08141301773106657\thas:0.06806790914650071\thave:0.05765204117352954\tare:0.04928982823909203\tand:0.04612372901409871\t:0.01\n",
"and:0.1741589404188483\tis:0.14534956727792855\table:0.12881017400110667\torder:0.1128804086083704\twas:0.10890594312667938\tnot:0.08581072913819393\thim:0.0833300056680421\thave:0.07664506518679666\ttime:0.07410916657403406\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"and:0.24988029765591402\tof:0.21023299583167296\tto:0.14304553553927743\tthe:0.11256724445962307\tas:0.07157078067032756\tthat:0.06807392180832203\tor:0.05182165017803823\ta:0.043409769293866425\tnot:0.03939780456295826\t:0.01\n",
"and:0.30362277988779446\twas:0.10443100958480304\tup:0.09715571922917665\tout:0.09468709812847725\tmade:0.08900379926392116\tthat:0.0795124254797183\tdown:0.07557588691274114\tplaced:0.07548433192838158\twork:0.0705269495849865\t:0.01\n",
"in:0.24333994743612922\tof:0.18871067140801695\tthe:0.14254258973892459\tand:0.10760876324558527\tfor:0.09174081455919122\ta:0.06366595919272895\tto:0.061841865908333744\tIn:0.05733705309984939\twas:0.03321233541124056\t:0.01\n",
"of:0.2775823654949323\tin:0.14015884515621155\twith:0.121582681636841\tis:0.09897663119884043\tto:0.08864696712774395\tand:0.07963801328291438\tfor:0.07606510035879992\twas:0.059050824946662\tby:0.048298570797054324\t:0.01\n",
"N.:0.6364315780961928\t.:0.11988671412389333\tX.:0.09389688865770146\tS.:0.038139637740128636\tN:0.023864011187507167\tA.:0.021437866157920347\tC.:0.020380694639313197\tNo.:0.017997774690236508\tW.:0.017964834707106518\t:0.01\n",
"the:0.411544664777382\ta:0.38865912619881465\tand:0.04376625009970299\tthis:0.03323597602876194\tA:0.02996737775626723\ttho:0.029711306177873834\tThe:0.021336809828021254\tin:0.017826261148724286\tevery:0.013952227984451707\t:0.01\n",
"and:0.25814520899648236\tthat:0.24924445574201096\tto:0.17685128642373785\twhich:0.09644709193160464\tas:0.08282566294920526\twhen:0.034228896993690264\twill:0.03154677788172157\tshall:0.031397819148350464\tnot:0.029312799933196708\t:0.01\n",
"and:0.17088875819441882\tmade:0.14700725502613016\tup:0.14037496326714635\tsecured:0.1032245946741212\tout:0.10290304256707901\ttaken:0.09703783258711497\ted:0.08520391730418442\thim:0.07433795841065471\tdone:0.06902167796915025\t:0.01\n",
"that:0.253912747637827\tas:0.13263856180461625\tand:0.13209048684993685\thave:0.09729987938739554\tmake:0.0855157028072956\thad:0.08273684852049584\tof:0.07277582375136488\tif:0.06690329611316073\tbut:0.06612665312790747\t:0.01\n",
"he:0.2328485116866022\tand:0.1795521916228406\tI:0.17893949473785903\tthey:0.09048888839913775\twho:0.08861141700429304\twe:0.06186432093323752\tthen:0.05339987084659183\tHe:0.053276241146742176\tshe:0.05101906362269573\t:0.01\n",
"one:0.22586711108771074\tall:0.20318924817112793\tcopy:0.13585339809724553\tsome:0.08000904611832456\tout:0.07379004803716031\tthose:0.07122279865131625\tmeans:0.06962753566551794\tpurpose:0.06649818257859248\tpart:0.06394263159300428\t:0.01\n",
"and:0.27896776847231236\thim:0.165339413698242\twas:0.11226980831190811\tman:0.096438896839694\tit:0.09281578859421534\tup:0.06562583647316447\tthat:0.0651909040662511\tfound:0.05717470234619706\tmade:0.05617688119801571\t:0.01\n",
"the:0.5782194696927784\ta:0.11953438173681498\tand:0.08997416058282896\tThe:0.07908708096781146\ttho:0.04823648257411195\tor:0.026156310661827442\ttbe:0.022100112718808962\tof:0.01558809171205417\tgreat:0.011103909352963647\t:0.01\n",
"of:0.3440758322405954\tand:0.1437842366312491\tthe:0.12330380735401655\tin:0.08854212269378309\tfor:0.07704225397330466\tany:0.06554117203322539\tthat:0.04990718140826256\tby:0.049122200648489336\tonly:0.04868119301707385\t:0.01\n",
"the:0.37796446143552404\tno:0.20784014574003024\tof:0.10227378187439068\tmuch:0.09198974799105766\tThe:0.0498051437800253\ta:0.04288949594087074\tand:0.03967141932319069\tany:0.039591497393711955\this:0.03797430652119874\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"city:0.16093934271057833\thundred:0.11917056142860442\tfeet:0.11361709800796171\tone:0.11060594968342725\tnorth:0.10485531519985455\tcounty:0.10411465850431614\tstreet:0.09278165736677312\tState:0.0923067450836917\tlife:0.09160867201479285\t:0.01\n",
"I:0.18488540010204588\the:0.17825269343293498\tand:0.12734523807088158\tbe:0.12454163496715553\tthey:0.12143513789941708\twas:0.07905893572419262\twe:0.07295614095965795\tare:0.05156209623981795\tbeen:0.04996272260389631\t:0.01\n",
"and:0.25178537144280083\tthey:0.14565940842788472\the:0.10808182896187964\tis:0.09704855846418929\tI:0.08926338901534046\twho:0.08834476880006675\tit:0.07705688503179851\tnot:0.06640190292078746\twe:0.0663578869352524\t:0.01\n",
"and:0.4791719696418293\t<s>:0.09898774175203062\tto:0.06892662707557698\tbe:0.06809544353831579\tis:0.06213920418383557\tthat:0.06202953063069964\twas:0.056767046129121014\tit:0.0506679580047174\tw:0.04321447904387393\t:0.01\n",
"two:0.17994419860228125\tmany:0.1705065872054244\tfew:0.12480978746484059\tten:0.12187859658498462\tfive:0.09549805645088333\tfour:0.08149265333958569\tthree:0.07761126458173406\ttwenty:0.07179643084604058\tseveral:0.06646242492422545\t:0.01\n",
"the:0.21311250376594582\tand:0.19447734809018727\tto:0.1296949352992117\tof:0.12445818204085289\ta:0.08139865387860673\tin:0.07422496431199667\tin-:0.06220976952442661\tor:0.05685927293694106\tthat:0.05356437015183128\t:0.01\n",
"of:0.35291787368461625\tand:0.09984074831851501\tto:0.09787799335845729\tfor:0.09681680070397782\tthat:0.07855080021312927\tin:0.071732201772522\twith:0.06910339472724666\tby:0.06281338799189609\tis:0.0603467992296396\t:0.01\n",
"the:0.3323475914517543\tof:0.30429733953970206\this:0.05912057999500091\tto:0.05787339399165412\tin:0.05315061670519715\ttheir:0.05271140435322497\tgood:0.050581384808583985\tpublic:0.04169566223407192\tperfect:0.03822202692081057\t:0.01\n",
".:0.3952954089603582\tA.:0.14857546814715905\tMrs.:0.10290805118970353\tC.:0.08261698272798651\tMr.:0.0632529955718212\tDr.:0.06040485743258185\tD.:0.05191734866121546\tJ.:0.044384326883968137\t<s>:0.04064456042520616\t:0.01\n",
"to:0.2669166054286926\twith:0.16671694439109064\tfor:0.11767546129832622\tby:0.09134730995801488\tof:0.08626034127241412\tput:0.07764838260991902\tupon:0.07678577776718892\ttold:0.05642095745391913\tagainst:0.05022821982043434\t:0.01\n",
"the:0.31792663521919434\tof:0.17506046491113697\tto:0.12583480506969338\tand:0.12199733525924691\ta:0.08729262353340488\tin:0.04675411132104588\tby:0.040751584498891526\tat:0.03865409002414229\t<s>:0.03572835016324379\t:0.01\n",
"and:0.19470683918027268\tof:0.1731041269459971\tto:0.160408576560573\tin:0.1478120667032305\twith:0.1257407214534699\tthat:0.0585586440458936\tfor:0.04821181544838397\tat:0.04094643358145267\twas:0.04051077608072651\t:0.01\n",
"of:0.2883685231235046\tfor:0.13359332085180556\tin:0.1252314787843678\tto:0.12428481169737998\tand:0.0893310230509067\twith:0.06254291598945566\tthat:0.0584721443251868\tby:0.0545384010191208\ton:0.053637381158272\t:0.01\n",
"Mrs.:0.28319051470211515\tMr.:0.16720386666468653\t.:0.13198444195491385\tof:0.08303040923309947\tand:0.0774247439771816\tDr.:0.06806468183388943\tJ.:0.06355520531225949\tW.:0.058509916460002274\tby:0.05703621986185224\t:0.01\n",
"is:0.15815605252856477\tnot:0.1363917065468885\thim:0.11473048965034836\tand:0.11043199672733288\thave:0.10442744600890992\twas:0.09836749216631559\table:0.09793311488154023\thad:0.08932860525411224\twant:0.08023309623598757\t:0.01\n",
"<s>:0.35445398937632255\tsale.:0.21138329773668577\t.:0.08151426996299775\twit::0.07664034499816216\tto-wit::0.06693157231848634\tfollows::0.06493671080835377\tit.:0.05379988673569693\tthem.:0.04506489187185078\tday.:0.035275036191444\t:0.01\n",
"of:0.30532078956951414\ton:0.28189765144334544\tduring:0.0757031913507091\tin:0.07429764001210673\tfor:0.05959364414467271\tand:0.056104952194473076\tto:0.05108084483782146\tthat:0.046111646397146336\tOn:0.03988964005021084\t:0.01\n",
"of:0.20509868068331527\tthe:0.18992360083848198\tand:0.1627077320911976\tto:0.11166884988859471\tbe:0.0979632635341338\tin:0.06540848799261574\tor:0.058966420912407294\tfor:0.05013839373631626\tre-:0.048124570322937356\t:0.01\n",
"they:0.17575189562716811\twe:0.15884948974267682\the:0.15316210749662412\tI:0.14793626125930318\tit:0.10583886363524375\tthat:0.06699093900055623\tyou:0.0645982230351958\twhich:0.06241058168563478\tand:0.054461638517597194\t:0.01\n",
"and:0.33588990512315525\tso:0.1278726139938375\tfact:0.11537720847939432\tsay:0.07932676977727737\tsaid:0.0769132033296819\tknow:0.07286255230245701\tis:0.06380559007158074\tbelieve:0.06086605721333128\tbut:0.05708609970928473\t:0.01\n",
"of:0.319044490198792\tand:0.15877011356864146\tcontaining:0.1361041674055903\tthe:0.11938040454719656\tabout:0.07654648663511868\tto:0.05867652200684199\tor:0.05395371732901289\tfor:0.03498102649065942\tin:0.03254307181814675\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.15833238262337954\thas:0.1404274949181407\tof:0.11546190106428911\twhich:0.11463858861398656\tthe:0.11226344523761252\thave:0.10406134987920747\thad:0.08585526397367636\tto:0.0850805505630115\tas:0.07387902312669617\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"a:0.2004064096902594\tthe:0.18616788662135414\tand:0.1606130226053576\tof:0.11901147833374255\tto:0.0980792068783605\tfor:0.0869109627268444\tin:0.055912131469975666\tthat:0.04495530475569125\tat:0.03794359691841459\t:0.01\n",
"the:0.26965551931944126\tof:0.18478734909497338\tand:0.14365687967447013\tto:0.12301048714938255\ta:0.11530737983073551\tin:0.043688419265045\tat:0.037280556168710635\tfor:0.03705640949743606\twas:0.035556999999805515\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"able:0.18442923369550152\tbegan:0.140137642346855\tunable:0.11754704276676298\tright:0.11527206031166053\tis:0.1053086554519347\tenough:0.08807816888432578\tready:0.08510914824413843\thim:0.07844515463315656\thave:0.07567289366566453\t:0.01\n",
"of:0.28796442016412743\tin:0.1822501837667917\tto:0.14465490673352013\tand:0.07612991969717088\tthat:0.0757637830064932\ton:0.06248338075993175\tby:0.05942231069700584\tfrom:0.05388949898997307\twith:0.04744159618498594\t:0.01\n",
"of:0.2885030879880846\tin:0.21135312666010636\tand:0.11948547568712423\tto:0.10680050332513898\tfor:0.08141627784476049\tIn:0.04645747217972727\ton:0.04586313522522812\tby:0.04558989296096817\twith:0.04453102812886186\t:0.01\n",
"the:0.40616166535188986\tof:0.1791006035663656\tand:0.10473871257375741\ta:0.08596787193162952\tin:0.06319243226583311\tto:0.05529793398836866\tThe:0.04351212784263267\ton:0.027088012227414675\tat:0.024940640252108348\t:0.01\n",
"of:0.1838854722553984\tfor:0.1747900250313682\tin:0.1492167762039951\tto:0.12989945770140443\tand:0.12043881581460637\tis:0.07539979997152972\twith:0.0718027827897422\tIn:0.04760259114571394\tat:0.03696427908624162\t:0.01\n",
"to:0.23629461817924527\tand:0.18753105619068478\tthe:0.1543887197649772\tat:0.13801336702152245\tof:0.07075622034338198\tin:0.0690516683783136\tfrom:0.046867064544134036\tfor:0.045168797546206896\this:0.04192848803153367\t:0.01\n",
"the:0.31121763957736104\tand:0.18498016301139975\ta:0.11179095214428919\tbe:0.09608309070563406\twas:0.07575901168130421\tin:0.06600745860333793\tof:0.058529147143613056\tto:0.0465764855755439\tbeen:0.03905605155751692\t:0.01\n",
"the:0.5861148500479583\tThe:0.13589880568920537\tand:0.08999227917400261\ta:0.05948272397324941\ttho:0.042091103380494266\t.:0.02275979080602982\tof:0.020847819730666683\ttbe:0.016644920136321455\tat:0.016167707062072028\t:0.01\n",
"and:0.3602584648498354\tit:0.2217704791134054\the:0.08652793247820484\tIt:0.08165779918454118\tof:0.0727334455758029\twe:0.04460285358118742\twho:0.04189252487179352\tland:0.041151152115997965\tthey:0.0394053482292315\t:0.01\n",
"No.:0.3059977390969229\tand:0.1786840951574386\tat:0.10721168837049301\t.:0.10329431779622758\tto:0.0631264593838829\tthat:0.06279779794788402\t<s>:0.05917937665962225\tas:0.056223393210524775\tan:0.05348513237700403\t:0.01\n",
"<s>:0.4779706390248056\tit.:0.1039579405261282\tthem.:0.0882874270574096\thim.:0.08399957836591689\t.:0.06603087989670792\ttime.:0.05045601400247573\tday.:0.04727606173255104\twork.:0.03813001083838494\tcity.:0.03389144855562004\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.16078581547426396\tis:0.13942725603607228\tenough:0.11697012593100911\table:0.1150430460101649\thave:0.0969552173048442\tought:0.09310128325190978\tas:0.09223816509772217\tthem:0.09144241327618167\thim:0.08403667761783173\t:0.01\n",
"a:0.4535727728827626\tthe:0.23326570936052868\tmost:0.09041668743766305\tThe:0.04798015851662479\tof:0.04519719742298165\tand:0.0431452119992471\tvery:0.04262426410612492\tA:0.01878397374410042\tis:0.01501402452996669\t:0.01\n",
"about:0.22688519070237018\tand:0.19973899844327136\tthe:0.19488151891009253\tor:0.12545542975519514\tof:0.07353786046309947\twas:0.05608989962055068\twere:0.03928072875685402\tthan:0.038694572013280464\tare:0.035435801335286184\t:0.01\n",
"the:0.4969320675557941\tof:0.20468423918674822\ta:0.09034244786968561\tThe:0.05204405641638105\ttho:0.04268276599256983\twith:0.030913227243202786\tand:0.028389839255237942\thot:0.026222302499679495\tlow:0.017789053980700967\t:0.01\n",
"the:0.21664399733907885\tof:0.20997943568181873\tto:0.15895125876304586\tand:0.1392917065887313\tin:0.08708823154679186\tfor:0.04755804251050121\tby:0.04642258817999393\tat:0.04258433070815616\tthat:0.04148040868188219\t:0.01\n",
"of:0.3230411864570994\tthat:0.1607623449135805\tand:0.15178476520262557\tin:0.11690379173889899\tfor:0.06736290080928728\tto:0.04511611785207637\tone:0.04326252123824249\tfrom:0.04129343555631927\tby:0.04047293623187005\t:0.01\n",
"and:0.24886995863739864\tthe:0.13026498135797135\tbe:0.11986027161540871\twas:0.10043939916628876\tof:0.10013463545315852\ta:0.08782221127761707\tis:0.07520569964714378\tto:0.07296935356461728\tare:0.05443348928039593\t:0.01\n",
"to:0.1860131078114218\tthe:0.17914122823715525\tand:0.16550584980897967\tof:0.1636700094307909\tbe:0.08356356753413034\tin:0.07488615547597499\tis:0.04815772800281257\tor:0.04552403779072549\tare:0.04353831590800901\t:0.01\n",
"the:0.4738769504033313\tat:0.18459422496116612\tof:0.10543908628318706\there:0.04500252662343211\tThe:0.040990282296739435\tAt:0.039861862895134034\tand:0.034751208519220256\ttho:0.03275906019665256\tday:0.032724797821137325\t:0.01\n",
"one:0.2225826727298726\tsome:0.15784843831345308\tall:0.12025351413685531\tmany:0.1158027129783653\tout:0.09140630375448652\tmost:0.07901501633588326\tnone:0.07828699270387977\tany:0.062483830252390044\tpart:0.0623205187948142\t:0.01\n",
"hundred:0.30501886436935205\tdue:0.10777136943695781\ttime:0.09769411436063279\thim:0.09449379713213328\tup:0.09292755160885652\tmore:0.077052062807821\tone:0.07622921793589142\tlife:0.0710035254983758\tit:0.06780949684997935\t:0.01\n",
"a:0.299746172373006\tthe:0.2236938412685546\tof:0.10248187238278401\tand:0.09034856027250394\tthat:0.07302798786408153\tin:0.0663575472043568\tthis:0.05432810821026657\tThe:0.04697779275963977\ttheir:0.03303811766480681\t:0.01\n",
"and:0.16937662300486955\tone:0.13448962086505986\tcorner:0.12569696441190226\tcity:0.12069951008564053\tday:0.10321758910660188\tline:0.0977290014126033\tpart:0.09191740855326323\tthat:0.07715778597671656\tdaughter:0.0697154965833429\t:0.01\n",
"is:0.16657716644027049\tin:0.16461466929561597\twas:0.14693680550009694\tof:0.12878115437537407\twith:0.09952982689200424\tto:0.0990624477724549\tand:0.06455312747624052\tbe:0.06427022421724772\tfor:0.05567457803069508\t:0.01\n",
"of:0.18304467022818127\tthe:0.14916457371048816\tand:0.13796146270482554\ta:0.137186259092906\tto:0.11886976573858546\tfor:0.0980654137044687\tin:0.07758614974744962\twith:0.04540242177127503\tthat:0.04271928330182016\t:0.01\n",
"the:0.44372722328772407\tof:0.1405330032920139\tand:0.1056443516697839\ta:0.08514211404593083\tto:0.06196566048855819\tThe:0.047586973508372904\ttho:0.03903283313837565\twith:0.034660231027529534\tin:0.03170760954171081\t:0.01\n",
"the:0.6824988292189748\ta:0.08731086360546862\twhite:0.0740611243034757\tand:0.03703144556913638\ttho:0.031045950317042718\tthis:0.02509274418220906\tof:0.02096300454923883\tThe:0.016266340254519337\this:0.015729697999934643\t:0.01\n",
"of:0.23995574479032425\tthe:0.2250765903934719\tand:0.11870816875969581\tin:0.09976927376184974\ta:0.0994622387657473\tfor:0.06242781742874918\tby:0.058614611667933234\tto:0.050728739274262274\twith:0.03525681515796628\t:0.01\n",
"the:0.25653872101605124\tin:0.19178655543968337\tof:0.18930380462195925\tthis:0.09219719268040216\this:0.06177192542116273\tthat:0.06067627036380599\tto:0.05980293433953885\ttheir:0.04118470140305056\tsame:0.036737894714345826\t:0.01\n",
"of:0.26420369311553665\tis:0.1285659289787553\twith:0.10764442822461981\tto:0.08896532091741485\tas:0.08865761065839581\tin:0.08777219566649862\tand:0.08533708840231793\tby:0.07748846510295217\tfor:0.06136526893350886\t:0.01\n",
"a:0.4179030647438561\tis:0.11231466213116915\twas:0.1082434623509571\tthe:0.09464574285457196\tare:0.08193441717638801\tbe:0.07048623468844621\twere:0.039905918975028\tnot:0.03249871978042105\tbeen:0.032067777299162444\t:0.01\n",
"to:0.29679762706940643\tI:0.2729394285930203\tnot:0.12420784559135889\tyou:0.07906515227372445\twe:0.07084467436289833\tand:0.0561685907245823\tWe:0.042110366202679786\twould:0.026121758989807637\tthey:0.021744556192521965\t:0.01\n",
"it:0.25963858208860846\twhich:0.14112918128503316\tand:0.13477755288321686\tIt:0.11476539973660434\tthere:0.09895590903510543\tthey:0.0762137180117906\twho:0.057804780239370954\twe:0.05506058752131994\tthat:0.05165428919895035\t:0.01\n",
"at:0.23861372412503445\tand:0.1812333671357339\tNo.:0.1536955387261185\tthe:0.07853559306902819\tan:0.07621357714161779\tof:0.07603658630895334\tthat:0.06309495345575501\tNo:0.0612887091706573\t<s>:0.0612879508671016\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"of:0.20999559581916794\tat:0.1815235518909952\tto:0.17056160149215194\tabout:0.13583324077443099\tand:0.10865389245775929\tfor:0.08375727837135809\tthan:0.04137640879465948\tor:0.02945922857800146\tfrom:0.028839201821475802\t:0.01\n",
"and:0.22774621183493898\twas:0.16662348180026929\theld:0.13192829432280304\tis:0.0935358045905202\tclosing:0.08078426547569074\tbe:0.07647588090771583\tsold:0.07569903327319882\tsell:0.07492585797465864\trequired:0.06228116982020435\t:0.01\n",
"of:0.29870574031813857\tat:0.2561721356998034\tin:0.09855628238555726\tand:0.09753288113362243\tto:0.08539426611653018\tfor:0.05510921275982943\tafter:0.03434846946298533\twith:0.033207493848480416\tby:0.03097351827505289\t:0.01\n",
"part:0.25498660523010275\tone:0.13826424215473132\tside:0.11897823877869701\tto:0.10463701283011184\tan:0.08551858303225962\tday:0.07828904793138765\ttime:0.07020940887005908\tcost:0.06989498307344935\tand:0.06922187809920159\t:0.01\n",
"the:0.5810309354450308\ta:0.1548377997998627\tThe:0.0714215906311825\ttho:0.04852729107072917\tof:0.033949940627161515\tto:0.03155571057119942\tand:0.026181675657339254\tthis:0.024826471100129123\ttbe:0.017668585097365543\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"the:0.5311502285445677\tan:0.12550763911802107\tThe:0.09431247676807919\tof:0.059688429525843495\tand:0.046043484142330685\this:0.040145835667267274\ttheir:0.03538081540667381\ttho:0.03334549745438671\tyears:0.024425593372829877\t:0.01\n",
"and:0.17585653528116318\tto:0.15780463333268435\tthe:0.15408048987271517\tof:0.13338762061696083\tbe:0.09705683339257447\tis:0.07833119972135894\twas:0.07225980199753679\tfor:0.06656433948048371\tin:0.054658546304522555\t:0.01\n",
"a:0.4353708054959215\tthe:0.23527893529186628\tevery:0.057619329118629645\tany:0.05065788346346338\tand:0.048852012869964156\tother:0.047593521922705745\tsome:0.047581790258162296\tAmerican:0.04137687178807899\tof:0.025668849791207964\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.36793145294519825\this:0.24296121276903412\tof:0.12226315939997648\tMiss:0.07905534187016618\tthe:0.0545542730621466\tto:0.048069102986236976\ther:0.03179777601969562\tmy:0.021913190215298972\ta:0.021454490732246943\t:0.01\n",
"at:0.45559954690581206\tof:0.09893453468210574\tSection:0.08481841633971152\tto:0.07708371788580716\tNo.:0.0766817705536168\tand:0.05704990887327704\tSec.:0.050099297730441424\tabout:0.045720432804024866\tJune:0.04401237422520336\t:0.01\n",
"and:0.5081968195765768\tthat:0.11620524085084313\tbut:0.10537562698787026\ttime:0.09611084263568197\tor:0.03958742522958082\tBut:0.03435655121789713\tcome:0.03402667703080922\tago,:0.02908649581510384\twhich,:0.02705432065563682\t:0.01\n",
"men:0.22229840940303264\tdo:0.12768959754152487\tthem:0.10296325652741754\tup:0.10172828974197584\thim:0.10030000614235741\tit:0.09238056268097894\tin:0.08503268185584556\tout:0.07880513747320926\tcan:0.0788020586336579\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"as:0.19436001227001629\tand:0.1409601278107517\taccording:0.12688257803862749\tup:0.1166538996954941\tthem:0.09546248046552396\tregard:0.08571584773899625\tcome:0.08276545836165355\tback:0.07647325798284847\treturn:0.07072633763608811\t:0.01\n",
"up:0.1616589999817635\tin:0.1538003758146637\thim:0.1468170880412111\tout:0.10878245602034545\ttime:0.09349365606702048\twork:0.08622409354376653\tmen:0.08113939717271958\tmade:0.08012475696295179\tthem:0.07795917639555784\t:0.01\n",
"the:0.25470561870247754\tand:0.17871018174426181\tof:0.12454106589558235\tto:0.11666316244862254\tin:0.07582920922781207\twas:0.07101916294765154\ta:0.06560002811236118\tbe:0.05991783825325076\tis:0.04301373266798011\t:0.01\n",
"and:0.2884614495137475\tthe:0.26328168623551035\tall:0.1285970444814789\tor:0.08763308830393385\tany:0.07484375884202325\tof:0.04111395664637389\tno:0.0408276771970139\twith:0.03297087981712196\tThe:0.03227045896279635\t:0.01\n",
"<s>:0.5964376085481624\t.:0.08711193920501305\tit.:0.07551185858136401\tthem.:0.049217015497795315\tof:0.046567545890369544\tday.:0.040310979728701436\thim.:0.03513570882906043\ttime.:0.031191587530225193\tyear.:0.028515756189308523\t:0.01\n",
"the:0.34223668650146216\tof:0.20914908189866335\tin:0.12459936915474426\tat:0.10434286021046271\tThe:0.05186845717378217\tand:0.0504259855523788\tto:0.046041765736821796\tfor:0.03658786410350475\tthat:0.02474792966817997\t:0.01\n",
"that:0.18404915690075815\tand:0.18167567775787719\thad:0.10766507292859072\tbut:0.10111128551267923\tis:0.0945412610534883\tas:0.0898300107531808\thave:0.08972975144382046\tIs:0.07096038801362375\tmake:0.07043739563598148\t:0.01\n",
"to:0.14430364399070175\tin:0.14283745411715704\tthe:0.14205288111662331\tof:0.1403684496250526\tand:0.1202072321283895\ta:0.09871300962934569\t<s>:0.09473511179481059\t-:0.06115386503261239\tby:0.04562835256530708\t:0.01\n",
"be:0.28467824073809084\tis:0.16389321094639572\tare:0.12837511837448348\tand:0.10666119832834214\twas:0.09969736482987188\tbeen:0.06384739541182054\twith:0.05425733891135867\tof:0.04838277622852314\tnot:0.04020735623111343\t:0.01\n",
"was:0.3311052780248053\twere:0.16785753407552184\tbe:0.1428615931617129\tbeen:0.1008182010558958\tis:0.07146569871446082\tare:0.06805632065607453\tand:0.0474188714746602\tbeing:0.030375424907073904\tto:0.030041077929794734\t:0.01\n",
"there:0.21808093876804285\tthey:0.20475055849309204\tThere:0.16436752250747547\tand:0.10676075070122194\twho:0.09782943276711666\tThey:0.058140193223800346\twhich:0.056312857812057845\twe:0.051325625316181116\tthat:0.03243212041101175\t:0.01\n",
"be:0.2483173758919503\tand:0.1156876885026976\tis:0.10879204714312075\tbeen:0.10781730298410108\twas:0.10046125071151504\the:0.08618395602673141\tas:0.08583726299875137\tthe:0.07709250972546994\tall:0.05981060601566254\t:0.01\n",
"New:0.9115388342367972\tof:0.022894741689950267\tNow:0.013970684814927714\tXew:0.011561942101886583\tand:0.010486376284643887\tNew-:0.0060505842471832855\tMew:0.0058213599480966514\tto:0.0043305544586571204\tbe:0.00334492221785736\t:0.01\n",
"of:0.22398427845151245\tthe:0.1807401617028246\tand:0.14534768677046012\ta:0.13961216443067928\tto:0.10433874860215893\tin:0.07086205051916722\tfor:0.05687306761231843\tbe:0.035377567737223545\tas:0.03286427417365547\t:0.01\n",
"a:0.18902675191168544\tthe:0.18306796321618887\tthis:0.13392750984477436\tof:0.11913414935634734\this:0.09245783151182306\tand:0.08981238509476452\tin:0.08860847155144636\ther:0.04706150197779711\tto:0.04690343553517282\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.271135475568933\tof:0.22624656774806975\ta:0.09935187518303316\tfor:0.08676637190428708\tand:0.07679704909935653\tin:0.06823685805888327\tno:0.05623724301969763\this:0.05467092783762654\ttheir:0.05055763158011321\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"be:0.18472928855555906\thas:0.17137378294483346\thave:0.1565783112587764\thad:0.11795826638991275\the:0.09390111056022296\tbeen:0.07648307099273326\twas:0.07006929658615126\tand:0.06316719319006427\tare:0.0557396795217465\t:0.01\n",
"the:0.33767641601216364\ta:0.31088025890296556\this:0.06664965458346112\tand:0.06049440592649359\tThe:0.05812352773330577\tof:0.0443310341559521\twill:0.042709549397144046\tin:0.03650918341238357\tto:0.0326259698761308\t:0.01\n",
"and:0.23269702242011067\tmade:0.22981759683133623\tor:0.11115481161761777\tthat:0.07236086063876271\thim:0.07054273789002967\tfollowed:0.07041660789627405\towned:0.07020071888558449\ted:0.06697266320322266\taccompanied:0.0658369806170616\t:0.01\n",
"be:0.3150464961790923\twas:0.18309390801688277\tis:0.10230298309602176\tbeen:0.09500227022600424\tbeing:0.06117559922169109\twere:0.059692994825667756\tand:0.05944815335690453\tare:0.05877161561184629\thave:0.055465979465889\t:0.01\n",
"the:0.21051605632283144\tof:0.198666106677452\tin:0.13979731340048057\tand:0.12225741910324202\tto:0.10029606099068747\ton:0.07149718481239513\tat:0.05724166097713457\ta:0.04603759877458087\t<s>:0.04369059894119602\t:0.01\n",
"those:0.2563596249253624\tmen:0.20639173349317674\tman:0.17663425579815611\tone:0.08555225525184455\tand:0.08395082608942768\tpeople:0.05153756123212379\tall:0.048937760953382155\twoman:0.04476606595818128\tThose:0.03586991629834516\t:0.01\n",
"is:0.16019242339719214\tas:0.14570234075128866\tof:0.13718812230824368\twas:0.11002896161660813\tin:0.10319467012908762\tfor:0.09974958957085206\twith:0.09010798585948929\tsuch:0.07470161894100644\tby:0.06913428742623201\t:0.01\n",
"will:0.25332281611275076\tto:0.18714004015151808\twould:0.16069950805333222\tcan:0.09768395717688318\tmay:0.08718584761594794\tshould:0.06065953213895577\tshall:0.052890002706497914\tcould:0.05091662920810822\tnot:0.03950166683600586\t:0.01\n",
"dollars:0.19220347435819937\tday:0.19196425034250555\thundred:0.1610683723613714\tfeet:0.09860374043657712\tup:0.08687996928552226\t;:0.07261208748066243\tcosts:0.06337519138851402\tstreet:0.06189134705133533\ttime:0.06140156729531252\t:0.01\n",
"be:0.3447826849660725\twas:0.1874262019870564\tis:0.1310047680807546\tbeen:0.11868069397100739\tare:0.055347104682630446\twere:0.05476722450028508\tand:0.04259912479422689\the:0.028672471293176134\tso:0.026719725724790526\t:0.01\n",
"is:0.206672644420529\tof:0.15529754238904012\twas:0.12109940669983564\tas:0.11723601356277889\twith:0.08949080395457266\tbe:0.08372077114738737\tfor:0.07931039764251023\thave:0.0746294355578757\tin:0.06254298462547035\t:0.01\n",
"the:0.3271529695690261\tof:0.17194734372384654\tin:0.1533772497062444\ta:0.09450164417651008\this:0.05728046504361407\tand:0.04744341267727531\tIn:0.04729423892917897\tto:0.045609381806299205\tan:0.045393294368005384\t:0.01\n",
"to:0.26347294911523633\tthe:0.20207943492956468\tof:0.15545869450418856\tand:0.10372197011202519\tnot:0.09492145302753964\tfor:0.04905066155861363\tor:0.048126857297108465\tat:0.036594273675506474\tin:0.03657370578021699\t:0.01\n",
"the:0.7557212206737466\ttho:0.04408734442815013\tMississippi:0.040343631731132784\tof:0.04032550767608513\tThe:0.024681519988623325\tPotomac:0.02370102832647935\tMissouri:0.020958753646120154\tsaid:0.020340870873391544\tOhio:0.019840122656271084\t:0.01\n",
"and:0.3010384457214462\tmade:0.2374365275395641\tit:0.07839153814428536\tup:0.0737410704500499\tfollowed:0.07260569651909338\tdone:0.06404650895670638\tbut:0.05494166437643693\tthat:0.05491238501471593\ted:0.052886163277701806\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"in:0.2131866054664273\tfor:0.18278527504286687\tof:0.17465590095326441\twithin:0.09270317324720147\tand:0.08112620763954176\tonly:0.07401156421911753\tIn:0.06727676343538887\twith:0.05638982722093512\tis:0.047864682775256746\t:0.01\n",
"the:0.30368152797445447\tto:0.14586472171986933\tof:0.13920148496437165\tand:0.11616352003061514\ta:0.0865531937272108\tat:0.06084318006811143\tin:0.05053434162149873\tby:0.04586905064101488\t<s>:0.04128897925285353\t:0.01\n",
"above:0.4522971945623597\tfollowing:0.35851442408162837\tand:0.05575067320491024\tthe:0.03952612409563543\tlowing:0.03186328441187891\tpremises:0.021020307735306457\thereinafter:0.014994947403408827\ta:0.00894520306849135\tis:0.007087841436380806\t:0.01\n",
"he:0.2285340142466756\twhich:0.17424842093226392\twho:0.1411392475669376\tand:0.1110325015373256\tthat:0.1068828695795294\tHe:0.08149447844450987\tit:0.05998053541444081\tIt:0.04553698241500335\tshe:0.04115094986331378\t:0.01\n",
"and:0.44379187872088616\tthat:0.1962636930138491\tbut:0.0860205403383329\tis:0.08116717346307674\twas:0.05609159147798722\tas:0.038551158366270155\tAnd:0.030262809546785036\tIs:0.02904730500167827\tit:0.02880385007113443\t:0.01\n",
"and:0.2817691289447936\tin:0.1698580046314386\tof:0.08410225030948489\tare:0.08027010070498063\trecorded:0.07818521481306222\tis:0.07698547459077354\twas:0.07666560959987637\tthat:0.07337867985041287\tbe:0.06878553655517736\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.6814155451601218\tThe:0.06976313784053392\tlarge:0.047931098435539804\ta:0.043884969132440735\tan:0.03861778743541893\tthat:0.03424916008077986\ttho:0.02759686811917436\tthis:0.024062900550970122\tand:0.022478533245020416\t:0.01\n",
"<s>:0.705015724537389\t.:0.08442517998113055\tit.:0.04811010927027073\tof:0.033295861140176485\tday.:0.027407867400701363\tthem.:0.025346733038742592\tin:0.02333901465348012\ttime.:0.02184939476646843\tcity.:0.02121011521164073\t:0.01\n",
"and:0.35215962357750275\twas:0.14214829265944656\tit:0.0912517558188878\tthat:0.08256563002461868\tis:0.08133293150709567\tbut:0.06926715727728429\twhen:0.05890190304571152\tbe:0.056325402554646894\thad:0.05604730353480582\t:0.01\n",
"the:0.4610923847665224\ta:0.14363381337992928\tlarge:0.12881562582171777\tin:0.10643530557821776\tIn:0.038256973438717\ttho:0.033033980542898383\tthis:0.02856429904921599\tThe:0.025562502981539992\tand:0.024605114441241357\t:0.01\n",
"the:0.22443319974836648\tof:0.17138833819162766\tand:0.16053821376159752\tto:0.14050097146139537\tin:0.08627699625443931\tfor:0.060835378897025\tby:0.05585936115047445\twith:0.04550560623248158\tthat:0.04466193430259274\t:0.01\n",
"the:0.7159643768948128\tthis:0.12153478272535723\ttho:0.044540212654012014\ta:0.03357337836691492\tThe:0.0168062083278683\ttbe:0.01595851298518082\tthat:0.015467890740789197\tother:0.013382328407938121\this:0.012772308897126678\t:0.01\n",
"the:0.5352765235247345\ttheir:0.09903352428803454\tof:0.07412012674143867\ta:0.05564583186946125\tThe:0.04950477946720351\tour:0.04675584920893781\this:0.04487035764609473\tand:0.04349617616486714\tthese:0.04129683108922778\t:0.01\n",
"the:0.40486591529502186\tof:0.286321914617275\tand:0.07258089424207208\tby:0.05670000737173952\tsaid:0.0507107084183182\ta:0.037338442773573684\tto:0.036871478710639276\tThe:0.024956590249224374\ttho:0.019654048322136176\t:0.01\n",
"hundred:0.32960701002653753\ttime:0.10451691012679007\tstrength:0.0895576410592967\trules:0.08834564023718594\tgood:0.08691568080166502\tmen:0.07679010431314513\trights:0.07433157268930472\tout:0.07002752261219958\tlife:0.06990791813387516\t:0.01\n",
"and:0.3352899624206381\twas:0.20706921999438338\tbeen:0.09332530862935769\tbe:0.09082560552051407\tthe:0.06429914203137994\twere:0.0567238930370188\tis:0.05499047783415761\thas:0.04682309455739152\thad:0.04065329597515881\t:0.01\n",
"and:0.3288619793478691\twhen:0.15683659286153923\tthat:0.13905767353542167\twhich:0.08432971327398228\tbut:0.08214660890785072\tas:0.07305220806821605\tWhen:0.04648924374709563\tThen:0.043296006231481686\twhat:0.03592997402654352\t:0.01\n",
"of:0.2989052909556916\tto:0.14654563898080183\tfor:0.12459045581280813\tand:0.09722495444285598\tin:0.08859356539505923\tby:0.0660976918993117\tthat:0.06373245365046185\tall:0.05383381513644319\ton:0.050476133726566445\t:0.01\n",
"<s>:0.4042990280115865\tit.:0.10699569690468405\tand:0.09546239026666406\tof:0.09266943741957917\tthem.:0.06922741092667484\tin:0.06340152454246796\t;:0.058070452883070785\tyear.:0.05253042013256236\tas:0.047343638912710165\t:0.01\n",
"and:0.25737290645186667\tof:0.17957405422491726\tthe:0.14619567225470498\ta:0.0957918271651453\tto:0.08822594087171945\twas:0.06802146797304325\tin:0.06036719409128018\tbe:0.050016388584221264\the:0.04443454838310155\t:0.01\n",
"the:0.2227997423767821\tof:0.14644783006367842\ta:0.1447194434557453\tthis:0.13606727806639352\tin:0.10227786485064211\tand:0.07810499263585946\tby:0.06497439326967344\tone:0.04891024461811613\this:0.04569821066310947\t:0.01\n",
"to:0.26347294911523633\tthe:0.20207943492956468\tof:0.15545869450418856\tand:0.10372197011202519\tnot:0.09492145302753964\tfor:0.04905066155861363\tor:0.048126857297108465\tat:0.036594273675506474\tin:0.03657370578021699\t:0.01\n",
"it:0.2929188587917364\tIt:0.2519498814212308\twhich:0.12191763798366692\tthere:0.07708569698081741\twhat:0.06523333278223262\the:0.054518123609495685\tthat:0.05159467763305933\tThere:0.04524642427004255\twho:0.02953536652771809\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"not:0.45960322169894996\tor:0.13529148685017728\tmuch:0.0722221782409795\tbe:0.06946579956495734\tin:0.05676421812607143\tof:0.056346575267564605\tno:0.050297591632922634\tfor:0.04770740666486885\tand:0.042301521953508336\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"no:0.5817132866507116\tNo:0.12278108858649557\ta:0.055625185514670834\tI:0.05206992985975628\tthe:0.04102169264129236\tthat:0.03729559691583852\tlittle:0.035427170862634944\tof:0.035280432086444095\tand:0.028785616882155682\t:0.01\n",
"to:0.47356661733041705\tand:0.10381513348402882\twho:0.08200929658014247\tthey:0.06617359057003391\tnot:0.06530951066718498\tI:0.053109323900338026\twill:0.051020184523258356\tof:0.04841603264297838\twe:0.046580310301618036\t:0.01\n",
"of:0.27180982581551005\tthe:0.17805119635661038\tto:0.1307756043208467\tand:0.10323660692677077\tin:0.09588271044631401\this:0.062016229825061296\tfor:0.05747827036123852\tbe:0.04549082310543441\ta:0.04525873284221398\t:0.01\n",
"the:0.2423620207365299\tof:0.20536500222371457\tand:0.166871077045992\tin:0.1176496937967874\ta:0.06877339806465797\twas:0.060401645356168765\tis:0.04771002123545104\tare:0.04130335500381535\tbe:0.039563786536882965\t:0.01\n",
"is:0.34728144642422654\twas:0.22135416609544362\tare:0.17684988516418448\twere:0.0476961756910253\thas:0.04504772202324296\thad:0.04274206026741562\tIs:0.04076161162664779\thave:0.0387943712597698\twill:0.02947256144804401\t:0.01\n",
"is:0.16281058362234455\tmore:0.1481658933664183\twas:0.14237080831081816\tbe:0.1351979535549796\tnot:0.10175883654553174\tbeen:0.09236350028255258\tand:0.08754041019547769\tare:0.0610356325322297\tof:0.058756381589647674\t:0.01\n",
"of:0.38110661708432514\tto:0.16284385187390196\tin:0.11961886176805973\ton:0.11367257252871664\tand:0.06014203447242946\tfrom:0.04554146325776317\tby:0.040287692806110345\tfor:0.033434352407785244\tIn:0.033352553800908305\t:0.01\n",
"the:0.3101469464245839\tand:0.18139257296176556\tof:0.1189750832204775\tin:0.09177950457907187\tto:0.06476035881673946\tfor:0.06265243913967722\tthat:0.06163497939193545\tor:0.05030597233991142\tbe-:0.04835214312583766\t:0.01\n",
"of:0.2871610723989281\tthe:0.1552349570769654\tin:0.1482432789362769\tto:0.13698831365503045\tand:0.09328548315742041\ta:0.05354167420270073\tor:0.039868711758431506\tIn:0.039706545511285614\ton:0.03596996330296091\t:0.01\n",
"an:0.38540243077584785\tthe:0.22308678745516047\tmost:0.12870315565645582\ta:0.07928114847221078\tand:0.061786370393240024\tmore:0.034596068295375135\tin:0.030843251952960223\tThe:0.02485847175342985\tvery:0.021442315245319886\t:0.01\n",
"dry:0.22066756789715933\tthe:0.2125698584886431\tof:0.18012089373258622\ta:0.12119213240458433\this:0.06601311228043677\tin:0.06523712660890661\ttheir:0.05914287185669559\tother:0.0349386820387865\tour:0.030117754692201505\t:0.01\n",
"out:0.1874183949937565\tpart:0.16702825622267764\tone:0.14375959401574873\tday:0.1417681462472316\tside:0.09311823736143529\tsome:0.08512690924426079\tall:0.06449763130486448\tand:0.05786824830336453\tstate:0.04941458230666053\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"a:0.6699737163812268\tthe:0.11506553635264989\tA:0.053089895032129075\tvery:0.04269183445575079\tof:0.027950349296814118\tand:0.02323266255199018\tThe:0.022584092015032788\tbut:0.018493044535447773\twith:0.016918869378958628\t:0.01\n",
"said:0.8220979587403581\tthe:0.04757325153825555\tof:0.04177273290188201\tcertain:0.031561603601349304\tin:0.016623384818401254\tthis:0.011454481831088662\tat:0.007621544126432161\tto:0.006567310020571132\ton:0.004727732421661956\t:0.01\n",
"of:0.35669583024144913\tthe:0.2900966160838292\tand:0.09369924216194739\tin:0.07564677605032157\tby:0.06013294132294612\tto:0.040918474368047075\tfor:0.031036091205587285\tat:0.022029465472289716\tIn:0.01974456309358269\t:0.01\n",
"thence:0.42673303023108966\tthe:0.09566452933319249\t.:0.09413534161104951\tof:0.08811550505279138\tbears:0.0844140908927243\tand:0.0735969155504519\t<s>:0.045256579122001504\tJ:0.04190130048303029\tto:0.04018270772366889\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"well:0.18763885440258532\tknown:0.1848432953380303\tsuch:0.1312109444336379\tand:0.11650300559404793\tfar:0.10672026401295964\tsoon:0.07431929105806052\tis:0.06769501413550778\tjust:0.06709023500275701\twas:0.053979096022413534\t:0.01\n",
"the:0.7564793472981339\tThe:0.06469145454769584\ta:0.05806362330321695\ttho:0.03106692995302162\tin:0.026556309215002988\tthis:0.016758938612795083\tIn:0.013363143355271936\tof:0.012868981307516823\ttbe:0.010151272407344909\t:0.01\n",
"the:0.3789030703001323\ta:0.19249484398105168\tand:0.1527448184303809\tof:0.07142543235759348\tThe:0.05733681410250451\tthat:0.04724300205651896\tbe:0.03253720278873311\tin:0.030286240120107277\twhich:0.02702857586297781\t:0.01\n",
"the:0.2838857055771471\tthis:0.2349846732164492\ta:0.20423311541600966\tin:0.09708962112542041\tany:0.051562219653214905\tsome:0.03987861352919692\tsame:0.03640655019155291\tpresent:0.022448354842442394\tIn:0.01951114644856643\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"chs.:0.3942372776637926\tft.:0.12377449898602048\tand:0.10452842949606159\tright:0.06800341364806839\twent:0.06526622057683445\tas:0.06277876991272426\torder:0.0607809491223373\thim:0.056870314733267716\tmade:0.05376012586089331\t:0.01\n",
"the:0.28593989520701674\ta:0.18795530518036307\ttwo:0.16529614784481478\tand:0.10170017842765455\tthree:0.07944158053084127\tsome:0.04818857935368683\tfew:0.04782367356874648\tmany:0.037309365414268394\tseveral:0.0363452744726078\t:0.01\n",
"line:0.14392069226417994\tcity:0.12372474398769145\tplace:0.11775509487694125\tnumber:0.11666815670595587\tdeed:0.10712052330710055\tday:0.10439263418569003\tact:0.10255502509032151\tout:0.08960272339897567\tamount:0.08426040618314368\t:0.01\n",
"the:0.23736439932178482\tof:0.23471925179561048\tand:0.1453647208633037\tin:0.1041487452859588\tto:0.06408614710828532\tor:0.05838233973258711\tfor:0.05030931054573643\tbe:0.049216832452945\tas:0.046408252893788415\t:0.01\n",
"the:0.30435484729317325\tand:0.16087288678576517\ta:0.1418582616862208\tof:0.08882793193360565\tbe:0.07875794888766853\tto:0.06043262474236049\tare:0.05402485450545494\tor:0.0508738374591085\twas:0.04999680670664287\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"to:0.3696572389493366\tand:0.26866118931829713\tnot:0.07560299929882229\tof:0.07094232648492062\tthe:0.05855232392616215\tin:0.04593144099819611\tor:0.03555130734646787\twho:0.033151344501163374\twill:0.03194982917663375\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"<s>:0.31376789466731847\tit.:0.2168187173047352\tthem.:0.11238381485606802\thim.:0.08223802294243629\tcountry.:0.06655546381284984\t.:0.05103801858919702\tagain.:0.050728380134704786\ttime.:0.04873375685115161\tlife.:0.04773593084153874\t:0.01\n",
"the:0.39838599078751774\ta:0.27348065726130477\tof:0.09781050246059773\tand:0.07508237988181016\tin:0.04451260669118604\tby:0.025758726025302273\tThe:0.0252575684888981\tthis:0.024919376780042825\tany:0.024792191623340388\t:0.01\n",
"the:0.36091910928618237\tdegrees:0.21644925773159504\tminutes:0.1574560654875296\tthence:0.09752292151541556\tand:0.06568044463994949\ttho:0.024310645044839093\ton:0.023439481619416478\tThe:0.022263939818790473\tdegrees,:0.021958134856281973\t:0.01\n",
"of:0.22910150922766157\tin:0.11539276438983914\tas:0.11127934553323833\tis:0.1093065249044014\tto:0.10099004487606558\twith:0.08929933663062477\tby:0.08343707285879862\tand:0.07635553566197055\twas:0.07483786591740003\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"able:0.17588348406362414\tand:0.16255946954366218\tright:0.11747749595089761\torder:0.10069000419542434\ttime:0.09754566194031722\tnecessary:0.08943277277153108\tenough:0.08685369994579874\thim:0.0827062312101734\tdesire:0.07685118037857128\t:0.01\n",
"and:0.28081826524842834\trecorded:0.11992459715138465\tis:0.11459601146648143\tthat:0.10719611749566711\twas:0.10127129399640517\tare:0.086604104023806\tdistributed:0.0680936502147143\tbut:0.05624580094236254\tdivided:0.05525015946075051\t:0.01\n",
"be:0.17042970680876798\tand:0.15444650924990164\twas:0.12325441428642701\tare:0.11964092568460094\tmore:0.10794727410674038\tis:0.10418816279261772\tbeen:0.07367700959488037\twere:0.06935321740357893\tcare-:0.06706278007248495\t:0.01\n",
"the:0.3640291833555119\tof:0.16259551794771576\ta:0.1303200964834337\tand:0.07502591001958044\tThe:0.0680429141273284\tin:0.0625884531306343\tto:0.0592165702963284\tat:0.037969772465954704\ton:0.030211582173512348\t:0.01\n",
"the:0.6996802983165502\tThe:0.08115601134087805\ttho:0.05593558851491374\tand:0.03271577231899947\ta:0.02949698047761759\tmiles:0.02637315195047088\tminutes:0.025456006905353944\ttbe:0.019858791643260047\tfeet:0.019327398531956023\t:0.01\n",
"of:0.4061718721844183\tto:0.12549127481807346\tthat:0.11646835314454528\tby:0.09842653733529988\tand:0.09807313009608123\twith:0.04982855422007516\tfor:0.033121613173140343\tas:0.03243387979934149\tall:0.02998478522902498\t:0.01\n",
"the:0.21134969382374078\ta:0.1906450612111245\tto:0.13606040816919496\tand:0.12821509046116367\tof:0.10073001528242634\tan:0.06198821029533924\twas:0.0611330432172598\tbe:0.05065007646328503\tis:0.04922840107646583\t:0.01\n",
"the:0.7109846599589901\tThe:0.08055762280870908\ta:0.052716093051091366\tand:0.048052018756734705\ttho:0.04757253272371547\ttbe:0.022618975854622227\t<s>:0.011810922582904008\tsaid:0.008581777736749088\tcom-:0.0071053965264839545\t:0.01\n",
"to:0.19515470807612817\tof:0.18677480857842452\twith:0.1757329395558474\tin:0.15811212861096885\tand:0.07793180622230356\ton:0.05395657301674474\tfor:0.0489488235383077\tby:0.0481814074182918\tfrom:0.045206804982983316\t:0.01\n",
"hundred:0.43590281498327577\tone:0.2926627162482035\tup:0.04534714729811838\thour:0.04146201255991985\tweek:0.037577418618354085\tyear:0.03485476386293158\tstreet:0.03463247528525545\tdred:0.03380908654767521\ttwo:0.03375156459626607\t:0.01\n",
"the:0.2906711854665342\tMiss:0.2116913118958637\tand:0.1314886788876273\tof:0.0920628588483469\t.:0.05780630239851659\tMrs.:0.05503736150403342\ta:0.05305178839478895\tA:0.05040570662058061\tThe:0.04778480598370823\t:0.01\n",
"a:0.242118166178781\tof:0.16153256938044344\tthe:0.1467256176842311\tand:0.10370339755311829\tto:0.10055123592711973\tat:0.09706450697055294\tfor:0.05359397756361465\tin:0.05002206545375685\tan:0.034688463288382015\t:0.01\n",
"the:0.39216243265314965\tthat:0.1109155346503107\ta:0.10671894969807015\tof:0.08518107811810421\tand:0.07934992886335768\tThe:0.06059806452537567\tno:0.05570588203995953\tthis:0.05310185335867003\ttheir:0.046266276093002386\t:0.01\n",
"a:0.570148749817498\tthe:0.18108363573355177\tand:0.05892529075216442\this:0.03556898849173704\tof:0.03237187662012559\tto:0.030924660298904325\tvery:0.02864397413509794\ther:0.026693143190566187\tfor:0.025639680960354745\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"was:0.3229105441401729\tbe:0.1238023460614784\tand:0.10417124648191535\tis:0.09648627270058184\twere:0.0872171866779912\the:0.07169166527685762\tare:0.0708726178145074\tbeen:0.06683153115529607\tnot:0.04601658969119928\t:0.01\n",
"number:0.1473148339810975\tout:0.12703118974521294\tpurpose:0.12677563814600423\tmatter:0.11431934195291443\tall:0.09851661547160984\tkind:0.09624764772900944\tamount:0.09518672248231409\tmeans:0.0943772792212674\tone:0.09023073127057027\t:0.01\n",
"laid:0.22684480717158742\twent:0.1262328677980117\tsat:0.11943551225478402\tput:0.10244026471935938\tcame:0.08844676195125259\tset:0.08766989230157002\tbrought:0.08576132766273832\tgo:0.08466206371919724\tbroken:0.06850650242149922\t:0.01\n",
"is:0.3070758337131498\tbe:0.12680056194369532\the:0.12284426449293799\twas:0.11992689402551694\tare:0.08925733211174287\tI:0.07282585805894998\tand:0.06943558764357306\tIs:0.047961965445458526\tthey:0.03387170256497548\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"and:0.33651200696739575\tto:0.18561280114709738\tof:0.08386717831522203\twhich:0.08237112197637284\tre-:0.06907863865464145\tthat:0.066126456572214\tfor:0.05715061258578536\tor:0.05589309360209148\tnot:0.053388090179179656\t:0.01\n",
"he:0.3112802707324163\tand:0.1478980952344679\tit:0.14460571994992752\tIt:0.09373088923662087\twho:0.07116249335955221\tshe:0.06147515170925698\tthat:0.058473489282468136\tHe:0.056036750570492046\twhich:0.04533713992479793\t:0.01\n",
"as:0.29039256467217145\tis:0.19259057369184815\tand:0.0927689063704047\ta:0.0883761248647888\tare:0.08486668647056768\twas:0.0822828991479459\tthe:0.07004182749076959\tvery:0.04780551658861196\tbe:0.04087490070289164\t:0.01\n",
"him:0.1280381431911991\table:0.12062077502396214\thave:0.1139229856397097\tand:0.11171946667894975\twant:0.10974763024526385\tallowed:0.10465437710389246\tthem:0.10128443148019256\tis:0.10013200114709248\thad:0.09988018948973797\t:0.01\n",
"that:0.1894222469649546\twhen:0.1653434752950601\tand:0.15754267920448228\twhich:0.14237438938666794\tas:0.11564696886197173\tto:0.08264676820405699\tif:0.057680809529657054\tsaid:0.040304828497928546\twhere:0.0390378340552209\t:0.01\n",
"and:0.27083363284160117\ton:0.15705993313919958\twait:0.0989729379515444\tto:0.09725794194145766\tyears:0.09533925194700119\tnot:0.09451384880635948\tof:0.06385559833997205\thim:0.05619704129272112\tfor:0.05596981374014329\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.46914359793045335\ta:0.26894705473671987\tof:0.051031173870796864\tthis:0.045241628770824306\tand:0.03869510421985405\this:0.03508437712084722\tThe:0.034568898720189076\ttho:0.02673062209985488\tin:0.020557542530460222\t:0.01\n",
"and:0.26139820382508294\tof:0.22225991787188024\tthat:0.13243025726984795\tto:0.10501194191860784\tin:0.09065542966202494\tfor:0.06654671185462248\tby:0.04499198029464509\twith:0.03798104884567553\ton:0.02872450845761293\t:0.01\n",
"the:0.47309773989312304\tof:0.11867245260009522\tand:0.08894047159324309\ta:0.07102187609660218\tin:0.05536588797590416\ttheir:0.051162602767599485\tThe:0.047063057134716486\tour:0.04244735661665632\ttho:0.04222855532206008\t:0.01\n",
"the:0.59274661269992\ta:0.12629125513516737\tThe:0.08731039717030788\tof:0.05448007951439815\ttho:0.032801208363449436\tto:0.03048683374658335\tin:0.02324014929604417\tour:0.022323168532181782\this:0.020320295541947878\t:0.01\n",
"of:0.5799606433591986\tin:0.14726538281313323\tto:0.08053617321961364\tby:0.04633458265410756\tfor:0.03747262210945751\tthat:0.02952432958971118\tand:0.023397503682936777\tIn:0.02284405960632139\tfrom:0.02266470296551999\t:0.01\n",
"the:0.28068516878703864\tto:0.20366368645824773\tand:0.12304570686182346\ta:0.11914558677884791\tof:0.07098211997756945\twas:0.06541326434399987\tbe:0.059400436941387275\tis:0.034304170017655906\tnot:0.03335985983342965\t:0.01\n",
"was:0.25909534104238213\tand:0.22117906408763893\tday:0.09453783611278077\tis:0.08499986889934896\tuntil:0.08458345789961384\tdied:0.06494553806217616\tarrived:0.06304505901481859\tbe:0.05920792891778489\theld:0.05840590596345558\t:0.01\n",
"men:0.14105611981978503\t;:0.12764259028458136\tgood:0.12379646155565809\thim:0.11993873432015224\tin:0.102011335037799\tit:0.10198896491436167\tman:0.09563138465363269\tone:0.09314946962290566\t<s>:0.08478493979112418\t:0.01\n",
"the:0.3247145973921336\tof:0.1912783922217495\tto:0.12657663807666622\tand:0.09633872751529743\ta:0.09623368406197352\tin:0.07246051313932513\tat:0.03990566458342589\tfor:0.021408717282748693\ttho:0.021083065726680054\t:0.01\n",
"and:0.3638110934457038\tbe:0.10192953289393797\tor:0.10094287746020958\ttime:0.08710936409500543\tthat:0.07928091925352229\tis:0.06843910740957743\tthem:0.06348359486337986\tare:0.06257270267543859\tit:0.06243080790322499\t:0.01\n",
"the:0.549701795445409\tof:0.08544589121309792\tThe:0.08046853450117475\tand:0.07425434428431453\tor:0.05476978356115242\ta:0.04997941214178482\tin:0.03659518698938239\ttho:0.029841333772202164\tthese:0.028943718091481982\t:0.01\n",
"hundred:0.3209630864435665\tState:0.12200403790008493\tstate:0.09040282038797934\tcity:0.08637043644310072\tStates:0.08493038849346853\tstreet:0.08185250036145106\tdollars:0.07108240428620576\tNorth:0.06784200292542446\tHundred:0.06455232275871874\t:0.01\n",
"of:0.32817121921121817\tin:0.1755865897106243\tto:0.11067875162657738\ton:0.10969057067097128\tfor:0.06521791297106969\tfrom:0.058814420386784194\tand:0.04836452400431307\tby:0.048028853205743675\twith:0.0454471582126982\t:0.01\n",
"and:0.2653406391712124\ta:0.1173881671452843\tthe:0.11354438115245949\tof:0.1129260021388945\tor:0.09589915843520552\tto:0.09246006607534042\tbe:0.08743989448878033\tnot:0.05532128163689645\tare:0.04968040975592674\t:0.01\n",
"the:0.3294396766798859\tto:0.17098038668277318\ta:0.16951296263688034\tand:0.13278512793944275\tof:0.056731183548508785\this:0.046017182011514106\tThe:0.03623310236050248\tI:0.02600042427641723\tby:0.02229995386407522\t:0.01\n",
".:0.159160479533277\t-:0.15435470642707458\tand:0.12406037518347418\t1:0.12386455527931411\tof:0.11721596823973629\tetc.:0.10065647872717806\tthe:0.07770674352550867\t,000:0.06720287324795365\tM:0.06577781983648345\t:0.01\n",
"the:0.2494656877992685\tand:0.20313040440671778\tan:0.1178210990419705\ta:0.11371515166753905\tof:0.08335548779502233\twas:0.06861685008466034\tto:0.05887994782501563\this:0.050546761088051714\tin:0.044468610291754154\t:0.01\n",
"the:0.3710687122899133\tan:0.17090505394507158\tand:0.11120004021078954\ta:0.0916113206531643\tof:0.07519620476158091\tThe:0.06584775599687352\ttheir:0.03945412585836902\tits:0.03545847796444958\this:0.029258308319788165\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"it:0.1988003330366563\tthey:0.1863091402079606\the:0.1790745238195991\twho:0.09768280386785362\twe:0.07739547203894766\tI:0.07253469148948716\tIt:0.06492112988831951\tHe:0.0579015176032571\tand:0.055380388047918755\t:0.01\n",
"of:0.18889621255652908\tin:0.17344029139987502\tat:0.14066339779899656\tfor:0.11990367273711422\tduring:0.11076958109425589\tto:0.07979246603912211\tIn:0.062044683601134\ton:0.06190611738051835\tand:0.052583577392454804\t:0.01\n",
"went:0.17428654393371398\tand:0.15858629753407516\tup:0.11751150117237856\taccording:0.11440138701691867\tcame:0.09404576225427358\tback:0.08985440113885786\tgo:0.08513887743917085\thim:0.08182577514932375\tdown:0.07434945436128743\t:0.01\n",
"the:0.7927507074806887\tThe:0.049369858692244785\ttho:0.038820779881418827\ta:0.02321611670080524\tin:0.023111435197902493\tand:0.022908241222439264\ttbe:0.01607613735569575\tof:0.01299062519442644\tsaid:0.010756098274378536\t:0.01\n",
"the:0.3765855700859001\tof:0.16099429184099226\tand:0.13606697363344764\tThe:0.08520905700656935\tMr.:0.06526544909761484\ta:0.05125415038445086\tthat:0.051169286412974205\tto:0.03376314541728713\tor:0.029692076120763737\t:0.01\n",
"to:0.22733181714496684\tof:0.14169992946939702\tthis:0.12408020885785297\tthe:0.09964306131204458\tor:0.098832580458198\tsame:0.09680294265923636\tand:0.08110449899320576\twithout:0.06220003460419636\tthat:0.05830492650090206\t:0.01\n",
"the:0.4537606100955801\ta:0.24985669631793442\tThe:0.06184318651130421\ttwo:0.051425139979007495\tof:0.04948843322586029\tand:0.033791214794186744\tgold:0.03368295340562918\ttho:0.031845670790635466\tthis:0.024306094879862173\t:0.01\n",
"and:0.31272371936252696\tthat:0.11921912925090902\twas:0.10826785512344439\tmade:0.08867020288276366\tis:0.08441813412767785\tas:0.07363540620555147\tit:0.07061351793988456\tup:0.06868550907362354\tbut:0.06376652603361857\t:0.01\n",
"be:0.23450243100377055\twas:0.1778600120315085\tbeen:0.1337103401166053\tand:0.11683190681060247\thave:0.08107211667740191\tis:0.06863394088751495\thad:0.0647799374242216\twere:0.05759694372607068\thas:0.05501237132230398\t:0.01\n",
"and:0.4561625113155266\tis:0.13752673776561872\tare:0.08698525717903711\tbe:0.07216575474567022\twas:0.06918355405452797\tnot:0.045215197753483975\tan:0.04162562896415765\tthe:0.041053670575508495\tmost:0.040081687646469376\t:0.01\n",
"time:0.2156712280723546\tup:0.13034134745533918\tappear:0.10839793299165106\thim:0.10305809106688085\tgood:0.09438128986450225\tout:0.08900385150595069\tmade:0.08435659592998934\tright:0.08311592265715735\tlife:0.08167374045617465\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"recorded:0.8318212743689049\tcorded:0.04699290770836133\tand:0.03659841649188753\tMonday:0.025384112409714842\theld:0.010321825732392605\tsituated:0.010304705790171268\ton:0.010143755419197388\tfiled:0.009688433475922686\tfeet:0.008744568603447574\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"of:0.24951270671144163\tabout:0.14859207041247174\tand:0.1293621870868215\tthe:0.11652615213374128\tfor:0.10106938383416184\tthan:0.08199783982933861\tor:0.07106768070469092\tto:0.04937072224258506\tin:0.04250125704474733\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"the:0.3750384762589013\tand:0.15576776943066303\tof:0.11608042505907364\tMr.:0.08439344936867432\tThe:0.0792024172348829\ta:0.061633308384532494\this:0.0442242362747654\tI:0.03748669960758615\tthat:0.03617321838092082\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"as:0.2865333700653575\tbe:0.15895288724650528\tand:0.13040433196336643\tis:0.12357118159273188\tare:0.08444505718635373\twas:0.07949191631343354\tthat:0.04293680952994027\tbeen:0.042476635641236805\thas:0.04118781046107457\t:0.01\n",
"turned:0.23801667169007212\tup:0.12073647001091865\ttaken:0.09619455092051403\tstep:0.0934404542353054\tdown:0.09263401708376783\tit:0.09224199888441366\tcame:0.0905162163453422\thim:0.0832478805552241\tmade:0.08297174027444182\t:0.01\n",
"a:0.6465017681141823\tthe:0.11559881410220205\tany:0.04683327363530302\tthis:0.03930450727570706\tand:0.03885232228567223\tno:0.034819107442619575\tevery:0.02478759574723645\tthat:0.022291101832626906\tA:0.02101150956445036\t:0.01\n",
"and:0.20574901464648052\tbe:0.1782627871071889\twas:0.1377230897430883\tto:0.08832819096533921\tbeen:0.08618103965957719\tis:0.0810041601548845\tof:0.0796758931950268\the:0.07002166678811851\twere:0.06305415774029603\t:0.01\n",
"the:0.20052658341736948\ta:0.16171096045827493\tof:0.15541880833340935\this:0.13324982016503406\tand:0.09008686348715894\tmy:0.08903605504930727\tin:0.07542037864401324\tthis:0.046021319696234755\tthat:0.038529210749197844\t:0.01\n",
"those:0.3561923530250654\tmen:0.21461376165823368\tand:0.10708776068172537\tpeople:0.07084034634055972\tman:0.06965675545576237\tThose:0.054855968362553804\tall:0.04217368885549944\tpersons:0.03947323920853961\twomen:0.03510612641206072\t:0.01\n",
"provided:0.334729295930078\tpaid:0.1404808622526522\tand:0.09929137295785778\tcared:0.08837330616455376\tvoted:0.0880894671440104\taccounted:0.08219584818458281\tcalled:0.057785416714346394\tvote:0.0532044040738542\tprayed:0.04585002657806464\t:0.01\n",
"to:0.3581315756575541\ta:0.28486300738346804\tthe:0.08419932501786676\twould:0.05442522075428868\twill:0.0538223085551246\tnot:0.05245491430444998\tand:0.04220042534645163\tthis:0.035113553824356644\tI:0.024789669156439584\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"to:0.647794323499749\twill:0.09758969115157311\twould:0.055641081808699026\tand:0.04037066894855605\tmay:0.03890072563474835\tcan:0.03173307678309076\tshall:0.02926801267066782\tcould:0.024871189641550835\tnot:0.023831229861365086\t:0.01\n",
"of:0.28489475130342257\tand:0.15464786456845328\tto:0.1462228362509504\tat:0.11524761033992115\tabout:0.07622316340447587\teast:0.06257836513403706\tlot:0.05850952429787983\trange:0.048194565670361414\tTownship:0.043481319030498615\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.708512179837213\tThe:0.11839808640257402\ta:0.06082577191098875\ttho:0.029380983373456886\tand:0.021299407584512094\tan:0.018887859657449848\tthis:0.012144789672137576\tre-:0.011469980095361584\ttbe:0.00908094146630624\t:0.01\n",
"District:0.3023933778370661\tthe:0.2559447499283246\tState's:0.12360083694370301\tof:0.10208572966026604\tat:0.05277312776453713\tand:0.04600353641820888\tan:0.04269836848832894\tMr.:0.03347373670527734\tAssistant:0.031026536254288046\t:0.01\n",
"the:0.17334191883992503\tand:0.16457793437453397\tbaking:0.1572662024919183\tas:0.14044395263579001\tof:0.08726646922913259\tthat:0.08187167163432231\ta:0.07534933527838317\tin:0.05795507708549504\tor:0.05192743843049952\t:0.01\n",
"of:0.38111910851681263\tand:0.12368643475167425\tto:0.10508181359023197\tthat:0.10141256206112283\tby:0.06344537461679338\ton:0.05898250021444946\tin:0.05822072483084395\tas:0.04919194988587791\tfor:0.04885953153219358\t:0.01\n",
"will:0.24693648038004848\tcould:0.18983163955391383\twould:0.1439542663030325\tshould:0.13438534735032978\tshall:0.08752610598815738\tmay:0.07499240936629364\tcan:0.047443879688021315\tmust:0.0346179084233615\tneed:0.016788272230254815\tdid:0.013523690716586703\t:0.01\n",
"was:0.22318717626046866\tbeen:0.19502100840005804\tare:0.11085184790427358\tbe:0.11055147633616055\twere:0.10733320063979519\tis:0.08675353192094608\tand:0.05648901496746721\tthose:0.05006421852105437\tbusily:0.049748525049776365\t:0.01\n",
"30:0.14258561147308893\t50:0.12084155222101362\t5:0.11811271103248047\t20:0.11289669481301252\t4:0.11237594400596172\t6:0.10151207091660547\t100:0.09756954227894955\thundred:0.09366796561950139\teight:0.09043790763938647\t:0.01\n",
"be:0.20318074163432065\twas:0.1810029018914728\tand:0.15446129146824508\tbeen:0.11006060645686003\tis:0.10368971627447866\tare:0.0642469846360231\twere:0.0636301636417311\tthe:0.055049235698359754\the:0.054678358298508596\t:0.01\n",
"of:0.5011017884550669\tto:0.11734985075407606\tin:0.07637536041568949\tthat:0.06786784281520247\tby:0.06382937689697342\tand:0.05349113652372295\tfor:0.04095231229836013\tfrom:0.03981477943137216\ton:0.029217552409536426\t:0.01\n",
"of:0.3091976638342204\tthe:0.2391103402346752\tand:0.13381140773686948\tto:0.11048312727110192\tin:0.046959948199223826\ta:0.042162053767383946\ton:0.0379696425071135\tThe:0.03534540331691183\tbe:0.034960413132499826\t:0.01\n",
"was:0.2595263826040138\tbe:0.18493387224443197\tbeen:0.16054994832536215\tis:0.11394391298007266\tand:0.06475664615793199\twere:0.0593874874010799\tit:0.053403068717845247\tare:0.04997370706570195\tnot:0.04352497450356024\t:0.01\n",
"out:0.17916574669678154\tone:0.15213856269589193\tall:0.11395927064040333\tpart:0.11211456839666226\tthat:0.09336779748913557\tuse:0.09273304829319808\tsome:0.09158451792852725\tcharge:0.08142885170618684\ttion:0.07350763615321314\t:0.01\n",
"the:0.3404474991228684\tof:0.14206453703242095\twithin:0.12851386320079786\tand:0.10932933822784544\tin:0.06585038513576688\ta:0.060317337281655975\tfor:0.05110881148582571\tabout:0.0466130963291516\tto:0.04575513218366725\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.2506285218941981\tin:0.1984291851015097\ta:0.12066689669646835\tof:0.09993283246618107\this:0.07050356028061577\tfor:0.06822519616293136\tthis:0.06506278563269068\ttheir:0.06090135871360197\tto:0.05564966305180312\t:0.01\n",
"on:0.3278301167743909\tof:0.29061650296211666\tto:0.10591084099618339\tin:0.09755807035839408\tfrom:0.06346523711995171\tat:0.04043139089410193\tupon:0.024743048616454866\tfor:0.02149223367026887\tIn:0.01795255860813749\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.20574901464648052\tbe:0.1782627871071889\twas:0.1377230897430883\tto:0.08832819096533921\tbeen:0.08618103965957719\tis:0.0810041601548845\tof:0.0796758931950268\the:0.07002166678811851\twere:0.06305415774029603\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"and:0.5035137010846549\tas:0.08221161101562535\twas:0.07071200524409423\tthat:0.06964974955961917\tare:0.06771921842396147\tis:0.06519633968080654\tof:0.04475437682449955\tbut:0.04357622438707839\tthe:0.0426667737796605\t:0.01\n",
"the:0.24803210933840383\tto:0.1723486997651513\tand:0.15060665922061034\tof:0.10057783813236668\tbe:0.08558658169076797\ta:0.06671779978262857\tnot:0.06429540982789805\tor:0.05101378575945689\twas:0.0508211164827164\t:0.01\n",
"the:0.5697350786334826\tthis:0.11471475104488735\tthat:0.08503796015726091\tand:0.05807817856578963\tto:0.05234703402621458\ttho:0.03239994383106611\tan:0.026653894334045747\ta:0.025951736835992154\tThe:0.025081422571260746\t:0.01\n",
"he:0.2857269785415107\tand:0.16475505481893626\twas:0.1454242944146352\tbe:0.09165411576485012\tHe:0.08014613995776952\tis:0.06598685375216784\tI:0.05447258854908069\tshe:0.05164872871213801\tbeen:0.05018524548891169\t:0.01\n",
"to:0.7673439922720563\twill:0.04976608187473315\tand:0.03228528849610114\tshall:0.030563875295902397\tnot:0.025005492820423046\tcan:0.023156167303452685\tshould:0.020975500272378586\tcould:0.020454806365319492\tthey:0.020448795299633074\t:0.01\n",
"it:0.19129304205553752\tIt:0.14469751513729098\the:0.1411002946311307\twhich:0.11684196323087204\tI:0.11443416439404464\tand:0.09515343521725625\tHe:0.06955431801222423\tthat:0.06269264879372564\tshe:0.05423261852791807\t:0.01\n",
"of:0.3594188090868819\tthat:0.15410793880811324\tin:0.14542616102229544\tto:0.077378850985377\tand:0.07669804685092663\tby:0.04805097619480157\tIn:0.04744028619263892\ton:0.04221754043407571\tat:0.039261390424889575\t:0.01\n",
"and:0.2623369275738987\trecorded:0.11754747775202591\tup:0.11041879011446987\twas:0.10499986555954885\tthat:0.10141758194294877\tis:0.08964784220088323\tout:0.07713151110042796\tas:0.07141401478964465\tmade:0.05508598896615208\t:0.01\n",
"the:0.5259073859122719\ta:0.14608249718532404\this:0.07759616273076578\tThe:0.054136187911116046\tgreat:0.04244418084996621\tany:0.03944485935634863\tthat:0.03775130089798415\tof:0.03436945987156586\ttho:0.0322679652846573\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.2507850581502001\tand:0.17497574984698866\tin:0.15692023458033044\tthe:0.12384576868664635\tto:0.08469296660941264\tfor:0.06120383684611268\ta:0.051444808982481764\tthat:0.0435231487295692\tbe:0.04260842756825804\t:0.01\n",
"of:0.2286926246929074\tand:0.17146420538991367\tMrs.:0.1484277766812719\tby:0.14325348088915146\tto:0.09431843338718476\tMr.:0.07287774488727268\tsaid:0.059371381755623086\tthe:0.039531442197796696\t.:0.032062910118878366\t:0.01\n",
"the:0.2447609397811796\tand:0.20200444718786137\tof:0.1986975994846867\ta:0.0909893927345677\tto:0.06145431689100224\tin:0.05632114762281005\twas:0.0538703414808706\tthat:0.042194053180521746\tby:0.03970776163650004\t:0.01\n",
"up:0.16875081180676885\thim:0.12762603763523486\tout:0.11205575348382728\tin:0.1026985824204928\tmen:0.10111142720651227\tit,:0.09839318885269674\tman:0.09765260263813874\thim,:0.09157070598141322\tit:0.09014088997491507\t:0.01\n",
"that:0.2789828783150907\tand:0.1624516738149127\tit.:0.13030043535195404\t<s>:0.12335265841082237\tthem.:0.10745805565810809\thim.:0.05370996698013756\tbut:0.04861135412415623\ttime.:0.04358511501384539\tas:0.04154786233097283\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"a:0.47566097047024\tthe:0.14329420039873988\tany:0.1095440065378783\tto:0.06765749409393733\tno:0.05559608186638675\tthis:0.048002086292057225\teither:0.03641670204469465\tevery:0.030698005366839528\tone:0.0231304529292263\t:0.01\n",
"be:0.24740890265055748\tand:0.13400921147415956\twas:0.11936578854950157\thave:0.11814336987276616\the:0.09839714036106535\tbeen:0.09047956682398668\thas:0.07024896152760095\thad:0.05636423831599971\tis:0.055582820424362425\t:0.01\n",
"the:0.24368868982568143\tto:0.17572068347283729\tand:0.17254794254710823\ta:0.12976104652963183\tof:0.11062257288270286\tin:0.05749064395309338\tmore:0.03503161563881523\tbe-:0.0327837243285708\twas:0.032353080821558966\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.2685296113888783\tto:0.16806970749733038\tin:0.1353691794184458\tand:0.10132347367546886\tthat:0.08616987762804099\tfor:0.07714674604593486\tby:0.05622666607873045\twith:0.050507948905724284\tat:0.04665678936144599\t:0.01\n",
"the:0.2956638497848283\tto:0.19575680949457203\ta:0.17473396584157655\tand:0.15199800361416577\tthis:0.051742013560269674\twill:0.04543041038923803\tthat:0.026050428607914237\tThe:0.025657439696351134\tof:0.02296707901108441\t:0.01\n",
"and:0.19182796768879862\tof:0.1856973473169748\tthe:0.16065264767554951\tto:0.09681359470693252\tor:0.09374300527923589\tfor:0.0847289659401121\tat:0.08166697647328516\tthat:0.056734731112844765\twith:0.03813476380626666\t:0.01\n",
"it:0.1487807082994548\t;:0.128412436397072\tone:0.11133462726818796\tand:0.10814024575145868\tdollars:0.1070718724147477\tmore:0.10599185629045169\tis:0.10355249761695076\tI:0.09476430301002654\tman:0.0819514529516499\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"to:0.6883306562867215\twill:0.05922928707602508\tcan:0.05732230677506922\tthey:0.039275810656675264\tcould:0.038759284076947946\tand:0.03133372373462657\tI:0.02781274409809673\twould:0.027744539449797295\twe:0.020191647846040273\t:0.01\n",
"of:0.22184962087662158\tin:0.15520673814302796\tto:0.13966192681481693\tand:0.13338374863137556\tfor:0.11704124564673986\twith:0.09933739769359429\tthat:0.05105976955125527\tbut:0.03627353457850431\tby:0.036186018064064296\t:0.01\n",
"and:0.2729042326810205\tmost:0.18603988877763378\tthe:0.10627241946146988\tvery:0.08371635885870676\tas:0.08210222443058303\tof:0.07255789243359448\tor:0.06861483136760017\tmore:0.06798330626547416\tis:0.04980884572391722\t:0.01\n",
"of:0.3465507174134702\tto:0.17794843366576837\ton:0.13041864661072142\tin:0.1062766599313444\tfrom:0.06420747095835388\tand:0.054231226230892354\tat:0.04491466220148409\tfor:0.035192102237885575\tthat:0.030260080750079705\t:0.01\n",
"made:0.17295908650123606\ttake:0.14477461809886874\tmake:0.1267309868606757\ttook:0.10985375975440086\tput:0.10143447680216158\tgive:0.09391292622724075\ttaken:0.0920634518130242\tpicked:0.07452197373783816\tkeep:0.07374872020455392\t:0.01\n",
"was:0.26381724171837767\tbe:0.23804259648006715\twere:0.12969715200753903\tbeen:0.0934562522726328\tare:0.09054581792672536\tis:0.08610642174257067\tbeing:0.04580693576178651\tand:0.03088844169488416\thave:0.011639140395416655\t:0.01\n",
"three:0.22455891917716886\ttwo:0.2059112915808581\tfour:0.1882227736791595\tfive:0.09857179092094322\tfew:0.08121671316132678\ta:0.05402979467300556\tseveral:0.050830847135087245\tten:0.04460380617057178\tthe:0.04205406350187874\t:0.01\n",
"is:0.26175712891392694\twas:0.21615499282886186\tare:0.13853398436346673\thas:0.08392243398740656\thad:0.08242195738462435\thave:0.07941075852311238\twere:0.05753768888782794\tand:0.03878136688307595\tIs:0.031479688227697256\t:0.01\n",
"and:0.4095199941885613\tAnd:0.2669687280460308\tnot:0.10580578287418133\tas:0.07334252552349774\tis:0.03520578052064482\tthat:0.028598298348649822\tbut:0.02807766121093346\tor:0.024230037992239734\tare:0.01825119129526106\t:0.01\n",
"the:0.3032306031506453\tof:0.17127401876607368\tand:0.15552660694671583\tto:0.08720379603775957\tthat:0.059113297973434474\tMr.:0.057974107594023896\tThe:0.05786491706062363\tin:0.05123265027402201\the:0.0465800021967017\t:0.01\n",
"is:0.21463057144607842\thas:0.17049097472632807\thad:0.1473260489118331\twas:0.12297046173179976\thave:0.1186564068119735\tare:0.09535504869101634\tand:0.05143320163467669\tIs:0.0362809653548973\twere:0.03285632069139675\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"and:0.219484921277503\tof:0.16685013309245258\tthe:0.15228794952877264\tto:0.12877623630682297\ta:0.09173097726308327\tin:0.06108430219237669\tbe:0.060391702149518986\tis:0.0581655338747713\twas:0.05122824431469869\t:0.01\n",
"of:0.38081841005722494\tto:0.1268830001037366\tin:0.11181114361103686\tfor:0.07440589527457388\twith:0.07029602763859272\tby:0.06338754055446709\tand:0.0633432736937915\tthat:0.053726968951963744\ton:0.04532774011461273\t:0.01\n",
"the:0.34086280338812647\tof:0.22093040488122542\tand:0.14086953403042624\tto:0.07661365940134278\ta:0.0680104676241266\tin:0.051012877342832365\tor:0.03226666770178503\tfor:0.030271126034271952\tThe:0.029162459595863208\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"that:0.3523765762592717\tand:0.17111543670373186\twhich:0.09837114489632792\twhen:0.0775789916505438\tto:0.06512478716730889\twill:0.06139938740703173\tif:0.05739648288797535\tas:0.05574882811383207\tbut:0.0508883649139768\t:0.01\n",
"and:0.337291893652781\tso:0.12479811775737729\tsay:0.09731998655540983\tfact:0.08972889028296344\tknow:0.08081272560971962\tsaid:0.07728661770633168\tis:0.06952093330887803\tall:0.06044144952898566\tshow:0.05279938559755335\t:0.01\n",
"to:0.413436742419163\tof:0.23253292239942386\tand:0.10580220488305836\tin:0.0614119648756862\tby:0.04326301254457905\tthe:0.039317468787098665\tfor:0.0372550783448783\ta:0.03039846344612311\tfrom:0.026582142299989463\t:0.01\n",
"and:0.2565459086989765\twas:0.1752962284799224\tbe:0.10807487289499339\twere:0.1059310846406219\tare:0.09990387657912424\tis:0.0941219121789878\tbeen:0.06385875614325433\the:0.04429305828215963\thas:0.04197430210195976\t:0.01\n",
"<s>:0.5911664716768236\t.:0.09254162861311349\tit.:0.07581705834204039\tthem.:0.05818195815929814\tday.:0.037726686386629994\thim.:0.034790603659583\ttime.:0.03473040556580825\tof:0.0340401802064035\tcountry.:0.03100500739029967\t:0.01\n",
"of:0.24750857816986374\tand:0.15672995595837905\tto:0.13699780607228482\tthat:0.0967125048767253\tin:0.09286268064249499\tfor:0.07120307404101178\twith:0.0692164380346218\tall:0.06391453810021504\tis:0.05485442410440344\t:0.01\n",
"the:0.4736562639390388\tand:0.18515907676286975\ta:0.07781981137035485\tin:0.05115738754216693\tThe:0.048530560309079894\tis:0.04117838408062129\twas:0.04093742420978901\tthat:0.03824712824000503\tof:0.03331396354607453\t:0.01\n",
"the:0.3601320972365389\tof:0.31149489658309903\tand:0.058065049267228885\tor:0.051662114615382435\this:0.05061263977280298\ttheir:0.04529280653405917\tby:0.045239407528389446\tin:0.03397439253352305\tno:0.03352659592897608\t:0.01\n",
"he:0.27654972293477703\tand:0.2466595716471066\tbe:0.1215458889251196\tit:0.07365036608505836\twas:0.06501849445890792\tIt:0.05503154445723571\tbeen:0.051058648658589736\tshe:0.05034321653292784\tHe:0.05014254630027712\t:0.01\n",
"him,:0.14167517585296113\thim:0.1401102314321787\ttime:0.12643699345325277\tman:0.11493587305602428\tit,:0.11157700353852774\tup:0.09892484572296203\tthem,:0.08867907655368505\tyears:0.08480333079134647\tmen:0.0828574695990618\t:0.01\n",
";:0.20953252095776806\tit,:0.11451281996419217\thim:0.11252660622910597\tone:0.10399558216214486\tin:0.10038399485273586\tand:0.09216727949281207\t,:0.08702126563998025\tit:0.08638247894281384\tup:0.08347745175844686\t:0.01\n",
"has:0.31684997245331414\thad:0.2337740970190879\thave:0.17428522891194337\twas:0.0789128234136655\the:0.04774451940312656\tI:0.04125815310040586\tand:0.03656210258905968\tis:0.03508781588231447\tthey:0.025525287227082694\t:0.01\n",
"and:0.16863234431022775\tis:0.15904326489999865\thim:0.12087980826471614\twas:0.11373743381895172\table:0.09304926166349499\tought:0.0906734825706846\tenough:0.08950592120393341\tnot:0.07749325265532075\tme:0.07698523061267191\t:0.01\n",
"the:0.29227643787135366\tof:0.17782088749567468\tin:0.14157680581294024\tand:0.10933893853717594\tthat:0.07058603379589196\tsuch:0.05254266446356545\tto:0.05240085009927354\tor:0.04720995348500608\twhich:0.046247428439118325\t:0.01\n",
"it:0.28317097636256594\tIt:0.1933445733650809\twhich:0.11975718942031284\the:0.08582788806916335\tand:0.08528961719502678\tthat:0.0777183143097221\tthere:0.06238640793109829\twho:0.045422113965186965\twhat:0.03708291938184284\t:0.01\n",
"of:0.27015000618634627\tand:0.22212197328063357\tthe:0.1631014879999006\tto:0.06980356019992916\tfor:0.06087486200775469\tor:0.056178112325405205\ta:0.052228889022596835\twith:0.049853531189072264\tis:0.04568757778836142\t:0.01\n",
"one:0.33821170545609774\tsome:0.16364884122950468\tmany:0.09430886169472241\tall:0.09045765748417335\tOne:0.071993659024714\tSome:0.06713734538714679\tany:0.05774522523283729\tpart:0.05411293400777835\tout:0.0523837704830253\t:0.01\n",
"was:0.15757848262119958\t-:0.143338224904374\tof:0.12777558064758227\tbe:0.11810091175494203\tand:0.10962945028047298\tit:0.08888596412119709\tat:0.08583310194015875\t<s>:0.08000364461635753\tthe:0.07885463911371562\t:0.01\n",
"his:0.29076839124609516\tthe:0.19117005758877045\ttheir:0.1581952749381481\tmy:0.10647359437947224\ther:0.07596558862813084\ta:0.04956836665420326\tits:0.04282870503594036\tyour:0.04044180767437344\tof:0.034588213854866046\t:0.01\n",
"you:0.18411398063384457\tI:0.15711790455753252\tand:0.12113612242485382\the:0.11097220042624802\tit:0.10460469725842386\tthey:0.09877087959619307\tthat:0.07487538415537187\twhich:0.07062564841133889\twe:0.06778318253619345\t:0.01\n",
"to:0.40696427588592016\tnot:0.27830131345373466\twould:0.09230208362315033\tor:0.06535716755694916\twill:0.04634948984220899\tand:0.035438221066607344\tnever:0.02875457577856259\tcan:0.018857566180888272\tcould:0.017675306611978688\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.28236627465301084\tthe:0.20723426604969658\tof:0.17114462321901844\tto:0.08349457292475697\tthat:0.06105862745899761\ta:0.04968165985351651\tin:0.047714363716289065\twhich:0.0453777970640012\twill:0.04192781506071274\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"the:0.36445686247264036\tof:0.21458571190008457\tand:0.08739297862071321\tin:0.08733968445594431\tto:0.06657773988743967\tbetween:0.051477334236191295\ta:0.05131501907710683\tfor:0.03570834615978444\ttheir:0.031146323190095335\t:0.01\n",
"the:0.42037928907667765\tof:0.24333237495057738\tand:0.09280925876662857\ta:0.06378091200752233\t.:0.03840497386607096\tThe:0.03700282787132728\tto:0.03670985800402548\tin:0.030272753447894443\tby:0.02730775200927577\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.4966030091437765\tof:0.11813774392390378\tto:0.09996704638889792\tand:0.08032798126003937\ta:0.05312364110601024\ttho:0.047065564886211\tThe:0.034723119252176506\tsaid:0.031802965845284255\tby:0.02824892819370055\t:0.01\n",
"at:0.17820926272808865\tand:0.15141172402694203\tof:0.14712044259252915\tthe:0.1184417229671273\tto:0.10582711021270462\t.:0.09122991260504529\ta:0.07834142388328486\twas:0.06390872257420403\ton:0.055509678410074086\t:0.01\n",
"and:0.26114514591737437\tto:0.23508875431087245\tit:0.07601896413171359\twas:0.07574841705350523\tnot:0.07503230283616254\twould:0.07442293738717605\tof:0.07251973381967071\the:0.06720237678632074\twill:0.05282136775720431\t:0.01\n",
".:0.20764102020984837\tthe:0.13643739150302472\tto:0.12180344587244503\tof:0.11963191594302677\tand:0.11712857169166473\ta:0.08781912561503866\tat:0.08191256511495089\tin:0.06204687218931866\twas:0.05557909186068207\t:0.01\n",
"be:0.19727283114889058\twas:0.16069308017810455\tis:0.1339312642833711\tand:0.10262960745856599\tas:0.09391855124192178\tbeen:0.09295147935364999\tthe:0.08592544865627799\tare:0.0655213010992196\tvery:0.057156436579998464\t:0.01\n",
"the:0.2539508298375765\tto:0.20139293803872135\tand:0.1856933143443605\tof:0.10750803794636477\ta:0.06665279579903632\tI:0.06073389524229928\tit:0.038595838584992874\tas:0.03837814921741682\twill:0.037094200989231725\t:0.01\n",
"the:0.300686210193855\tof:0.21096806493515693\ta:0.1381357933630745\tand:0.10528268922302725\tto:0.060716588630403065\tin:0.0600969003164862\tfor:0.05327594119872277\tThe:0.03243356836614073\tby:0.02840424377313341\t:0.01\n",
"as:0.34055959119226376\tso:0.28202697791173575\tvery:0.12681392413578213\thow:0.05618915284781228\ttoo:0.05154316828188651\ta:0.04104033566557525\tand:0.03785288496706751\tfor:0.031059128144955494\tis:0.022914836852921453\t:0.01\n",
"the:0.819950994509951\ttho:0.038021008097025494\tThe:0.0307866341095479\tof:0.017801975007388077\ta:0.017778322332638933\tthis:0.015864163500474978\tany:0.013805474628449799\tan:0.013542901363839205\ton:0.011502258038336795\tits:0.010946268412347806\t:0.01\n",
"he:0.23121404532058468\tit:0.21516344784232738\tthey:0.13270572375260759\tIt:0.11860374360144835\tI:0.0860627738032671\tthat:0.05422878703492139\twe:0.05210788688105833\twho:0.05089663672489061\tshe:0.04901695503889457\t:0.01\n",
"nothing:0.2402933411331797\tand:0.11036658147609037\t;:0.1043986038339583\thad:0.10342442907178201\tit,:0.10273375166041865\thim,:0.09835388330566382\tanything:0.0866009599333585\tthem,:0.07250798230203968\tof:0.07132046728350899\t:0.01\n",
"the:0.40236319521262653\tof:0.14394991978725635\ta:0.13647744854857902\tin:0.09353397965314626\tand:0.0591924494410861\tto:0.052058196991207346\tThe:0.04764215628028516\ton:0.028001516510207245\tthat:0.02678113757560595\t:0.01\n",
"it:0.2729584026951744\tIt:0.2019268753344965\tthere:0.1721980432468542\twhich:0.089291803261744\tand:0.058196099902667206\tthat:0.056855762504679185\tThere:0.056583628348712764\the:0.052765249277975344\twhat:0.02922413542769638\t:0.01\n",
"of:0.25570693145847484\tin:0.14419123250619176\twith:0.11336512042686664\tto:0.0998574611424579\tfor:0.09407172617169005\tand:0.0897014328056371\tis:0.07422936045027281\tby:0.06228906523600142\twas:0.05658766980240744\t:0.01\n",
"by:0.2264177164504987\tof:0.17838065990960353\tand:0.14166109108731748\tfor:0.13648397714441668\tin:0.13285199701624084\twithout:0.052494040424945106\tIn:0.048047570137574054\twith:0.03711098934245731\tafter:0.03655195848694638\t:0.01\n",
"of:0.5752343176843888\tin:0.14728314967164774\tto:0.07586931738189924\tby:0.06094295978398383\tIn:0.03187140209691087\tfrom:0.02685828138852238\tthat:0.02651800685039899\tfor:0.023111756606175194\tand:0.022310808536072903\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"is:0.20160416001874765\twas:0.17696451598776303\tare:0.12393967465364128\tand:0.10834210345654965\thad:0.1058651300770079\thas:0.09599318465073449\thave:0.06990921364186808\twere:0.06360103413434962\tbut:0.04378098337933831\t:0.01\n",
"he:0.26091872378207337\twhich:0.13446863410472235\twho:0.12649172141707724\tit:0.11499519861261868\tand:0.08757880565112004\tHe:0.08404924819066352\tIt:0.06983020241376814\tthat:0.06922205767100637\tshe:0.04244540815695017\t:0.01\n",
"carry:0.2531501453566949\tthrough-:0.22987000183719142\twith-:0.1450204013714821\tcarrying:0.08293987265271313\tpointed:0.06672683102072541\tand:0.059369703054731424\tsent:0.05515216574947199\tbrought:0.049249105518804445\tcarried:0.04852177343818517\t:0.01\n",
"the:0.3569059852287623\tof:0.2936319599865716\tand:0.10771477743229847\ta:0.054817733478274774\tThe:0.04239160565271605\tby:0.042257202776800847\tto:0.03384417513268536\tin:0.02976560726532276\tfor:0.02867095304656777\t:0.01\n",
"and:0.16051538492039444\table:0.12584552037456037\torder:0.12023274904774982\thim:0.10411986755347347\tis:0.10230358199714916\twas:0.09725639894996213\ttime:0.09647037435760988\thad:0.09226467812513447\tas:0.09099144467396625\t:0.01\n",
"the:0.32008418738129385\tand:0.17999697659894184\tof:0.13415010891784424\tThe:0.07264365021655049\tto:0.07066643261407062\tthat:0.061224115809305237\twhich:0.05810681015997055\ta:0.05008197473387824\tno:0.04304574356814494\t:0.01\n",
"of:0.19966018256143675\tthe:0.184724237332001\tand:0.14147972530634312\tin:0.09727524586452894\tto:0.0929165544128206\tbe:0.08756522378626802\ta:0.08601516565726831\ton:0.05718836141354428\tor:0.04317530366578908\t:0.01\n",
"will:0.22785985335704562\twould:0.20364334475343554\tcan:0.1417115928741944\tmay:0.13349669989261223\tshould:0.0718459736583765\tmust:0.06343894138268621\tand:0.052668782310912564\tnot:0.04794894224385635\tis:0.04738586952688049\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"to:0.2763922595667652\tand:0.25226018336027084\tof:0.1000720868333263\tthe:0.09660432122513139\the:0.08679764754265043\tin:0.07986806106730322\tI:0.03498618953754003\twas:0.03200892321032451\tby:0.03101032765668794\t:0.01\n",
";:0.15723221993441813\tit,:0.13940872336798274\thim,:0.13709604606710518\tup:0.13279376071190765\thim:0.10315382762520608\tthem,:0.1018982895338932\tin:0.07550706439255249\ttime,:0.07211537562953564\there:0.07079469273739895\t:0.01\n",
"the:0.2936034235436952\tof:0.20940467933061374\tand:0.1687306012623634\tto:0.10027028052800423\ta:0.05032669682428698\t<s>:0.0500153006575367\tby:0.04075718948260423\tThe:0.039426744439720086\tMr.:0.03746508393117539\t:0.01\n",
"a:0.16804683529286346\tto:0.16749598381121344\tthe:0.16572905487683098\tand:0.14262883851629296\tof:0.11920531532682038\tin:0.11144887101093487\tthat:0.04656393849707814\tfor:0.03743720823927828\tas:0.03144395442868742\t:0.01\n",
"be:0.2618748786138628\the:0.15739784239807234\twas:0.13102893680441882\tand:0.10087786093053959\tare:0.07555304633784887\tbeen:0.07552967195493825\tis:0.0748348552113116\thave:0.05671304167504444\twere:0.05618986607396321\t:0.01\n",
"and:0.1890264847316306\tto:0.14970543844228837\tthe:0.148390956229159\tof:0.13131763391307757\twas:0.11877739144836959\tbe:0.07853696131994052\tis:0.06935036031488055\tI:0.05802333070900117\tin:0.046871442891652536\t:0.01\n",
"and:0.30010149250053764\the:0.22441692164154586\tHe:0.13781036492803922\twho:0.08957395330574856\tthat:0.05582563765873993\tI:0.053086785113405754\tshe:0.04717397670856321\tthey:0.043079751799484166\tit:0.03893111634393569\t:0.01\n",
"with:0.18310907051446637\tof:0.1792729631058936\tin:0.11971399676896784\tis:0.10314958763886262\tfor:0.09092157091512329\tby:0.08692366964872361\twas:0.07906523490505324\tto:0.07768982010286103\tand:0.07015408640004836\t:0.01\n",
";:0.22559084303002083\tit,:0.1545946589131965\tthem,:0.12346183780082112\tin:0.10843452478653938\thim:0.07845983793789164\tup:0.07624506824521522\tyou:0.07516510365591558\tit:0.07403412068439238\tand:0.07401400494600735\t:0.01\n",
"the:0.30226878663324\ta:0.24232248811544035\tof:0.09967837147152467\tvery:0.07547639515218002\tfeet:0.06817485209702424\tand:0.06464834725225746\tin:0.05057629330130193\ton:0.04903918270868013\tinches:0.037815283268351096\t:0.01\n",
"I:0.2849516073868905\tand:0.12146040122427196\thad:0.11661086587892971\the:0.11268345863928288\thave:0.0937723572529113\thas:0.07830329120912252\tthey:0.0728278846271458\tshe:0.05614565644999106\twill:0.053244477331454175\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"of:0.37430063636365046\tand:0.13915356756721378\tto:0.11902792440466353\tin:0.07363317389630407\twith:0.06694949509614707\tthat:0.06159298460332581\ton:0.05603621937624605\tfor:0.05349762432448863\tby:0.04580837436796073\t:0.01\n",
"the:0.2828283347463955\tof:0.20523097581102706\tto:0.10010986559911798\tand:0.09443061999519109\tin:0.07414695899134839\ta:0.07332383157188074\tbe:0.060195581261116946\this:0.052225565556205014\tat:0.04750826646771732\t:0.01\n",
"and:0.22190246057150972\tI:0.15204668574116934\the:0.13005870033155367\t1:0.10670544817540081\tfeet:0.09801263623304336\tone:0.08475365273918573\tfriends:0.06722974480257615\tman:0.0665030048992256\twell:0.06278766650633556\t:0.01\n",
"the:0.7060717470419241\tto:0.05229355964541321\tof:0.04656424304322071\tall:0.04355582650424124\tThe:0.03877077876055698\ttho:0.027763547855693724\ta:0.027347177583568066\tand:0.025772309310836152\ttheir:0.021860810254545632\t:0.01\n",
"or:0.2788713372507185\tthe:0.2614193600530655\tand:0.09037572593117131\ta:0.08570394791154085\tregard-:0.07624676072924118\tnot:0.07348928201766368\tbe:0.04492450457398689\tno:0.04046859859753298\twith:0.03850048293507914\t:0.01\n",
"the:0.5249887101830047\tto:0.08603631095454892\this:0.07244845653702232\tof:0.06555573349094526\ttheir:0.06308608840409147\tand:0.04997082206509245\ta:0.04511506648933187\tthis:0.04274908134536746\tat:0.040049730530595615\t:0.01\n",
"in:0.4948033982483109\tof:0.15946839167607277\tIn:0.09336310933297405\tto:0.05398342433691264\tfor:0.04951203600234666\tor:0.04189992911491773\tat:0.03543829298563007\tby:0.032143188418405653\tfrom:0.029388229884429577\t:0.01\n",
"is:0.40637022998761824\tare:0.24446089128919027\tand:0.10877155859965287\tIs:0.06863555856617394\twas:0.054834537742027324\tnot:0.038538402478566366\tbut:0.02327996140056215\tam:0.02257561717215822\tI:0.02253324276405072\t:0.01\n",
"hundred:0.38931501146013164\t;:0.09073872491570799\tup:0.084572018357505\tand:0.08332308836398625\t.:0.07398822842565556\ttime:0.06967534054425051\t,:0.06887328330103915\tmen:0.06818295735571368\tout:0.061331347276010174\t:0.01\n",
"to:0.23090650016367734\tor:0.2213485533999857\tand:0.15817835130364993\tnot:0.08565977709869413\tof:0.07757705371130531\tthere:0.05662018253673487\tthe:0.0564554375395424\tnor:0.05269989987556751\tthat:0.050554244370842806\t:0.01\n",
"hundred:0.23435690358138608\twife:0.11125734015339118\tright:0.10888214927012235\tgold:0.1041256970314151\tone:0.09767693598642986\tfeet:0.08785664036517477\tup:0.08562549038221928\tin:0.08137617403030498\tman:0.07884266919955625\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"the:0.22443319974836648\tof:0.17138833819162766\tand:0.16053821376159752\tto:0.14050097146139537\tin:0.08627699625443931\tfor:0.060835378897025\tby:0.05585936115047445\twith:0.04550560623248158\tthat:0.04466193430259274\t:0.01\n",
"and:0.17082046578071827\tput:0.15526386547990995\tas:0.1251933516431479\tof:0.12338248111159618\tto:0.11168370613519756\tfor:0.09576030799939818\tthat:0.08756318744957066\twith:0.06335269927170917\tmake:0.0569799351287521\t:0.01\n",
"the:0.3782414225537488\tof:0.21312479191447145\tto:0.12947834221937074\ta:0.05197100695916896\tand:0.050962147308247996\tthis:0.04707193278816353\tfor:0.04191403565623128\tin:0.04106072874960888\tThe:0.03617559185098832\t:0.01\n",
"of:0.3208797532493477\tat:0.16782944313383097\tand:0.10475762903698578\tto:0.09134021632765202\tthat:0.06991948456308125\tfor:0.06067992884856772\tin:0.059598325969524336\ton:0.05949487752825318\tby:0.05550034134275705\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"of:0.2067718844985638\tin:0.1823911454641321\tas:0.1393196763727765\twith:0.10840578373849191\tand:0.07418524919530228\tto:0.07326377672166455\tis:0.07295629171706505\tby:0.06820203646572356\tfor:0.06450415582628012\t:0.01\n",
"and:0.30729067212790756\twhich:0.16933262121202308\the:0.1229113525869788\tthat:0.09336256140478323\twho:0.06955625076712761\tas:0.06898139944859355\tit:0.06151197593254287\tIt:0.05155908774059322\tHe:0.04549407877945009\t:0.01\n",
"of:0.3675919075992141\tand:0.1406054155332858\tto:0.11878400249372824\tfor:0.07513557593650394\tthat:0.06890901179092043\ton:0.06261899047085076\tin:0.0573334229514658\tby:0.051818709991489624\twith:0.047202963232541306\t:0.01\n",
"of:0.5108022186311897\tto:0.1582864282241455\tin:0.07632157417616069\tthat:0.050662924226223684\twith:0.04404566402742835\tand:0.04271817211897536\tby:0.039042690210995226\tfor:0.03653182059948197\tall:0.03158850778539957\t:0.01\n",
"the:0.21556827477664783\tand:0.13225664083801222\tan:0.1265209272451605\tas:0.116230427553775\ta:0.10915047592012493\tto:0.09632603251117842\tthis:0.07406509108845245\tgood:0.0728797851949736\tgreat:0.04700234487167504\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.40265889773979324\tno:0.12815608667033554\tany:0.10286814142332407\ta:0.092974023987007\tan:0.0848195558300606\this:0.060641706986486535\tevery:0.04358564761301086\tthis:0.038182987001440544\tgood:0.03611295274854164\t:0.01\n",
"to:0.45741422693640243\tthe:0.17106662371850198\tand:0.11372351452239582\ta:0.07858433134569501\twill:0.05684650256165625\tI:0.035422666753123506\tthat:0.026485660934482635\twould:0.02527194322198237\tof:0.025184530005760052\t:0.01\n",
"in:0.32345391807845997\tof:0.2936083763287887\tfrom:0.1223576866237881\tIn:0.09178546212502145\tby:0.03787407729085966\ton:0.034897384251748584\tand:0.03362853257131271\tto:0.02629411385052206\twith:0.026100448879498642\t:0.01\n",
"and:0.3457039234614336\tthat:0.10311999288717827\tmade:0.09565172963210784\tor:0.0878490402049739\tone:0.07308568600394094\tout:0.07300955719005632\tthem:0.07184668420927959\tup:0.07047991917662043\tbut:0.0692534672344091\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"It:0.3684666802234462\tthere:0.1852605976529453\tit:0.11843513162829253\tThere:0.11777388257227411\tThis:0.04942591871229191\twhich:0.045985349501477764\tthat:0.04180952542028888\the:0.03927996615360411\tand:0.023562948135379038\t:0.01\n",
"of:0.2736994393291944\tthe:0.20589443997521542\tand:0.1278522722492943\tto:0.1157530886878417\tin:0.08122587347230173\ta:0.0732541322240005\twith:0.04082339426050398\tfor:0.03676531706429182\tby:0.03473204273735615\t:0.01\n",
"and:0.22004267196329094\tthe:0.20665083533658665\the:0.14388096963920013\twas:0.11043002549032084\tI:0.1097872294754675\thad:0.060474169086296985\tbe:0.055814566578985335\this:0.04891543892724812\tto:0.03400409350260342\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"is:0.2666162808679759\tare:0.17507708765099994\tand:0.16646525195612727\tthe:0.14884628170607003\ta:0.06383494162702366\tbut:0.045765447162477345\tIs:0.04518641083281631\tnot:0.03998436353603611\tI:0.03822393466047341\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"and:0.20402892144254128\tand,:0.20017443490125944\tthat:0.1064836071451236\tbut:0.09975158667771727\tis,:0.0927614024276201\tif,:0.0836021870898553\tThis,:0.08167854678673785\tBut:0.06577084573883114\twhich,:0.05574846779031416\t:0.01\n",
"to:0.2805102542098732\tI:0.25223974280924477\tnot:0.15000754223660615\tWe:0.10080487071818654\twe:0.08780344172023423\tand:0.03933834255733225\tyou:0.03398378343806696\twho:0.023596432965109704\tThey:0.021715589345346113\t:0.01\n",
"day:0.18425702923158127\tcity:0.1558657815633114\tCounty:0.15564486637929423\tCity:0.10944009436110097\tboard:0.0880109956281066\tline:0.08281965174536658\tquarter:0.0728855423802726\tcounty:0.07122360483385431\tDistrict:0.06985243387711222\t:0.01\n",
"it:0.2339971591875504\the:0.22175178669260312\tIt:0.15586992462224092\tHe:0.0874047617692456\tI:0.08731629154714679\tand:0.06787109671217852\tshe:0.05126646256903319\twhich:0.04932803693400334\twho:0.035194479965998136\t:0.01\n",
"have:0.212891329876959\the:0.16921877763608836\thas:0.1348143225580542\thad:0.11501153574430403\tand:0.10840785273418227\tI:0.09935603593482178\tbe:0.05829886088185184\tHe:0.04690484751272787\twho:0.045096437121010614\t:0.01\n",
"hundred:0.5983632432161703\t3:0.05866925224644741\tdred:0.054122552012619105\tHundred:0.050768987818614594\t2:0.05027997273827701\t7:0.04950692242343482\tnorth:0.04401015824127268\t6:0.04236880056961157\t4:0.04191011073355261\t:0.01\n",
"is:0.1850298535195497\tas:0.14040466315770533\tand:0.12751083927252047\twas:0.10893717982355304\tnot:0.09471718953743663\tenough:0.08589394931230619\thim:0.08529445017620126\tare:0.08193862505988912\torder:0.08027325014083814\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"and:0.20576986051327525\tbe:0.14724677861411745\tto:0.12535070885684524\tof:0.12147274158796673\tthe:0.10006651747810341\tin:0.07829719106333621\twas:0.07464897261101211\tis:0.06959459791180371\tre-:0.0675526313635398\t:0.01\n",
"<s>:0.4133036278412333\tit.:0.14925545362254378\t.:0.08519021562169737\tday.:0.07262380798496203\tthem.:0.07198024439153519\thim.:0.0602674341481419\ttime.:0.050026606435028605\ther.:0.044484249927478285\tnight.:0.04286836002737964\t:0.01\n",
"a:0.3154702495943068\tand:0.136988114073543\tthe:0.10560984562152428\twas:0.0909699204122472\tto:0.09068605741644035\tis:0.0750498303469342\tcame:0.07300464498093348\tas:0.059466987074980784\tbe:0.042754350479089875\t:0.01\n",
"of:0.34444290693673774\tand:0.14171508688930948\tto:0.13609419534614317\tin:0.10909081820387995\twith:0.069951591708357\tfrom:0.0524719626601693\tby:0.04992853903408401\tthat:0.04638286881831119\tfor:0.03992203040300821\t:0.01\n",
"at:0.24583418896452575\tthe:0.1780638265877916\tto:0.15003303026728915\tthis:0.12201031929258381\tof:0.10422106768887035\this:0.06351217476885693\tand:0.04422713419266879\tin:0.04255737766393291\ttheir:0.03954088057348084\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"the:0.37978896743205404\tof:0.2402653169791735\tand:0.11333943099548388\ta:0.06942462149043152\tin:0.055514151675577585\tto:0.04402646993687941\tfrom:0.02962352713709736\tby:0.02944598288088627\twith:0.028571531472416367\t:0.01\n",
"the:0.40835859900266236\ta:0.4082167277044483\tThe:0.040408729551277056\tto:0.04002011983497459\tunanimous:0.028550153129837694\ttho:0.020843837654147185\tand:0.016260617765773554\tno:0.013798547905796744\tA:0.01354266745108255\t:0.01\n",
"of:0.321975766125421\tin:0.16651115935666672\tto:0.10963703528302408\ton:0.10503264579554986\tand:0.0854306939709636\tfor:0.05469478252858493\tby:0.0523234338359104\tthat:0.05034777632230616\twith:0.04404670678157324\t:0.01\n",
"and:0.24785708376819823\twas:0.15868356667740807\tare:0.10263306744453368\tis:0.0978968071700999\tarrived:0.09229589046696071\tit:0.08171659937283267\tthem:0.07261963973951394\tbe:0.0682808100750773\tnot:0.06801653528537555\t:0.01\n",
"he:0.19393653458628665\tbe:0.1643094792728212\tand:0.1606006440844457\twas:0.125770291540325\thad:0.09093426308187716\thave:0.07698655754603283\tI:0.062086515878366486\thas:0.05976285179005914\tis:0.05561286221978586\t:0.01\n",
"amount:0.18451834698770145\tpayment:0.12752257453928736\tout:0.11773798217753961\tvalue:0.11619392664193294\tpart:0.11477524831687132\tproof:0.10470183198149745\tall:0.08274505676876123\ttion:0.07631394920116809\tproceeds:0.06549108338524051\t:0.01\n",
"of:0.2235271285588845\tto:0.1756940933805613\tand:0.14357925452773088\tin:0.11756833811998889\tthe:0.10029646277677762\tnot:0.07742720759188239\twith:0.05946865308801716\tis:0.04995956143475165\twill:0.04247930052140554\t:0.01\n",
"was:0.23431932196014219\tcarried:0.13778051977635672\tbe:0.10383237669386744\twent:0.10159388147423135\ttaken:0.09534243684935326\tis:0.0919769686743562\tfar:0.07595409302784394\tit:0.07555522540672456\tlaid:0.0736451761371243\t:0.01\n",
"in:0.44102910005287654\tof:0.12968292572134998\tthe:0.11719015679115638\tIn:0.10713409708726827\tto:0.05472967895947008\tinto:0.03665359582359108\tthis:0.03581492877072656\tand:0.03471134168283063\ton:0.033054175110730416\t:0.01\n",
"the:0.7569183414759127\ta:0.07800004991725089\tThe:0.041332522225983\ttho:0.03812099784262838\tin:0.019828470860505994\tand:0.019365666930719637\ttbe:0.015211021483641363\tthis:0.010621748999524117\tof:0.010601180263834048\t:0.01\n",
"or:0.7249904927829421\tthe:0.08915672238229434\tand:0.05941163936837599\ta:0.05469530833423353\tof:0.019820322289059458\tthis:0.011138411943604522\tas:0.010709403863797687\tin:0.010424282686399696\tthat:0.009653416349292562\t:0.01\n",
"is:0.1854489311491107\twas:0.18080860636818885\tthe:0.1647413934765129\tand:0.10116598936261043\tare:0.09372826040261395\tbe:0.085921204533472\ta:0.06950685066056692\tvery:0.055609253865363445\tbeen:0.053069510181560794\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"be:0.24758844918087064\tis:0.1368467651422136\twas:0.11160810367707008\tare:0.10744752505568206\tnot:0.10120228029203213\tand:0.08169588303567459\tan:0.07252107900925561\tas:0.0657619170147253\tamount:0.065327997592476\t:0.01\n",
"a:0.2624774583789531\tthe:0.199560559085454\tof:0.17043740037627544\tin:0.08941420754259406\tand:0.08631124462137402\tto:0.06967574507524112\tan:0.054745917043327826\tfor:0.03054127226813062\this:0.0268361956086497\t:0.01\n",
"-:0.25118285771150844\t<s>:0.14461238531400528\tof:0.11802420213506472\tI:0.09263278606659908\tand:0.08192576050852159\t.:0.07788802653465511\tw:0.07617852331050527\tto:0.07556642467926077\tti:0.07198903373987973\t:0.01\n",
"and:0.26958579283201645\tthem:0.11612667884598861\tput:0.11344325375628718\tout:0.1013617992958137\tcarry:0.08227680625552684\twas:0.07994197358382521\twork:0.07720203559131127\tit:0.07531599500828415\tthat:0.07474566483094668\t:0.01\n",
"of:0.3799755060013862\tand:0.13830774868733944\tto:0.13798325614033502\tthat:0.08307014005629552\tin:0.06282257989699976\tby:0.05547096521074367\tfrom:0.05275778027166779\tat:0.042359615819020764\twith:0.037252407916211795\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"to:0.676937823204827\tand:0.06575190567750071\twill:0.05543370189412596\twould:0.05141231451171225\tnot:0.04890295851662166\tcan:0.030921011112684815\tor:0.020476061886515858\tshould:0.0203272830163012\tcould:0.019836940179710584\t:0.01\n",
"that:0.21395379404323336\tif:0.2096065990123064\tIf:0.17870741297646842\tand:0.10641346275805422\tas:0.08402461689177947\twhich:0.07424992868077968\twhat:0.04479573442239802\twhen:0.0440761545467638\tfor:0.03417229666821668\t:0.01\n",
"to:0.25899009985987886\tand:0.20691113851486853\tof:0.12222836551254562\tthe:0.08594736535787019\tis:0.07480810658605944\tin:0.0664871705332616\twas:0.06439095079885332\tcon-:0.05644473110180624\twill:0.053792071734856284\t:0.01\n",
"has:0.2037149445616515\tbe:0.19042119163499563\thave:0.16181257876487617\thad:0.14063561866158428\twas:0.10832378506512073\tbeen:0.0647829928114955\tand:0.04270065610616241\twere:0.039066815927649656\tis:0.038541416466464105\t:0.01\n",
"and:0.38313577196477067\thim:0.08633579147109542\treason:0.0849154092493801\tmade:0.08427592616698751\tbut:0.08147530267248447\tenough:0.07305225209565179\tasked:0.06965930237359723\ttime:0.06381268945419652\tthem:0.06333755455183629\t:0.01\n",
"to:0.41411265055127494\twill:0.16704281189687922\tmay:0.09506006182771065\twould:0.08404677926682592\tshall:0.059096947175112595\tshould:0.0556035136772846\tmust:0.04332199907009997\tnot:0.03901042823384071\tcan:0.032704808300971354\t:0.01\n",
"is:0.20000008351604642\tof:0.16906764904156202\twas:0.10971246208175749\tand:0.10122569193696938\twith:0.09273455873122421\tfor:0.08960495213617081\tto:0.07821034573294333\tin:0.07600559648856782\tas:0.07343866033475839\t:0.01\n",
"was:0.2640694202192033\tis:0.18608022301285745\tbe:0.13700017392460934\tas:0.11851391555051138\tbeen:0.06674920651894325\tand:0.06428168667031436\twere:0.06032478235871182\tare:0.05821534473939936\tthe:0.03476524700544965\t:0.01\n",
"<s>:0.5099015927495416\tit.:0.10752731801963447\tthem.:0.07098562373409452\ttime.:0.05795101252340301\tday.:0.05645150229337925\thim.:0.054118633594923575\tcountry.:0.04683811602566045\tyears.:0.04487865450431651\t.:0.04134754655504662\t:0.01\n",
"the:0.25328019430960425\ttwo:0.14161395297760349\tof:0.1384397724172819\tand:0.13188141971322054\tfor:0.09065485973851037\tThe:0.08226762919491973\tthree:0.05696245987184083\tthat:0.04801732131772603\tfew:0.046882390459292884\t:0.01\n",
"of:0.35308077646939817\tthe:0.12313208895778319\tby:0.11693422115934363\tfrom:0.09933755645013262\tto:0.0734330511846077\tin:0.06844268806394242\tand:0.056817709284209664\twith:0.054099074696157476\tfor:0.04472283373442498\t:0.01\n",
"<s>:0.5951356855585156\tit.:0.07618181379897165\tof:0.06128229369445488\tthem.:0.05695639362723634\t.:0.05618065674948097\tday.:0.04049925336091066\ttime.:0.035918455648172684\tto:0.034496320347636805\tyear.:0.03334912721462056\t:0.01\n",
"<s>:0.2613088549649225\tand:0.15580981423434095\twas:0.12353456311453885\tbe:0.12011264833573745\tis:0.07434522515091425\tare:0.07263628290767327\tthat:0.06650679362055881\twere:0.0627739386615939\t.:0.05297187900972013\t:0.01\n",
"the:0.7024410490053622\tof:0.06521235425438382\tand:0.04446173150741944\tThe:0.04416987058425283\ttho:0.04138095953689245\tRocky:0.031327137691278796\ta:0.02232689168565502\ttbe:0.020383169989844675\tin:0.01829683574491074\t:0.01\n",
"the:0.3744238625092626\ta:0.1182635688386455\tof:0.11807070541776896\tand:0.10002319756146254\tMr.:0.08566215706737389\tThe:0.06301574640889705\tto:0.05127050044831953\tin:0.04159434724814008\tan:0.03767591450012992\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"the:0.4700975392265114\tThe:0.2178755437527317\tof:0.08408289010211514\ta:0.0757338869260025\tand:0.05520509250982899\this:0.029939032767132688\ttho:0.027817712789184823\tthat:0.015600478045902623\tTho:0.013647823880590267\t:0.01\n",
"one:0.24882240893376512\tout:0.1887334300387465\tsome:0.1202990048149477\tand:0.08521320866975132\tpart:0.08323606031267282\tmany:0.07356812523477475\tthat:0.07216167073460969\tall:0.06139999770845047\ttime:0.05656609355228154\t:0.01\n",
"to:0.22586318787207918\tfor:0.1244273977876566\tgiven:0.11815522075682763\tupon:0.11313172578027189\twith:0.09403849282103333\tby:0.09162228971974383\ttold:0.07989410747345221\tagainst:0.07312111834001593\ton:0.06974645944891923\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.4518206639878282\tyoung:0.09025339046831114\tbusiness:0.08589808740912373\tof:0.07951288218755649\tand:0.07697367293443745\tThe:0.06404560654490159\ttwo:0.059205581308769975\tmany:0.04279706394276691\tby:0.039493051216304496\t:0.01\n",
"the:0.22669854374274823\ta:0.16065144283152755\tand:0.15682055975370968\tof:0.14859189720612156\tto:0.10768267476423311\tin:0.05931814572121813\tbe:0.05857337530993183\twas:0.03748628502926306\tis:0.034177075641246855\t:0.01\n",
"Mrs.:0.19547401404804865\tof:0.16660715054236694\tby:0.15049468570236968\tsaid:0.14051819896318088\tand:0.12783556922393272\tMr.:0.0626207743010434\tboy.:0.05362676913244125\tto:0.05070155101102546\tgirl.:0.042121287075590985\t:0.01\n",
"few:0.3085215560421581\ttwo:0.20795032053219492\tthree:0.18984103960694915\tsix:0.07219627414699768\tsome:0.06653628875066525\tseveral:0.05633390015921645\tfour:0.053083245409929335\tsuccessive:0.01798550992012505\tfive:0.017551865431764166\t:0.01\n",
"the:0.3141697498569716\tof:0.13596872111181624\tThe:0.13148451940784603\tMr.:0.12071271065510487\tand:0.08466951013671548\tthat:0.08137847559446529\ta:0.05140346651734129\tMrs.:0.04087284649549475\this:0.029340000224244486\t:0.01\n",
"feet:0.1758671023723282\tas:0.1363540627409598\tday:0.12857757737272457\twent:0.12499522731556642\tcame:0.09769602174592441\tup:0.0969473072937293\tprior:0.08344306497039433\tand:0.07874052220286883\tback:0.06737911398550411\t:0.01\n",
"the:0.38516224736276655\ta:0.16069669756154156\tof:0.11511036345930441\tand:0.1088215399937277\tto:0.05720663348913875\tMr.:0.05672336074849826\tThe:0.04204438888923643\tin:0.0341942401357692\ttho:0.03004052836001717\t:0.01\n",
"to:0.3694857790946748\tthe:0.2672247185674746\ta:0.11565451936165436\tthis:0.05528947445760665\twill:0.048080063811805844\twould:0.04423231328466273\tand:0.03999180120400363\tof:0.02608309756824687\tin:0.023958232649870556\t:0.01\n",
"the:0.8300295166036566\tThe:0.06147835389463927\ttho:0.044425789945881575\ta:0.01931240517227668\ttbe:0.01762090902220935\tsaid:0.0059155696169406104\tand:0.004771897993464632\tof:0.003300671940889745\tany:0.003144885810041321\t:0.01\n",
"and:0.2808865126133064\tof:0.18110105178426195\tby:0.0890019322958133\tafter:0.08628254589152268\tto:0.08481509878285397\tin:0.08017321435285803\twith:0.06690692854729512\tfor:0.06454438091842529\twithout:0.0562883348136632\t:0.01\n",
"and:0.3450810506883787\tof:0.14338860411640736\tan:0.10177191714793056\tto:0.10037896600357867\tsaid:0.0677774954912588\tthat:0.06129135561569985\twhich:0.05810134078767575\tby:0.05648166921953641\tas:0.05572760092953391\t:0.01\n",
"is:0.40826373882739725\tare:0.26738498346627526\twas:0.07651950625100282\tand:0.06806161391238051\tIs:0.052907332927493084\tnot:0.0337663810991366\thas:0.03291520601615783\thave:0.029162845974578962\tbe:0.021018391525577853\t:0.01\n",
"to:0.23673600117623217\tand:0.1712761344283026\tthe:0.15811526447852628\tof:0.13046492978393828\tbe:0.07570346483499009\twas:0.0727881423304626\tis:0.05877721261464536\tfor:0.04462947883569667\tbeen:0.0415093715172058\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.33842588323042805\tin:0.1783379300085384\tand:0.140411348025725\tfor:0.1002514478537035\tto:0.07737434685191381\tall:0.04583593919760189\tfrom:0.0427095766691516\tIn:0.03757933644676544\tfact:0.02907419171617236\t:0.01\n",
"that:0.20702571008318724\tand:0.1977258918944837\tis:0.17576300467859157\twas:0.13011129069383504\tbut:0.07896961818988923\thad:0.0627738381981591\thave:0.0521192167785041\tbe:0.04888460668624861\twith:0.03662682279710155\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"was:0.27390593374756966\tbe:0.21192267846493465\tbeen:0.19431634068452483\tis:0.08263060340291935\twere:0.07963640230788915\tbeing:0.04562030568057756\tare:0.040490403827281744\tduly:0.03959590577225797\tand:0.02188142611204504\t:0.01\n",
"the:0.29247237409526505\tof:0.24624191642422222\tand:0.14296481611065612\tin:0.07886093580105774\tan:0.07628315852865947\ta:0.05205268016219818\tIn:0.039431012204017075\ttho:0.0313557036293535\tfor:0.03033740304457063\t:0.01\n",
"Mr.:0.3702077283855257\tthe:0.14232419127082221\tMrs.:0.11394764053776242\tthat:0.11242229092684473\tand:0.06846573297634066\tThe:0.05783943596549008\tof:0.05664637882626886\tas:0.03756157558913006\t<s>:0.030585025521815214\t:0.01\n",
"the:0.34086280338812647\tof:0.22093040488122542\tand:0.14086953403042624\tto:0.07661365940134278\ta:0.0680104676241266\tin:0.051012877342832365\tor:0.03226666770178503\tfor:0.030271126034271952\tThe:0.029162459595863208\t:0.01\n",
"the:0.29560947974907853\tof:0.20700966745357796\tto:0.1370338506283682\tand:0.09556482631094693\tin:0.09005620550513556\ta:0.055435090022259714\tfrom:0.038595878476520296\tfor:0.03692287951591888\ton:0.03377212233819419\t:0.01\n",
"so:0.38758075701856\tas:0.21056697043876385\tthus:0.13945610924299398\tnot:0.0565689060330813\thas:0.048578250367687946\thave:0.04232815196352235\tSo:0.04231037673488106\thad:0.03348651894170849\tand:0.02912395925880108\t:0.01\n",
"the:0.3651508149182535\ta:0.3571000846707914\tfeet:0.05208641640361157\tof:0.049693536365592775\tvery:0.046022077868290885\tand:0.03537485334239394\tmiles:0.0315169678895437\tas:0.027944301318994176\tThe:0.025110947222527973\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.28498396916493884\tfact:0.16772936846355152\tbelieve:0.11030694448047389\tsaid:0.08282177114676714\tso:0.07893580056348255\tknow:0.07415064946025164\tsay:0.06745413129811946\tis:0.06613540608435196\tbut:0.05748195933806298\t:0.01\n",
"is:0.22459151188799142\tbe:0.1638862740120662\twas:0.14405521425597684\tare:0.1329045451653582\tbeen:0.09549431831110809\tand:0.08080769049032668\twere:0.05315340115211247\thave:0.04817819466041725\tIs:0.04692885006464285\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"the:0.6639985346917596\ta:0.08044241801775574\tthis:0.07639923307866754\tsaid:0.05257407367074276\ttho:0.02615301001574823\tfurther:0.024361349526511745\tany:0.023319207614397815\tlarge:0.022090846241977994\tprincipal:0.020661327142438585\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"it:0.24686362420814031\the:0.1979417568105073\tIt:0.1550388266431037\tI:0.11216095483048293\tHe:0.06573598728029229\twhich:0.06391311255864916\tand:0.058594392343818864\tshe:0.0585773712332433\tthat:0.031173974091762077\t:0.01\n",
"of:0.4327606468298573\tto:0.1196061572567624\tin:0.08418703813476254\tthat:0.07651320784401786\tfor:0.07405622230684765\tand:0.07346224312458302\twith:0.0489479766996418\tby:0.043424788261691355\tfrom:0.03704171954183598\t:0.01\n",
"the:0.8440911736901059\tThe:0.05338168809403719\ttho:0.028461736880908296\tthis:0.017304089161641244\ta:0.011377650123868818\tand:0.011040819196097397\tsaid:0.010343471220139781\ttbe:0.009458530074233956\tnext:0.004540841558967441\t:0.01\n",
"the:0.29625756481331184\ta:0.21030809934818984\tof:0.18679193656621532\tto:0.0708291665482815\tthis:0.053306392898573945\tin:0.04544603593968064\this:0.04489459341657673\tand:0.043876508761295396\tthat:0.03828970170787471\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"of:0.24558240820442903\tand:0.2294912904312934\tin:0.16652774306195933\tto:0.13526995586883592\tthe:0.07395594302199228\tIn:0.0495038160199978\tthat:0.03271154849973813\tthey:0.03084072170399001\tby:0.02611657318776416\t:0.01\n",
"few:0.19450152953606933\tfive:0.13857266093962292\t30:0.12889195606878387\t10:0.12037564792394828\t15:0.09283930446972474\tthree:0.09072078564861187\tten:0.08380586767590557\t45:0.07614630683773511\t20:0.0641459408995983\t:0.01\n",
"of:0.280190845339385\tand:0.12320523122048532\tin:0.11977656065876814\tto:0.11751670573645927\tthat:0.09258602815014572\twith:0.08173959990435524\tby:0.06044291701250789\tis:0.057776400260253394\tall:0.056765711717639826\t:0.01\n",
"the:0.5956399598597361\tThe:0.10842512355547573\tthis:0.08876300276063794\tsaid:0.0587459614270298\trail-:0.04657512008255806\ttho:0.03181518348603225\trail­:0.02883075901222134\ta:0.01574958400204927\tthat:0.015455305814259435\t:0.01\n",
"a:0.37552245767899584\tthe:0.354281759836515\tThe:0.09955171572582698\tthis:0.03497753748886995\this:0.030554478510565895\tthat:0.027909539121078786\ttho:0.02319948688953459\tA:0.022820746261423153\tone:0.021182278487189846\t:0.01\n",
"of:0.3293387378454081\tto:0.13588505052361952\tin:0.1324654638648704\tand:0.07903404811115332\tthat:0.07055098241519413\tby:0.0677010198215086\ton:0.06283241823507148\tfor:0.06212720587526149\tat:0.05006507330791292\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"in:0.24963004513769388\tfor:0.18782106812249647\tof:0.17584207456998097\tto:0.09230537944869792\ton:0.07670023931706185\tIn:0.06902809770557898\tfrom:0.05357428061925179\tat:0.04457814137921815\tduring:0.04052067370002012\t:0.01\n",
"made:0.20606676360262302\tand:0.20040532528491087\towned:0.13383030805196736\toccupied:0.09301599772971744\taccompanied:0.08391360314116256\tassisted:0.07739609939906003\tgiven:0.06832840876283912\tfollowed:0.06786946081494064\tsigned:0.05917403321277898\t:0.01\n",
"is:0.2784631131670363\tbe:0.2196228014885983\tare:0.1428621781409449\twas:0.11935922336568351\tand:0.07678327398015508\tbeen:0.040350769140349345\tIs:0.038101361203158074\tnot:0.03740134506575619\twere:0.03705593444831832\t:0.01\n",
"person:0.23281862364253889\tone:0.2034947129794607\tmore:0.10690987298792885\taction:0.09415034252437884\tman:0.09140528413367112\tcity:0.0724693075264199\tin:0.07095714165608993\towner:0.0648508251378353\tlaw:0.05294388941167652\t:0.01\n",
"the:0.22397134121426301\twas:0.19942093869419455\tbe:0.12449244513447062\tand:0.09709815396076862\tis:0.09626178704788198\tbeen:0.07199406640597622\ta:0.06598449928523703\twere:0.05825675864246041\tare:0.052520009614747475\t:0.01\n",
"and:0.3079069995791492\tof:0.15703359043111892\tthe:0.09695346957938135\tbe:0.08008775556196854\ta:0.07801796281644585\tin:0.06960382693033287\tis:0.06885254681667448\twas:0.06803906530008293\the:0.0635047829848459\t:0.01\n",
"made:0.24045435542744667\tand:0.23464210073409186\tor:0.1200765638048787\tit:0.07362996342121234\tpaid:0.06765443619763342\taccompanied:0.0676382050027566\tthat:0.06328132990515498\ted:0.062213755465309065\tdone:0.060409290041516336\t:0.01\n",
"and:0.21843181215981214\twas:0.1230405661772134\tapplication:0.11201600084458439\tthere:0.10543464100911014\tso:0.09104954407601035\tplace:0.08983240976791725\tfeet:0.08549378372770965\tas:0.0831532901994411\thim:0.08154795203820163\t:0.01\n",
"the:0.43142035873479156\tand:0.11391028234865838\ta:0.10003552143208735\tof:0.08861089863957465\tThe:0.08561512584379367\tthis:0.059578047929625004\this:0.044618641524518915\tits:0.03321055955151211\ttho:0.03300056399543838\t:0.01\n",
"virtue:0.21738001102627372\tout:0.18977337920912904\tpart:0.11522775944009786\tone:0.10400846177203443\tquarter:0.09462884564091131\tfavor:0.06983811406326706\tresult:0.06817617839096966\tguilty:0.06617001917752548\tmeans:0.06479723127979137\t:0.01\n",
"is:0.1936087435691293\twas:0.1438323593143901\tare:0.12186296434341748\tdid:0.11746438789983729\tdo:0.10721052931890086\tcould:0.08616034692945328\tand:0.07546047057592255\tdoes:0.07227133429734382\twill:0.07212886375160546\t:0.01\n",
"the:0.2934620670631732\tof:0.2141593332667423\tand:0.15945002087278187\tto:0.06780370218056998\tthat:0.06419988100345989\tThe:0.06058387775262816\tin:0.0583461619364558\twhich:0.03917179644278349\tor:0.03282315948140535\t:0.01\n",
"and:0.19981924536136086\table:0.13248592988721566\torder:0.123134489772308\thim:0.11025442400641676\tnecessary:0.09921571203751137\tunable:0.08749410447623966\tenough:0.08095777976827818\tis:0.0791396149871568\tthem:0.07749869970351272\t:0.01\n",
"and:0.22465341856951163\tof:0.18398944533749134\tthe:0.17512623129788135\tto:0.1294106491223159\tin:0.08287962300650203\tfor:0.0639807036362261\ta:0.045637345735997356\tbe:0.04334382841250944\t<s>:0.04097875488156492\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.4360667341531061\tor:0.13607605449649846\tthat:0.08481531967431315\tit:0.06128949466516357\tis:0.0571767370084036\tone:0.05426192514257556\tout:0.05370683503320255\tbut:0.05355623428986853\tare:0.05305066553686856\t:0.01\n",
"in:0.2849191550048591\tof:0.17906755417652595\tto:0.10733941527995425\twith:0.08888384068794526\tfor:0.0794512754937931\tfrom:0.07686593721318759\tby:0.07177077902446355\tIn:0.06488916848602157\tand:0.03681287463324955\t:0.01\n",
"of:0.3460607117213763\tand:0.11591883397339094\tthat:0.10349643361766388\tin:0.10067497324150197\tto:0.09560195382594888\tfor:0.07734247718693772\tby:0.07106715228835274\twhen:0.044097934887857286\tIn:0.03573952925697027\t:0.01\n",
"the:0.6525935421539667\ta:0.1599592970333855\tThe:0.04589259857062017\ttho:0.0357920068010191\tand:0.02773215718483118\tseating:0.020992085532394258\tthis:0.01818251054022782\tgreat:0.01513389455737051\ttbe:0.01372190762618474\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.32344792120366006\tand:0.13574983968668922\ta:0.12045919366652863\tof:0.11144736938601565\tto:0.10819936268192318\tso:0.05485077267885555\tis:0.05113804921283257\tin:0.04560258755074353\tbe:0.039104903932751574\t:0.01\n",
"of:0.3362406803069082\tthe:0.30308670599730353\tThe:0.10270148851560253\tand:0.05162274763007371\tother:0.043963919780029774\tthese:0.04378740500830648\tfor:0.04098831599614843\tat:0.03438553678432564\tall:0.03322319998130161\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.4326845688133965\tto:0.1483652581824046\tin:0.1302922393237737\tby:0.05705784658395068\tfor:0.05694320706812844\tthat:0.0549448763704483\tand:0.05125575659034567\tfrom:0.0304459478790736\tIn:0.028010299188478645\t:0.01\n",
"they:0.26004076152708355\twho:0.12520266395751167\tthere:0.11579702370869377\twe:0.11373584132620913\twhich:0.08776419117906968\tand:0.08322440250912155\tyou:0.07598043962573241\tThere:0.06594329369292243\tThey:0.062311382473655905\t:0.01\n",
"<s>:0.6507796525205357\t.:0.084790958156158\tit.:0.05679809110708545\tthem.:0.042480185160281125\tof:0.04164301437540256\tday.:0.0374053345579648\ttime.:0.027346135062250945\tyear.:0.025130267119269585\tcountry.:0.023626361941051985\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.5012296711627251\tof:0.14486039342424306\tto:0.09663212922834191\tand:0.063999003744818\tour:0.05755083612027526\tby:0.0357926713712869\tmany:0.030935218537881587\tThe:0.02968982338632759\tthese:0.02931025302410066\t:0.01\n",
"of:0.27915740879339174\tin:0.19382429026844014\tto:0.13169619000339935\tfor:0.08785832696387569\tand:0.0722295453702414\tby:0.0690876318378336\tthat:0.060052082968087894\twith:0.054994501576528\tIn:0.041100022218202206\t:0.01\n",
"of:0.4439806827773154\tis:0.08921591406086372\tto:0.0827755623582013\tfor:0.08028346969902174\tin:0.07245699715722365\tand:0.06873477572635728\twith:0.06042675975121883\tthat:0.04961744048834344\tby:0.04250839798145469\t:0.01\n",
"of:0.3109107872284452\tand:0.12644542128862368\tto:0.11078899842463713\tfor:0.10611587401054574\tall:0.0840438558587964\tthat:0.07703747577421102\twith:0.07194220916357039\tby:0.05878037878707625\tin:0.04393499946409423\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"him,:0.1769044785172874\ther,:0.1533126647453332\thim:0.14792666351209227\t;:0.12263714346654286\tit,:0.11686016549746514\tthem,:0.08381371197818727\tup:0.06870904744491085\tman,:0.06077443664281835\tme,:0.05906168819536257\t:0.01\n",
"for:0.189798489679346\tand:0.18544956567294327\tas:0.1087221627463131\tthat:0.10208238482903409\tto:0.09782570887607346\tin:0.09322041310824385\tof:0.08316277014484293\tbut:0.06508815220824771\tcleanse:0.06465035273495556\t:0.01\n",
"the:0.6786967038796611\ta:0.05730789716133007\tThe:0.05430711446449172\ttho:0.0423948059568251\tof:0.039819662897528446\tall:0.03719987567293217\tand:0.03427318757568545\tother:0.03022110836006985\ttbe:0.01577964403147607\t:0.01\n",
"the:0.45344073112183286\tand:0.12000662869295876\ta:0.11378049891921072\tby:0.0868161369938131\tThe:0.08020246566313075\tof:0.0529228034092195\ttho:0.03234385796237906\tin:0.032120276856080696\twith:0.0183666003813746\t:0.01\n",
"<s>:0.2954496788958316\tthem.:0.14474608198069722\twhen.:0.12339502869667449\tit.:0.11291153880892782\thim.:0.10169353626189274\ther.:0.06341200876422035\tcountry.:0.05464248871980441\tlife.:0.04822530320059761\ttime.:0.04552433467135386\t:0.01\n",
"the:0.6974231579645208\tThe:0.19490601666372684\ttho:0.034875646217288885\tand:0.031637125710651144\ttbe:0.01417614218627304\tTho:0.007676422879609054\tTbe:0.003478448364462568\tof:0.003145957106776018\tthat:0.0026810829066916324\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.2962493920079113\tof:0.15562869104831384\tand:0.12927696450969606\tto:0.11594150586069682\tbe:0.07387456841718647\tin:0.06434072863081983\tfor:0.0546633009676827\ta:0.05161310741990076\this:0.048411741137792196\t:0.01\n",
"and:0.5038375698211737\tthe:0.10762658832225747\tthat:0.09247675885790607\tof:0.060585698588665235\tas:0.055119862523703066\tif:0.052780841798669646\tthan:0.046782800828734886\twhen:0.036280167911806105\tbut:0.03450971134708388\t:0.01\n",
"the:0.2986826534375949\tand:0.16308198855800432\tof:0.1370289146592762\ta:0.09414161860189205\tto:0.09331404836791349\tin:0.07677181568203637\tbe:0.0443142509167594\tis:0.04378598796103474\tthat:0.03887872181548843\t:0.01\n",
"the:0.3675625998549832\toppo-:0.18429086436016806\ta:0.17751863651203498\tand:0.06810189269734997\tof:0.06360199570295792\ttheir:0.04244829010939334\this:0.031355571895510026\tone:0.0295768766645618\tThe:0.02554327220304083\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"to:0.23996086881653392\ttold:0.16082138161505694\twith:0.1242749570724215\tlet:0.11656840131444991\ttell:0.08533969826648817\tof:0.08261023198440613\tmade:0.06608954047265828\tmake:0.06494991705744244\tfor:0.04938500340054276\t:0.01\n",
"the:0.3081547200255634\tof:0.22207630136070053\tand:0.10097330787937073\tThe:0.0701499137477807\this:0.06826832012749856\tI:0.058656849862244204\tthat:0.05620256790943579\ta:0.05590343166016536\tin:0.049614587427240786\t:0.01\n",
"and:0.3067729237887428\tso:0.1541355805656449\tas:0.13720758854280962\tall:0.08544033452234646\tsaid:0.07301816151294237\tis:0.06526415202532948\tfact:0.059691182895634486\tof:0.05694502439648133\tthan:0.05152505175006848\t:0.01\n",
"of:0.45708490973003707\tin:0.16499525781138139\twith:0.07075081193026521\tto:0.06197300580967601\tfor:0.05808485521956969\tthat:0.05536414231887381\tby:0.05312704606223304\tany:0.03741888570465031\tand:0.03120108541331351\t:0.01\n",
"of:0.22403420600549523\tin:0.14516170479825935\tand:0.13212057878410222\twith:0.1101450228669899\tto:0.09261782204281765\tfor:0.08424706121080791\tby:0.06881763727215481\tsuch:0.06729939123844483\tas:0.06555657578092805\t:0.01\n",
"of:0.3956967548326343\tin:0.1262392472079828\tto:0.11114993235797067\ton:0.09098290303788321\twith:0.058213954194436715\tfor:0.05519299069783784\tand:0.05208273545181944\tfrom:0.05120073386117864\tby:0.04924074835825641\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"feet:0.20837058937103412\tpoles:0.16686243736995118\tup:0.11619557552687124\tchains:0.11156855355118704\tentitled:0.08437694067907713\twent:0.07935061363836474\tcame:0.07491532896457027\tdown:0.07426522602773697\thim:0.07409473487120728\t:0.01\n",
"of:0.43046028925467045\tto:0.11357820551653748\tby:0.10084040589241701\tand:0.07552596443409236\tthat:0.07074395380914747\twith:0.0615680976420941\tin:0.051494090116937306\tfor:0.048277699359500305\tfrom:0.03751129397460351\t:0.01\n",
"of:0.5446282484448152\tin:0.09588880263262123\tthat:0.06782061674126715\tto:0.06317623594419544\tfor:0.05334956523603492\tand:0.046289874935526644\tall:0.046262455958640925\tby:0.03665148666274653\twith:0.03593271344415209\t:0.01\n",
"to:0.3049596941773303\twith:0.12712496697189804\ttold:0.11524202810659914\tgive:0.09887717033813449\tgave:0.08663947063657187\tfor:0.08523530919373504\tby:0.06571515819179208\tmade:0.05508020748130369\tmake:0.0511259949026354\t:0.01\n",
"the:0.24273168535548567\tof:0.18668589338714045\tand:0.14321051469573132\tto:0.09150509943756145\tan:0.07626257547745452\tin:0.07343282366035751\tbe:0.06056674812617086\tis:0.05804930079835993\tMr.:0.05755535906173827\t:0.01\n",
"and:0.29214256030622165\tthat:0.11946947811527484\twas:0.10863574967892063\tis:0.09302268947469781\twork:0.08300049640663795\tput:0.08218647110718294\tthem:0.08022178637010209\tdue:0.06950784791458757\tout:0.06181292062637442\t:0.01\n",
"was:0.2313308683257903\tis:0.16510014470369253\tand:0.1378238415594099\tare:0.13766002943057465\twere:0.08794933759349197\tbe:0.08568232626991312\tbeen:0.07411998237113915\tso:0.04110523513827725\tIs:0.02922823460771106\t:0.01\n",
"of:0.3824123523851021\tto:0.1081433432016535\tin:0.08302152864274155\ton:0.08100080720889886\tby:0.08061828314148954\tand:0.07598325472306293\tthat:0.069059700666155\twith:0.06079501407789005\tfor:0.048965715953006514\t:0.01\n",
"he:0.29759384126645533\tI:0.14712822519614255\twho:0.13357369841600397\tthey:0.09630194152462256\tshe:0.07780358321265955\tand:0.07122033994947809\twhich:0.06282023249521906\tHe:0.05213221799963883\tthat:0.051425919939780025\t:0.01\n",
"I:0.3194234935257482\the:0.20660944613225948\tand:0.13775389397917362\tHe:0.0751774208714404\tthey:0.05998566547237523\tshe:0.05416668126693702\twe:0.05294050973683858\tit:0.0511501907862517\twho:0.032792698228975646\t:0.01\n",
"a:0.271646526376374\tthe:0.17948546250258066\tand:0.12355269842903195\tof:0.08855741068948489\tmuch:0.0803829210978989\tis:0.07822002781420026\tno:0.06884078709725074\twas:0.05481582036721368\tbe:0.044498345625964955\t:0.01\n",
"to:0.5464258021087871\tthe:0.08820512872448977\tthis:0.08515875041656311\tan:0.07987387148172383\twill:0.07414797271136339\tand:0.04310149755258638\twould:0.032408620915422924\tthat:0.021939961322096697\tI:0.01873839476696665\t:0.01\n",
"of:0.3283983630450615\tand:0.16739264360280287\tin:0.14249933398260786\tto:0.10949786631353516\tfor:0.06401015080074238\tfrom:0.0528908284588499\tor:0.05081337070571424\tby:0.03882530603202479\tIn:0.03567213705866126\t:0.01\n",
"of:0.45501287252612366\tthe:0.2583787488516545\tin:0.06859124693292426\ton:0.040763193085834926\tthat:0.03699544025183511\tsuch:0.03336125731206537\tand:0.03334740581573866\tany:0.03302763352305086\tfor:0.030522201700772713\t:0.01\n",
"the:0.16304133629527173\tto:0.15096654575515026\tin:0.13912023474069915\ta:0.13764255846619158\tat:0.13243878839927417\tof:0.09455521615707771\tand:0.08270183453987376\tfor:0.055971847801523596\tIn:0.03356163784493804\t:0.01\n",
"in:0.4028195475751729\tof:0.14120465594222886\tsuch:0.09449781320603778\tIn:0.08216346488520507\tto:0.06566757972014133\tas:0.06015003066921003\twith:0.056060224861612176\tfor:0.04759870680848039\tand:0.03983797633191137\t:0.01\n",
"of:0.2322529771684823\tis:0.1316990566509394\twith:0.12140960178983835\twas:0.11199542595860836\tin:0.09647607952084121\tto:0.09570097926313259\tby:0.07576528170503734\tas:0.06238098011175955\tand:0.06231961783136082\t:0.01\n",
"the:0.2501550870616374\tof:0.17327320107306704\tand:0.14388289249475147\tto:0.11475751953988338\ta:0.09038001401223485\tin:0.07346713906469314\tbe:0.06537517806815311\tis:0.042347954547891406\tor:0.036361014137688295\t:0.01\n",
"of:0.28074096931484577\tthe:0.198724709207837\tin:0.11883636103546562\tto:0.09029901596446932\ttheir:0.08008109970518629\tand:0.07732017205997176\this:0.06848728681016576\twith:0.03925584667375463\ta:0.03625453922830392\t:0.01\n",
"it:0.24112649263459637\the:0.17660792899787944\tIt:0.1713624494321809\tI:0.08209974212840981\tHe:0.07828896755119588\twhich:0.07500438521777203\tand:0.06286527553672039\twho:0.0534546761422916\tthere:0.049190082358953446\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"have:0.29584954608748276\thas:0.25574118478343016\thad:0.22061075594943133\tbe:0.06046661113739484\twas:0.046155156629602144\tand:0.03875512553512445\thaving:0.033475334270096364\tbeen:0.02014147036989394\the:0.01880481523754405\t:0.01\n",
"of:0.258399820759552\tin:0.15701505023458345\tat:0.12836207510641293\tand:0.11608283907669412\tto:0.10569401534597778\tfor:0.06127878974678296\ton:0.059906461071514525\twith:0.055396933054263235\tby:0.047864015604219066\t:0.01\n",
"of:0.40181434489870593\tfor:0.11257106545887992\tto:0.08883073767382363\tin:0.08454338823437584\tand:0.08178134185799561\tby:0.06968614119086206\twith:0.059291418991032525\tthat:0.055277274525461835\tfrom:0.0362042871688627\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"line:0.1405464160015648\tside:0.12875885881827667\tout:0.11766175965088525\tpart:0.1154243878932159\tsum:0.10975442457720232\trate:0.09908147077988154\tone:0.09602582545184905\tDistrict:0.09353048747821566\tnorth:0.0892163693489089\t:0.01\n",
"the:0.4214662586398076\twhose:0.13607982326407841\tThe:0.10378103102514416\tof:0.09542035689929498\this:0.07760485994890659\tmy:0.049871586133043634\tand:0.04645004093779596\ta:0.032108603282868596\ttheir:0.027217439869060108\t:0.01\n",
"of:0.2746196990760485\ta:0.1670746512741821\tin:0.13475018134568018\tthe:0.09861179809273449\tmake:0.07881227711402573\tand:0.07793796464051363\tfor:0.059428649692308495\tas:0.04955735521040659\twith:0.049207423554100224\t:0.01\n",
"the:0.31809012852507174\tof:0.1892330343862226\ta:0.1392511509828622\tand:0.07844450447611014\tThe:0.06942255219991852\tto:0.05078336853883971\tthat:0.05075406846054871\tin:0.049000488939075916\tas:0.045020703491350296\t:0.01\n",
"one:0.22586711108771074\tall:0.20318924817112793\tcopy:0.13585339809724553\tsome:0.08000904611832456\tout:0.07379004803716031\tthose:0.07122279865131625\tmeans:0.06962753566551794\tpurpose:0.06649818257859248\tpart:0.06394263159300428\t:0.01\n",
"and:0.26498267693952804\tthe:0.2357723850571925\tit:0.08303285589034987\tor:0.08258431767880546\the:0.07758121029884632\twas:0.06501797128489323\ta:0.06265782827882888\tbe:0.059620875808846605\tis:0.05874987876270908\t:0.01\n",
"the:0.33330259863044503\tof:0.1753085897883558\tand:0.12317249787382373\tThe:0.10807500893226046\tthat:0.0759339052698499\ta:0.05733184144613453\tin:0.04589435866209111\tour:0.036375384013882156\tfor:0.03460581538315737\t:0.01\n",
"feet:0.3576974938932753\tmiles:0.19778723378062504\tand:0.1450214646553159\tstreet:0.06741871355008124\trange:0.04980618034345613\tcame:0.045293786480552836\tmile:0.044708349925603366\tor:0.041412156205172725\tyear:0.04085462116591751\t:0.01\n",
"well:0.17124344106246672\tsuch:0.15167650231689994\tfar:0.14721513796168123\tor:0.14653938248873416\tand:0.14033903829108632\tknown:0.08002055324179583\tmuch:0.06299207214921487\tnot:0.047054689783150666\tthat:0.042919182704970166\t:0.01\n",
"was:0.44493844899831103\tis:0.12223351903828646\twere:0.1065084841535919\tare:0.09461761758775711\tbe:0.08610495519193558\tbeen:0.07716688122989984\tand:0.02161648744217307\tbeing:0.01912940935350774\tIs:0.017684197004537265\t:0.01\n",
"the:0.8523642523958745\tThe:0.041595333910717416\ta:0.024856398147859005\ttho:0.021726590979448016\ton:0.013043403994570602\tand:0.011283056450452373\tthis:0.00913405578853614\ttbe:0.00863538226455705\tnext:0.007361526067984754\t:0.01\n",
"the:0.2501550870616374\tof:0.17327320107306704\tand:0.14388289249475147\tto:0.11475751953988338\ta:0.09038001401223485\tin:0.07346713906469314\tbe:0.06537517806815311\tis:0.042347954547891406\tor:0.036361014137688295\t:0.01\n",
"Miss:0.38405712090450755\tMrs.:0.1972220799098697\tand:0.13911592659818148\tA:0.08362295893652165\tSanta:0.05095533116583411\tMr.:0.041360159344149064\tthe:0.04054964097582808\tSt.:0.026766004690872515\t.:0.02635077747423586\t:0.01\n",
"an:0.44676551059008657\tthe:0.26772472863555175\tgreat:0.04682714362562005\tof:0.04505663313853931\tand:0.04224567347490308\tsome:0.038021432521004477\tany:0.03702502278469483\tthis:0.03678097693373395\tsuch:0.02955287829586609\t:0.01\n",
"the:0.43094868197213715\tThe:0.32260489237798823\ta:0.04698934092594326\this:0.046347927948796754\tThis:0.04067854031392281\tthis:0.03546970274821188\ttho:0.02647940205533353\tTho:0.021002054488782736\tmy:0.019479457168883593\t:0.01\n",
"of:0.617310755652552\tthe:0.2317344389965502\tsaid:0.039433505252601316\tagricultural:0.022038286589220718\ton:0.01990907319379294\tThe:0.016985257699293016\tthis:0.01545694058449053\tand:0.013577504471823508\ttho:0.013554237559675664\t:0.01\n",
"the:0.32344792120366006\tand:0.13574983968668922\ta:0.12045919366652863\tof:0.11144736938601565\tto:0.10819936268192318\tso:0.05485077267885555\tis:0.05113804921283257\tin:0.04560258755074353\tbe:0.039104903932751574\t:0.01\n",
"a:0.6305733330732906\tthe:0.20690320403573628\tto:0.04556074453224386\tno:0.03558386121955452\tany:0.019828174659602456\tThe:0.0140238974749352\tand:0.013145635360347114\ttho:0.012396298438872069\tan:0.011984851205418184\t:0.01\n",
"is:0.27074134142123996\tbe:0.25532800350079304\twas:0.10962233187790842\tit:0.10323522636937754\tnot:0.0929291473762586\tare:0.05034322464489157\tand:0.044721199734129746\tIs:0.032228295173562405\tas:0.030851229901838893\t:0.01\n",
"that:0.2567268322029837\tas:0.24818668853499415\tand:0.19963832844737883\tbut:0.06988130866646734\tif:0.05765418101619063\tof:0.056859280205917226\twhich:0.037598209006366734\tfor:0.032114516756359485\twhen:0.03134065516334192\t:0.01\n",
"and:0.4463164919020112\tweek:0.13119522780405457\tmade:0.07136067264947628\tone:0.06541212981158122\tor:0.061329455397153176\tpaid:0.05773504371541034\ttime:0.05548532302173236\tbut:0.051884873671603646\tvote:0.04928078202697722\t:0.01\n",
"the:0.40681196357220206\tand:0.1456629029351186\tof:0.14068953701551515\tto:0.06458209718161279\tin:0.06169658032414068\tbe:0.04631258858882632\ta:0.042181388088615344\this:0.04176366421392244\tfor:0.040299278080046574\t:0.01\n",
"protest:0.1815889474622074\tup:0.13838033430545146\tand:0.13301283619280868\tmade:0.10905090656458122\tvoted:0.1081469714909097\tguard:0.08944325174771821\tfight:0.07947814140945494\tout:0.07553365881436344\tvote:0.07536495201250488\t:0.01\n",
"It:0.1770296658497122\the:0.14889743562223823\tand:0.12209707987782499\tit:0.11736893063689477\twho:0.11599627613473491\tI:0.1011270345272111\twhich:0.09996228756879035\tHe:0.053873349669571524\t1:0.05364794011302184\t:0.01\n",
"to:0.3478960594939028\twill:0.10883127175207155\twe:0.10330764562532667\tI:0.09893824891342697\twould:0.09050811002382313\tthey:0.07462533121864544\tyou:0.06673814458142292\twho:0.05063202015002581\tand:0.04852316824135487\t:0.01\n",
"and:0.32239916608788655\tthem:0.12675238619783002\tit:0.10010717227693153\tthat:0.0916462931611764\twas:0.07361762533117142\tmen:0.07120402384898782\tor:0.0707031680732684\tmade:0.06705269116907098\thim:0.06651747385367693\t:0.01\n",
"Miss:0.2539277729172258\tMrs.:0.25264401562663813\tof:0.14234442576498305\tand:0.1226913688374367\tMr.:0.08647356561792799\tthe:0.04690029160115567\t<s>:0.029148784264550486\tMrs:0.028073095789618977\tsaid:0.02779667958046334\t:0.01\n",
"of:0.25980312759030366\tthe:0.17826196286912557\tto:0.15616526224941873\tand:0.12142811466822263\tin:0.10282084304173358\tby:0.04503668612995934\tor:0.04349418155382578\tbe:0.04214068340290644\tat:0.04084913849450418\t:0.01\n",
"of:0.24442652607233215\tin:0.24301027233764871\tto:0.15047956426013195\tand:0.08215185491361084\twith:0.059982784376628795\tthat:0.057617043522613626\ton:0.05667897546676588\tIn:0.04976682640357184\tby:0.04588615264669638\t:0.01\n",
"it:0.2785617870082724\tIt:0.14058657073537015\tas:0.12754388100244876\twhich:0.12453991685388906\tthat:0.10374278837395833\tthey:0.0775235962159316\tthere:0.055052625199923454\tand:0.042753566693321025\the:0.039695267916885144\t:0.01\n",
"<s>:0.18909642244952157\twas:0.1617082847902387\tand:0.1264055832891438\tis:0.11115801615879321\tI:0.09914334064321478\tbe:0.08975182304856849\tin:0.07421189134745068\tit:0.07150321714559031\t-:0.06702142112747833\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"at:0.5000001479252973\tthe:0.08271645201962015\this:0.08095737602579957\tgo:0.0642277737098321\twent:0.06127964441559463\ta:0.061082399598658535\ther:0.04954592229256551\tof:0.04846799371413769\tand:0.04172229029849443\t:0.01\n",
"and:0.2638958506007994\t<s>:0.164723479684117\t-:0.14087395293006122\tof:0.13765118226606718\tthat:0.07537991551412043\t:0.06283718295363387\twhen:0.05045795074022716\ther:0.049973433736454076\t.:0.04420705157451968\t:0.01\n",
"have:0.35328946251732735\thas:0.26744366091419525\thad:0.24268234427973348\tnot:0.03551493986454824\thaving:0.03354582231468265\tbad:0.016242173594263446\tever:0.014998571799669675\tnever:0.014904747853835004\thavo:0.011378276861744826\t:0.01\n",
"the:0.2974502811850691\tof:0.2209142241575331\tto:0.09236837889488789\tboy.:0.07413064150532318\tand:0.06960437249933987\tgirl.:0.06679148007921791\ta:0.06486805677156714\tin:0.055503133723083235\tfor:0.0483694311839784\t:0.01\n",
"and:0.38215889915084983\tthat:0.23532462707148347\tas:0.0846298260877285\tbut:0.07658927275391877\tor:0.061890375947265874\tand,:0.05129089578558285\teven:0.03680992770500973\tBut:0.03366671037855997\twhich,:0.02763946511960098\t:0.01\n",
"and:0.14059384255740423\twant:0.1383489612151323\twanted:0.13085276173819987\thim:0.12074286177685825\tought:0.11966244203702354\tglad:0.10021083320757326\tenough:0.09246620823513618\table:0.08606843128632004\tis:0.06105365794635238\t:0.01\n",
"one:0.2457922824415998\tsome:0.12651763903370486\tall:0.1063314735857588\tpart:0.09632247957245754\tthat:0.09369220667048933\tany:0.08692369179179714\tportion:0.08577178691188839\tout:0.0801290993544861\tmany:0.06851934063781807\t:0.01\n",
"the:0.3431930298578957\tof:0.17993744906667394\tto:0.13472712873739773\twith:0.08425740500773415\tand:0.06860531123458392\this:0.06056302466897151\ttheir:0.04308527141920831\tby:0.03930275590052467\tsaid:0.03632862410701007\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"the:0.28885804025763695\tof:0.19457268553638657\tto:0.16793929015137762\tand:0.10115565894006996\tbe:0.06021550654373138\tin:0.05991065962582752\tfor:0.040913751984400906\twas:0.03903165907152394\ta:0.03740274788904502\t:0.01\n",
"a:0.3347225078753533\tthe:0.29880763663432613\tthis:0.1363857888502908\tand:0.05619199689354908\this:0.04356916892798964\tto:0.03642218764089671\tone:0.030931486793201388\ther:0.02778910784850079\tno:0.025180118535892342\t:0.01\n",
"have:0.3521617946806656\thas:0.2705918686756123\thad:0.23648925730389508\tnot:0.03955621184357975\thaving:0.03844339174729506\tever:0.01639020358918428\tnever:0.01479197417458469\tlias:0.01216507355256019\tbad:0.00941022443262309\t:0.01\n",
"the:0.48109302352582195\ta:0.3683333747558085\tno:0.04577555641127296\tThe:0.03242902080201458\ttho:0.02032781217031924\tthis:0.020261402253124894\tany:0.00965160408432844\ttbe:0.006122509878545179\tevery:0.006005696118764274\t:0.01\n",
"and:0.19051943986217015\tof:0.1720639792232348\tas:0.16747509158597676\tthe:0.13450047028301987\tto:0.09096766000852802\tbe:0.06575526900119626\tsuch:0.06334143169216884\tmuch:0.055005516582227666\tin:0.05037114176147772\t:0.01\n",
"the:0.2893467002777624\tand:0.2678848665290487\tof:0.08401748802429909\twill:0.07841544694787045\tto:0.07689341974511671\ta:0.05338739013361727\tdo:0.0493166172844587\tthat:0.04654468509936171\twould:0.04419338595846493\t:0.01\n",
"the:0.4246269274836282\tof:0.11226294202711529\ttheir:0.09281515749099888\tour:0.07646482733182322\tto:0.06486526254081829\tits:0.058483797625007806\this:0.058200465111302446\ta:0.057845231967719186\tand:0.04443538842158663\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"the:0.32305486381550474\this:0.1556649159978527\ttheir:0.11371971439312943\ther:0.07640541281394718\tof:0.06830891242655009\tour:0.0670503706343345\tand:0.06252676225148592\tto:0.06177564394117946\ta:0.06149340372601596\t:0.01\n",
"and:0.4162183978110556\tthat:0.16345898696115194\tbut:0.15085800932245566\ttime:0.09051496159939353\tBut:0.042020020647945695\tor:0.032892024666088364\tAnd:0.03259759774999472\teven:0.032584387316255535\tespecially:0.028855613925658913\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"be:0.2385753684114407\twas:0.21351582979084546\tbeen:0.09895529604902982\twere:0.09576490300233702\tand:0.0925220832633726\tI:0.07514495412721425\the:0.06507567860372535\tis:0.061159927712668136\thave:0.04928595903936677\t:0.01\n",
"to:0.26347294911523633\tthe:0.20207943492956468\tof:0.15545869450418856\tand:0.10372197011202519\tnot:0.09492145302753964\tfor:0.04905066155861363\tor:0.048126857297108465\tat:0.036594273675506474\tin:0.03657370578021699\t:0.01\n",
"was:0.23875649461152187\thave:0.11698904862916347\tand:0.11543188954609236\tbe:0.11265363042423736\tbeen:0.09906572080435373\thad:0.09554981091422646\thas:0.08352143136997717\tis:0.08071130766282182\twere:0.04732066603760571\t:0.01\n",
"of:0.19772967641121048\tas:0.1623673418679956\tis:0.11714445471395858\tand:0.09677175778520736\tthat:0.0943754287296158\twas:0.08357915383269263\tby:0.08031186848504734\tfor:0.07886594540065145\tto:0.07885437277362076\t:0.01\n",
"the:0.40671861813772925\ta:0.13352720329664655\tthis:0.11855886074558926\tsame:0.09211833449925547\tsuch:0.06992210367894258\tof:0.05036493318951242\this:0.04855319977997505\tany:0.036384071058945075\ttheir:0.03385267561340432\t:0.01\n",
"and:0.1495899024693767\tmiles:0.14173092433846196\tfree:0.13778745773831563\tfar:0.11531946154984084\taway:0.11422025854048723\tsuffering:0.09289524012248203\thim:0.08182258540364966\tthem:0.08046450554330968\tor:0.07616966429407625\t:0.01\n",
"be:0.17122895230781088\twas:0.15265553575876362\thas:0.1406381765832656\thave:0.11057783505957075\tand:0.11031011357436411\tbeen:0.09096988743009554\thad:0.08677536399616305\tis:0.07396742191716135\the:0.05287671337280502\t:0.01\n",
"and:0.29234911527061597\twas:0.12295751386511262\tis:0.09850110963903781\tthat:0.09666055421653383\tit:0.08628007122265054\tas:0.07887221239903662\tbe:0.0742410316365856\tthem:0.07029673534852585\tup:0.06984165640190107\t:0.01\n",
"-:0.1955940160750217\tai:0.19131789701304536\tthe:0.12500546945761565\ta:0.1122663220031812\tat:0.08318561829437636\tto:0.08033157879587687\tI:0.0721994987905799\tin:0.06640281037451583\tof:0.06369678919578707\t:0.01\n",
"of:0.35397372804259497\tin:0.14180258920126265\tto:0.1216750769376221\tand:0.07954231743330097\tfor:0.0767056495856364\twith:0.06945289534083686\ton:0.06443532594725582\tIn:0.047079561155946435\tall:0.035332856355543785\t:0.01\n",
"and:0.37662837437985086\tbe:0.110019309549802\tbut:0.07832370515264071\tis:0.07702846433182274\tor:0.07640284267451965\tit:0.07358441684982667\tthem:0.06796579246171842\twas:0.06675971655910125\tthat:0.06328737804071777\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.40371792662545586\tto:0.11334747351553359\tin:0.0994887886450325\tfor:0.07897697373877208\tby:0.06719749749805098\ton:0.0627049367792199\tthat:0.06077652975104778\tand:0.06001460068030803\twith:0.04377527276657952\t:0.01\n",
"he:0.2213062983360777\tit:0.18941825084243707\tthey:0.11624306468354537\tI:0.1025006780885515\tthat:0.09861876134706347\tIt:0.07255279350519053\tshe:0.06597395225033174\tand:0.06353368857175623\twho:0.05985251237504642\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"be:0.2774741939281957\twas:0.19632165087456482\tand:0.1015049469307876\tis:0.0983885717609357\tbeen:0.09205613024692595\tthickly:0.06744224284167538\ta:0.054789372040538194\thave:0.05383496207939411\twere:0.048187929296982526\t:0.01\n",
"of:0.29280448709967866\ttold:0.19321627326528953\tto:0.1512676393393326\ttell:0.07593723071378371\twith:0.074164911443784\tfor:0.06691302685325685\tupon:0.05525285275593939\tremind:0.04039033872142054\tamong:0.040053239807514705\t:0.01\n",
"purpose:0.37733917341731454\tinstead:0.09819396728465433\tcost:0.09148072139326437\tmeans:0.08969382980505945\tnumber:0.08912303002812705\tamount:0.07373767961386134\tout:0.06290247248285935\tcapable:0.054408724621174506\tmethod:0.05312040135368498\t:0.01\n",
"is:0.24385399570917227\tand:0.18072603736056325\twas:0.13909150313024798\tas:0.11971100279677171\tbe:0.09076323968231574\tit:0.0869237995244314\tnot:0.04819400795341327\twill:0.04582052470001501\tare:0.03491588914306946\t:0.01\n",
"and:0.22543624476068067\ttogether:0.12966310809592793\tdo:0.10541847545705389\tcovered:0.1046691945951787\tup:0.09589961048396699\tcharged:0.09080995849129517\tfilled:0.08599996831634163\tmet:0.08349003713897436\tcompared:0.06861340266058076\t:0.01\n",
"J:0.20177374532942308\t.:0.17575758327758875\tW:0.13607141068881864\tof:0.12477320881975337\tand:0.10566399165829582\tto:0.08185226339879643\tC:0.05831467554890671\tH:0.05389970552361192\tJ.:0.0518934157548052\t:0.01\n",
"and:0.29635189305068393\tso:0.14127294388052722\tfact:0.11934677619133646\tsaid:0.09382506667151261\tknow:0.09321340215184683\tsay:0.08466047801883074\tis:0.061229379962697866\tbut:0.05099440426762219\tbelieve:0.04910565580494222\t:0.01\n",
"the:0.41138206082976564\ta:0.14819940953349725\tand:0.098063760052819\tThe:0.07690811547333497\tA:0.0731429877200354\tsaid:0.06088514986862702\tof:0.04632072935990204\tthis:0.04399795421355318\ttho:0.031099832948465522\t:0.01\n",
"of:0.5723750096590735\tthe:0.16337880250042366\tin:0.060999818757823836\tby:0.04505998453812834\tto:0.041190290426563136\tat:0.040872014703705106\ta:0.029000303343045538\twith:0.01987453017180317\tand:0.017249245899433566\t:0.01\n",
"at:0.23386272713338413\tfor:0.15655516968872876\tof:0.14023015716123086\tto:0.10324521919401658\tas:0.0965852033873875\tand:0.07996850498232942\twas:0.06628148578294002\tthat:0.05701704423769881\tis:0.05625448843228383\t:0.01\n",
"the:0.3852091685420713\tof:0.15029792416713433\tand:0.13361736839571411\ta:0.11891032624485717\tin:0.05055226342026037\tto:0.042450229405257604\tfor:0.03799538051249681\tor:0.03633593244546821\tthat:0.034631406866740044\t:0.01\n",
"and:0.3254243009009799\tso:0.13004555675901283\tfact:0.1273173719299964\tknow:0.08967460936850209\tsaid:0.07440366454879636\tis:0.07395428550290474\tsay:0.07298005043663557\tbut:0.05159215888179986\tbelieve:0.044608001671372244\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.22187666539046547\twas:0.12686601763788147\tbe:0.12223740422275575\tto:0.11169237594610379\tthe:0.1098228472845865\twere:0.08235612301510478\tis:0.07548062368867921\tare:0.07193026664371964\tbeen:0.06773767617070342\t:0.01\n",
"the:0.17787778328175946\twas:0.13779200455225596\tand:0.13432448263663513\tis:0.13325319914791453\tbe:0.11306431618925698\ta:0.09298855374769686\tare:0.07367798310312705\tof:0.06961268176664637\tnot:0.05740899557470773\t:0.01\n",
"as:0.17481395904871108\tup:0.13266480410279496\tand:0.11423368936286925\taccording:0.10311874253127586\tback:0.09834039683776627\thim:0.09814074486700695\treturned:0.09685287995672426\twent:0.08599041765307629\tcame:0.08584436563977506\t:0.01\n",
"they:0.23393777631256657\twhich:0.16627304307435387\tthat:0.10939586978860875\twho:0.10657994993254907\twe:0.09698135249152573\tthere:0.09087336235393684\tand:0.07159697759333682\tThey:0.06669617653663383\tyou:0.04766549191648855\t:0.01\n",
"of:0.30685654322375056\tthe:0.17277666113342352\tto:0.13580928448557134\tand:0.13153503162563296\tMrs.:0.06336974015022757\t<s>:0.05095861803042851\tby:0.04621109421007231\twas:0.042341617263825584\t.:0.040141409877067595\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"purpose:0.16020690338009835\tinstead:0.1318414352170958\tthat:0.12971021471397523\tone:0.12119666361634611\ttion:0.09970463518669785\tout:0.08947672260421756\tmatter:0.08907418443854255\tsum:0.08458561159336495\tCourt:0.08420362924966159\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"be:0.300891211336914\twas:0.20682239666593405\tbeen:0.12901429098859457\twere:0.07277844767568147\tis:0.07169681094031735\tare:0.06396262318148886\thad:0.05231579234162367\thave:0.05079053542635918\thas:0.04172789144308713\t:0.01\n",
"the:0.5807336569763077\tunpaid:0.10504760279758622\tof:0.08768715548313799\tand:0.04806713755390664\tThe:0.03800679757219251\ttho:0.03503639920146044\tthat:0.03437865825687843\tin:0.03240335726861292\tfor:0.02863923488991713\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.5320031713038266\tto:0.12721001365896514\tin:0.06991172579291012\tfor:0.055735427765091834\tand:0.04843689613953406\tat:0.04680398629058309\tby:0.04114267031211182\tthat:0.035692016329137675\tfrom:0.0330640924078397\t:0.01\n",
"of:0.2394459909603569\tthe:0.1947621424096186\tand:0.19355548233287825\tto:0.1019519776606147\tbe:0.05930911108984446\twas:0.05095346787872063\tin:0.050616436498381434\the:0.050249655166503523\ta:0.0491557360030814\t:0.01\n",
"the:0.3253363112578563\tof:0.25929889916037463\tand:0.11704905458808958\tto:0.08016771178091942\ta:0.06687919304521713\this:0.040516417728533656\tin:0.03814834940695741\tat:0.03195657688838135\tfor:0.03064748614367055\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"of:0.3272236947854514\tto:0.18033639894497855\tand:0.0945164134082197\tin:0.0901106728386813\twith:0.08618925599357298\tby:0.08418297227255536\tfor:0.061749919121991244\tfrom:0.04244483431777292\tIn:0.023245838316776637\t:0.01\n",
"of:0.5446282484448152\tin:0.09588880263262123\tthat:0.06782061674126715\tto:0.06317623594419544\tfor:0.05334956523603492\tand:0.046289874935526644\tall:0.046262455958640925\tby:0.03665148666274653\twith:0.03593271344415209\t:0.01\n",
"there:0.1544156858983984\tand:0.15154532615540148\thundred:0.13975290515995087\t;:0.10813710696224275\tmen:0.10192354232980386\tthem,:0.08657603158531091\tacre,:0.08560971705447991\tright:0.08285507237547039\tman:0.07918461247894142\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.27155488786881954\tto:0.12289061183160364\twith:0.12237564080875053\tin:0.11934583063564608\tand:0.11646754161764654\tby:0.0788147942176031\tfor:0.05928174318244188\ton:0.05123152525987184\tfrom:0.04803742457761686\t:0.01\n",
"<s>:0.3507912081630965\tit.:0.16036362090578862\thim.:0.11297919003270439\tthem.:0.10436997683303664\tcountry.:0.06274808284594263\ttime.:0.057643290315365484\tlife.:0.04839644147999737\tand:0.04702541806573495\ther.:0.04568277135833347\t:0.01\n",
"it:0.44183840826923887\tIt:0.2905070937273141\the:0.07142232706496111\tthat:0.05142067462022052\twhich:0.04551473345569871\tHe:0.026924160706320276\twho:0.023357733275795288\tand:0.020830103601970736\tshe:0.018184765278480435\t:0.01\n",
"is:0.28983215605836515\tare:0.20595706324423715\twas:0.14938449946460186\tand:0.14083772016260823\twere:0.06053020078165925\tIs:0.0427131511339395\tbe:0.03930725726903745\tbut:0.03629945955011474\tit:0.02513849233543662\t:0.01\n",
"is:0.2713033249034709\twas:0.2058948008922341\tbe:0.18858432049551074\tare:0.11314129540792535\twere:0.04741656770581301\tnot:0.044610064693595415\tand:0.04441734958524081\tbeen:0.039209681704136704\tIs:0.03542259461207285\t:0.01\n",
"and:0.21387728820599297\tthat:0.18698894657054188\twill:0.13708665716303647\tto:0.1094922585468785\tas:0.09947174617215157\twhich:0.07381651603025481\twould:0.07008562780402315\twhen:0.04960396102563649\tbut:0.04957699848148416\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"of:0.26232669187481994\tand:0.16931911781224945\tto:0.11718651220256632\tin:0.09621193646023865\tat:0.0859686980242579\ton:0.07631337133449029\tis:0.06325852739186277\tfrom:0.061700012097449804\tfor:0.05771513280206492\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"to:0.69074759631942\tnot:0.06001246631846122\tand:0.05929974304336112\tcan:0.038586959477492716\twill:0.03810185306014532\tcould:0.03585575073843409\twe:0.023731969231010626\tthey:0.021832009420144557\twould:0.021831652391530485\t:0.01\n",
"was:0.34480415564140493\tbe:0.14392282710763357\tbeen:0.12147024725925532\twere:0.08826081095965922\tand:0.08691903681502756\tis:0.07691555382985027\thave:0.04615761224642736\thad:0.04190816914683712\tare:0.039641586993904646\t:0.01\n",
"and:0.337291893652781\tso:0.12479811775737729\tsay:0.09731998655540983\tfact:0.08972889028296344\tknow:0.08081272560971962\tsaid:0.07728661770633168\tis:0.06952093330887803\tall:0.06044144952898566\tshow:0.05279938559755335\t:0.01\n",
"the:0.18967412161958205\tand:0.16039812387112398\tbe:0.12426122688981939\twas:0.12339453984543904\tof:0.11493837137436898\tto:0.08700087712254828\tis:0.07482363279220873\tbeen:0.06158286699078446\ta:0.053926239494125026\t:0.01\n",
"in:0.4370172636883535\tof:0.15008635202565362\tIn:0.10855632210047603\tto:0.09684856693460839\tand:0.0750966351838039\tall:0.034549419575962796\ton:0.03225289039428687\tfor:0.032074135779035604\tfrom:0.023518414317819175\t:0.01\n",
"men:0.1552096277695256\ttime:0.13231023855713173\tmade:0.11916930696771816\tfree:0.10944645542804443\thim:0.10451473702889061\tright:0.09873402183806176\tin:0.0956681485607202\tup:0.08977759264085862\tlife:0.085169871209049\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.5192553203061661\tand:0.12113052297786034\tThe:0.07016215120444838\this:0.06150934168931097\ta:0.05947769285580788\ttheir:0.0476386428639993\tmany:0.04427509038688552\twith:0.03482704852894334\tof:0.03172418918657817\t:0.01\n",
"the:0.3500004365215156\tand:0.1395184794410679\tmore:0.13538481717512046\ta:0.07030048725806917\ttheir:0.06986550166833393\tan:0.06385305015131924\tof:0.05474362390208294\twas:0.05372828755849654\tno:0.05260531632399426\t:0.01\n",
"to:0.3477668603875156\twith:0.22502729008555164\tof:0.1069361896442856\tby:0.09279793570196346\tfor:0.0831518973377886\tupon:0.04155560436316076\tfrom:0.0328908310243469\tat:0.030835504419555404\ton:0.029037887035831978\t:0.01\n",
"in:0.14677046527170912\tdue:0.14314175067134854\t;:0.1400686596601736\tup:0.1058555937233023\tit,:0.10264376936874062\tthem,:0.09912823220545444\thim:0.08584525633389198\ttime:0.08407810709424965\tout:0.08246816567112968\t:0.01\n",
"that:0.4191864264306642\twhich:0.12306459701814328\tif:0.10584152411724204\tas:0.0800588901554097\twhen:0.0655064430572058\tand:0.062325436114272305\twhere:0.05382186608530334\twhat:0.04122796967848988\twhom:0.03896684734326954\t:0.01\n",
"of:0.23578156255867042\tthe:0.2048675271297145\tand:0.1529660415753781\tto:0.11673014398262535\tin:0.07001721765401415\ta:0.06517433763987328\tthat:0.053557675854135865\twith:0.048645982046066405\twhich:0.04225951155952196\t:0.01\n",
"and:0.1981893468303782\to'clock:0.1706329443139276\twhich:0.1182715657059016\tthat:0.11360989116217537\tat:0.10630663964754002\tof:0.0785673062637429\there:0.07749617757790149\tmeeting:0.06985934574171444\tarrived:0.05706678275671842\t:0.01\n",
"to:0.47881080580946517\tnot:0.15172394393239158\tand:0.10025444670534589\tI:0.07766534324449077\twill:0.053693168140763095\twe:0.034125125791958345\twould:0.03369067610121003\twho:0.030362693372996814\tyou:0.02967379690137824\t:0.01\n",
"the:0.5217230607895127\tin:0.1449896779446332\ton:0.0892342535064623\ta:0.05011647922339642\tof:0.04698611856157189\tThe:0.041954037541098846\tand:0.03694091494366297\tIn:0.03314817446886425\ttho:0.02490728302079739\t:0.01\n",
"a:0.29952661402825553\tof:0.17106891906754923\tthe:0.12451233879779824\twith:0.09242038749044193\tand:0.08389658261247289\tfor:0.06609226605350856\tvery:0.05505639709531334\tno:0.049237532776505916\tbe:0.04818896207815435\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"he:0.2079437575671482\tit:0.20672435332452901\tI:0.146985477545254\tIt:0.13264564263200318\tHe:0.09145723140060129\tand:0.06830414756391638\tshe:0.06100354070205323\twhich:0.04619508630018384\twho:0.02874076296431086\t:0.01\n",
"that:0.21181262171132761\tand:0.1997049674081212\tbut:0.12714435987288242\twhich:0.10634178959691329\twhen:0.101261685243251\tas:0.0862898389884942\tif:0.06830468895773235\twhat:0.05252645945111185\tbecause:0.03661358877016604\t:0.01\n",
"of:0.36949659961876824\tin:0.14790267157986592\tto:0.10424365003910047\ton:0.06473502672215217\tby:0.06409824674580428\tthat:0.06360651733745915\tfrom:0.05967930499964461\tIn:0.058460349110436544\tat:0.05777763384676873\t:0.01\n",
"a:0.2955475356894915\tmuch:0.14227605437343188\tthe:0.1330231806336569\tno:0.09515868922420281\tis:0.08138170589658017\tand:0.07411374323489062\tof:0.058883288070286914\tfar:0.05557666691750642\tor:0.05403913595995275\t:0.01\n",
"to:0.5379580390820518\tthe:0.13232891081019504\ta:0.12414730037158406\tof:0.05285674647883303\tthis:0.04301711020504316\tin:0.02915782702954404\tand:0.02508978999032385\tthat:0.024197764616281706\tor:0.021246511416143334\t:0.01\n",
"the:0.2637351962852026\tand:0.1829556970763585\tof:0.15512704992970708\tto:0.09901034785229981\tin:0.08891847907071722\ta:0.06188432822775293\this:0.05132313193481526\tsaid:0.04424377986600468\tthat:0.042801989757141876\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.3115198040205228\tat:0.27127126456272505\tin:0.16640327144733744\tIn:0.06661867588665406\tfor:0.05870197955975648\tto:0.03393764604118063\tand:0.03281338817697577\tthe:0.02719183441802036\tfrom:0.021542135886827237\t:0.01\n",
"of:0.4482715302577291\tin:0.11118714607946317\tto:0.10139391369512855\tfor:0.07634361624775979\tthat:0.06502811411542983\tby:0.05612464718030464\twith:0.051839976040185136\tand:0.04130857474328378\tfrom:0.03850248164071617\t:0.01\n",
"of:0.19996172310522484\tin:0.17013196949513326\tfor:0.12261789848148005\tand:0.10768579203231961\tto:0.10529725851606798\tby:0.08788852936573448\twith:0.07629652137553265\tthat:0.06837995885207736\tIn:0.051740348776429725\t:0.01\n",
"a:0.6263165344954237\tthe:0.20403160919348298\tand:0.04019848135843524\tof:0.026188077718931144\tThe:0.023007160036504624\tin:0.020421729461278886\ttho:0.016932832464886548\tare:0.016593022564907453\tsome:0.016310552706149412\t:0.01\n",
"at:0.22606604972269348\tof:0.20393953051698147\tin:0.16750080429008354\tto:0.09178212860210258\ton:0.07338281661280806\tfor:0.07328046460725855\tand:0.0653471204622718\tthat:0.045503935447936676\tfrom:0.04319714973786389\t:0.01\n",
"the:0.9112135753864239\ttho:0.02734053182795856\ta:0.019282717998079145\ttbe:0.010965017817872933\tThe:0.008445554646220536\tour:0.004661272547442837\tthis:0.004031802458396669\tin:0.0021637809799215147\tgreat:0.0018957463376838692\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.4651183747910109\tand:0.23839941671528825\tnot:0.10843761689761129\twill:0.05116362306444797\tyou:0.02835092726458845\twould:0.02719796087728545\tshall:0.026462186538697693\tcan:0.02342699799430054\tcould:0.021442895856769395\t:0.01\n",
"he:0.3316139876263879\twho:0.14938694521589363\tI:0.1208983255188036\tthey:0.10122346713662168\tshe:0.08903072838946458\tHe:0.06616807463164451\tand:0.055458599063748115\twe:0.04425765918918904\thave:0.03196221322824696\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"<s>:0.5646520579580919\tit.:0.09089546172393256\t.:0.07793751305210196\tthem.:0.05991119530134609\ttime.:0.04451882898744064\tday.:0.04360749118316577\tof:0.03656103935943038\tcountry.:0.03638970349499151\tyear.:0.03552670893949924\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.22091272289690156\tof:0.1790441874241337\ttwo:0.1275772451423269\tand:0.11013987145527196\tthree:0.10070189338761151\tfive:0.07415528099705698\tin:0.06231004189297241\tfour:0.05919027268682364\t30:0.0559684841169014\t:0.01\n",
"of:0.322693140242567\tto:0.13257442499521735\tor:0.10699180978195823\tin:0.0964435226576277\tfor:0.07953147196107471\tthan:0.07633593719377346\tby:0.06900454737536652\twithout:0.054092466452098864\tthat:0.05233267934031627\t:0.01\n",
"the:0.3816442831565538\tof:0.18618343102535034\tand:0.12678786722057095\ta:0.06688887799368758\tThe:0.0641275999282084\tto:0.045779801172304194\tin:0.04394196350010287\tby:0.03808711297107761\tan:0.036559063032144234\t:0.01\n",
"has:0.3411839907584671\thave:0.2862159384350448\thad:0.22557004550678963\tnot:0.05595292992768297\thaving:0.03439173081368982\tnever:0.01346122166656948\tlias:0.013122747259582852\tbad:0.01150365519421495\tever:0.008597740437958348\t:0.01\n",
"of:0.373790027318163\tand:0.11064651762657035\tby:0.0979476469116305\tto:0.09608424347949548\tthat:0.09365692350098351\tin:0.08591511003978067\tfrom:0.04868450381138683\tfor:0.047314028860021354\twith:0.035960998451968235\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"to:0.22136811937677608\twith:0.19067523515439797\tfor:0.15489851718786024\tof:0.08633811866860273\tupon:0.0820147866155007\tby:0.07640349123884363\tasked:0.06756583042167418\ttold:0.058074684994298256\tagainst:0.052661216342046194\t:0.01\n",
"the:0.764779933133918\tof:0.04688842592190769\ttho:0.04306463765708222\tsaid:0.039774930244553745\tand:0.037420771169513777\tin:0.016898980760091463\ttbe:0.016427900807212625\tThe:0.01594102655235746\tIn:0.008803393753363092\t:0.01\n",
"of:0.25823735451086327\tthe:0.13793974357911254\tand:0.1261945327872129\tin:0.10903247852169387\ta:0.10865155169663732\tto:0.09238292652407407\t-:0.07710713226639392\tfor:0.04331262260445606\tby:0.03714165750955609\t:0.01\n",
"of:0.2114550857074353\tthe:0.19352291644409095\tand:0.1896526220118223\tto:0.11488066497353205\tbe:0.08121544058469315\twas:0.06810648818392583\tis:0.046598731239590054\tMrs.:0.04243236015556625\tMr.:0.04213569069934405\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3560104598159234\tan:0.24298780543928766\tgreat:0.07852893383835095\tthis:0.07042095950017263\tand:0.06788818553333412\tsome:0.05736241213937373\tany:0.04692347558695154\tof:0.0378091561370981\this:0.03206861200950773\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.29169997815308213\twas:0.13287036271431182\tout:0.08873310066938214\tthat:0.08746131418060452\tplaced:0.08440072742047074\twork:0.08020079681811662\tmade:0.07677797059304477\tis:0.0747237183823982\tup:0.07313203106858902\t:0.01\n",
"50:0.17696075138401982\t20:0.1635242596753417\t120:0.11569234482250411\t25:0.09622524501884862\tthe:0.09116776642402592\t14:0.09025212677584296\t30:0.08636802783952457\t75:0.085709192750074\t40:0.08410028530981828\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"as:0.16028142770550782\tup:0.147939991445873\twent:0.12914682124565996\tand:0.12285764149266094\tgo:0.11127529305121664\tcame:0.08828957261434253\treturned:0.08168405719993749\thim:0.07482450929382749\tthem:0.073700685950974\t:0.01\n",
"of:0.1717874828321503\tand:0.1373574380324188\tto:0.1283710488380373\tor:0.12751224384292095\tthe:0.11877046731793289\tin:0.08923583856816646\ta:0.07774279702482251\tabout:0.076154142210941\tfor:0.06306854133260967\t:0.01\n",
"to:0.7722086585157787\tand:0.06568239245776375\twill:0.043123202033786424\twould:0.031035428858538786\tthe:0.020520347305491973\tshall:0.017366656413079638\tnot:0.015485813695919014\tI:0.012485648822601326\tTo:0.01209185189704032\t:0.01\n",
"per:0.9407927398405563\tthe:0.02353445953465774\tand:0.01156127021477661\tpor:0.0087834765203416\tThe:0.0014000593854953133\ta:0.0011531972389943136\tlong:0.0010128305465939428\t<s>:0.0009396014645006802\tor:0.0008223652540834668\t:0.01\n",
"two:0.20560826184437175\tthree:0.2013905416332901\tfour:0.12964774083596878\tfive:0.09067616423851513\tsix:0.07879183720770223\ttwenty:0.07649520413442991\tfew:0.0741390281613948\tten:0.06962337472934724\tmany:0.06362784721497998\t:0.01\n",
"is:0.18274512143258348\twell:0.1783794917089918\tand:0.12979905236179742\tare:0.09470060560220034\twas:0.09268809810315956\tbe:0.08463743809284936\tnot:0.08026267801038711\tregarded:0.07893969676405788\tsuch:0.06784781792397297\t:0.01\n",
"the:0.3175675599591076\ta:0.18266059135641793\this:0.1327496327498111\tof:0.11893847752834427\tin:0.07994602251455023\tto:0.05003060955716669\tand:0.044076720284499875\tor:0.03636924248622077\tmy:0.027661143563881607\t:0.01\n",
"to:0.33364509937622233\twill:0.24892937479640295\tmay:0.075570484480394\tshall:0.0725069146813833\tshould:0.0662438518702432\twould:0.0634324921749828\tnot:0.05386722502244131\tmust:0.04330795227753888\tcan:0.03249660532039126\t:0.01\n",
"State:0.25158975872347605\tcity:0.16920028955541705\tCity:0.11558640111009039\tcounty:0.084380887430965\tday:0.08382175836935132\tstate:0.07836218195318428\tline:0.07305905324403515\tside:0.06829379556379227\tCounty:0.06570587404968839\t:0.01\n",
"and:0.20630971761389724\ta:0.18055698264934741\twas:0.12965908148279018\tis:0.11926675308808851\tare:0.08092477168492956\tbut:0.0759316949893855\tor:0.0705720600064159\tthe:0.0639800478664984\tof:0.06279889061864719\t:0.01\n",
"he:0.2794395178124017\tand:0.1182850726747716\tI:0.1136712112981052\tthey:0.11234675662993023\twho:0.09703233066540769\tit:0.09040717997784747\tshe:0.07188421273563414\tHe:0.05664830836325821\tthat:0.05028540984264371\t:0.01\n",
"of:0.36155491191593947\tand:0.17862241144841867\tthat:0.1001346343875186\tthe:0.09178183180594884\tin:0.07185999036153363\tby:0.0543517018543077\t.:0.05024884621954054\tto:0.047143681729874064\tat:0.034301990276918555\t:0.01\n",
"as:0.1505270934744848\taccording:0.12666453991392707\tup:0.1195334514035628\tcome:0.11873952822050848\tregard:0.10683894108162358\tcame:0.105922433852858\tand:0.09179275619163575\treference:0.08812851772111138\twent:0.08185273814028814\t:0.01\n",
"the:0.2280214105008885\ta:0.21677907247353084\tthis:0.14879193819108294\tsuch:0.0989740934673381\tof:0.08835562476775904\this:0.06804129028343495\tand:0.05291823978153921\tsame:0.04654694117600858\tsaid:0.04157138935841789\t:0.01\n",
"and:0.23673877075921537\tthe:0.22279374833468918\tto:0.12792854428449588\tof:0.11719546975217965\twas:0.05975737695549627\tis:0.058375254721025054\twill:0.05735286909533062\tare:0.05498987872049494\tbe:0.05486808737707316\t:0.01\n",
"sum:0.1648703730892017\tout:0.11307775521688435\tamount:0.11090839996168092\tnumber:0.11072884578616649\tBoard:0.10709279218170512\tday:0.10091951320741446\tline:0.09892782668492611\tcounty:0.09783432205349214\tpurpose:0.0856401718185288\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"w:0.4345387379451947\tand:0.12304252769626556\ta:0.0772320447477361\twas:0.07364721392422462\tof:0.07305930956303454\tis:0.06299454361591335\thave:0.05812906729269213\tto:0.04640750008125672\tfor:0.04094905513368224\t:0.01\n",
"of:0.2827344961127604\tand:0.20741644021463918\tin:0.13360992159563453\tto:0.11988714523803431\tMr.:0.06238496550506883\tby:0.05684554952949244\tthe:0.05249784860419568\twith:0.03808224069278766\tMrs.:0.03654139250738693\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"a:0.40551079203260504\tthe:0.2190382193286064\tone:0.07380242490573322\this:0.07048624348734198\tof:0.06662306842590171\ton:0.04695519601119794\ttheir:0.045473116460571575\tand:0.034076235752745494\tsome:0.0280347035952967\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"it:0.20232519177660643\the:0.16234484086264728\tIt:0.1554090302075327\tI:0.1435863272450962\tthere:0.07378138159381324\tand:0.07333071483799818\tHe:0.07174050734643728\twhich:0.05781177237565947\tshe:0.049670233754209356\t:0.01\n",
"as:0.15812488837556046\tis:0.15395329874036037\twas:0.14337836658730613\tin:0.1189425321040315\twith:0.10320917101892087\tof:0.09267011223645212\tto:0.07859734495103216\tand:0.07064305390623205\tat:0.07048123208010419\t:0.01\n",
"and:0.34824870366262595\tthe:0.13479544727800072\tis:0.11364821415974406\twas:0.08999792706323118\tare:0.0889557404275931\tto:0.061385314567896566\tof:0.05207163309768841\tan:0.0506734665372931\thave:0.05022355320592696\t:0.01\n",
"of:0.22910150922766157\tin:0.11539276438983914\tas:0.11127934553323833\tis:0.1093065249044014\tto:0.10099004487606558\twith:0.08929933663062477\tby:0.08343707285879862\tand:0.07635553566197055\twas:0.07483786591740003\t:0.01\n",
"all:0.30826037754720076\tand:0.19777451186045047\tthe:0.13783817867705564\tor:0.07141897585837967\tof:0.06627411872680106\tbe:0.05553444032781112\tis:0.05461887495386119\tnot:0.0496252003329302\tmuch:0.048655321715510035\t:0.01\n",
"of:0.2518397786394566\tin:0.15268657696135038\twith:0.10103212007825894\tto:0.09625653015249301\tand:0.08844129005029876\tis:0.08405557965366219\tby:0.08083872128358498\tfor:0.07136769707335582\tas:0.06348170610753935\t:0.01\n",
"to:0.21571496008537056\tand:0.2147437433322211\tof:0.1349226313614745\tfor:0.08176353656957865\tthe:0.07860126999964767\t<s>:0.07154275267433646\tthat:0.06954235828049105\tin:0.06268491811446596\ton:0.060483829582413974\t:0.01\n",
"have:0.19456014853100315\the:0.16417662207190736\tI:0.13019492783837258\thas:0.11530129941502745\tand:0.10578892868515052\twho:0.10423060491937562\thad:0.09625077757882439\tbe:0.04252228321977104\tHe:0.03697440774056783\t:0.01\n",
"a:0.27394807961331546\tthe:0.24707931852227033\tany:0.1828129406364805\tno:0.06611330336948493\tThe:0.05580620906041495\tother:0.054703309277701694\tsome:0.03861219611191327\tevery:0.03654590574501043\tof:0.03437873766340838\t:0.01\n",
"the:0.3299177818426395\tof:0.17897670274827274\tto:0.12537937924608727\tand:0.10985980430753879\tin:0.06240993305390327\tfor:0.06192854377065039\tbe:0.05083764956696977\twas:0.03700580416928512\tis:0.0336844012946531\t:0.01\n",
"turned:0.27807623505278334\twent:0.18537108391497592\twas:0.10600921312090722\tgo:0.0908618015365168\tall:0.0805360473686907\tcome:0.07713603386247245\tis:0.06241062691587634\tcame:0.056024000071036535\tand:0.05357495815674072\t:0.01\n",
"<s>:0.46828547773989276\tit.:0.1210685524434765\thim.:0.08673144706471538\tthem.:0.07093353086408377\t?:0.056706220928418094\ther.:0.05071896187013211\tand:0.05018536997217528\tyears.:0.043796443687052246\tagain.:0.04157399543005393\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.17084699314207222\tand:0.12158997349117337\tis:0.11987771149535267\tno:0.1157578302632057\tany:0.11243295082853966\tto:0.10466951552467968\twas:0.08767625561376328\tthe:0.08444181812996866\tthat:0.07270695151124475\t:0.01\n",
"and:0.18256157749026333\tto:0.16433979570443547\tof:0.15457884979586445\tthe:0.1277827385426324\twas:0.08436879473166353\tbe:0.0802923412409957\tfor:0.07572785229194459\tis:0.06129413214409847\tin:0.05905391805810186\t:0.01\n",
"of:0.2745756504289919\tin:0.18508862102155468\tto:0.14547648598143278\tand:0.09953333714392165\tfor:0.06981875242353223\twith:0.059653841947785835\ton:0.059203584441771755\tfrom:0.05099623668750375\tat:0.04565348992350539\t:0.01\n",
"of:0.22598847773788652\tin:0.12795026761231412\tas:0.10803511903377902\twith:0.10289676309994414\tto:0.1009209677774944\tis:0.0958816162923596\tand:0.08543175696245597\twas:0.07364376919960383\tfor:0.0692512622841624\t:0.01\n",
"and:0.20985953749929157\t<s>:0.19655907591634078\thim:0.14562357523866687\twas:0.13081175984509055\tout:0.06888656479548368\tis:0.06378433190510589\tbe:0.06228516144860735\tit:0.05743414475324811\tmade:0.054755848598165305\t:0.01\n",
"and:0.35012442836304686\twas:0.174026635596318\tis:0.10012113301283442\tbe:0.07806336476909076\tmade:0.062337293361642836\tsucceeded:0.05872616518471301\tare:0.05834028488492863\tbeen:0.05723821297358973\twere:0.05102248185383586\t:0.01\n",
"of:0.3682911734597937\tin:0.1667750163354473\tto:0.11784804359411397\ton:0.08453090012527725\tand:0.05994944198646934\tthat:0.056927445681821245\tfrom:0.0525145106366822\tat:0.04324939597191228\tfor:0.03991407220848263\t:0.01\n",
"manner:0.3946119345675231\tand:0.18749701924918538\tthat:0.10855654014299566\tway:0.07037996389927752\ttime:0.05382876808607621\tit:0.04775881818150396\tall:0.04270273332279963\tone:0.04238708288685656\tpart:0.04227713966378213\t:0.01\n",
"the:0.29074625237501417\tof:0.15412710942283248\tand:0.13830180997081062\ta:0.12209640387724308\tto:0.0939310268284685\tbe:0.05971045517402114\twas:0.05080404237383469\tis:0.04571900099510077\tin:0.03456389898267466\t:0.01\n",
"<s>:0.5142285592734251\t.:0.08031327941640193\tit.:0.0786305646815755\tthem.:0.06701746599132072\tpurchaser.:0.05525054024725761\tyear.:0.05146588171607162\tweek.:0.050883066760968695\ttime.:0.04840091255177975\tStates.:0.043809729361198944\t:0.01\n",
"of:0.2117002760221176\tand:0.19029866500397316\twas:0.14164353725659226\tis:0.11037720173196112\tare:0.09749490185855303\twere:0.07355667461294046\tin:0.06454074158718145\tfor:0.05676993943907719\tall:0.04361806248760372\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
"the:0.7558679898397385\tThe:0.07064841215377446\ttho:0.03019917199219242\ta:0.027976266723501092\tand:0.0262112426589935\this:0.021461053024908323\ttheir:0.02090382119119497\tvery:0.019244003789258377\tour:0.017488038626438364\t:0.01\n",
"a:0.6472114806294291\tthe:0.1956586094302896\tof:0.04193039305654485\tThe:0.028055670591450237\tA:0.025628047366395117\tin:0.020082275142360505\tand:0.013275975720074797\tto:0.009345242027813637\twith:0.008812306035642169\t:0.01\n",
"and:0.24950000697956445\thave:0.19401074961209275\thad:0.10501109271790146\tis:0.09760256987076756\thas:0.09386129600092614\tof:0.06782931415815023\twas:0.06200918600918231\twhich:0.060683060158410365\tto:0.05949272449300475\t:0.01\n",
"a:0.46577521148378026\tthe:0.14946965172908586\tof:0.12442151240181873\tvery:0.05816361401677789\tand:0.050824775796694636\tso:0.04232104367388091\twith:0.0395369152134407\tas:0.030268088051194048\tin:0.029219187633326867\t:0.01\n",
"the:0.33601536274839616\tof:0.16958902826991312\tMr.:0.10573912457216135\tThe:0.10541590539910746\tand:0.08531333366099246\tthat:0.07291914405203645\ta:0.05455260066519831\tthis:0.03190090597915657\tin:0.028554594653037953\t:0.01\n",
"in:0.281905473606721\tof:0.2208443117457162\twith:0.09602983681673131\tby:0.08413222020440396\tfrom:0.08322772170054299\tto:0.08058352291560873\ton:0.05299664563448295\tupon:0.045612510177885486\tand:0.044667757197907526\t:0.01\n",
"the:0.7379829391062965\tThe:0.1180904707906519\ta:0.04368778532601848\ttho:0.03197297135755817\this:0.02030778167586781\ttbe:0.010602551895248988\ttheir:0.009687095132455012\twhose:0.009563573524103895\tof:0.008104831191799385\t:0.01\n",
"to:0.6029234748158575\tnot:0.10685677045378247\twill:0.0805053125791318\twould:0.07348435472152394\tand:0.058714604224932194\tmay:0.01928356596757802\tmust:0.017761258017253204\tI:0.01655037912139117\twe:0.013920280098549686\t:0.01\n",
"and:0.18503758169557416\tconnected:0.15034217911809952\tcomply:0.1345998565590013\tor:0.12199693264044557\tconnection:0.09499153051699552\ttogether:0.09260556418715356\tinterfere:0.0835214849837128\tnot:0.06429576856749074\tdo:0.06260910173152678\t:0.01\n",
"the:0.3254420906057255\tof:0.21437796623315344\this:0.1246815137516165\ttheir:0.1009609602040718\tin:0.05749607304232446\tthis:0.05294126114014088\tgood:0.04902274255157519\ta:0.03514503851511436\tits:0.029932353956277934\t:0.01\n",
"would:0.22980511667265655\tto:0.17299540970927665\twho:0.12482764014450815\tthey:0.1035530767531353\tI:0.09251266344910343\twhich:0.07981734282547859\tmust:0.068890066387715\tmight:0.06196287097814179\tshall:0.055635813079984546\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.33234301859327503\tof:0.16511810112924477\tand:0.14359386254401948\ta:0.07809521494992094\tthat:0.07723479213752328\tThe:0.052790940042757695\tin:0.051550293467254364\tno:0.0449303041329755\tMr.:0.04434347300302878\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"was:0.27640552810006325\tis:0.17553117117550257\thad:0.13626884643678625\thave:0.11378524389463139\thas:0.0995838201446808\tand:0.05070803731156017\tnot:0.04954077122201075\tbe:0.04794618881600039\tbeen:0.04023039289876442\t:0.01\n",
"went:0.17585466353626125\tcome:0.17198192666961595\tgo:0.1712186648483594\tcame:0.15911310166854079\tbrought:0.0803766423230145\tget:0.06901799674136543\tsent:0.05526381723288371\tway:0.0546348091375371\tthem:0.05253837784242174\t:0.01\n",
"and:0.19981924536136086\table:0.13248592988721566\torder:0.123134489772308\thim:0.11025442400641676\tnecessary:0.09921571203751137\tunable:0.08749410447623966\tenough:0.08095777976827818\tis:0.0791396149871568\tthem:0.07749869970351272\t:0.01\n",
"the:0.8863726773530108\ttho:0.04767429894468294\tThe:0.02037911013063574\ttbe:0.014848854384155502\tof:0.010704508851547225\tand:0.0029070840653533446\tby:0.0026907681676473397\ta:0.0026265092802739095\ttlie:0.0017961888226931213\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"be:0.28858646695323614\twas:0.16714592776769222\tand:0.15110718885684146\tbeen:0.11576447226614643\tis:0.09112974735725668\twere:0.05681924828224646\tare:0.050796012131709846\tbeing:0.03724424530513167\the:0.0314066910797392\t:0.01\n",
"to:0.5157875507290953\tand:0.2459325709910596\twill:0.05196507920024816\tnot:0.04772398002497765\tor:0.032900922034453516\tI:0.028307930140029528\tthat:0.022778909185456102\tthe:0.022346543037343174\twe:0.022256514657336874\t:0.01\n",
"the:0.36640333986457585\ta:0.1372486655677365\tmotor:0.1042142293115653\tthis:0.08232170343735873\ttheir:0.08107947394660432\tThe:0.08079892759989107\this:0.049020273396419164\tour:0.04816487809018275\tsuch:0.04074850878566643\t:0.01\n",
"to:0.601275193532634\twill:0.1535164112552777\twould:0.06188121244442653\tthe:0.05044344248960314\tshall:0.035898317121772993\tshould:0.02599589137460433\tand:0.02248956751000779\tthis:0.0206830615302008\tnot:0.017816902741472858\t:0.01\n",
"part:0.2616051257347694\tone:0.17241232749815008\tside:0.16360342569786457\tportion:0.08433966332604263\tpayment:0.06971510808453478\tparts:0.06227259080338477\tmembers:0.059937409742747624\tthat:0.05968262067665106\tand:0.056431728435855075\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"the:0.5288340082107037\tof:0.1345092900641953\tThe:0.10019513558920254\tand:0.06827770859663161\tby:0.03895836783961232\tthat:0.03787201344885447\this:0.03182705254894561\ttho:0.03019539818297228\ttheir:0.01933102551888237\t:0.01\n",
"he:0.3810972862418162\tand:0.13732629704063093\tit:0.10248513047329356\twho:0.07499796349036131\tIt:0.07326875792388805\tshe:0.059252559226673315\tthat:0.05899933351457358\tman:0.05143179083907942\twhich:0.05114088124968359\t:0.01\n",
"of:0.46519781712888447\tto:0.12827846768131573\tin:0.0928314075708892\ton:0.0644297231595585\tby:0.06422402574303139\tand:0.055338823804895826\tfrom:0.045648513579994165\tfor:0.03864478600662316\tthat:0.03540643532480745\t:0.01\n",
"to:0.27372874601438985\twill:0.18577083655481674\tmay:0.11670742417102431\twould:0.0866792379509786\tshould:0.0793354824989431\tcan:0.07250434050893131\tnot:0.060410033471595424\tmust:0.05960981147848367\tcould:0.0552540873508369\t:0.01\n",
"the:0.7440202977974871\tfirst:0.05726106349322123\ta:0.044923708086381985\ttho:0.039198177118075085\tThe:0.026899733551350856\tsecond:0.02612287573799956\tthird:0.017757505449749283\tupper:0.017637270072441497\ttbe:0.016179368693293228\t:0.01\n",
"<s>:0.27499824260454503\tit.:0.17144182218368695\tthem.:0.12355485906336766\thim.:0.10010627958996267\ttime.:0.0793371169175052\tcountry.:0.0628905740007042\tyears.:0.06235059090010292\tyear.:0.05969941977393271\tday.:0.055621094966192705\t:0.01\n",
"of:0.4692813805067316\tin:0.124871019393645\tto:0.11522135813007803\ton:0.08123962528773124\tby:0.06761545370202654\tfrom:0.04682531583038806\tat:0.03171170698642459\tand:0.029345645231550803\tIn:0.023888494931424142\t:0.01\n",
"of:0.37881767676723654\tin:0.11802519229262583\tto:0.09830467167268366\tafter:0.08143319626065802\tfor:0.07998431243079566\tand:0.06689911891671564\ton:0.06089725477428846\tfrom:0.05292869099520034\tby:0.052709885889795874\t:0.01\n",
"and:0.2090195077899725\tas:0.1925037486233987\tthat:0.15721868075927636\twhen:0.13375825943665057\tWhen:0.07845723209261113\tbut:0.07165197216926787\twhich:0.06731561071222111\twhat:0.040129227716270054\tAs:0.039945760700331574\t:0.01\n",
"and:0.2887549460808696\tmade:0.2417013651103506\tsecured:0.0929775061531612\tor:0.0875029412951301\tthat:0.07254702126358528\ted:0.05584015454002708\tup:0.05382973996555791\tfollowed:0.04859297817780225\tcaused:0.04825334741351589\t:0.01\n",
"to:0.2664847505528432\tfor:0.16470498863744562\tof:0.13208997892734467\tand:0.10341581862003653\twith:0.07935118510033001\thave:0.06920239497884952\tthat:0.06297576873902244\thad:0.05881151360444231\tfrom:0.05296360083968569\t:0.01\n",
"the:0.2958364752533239\tand:0.23897696395818607\tof:0.17211722188072948\tto:0.058432106604849286\tin:0.05750546798312862\tor:0.05080339675901848\tall:0.04714435462399913\ttheir:0.03536773002067187\ta:0.033816282916093135\t:0.01\n",
"a:0.30581256356597325\tthis:0.256340011905686\tthe:0.22164573462131068\tthat:0.08333065537798785\tto:0.03986664372669964\tin:0.02557022866234683\tany:0.02060963645241542\twhich:0.018877173836576985\tone:0.017947351851003407\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"and:0.24190925323089366\twas:0.13799128793841878\tsucceeded:0.11315442464504588\tis:0.10923227395892864\tbe:0.10139430686441205\tare:0.07627718686109143\tmade:0.0710811247270995\tthat:0.0705231871131748\tit:0.06843695466093523\t:0.01\n",
"re-:0.2092351283104805\the:0.17543290731081146\tand:0.14729850204550246\tbe:0.1469730969356882\twas:0.08790311318192516\tHe:0.06637256058432955\tI:0.061353881714136145\twho:0.05232956503335638\thave:0.04310124488377011\t:0.01\n",
"the:0.3331925550671004\tof:0.2332480466534416\tand:0.12395923476969917\ta:0.07928370184843045\tMr.:0.05736952256192119\tto:0.04770976412706071\tThe:0.04417668138726264\tin:0.04189710404630304\tthat:0.029163389538780702\t:0.01\n",
"of:0.3235591095485659\tin:0.1271571080122114\tfor:0.1137598447070894\tto:0.10632967106126863\tby:0.07595704196435335\tand:0.0631407936715245\tthat:0.06271523787787198\tIn:0.06214781076019327\tfrom:0.05523338239692164\t:0.01\n",
"well:0.21321257425074594\tknown:0.1833023137221186\tsoon:0.17017982311130794\tfar:0.13451377472303216\tand:0.1048509904369157\tlong:0.06163044115944836\tsuch:0.04848962176196867\tjust:0.03999506790086283\tmuch:0.03382539293359975\t:0.01\n",
"for:0.5440819813048948\tof:0.19560472589469857\tto:0.07345158632393214\tin:0.05366312897429308\tat:0.03077391536533446\tthat:0.025231972607796506\tby:0.024350320863822435\tand:0.02363546884497303\tduring:0.019206899820254954\t:0.01\n",
"one:0.26177410899864684\tout:0.15556960502827208\tpart:0.1300889311722691\tsome:0.11334280627319535\ttime:0.07945996676975539\taccount:0.07275376099225171\tall:0.06506597645229724\tand:0.0565737601528326\tthat:0.055371084160479686\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.40236705751255364\tof:0.16285296581723993\tand:0.12204690126174438\ta:0.10948767673778641\tin:0.053718273105889815\tto:0.05170802285770029\twith:0.03383200974430577\this:0.028183247890129173\tThe:0.02580384507265061\t:0.01\n",
"in:0.6723889924006204\tIn:0.17986011302274252\tthe:0.045882262853098786\ta:0.024626750473032873\tof:0.01933995933193952\tthis:0.01853109118268934\tiu:0.011098259840360064\this:0.011056978437538863\ttheir:0.0072155924579775455\t:0.01\n",
"in:0.20715768094177783\tup:0.18279332003914164\t;:0.11837694749579784\thim,:0.10739149963476594\thim:0.08666239110162094\tit,:0.08591651498111183\tthem,:0.0703075200507604\tup,:0.06704658566797499\t,:0.06434754008704854\t:0.01\n",
"a:0.20629807968578695\tof:0.1656464860166874\tthe:0.1528574965406212\tyoung:0.12186170847375105\tgood:0.07956867865172777\tone:0.07795841145824815\twhite:0.07126729228021007\tgreat:0.05748111799546429\tto:0.057060728897503125\t:0.01\n",
"and:0.2512549561975129\tup:0.11882662674701289\tfilled:0.11237413665917496\tdo:0.10246971047620451\tit:0.10148832571202192\thim:0.0896473868228615\tcovered:0.07618051411203293\tcharged:0.07389072779839465\tmade:0.06386761547478371\t:0.01\n",
"and:0.38436506392192854\ttime:0.14871889696052248\treason:0.1091829920085257\tprovided:0.08369359689298067\tthat:0.06037544533546829\tday:0.05853184432328357\tit:0.049460312916072814\tmoney:0.04787760696196815\tway:0.04779424067924964\t:0.01\n",
"of:0.35034428823464064\tto:0.13563217114151757\tfor:0.1025688283775102\tin:0.0869346564238885\tand:0.07252676840279183\tat:0.06950751575463678\ton:0.06647685339855856\tby:0.05384485100626352\twith:0.05216406726019245\t:0.01\n",
"<s>:0.5637974075176672\tit.:0.09327743003396184\t.:0.07144834322150803\thim.:0.05727610092087741\tthem.:0.0531454231955193\tMr.:0.04610674255167584\ttime.:0.04099530745119179\tday.:0.03404761169106698\twater.:0.02990563341653165\t:0.01\n",
"of:0.42985733560537825\tin:0.10077283916251684\tfor:0.07658891722966664\tby:0.07086524247664709\tthat:0.07078742583623931\tand:0.06996633259610034\tto:0.06479491785570278\tall:0.05484208808056307\tany:0.05152490115718571\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.664244108794009\ta:0.09008511587377786\ttho:0.04094000892030076\tof:0.037987339414759576\tThe:0.0349058317932444\tto:0.03208203891915236\tstock:0.030891155833244865\tand:0.03055222542911535\tthis:0.028312175022395723\t:0.01\n",
"the:0.2485322325262682\tof:0.14221305581248522\tto:0.13323722793295562\ta:0.12233064177599907\tand:0.11954433183912364\tin:0.07060356588227204\tby:0.05378458648809466\t<s>:0.05103488013625822\tor:0.04871947760654333\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.19063277983277563\tand:0.1388183430076511\this:0.12534227126861316\tgood:0.12387767124917096\ttheir:0.11161899069659724\tof:0.09500861008547909\tabiding:0.07899989039249775\ta:0.06752732482978023\tno:0.058174118637434845\t:0.01\n",
"the:0.2728132657644213\tof:0.22782783978951207\tand:0.19989617589222555\tto:0.0742455104891707\ta:0.06329747792987064\t.:0.04060534660577226\tby:0.03834151257715171\tin:0.037600432997478644\t<s>:0.0353724379543971\t:0.01\n",
"the:0.2348936864380875\tof:0.17141990857045894\tand:0.15092221108899265\ta:0.10125325371681407\tto:0.08978991230211596\tbe:0.07036792028887345\tin:0.0685027598781156\twas:0.06545509613683566\tis:0.037395251579706204\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.7244932461082945\tthis:0.09248144998528925\ttho:0.04136333342260401\tThe:0.03061024167412252\tYork:0.02882594047769975\tsaid:0.020326468936143864\ta:0.019202209703562866\tthat:0.017487048652926756\ttbe:0.015210061039356524\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.24967287767908994\tand:0.17202113576094602\tto:0.13254047026354387\tthe:0.11921417082348272\tby:0.11589441278082113\tin:0.06261868148612214\tthat:0.05098804643301221\tat:0.045549883067955974\t<s>:0.04150032170502597\t:0.01\n",
"to:0.2717595834071824\tthe:0.21576383858826972\tand:0.20772202455023198\twas:0.0622010796753446\ta:0.05602763003387055\tbe:0.054667579722422054\tof:0.05065058276658894\tis:0.036841140787709614\tare:0.03436654046838008\t:0.01\n",
"the:0.4688746627396616\ta:0.1551350280115528\tof:0.1271695963839968\tand:0.0644580849878268\tin:0.04422617794363865\tThe:0.03593115277740183\ttho:0.03334896973268421\tat:0.0312454421259938\tto:0.029610885297243653\t:0.01\n",
"the:0.4084789409141881\ta:0.16736400427311016\tand:0.1370562923042262\tin:0.07353059646339409\tof:0.07254317223682406\tbe:0.040374186293797236\tto:0.03985826587134968\tThe:0.025466830096012274\ttho:0.025327711547098203\t:0.01\n",
"the:0.6177363684873278\tof:0.11769399657308828\tand:0.06658094032166587\tThe:0.043997359773382524\ttho:0.03814355479338727\tin:0.03544348438299672\ton:0.027014448269052704\tthat:0.022655776542070256\ta:0.02073407085702849\t:0.01\n",
"that:0.2566530524760724\tas:0.1727858984146879\tand:0.16713829706498057\twhich:0.11429631119256974\twhen:0.08961566048349877\twhat:0.0511346970942626\tbut:0.0493396582595117\tif:0.04619672803323343\twhere:0.04283969698118304\t:0.01\n",
"in:0.34640716276190153\tIn:0.11041926005540058\tis:0.1080318361569966\tsuch:0.09945162920312146\tof:0.09787240296521321\tas:0.08355991060432057\twas:0.058729928570223876\twith:0.04597903086403312\tfor:0.03954883881878906\t:0.01\n",
"the:0.34760338410215663\ta:0.26900931038792536\tand:0.150584368481598\tin:0.060223767263296056\tof:0.056350181032857084\tto:0.029915940232032527\tany:0.029686064537784194\tThe:0.02439258666325304\twith:0.022234397299097125\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.6073547821252848\tin:0.10405237973162224\tat:0.08767893766138239\tto:0.056460275265113345\tfrom:0.040281308728492185\tfor:0.03153037807095878\tIn:0.027019259032163515\tand:0.019091815891225383\tby:0.016530863493757153\t:0.01\n",
"the:0.6920696564515137\tand:0.07406444862619409\tThe:0.051053017513531904\ta:0.050819471637060326\ttho:0.04020697444380103\tor:0.025334786980068445\tof:0.0228235375069253\tde-:0.018737170865491818\ttbe:0.014890935975413267\t:0.01\n",
"and:0.28943445057394\twas:0.13334684121779972\tbe:0.10485758489706869\tmade:0.08829320972857292\tthat:0.07903823328789869\tup:0.07769424909698175\tis:0.075178691903094\tare:0.07330416462664778\tbeen:0.06885257466799642\t:0.01\n",
"and:0.29741162641941254\tto:0.18385963671505207\tof:0.1104954464255743\tbe:0.08995640654913849\twas:0.07444163795661357\tis:0.06454440322839741\tor:0.06321719612942556\tnot:0.057415582771396426\tby:0.048658063804989646\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"the:0.5212802975336674\tand:0.1087380758499485\tof:0.09590336615293302\tThe:0.09021573129282347\ta:0.062257345570549974\tthat:0.03780562354343084\ttho:0.029783870097203947\this:0.023678332873413876\tin:0.02033735708602883\t:0.01\n",
"and:0.3184205558276694\tis:0.1439438196532322\twas:0.14144974688052014\tit:0.08674145321159135\tthat:0.0689748607500958\tare:0.06467766768515057\tbe:0.056570417614367804\tfound:0.055914812679484845\tor:0.053306665697887896\t:0.01\n",
"the:0.43297464876439173\ta:0.12985963984139096\tto:0.09418537671020615\tthis:0.09339370202485257\tand:0.07863753128143981\tof:0.057468533912796174\tThe:0.03823859551707176\twho:0.03355597080202051\ttho:0.03168600114583041\t:0.01\n",
"and:0.14760161091992244\tas:0.14569173689273976\torder:0.1314117946957403\table:0.12120725674721548\tis:0.10407782949177481\tenough:0.09876455927868695\tnecessary:0.0916173196955863\thim:0.07824790662161216\twas:0.07137998565672181\t:0.01\n",
"the:0.5056857008145232\tThe:0.13157459950539635\ta:0.09113471636496441\tand:0.06906353733343598\tof:0.062270286909419915\tthis:0.05566616319010978\ttho:0.02647871927819596\this:0.025363497207126082\tour:0.022762779396828404\t:0.01\n",
"Section:0.3098469951942747\tSec.:0.2841239733608562\tNo.:0.08791886070554819\tMarch:0.07739146552956055\tApril:0.06459937244733693\tJune:0.04507982687846466\tMay:0.04192419741728147\tJuly:0.04041899042406283\t.:0.0386963180426144\t:0.01\n",
"to:0.24639859184868146\tI:0.16081300290547618\tnot:0.14085361363012044\twe:0.11261920726071467\tyou:0.11027222010496374\tthey:0.06985438248323243\tWe:0.0553968813533979\twho:0.048918975539092774\tand:0.04487312487432052\t:0.01\n",
"to:0.41150994787547807\tand:0.33457682366908015\tnot:0.04682399608049895\twill:0.04344079393529064\tthat:0.03657401485219989\tI:0.03652055450569058\twould:0.03121215122047131\twho:0.02479972891326757\twhich:0.02454198894802293\t:0.01\n",
"the:0.3921315661064481\tof:0.16471124318565736\ta:0.09918992940933438\tan:0.08732748245980479\tat:0.07284307456243867\tand:0.07096305335743457\tin:0.04549245984166011\tfrom:0.02924521559681385\tfor:0.028095975480408174\t:0.01\n",
"and:0.33651200696739575\tto:0.18561280114709738\tof:0.08386717831522203\twhich:0.08237112197637284\tre-:0.06907863865464145\tthat:0.066126456572214\tfor:0.05715061258578536\tor:0.05589309360209148\tnot:0.053388090179179656\t:0.01\n",
"and:0.2502540775308722\the:0.20550800623172855\tI:0.1162119375020717\tHe:0.10201040831259019\twho:0.07770440890568558\twhich:0.07733958582542037\tshe:0.06086750635864563\tthat:0.050292634071039295\tit:0.04981143526194638\t:0.01\n",
"the:0.4456570707694225\tof:0.1732737541072876\tan:0.0753328743084009\ta:0.07528281370572902\tand:0.06788312232288717\tThe:0.06343796644202812\tto:0.034860957752305154\ttho:0.027762589929837465\tin:0.026508850662101825\t:0.01\n",
"of:0.36788805554268333\tto:0.17899893596996577\tin:0.09967033479723968\tand:0.08262486266640548\tby:0.06402742516433042\tfor:0.05951954504574957\tthat:0.049304612825860974\tfrom:0.04816747665317087\ton:0.039798751334593895\t:0.01\n",
"of:0.1857519622978024\tis:0.1690870706775603\twas:0.13877726198192106\tin:0.09925420894105784\twith:0.09871804838669339\tand:0.08818157116711596\tto:0.08643485860618282\tfor:0.06310610032824931\tas:0.06068891761341684\t:0.01\n",
"and:0.30291650002862075\tthe:0.22287875295731202\ta:0.1443196836713922\tto:0.10293222813295004\tof:0.08611789377976029\tor:0.04010606874913995\tthat:0.03076466155765475\twith:0.030698451365509548\tby:0.029265759757660582\t:0.01\n",
"an:0.3061140454711452\tthe:0.2676254759629557\ta:0.12103002488078382\tand:0.08726030536679442\tof:0.057693054487416774\this:0.04842372929419431\ttheir:0.04760256216845412\tits:0.03466075590162059\ther:0.019590046466635116\t:0.01\n",
"the:0.16440861012027536\ta:0.16127619032291127\tor:0.1412468478434887\tand:0.13746000350686674\tno:0.10645588971496965\tmuch:0.09170529655471517\tof:0.07882929521295744\tis:0.0625693326195363\tbe:0.0460485341042793\t:0.01\n",
"a:0.5865758799064725\tand:0.07333745882280202\tthe:0.06499850024864584\tto:0.06346643468254508\tis:0.045629236221619004\tbe:0.044042323449886914\tvery:0.04213088035591552\twith:0.03604605702638875\tof:0.03377322928572435\t:0.01\n",
"not:0.2619622945293884\twill:0.22623881177355218\tand:0.2206510706460887\twould:0.0699164810345452\tmay:0.04471994741551853\tdo:0.04446954382735933\tas:0.0429177988422496\tcan:0.042628605203626144\tAnd:0.03649544672767199\t:0.01\n",
"number:0.3228746331332171\tline:0.11262851533730216\tpart:0.09520861030878382\tamount:0.08943398898031849\tout:0.08170338619677012\tboard:0.07261883313338807\tmatter:0.07216187554645898\tmen:0.07184604465566709\tkind:0.07152411270809397\t:0.01\n",
"be:0.37444404800298875\tbeen:0.1554825093195885\twas:0.11707464885231779\twere:0.0877854650428399\tand:0.06366985980125679\tare:0.052575479277393714\thad:0.050689930051658914\thas:0.04474674298040741\thave:0.04353131667154824\t:0.01\n",
"of:0.34292032203665374\tin:0.19097151554725814\tto:0.12864387625255078\ton:0.09359691230079072\tby:0.06247423331415553\tIn:0.04747180847640569\tfrom:0.04737192351920632\tand:0.039343826451885826\tthat:0.03720558210109322\t:0.01\n",
"as:0.17734995574137258\tand:0.1471340981889704\tis:0.12314641161032343\tit:0.10456654435470485\thim:0.10341117730856658\ttime:0.09221259843092078\tthem:0.08490644915927995\tsubject:0.07910942046035271\tright:0.07816334474550865\t:0.01\n",
"and:0.24775385335698727\tw:0.16759118470121168\tthe:0.1378308435347451\this:0.1282587761381735\tto:0.11403665516136796\tt:0.06738065548345687\ther:0.043847010501942896\twho:0.04244082129438521\tI:0.040860199827729565\t:0.01\n",
"of:0.3210325233473484\tto:0.2063077422915117\ton:0.1190641065158148\tin:0.09804614827596493\tand:0.052902585726070435\tfrom:0.05271688578130403\tthat:0.048732250827086786\tby:0.04830082599000867\twith:0.0428969312448904\t:0.01\n",
"the:0.38444268026678596\ta:0.16073735041744547\tof:0.1451158234665558\tsaid:0.0898670501617406\tand:0.06971181286702763\tfor:0.04070350167971949\tThe:0.03977981584981914\ttho:0.030215494390754383\tthat:0.02942647090015144\t:0.01\n",
"the:0.30908806204995304\tand:0.2021199752140314\tof:0.13486912198728426\ta:0.08156652884358065\tto:0.06872515330429758\tthat:0.049147080372366585\tThe:0.04881586833161894\tMr.:0.04812337385799479\tor:0.04754483603887259\t:0.01\n",
";:0.22559084303002083\tit,:0.1545946589131965\tthem,:0.12346183780082112\tin:0.10843452478653938\thim:0.07845983793789164\tup:0.07624506824521522\tyou:0.07516510365591558\tit:0.07403412068439238\tand:0.07401400494600735\t:0.01\n",
"filled:0.2186165041755312\tcovered:0.158079548925875\tand:0.15398995808855578\ttogether:0.10315898217779305\tit:0.09342138963523332\ttrimmed:0.06881626332388845\tthem:0.06652586521268666\thim:0.0658240037037389\tlined:0.06156748475669776\t:0.01\n",
"of:0.30481731633082393\tthe:0.25292583619331405\tin:0.08622497796132546\ta:0.08528660828155611\tto:0.07587896405620394\tand:0.06985188973590206\tfor:0.05934960462116136\tsome:0.03200302636249968\tthat:0.023661776457213585\t:0.01\n",
"to:0.5357443123261034\tI:0.08689756406873811\tand:0.0827806734433815\twill:0.08236542359857253\tnot:0.04663836988154892\tyou:0.04286176324020412\twould:0.03937360862261094\twe:0.03930607329097858\tthey:0.034032211527861934\t:0.01\n",
"and:0.23352842728146975\tlooked:0.1433938252021938\tlook:0.11679201053599442\thim:0.11081492559146433\twas:0.10808749245809364\tdied:0.08296089620387953\tit:0.07003338350249975\theld:0.0636493661753928\tup:0.060739673049012136\t:0.01\n",
"the:0.7370456807718171\tThe:0.05548784315230435\ttho:0.04242982539154104\tand:0.04120326569861786\ta:0.02770542680239013\tin:0.023782506335952983\tof:0.022211486187308734\ttbe:0.02032694471059724\tall:0.019807020949470466\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.408899911285333\tof:0.24227619321907012\tand:0.07398408378154964\tfor:0.05270768778040418\tto:0.04835743201581173\tin:0.043508220867859215\tmore:0.043504097237680034\tall:0.03884443381841415\ttheir:0.03791793999387798\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.28093874506673566\tit:0.14565130730806355\tpain:0.12965325697815863\twas:0.07902862677541422\thim:0.07510760859958082\tnot:0.07499663083941865\tthat:0.07293660584681616\tup:0.06709553384498941\tis:0.06459168474082283\t:0.01\n",
"of:0.29633572450437873\tin:0.14608538748858488\tto:0.1415677969515685\tfor:0.0941246122349261\tand:0.08474980319055245\twith:0.07400648853301359\ton:0.05839473007661018\tfrom:0.05014706301412718\tby:0.044588394006238215\t:0.01\n",
"of:0.4932598085970204\tto:0.14179975682907803\tin:0.10487382020592746\tfrom:0.04833323699428859\tby:0.04766144971248549\ton:0.0392572357543789\tthat:0.03899521160302972\tand:0.03820754742494841\twith:0.037611932878842895\t:0.01\n",
"number:0.1821189092851644\tout:0.1437821953458579\tplenty:0.13807782813232408\tamount:0.12908462532018683\tmatter:0.10892217023520502\tlack:0.08809246615187889\tkind:0.07143943965383995\tdeal:0.06569278937521149\tright:0.06278957650033144\t:0.01\n",
"in:0.15716872521337105\thighest:0.14506910343143695\tlargest:0.1379642128322369\tit:0.12908092135793436\ttime:0.10860851895378558\t;:0.08638797274853391\tmade:0.07891963805256427\tlaw:0.07617233416038825\thim:0.0706285732497487\t:0.01\n",
"one:0.16894437149404426\ttwo:0.13589906462145185\thundred:0.13113489855047172\ta:0.10639108034383842\tthree:0.10486857336230855\tfive:0.10328558866402718\tfifty:0.0984893396510388\tten:0.08556973770886167\tfour:0.055417345603957655\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"a:0.41421862519668834\tthe:0.33670445750614436\this:0.06999593559053328\tthis:0.04607478334441457\ttheir:0.028987666057724827\tand:0.02692703091532166\tThe:0.02462581287839039\tsaid:0.022025863744179777\ther:0.020439824766602662\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.27062093316726427\tof:0.2058837608840983\tand:0.08834827289900334\tThe:0.0853987581870392\tMr.:0.0848051425396133\tthat:0.08185133110159959\tin:0.0776092527328897\tMrs.:0.049118875532564533\twhich:0.046363672955927845\t:0.01\n",
"and:0.3093655620212602\tto:0.17370118736174034\tof:0.13038200997623184\tthe:0.08771758421888157\twhich:0.06191870937029182\t<s>:0.05888938295259155\tre-:0.05752501777704928\tin:0.055852125160339605\tthat:0.05464842116161378\t:0.01\n",
"of:0.5451297882682867\tin:0.08542997412173924\tby:0.07435471138890196\tfor:0.06343197441649058\tand:0.06341343949081495\tto:0.061416032155735774\tthat:0.0356271492759087\twith:0.03537389678075249\tfrom:0.02582303410136949\t:0.01\n",
"the:0.6813231373424599\tand:0.08925441882374724\tThe:0.056613857297762804\ttho:0.04225814397625024\tin:0.03296730630561122\ta:0.025531885665381563\tgreat:0.024386951003889462\tof:0.021724542380621076\this:0.015939757204276525\t:0.01\n",
"it:0.3164017804771316\tIt:0.18753949814117393\twhich:0.09414510332944916\the:0.08042740968198475\tthere:0.07598843090541198\tand:0.07384645502436786\tthat:0.07322329887836482\twho:0.05674153340839758\tThere:0.03168649015371842\t:0.01\n",
"in:0.27643648381144426\tof:0.19619690538321816\tat:0.12073793081559765\tto:0.08554019376698718\twithout:0.06974266899025229\tor:0.0671718273606311\tfrom:0.06431868298814508\tby:0.05759500052389659\tfor:0.05226030635982779\t:0.01\n",
"to:0.3216888513664843\tfor:0.1425534988903963\tof:0.12203152883398793\twith:0.09581861854904952\tupon:0.08332129510114093\tagainst:0.08004415442127386\tby:0.058714746451425215\ton:0.04692788091862681\tat:0.038899425467615066\t:0.01\n",
"as:0.25940665385176387\tthat:0.23928204127600736\tif:0.14786830227009118\tand:0.1107429479753052\twhen:0.0638060134959275\twhich:0.05310774291846435\tbut:0.05043880376982659\tuntil:0.033650881216647305\tfor:0.03169661322596666\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"the:0.6784196000885327\ta:0.13908689000247607\tThe:0.04136663708094289\ttho:0.03614497271071452\tin:0.027900600289280604\tcardinal:0.01910151826605943\tfundamental:0.0180177309598404\tevery:0.015831742505334707\tthis:0.014130308096818619\t:0.01\n",
"to:0.2962287160276502\tI:0.24286153447848005\twe:0.11988916995261593\tand:0.07121849146723339\tthey:0.06955643644802259\twho:0.0646138308397989\tnot:0.04807746888010371\tWe:0.04520371681812288\twill:0.032350635087972486\t:0.01\n",
"a:0.29056417556413844\tthe:0.20276290006835307\tof:0.16598961449895813\tto:0.07565175956340875\tat:0.0712255856900909\tand:0.054855419437907824\tin:0.047990426521640844\ton:0.04741654693643415\tby:0.03354357171906783\t:0.01\n",
"number:0.2212178397020679\tplace:0.18121775406988186\tout:0.11117962420357863\tthousands:0.09369043741587967\tamount:0.08821066085801411\tpoint:0.07628454132916004\tmound:0.07508719852365413\tline:0.07368018872735874\tday:0.06943175517040492\t:0.01\n",
"I:0.4159580622160198\tto:0.17080540166936992\tand:0.1008883073285615\tyou:0.07154913166686483\tnot:0.07031251285590621\twe:0.051418844238347645\tWe:0.03783134693637842\tbut:0.03598420074590681\t1:0.03525219234264492\t:0.01\n",
"the:0.2873953035074578\tof:0.21344440021812378\tand:0.11296142765504273\ta:0.08461592541970958\tto:0.08226070552655401\tbe:0.0742740825216053\tin:0.049384345903346547\tfor:0.04346745705650477\ttheir:0.04219635219165555\t:0.01\n",
"of:0.3693673782193348\tin:0.17215768908689885\tto:0.1239434037243533\tfor:0.061937188120426596\tand:0.06119366091637084\twith:0.059921230539834516\tby:0.05910363648253348\tfrom:0.0457314976229363\tis:0.03664431528731137\t:0.01\n",
"of:0.2347715835217755\tthat:0.1801037401060055\tand:0.16850015393138607\tto:0.15646866587518465\tby:0.11516182513020506\tfor:0.040751054467460135\twith:0.03473884788256067\tsaid:0.030549111190380132\twhich:0.028955017895042262\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"and:0.3116040604268401\twas:0.15198843375330282\tis:0.14293478689701092\tare:0.08751495165964814\tbe:0.07444339263214533\tit:0.058539239927337075\tthat:0.056407200625123846\tbeen:0.05369932938516691\tsucceeded:0.05286860469342483\t:0.01\n",
"of:0.4113118805873686\tto:0.10766845451161249\tmake:0.10318129871820048\tfor:0.10142028036499078\twith:0.09492407018317187\tupon:0.047948028783204234\tgive:0.04542177614021699\tby:0.044223930642411216\tin:0.03390028006882328\t:0.01\n",
"more:0.23666962608195696\tperson:0.15698075343671475\tone:0.15648458689013323\tlaw:0.10742675235823702\tman:0.07799617989662963\taction:0.07663808012453502\tdebt:0.06438269702433924\tright:0.058028344234463715\ttime:0.05539297995299052\t:0.01\n",
"the:0.6181267891922759\tof:0.08954503148636385\ta:0.07586674323318082\tby:0.059390725898353675\tThe:0.03881726598622238\ttho:0.03287961387085925\tin:0.02966271405917556\tfirst:0.025113247118053635\tand:0.020597869155514946\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.2639506293851738\tand:0.19501039686586266\tto:0.14601691692877852\tof:0.12515324726393026\tso:0.07017329332869993\tis:0.061556309784988675\tbe:0.04742993418457255\the:0.04243046255372473\twas:0.03827880970426892\t:0.01\n",
"<s>:0.259439135731656\thim.:0.20100035543772304\tit.:0.12583494676797982\tthem.:0.08585089681790718\ttime.:0.08099998019879431\tlife.:0.06292662373010029\t.:0.05990013580870493\tyears.:0.059437215128948145\tman.:0.05461071037818635\t:0.01\n",
"and:0.167673560168984\thim:0.1302595889239382\twant:0.12288405280822053\table:0.11252456763525269\tis:0.10177603532893538\tenough:0.09848886248683617\thave:0.09133909511025426\tme:0.08613098450363031\tnecessary:0.07892325303394836\t:0.01\n",
"the:0.2605880434780103\tof:0.20975766648096192\tto:0.16219727420161864\ta:0.10052631057186298\tand:0.07888459452761812\tin:0.07417656369568967\ton:0.048506072781993634\tThe:0.027825525915674196\tat:0.02753794834657054\t:0.01\n",
"<s>:0.2613088549649225\tand:0.15580981423434095\twas:0.12353456311453885\tbe:0.12011264833573745\tis:0.07434522515091425\tare:0.07263628290767327\tthat:0.06650679362055881\twere:0.0627739386615939\t.:0.05297187900972013\t:0.01\n",
"and:0.24806658238388815\twas:0.1404578382604884\trecorded:0.13173223861784336\tis:0.10073343460412247\tmade:0.0852118325285516\tup:0.07777872850808107\tas:0.07663231081688818\theld:0.06663094950086344\tit:0.06275608477927343\t:0.01\n",
"one:0.24882240893376512\tout:0.1887334300387465\tsome:0.1202990048149477\tand:0.08521320866975132\tpart:0.08323606031267282\tmany:0.07356812523477475\tthat:0.07216167073460969\tall:0.06139999770845047\ttime:0.05656609355228154\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.309467002264532\tof:0.18035262549692663\tand:0.11119273369645903\tto:0.10968459345857927\ta:0.08804854126777606\this:0.05335135759514798\tbe:0.05037490992496116\twas:0.04464248423800636\tin:0.042885752057611616\t:0.01\n",
"he:0.22175169877898146\tit:0.16322830800044286\tIt:0.11810384507815477\twhich:0.10353167502221937\tI:0.0958442802177256\tHe:0.07808736780841995\tand:0.07787726429433148\twho:0.07521534391244238\tshe:0.05636021688728211\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.5727886398026025\ta:0.1986749590492149\this:0.07166976262034834\tthis:0.036271166878606716\tand:0.027883691346987392\tof:0.02405518876705925\ttheir:0.021069224840571988\ttho:0.019462343904992484\tThe:0.018125022789616526\t:0.01\n",
"of:0.427001161532826\tin:0.36678296767137025\tIn:0.08504184702524369\tto:0.03515694678372701\tfor:0.020416966271535192\tthat:0.017439290143290834\tby:0.015681989133997452\tfrom:0.013280560168697653\tand:0.009198271269311867\t:0.01\n",
"be:0.3884678789234725\tbeen:0.20003453826326087\twas:0.1944156505900578\tis:0.054073685711540816\twere:0.052050825778119696\tare:0.029202158257400915\thave:0.025424822023816438\thad:0.0252174387256832\tbo:0.021113001726647707\t:0.01\n",
"the:0.6697690013598361\tThe:0.06689917935940716\ta:0.05298030767797346\tand:0.04983391766927469\ttho:0.04916260121461555\tany:0.03684265298959118\tby:0.022620177622061952\tan:0.021263344144552263\tin:0.02062881796268764\t:0.01\n",
"they:0.32794022258836636\twho:0.1328333361307845\twe:0.1194131292029674\tand:0.09173102170724179\tThey:0.07960306395119171\tthere:0.06873547797735446\tmen:0.06648571761000102\twhich:0.05816921130566582\tit:0.045088819526427\t:0.01\n",
"the:0.3666098779351738\tof:0.2256053754222402\ta:0.11750982970331225\tand:0.06672813567807487\tto:0.05694040830080928\this:0.053846451611708104\tin:0.039814669484896856\twith:0.03275042421849142\tfor:0.030194827645293295\t:0.01\n",
"in:0.2629916846552475\tof:0.2374747333229923\tto:0.11623473481910031\tfrom:0.07575643326982998\tfor:0.07423930839252836\twith:0.07128419961779621\tby:0.05706842511721635\tIn:0.056461208493637484\tand:0.038489272311651564\t:0.01\n",
"the:0.5141457739836849\tThe:0.2950045206725871\tof:0.07309953792189086\tthat:0.03033767467117326\ttho:0.02218089583203861\tand:0.02000940337951442\tthis:0.013188894873427628\ta:0.011968483846002987\ttbe:0.010064814819680213\t:0.01\n",
"the:0.39227939578498844\tof:0.20213074781626741\tin:0.09851200609318482\this:0.07181992761771305\tand:0.053453911016422634\tfor:0.05334820161763843\tto:0.04149456930136984\ta:0.03910874243680619\twith:0.037852498315609204\t:0.01\n",
"and:0.3309066756559541\tdemand:0.11951725037001645\tready:0.09893866457384981\tused:0.09514434972463204\ttime:0.08611259291726484\tnot:0.0660784836651807\tvote:0.06597209943325834\tit:0.06550607031200961\tcandidate:0.06182381334783411\t:0.01\n",
"did:0.20878607124705012\tdo:0.15428408155985487\tcould:0.15085576060883693\tdoes:0.13659615586599216\twould:0.12912376141234255\twill:0.1244653601357192\tmay:0.024283116121130485\tshould:0.02345383339040368\thad:0.020211773426663193\tcan:0.01794008623200697\t:0.01\n",
"the:0.3003330690371528\tand:0.17095780787780682\tof:0.14749025920584952\tthis:0.0987507731253936\tin:0.07655205607342307\tsuch:0.053511334673970574\tto:0.05285759252696354\tthat:0.044938033986576954\twhich:0.04460907349286318\t:0.01\n",
"gold:0.5581642389104192\thundred:0.12052889072237587\tmen:0.08933798568758869\twife:0.057740763155311486\trelatives:0.04174268668565325\tcity:0.03811482161167378\tland:0.030936482520491408\tin:0.026856518703656764\tup:0.026577612002829328\t:0.01\n",
"the:0.301965987380445\tand:0.1986109324224081\tto:0.10893018332240718\tof:0.10720786107769581\tin:0.08124785220899161\ta:0.06322211543180747\t<s>:0.04652953818111842\tfor:0.04419298698084707\tI:0.03809254299427955\t:0.01\n",
"of:0.36319721613767747\tin:0.15792698496706048\tto:0.09864878392860574\tand:0.08887313371661498\tby:0.07765385130522502\tfor:0.06383028547430684\twith:0.05451195951670561\tthat:0.04678818094181671\tIn:0.03856960401198715\t:0.01\n",
"the:0.24311951553998726\ta:0.20188355758110077\tof:0.165037881492765\tand:0.14471557854938008\tin:0.08903357496181369\tfrom:0.03837217788624234\tThe:0.0363595540663629\tthat:0.035751679324874296\twith:0.0357264805974736\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"to:0.2938691285593701\twill:0.27091548324187575\tand:0.0944490611783021\tnot:0.07655672179331802\twould:0.06131144242130822\tmay:0.05870869130830389\tshall:0.048319168016185125\tis:0.043474966075097744\tit:0.042395337406239075\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"peo:0.43530247121570526\tthe:0.11822774829602647\tpeo-:0.10247340576785428\ta:0.09092956100382836\tof:0.08399199070903313\tand:0.058311688035248097\tas:0.038636446070031354\tsaid:0.035710310576328536\tdi-:0.02641637832594446\t:0.01\n",
"north:0.4475706415932609\tfeet:0.12551733402880494\teast:0.08391334517790347\tstreet:0.0740495419497939\tland:0.05468649834098591\tNorth:0.05413073083253674\tsouth:0.053172350245890045\tchains:0.05081673212985219\t;:0.04614282570097178\t:0.01\n",
"the:0.5208699512529816\ta:0.10404622048238932\tof:0.09618371428492235\tsaid:0.06613354886398887\tat:0.05120031469276136\tto:0.04768653429292527\tany:0.04200147782352733\tand:0.03470747727300016\tThe:0.027170761033503698\t:0.01\n",
"has:0.1886416843730582\thave:0.1741428817353717\twas:0.10216802380312044\the:0.10049274025443483\tbe:0.09861577221460267\tis:0.09858028793319838\tand:0.09032561682634642\thad:0.08276139911620571\tbeen:0.05427159374366152\t:0.01\n",
"of:0.25823735451086327\tthe:0.13793974357911254\tand:0.1261945327872129\tin:0.10903247852169387\ta:0.10865155169663732\tto:0.09238292652407407\t-:0.07710713226639392\tfor:0.04331262260445606\tby:0.03714165750955609\t:0.01\n",
"the:0.6735280597915383\tand:0.08729129994708863\tof:0.07174176304129307\tsaid:0.03663411325234531\tThe:0.03400184301955722\ttho:0.03144370135629142\tin:0.020932591032583308\ton:0.01878151453469384\tor:0.01564511402460894\t:0.01\n",
"a:0.47293175540792126\tthe:0.13353077013780473\tvery:0.09248794803487055\tof:0.06738169537367765\tand:0.06332513724157653\tbut:0.045647564697677785\twith:0.04491377426106902\tis:0.03859028795756805\tto:0.03119106688783435\t:0.01\n",
"to:0.5949327136105765\tnot:0.11996282544064088\tcould:0.05447690426093985\twill:0.05029218459125191\tand:0.0448347735040986\tcan:0.04030759917833194\tthey:0.031049700398971862\twould:0.029245663771515645\tmay:0.024897635243672722\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.2735900659577961\tthe:0.1555769448654546\tand:0.12432954580218311\ta:0.11720381974340094\tto:0.1041505709777092\tin:0.08233958509752284\twas:0.045557072074220245\twith:0.043647118952881044\tis:0.04360527652883189\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.2225487639242094\tand:0.14984605471520662\tin:0.14324964628238337\tto:0.09268435781117304\tany:0.08423031552094204\tfrom:0.08038447697205824\tthe:0.08017995252876588\tby:0.06845035027133223\tfor:0.06842608197392928\t:0.01\n",
"to:0.2617137791791448\tfor:0.22870313473676598\tof:0.09500953121309016\tand:0.0912491456466005\tthrew:0.08843548468436996\tput:0.07081475427686279\tget:0.05645009185049506\tin:0.05243336599922697\tthrow:0.04519071241344374\t:0.01\n",
"of:0.31382547600257527\tat:0.14220270656396275\tthe:0.13644298188144502\tto:0.10424417756003813\tin:0.09722019230480701\tand:0.07615231482268701\tfrom:0.06086219155729951\tby:0.03610786113164367\tfor:0.02294209817554157\t:0.01\n",
"of:0.2175996306784183\tthe:0.16549920364968698\t.:0.16492771551567434\tand:0.09877824180147325\tMrs.:0.07745767080302547\tby:0.06917801196216597\tJ.:0.06650376276314136\tJohn:0.06636970919338368\tH.:0.06368605363303055\t:0.01\n",
"the:0.19450260354116622\tof:0.17635756026324806\tand:0.1709596688916616\tto:0.13174067963048383\ta:0.12684154041131124\tin:0.06531373308911204\tbe:0.046514172668600896\twith:0.039510198071034244\twas:0.03825984343338188\t:0.01\n",
"of:0.20482777277060718\tthe:0.191574690199803\tand:0.15721331678417244\tto:0.1549827058826635\ta:0.07932264084144192\tbe:0.062583668028278\twas:0.05125038664443885\tor:0.047336216564486513\tis:0.04090860228410865\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.3421425280879281\tto:0.17800625501403844\tin:0.11335841777688076\tand:0.08175780483237326\tfrom:0.05933269158156278\ton:0.058869876080230046\tfor:0.05404377642899885\tby:0.05220780661025094\tthat:0.05028084358773693\t:0.01\n",
"and:0.26106849062347115\tthe:0.19554736216822505\tany:0.13427360282152664\tor:0.11631328769202957\tof:0.07443676633240681\tall:0.06892701553237131\tno:0.05109724528059536\tsome:0.0462979816023174\tin:0.04203824794705671\t:0.01\n",
"and:0.43714406329511596\tdays:0.09815757744788602\tshortly:0.09351768808916137\tthat:0.08382449020673634\tsoon:0.08019203524087132\tminutes:0.06143546298628004\tuntil:0.04838024245481747\tbut:0.04549269109168711\tShortly:0.04185574918744454\t:0.01\n",
"in:0.4295227376621914\tof:0.20199621914599986\tIn:0.10494848237749936\tthe:0.06172647528051061\ta:0.043472828141621296\tto:0.0394229741382112\ton:0.037818298564245\tat:0.037332833396794426\tfrom:0.03375915129292695\t:0.01\n",
"the:0.3003239843946416\tof:0.24123798292280735\tto:0.10967522063229845\tand:0.10241337743572466\tin:0.04851293154742209\t<s>:0.047867601471535626\twas:0.04741818560160526\ton:0.047088981773871705\tfor:0.04546173422009339\t:0.01\n",
"and:0.2660107200285769\tlying:0.17455175088763406\tit:0.09251120057524648\twas:0.08951702550510325\tmade:0.0772253589469859\tnow:0.07698235723093784\tthem:0.0766161612532918\tthat:0.0693082798272056\tis:0.06727714574501821\t:0.01\n",
"of:0.2525782558132315\tto:0.1438833923824268\tthat:0.11612702209513832\tin:0.10417477707905623\tor:0.09322040900855177\tfor:0.09190159692377249\tby:0.08517109591706234\tat:0.05297330608542665\tif:0.04997014469533382\t:0.01\n",
"and:0.2652634788189831\tplace:0.20608702038716104\tpoint:0.1196718034689221\tcases:0.08459865196600339\tspot:0.08338543012990264\tthat:0.07005480893263438\tevery-:0.06056738561391333\tplaces:0.05325281402571342\tof:0.04711860665676656\t:0.01\n",
"to:0.39654406299571276\twill:0.11023003864135353\thave:0.10017327504071026\thad:0.08539590972093525\tnot:0.0694918018561001\thas:0.06805401137763294\tbe-:0.059370876557056224\tthey:0.05401905908354118\tand:0.04672096472695779\t:0.01\n",
"the:0.26631771811439525\tand:0.20187492102926918\tof:0.1589843633303804\tto:0.11059027842715602\tin:0.0571012098710703\tthat:0.051462395651177245\tsaid:0.050581573006078746\tfor:0.04673165755322649\this:0.04635588301724631\t:0.01\n",
"the:0.27304996835118683\tof:0.23942118511978513\tfor:0.10381271503095649\tand:0.095129555940787\tor:0.08545293584071943\tby:0.07023828981502359\tin:0.06039427782650088\tthese:0.031281991410495785\tthat:0.031219080664544964\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"the:0.5512744873992835\ta:0.11112329733708555\tany:0.09829662272556632\tat:0.06169360981225637\ttho:0.04232257457820852\tThe:0.041971425436787335\tevery:0.029836170945007984\tand:0.028635174220778603\tby:0.024846637545025738\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"and:0.39374688118394197\tto:0.22349962865051812\tnot:0.07325808986714295\tthat:0.054342221381652435\tor:0.0516867063609947\twho:0.04990290645230247\tof:0.048965821591113116\twill:0.04819592503119137\tre-:0.046401819481142845\t:0.01\n",
"the:0.35345610456470805\tand:0.2051524207925185\tof:0.11439307401553007\tI:0.0886195634000105\tto:0.05488273443457725\tThe:0.05045111873676749\tdo:0.0451493454014473\ta:0.03993357871912917\tin:0.03796205993531178\t:0.01\n",
"the:0.4311151783115649\tand:0.11220662126497953\tof:0.10667706976726525\tin:0.09860771949799929\tan:0.08507796445363008\tthat:0.04553465003636284\ttheir:0.03811026156079695\tto:0.03763148952374201\ta:0.03503904558365905\t:0.01\n",
"in:0.20195633827499868\tthe:0.19556308035687367\ton:0.1519698601100884\ta:0.12850475666202046\tof:0.08856738141392573\tIn:0.08321452710540712\tat:0.052058672194068484\tfrom:0.05168787111807594\tand:0.03647751276454154\t:0.01\n",
"to:0.6185330823815426\twill:0.1198483204839884\tand:0.05768923466883851\tcan:0.0529483975043764\tI:0.04065926191996748\tnot:0.027930025551208073\tthe:0.027009354222178487\tshall:0.02287610312930983\tthey:0.02250622013859012\t:0.01\n",
"the:0.3661510278115807\tof:0.18604011314490668\tand:0.1109152575647309\tin:0.09556882822052379\ta:0.07472429387547162\tThe:0.04949365505368283\tto:0.04579469490461243\tat:0.03277907132192454\ttho:0.028533058102566386\t:0.01\n",
"of:0.2617708552015178\tand:0.18481165182724443\tto:0.18421515533405086\tthe:0.14265137383970686\tin:0.061130862243092\ta:0.05800755818401831\tfor:0.03664374363958935\tthat:0.03284393419005219\tas:0.02792486554072807\t:0.01\n",
"the:0.38249491695942284\tof:0.18298952547349914\tand:0.14835305352087438\ta:0.08067174367115877\tin:0.05342687691826655\tto:0.04773492247540222\tor:0.03590997726770017\tThe:0.030341223954167988\tat:0.028077759759507995\t:0.01\n",
"at:0.44659958304188835\tfor:0.13512240030818584\tof:0.09415066394754064\tto:0.07954829232875775\tand:0.05386871356290936\tAt:0.05022258079577466\tduring:0.04413469830326203\tthat:0.043380736563209045\tin:0.04297233114847239\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.2611491102613345\tcovered:0.14376551213793576\tfilled:0.14181698717345156\ttogether:0.13396499278193463\tcharged:0.08903151452342417\tup:0.070664662455304\tthat:0.05449983020071744\tbut:0.04879650329975542\tit:0.04631088716614253\t:0.01\n",
"in:0.2291796231230006\tof:0.19894604768114812\tto:0.12894122755459386\tfor:0.0981401666214376\twith:0.0799494179447224\tfrom:0.07786568636192283\tby:0.07136739601410988\tat:0.053415232000225306\tIn:0.052195202698839635\t:0.01\n",
"the:0.27010989200646995\tof:0.16045615257725332\tand:0.12959593548799322\ton:0.11219861359121457\tor:0.08252152504155824\tas:0.07777027457329741\tto:0.07572477987269935\tbe:0.0409099616357931\ttheir:0.040712865213720896\t:0.01\n",
"the:0.3246502083788233\tof:0.17755856595863648\tand:0.16110492809915075\tto:0.09332606327702567\ta:0.06646017066957834\tat:0.047863837549742216\tin:0.04163912863550701\tfor:0.04119583740728431\tor:0.03620126002425198\t:0.01\n",
"of:0.494344462196785\tby:0.11437374286054318\tto:0.10170642720973083\tin:0.07036865223005784\tand:0.05957132952914667\tthat:0.05633632506000686\tat:0.03259669951283122\tfrom:0.03063622363809227\ton:0.03006613776280605\t:0.01\n",
"number:0.1911719606165359\tpurpose:0.1805464311244205\tout:0.119244112589712\tmatter:0.10964611782653484\tinstead:0.10778712669896584\tcost:0.07733867388546424\tmeans:0.07436119239649945\tyears:0.06514836403781415\tline:0.06475602082405311\t:0.01\n",
"to:0.4547790048909614\tthe:0.09469921664506427\ta:0.09181465386759004\twill:0.08787521787809666\tand:0.061374029916774805\tI:0.05731342989221082\tunder-:0.050000803087816195\twould:0.04723973328297069\tnot:0.04490391053851517\t:0.01\n",
"away:0.24201839590324933\thim:0.18437616884942673\tand:0.14485409321280102\ttaken:0.09161095533557521\tcame:0.07547319604529013\tthem:0.07283016257333716\tit:0.06397653406693309\tcome:0.059460646627386135\treturned:0.05539984738600122\t:0.01\n",
"one:0.23605402837694317\tpart:0.17194359534856798\tsome:0.13057929531661294\tout:0.12609862768167032\tall:0.08237599258252051\tportion:0.07212181862165871\tany:0.059401597507645225\tmuch:0.056366864893261065\tthat:0.05505817967112018\t:0.01\n",
"of:0.26945284005378245\tand:0.16915529561048592\tthe:0.14193374124464977\tto:0.09592871768365933\tsaid:0.08001890833212992\tin:0.06853047750091844\twas:0.06358793103504899\tby:0.054183417390367215\tbe:0.04720867114895795\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"and:0.20735053701823788\tto:0.15387785739540455\tthe:0.1454095517627379\tof:0.10553893519947838\twas:0.10277634254014693\t.:0.09209270802663322\tMrs.:0.07075792840449592\t<s>:0.06338869857582367\tI:0.048807441077041686\t:0.01\n",
"in:0.2131866054664273\tfor:0.18278527504286687\tof:0.17465590095326441\twithin:0.09270317324720147\tand:0.08112620763954176\tonly:0.07401156421911753\tIn:0.06727676343538887\twith:0.05638982722093512\tis:0.047864682775256746\t:0.01\n",
"and:0.24715944158911993\tdepend:0.10115542297585235\tbased:0.10085046174861782\tplaced:0.09929781518962862\tdepends:0.09865819847804204\tcalled:0.0967281156431388\tdown:0.08601932662424668\tmade:0.08525060516232963\teffect:0.07488061258902408\t:0.01\n",
"and:0.31137999683890444\tthe:0.20272383295255514\tto:0.10187465053012425\tdo:0.10038072769923052\tI:0.08910698357126925\tof:0.05891150067599224\twill:0.044532931073187225\the:0.043241635951340986\t<s>:0.037847740707395994\t:0.01\n",
"Mr.:0.39228058711881586\tMrs.:0.18980744922155524\tand:0.11821968586713821\tMiss:0.06800538364528456\tof:0.06480771322234485\tthe:0.06026723447615402\tSir:0.035197369941436005\tthat:0.030827076605908593\tSt.:0.030587499901362836\t:0.01\n",
"and:0.21153711816299234\tof:0.1627411386009045\tthe:0.15242465288582271\tto:0.14262969949545384\tbe:0.08612367269064275\twas:0.07100107345600953\tis:0.058460511863755234\ta:0.05700653060343269\tas:0.0480756022409864\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3966827479009197\tof:0.17286141598647256\tand:0.10333850226999435\tThe:0.10058875879416367\tthat:0.06680977697257114\ta:0.05562547186074693\this:0.04489061484603061\tthis:0.02527143779707058\ttheir:0.023931273572030502\t:0.01\n",
"it:0.26029334632068557\tthere:0.14822319293947894\tIt:0.13196436136428397\twhich:0.11581767029202342\tthey:0.08952698954231514\tthat:0.07758736314856883\tand:0.07379772084395009\the:0.04666991240312073\tThere:0.04611944314557337\t:0.01\n",
"of:0.178275188900775\tand:0.1759155570276083\tI:0.14025899935957778\tall:0.11786609169395547\t.:0.1109962817453498\tto:0.08019049142446674\t<s>:0.06807487410083707\tthe:0.06298713863268365\tthat:0.05543537711474618\t:0.01\n",
"they:0.31660049247675187\twe:0.1688673385587379\twho:0.09836317008086896\tyou:0.08262906084036362\tThey:0.08150542993398754\tand:0.0714993063827763\tWe:0.06376980602295317\twhich:0.058724555025625964\tthat:0.04804084067793466\t:0.01\n",
"sum:0.26966492961409716\trate:0.24264918337011354\tperiod:0.08324888897431083\tamount:0.08262125532108912\tout:0.07543911457042221\tnumber:0.0644667590939396\tquarter:0.06215204013646101\tone:0.05808679108916975\tcost:0.051671037830396685\t:0.01\n",
"the:0.5396224576205474\tan:0.1724877454620954\tThe:0.10408448043597142\tand:0.034181070099347274\tof:0.03229831297695571\ta:0.03171629965088813\this:0.02828562666157346\ttho:0.023714674856251276\ttheir:0.02360933223637002\t:0.01\n",
"and:0.3355884605954553\tbe:0.14362770669103844\twas:0.141809579475383\tis:0.09705983956066318\tthe:0.07297932226773743\tbeen:0.06414813722462447\tof:0.0577676076950281\tor:0.043439575723700455\tare:0.033579770766369685\t:0.01\n",
"the:0.23632566192425677\tof:0.18886074844018247\tand:0.12682049354783523\tto:0.09524780069146993\twas:0.08498950973556638\ta:0.07330451419837286\tbe:0.06504520465050595\tin:0.06462390742693405\tis:0.05478215938487641\t:0.01\n",
"for:0.4795819756753278\tof:0.17747513156261788\tin:0.08017973507389259\tso:0.057722712744577076\tand:0.05324725156461976\tas:0.0442425804794929\tthat:0.03514487424933844\tFor:0.03415603860076366\tthe:0.028249700049369848\t:0.01\n",
"as:0.18333935539738966\tis:0.13626727257135118\tand:0.11696322843821201\table:0.10666396706401378\tenough:0.09923105057216096\torder:0.09600053520519565\twas:0.08688446602020423\tnot:0.08365979314700583\thim:0.0809903315844667\t:0.01\n",
"of:0.25596949189944096\tfor:0.19606980896514098\tto:0.13887944539579536\tin:0.10280693295236595\tat:0.08492383156539599\ton:0.0628453806145957\tand:0.05705955427606365\tthat:0.04680070215993624\tby:0.04464485217126512\t:0.01\n",
"the:0.3337820818856828\tand:0.17194940185112656\tin:0.1096391832629773\tof:0.10265949845942479\tto:0.07575914153174242\tby:0.06432538737312583\tthat:0.045912355720201095\tas:0.044268993090278395\tfor:0.04170395682544065\t:0.01\n",
"other:0.31964911480750985\tof:0.2968489773832073\tthese:0.09403797090837142\tthe:0.08518908857089832\tfor:0.049154633529404704\ttheir:0.03920728075082828\tin:0.03909258180079824\tall:0.03505262401018241\tdifferent:0.03176772823879945\t:0.01\n",
"for:0.3343959825140334\tor:0.1258888514572245\tof:0.1163642883275125\tabout:0.1050703559814018\tpast:0.07684165422099201\tin:0.07156775369197704\tthan:0.06765042617906675\tand:0.057068108583101865\twithin:0.03515257904469028\t:0.01\n",
"No.:0.3930197721414448\tlot:0.09917068259033861\tJune:0.09143545193488335\tsection:0.08769229648376928\tMarch:0.08542643966448493\tJuly:0.07312651526295681\tMay:0.05509344556572034\tApril:0.054176823632998236\tand:0.050858572723403585\t:0.01\n",
"of:0.1988197861729762\tand:0.18164326299003533\tto:0.1490327698187145\tthe:0.09560413868897125\twas:0.08367574603820709\tin:0.07328280609753685\tfor:0.07153753977638039\tbe:0.07101184200796849\t<s>:0.06539210840920989\t:0.01\n",
"feet:0.5993409063811722\tinches:0.08505718525033099\tand:0.07775748822960815\ta:0.05800972312425859\tso:0.05490645413394994\tthe:0.0458160283023144\tto:0.02450569752312995\tthat:0.022775088136358035\tof:0.02183142891887788\t:0.01\n",
"and:0.19443729234214868\ttogether:0.18064694998584138\tconnected:0.14784638791688004\tconnection:0.1448086892096974\taccordance:0.11050849290477426\tcomply:0.06045119551015317\tacquainted:0.05391433837654765\tcompared:0.051495838323954046\tcontact:0.045890815430003444\t:0.01\n",
"the:0.2603384109054656\ta:0.17631396693754883\tto:0.16248729555323216\tand:0.12297424874305866\tof:0.1007705615174678\tbe:0.04543838695319249\twas:0.0420999085814214\tfor:0.04201326408974991\tor:0.037563956718863166\t:0.01\n",
"the:0.2687371836794488\tsuch:0.15325932100946651\tand:0.13280452089975772\tas:0.09666635699385095\tof:0.09129000065860703\this:0.08616231074548254\ta:0.057918430478695\ttheir:0.055274127205516624\tits:0.04788774832917471\t:0.01\n",
"to:0.5893914488256535\twill:0.15882442439870725\tand:0.07638680094420733\twould:0.0596722882569091\tnot:0.027071790475402365\tshall:0.020724385340585197\tcan:0.019677282194583645\tcould:0.019141449894996776\tshould:0.019110129668954836\t:0.01\n",
"to:0.18619898081003391\tfor:0.13348602855950636\tlet:0.12107171308664266\twith:0.11304357755178478\tLet:0.10967541480772677\tof:0.1011105504664241\tgive:0.08124620739018473\ttold:0.07456825602488953\tmake:0.06959927130280705\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.46011823708712607\tin:0.1773816149458485\tto:0.09292378859265368\tat:0.08639490724656991\tIn:0.05361422157790159\tand:0.03846513861335029\tas:0.02861248694701491\tby:0.027821953145693135\tfrom:0.024667651843842155\t:0.01\n",
"the:0.297541036911343\ta:0.2432167175469103\tof:0.12079040364612383\tfor:0.10857821313180256\tand:0.07382406533466249\tin:0.07206031224535211\tto:0.032358494375657375\tas:0.02083922158570316\tany:0.02079153522244511\t:0.01\n",
"an:0.2097825387355821\tthe:0.16089050497374985\tmore:0.14972176305810556\tgreater:0.10705244536889896\tthis:0.0867630906808914\tany:0.07738679610053803\tlarger:0.07047302619082438\tbetter:0.06786260490570561\tother:0.060067229985704094\t:0.01\n",
"to:0.28944453434242984\tand:0.20641174069048845\twill:0.15783216438548842\tthey:0.08250430131337796\twe:0.06777599357572658\twho:0.04807453069205628\tmay:0.04792745298913761\tnot:0.04681312215180204\tshall:0.04321615985949287\t:0.01\n",
"and:0.4357639677922807\tthe:0.11662979085458558\tof:0.08087764502688936\tI:0.07707696988785019\twas:0.06320105771801705\tthat:0.06039257575577366\ta:0.05788404848353637\the:0.0525342372418635\tthey:0.04563970723920361\t:0.01\n",
"and:0.35315218645721114\tthat:0.11835483459355085\tit:0.1153408044233801\tfound:0.07013930176251786\tmade:0.06891855340915606\tis:0.06851004504571005\thim:0.06692019640895636\twas:0.064989940361327\tbut:0.06367413753819051\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.4274452747866744\ta:0.29959173945027584\tof:0.10119084305570711\tand:0.04227295785763625\tThe:0.034747906823924965\tin:0.02408292680150209\this:0.022638890171874648\ttho:0.02059890324729613\tA:0.017430557805108552\t:0.01\n",
"the:0.8098034335371891\tof:0.048304251070847286\ttho:0.033167615329481225\tThe:0.022561422002221138\this:0.019299029919506487\ta:0.01875057190419676\tthis:0.015428367150780185\ttbe:0.011769818398533343\ttheir:0.010915490687244676\t:0.01\n",
"and:0.41543152292295266\tthe:0.11379423535484699\tto:0.0950053307921957\ta:0.07715146075138586\tof:0.07160393075440351\t<s>:0.060702368386743095\tlot:0.05294837020156032\tthat:0.05254790221561227\tin:0.05081487862029957\t:0.01\n",
"and:0.23249637061068618\taway:0.1729582579675146\ttaken:0.14204684615275687\tthem:0.07766826901057843\tmiles:0.07536648492003646\tcome:0.07524013772926025\tout:0.07345826542488416\tcame:0.07129075865548364\tdown:0.06947460952879941\t:0.01\n",
"it:0.25498657122263135\tIt:0.20898286023310084\the:0.13868428349374448\tthere:0.093722271617106\twhich:0.08458177128791047\tand:0.06212994223278562\tI:0.05457396755404127\tHe:0.05032069163859371\tthat:0.04201764072008621\t:0.01\n",
"opin-:0.5710220244255753\tinter-:0.08888109715721298\tcom-:0.07742564952172526\tprovis-:0.05188070304209688\tUn-:0.05077494858757164\tcom­:0.04008456966292176\t<s>:0.03847131407277144\tand:0.03722177215222922\tin:0.03423792137789555\t:0.01\n",
"be:0.2800151970803797\twas:0.1564485404751651\tbeen:0.15107690012330446\tis:0.11063920605293241\tare:0.09506806580803628\twere:0.05947668993456717\tand:0.04926813970669289\thave:0.044373743237405644\tbeing:0.04363351758151646\t:0.01\n",
";:0.18319871002059496\tit,:0.1297712150790028\tthem,:0.10671975512863674\tin:0.10356222544492105\thim:0.0992130812771523\tup:0.09889284001031914\tit:0.09583185028212196\thim,:0.09421588177029208\ttime:0.07859444098695918\t:0.01\n",
".:0.2593936514210968\tof:0.18713319370301182\t-:0.1282769484004546\tthe:0.1188867824186601\tto:0.07931610767374372\t<s>:0.07709537454443394\tand:0.06491245572624653\ta:0.04030421309440916\tAl:0.034681273017943354\t:0.01\n",
"is:0.1694251960267198\tand:0.1581311574726629\twas:0.15522719184335382\tare:0.14962177312528854\tbeen:0.0922307124759451\tbe:0.08492226786154042\tnot:0.07856631003092096\twere:0.0600231932504615\tor:0.04185219791310706\t:0.01\n",
"part:0.1755863741219238\tprovisions:0.16436160744752734\tcopy:0.1564747841582047\tdate:0.09461421298971757\tone:0.09319941705263951\tout:0.08673450730758223\tpublication:0.07590062482729361\tand:0.0731379052309053\ttion:0.06999056686420582\t:0.01\n",
"of:0.2381719860295494\tand:0.23415746017761663\tin:0.11598353395473782\tto:0.10227189079610367\tfact:0.07859923495468527\tsaid:0.06648519540808896\ton:0.059675812679062315\tall:0.049591757945495966\tis:0.04506312805465998\t:0.01\n",
"and:0.3844770709926163\the:0.1193916039542933\twas:0.11563925846648056\tI:0.0957267849639436\tbe:0.06220176964397848\tbut:0.056825740641734894\tthey:0.05657451653211365\thad:0.051507163731843164\twho:0.04765609107299611\t:0.01\n",
"the:0.4323775787326832\this:0.14632755928760274\ttheir:0.08199053654642631\tand:0.07433406168035818\tmy:0.058972689969085036\ta:0.05603815396474706\tof:0.05462269253646454\tThe:0.0459675503425749\ther:0.039369176940058\t:0.01\n",
"to:0.5671516910768173\twill:0.1510715224266989\twould:0.06457238937943624\tand:0.04963564276137687\tshall:0.049483429751424196\tnot:0.036010424561236674\tshould:0.027042751008008157\tmay:0.02598863949322166\tcould:0.01904350954178008\t:0.01\n",
"the:0.36272951085323246\tof:0.18543035631391452\ta:0.15397074508309586\tand:0.08986353964721512\tto:0.07260187110472961\tfor:0.03165028242040209\tThe:0.0314188531250225\tin:0.03125003021606946\tan:0.03108481123631847\t:0.01\n",
"the:0.2662311151654102\tMr.:0.2636692450079672\tand:0.08297124757692284\t.:0.08262341581194257\tDr.:0.08085046792359964\tJohn:0.07483321170954715\tMr:0.04661743405286599\tSenator:0.0461085498125241\tMrs.:0.046095312939220395\t:0.01\n",
"of:0.24655703725807718\tin:0.19076707150475933\tto:0.14912675584400276\tand:0.09805536582965153\tthat:0.09763977120242931\twith:0.058486253406031245\tfor:0.05587892590895292\tat:0.04815197631304222\tas:0.045336842733053606\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"to:0.2364180538543807\tof:0.23594055961863064\tfor:0.14217177666402991\tat:0.08048663569683762\tin:0.07575238328332702\tand:0.07180811871661949\tthat:0.07004002457752342\tfrom:0.043141803297008084\ton:0.03424064429164301\t:0.01\n",
"and:0.16965396298012247\tfor:0.1579382887689095\tof:0.12982656911081347\tto:0.10922370480675231\tin:0.1067930352505951\tis:0.09585484547689659\twith:0.07701426250448416\twas:0.0750751645633386\tthat:0.06862016653808772\t:0.01\n",
"the:0.5122927336390343\tand:0.19088207846368568\tor:0.05168300572324186\tof:0.046159734194207096\tThe:0.04331673422122005\ton:0.03978793098698056\tto:0.03827891596830872\ttho:0.03581354164521912\tan:0.03178532515810255\t:0.01\n",
"de-:0.24034028094723264\tof:0.19027886795557394\ther:0.10404386850781072\tthe:0.08595263538113737\this:0.0852866350275864\tMr.:0.08448074674668739\tcom-:0.0717062247903634\tin:0.07135487113079514\tre-:0.05655586951281297\t:0.01\n",
";:0.24697113048269076\tup:0.11349225893282706\tit,:0.10761648763085585\tdue:0.09386745529859694\tthem,:0.09195020801637636\tstreet:0.0914836948185302\thim:0.08351300421356629\t.:0.08238661155123944\tit:0.07871914905531721\t:0.01\n",
"the:0.8693689382332361\tThe:0.04164461490462329\ttho:0.027574932510179378\ta:0.016834858870820868\ttbe:0.0113795527876411\this:0.008232549584765847\tan:0.00661172161530458\tsaid:0.004905441163904982\tand:0.003447390329523957\t:0.01\n",
"of:0.5098472274332899\tin:0.13268782784949315\tto:0.10592018786131684\tthat:0.04760484698437597\tby:0.04756578762629169\tfor:0.044769435977049424\twith:0.03932066956143651\tand:0.032009553032577166\tfrom:0.030274463674169264\t:0.01\n",
"of:0.3803307642975053\tand:0.12706146004696414\tthat:0.11279273800004347\tfor:0.06783005640095656\twith:0.06575440938504741\tto:0.06526203971859659\tby:0.0641040948853933\tall:0.059916453150522984\tany:0.04694798411497046\t:0.01\n",
"the:0.2989642313749079\tand:0.19577887296007687\tMr.:0.16876110770435512\tThe:0.1053326914494959\tof:0.0627979972247594\tMrs.:0.05334378201665495\tMiss:0.041393822580830186\t<s>:0.03220073327496392\tthat:0.03142676141395581\t:0.01\n",
"it:0.22527501596969265\the:0.18388789568198277\tIt:0.17719007845420529\tI:0.09605887214942407\tHe:0.07943712792698977\twhich:0.07173560525924132\tand:0.06249392108142076\tthat:0.047256196305971616\twho:0.04666528717107178\t:0.01\n",
".:0.2550735379047672\tMrs.:0.14097229525718008\tMr.:0.1268146113134248\tof:0.1185665630677255\twas:0.07835300816529597\tand:0.07775557413018375\t-:0.0705340257149382\tat:0.06201535834703548\tthe:0.05991502609944887\t:0.01\n",
"and:0.38585869741430767\twas:0.1083765245530805\tthe:0.10260110465298938\tbe:0.08704910723823285\tis:0.0792433911572106\tor:0.06941874211747598\tnot:0.055414814881307686\tto:0.05111417296894566\tof:0.0509234450164495\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"and:0.23226257295813926\tthat:0.2213516500208345\tas:0.15701596263182646\twhich:0.10054007038092679\twhen:0.07438407586317003\tbut:0.07385335729908371\tif:0.05878632390389569\twhat:0.042549143701917945\tIf:0.029256843240205548\t:0.01\n",
"the:0.7038508590346497\tand:0.07294554106228263\tThe:0.04868083022828273\tof:0.039304942888325686\ta:0.03613357047720909\ttho:0.03443896275214681\tor:0.024143171633836644\tother:0.015747395784176357\ttbe:0.014754726139090478\t:0.01\n",
"a:0.3757390733039576\tto:0.1873763379974286\tone:0.08744744180831468\tthe:0.07802666262868159\tfirst:0.06496801670944023\tand:0.05909250273261483\tlast:0.04976791853049777\tno:0.04902701087337304\tevery:0.038555035415691746\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"him.:0.2815830648827118\t<s>:0.16898733615834735\tit.:0.13297886888857094\tyears.:0.08338086993227709\tthem.:0.07218576126026909\ttime.:0.0658040616663738\thimself.:0.0638931484698319\tman.:0.06273542896571663\tlife.:0.05845145977590137\t:0.01\n",
"the:0.3141697498569716\tof:0.13596872111181624\tThe:0.13148451940784603\tMr.:0.12071271065510487\tand:0.08466951013671548\tthat:0.08137847559446529\ta:0.05140346651734129\tMrs.:0.04087284649549475\this:0.029340000224244486\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"they:0.23254268624630034\twe:0.13676554475621922\twho:0.12307607106308122\twhich:0.09881889981928134\tthat:0.09816070818225994\tthere:0.08662883672544182\tand:0.08328310666319744\tThey:0.06795672150289232\tyou:0.06276742504132625\t:0.01\n",
"of:0.23938644186731756\tis:0.13975074868304482\tin:0.11640724085992611\twas:0.10297160233042561\tby:0.0903785520669559\tto:0.0902915603432484\twith:0.07832475526380644\tas:0.06732004250572093\tbe:0.06516905607955423\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
";:0.24831900338069315\tnothing:0.13078974075180344\tand:0.1208420300515082\tis:0.10260220095743057\tit,:0.09780992216361221\tthem,:0.08257696264269697\tare:0.0816280638705695\t,:0.06734575393909667\thim,:0.05808632224258922\t:0.01\n",
"is:0.33235168492020545\tare:0.24111805607783393\twas:0.15046216337713042\tand:0.07937592002168482\twere:0.06372309960403484\tIs:0.04701725108754983\tbe:0.02670395818052658\ta:0.025968530976605713\tbut:0.023279335754428438\t:0.01\n",
"It:0.36363398126475405\tit:0.14813406414768757\tthere:0.13242436440647207\tthat:0.08035907084365272\twhich:0.07519947938555714\tThere:0.05909525259513376\the:0.04695260961132871\tThis:0.044190616351058434\tand:0.040010561394355514\t:0.01\n",
"the:0.3393255573743127\tand:0.21178061799709652\tof:0.18374035432791083\tthat:0.05355193750391202\tThe:0.05262746553326421\ta:0.05042822526649288\tor:0.03381932134870707\tI:0.03348309181440277\tin:0.0312434288339012\t:0.01\n",
"to:0.3077707578542051\tof:0.22681478910997044\twith:0.11753828725498403\tfor:0.08787827979550161\tamong:0.058707280591620795\tagainst:0.05798415617263617\tby:0.05550851618541033\tand:0.03924279927829423\tbefore:0.03855513375737725\t:0.01\n",
"able:0.1393030711619596\tand:0.1351254136701572\tis:0.11870678352112214\thad:0.11435103596277793\thave:0.10892595090491182\torder:0.10499525019442854\tenough:0.09047530601893371\twas:0.08910219772913462\tnot:0.08901499083657444\t:0.01\n",
"of:0.23881594363948458\tby:0.1431441662733578\tand:0.14045932304176206\tin:0.11473661299840594\tthe:0.0968487694401868\tare:0.0794706918312467\tto:0.06219912260777153\twas:0.06101758933060501\twith:0.05330778083717972\t:0.01\n",
"to:0.38017134103969463\twill:0.16905314483498\twould:0.09527916658290726\tmay:0.08675332896552815\tshould:0.06283728370881102\tshall:0.06007446359778351\tnot:0.056307515032875996\tmust:0.039927651800072135\tcan:0.039596104437347214\t:0.01\n",
"the:0.4957290370515496\tand:0.09792063646689973\tthis:0.08955160331369506\tof:0.07700534382391\ta:0.05756315524186889\tthat:0.05219879132386392\tsaid:0.04457520116211498\tthese:0.03890732083116797\tother:0.03654891078492981\t:0.01\n",
"United:0.8498198872279494\tthe:0.05657941606160176\tted:0.017544142585334647\tof:0.017070201739642795\tand:0.01101704253817252\tI'nited:0.010806168444581408\tSouthern:0.010788149483951086\tnited:0.009659572432603868\tto:0.006715419486162479\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"the:0.4268548734152381\ta:0.29253825184763244\tand:0.06645049102780334\this:0.05285765861309013\tThe:0.03638751934719267\tvery:0.03601376141609047\tno:0.032137177954001214\tof:0.026574280968317085\tmost:0.02018598541063461\t:0.01\n",
"one:0.3743409924473765\tsome:0.16221972664271275\tany:0.09419961292607168\tpart:0.07014007095535373\tmost:0.05976947699820849\tthat:0.05955337882108308\tout:0.05877991854651943\tOne:0.05853722966128423\tall:0.0524595930013901\t:0.01\n",
"duly:0.2675206585287326\twas:0.21065416150133406\tbe:0.1712072768634628\tbeen:0.08145709873740542\tand:0.07529865892107399\tis:0.06780369172517538\twere:0.05291159917410443\tare:0.03288930272855837\tas:0.03025755182015288\t:0.01\n",
"of:0.407674785398844\tto:0.1277612093619651\tin:0.0981100127674003\tand:0.07987385520716705\tfor:0.06192213266467773\tby:0.059814335151744225\ton:0.0571953785601922\tthat:0.05542901686480434\tIn:0.04221927402320507\t:0.01\n",
"the:0.6897416290198383\tthis:0.10568114133741324\ta:0.044015731639283184\ttho:0.039822562862128104\tThe:0.036555283597326224\this:0.01994099728760865\twhole:0.01927639230542856\tour:0.018222603372269823\ttbe:0.016743658578703944\t:0.01\n",
"do:0.18612230307109243\tdid:0.16810899040662874\tis:0.15514076051878126\tdoes:0.10602637597850732\tare:0.08994454490790033\tcould:0.08909698959017164\twas:0.0781929177860772\twill:0.05932866040348429\twould:0.058038457337356776\t:0.01\n",
"so:0.37324059295590956\tas:0.213134456277444\ttoo:0.1163056276063509\tvery:0.1095416568177494\thow:0.06081075726440399\tis:0.034797244884535804\tbe:0.033020455209429936\tand:0.026983390115996365\tnot:0.022165818868179865\t:0.01\n",
"the:0.5984137332034329\ta:0.09243384292735643\tin:0.0661440813633578\this:0.05947186560093358\tand:0.04645692386189991\ttheir:0.04000273074303106\ttho:0.03449120157304203\tthis:0.02663277772504228\tNew:0.025952843001903966\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"It:0.23127912378197046\tthere:0.21240176058284072\tit:0.19501212350781538\tThere:0.10713821937054821\tThis:0.06595333365099705\twhich:0.04771265982771375\the:0.04597925216904934\tthat:0.04565003547638064\tthis:0.038873491632684394\t:0.01\n",
".:0.2767585203952872\t-:0.15144859596932791\tto:0.1247422310588296\t<s>:0.09221550183872147\tthe:0.08319511449989721\tand:0.0829199016508519\t1:0.06694657288888801\tof:0.05634515897268171\tNo.:0.055428402725514914\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"and:0.26612171575929056\twhich:0.1721293058132298\tI:0.16376377630819305\tthat:0.14743649615197008\tit:0.07147724898294228\tIt:0.05688497308248973\the:0.04749454647121323\t1:0.0355102184307445\twho:0.029181718999926727\t:0.01\n",
"the:0.347367934473981\tof:0.1589326408371052\tand:0.15021875130496226\tto:0.08890014713832813\ta:0.08201466961762124\tThe:0.052615788529909696\tin:0.04595428439612435\t.:0.033556160772685015\this:0.03043962292928317\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.2213236006133248\tof:0.21560455327320835\tand:0.1316599079832904\tto:0.11597400517006512\tfor:0.07880435443424005\ta:0.061872593037282944\tis:0.05527736425474842\twas:0.05518778144497349\tbe:0.054295839788866464\t:0.01\n",
"the:0.35765690019365337\ta:0.3501366189719164\tand:0.06104729663697498\tto:0.05494077331589256\tThe:0.039127447654910164\tI:0.03825555761731269\tnot:0.03314983118161726\tthis:0.031388414951890424\twill:0.024297159475832174\t:0.01\n",
"to:0.29180415793153586\tand:0.21045365365751517\tof:0.1452599787014739\tthe:0.12575576703428043\tin:0.06574761127577354\t<s>:0.04104981934860873\tnot:0.04093701420182499\tI:0.03567624969745241\tby:0.033315748151535096\t:0.01\n",
"of:0.5824461667093965\tthe:0.21280564828871265\tand:0.03728814185103443\tother:0.03572174043738549\told:0.030206577670155835\tthat:0.02707965002072616\this:0.02304430438709739\tmiddle:0.020985510691645053\ton:0.020422259943846357\t:0.01\n",
"be:0.3747302129840905\twas:0.19462464333859875\tbeen:0.11804927057908207\tis:0.10375521965055566\twere:0.0535470619893883\tare:0.05064822349054063\tand:0.04226540543959898\the:0.02627045663894024\tbeing:0.026109505889204847\t:0.01\n",
"of:0.3236896305270204\tin:0.17762822587352228\tand:0.12961856856266266\tbe:0.08228482625181725\tis:0.06272051156105715\tfor:0.05430932816897472\tby:0.05362868177366586\twas:0.053060807578616385\ton:0.053059419702663285\t:0.01\n",
"a:0.34479904408683626\tof:0.19507689438740616\tthe:0.14151387254866005\tin:0.09831845419347546\tand:0.05425550163378291\tfor:0.04777878708519283\twith:0.03791778559196019\tas:0.03545543737052533\tvery:0.03488422310216074\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"to:0.21103214768801914\tand:0.17275899386244045\tof:0.13620929929917627\tby:0.09665336205073076\tnot:0.08563856433924905\tat:0.08126096560482661\tthe:0.07084943458914722\tis:0.06902183731715869\tare:0.06657539524925173\t:0.01\n",
"of:0.2970290006030046\tto:0.16393253794746387\tin:0.10791409042911151\tknow:0.10709373902640992\tand:0.09865394726724368\twith:0.06618194097526912\tis:0.053230979520549976\tsee:0.0481171214180705\tfor:0.047846642812876906\t:0.01\n",
"a:0.4107998745079319\tthe:0.1765597243061617\tOn:0.11714730033338785\tin:0.07067297328542257\tof:0.06305052007045311\ton:0.05622444360981063\this:0.03821996166353329\tIn:0.030028664750279578\tfrom:0.027296537473019473\t:0.01\n",
"of:0.3596060485778437\tin:0.1499196605781388\tto:0.12575828931910485\tfrom:0.07393225709821445\tthat:0.06100884738535543\ton:0.0595928742311344\tand:0.05953217945463068\tfor:0.05203181464755927\tat:0.04861802870801852\t:0.01\n",
"the:0.4083661861175645\tof:0.2681739908184057\ttheir:0.0820600629661528\tfor:0.054462600111962106\this:0.04354457017584983\tto:0.04176354592844308\tother:0.03199384232718008\tand:0.031367206473219236\twith:0.02826799508122268\t:0.01\n",
"and:0.24490704579441275\tafter:0.1476562652705632\tby:0.12519914061615076\tAfter:0.11841901750704262\tof:0.09949294308299458\tfor:0.08338728090639316\tin:0.06659154609353693\tto:0.06008811505994955\tbefore:0.04425864566895647\t:0.01\n",
"and:0.20885061360109825\tlaid:0.11837240659273295\tcame:0.10692668496277574\tbreak:0.10058019856379745\twent:0.09487589062476146\tcut:0.09467593185071363\tlay:0.0931427411506152\tit:0.0871188258407089\tway:0.08545670681279649\t:0.01\n",
";:0.27662650796245086\tis:0.15180112973897145\twas:0.0996427091157461\tit,:0.0932966651563462\thim,:0.09095071303182913\ttime,:0.08193037563967935\tthem,:0.073116185068647\t,:0.06132668835011265\tnothing:0.061309025936217246\t:0.01\n",
"the:0.67511473426611\tof:0.07671648228701715\tThe:0.04974248797054177\ta:0.04712916277108535\tand:0.035354339826838825\ttho:0.03187790633183124\tthis:0.030688698146183063\tin:0.026140872347047\tsaid:0.01723531605334566\t:0.01\n",
"of:0.2398708670291844\tthe:0.22743525417047472\tand:0.13139002385520804\tto:0.10376973167625372\ta:0.08712962001455624\tat:0.06768600089169872\this:0.04664315861358613\tin:0.04554117936171022\tis:0.04053416438732785\t:0.01\n",
"his:0.5533430360084531\ta:0.1015576908275408\tthe:0.08677350303311426\tmy:0.07837888994562961\tand:0.05218664705014421\ther:0.04203330232497912\tbis:0.02983494823221107\ttheir:0.025882192126239555\tof:0.020009790451688117\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"the:0.39421008147709946\ta:0.29559013657874794\tof:0.10811232916533109\tand:0.054505915891102596\tany:0.03701398499563684\tthis:0.02695289292923975\tto:0.026172148667666165\twith:0.025933516140341055\tno:0.021508994154835225\t:0.01\n",
"and:0.290748060280696\twas:0.2079887416638871\tis:0.1017869708566181\tbe:0.08648046475058739\thave:0.07964466506134657\thad:0.06764923642701595\thas:0.05776386547303254\tI:0.051970135893460875\the:0.04596785959335546\t:0.01\n",
"the:0.35561286869772873\tof:0.1819199950374389\tand:0.12255915251482433\tThe:0.09517403592042892\tMr.:0.06492591595048423\ta:0.055280852225840935\tthat:0.05377948602800758\tthis:0.03060833742606626\tto:0.030139356199180078\t:0.01\n",
"and:0.48151593662809183\twas:0.10612951398346099\tis:0.07577697782050932\tare:0.06493924500120098\tbe:0.05865886345501072\tthat:0.056385861790890286\twere:0.0555892858918052\tto:0.05539103284018464\tof:0.03561328258884604\t:0.01\n",
"it:0.20622348714107272\tthat:0.16057455996523642\tthere:0.14151153360535962\twhich:0.11963266539685385\tthey:0.10506951759105808\tIt:0.08276968157081656\the:0.06915141905166503\tand:0.0620236112565421\tThere:0.04304352442139564\t:0.01\n",
"of:0.21338832523674772\tin:0.14017901232241858\tand:0.12939343303774875\twith:0.10408959886573863\tis:0.10292083424447168\twas:0.08224908889474121\tby:0.07954907839589143\tfor:0.07804424202008158\tto:0.060186386982160285\t:0.01\n",
"to:0.22768304291719532\tof:0.15140891799763936\t-:0.14587489734607295\ta:0.11608420190783274\tI:0.08791459167278894\tand:0.07694020069135533\tin:0.0632980781165449\t.:0.06268314047631422\tby:0.058112928874256335\t:0.01\n",
"the:0.18149069220156558\tand:0.1504883955639578\tof:0.1306839812572968\tbe:0.11155845240072802\twas:0.10179523594155183\tis:0.0955790790376316\ta:0.08833372604948514\tto:0.06733123474153689\tit:0.0627392028062464\t:0.01\n",
"and:0.37236953764434594\twho:0.1149172944183585\the:0.10326030809369023\tthat:0.08008118714605196\tI:0.0778079252086021\twas:0.07065307141621892\tit:0.06672802633792492\tHe:0.0528378296505178\twhich:0.05134482008428955\t:0.01\n",
"of:0.3115572421256441\tin:0.15904315724144535\tto:0.11879012216735421\twith:0.0767338351887762\tand:0.07477529697200207\tthat:0.06868690907203401\tfor:0.065392782545963\tby:0.05852746907194358\tis:0.0564931856148374\t:0.01\n",
"to:0.29854381431664845\tat:0.16687347759556886\tin:0.1341454346546888\tof:0.13315706089993282\tfor:0.08202605696021029\tand:0.0633791904781926\ton:0.03840779282514937\tIn:0.03729628332844639\twith:0.03617088894116234\t:0.01\n",
"part:0.3779764184393855\tsurvey:0.16160026767866661\tconviction:0.11305602921262439\tone:0.10205644063682141\tpayment:0.07428468814218986\tholder:0.057490326337698024\teither:0.038622916739222565\tsale:0.03329778966121728\tacres:0.0316151231521744\t:0.01\n",
"the:0.21298000459552283\tand:0.2039636710878841\tof:0.18227586657211736\tto:0.0947332508750933\twas:0.07100993380022316\tin:0.06763282217115012\tfor:0.05552798378335023\the:0.05223279322482916\tMr.:0.04964367388982969\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.38111910851681263\tand:0.12368643475167425\tto:0.10508181359023197\tthat:0.10141256206112283\tby:0.06344537461679338\ton:0.05898250021444946\tin:0.05822072483084395\tas:0.04919194988587791\tfor:0.04885953153219358\t:0.01\n",
"a:0.5931225531366147\tper:0.1688721963244279\tthe:0.0832998194762516\tone:0.05133532420173748\tA:0.03791759802439378\tand:0.01892238325003625\tevery:0.0177510782996842\teach:0.009437271284384093\tor:0.009341776002469836\t:0.01\n",
"the:0.661522795418605\tof:0.0698220033475724\tour:0.05404556787505039\tAmerican:0.04325375511894321\tThe:0.040463267285814494\tgood:0.03558277739226549\tand:0.029188782248567087\this:0.02844916846519516\ttho:0.0276718828479866\t:0.01\n",
"that:0.36160877314439566\tand:0.14219484879276093\tas:0.13623965778485755\twhich:0.13249157452205199\tbut:0.05692780547124897\tif:0.04519834660789213\twhat:0.044807217896236\twhere:0.04458309610610101\twhen:0.02594867967445583\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3812452128675394\ta:0.14188026925595257\tof:0.1342135824119986\tand:0.10912062252330905\tThe:0.07760302373701548\tto:0.045543455482652075\tin:0.03735455312566075\ttho:0.031733235871351906\tfor:0.03130604472452036\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.27480777206325363\tin:0.19757513777200272\tto:0.16334502779983268\tfor:0.09912089182383609\tand:0.07622019447300508\tby:0.05457212156874852\tthat:0.051419029459739064\ton:0.037120063400368615\tIn:0.0358197616392135\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"the:0.3130461827582134\tof:0.20503705766424116\tin:0.14455783588367027\tand:0.08004415724120469\ta:0.07307935895054497\tor:0.051377162729789115\twith:0.04146323159510609\tfor:0.04078763048999113\ton:0.04060738268723903\t:0.01\n",
"of:0.3625780576808963\tto:0.11434104146420596\tfor:0.10754846944091094\tin:0.0944468344328033\tand:0.09113114400022963\tby:0.0639022514008336\tthat:0.05815681436644094\ton:0.04947401343732461\tfrom:0.04842137377635483\t:0.01\n",
"well:0.24943074827152728\tsoon:0.1465638737566304\tfar:0.11166956966299761\tand:0.10403800439943817\tsuch:0.10271700698548483\tlong:0.09399391134360084\tso:0.06322194808413747\tmuch:0.06259011693566598\tjust:0.055774820560517524\t:0.01\n",
"was:0.295712686310798\tis:0.2729060648996986\tare:0.10558340579881663\tand:0.07934728899751071\twere:0.0698941474398759\tif:0.055321973848630454\tIs:0.049629529670743855\tdo:0.041235058321558764\tas:0.020369844712367174\t:0.01\n",
"of:0.2653153066417567\tand:0.26421360853186443\tin:0.07942815678482927\tby:0.07333008426433478\tfor:0.07137131986469684\twith:0.06732884793779809\ton:0.06221107889994827\tto:0.059452465339277026\tafter:0.047349131735494654\t:0.01\n",
"of:0.24587641997031076\tin:0.17799594869314583\tand:0.11904096891414385\twith:0.10111539790306331\tto:0.09675648222939214\tfor:0.08747035842132106\ton:0.06152129683139787\tfrom:0.06056397523208188\tthat:0.03965915180514332\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"to:0.38283142319795366\tand:0.24249741431773492\tof:0.06905945087681946\tbe:0.057770290515877544\tI:0.052461827012891704\tor:0.04909427035789365\twas:0.048480848279335506\t<s>:0.04564667339695939\tat:0.042157802044534176\t:0.01\n",
"they:0.2904317289856753\twho:0.20447915945762768\tand:0.11581445973323391\twhich:0.09807024386840542\twe:0.09647592071164378\tThey:0.06092840290521569\tmen:0.046291422845368344\tthat:0.043885524918982115\tI:0.03362313657384767\t:0.01\n",
"of:0.3419989156396151\tin:0.1508166920891672\tto:0.12158660409546682\tand:0.09271503778789662\tthat:0.08576275372940023\tfor:0.07004934539669723\tby:0.04632982244547999\tIn:0.0421362062554848\ton:0.03860462256079206\t:0.01\n",
"a:0.3792353147943676\tthe:0.11293217065686431\tand:0.10408440659854373\tany:0.08496305327616041\tto:0.07970536343463322\tno:0.07253690257700579\tin:0.06336569912715743\tof:0.06215378740459809\tby:0.031023302130669377\t:0.01\n",
"to:0.29681969916199474\ta:0.1887519853913538\tthe:0.11388116513003821\tsoutheast:0.0820238255566615\tand:0.06865542444657666\tof:0.06413423537745348\tsection:0.06389949918933742\tsaid:0.05961634304850191\tnorthwest:0.052217822698082124\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.5797298703940038\ta:0.14741977337893364\tThe:0.09045451875206449\tand:0.08259048845477822\tof:0.023569936268691926\ttho:0.019681287813071616\this:0.016394471967456765\tto:0.015123380303076967\tas:0.015036272667922535\t:0.01\n",
"of:0.2299256328309873\tto:0.15827430777450074\tas:0.12858263628594768\tthe:0.10633331551427544\tat:0.08728811314242502\tand:0.07696163227570887\tin:0.07372818680556514\twas:0.06445572858588555\tbe:0.0644504467847042\t:0.01\n",
"of:0.2519546253727117\tand:0.2073416942778454\tto:0.1762500301467099\tMrs.:0.10824839977159796\tsaid:0.06372435170126067\t.:0.06330024108965512\tW.:0.049486057669748514\tby:0.036787178309855915\t<s>:0.032907421660614805\t:0.01\n",
"the:0.5589786005738552\ta:0.14517840747896424\tThe:0.07711738442685845\ttho:0.04242261167466776\tA:0.04237580686212869\tfinance:0.03967170666355985\tsaid:0.028678088266292975\tand:0.028330075561972007\tthis:0.027247318491700867\t:0.01\n",
"to:0.6189362954379164\tthe:0.09776107162301788\tand:0.0875984552259933\ta:0.05351088810177751\twill:0.03665681948126164\twho:0.030583423137343798\tthis:0.025095862374297517\twould:0.021351198667875087\tnot:0.018505985950517\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"the:0.5836101463096731\tof:0.12188952952973985\tthis:0.11920364787984217\tsaid:0.036178110826270635\tand:0.03543538468272208\ttho:0.03038884617439185\tin:0.025578600241695573\tour:0.02100940325630925\tThe:0.01670633109935537\t:0.01\n",
"it:0.1676673760604401\tthey:0.1401800211068448\tyou:0.12014900654112101\tand:0.11418625089857375\twhich:0.10821208903254793\tIt:0.10149272528899718\the:0.09351786223255709\twho:0.08066648440849256\tthat:0.06392818443042551\t:0.01\n",
"the:0.6404822341673273\tand:0.07686355860468692\tThe:0.07520997630462978\ta:0.06612478489952929\this:0.04220814971519138\ttho:0.028755123278696018\ttheir:0.02416865194688416\tof:0.02121889047630208\tits:0.01496863060675306\t:0.01\n",
"of:0.37611633492068497\tin:0.16983718035888865\tto:0.10547648806332587\tthat:0.07686452124002648\tfor:0.05899185694913115\twith:0.052781829133684434\tfrom:0.050497224636538524\tby:0.04994324425242045\tIn:0.04949132044529944\t:0.01\n",
"three:0.6543533612735402\ttwo:0.12480472206535884\tfour:0.06769931993599375\tfive:0.04583283140495345\tten:0.030393400127885696\tone:0.02434920148071527\teight:0.015846892813327636\tsix:0.015117869914966945\tweek:0.011602400983258163\t:0.01\n",
"and:0.23894898385498498\tnot:0.20207685235224593\tto:0.13061854870239742\tthe:0.09919472914270759\tI:0.08105896029471524\tof:0.06561735361624846\tthat:0.06328684355848567\tis:0.05982753217481188\twe:0.0493701963034028\t:0.01\n",
"be:0.22375929399405534\tam:0.18572395762647861\twas:0.16408494673965235\tis:0.15772553986860066\tare:0.10156257455751436\tvery:0.046595852201671895\tbeen:0.04332562863516598\twere:0.03480618697320701\tnot:0.03241601940365377\t:0.01\n",
"the:0.24313874347800873\tin:0.2116549877696254\tand:0.17029115726382124\tof:0.13738720178431912\tfor:0.05524936760577779\tIn:0.051138918614141986\twith:0.042218037426429024\tto:0.04178827889403174\tmake:0.03713330716384473\t:0.01\n",
"the:0.23421205313542093\tof:0.20388782615470405\tand:0.153308445258665\tto:0.0970186270777561\ta:0.09441398929031039\tby:0.06076001621727257\tat:0.05338142373444161\tin:0.05108564199440836\t<s>:0.041931977137020925\t:0.01\n",
"and:0.495105669165907\twas:0.16678764992729916\tHe:0.07619533035631268\tis:0.07269162218228602\twere:0.05163485142231018\tare:0.04991159441625262\the:0.03583659469874951\tbe:0.025253777175236827\tbeen:0.016582910655646262\t:0.01\n",
"and:0.303134032591169\tthat:0.297606976656036\tas:0.12323178679778064\tbut:0.06316432554717032\teven:0.059346434140206114\tBut:0.04121195883246587\tAnd:0.036674087613377315\tor:0.03486657882197133\tand,:0.030763818999823344\t:0.01\n",
"at:0.3935903344261987\tto:0.1663344980319732\tof:0.15170678574696486\tAt:0.07478308716164216\tin:0.07084146861909288\tfrom:0.04002386542864681\tand:0.03127305594949951\tfor:0.031089746908411178\tthat:0.030357157727570815\t:0.01\n",
"in:0.5757398704455129\tIn:0.15098607067936895\tof:0.05332128425166934\twithout:0.049924613518185584\tto:0.03715130576747943\tand:0.03617470566360262\tfrom:0.03534003846028925\twith:0.034397468336547526\tnot:0.01696464287734449\t:0.01\n",
"and:0.3221754565181813\tthe:0.2520608381197157\ta:0.1326543454854159\tof:0.09626325732738435\twith:0.04315792188088004\tmost:0.03899630991544164\ttwo:0.0357939179569499\tto:0.034466922313209816\tThe:0.03443103048282132\t:0.01\n",
"the:0.550856591031602\ta:0.15766783265425852\tmil-:0.1216755589266314\t<s>:0.05258437020274316\tThe:0.03951792535040608\ttho:0.021217313874811544\tand:0.019651648735165995\tfront:0.014048423942116214\tof:0.012780335282265107\t:0.01\n",
"and:0.31427435580838886\twas:0.14679500145528662\tthe:0.11720850173006123\tbe:0.09527625495982946\tat:0.06976817417230824\tyears:0.06722323277722586\tit:0.06355453256469643\tis:0.05817455663525613\tto:0.05772538989694694\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"of:0.26569507564889716\tthe:0.1973324984031801\tand:0.19009867178801082\tfrom:0.0790271230663097\tto:0.07895865604963835\tin:0.05620514571496256\tthat:0.05147663139818925\tThe:0.03787614507730799\tfor:0.03333005285350404\t:0.01\n",
"the:0.35790234277501254\tand:0.147463534744512\tof:0.14093181644797453\tto:0.09945709873881109\ta:0.0957100512061093\tin:0.04651543131253403\ton:0.03531310975304782\tat:0.03358155461640169\t<s>:0.03312506040559699\t:0.01\n",
"the:0.3155550940156394\tof:0.17283600545787453\tand:0.09391174685980018\ta:0.08793236260243929\tto:0.0865512570009515\tbe:0.07748327797896089\tin:0.052626231371751035\this:0.052024488566849304\twas:0.05107953614573394\t:0.01\n",
"<s>:0.30703066175421584\tin:0.15287384841835955\tthe:0.12202803334649176\tit.:0.10358137251537447\tand:0.0661374611249712\tof:0.06558086351709817\t.:0.06429726013154916\tthem.:0.054531022537827094\t1.:0.05393947665411278\t:0.01\n",
"<s>:0.33473759819367355\tand:0.23009864009863373\tthat:0.09202203160337645\t:0.0774718068104296\twhich:0.07635576314474146\t.:0.054723832928299514\tI:0.04525362073501991\t1:0.04242537099682252\the:0.03691133548900321\t:0.01\n",
"the:0.3375056161183491\ta:0.2836608879547391\tthis:0.14731911104932272\tsuch:0.06093442290378306\this:0.05358038949777849\tsame:0.02976732913752797\tthat:0.026799526108775736\tany:0.025293730466745663\tThe:0.02513898676297806\t:0.01\n",
"the:0.6981749727519496\tThe:0.09738141119177027\tFederal:0.04264209811532503\ttho:0.03220169981095597\tof:0.03009455898879243\tStates:0.02704177214931976\tour:0.02408823015778685\tthis:0.021013423868591827\tand:0.01736183296550821\t:0.01\n",
"to:0.5337069363684199\tand:0.13270861958100083\twould:0.10872478481411717\tnot:0.07777623868116115\twill:0.07580178032109726\tthey:0.016814951893231133\twho:0.015326319999317013\tshould:0.014643214794591262\tmust:0.014497153547064321\t:0.01\n",
"one:0.23306638664669602\ttwo:0.15869925700795806\ton:0.13125775425113728\tand:0.1183372530504351\tthree:0.07931195852050602\tfour:0.07642217182564348\tthem:0.0659241407014813\tten:0.06379066469153413\tperson:0.06319041330460864\t:0.01\n",
"it:0.21555606625187765\the:0.18406089644826473\tIt:0.1480542687292136\tI:0.11570423360385573\tand:0.0817113616070141\tHe:0.07841868369987202\twhich:0.06668555674742228\tshe:0.05067278692091577\tthere:0.04913614599156412\t:0.01\n",
"up:0.23542388952618598\thim:0.11827525051849565\tmen:0.10645621226279764\tdown:0.0992633075326327\tout:0.09562878697478557\t;:0.0939430588936698\tback:0.08561007154769704\ttime:0.07915394590619541\tit,:0.07624547683754013\t:0.01\n",
"to:0.18523593747157469\tand:0.17360972087184848\twest:0.15332957497084201\teast:0.13673165271598622\tthe:0.08505684312710853\tof:0.0837969028883063\tnorth:0.08212063464310039\tsouth:0.04848519892100364\tabout:0.0416335343902296\t:0.01\n",
"be:0.24071208034377298\twas:0.17955997980674962\tbeen:0.14859870304703462\tand:0.1239847160507075\tis:0.09778933293987387\thave:0.05533824913788477\tnot:0.05271393748872056\thad:0.04667293945926963\twere:0.04463006172598638\t:0.01\n",
"the:0.24130576549866314\tof:0.18833662870322207\tand:0.16607091897550064\ta:0.12226357561830728\tto:0.08119819928176736\twas:0.061441215918139495\tbe:0.05012797215849651\tis:0.04315640870139991\tbeen:0.03609931514450368\t:0.01\n",
"of:0.2220576539240044\tthe:0.22043542449925224\tand:0.1345026857679174\tto:0.12753146328833598\ta:0.10997212049159459\tin:0.05276898407384459\t<s>:0.0478129806278273\tby:0.041850738562329695\tMrs.:0.03306794876489386\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"a:0.41445464996140324\tthe:0.14683342601098173\tvery:0.13152817828213675\tand:0.11712055669675754\tmost:0.0474702942142087\tas:0.036218164628964634\tsome:0.035297801134442114\this:0.030747840479696264\tone:0.030329088591408954\t:0.01\n",
"of:0.6455528693054908\tand:0.10067751740327703\tthe:0.08240185955285441\tfor:0.044152315698547974\tin:0.03594214540778664\twith:0.029071935628875223\tto:0.02600228761791489\tby:0.013397555585454335\tThe:0.012801513799798781\t:0.01\n",
"more:0.21022441699777702\tmade:0.1322358042796141\thighest:0.12641126541303346\tit:0.11787877394703757\ttime:0.10051737531816961\tprompt:0.07695503640430239\tlarge:0.0767022199502132\tgood:0.07456412276369226\tmen:0.07451098492616036\t:0.01\n",
"and:0.18097052808233638\tof:0.1714053369511449\tto:0.1689910352415987\tthe:0.12316674455170543\tbe:0.10268054111879898\twas:0.08016658067172577\tin:0.06077794898927725\tfor:0.051703905049467744\tor:0.050137379343944834\t:0.01\n",
"and:0.20574901464648052\tbe:0.1782627871071889\twas:0.1377230897430883\tto:0.08832819096533921\tbeen:0.08618103965957719\tis:0.0810041601548845\tof:0.0796758931950268\the:0.07002166678811851\twere:0.06305415774029603\t:0.01\n",
"of:0.29358947036125244\tin:0.18028893126427095\tto:0.1068098024950793\twith:0.09056444700024778\ton:0.08044527243799857\tby:0.07461474740538868\tfrom:0.06746986323674065\tand:0.05438751561889232\tupon:0.04182995018012925\t:0.01\n",
"that:0.2552027492246132\tand:0.24739616137381143\tbut:0.13951823211335046\tas:0.10047275784378422\twhich:0.07665856935201883\tif:0.05195519272673162\twhen:0.04972913884251489\twhere:0.03626071909960702\tBut:0.03280647942356842\t:0.01\n",
"the:0.8440911736901059\tThe:0.05338168809403719\ttho:0.028461736880908296\tthis:0.017304089161641244\ta:0.011377650123868818\tand:0.011040819196097397\tsaid:0.010343471220139781\ttbe:0.009458530074233956\tnext:0.004540841558967441\t:0.01\n",
"and:0.26231454141631805\tof:0.15893048644414662\tthat:0.15218494755441173\tto:0.09532061487359125\twhich:0.09450302188953494\twhen:0.07039124195809841\tas:0.05657853528263088\tthe:0.055933430978184644\tbut:0.04384317960308343\t:0.01\n",
"due:0.43995255135221406\thundred:0.11569581091547504\tmore:0.08748674086121175\ttime:0.08338479184441352\tit,:0.05470936576312284\twork:0.05342309420456249\tdollars:0.05244583827008735\tit:0.051562615660103686\tthem,:0.051339191128809344\t:0.01\n",
"board:0.16927728974898812\tnumber:0.16621048870788083\tout:0.1232173097385954\tline:0.11114904742948169\tmatter:0.10132737425536427\tamount:0.09239294021795307\tsystem:0.08356846860053807\tright:0.07181648670892005\tstate:0.07104059459227853\t:0.01\n",
"the:0.3352547426955254\tof:0.20335078985994604\tand:0.1499414444480291\ta:0.1008781129495522\tin:0.058661254659588644\tto:0.05075765233305654\twith:0.032656232836390395\tThe:0.03251312669516386\tfor:0.025986643522747876\t:0.01\n",
"he:0.21236976584642633\twho:0.15091908100628376\twhich:0.13423069933853982\tthey:0.1114226506626021\tit:0.10310378443593025\tthat:0.08782466281035546\tI:0.07127377388196328\tthere:0.06045635920866448\tshe:0.058399222809234465\t:0.01\n",
"to:0.31183925208060853\twill:0.126130591692272\tt:0.11984709946223056\tthat:0.09195814575382462\twould:0.08591361815159086\tand:0.0853485014069716\tI:0.06613257642948804\tmay:0.05734860361106113\twhich:0.045481611411952734\t:0.01\n",
"and:0.23164125240091674\tthe:0.17521034894122012\tof:0.13330018448104292\twas:0.11699913479486232\tis:0.08356598388440878\tbe:0.08314542977102056\tto:0.07800034787885755\ta:0.04422804667543665\the:0.04390927117223426\t:0.01\n",
"the:0.6736909049703584\tof:0.08989758339674732\tour:0.04321340661300993\tAmerican:0.0415636944553164\tto:0.03244108737363863\tand:0.03153266119743346\this:0.027631639411485828\tfor:0.025053867118078183\tby:0.0249751554639319\t:0.01\n",
"and:0.29904236408823054\tis:0.15995040533094393\tthat:0.12052988285200994\tor:0.09033223313988667\tas:0.08756067979169307\tif:0.06494692180495612\tIs:0.06290149472231273\twas:0.05383962892268202\tbut:0.050896389347285034\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"the:0.6275533743860632\tand:0.07724950097402865\tThe:0.06211355447357128\ttho:0.048713671207277535\ta:0.0462103766499183\tof:0.03933148615485745\ttwo:0.030530205989253455\tall:0.029285021201751808\tor:0.029012808963278278\t:0.01\n",
"the:0.22474110874305311\tto:0.21163047591653383\tand:0.16440436934190822\tof:0.15232532812671112\tin:0.07489615808393242\tnot:0.04572174599547668\tI:0.03958829247081032\ta:0.03849676889680186\tor:0.03819575242477245\t:0.01\n",
"of:0.2797548080087538\tto:0.19573947608704179\tin:0.164778589913542\ton:0.07393671922515975\tand:0.05987583349866956\tfrom:0.05875186832357492\tthat:0.0584397660116613\tat:0.05617145107470241\tby:0.04255148785689439\t:0.01\n",
"the:0.33721611975305626\tof:0.1924864771074684\tand:0.12291076848485799\ta:0.09538547963802806\tto:0.07419230042028697\tat:0.06270261014364774\tin:0.05139917452123443\tfor:0.0270261812349637\tor:0.02668088869645632\t:0.01\n",
"I:0.2698354119572756\the:0.2472247448198648\tthey:0.11810011368440274\tit:0.08108156105187057\tshe:0.07090132671029033\twe:0.05886685062789121\tand:0.058359897558972855\twho:0.04363432974251809\tthat:0.041995763846913566\t:0.01\n",
"it:0.20622348714107272\tthat:0.16057455996523642\tthere:0.14151153360535962\twhich:0.11963266539685385\tthey:0.10506951759105808\tIt:0.08276968157081656\the:0.06915141905166503\tand:0.0620236112565421\tThere:0.04304352442139564\t:0.01\n",
"the:0.2674492964256619\tof:0.20511700061949348\tand:0.14485297190820026\ta:0.10901726580538401\tto:0.07826945908641957\tbe:0.053803876767259305\twas:0.04954367835637349\tis:0.042308161686394764\tin:0.03963828934481334\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.25721617382666384\tto:0.17737158840104994\tthe:0.1607460783808089\tand:0.10775397429815597\ta:0.08319316318129835\tin:0.07741396740879346\tthat:0.04474106809029698\tby:0.04101623747128274\twith:0.040547748941649836\t:0.01\n",
"of:0.29965648786216087\tthe:0.20372821190005933\ta:0.0999942374813733\tOf:0.09647955597336222\tthis:0.09435189269083483\tThe:0.06178889294781695\tthat:0.051072556020506775\this:0.04909387294554732\tThis:0.033834292178338485\t:0.01\n",
"they:0.25103200119519326\tthere:0.20926418715856013\twhich:0.10285470388543959\twho:0.09617508260323236\tand:0.08783004719925781\tit:0.07437925039945503\tthat:0.058726669652060505\tThere:0.05607744624284431\twe:0.053660611663957025\t:0.01\n",
"and:0.32434810589817087\twas:0.11832549081564547\theld:0.10061653345026712\tBeginning:0.08194282066246006\tis:0.07787052591190631\tlook:0.07433840727139066\tarrived:0.07348439933321943\tthat:0.0714853472708103\tinterest:0.06758836938612982\t:0.01\n",
"of:0.37888252473908907\tin:0.1282086180355952\tto:0.10441990140392647\tand:0.09593832568712528\tthat:0.06971949913892456\twith:0.06106707741411148\tfor:0.0608570667914635\tby:0.05176039007607272\tfrom:0.039146596713691764\t:0.01\n",
"the:0.6847209660202248\ta:0.07375672112416251\tof:0.06825798264116387\tThe:0.04244833076855054\ttho:0.03566294951728865\tcivil:0.03175979765629455\tthis:0.029670919709271628\tthat:0.011880591983451795\tfor:0.01184174057959161\t:0.01\n",
"and:0.23269702242011067\tmade:0.22981759683133623\tor:0.11115481161761777\tthat:0.07236086063876271\thim:0.07054273789002967\tfollowed:0.07041660789627405\towned:0.07020071888558449\ted:0.06697266320322266\taccompanied:0.0658369806170616\t:0.01\n",
"number:0.31653148183756785\tcouple:0.19656705625401702\tmillions:0.08549749204131621\tamount:0.0807826587906373\tbushels:0.07627093698274136\trate:0.0747330997800007\tthousands:0.060991077650575896\tsum:0.05234061003691401\tperiod:0.04628558662622974\t:0.01\n",
"and:0.33061738223970283\tfilled:0.13348895237334057\ttogether:0.11986325241658866\tcovered:0.08297737991428761\tbut:0.07220438578986679\tthat:0.06543436312255616\twar:0.06452701106612282\tcharged:0.0618075327377077\tdo:0.059079740339826964\t:0.01\n",
"and:0.17289155610334328\tthe:0.16313864339315245\tof:0.1620075866484814\tin:0.13196377323690256\tto:0.11337458955272367\ta:0.08379906203463973\ton:0.07306073661053006\tfor:0.04905989825636819\this:0.0407041541638585\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"a:0.30840678142424416\tthe:0.19475716645716654\tis:0.13715229972043083\twas:0.09304623130854763\tnot:0.07738494407735814\tare:0.06851081239596264\tbe:0.04704132626073008\tand:0.03513589377048406\tbeen:0.02856454458507571\t:0.01\n",
"for:0.44214987080886836\tof:0.1850577619533028\tFor:0.06992176757878311\tat:0.06252521526704433\tin:0.06201823729381042\tthat:0.06185537453943919\tto:0.05369963295098596\tand:0.03273120954895438\tIn:0.020040930058811593\t:0.01\n",
"the:0.33485488415174597\tand:0.17239136307301356\tof:0.12698487187951712\tan:0.11294653297303256\twith:0.06354369676697484\timpurities:0.052275675796178735\tby:0.0445826210217109\tor:0.04202845518507071\tfor:0.040391899152755636\t:0.01\n",
"the:0.3260733600731286\tnot:0.3062515921792606\tis:0.0741758007397427\tThe:0.05406143037485758\twas:0.05355998577430697\thad:0.046921404467446734\thave:0.04481797694441656\tand:0.044369328329513236\thas:0.03976912111732683\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.24967287767908994\tand:0.17202113576094602\tto:0.13254047026354387\tthe:0.11921417082348272\tby:0.11589441278082113\tin:0.06261868148612214\tthat:0.05098804643301221\tat:0.045549883067955974\t<s>:0.04150032170502597\t:0.01\n",
"the:0.2973009843474015\tof:0.17356798007201168\tand:0.15662656487303261\ta:0.08858264814550969\tbe:0.06855529954950186\tis:0.060548336902521864\tare:0.05543797698843219\twas:0.047302216625243095\tto:0.04207799249634545\t:0.01\n",
"according:0.1724614830861989\twent:0.16555845261146696\tand:0.14036346110254597\tsent:0.13287596836486681\tas:0.0977397326405893\tmade:0.0760771465006411\tgo:0.07472163659253889\tup:0.06715461996010035\tsubject:0.06304749914105182\t:0.01\n",
"the:0.297492901961497\tof:0.17741408266195474\ta:0.14645768029163828\tand:0.09158810426380848\tor:0.07279359814981\tto:0.06981668528850316\tin:0.0589873299937157\tany:0.0419198791673564\tbe:0.03352973822171621\t:0.01\n",
"away:0.19041587022310327\tand:0.16519107313931605\ttaken:0.13090618369387813\tmiles:0.11772895341262953\tfeet:0.10551786830952453\tcome:0.07393483029145144\tthem:0.07169234007196142\tout:0.06832721446888708\tcame:0.06628566638924843\t:0.01\n",
"and:0.1776013840236831\tof:0.13819341960412293\t<s>:0.13005554120091786\tthe:0.11133096134400199\t-:0.11085246228358507\t1:0.0869412824668289\tby:0.08395202480121493\tI:0.07841153245097049\tin:0.07266139182467474\t:0.01\n",
"be:0.3317420679721575\twas:0.22393253489166695\tbeen:0.13614465800040249\twere:0.07986345763372708\tis:0.07005502292238816\tare:0.0513399625661295\tbeing:0.04454482226387151\tand:0.0302158852657953\thave:0.02216158848386158\t:0.01\n",
"it:0.2827850527348108\tIt:0.13400289869302948\tthere:0.1177148385676645\tthey:0.0914384776859708\tthat:0.08313239062920648\twhich:0.07694098793602959\the:0.07501873352304171\tand:0.07330080551631972\tI:0.05566581471392691\t:0.01\n",
"to:0.21933751448187902\tand:0.20560903522447663\tthe:0.1945536989813919\tof:0.15547992204256325\tin:0.05002056463880914\ta:0.043233999904594686\tnot:0.04294346232233523\tor:0.041324931090442475\tfor:0.03749687131350772\t:0.01\n",
"to:0.3000405285996906\tand:0.25451393376513737\tthe:0.10236153990004362\twas:0.10177716946772901\tbe:0.06711792958638697\twere:0.04931954766409291\tvotes:0.040509528320792756\tbeen:0.03952969187536557\tI:0.03483013082076126\t:0.01\n",
";:0.18966281890257708\thim,:0.14326864346247556\tit,:0.12933185170359887\tthem,:0.11703051830688663\tin:0.11266753311189362\thim:0.08648403204424665\tup:0.08251301215636823\ttime,:0.0664093434911326\ttime:0.06263224682082087\t:0.01\n",
"and:0.2657547657656737\tof:0.18584312310997664\tthe:0.16077648685963605\tto:0.08385375932773545\tis:0.06783652437900543\tin:0.06706562738274308\twas:0.05386796370077074\twith:0.05350772259312402\tbe:0.05149402688133487\t:0.01\n",
"I:0.14301503120357734\twho:0.1390887770770933\tand:0.13720836472079534\tit:0.12746579187804127\twe:0.11910181547307508\the:0.10745426025155771\tthey:0.08689471767217047\twhich:0.06500556451089269\tIt:0.06476567721279677\t:0.01\n",
"the:0.4445924429856781\tlittle:0.15733563790906438\ta:0.1465586233767649\tyoung:0.07997307919126556\tand:0.05005392677871712\this:0.032679704497299455\tThe:0.031399487714498915\ther:0.02726830078130938\told:0.02013879676540222\t:0.01\n",
"of:0.27563423987678265\tin:0.20062727285818668\tfrom:0.15592518968427738\tat:0.1494181521954576\tto:0.06644025412850894\tthe:0.05356889738905383\tIn:0.04797076886926538\tand:0.027128426254199506\tfor:0.01328679874426808\t:0.01\n",
"to:0.26209831496933705\tand:0.19664402247129262\tthe:0.18720703494025473\tof:0.14061051340842878\tin:0.0675925481954826\ta:0.03867755248806962\t<s>:0.033894641081214025\tnot:0.03251041157438808\tthat:0.030764960871532552\t:0.01\n",
"of:0.23777723650862875\tthe:0.2078250843554736\tto:0.12220488792326328\tin:0.09589588520617177\tand:0.07828239441304918\ta:0.07440743707164366\tat:0.06190146619398285\ton:0.057919040702180916\tby:0.05378656762560606\t:0.01\n",
"the:0.546376464327715\tthis:0.10498051563753227\ta:0.09268566698267788\this:0.06992590406556337\tcounty:0.04339143278783392\tone:0.03633005215398301\tof:0.03342837563187942\ttho:0.03162087760858843\tand:0.0312607108042266\t:0.01\n",
"the:0.297492901961497\tof:0.17741408266195474\ta:0.14645768029163828\tand:0.09158810426380848\tor:0.07279359814981\tto:0.06981668528850316\tin:0.0589873299937157\tany:0.0419198791673564\tbe:0.03352973822171621\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.6755107108012354\tof:0.06401348120887602\tThe:0.05649498693621098\tand:0.050682312248150535\tthis:0.03696276835509445\ttho:0.03210471440845578\ta:0.03135987287093088\tthat:0.026508446563975767\tother:0.016362706607070107\t:0.01\n",
"of:0.37322692931147256\tin:0.18820699868624333\tto:0.1295188783885632\tthat:0.07862407421022237\tas:0.05683834463703977\tall:0.04600910254825403\tand:0.04344618600723231\twith:0.037929805139245876\tfor:0.036199681071726636\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"and:0.19560656535339777\tbe:0.17133940938422942\twas:0.1319230735627309\tis:0.12199458203857334\tof:0.09077768836941887\tbeen:0.07428575269711138\tto:0.07012212492506753\tin:0.06741011338802542\tare:0.06654069028144535\t:0.01\n",
"and:0.19583342605332962\tthat:0.1838994050203063\tas:0.12119181844284553\tof:0.12112615315282578\tto:0.08831964160181255\tmake:0.08098984926957423\twhich:0.07701187457248801\tbut:0.06372021473945984\tif:0.05790761714735823\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"the:0.3526894812933216\tof:0.3350183751941173\tand:0.08621837020948542\tThe:0.04890128631681606\tto:0.04031186292913626\ta:0.0391810296809153\tfor:0.03209731861247136\ton:0.029171298690100114\ttho:0.026410977073636602\t:0.01\n",
"and:0.171856619882917\tthe:0.15925251522179817\tMr.:0.12518775424725417\tof:0.11755995196257497\tMrs.:0.1096719676426139\t.:0.1032434415347703\t<s>:0.08683532982458834\tsaid:0.060508213969928\tthat:0.05588420571355522\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"the:0.20354487062043997\tin:0.15945712326502384\this:0.13440274548776068\tand:0.11200698129340808\ttheir:0.0919942431730834\tthis:0.07680073946081745\tan:0.07271482548027634\tother:0.07131435173327358\tmy:0.06776411948591671\t:0.01\n",
"was:0.22590520031323708\tto:0.19986944163231163\tand:0.1922431347745772\tbe:0.11878278065535496\twere:0.07740723924018257\tbeen:0.05598695761139701\the:0.04778910157001999\tthen:0.04296813903395365\thad:0.029048005168965805\t:0.01\n",
"both:0.18552509555024163\tthem:0.11510325069591053\tit:0.10524799723268265\tthe:0.10193294163968318\tfeet:0.10158140953190008\twell:0.09923943738132708\tmen:0.09860317242414227\tand:0.09433726551068838\tup:0.08842943003342427\t:0.01\n",
"Mr.:0.45464595800719615\tand:0.15155711965829388\tthe:0.1014484676531921\tthat:0.09385540865560325\tof:0.052252763832784904\tThe:0.049070097713680996\tMrs.:0.03264877374089971\tMiss:0.027339661775492977\tMr:0.02718174896285608\t:0.01\n",
"is:0.16794502688385302\tand:0.13986669420778053\tought:0.12811825314951217\tas:0.12310559467581189\tenough:0.09969926104196393\tnot:0.09529933635741172\thave:0.08036792474183824\table:0.07889479828288037\torder:0.07670311065894812\t:0.01\n",
"the:0.6007589773689022\tof:0.17096891696203412\tour:0.05560894721986403\ta:0.03704880291703652\tfederal:0.03671234011958963\ttho:0.026758288580974683\tin:0.02253498517671923\tto:0.020448996416666115\tStates:0.019159745238213406\t:0.01\n",
"the:0.42874616365898144\twhose:0.16051104455420662\ttheir:0.12680943603685785\this:0.08749734474116293\tThe:0.06936396508603375\tof:0.03308524507731095\tmy:0.03036792586735085\tits:0.027465776872458048\tour:0.0261530981056378\t:0.01\n",
"that:0.22894298162916124\tand:0.18389959895169808\twhich:0.14233538044387992\twhen:0.10658309596613334\tas:0.09538865855949213\tto:0.09182559855047093\tif:0.04809103819452874\twill:0.04780503333124626\tbut:0.04512861437338917\t:0.01\n",
"the:0.2625039622330428\tand:0.19072338887470905\tof:0.13887382723760294\ta:0.08271968724827235\twas:0.07084550204186468\tto:0.06662901861522866\tbe:0.06427550448769476\this:0.05788848475140922\tMr.:0.055540624510175725\t:0.01\n",
"the:0.4319105958634098\ta:0.2884825987965892\tof:0.07549590017184842\tthis:0.04801532225118098\tThe:0.044079693271758265\twith:0.032493405498834366\tA:0.027691618965203207\ttho:0.021353694520013178\tand:0.020477170661162426\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"forenoon:0.177542069486481\tone:0.15197902685962286\tresult:0.12154738781861386\tout:0.1146226779973252\tall:0.110600438530804\tpart:0.09375218969813726\tsome:0.07435440729973954\tmuch:0.07302022176870575\tis:0.07258158054057061\t:0.01\n",
"be:0.2596671614983853\twas:0.20527522293127679\tbeen:0.12408080644606338\tand:0.11285716902585903\tis:0.08147290623133807\tbeing:0.06441311060192641\twere:0.060724856348450415\tnow:0.04878956264460834\tare:0.032719204272092337\t:0.01\n",
"of:0.20661371800246398\tin:0.17534060101717955\tto:0.14514496471754276\tand:0.12924120027946703\twith:0.08816943694927117\tfor:0.06959017322749067\twas:0.06319069173601957\tby:0.05684838594172082\tis:0.05586082812884447\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"of:0.39682473134093704\tto:0.12105455152149053\tin:0.11970850544947412\tand:0.07118670401723742\ton:0.0640901196671133\tby:0.062343526513008625\tfor:0.06145043362162674\twith:0.04685578811775423\tthat:0.046485639751357964\t:0.01\n",
"at-:0.4683280784676542\tthe:0.2542223924093207\tat¬:0.11470626550258375\tat­:0.06161473190565806\tand:0.02646310274658731\tto:0.021799968990106885\tThe:0.015059846113243115\ttho:0.013962728068215288\tof:0.013842885796630752\t:0.01\n",
"the:0.6733748019947965\tThe:0.06909111474532575\ta:0.058711071881394426\tand:0.042365579223369185\tan:0.041392365722384035\ttho:0.04094688101844295\tin:0.029163532814567877\tgreat:0.020276817973459916\tof:0.014677834626259408\t:0.01\n",
"has:0.1830679735834706\tand:0.16086978388302403\tthe:0.13524156428679246\thad:0.12906554576914583\thave:0.11571983207407682\tof:0.0896498992428868\twhich:0.06074139375445634\tto:0.05816922217283804\tit:0.057474785233309046\t:0.01\n",
"the:0.2343422083806621\tsaid:0.179894059553775\tMain:0.13296208782188768\tMarket:0.09184751256362036\tHigh:0.08584635532350345\tThird:0.08511293865261553\tWall:0.06578747027336963\tSixth:0.05899396324307293\tSeventh:0.055213404187493306\t:0.01\n",
"the:0.23623670945070466\tof:0.21613459848816124\tto:0.12413326744679623\tand:0.1118851817863003\tat:0.09142020165535739\tfor:0.06846113271731506\tin:0.06260869282362906\ta:0.048452923786320753\tfrom:0.03066729184541546\t:0.01\n",
"the:0.8311522233410438\tThe:0.03524421658421056\ttho:0.03355471981987536\tof:0.018725071161213473\ttheir:0.015979190758858407\ttbe:0.014711085722250241\this:0.014418199329255497\tand:0.013176542293444381\tour:0.013038750989848438\t:0.01\n",
"the:0.3665083286851395\tof:0.23212925221573122\tto:0.10552190746108221\tin:0.07863458087120809\ta:0.05761010385264566\ton:0.042968415082426006\tfor:0.03880620008550325\this:0.034644080066270205\tthat:0.03317713167999378\t:0.01\n",
"one:0.17274957462093676\tmore:0.15830689709340226\ton:0.11808702737128361\tday:0.11354905359128066\ttwo:0.11347581961369303\tperson:0.08335828476893935\tin:0.08180463954838182\tman:0.07974273265284054\tlaw:0.06892597073924195\t:0.01\n",
"and:0.3090612114894368\tthat:0.21280743888311418\tof:0.19341524041142366\tto:0.06159895091041659\twe:0.04589557636994498\tbut:0.045051756245853905\twhen:0.04267686551945194\tfor:0.04079804000046888\tif:0.03869492016988902\t:0.01\n",
"the:0.45072442068859575\tof:0.15863699663840108\tto:0.08274862814216809\tin:0.07934149181786487\tand:0.06519368185071724\ta:0.04745882399311515\tat:0.04172253319245968\tby:0.036321053813860485\tthat:0.027852369862817552\t:0.01\n",
"the:0.35661029684116546\this:0.18108984992590552\tof:0.10069617636379666\tand:0.07747395040017552\ttheir:0.06563162892094355\ta:0.06501353050593511\ther:0.06124262264154855\tgood:0.04338562159157595\tour:0.038856322808953674\t:0.01\n",
"of:0.575645736110166\tin:0.14541445462603755\tand:0.08501250236029168\tas:0.052813276059659416\tthe:0.03330890993751092\tto:0.02874331474243791\tfor:0.027514996782776687\ton:0.020871537940049662\twith:0.02067527144107023\t:0.01\n",
"of:0.1857519622978024\tis:0.1690870706775603\twas:0.13877726198192106\tin:0.09925420894105784\twith:0.09871804838669339\tand:0.08818157116711596\tto:0.08643485860618282\tfor:0.06310610032824931\tas:0.06068891761341684\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"of:0.40092915488336084\tand:0.15787938785376307\tthat:0.13172800217994882\tall:0.0757116967566641\tby:0.063952110456705\tto:0.046829009994771985\tfor:0.04340321118415379\twith:0.038338591463918666\tas:0.031228835226713603\t:0.01\n",
"the:0.6729152314335012\ta:0.08129413866095424\this:0.07001349790110377\tThe:0.048290060193404975\ttho:0.04608705428722731\tour:0.022288061735949213\ttheir:0.0188524225946315\ttbe:0.015167515595396582\ther:0.015092017597831289\t:0.01\n",
"as:0.18828381350513596\taccording:0.14144678228402477\tup:0.13904323060160723\tand:0.10966501132003925\twent:0.09104380703179263\tback:0.08789812106037487\tregard:0.08348580619122743\tfeet:0.07747526592666082\tdown:0.07165816207913696\t:0.01\n",
"and:0.29052563843363227\tfact:0.1718349679940122\tsaid:0.1130770564104576\tso:0.10296766644522753\tbelieve:0.07467485194323314\tis:0.06547998110151378\tsay:0.06072622423233119\tknow:0.05957648278092702\tfound:0.0511371306586653\t:0.01\n",
"chs.:0.3942372776637926\tft.:0.12377449898602048\tand:0.10452842949606159\tright:0.06800341364806839\twent:0.06526622057683445\tas:0.06277876991272426\torder:0.0607809491223373\thim:0.056870314733267716\tmade:0.05376012586089331\t:0.01\n",
"together:0.21604782718497406\tand:0.17124166159371282\tfilled:0.12858278261528777\tcharged:0.1118166788219665\tup:0.1019534773214986\tcovered:0.08274880041576148\tit:0.06818273605675981\thim:0.05537394786632245\tconnected:0.05405208812371643\t:0.01\n",
"<s>:0.4559282247213352\t.:0.12651849075332455\tit.:0.10437226546726536\tthem.:0.10128109626221393\thim.:0.04951959651869866\ttime.:0.041650256419143925\ther.:0.039275006956283894\tcountry.:0.03808623703683674\tyear.:0.03336882586489762\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"J:0.23133500926666778\tand:0.2022105578124852\t.:0.10850570271642349\tto:0.09227593296875992\tthe:0.08606385514403886\t<s>:0.07714512269117053\tW:0.06872000085662874\tof:0.06623303633871652\tas:0.05751078220510887\t:0.01\n",
"the:0.19171647154817875\tof:0.14112722341567557\tand:0.13416554077907164\tbe:0.11792759908396455\tto:0.1134244355179606\twas:0.10074338199402286\tis:0.07513481676880751\ta:0.05881585421433086\tare:0.056944676677987666\t:0.01\n",
"the:0.486967561859838\tthis:0.11192138220147331\tthat:0.08846668787640678\tany:0.0714042348612766\tin:0.055556523345148906\tand:0.04943361223220068\tof:0.04907188840823829\tThe:0.04490034089462714\ttho:0.032277768320790344\t:0.01\n",
"to:0.31537805320365847\twill:0.2545864481494915\twould:0.08896049524140885\tshall:0.08189498887655354\tmay:0.06310638001381273\tshould:0.06200413606307727\tnot:0.0450012152165704\tmust:0.04077048460509341\tcan:0.0382977986303338\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.6337331662659313\tand:0.10038527526927499\tof:0.04502915812563192\tin:0.0446265384225453\tThe:0.04052682497589725\ttho:0.03890434100479111\ta:0.036702152674902296\tto:0.02732621088062538\ton:0.022766332380400434\t:0.01\n",
"a:0.474317823763704\tthe:0.3399877572532416\tfeet:0.04597574695419335\ttho:0.03199238863304411\tinches:0.026470806576655456\tThe:0.02416488999383957\tA:0.01923416080086685\tof:0.014775033050572026\tand:0.013081392973883055\t:0.01\n",
"be:0.23701278788357083\twas:0.16964801094987708\tand:0.13303854498869438\tare:0.10057538057790065\tbeen:0.09737834818903397\tis:0.09249707319209333\twere:0.09100097557740768\the:0.03585403876939964\twell:0.03299483987202241\t:0.01\n",
"the:0.30337617970676906\tof:0.18860457588018728\tand:0.13106174082947405\tto:0.09776108092070786\ta:0.08095665544599281\tin:0.055741965423345904\tbe:0.05114324002429872\twas:0.04187976514053473\tis:0.03947479662868964\t:0.01\n",
"and:0.21284543509605122\tof:0.13700664442214325\tthe:0.13621905108924529\tto:0.11059867042248105\tbe:0.10460019330023755\twas:0.0962702903952213\tis:0.07851131608328227\tin:0.06119015719528385\tbeen:0.05275824199605404\t:0.01\n",
"the:0.5955119137734151\tFederal:0.08248999440040743\tThe:0.06055999849995352\tStates:0.05446392170342085\tand:0.05316562337627909\tof:0.04557977676463418\tour:0.040986108630633816\tthat:0.0314356745293822\ttho:0.02580698832187388\t:0.01\n",
"of:0.36864342338871764\tthe:0.3141270961744606\tand:0.0645217356667895\tin:0.05178310189643908\ta:0.04901344324710238\this:0.03723856203625385\tto:0.036730961938270475\ttheir:0.03397742391108635\ton:0.033964251740880004\t:0.01\n",
"the:0.6680399820948015\ta:0.08081948640942556\tof:0.07040996070704636\ttho:0.043382104356358545\this:0.03200760836678411\tour:0.030586558130181084\tone:0.023356165617003957\tsaid:0.02221588387484641\tin:0.01918225044355236\t:0.01\n",
"a:0.161746567722258\twould:0.14147494677936817\tsomething:0.13141879297601583\tand:0.1149547091359754\tlooked:0.1019075607492522\twas:0.1017829211546551\tmuch:0.08698248848447536\tis:0.0831390728938873\tnot:0.06659294010411257\t:0.01\n",
"of:0.2735900659577961\tthe:0.1555769448654546\tand:0.12432954580218311\ta:0.11720381974340094\tto:0.1041505709777092\tin:0.08233958509752284\twas:0.045557072074220245\twith:0.043647118952881044\tis:0.04360527652883189\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"No.:0.2747715871862971\tJuly:0.1617250752478308\tMarch:0.11532538649072552\tblock:0.10742429089098444\tBlock:0.0779441578344769\tMay:0.07247419367329834\tlot:0.0685389978726448\tJanuary:0.06489336909184622\tApril:0.04690294171189589\t:0.01\n",
"those:0.31622933364117484\tman:0.16613326520093988\tmen:0.16580762653928446\tand:0.10923024042942887\tpeople:0.0617912175599913\tone:0.05244152525619717\tThose:0.04503794359929077\tpersons:0.03685047316848905\tall:0.036478374605203666\t:0.01\n",
"one:0.27929136428031115\tpart:0.16196919833982198\tout:0.12945893165806713\tsome:0.08533442500483848\tmembers:0.08355762137942169\tside:0.08132005735050905\tportion:0.059925805134896065\toffice:0.055564050621792475\tmember:0.053578546230341986\t:0.01\n",
"turned:0.27807623505278334\twent:0.18537108391497592\twas:0.10600921312090722\tgo:0.0908618015365168\tall:0.0805360473686907\tcome:0.07713603386247245\tis:0.06241062691587634\tcame:0.056024000071036535\tand:0.05357495815674072\t:0.01\n",
"be:0.3206047870415387\twas:0.18569914975492346\tbeen:0.1412550483666487\tis:0.12348135575719445\tare:0.07145169219309365\twere:0.06085808995837575\tand:0.03408200298471509\tbeing:0.03226293849069409\tIs:0.020304935452816173\t:0.01\n",
"of:0.32364221694587053\tto:0.1571706490304156\tin:0.1316667805232421\tfor:0.08146371590104425\tthat:0.07997859708419178\tand:0.07035843170719414\tby:0.05810140711051619\twith:0.04504374352968455\tis:0.04257445816784089\t:0.01\n",
"ves-:0.47316868759768765\tthe:0.12382653277937292\tcoun-:0.10657182371875512\tand:0.09044403622024311\tof:0.061299633293040355\ta:0.05284713232045208\tto:0.03357388899797796\tin:0.03076579032191773\tfor:0.017502474750552968\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.401809254233709\tmade:0.10572982649976294\tnecessary:0.0976642144147235\tprovide:0.07096771065587228\thim:0.06679412563114624\ttime:0.06399940844444657\tbut:0.0622615259756986\tpay:0.06140975827886297\tresponsible:0.05936417586577787\t:0.01\n",
"of:0.2374277006498227\tin:0.20601128793287557\tand:0.14061074176205207\tto:0.10585811885886084\tthat:0.07812672723658808\tfor:0.07440664591823387\twith:0.06678866280825523\tby:0.04058530302206666\ton:0.04018481181124498\t:0.01\n",
"of:0.1920535175445183\tin:0.19063256959926828\tto:0.13263319313175279\tfor:0.10146911005784595\twith:0.0898682658096369\tby:0.08717087781925152\tand:0.0682461591074577\tis:0.06556288469104625\tsuch:0.06236342223922235\t:0.01\n",
"the:0.3403533143830292\tof:0.1988327192959912\tin:0.10067773817170218\tto:0.094384831337523\ta:0.06508266396635791\tby:0.060676572338094426\tand:0.051875425827229434\tthat:0.042520885244600216\tThe:0.035595849435472504\t:0.01\n",
"the:0.3417012742139022\tof:0.21431199175277735\tand:0.10446301939262496\ta:0.08420412101093985\tto:0.07847171568184984\tin:0.05339647102682972\twas:0.03970586401934087\this:0.03842455631547377\tbe:0.03532098658626141\t:0.01\n",
"of:0.5800464094844596\tin:0.09972841043140825\tto:0.08125348410598678\tthat:0.06669298167658427\tall:0.03948280178357641\tand:0.03814384178104068\tby:0.029258056002472506\tfor:0.028570843457815437\twith:0.026823171276656007\t:0.01\n",
"to:0.23084164089153653\tthe:0.19599676182946482\tof:0.1655574740863616\tand:0.15864168240412754\ta:0.06474452365459164\tin:0.05071236753640228\tat:0.05006300246274835\tfor:0.03808870392664654\tis:0.03535384320812077\t:0.01\n",
"the:0.6719890266483217\tThe:0.08905562660611153\ttho:0.058757010653704964\this:0.04936836971455775\tour:0.02736892303624935\tof:0.026449080668291075\ttbe:0.024198884242322576\tthis:0.02173685319619229\tmy:0.02107622523424867\t:0.01\n",
"it:0.2292391064038637\tIt:0.21696561702150258\tThis:0.15216872378118323\twhich:0.09371134308053368\tthat:0.0823699607317968\tthis:0.07426658989754333\tand:0.053275560998039914\tthere:0.048407602090468675\the:0.03959549599506813\t:0.01\n",
"is:0.15007233796838604\tof:0.14754817223783404\twith:0.1428431936183927\tsuch:0.1275530448617739\tin:0.11988193760662806\tas:0.08931000659894836\tby:0.0848689777354924\tto:0.06427059044827356\twas:0.06365173892427091\t:0.01\n",
"the:0.8863726773530108\ttho:0.04767429894468294\tThe:0.02037911013063574\ttbe:0.014848854384155502\tof:0.010704508851547225\tand:0.0029070840653533446\tby:0.0026907681676473397\ta:0.0026265092802739095\ttlie:0.0017961888226931213\t:0.01\n",
"of:0.4782549749220912\tto:0.16503490884890878\tin:0.10551106933748793\ton:0.0662538521790286\tby:0.04256952559676611\tat:0.03719827427206163\tfrom:0.034158224718888824\tfor:0.03283767953142179\twith:0.028181490593345165\t:0.01\n",
"to:0.3574238647547392\tI:0.1476803514748828\tand:0.1189613059497299\twill:0.0817091817655276\tcan:0.06613947887571597\tthey:0.06533430670026143\twe:0.05740659435518907\tnot:0.051490827917396814\twould:0.04385408820655726\t:0.01\n",
"they:0.159838088995225\twe:0.15850005471409273\the:0.14856073198700565\tI:0.14502922727074855\tand:0.1148493474074596\tit:0.08849499697814084\twho:0.06771055888028031\twhich:0.05380377162072295\tyou:0.0532132221463245\t:0.01\n",
"be:0.32158110505084836\twas:0.13227544149147455\tbeen:0.11814260458471644\tis:0.1178570078486048\tand:0.08363896049281479\tare:0.0710547853803429\twere:0.055944084885561025\thave:0.051981372834048266\tnot:0.037524637431588896\t:0.01\n",
"the:0.20495535515765362\tand:0.19796885281290239\this:0.123702407497494\tto:0.11835522940352838\tper:0.09606772954843576\ta:0.07254474801197586\tmy:0.07049746451409164\tthis:0.06381253733651147\tbe-:0.04209567571740684\t:0.01\n",
"the:0.3853244944598765\tof:0.20161191429901182\tand:0.13281277996971314\ta:0.12239923761336709\tin:0.03551265260697983\tto:0.03103354669114786\tor:0.028518751250521997\tThe:0.02804008313706694\ttho:0.024746539972314786\t:0.01\n",
"there:0.20563433726255975\tmortgage,:0.16633944273323617\t;:0.1652792544170093\tit,:0.10278803046054671\tcause,:0.09836095393889274\tmortgage:0.07159413669324424\tthem,:0.06948418655480336\tStates:0.05815939786276587\tyou:0.052360260076941875\t:0.01\n",
"and:0.43776304514745745\tthat:0.19288269945087272\tas:0.12815936681915946\tbut:0.07020117803652\teven:0.04304664363513682\tBut:0.03989927357458715\tAnd:0.02663319062593675\tor:0.025751994244753093\tsee:0.025662608465576626\t:0.01\n",
"and:0.33174945563533786\tthe:0.17584864294087715\tof:0.12345093929963111\this:0.1170223125224244\ther:0.06592706187674549\ttheir:0.056328245769162164\tthat:0.05301285016131332\tour:0.033820774938620096\tfor:0.03283971685588835\t:0.01\n",
"is:0.21582708951072616\tand:0.18005783508588186\twas:0.16874187209442448\tthat:0.10504289777567748\thad:0.07819666821198404\thave:0.07598664059517883\tbe:0.058012321725998524\tof:0.0559942544100841\twith:0.05214042059004467\t:0.01\n",
"they:0.27431062575085324\tthere:0.15006086896685464\tThere:0.11133836863548774\twho:0.10011846613500859\twe:0.09212898583338103\twhich:0.0851996859290389\tThey:0.08396980859434748\tand:0.047512226445142865\tthat:0.04536096370988557\t:0.01\n",
"the:0.6411319971224263\tof:0.13116370447727646\ttho:0.04523247664113472\tand:0.033887651314005174\tThe:0.03204394534719217\tsurface:0.03052518895198914\ton:0.02763217141796954\ta:0.026175377681536435\tto:0.02220748704646991\t:0.01\n",
"of:0.3630350740586406\tthe:0.1652591637044575\tin:0.14689974290592145\tand:0.09288862333737676\tto:0.07357308745747566\tfor:0.0413387368613848\tfrom:0.03766019187032089\tIn:0.036407138163262964\tby:0.03293824164115942\t:0.01\n",
"plat:0.4825784805721939\tpart:0.14631161097393955\tmuch:0.14444938194484966\tcopy:0.054803316500385446\tamount:0.04529345378054976\tsurvey:0.037760745448163956\tpayment:0.028741816024816236\tholder:0.025675102784218435\tconviction:0.02438609197088305\t:0.01\n",
"the:0.5634882935503621\ta:0.1977244748447277\ttown-:0.04884971756946557\twor-:0.04673169364059923\tThe:0.03275426855743825\ttho:0.02908116796162965\tof:0.02620991168493296\tand:0.02261260502444562\tor:0.022547867166399043\t:0.01\n",
"and:0.18784336682063277\tas:0.15114329179679575\twent:0.11423878004667354\thim:0.10666558228731275\tthem:0.09110223752457797\tup:0.08733803455919151\tis:0.0868948054425366\tgo:0.08340199801381315\table:0.08137190350846597\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"and:0.30937248239004295\tthat:0.14926177207768093\tas:0.12706581059587674\twhich:0.07533535813185005\tthe:0.0745852795685487\tof:0.06797592753701469\tbut:0.06524530027187\t<s>:0.06371476663143535\twhen:0.05744330279568063\t:0.01\n",
"the:0.7318393474302004\tof:0.08539424695945298\ta:0.05024946308254747\ttho:0.04077273606565481\tand:0.020833375563990886\tin:0.020785132278923868\tThe:0.01801593110690249\ttbe:0.012286981574715982\tby:0.009822785937611128\t:0.01\n",
"that:0.18404915690075815\tand:0.18167567775787719\thad:0.10766507292859072\tbut:0.10111128551267923\tis:0.0945412610534883\tas:0.0898300107531808\thave:0.08972975144382046\tIs:0.07096038801362375\tmake:0.07043739563598148\t:0.01\n",
"and:0.19051943986217015\tof:0.1720639792232348\tas:0.16747509158597676\tthe:0.13450047028301987\tto:0.09096766000852802\tbe:0.06575526900119626\tsuch:0.06334143169216884\tmuch:0.055005516582227666\tin:0.05037114176147772\t:0.01\n",
"and:0.213659044155795\tbe:0.16949459997093072\twas:0.13138183266937642\the:0.12111760794883242\tI:0.10237201012101424\thave:0.07354805791737938\tis:0.06531121247907566\thad:0.0625763507640064\thas:0.05053928397358973\t:0.01\n",
"of:0.20065029462322528\tin:0.18707493587591537\tthe:0.1764003397260158\ttheir:0.08481796022977797\this:0.08049817409806927\tfor:0.07815348092655976\tand:0.06331175187776737\tIn:0.061057260823556524\ta:0.05803580181911256\t:0.01\n",
"and:0.16554698624406927\tcovered:0.14806076650159555\tfilled:0.12561812731543542\tcompared:0.11366251704937044\taccordance:0.10844087372083674\tconnection:0.09431320010436066\ttogether:0.08274598793427504\tparallel:0.07771524841790732\tcharged:0.07389629271214962\t:0.01\n",
"of:0.3325095250128426\tthe:0.21624872522542357\tin:0.14749715712233827\tby:0.14070842207454662\tto:0.05446660296032549\tIn:0.026912586324946135\twhich:0.026218829494769322\ton:0.025360835955191986\tthat:0.020077315829616103\t:0.01\n",
"of:0.25215291559056535\tthe:0.24133101812369992\tto:0.17207237247901733\tand:0.1374948946938506\t<s>:0.04256310502436529\tan:0.04177845912323594\tin:0.041188084617319286\tor:0.031839369085499204\tlast:0.029579781262446966\t:0.01\n",
"and:0.27709339683193096\tto:0.20202364333909553\tof:0.11220589733181101\twhich:0.07505006121860576\tfor:0.06979898084155528\tthat:0.06933642627141445\tin:0.06342013358331684\tor:0.06270745702963718\tthe:0.05836400355263304\t:0.01\n",
"of:0.41176761303080356\tin:0.3316032811850844\tIn:0.0573927278511233\tto:0.05738338185678403\tfor:0.05616777173806004\tby:0.027135636610369752\tfrom:0.01779730598645041\ton:0.017309438072444363\twith:0.013442843668880057\t:0.01\n",
";:0.166410416870824\tit,:0.14067740649544613\tyears,:0.13016694302705759\there:0.09487690594470952\tthem,:0.09378174610294242\thim:0.09260168877066724\tit:0.09104309653116786\ttime,:0.09065192185789876\t<s>:0.08978987439928655\t:0.01\n",
"contained:0.21195734665215293\tdescribed:0.20422195386504643\tstipulated:0.1575813651728388\trecorded:0.08801227956739072\tand:0.08591808985387941\tsituated:0.07920133131407768\tinterest:0.07356644326792618\tinterested:0.05966697016894978\tfiled:0.029874220137738088\t:0.01\n",
"costs:0.1912435563306292\ttime:0.12967420494459023\tone:0.12897059921568466\tmen:0.10482750206468246\tin:0.10006135847727836\tup:0.09107110655223279\tgood:0.0870232887807712\tlarge:0.07943386239342523\thouse:0.077694521240706\t:0.01\n",
"is:0.2524479625653079\tought:0.12100787889195092\tare:0.11783524227953247\tseems:0.11055594763804422\twas:0.09614106152581382\tnot:0.09418436271061356\tsaid:0.07532254921697494\tseemed:0.06249828089648135\tas:0.06000671427528078\t:0.01\n",
"the:0.6021047736320853\ta:0.11390854917322563\tand:0.08392934331762696\tThe:0.04958509812232238\ttho:0.045535783937874386\tof:0.030513329816780906\ttbe:0.02261446403444868\tin:0.02161243966972433\tor:0.020196218295911488\t:0.01\n",
"and:0.2542315743163\tis:0.19065841016179877\tfact:0.1437993552448729\tknow:0.08130283477484336\tso:0.0772528193275017\tsay:0.06882345549977154\tsaid:0.059326111221560465\tbut:0.0575064667290932\twas:0.05709897272425803\t:0.01\n",
"the:0.38368489376777454\tand:0.15159093848804045\tof:0.13852836488818704\ta:0.12209916404580835\tin:0.050000067254748634\tas:0.0367004936818326\twith:0.036189019262881775\tbe:0.035638748777226205\tby:0.03556830983350054\t:0.01\n",
"be:0.2553044321176574\tis:0.13576158103325703\twas:0.12779276656935676\tand:0.11842746350110224\tare:0.0971730037190029\tbeen:0.08957084153767099\twere:0.07239534971680765\tcoupons:0.050688485945794344\tbeing:0.04288607585935065\t:0.01\n",
"the:0.19499822924215665\tMrs.:0.19196382082785227\tand:0.19068650396488343\tMr.:0.13358696952205143\t.:0.07225582403541128\tMiss:0.06734220322579343\tof:0.051447400565001036\t<s>:0.0511686869888445\tMessrs.:0.03655036162800596\t:0.01\n",
"that:0.26123975411206607\t<s>:0.21683942007773668\tas:0.1038066743074425\tand:0.09401708622911381\tit.:0.0908867958671798\twhich:0.069455978232657\tbut:0.06414840037600708\tof:0.04561582934860322\tthem.:0.04399006144919371\t:0.01\n",
"of:0.3455237188423797\tto:0.16926942485466406\tin:0.1284265522923629\ton:0.0911655822485093\tby:0.06222978243913015\tat:0.06138333461415866\tfrom:0.054139669854241124\twith:0.0416259609807027\tfor:0.036235973873851385\t:0.01\n",
"of:0.3420422053370365\tto:0.1388434664336376\tin:0.13786264416522526\tand:0.08027954924229379\twith:0.07123181302638898\tfor:0.06369579859368074\ton:0.06135083543937238\tby:0.04859824571313037\tfrom:0.04609544204923423\t:0.01\n",
"the:0.6666327243634632\ta:0.15618817096662924\tThe:0.04230264993187205\tand:0.03764436784650778\ttho:0.030858806312379923\tto:0.021663499241349297\tthis:0.013407500193427888\ttbe:0.010870815957955035\this:0.01043146518641571\t:0.01\n",
"carry:0.2531501453566949\tthrough-:0.22987000183719142\twith-:0.1450204013714821\tcarrying:0.08293987265271313\tpointed:0.06672683102072541\tand:0.059369703054731424\tsent:0.05515216574947199\tbrought:0.049249105518804445\tcarried:0.04852177343818517\t:0.01\n",
"looked:0.1497798566631716\tit:0.14868305235424262\tgathered:0.12647747252539324\tarms:0.12215014692198271\tall:0.1180887404651292\tlook:0.09453249926131684\tand:0.08750415002963004\thim:0.07855630725984333\tarm:0.06422777451929056\t:0.01\n",
"the:0.45233224190932425\ta:0.14270071712019242\tof:0.11835378819819185\tand:0.08119485186201865\tin:0.05231364872911621\tto:0.04446278717794555\tThe:0.04267185672770118\ttho:0.029269072011676413\tan:0.026701036263833484\t:0.01\n",
"and:0.29234911527061597\twas:0.12295751386511262\tis:0.09850110963903781\tthat:0.09666055421653383\tit:0.08628007122265054\tas:0.07887221239903662\tbe:0.0742410316365856\tthem:0.07029673534852585\tup:0.06984165640190107\t:0.01\n",
"of:0.3582541495959591\tthe:0.28994841854852127\tand:0.1301032474231809\tin:0.07784906754443188\tby:0.035821567961589515\ta:0.029085910873762208\tfrom:0.026762195601811735\twith:0.022455594246924126\t&:0.019719848203819324\t:0.01\n",
"and:0.3024842444279262\twas:0.14789652250066213\tis:0.09596900870974387\tbe:0.09291209349185649\tare:0.0796256255250144\tthat:0.07617621460107378\tit:0.06766289852403744\tbeen:0.06429887727346364\tmade:0.0629745149462221\t:0.01\n",
"and:0.1872267870314854\tconnection:0.18094568474691572\ttogether:0.15084904247430034\tconnected:0.14671335451791814\taccordance:0.10087046517459246\tcomply:0.059247939240596396\tup:0.056550590313795314\tdo:0.055769387631513\tcompared:0.05182674886888295\t:0.01\n",
"and:0.3758105158093881\twas:0.12058436713308751\tBeginning:0.0812513634925101\tthat:0.07364745099278608\tis:0.07353011626431966\tlook:0.0691499054741264\tsold:0.06865715839520692\tlooked:0.06825916448244185\theld:0.059109957956133344\t:0.01\n",
"Mr.:0.1711238961355798\tdue:0.1355317529236669\t;:0.12649664199474112\tin:0.1178371828792977\tthereof,:0.09912151197201777\t,:0.09670427772776648\tup:0.08510771758495601\tmen:0.08272056851485278\tone:0.07535645026712143\t:0.01\n",
"was:0.21182467025075885\tis:0.1855270444613366\tare:0.14728010946758327\tand:0.10512380423924349\tbeen:0.10320195735332456\tbe:0.08161870618625305\twere:0.07055347852837819\tnot:0.05524789867417898\tof:0.029622330838943195\t:0.01\n",
"is:0.21846337557343823\twas:0.19740818996664658\tbe:0.1010576725621762\tare:0.1005415575004879\tand:0.08685820621369729\tgo:0.07998610211164893\thim:0.07662571346515978\tfound:0.06481627721485383\twere:0.06424290539189131\t:0.01\n",
"of:0.18885527935421473\tin:0.15515714683407208\tby:0.12170535179760215\tand:0.10816870509245011\tfor:0.1045433991425833\tthat:0.09577434195587424\tto:0.08498636567326605\twith:0.06992778345882747\twas:0.06088162669110981\t:0.01\n",
"on:0.531302552505295\tat:0.2768812963478856\tof:0.04932586275730152\tthe:0.02990470815187842\tMortgages,:0.027973661581661535\tand:0.027456452104290315\tmortgages,:0.020564492223306134\tfrom:0.01417357515673816\tdeeds,:0.012417399171643426\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"No.:0.1933586283182993\tand:0.15676749055908437\tthe:0.13393812525374674\tof:0.1264478384532672\tat:0.08881292736526274\t.:0.08094643297346761\ta:0.08008049067163032\tsaid:0.06664873799122828\tto:0.06299932841401341\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
".:0.1737724128892691\tA:0.13078192538926514\tJ:0.10879130182215427\tE:0.10834706861521211\tand:0.10594999625131411\tA.:0.10067189932397813\t&:0.09721885832884923\tJ.:0.08908183311157114\tof:0.07538470426838667\t:0.01\n",
"the:0.5435694588832608\tan:0.25688372965404804\tThe:0.09599325496184975\tand:0.02525860458316723\ttho:0.02348451237804948\tAn:0.013523277233274135\tfair:0.010712953032580833\ta:0.010461129662707576\ttheir:0.010113079611062153\t:0.01\n",
"the:0.2924507441643734\ta:0.2618477043632467\tand:0.11020848622914839\tof:0.09629057222831493\tto:0.0657944783354701\twith:0.0475258394681742\tin:0.040447285203933286\tfor:0.040446253326898274\tThe:0.03498863668044072\t:0.01\n",
"the:0.19836175636655523\tand:0.1674130352389857\tof:0.16070716605411697\tto:0.14121474152525526\ta:0.12385002738842145\tin:0.07400006600096737\tat:0.051765895272262975\tor:0.041681126885312204\tthat:0.031006185268122963\t:0.01\n",
"the:0.21858781341275965\tand:0.1478758923551721\tof:0.11615811686309203\tfrom:0.11177724876014798\ta:0.10253926757191247\tto:0.0836069355321638\tbe:0.08051194311816404\twas:0.06882079131216966\tis:0.06012199107441833\t:0.01\n",
"of:0.32275215787981076\tthe:0.18495841566789484\ta:0.1290887287974743\tto:0.12049341173913584\tin:0.0710120607146319\tand:0.049429383145746464\tfor:0.041565452122729885\tor:0.03744631965345005\twith:0.03325407027912602\t:0.01\n",
"of:0.4020083684610406\tin:0.13716271506508412\tto:0.13282599482635887\tthat:0.06247487500645731\tfor:0.05914605148178096\tand:0.058197781082765354\twith:0.04879687973211098\tby:0.04561542465870809\tIn:0.043771909685693784\t:0.01\n",
"be:0.32953118170021484\tbeen:0.20404872578777486\twas:0.16629591018677622\tis:0.06882805064319625\twere:0.06179517167870389\tare:0.049666768140942584\thas:0.036961647744692384\tbeing:0.036820527040245465\tand:0.03605201707745356\t:0.01\n",
"as:0.19662511888164905\tand:0.13599896099910416\twent:0.11985794615854042\tup:0.11178723576449628\tgo:0.09374208647216854\tit:0.08727768788023692\treturn:0.08637040268035319\tback:0.08039862892704303\treturned:0.07794193223640834\t:0.01\n",
"the:0.40004629088706956\tof:0.17001214588784655\tto:0.09324409555324727\tand:0.08485788841663555\ta:0.07725491056514237\tin:0.058901956466901474\tfor:0.048500848023656985\tthat:0.030393568527880322\ton:0.026788295671619843\t:0.01\n",
"hundred:0.3884137864543694\tup:0.09123185635738856\tmen:0.08930224671194736\tHundred:0.07918911325774881\tJohn:0.07351941201241245\tWilliam:0.0730641111791452\thim:0.0668423327581923\t;:0.06651424040074752\tdue:0.06192290086804839\t:0.01\n",
"the:0.281539576027661\tto:0.16349301591714718\tand:0.1576538628402311\tof:0.1561731434951893\ta:0.054267496966521916\twas:0.0511252006588097\tat:0.043131099724247786\ton:0.04281140286210549\tbe:0.0398052015080865\t:0.01\n",
"and:0.18925415902801357\twas:0.13065248732348442\tthe:0.12911824055613613\tof:0.12222408689501933\tbe:0.12114528429922004\tto:0.0886203548825185\ta:0.08569244473368699\tis:0.06451226873249925\tbeen:0.05878067354942176\t:0.01\n",
"of:0.4236582024308362\tin:0.1070423632198144\tto:0.10171171793707634\tfor:0.07682717870438868\tor:0.07481991714488818\tby:0.05717926813387222\tthan:0.051057226164843414\tfrom:0.05018207581933747\tat:0.04752205044494303\t:0.01\n",
"Robert:0.16193587539196894\tJohn:0.13282370832759866\tWilliam:0.12965615761019353\tMr.:0.12832321415345696\tJames:0.11911747789628457\tCharles:0.09980223899822932\tGeorge:0.08388832956005775\tJoseph:0.07558843387876574\tThomas:0.05886456418344467\t:0.01\n",
"sum:0.18676829411122217\tnumber:0.15664863215135452\tline:0.1114008174127248\tcity:0.10844765106291132\tout:0.10739005474369738\tday:0.09286734076326103\tcounty:0.08286139477536685\tamount:0.07384405151900512\tBoard:0.0697717634604569\t:0.01\n",
"one:0.24264340695835482\tmore:0.23054545062015833\ttwo:0.0981807367936259\tday:0.07992109173335674\tpiece:0.07956602365769061\tlaw:0.07269405344014908\tperson:0.0692482193537107\taction:0.06313235610792371\tthree:0.05406866133503009\t:0.01\n",
"of:0.46914905443200067\tin:0.19182316409567338\tby:0.06104554148722487\tfor:0.05384136047277377\tthe:0.051037729602090375\tand:0.04802305799198075\twith:0.04310465680745038\ton:0.036449771299235184\tIn:0.035525663811570685\t:0.01\n",
"will:0.2077345152218535\tcan:0.1224511172457499\tand:0.11948911370113391\tis:0.1133578577684206\twould:0.10308657939585207\tappear:0.09125240206812457\tw:0.07926904708937706\tare:0.07858000288788299\tit:0.07477936462160534\t:0.01\n",
"the:0.3970060169268183\tof:0.14573480826505134\tor:0.09562027779195532\tother:0.07940841558069169\ttheir:0.06464006247905504\tfor:0.055301448057008415\ttrunk:0.05451073483573464\tthese:0.05170443837056229\ttwo:0.04607379769312297\t:0.01\n",
"of:0.4519194714488646\tto:0.12989474327407766\tin:0.0792882689873796\tthat:0.06716505337845553\tand:0.06361007169934067\tby:0.06354555501239878\twith:0.05161501083237711\ton:0.04158256633617882\tfrom:0.04137925903092715\t:0.01\n",
"to:0.31044311712302186\twill:0.19865815485438854\twould:0.16763922878097526\tmay:0.08056051789903806\tshould:0.06709673597004327\tshall:0.06180475577979002\tmust:0.03987946176432109\tnot:0.03983771231448096\tcan:0.024080315513940825\t:0.01\n",
"for:0.3353536570676537\tof:0.26398646593645714\tin:0.11358876126417496\tand:0.09828076167227157\tabout:0.04210572628891676\tor:0.04188202368044998\tthe:0.03817019217172396\tIn:0.029389717660631736\twith:0.027242694257720114\t:0.01\n",
"away:0.1629496515721689\tand:0.15550238078112044\tcame:0.15382435291937674\tmiles:0.115656254434836\tcome:0.09150926185604646\ttaken:0.08554874710351171\tup:0.0797751116721763\tfeet:0.07766311934355372\thim:0.06757112031720965\t:0.01\n",
"and:0.35274299898889416\tbut:0.12039359139776246\tof:0.09650221145785419\tso:0.09631546972031182\tthat:0.07485695923642613\tas:0.0725863470732794\tall:0.06591698233355889\tis:0.05635106159273076\tfact:0.05433437819918221\t:0.01\n",
"a:0.6668155944475678\tthe:0.11945695553723845\tA:0.08271940289313601\tcertain:0.027025624391222927\tone:0.02698066230836644\tdescribed:0.01814629192953105\tevery:0.017034537362573654\tlarge:0.01607581858925807\tthis:0.015745112541105517\t:0.01\n",
"the:0.2672237048037175\tand:0.1863396721097016\ta:0.1370038683682266\tall:0.11546118993330712\tthese:0.0762192676593\tor:0.057855000970231156\tThese:0.05168398843530363\tthat:0.05046927704369175\tof:0.04774403067652069\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"ten:0.15930487185285927\t10:0.14541430797534555\t50:0.1363965197067913\tfifty:0.13138648452723573\t20:0.1042818573247517\tthree:0.08217797916488719\tfive:0.08128407590711607\t25:0.07571109758089106\t5:0.07404280596012217\t:0.01\n",
"they:0.26004076152708355\twho:0.12520266395751167\tthere:0.11579702370869377\twe:0.11373584132620913\twhich:0.08776419117906968\tand:0.08322440250912155\tyou:0.07598043962573241\tThere:0.06594329369292243\tThey:0.062311382473655905\t:0.01\n",
"made:0.3028069374576309\tand:0.2023193696646394\tcaused:0.0737598134401799\tshown:0.07207509517503562\tup:0.07042691841811509\ted:0.07002219172812583\tout:0.06751988832599076\ttaken:0.06659664986169861\tdone:0.06447313592858382\t:0.01\n",
"of:0.4764166981485243\tto:0.11785749007694174\tin:0.08890760353478615\tby:0.07822816904462096\tand:0.06706696775620699\tthat:0.05721982502308667\tfor:0.048411095310872315\twith:0.0322345026310605\tfrom:0.02365764847390035\t:0.01\n",
"on:0.20882163947107169\tof:0.20580302678447474\tand:0.15283046093795438\tto:0.10307048091481884\tOn:0.0934440932218849\tall:0.06169111630679553\twith:0.059900783022025936\tin:0.05740836204605506\tthat:0.04703003729491897\t:0.01\n",
"the:0.5738200808112985\ta:0.21908795081569563\tThe:0.08262308289808415\ttho:0.038690040833313524\tof:0.0200302109457\tand:0.016644993700208298\tour:0.014387318424919972\tthat:0.012440526412677087\tA:0.012275795158102598\t:0.01\n",
"of:0.3486714887880616\tin:0.11749943158097818\tto:0.11649346511285981\tfor:0.1127915940953817\twith:0.09309049430741777\tand:0.05786459951169575\tby:0.05140815918210179\tfrom:0.048752596382727664\tat:0.043428171038775644\t:0.01\n",
"hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01\n",
"is:0.38520148421124667\twas:0.1234155928280963\the:0.07416500653831193\tand:0.07102494542231634\tbe:0.06626103178757331\tIs:0.0648126617177738\tI:0.06035624029529363\tHe:0.0517554132922303\tare:0.04671551368202216\tgenerally:0.04629211022513552\t:0.01\n",
"covered:0.22791360364769667\tand:0.20182494479562688\tfilled:0.14488115664763704\tup:0.11533089881339172\tit:0.07222539147106118\tmade:0.07173341339670927\ttogether:0.054356505465807003\tloaded:0.05347317180238365\ttrimmed:0.0482609139596867\t:0.01\n",
"and:0.20450556845365275\tdays:0.12596459196979642\twas:0.12001441399073981\tor:0.09579385432590432\ttime:0.09472943273581123\tthat:0.09322739577872445\tnever:0.08763760886899596\tlong:0.0868116995898552\tbe:0.08131543428651984\t:0.01\n",
"a:0.5674888740248971\tthe:0.16786076670244385\tyoung:0.07412098683394058\tthat:0.03744356908237695\tof:0.03472027493815338\tany:0.032170875078842934\tevery:0.02784143887318418\told:0.025865400270815853\twhite:0.022487814195345394\t:0.01\n",
"of:0.21814346045067723\tin:0.14219429705866626\tfor:0.12015593059818583\tto:0.10853232719473357\twith:0.0985650877212734\tand:0.08477052742557205\tby:0.07928059172976251\twas:0.07061790428652878\tis:0.0677398735346003\t:0.01\n",
"of:0.31662382482780055\tthe:0.18822284322808477\tin:0.11578788137479393\tand:0.09407676728996123\tthat:0.07488917283524958\tto:0.06204412499286629\tThe:0.052928240553401264\tfor:0.045864762222283736\tMr.:0.03956238267555868\t:0.01\n",
"the:0.3906811714609009\tand:0.17377497235309416\tof:0.16402022426119917\tthis:0.06297203436300496\tor:0.04227077940897937\tthat:0.041588001838730224\tThe:0.041359426408772264\tan:0.0367633382965507\ta:0.03657005160876839\t:0.01\n",
"the:0.4955936773497749\ton:0.17112227411649808\ta:0.06761290546400966\tin:0.06404797601429649\tof:0.05196382766483556\tsaid:0.0479087828395064\tthis:0.034197130679618826\ttho:0.0314741095950611\this:0.026079316276399013\t:0.01\n",
"of:0.23986092657953612\t.:0.15330169590021517\tto:0.14095392990059252\t&:0.11765668600181917\t<s>:0.08468848378731811\tat:0.07610542905883681\tand:0.07576075180496121\tthe:0.05419134881751392\tfrom:0.04748074814920716\t:0.01\n",
"to:0.6065290368129475\tI:0.10462687070003159\tand:0.09558238705688164\tnot:0.050903976600404605\twill:0.03935265216814136\twould:0.02543887683651524\tyou:0.02467940022999833\tshould:0.022189393638597964\twe:0.02069740595648184\t:0.01\n",
"it:0.24649221010470249\tthey:0.12660885768690028\tas:0.12478371852874594\tIt:0.1153706312316133\twhich:0.09814530941872672\tthat:0.08134154231318844\the:0.07300013832140625\tand:0.062216211469644525\tyou:0.0620413809250721\t:0.01\n",
"the:0.5134858949480098\tof:0.1275499422864565\ta:0.094448782371377\tand:0.08090692397205874\tto:0.056356116674630884\tin:0.044330434468874455\ttho:0.02915519651743908\tThe:0.02327071675705799\tor:0.02049599200409569\t:0.01\n",
"they:0.2440456156842582\tthere:0.15602364213265002\tThere:0.11775195248347725\twe:0.1054928781867736\twho:0.09833799834140741\tand:0.09439927001345064\tThey:0.0653802562812547\twhich:0.05522377752198967\tyou:0.053344609354738476\t:0.01\n",
"of:0.23282373712783636\tthe:0.18794337402219385\tand:0.12200514378757683\tin:0.10682736651079423\tto:0.10317605904470238\ta:0.09033516056204577\tbe:0.05152489571020419\tfor:0.05047501264939617\twas:0.04488925058525029\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"the:0.5061882620716961\ta:0.13085190010351927\tof:0.0892969640362918\tThe:0.07347437168705656\tand:0.05166442011410143\ttho:0.04732974885664964\this:0.03166145175656874\tour:0.031098244722595543\tto:0.02843463665152091\t:0.01\n",
"the:0.2251914794154926\this:0.17076920700121218\tof:0.15101519719124\tand:0.11783429116320886\ttheir:0.09158942525851275\tto:0.06820184817303494\tmy:0.06065742540379309\twith:0.056343374941971815\ther:0.04839775145153365\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"is:0.23753921694527766\tand:0.16180817442391787\twas:0.12129324558936605\tsimply:0.11456396596872402\tnot:0.10365620717742029\tit:0.09673326713251382\tbut:0.06180585339583338\tthat:0.04878465779704805\tit,:0.043815411569899015\t:0.01\n",
"and:0.23472984740800643\tof:0.1903427725499293\tto:0.1589974673691211\tthe:0.14872653581764267\ton:0.05782225657498437\tin:0.05781024492789173\t<s>:0.05127606043924979\tthat:0.04858455105407135\tfrom:0.04171026385910328\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"be:0.34784172640942046\twas:0.16617909347779478\tbeen:0.13244610415311092\tis:0.08989230134039132\tand:0.06607633165109791\twere:0.0632575179400396\tare:0.06145310104528789\tbeing:0.03904429293995983\the:0.023809531042897177\t:0.01\n",
"the:0.4374744830071531\tsuch:0.10930968827221525\tthese:0.07519435583754752\tbest:0.06668559503068389\this:0.06407944463807924\tour:0.060125956727441705\tother:0.06004832451877342\tbusiness:0.05922089613543511\ttheir:0.05786125583267082\t:0.01\n",
";:0.35702640113955214\tit,:0.1405034771512006\thim,:0.09410044652650008\tand:0.08869042620385373\tis:0.08276517513931851\tthem,:0.07033244892942488\ttime,:0.06797401967020504\t,:0.04526402682343889\tnothing:0.043343578416506184\t:0.01\n",
"the:0.2704373926522813\ta:0.21831837013200042\tof:0.15179649861663674\tand:0.09330663821376654\tat:0.06434627382681708\tto:0.0640746771769399\tin:0.0499496218460745\tfor:0.045001814785165184\tan:0.03276871275031821\t:0.01\n",
"to:0.21430843311958342\tI:0.18340587849166953\twould:0.10831609262721735\twe:0.10564143227013895\tthey:0.10011365051922819\twho:0.08716581288601917\tcould:0.06957572519001601\tmust:0.06454476272802967\tshould:0.05692821216809769\t:0.01\n",
"to:0.72768128528762\tnot:0.059670470016441324\twill:0.0495317925230493\twould:0.042035765950945714\tand:0.030623586616809154\tcan:0.023242227883158967\tmay:0.021704591289153925\tcould:0.018718769573053004\tTo:0.01679151085976859\t:0.01\n",
"a:0.48830049229710754\tthe:0.3029434654466315\tThe:0.0457884899278886\tof:0.0370341729571586\this:0.028159444937541512\tthis:0.026568155657764176\tany:0.022896176149966058\tA:0.020232090362337567\tno:0.018077512263604455\t:0.01\n",
"the:0.3075460484664369\tof:0.18655934707330316\tand:0.14916218212617383\ta:0.11099602176871066\tto:0.08077305174479381\tin:0.05379361798284004\tat:0.03681957888509467\t.:0.032321536273197685\t<s>:0.032028615679449264\t:0.01\n",
"part:0.21496902104278678\tone:0.20912369233988043\tsome:0.12867331343811736\tout:0.1057303116879626\tmembers:0.07618604502434112\tand:0.06636584999188522\ttion:0.06479865598258486\tportion:0.06226235532256281\tside:0.061890755169878825\t:0.01\n",
"to:0.5582773489168229\twill:0.1205326814783067\tand:0.09539493546476666\twould:0.0672383877917962\tnot:0.04618354515711836\tI:0.031104936597419988\tcould:0.0249204630812482\tthey:0.024226663058436848\twe:0.022121038454084224\t:0.01\n",
"and:0.2503779956113223\tto:0.19051743664518075\tof:0.12818071300755096\tthe:0.11341275889843264\twhich:0.06900438075771528\tthat:0.06614761953644578\tre-:0.058009703804947514\tin:0.057905904745916295\tfor:0.056443486992488516\t:0.01\n",
"be:0.22597535338754082\twas:0.22022621232109554\tbeen:0.1465018532603573\tis:0.08372127547808164\twere:0.08311063655168735\tand:0.06966620745111651\tAction:0.06481215720668473\tare:0.05603497983203548\tbeing:0.03995132451140055\t:0.01\n",
"of:0.29090380880773137\tin:0.1422990615992337\tto:0.13228348808371382\tfor:0.1045223741712512\tand:0.09327319156944214\tat:0.07215408147019345\twith:0.05784656581009074\tby:0.04942877232597752\tfrom:0.04728865616236608\t:0.01\n",
"of:0.3269275520734347\tto:0.1298190362591836\tfor:0.11793447932887922\tby:0.08845374893933523\tand:0.07946976823777345\tthat:0.0756829577350082\twith:0.06503197855401054\tin:0.06471375892939778\tat:0.041966719942977286\t:0.01\n",
"had:0.35487899448723775\thave:0.22814747746370512\thas:0.13798659080901685\twas:0.08784074491369062\tbe:0.04441597477038501\tbeen:0.04250795738234945\tand:0.041939714567971874\twere:0.026807546656898194\the:0.025474998948745015\t:0.01\n",
"a:0.8222895687316497\tthat:0.038042412056431794\tof:0.027212958148273327\tA:0.026666324823166065\tand:0.022788247007600647\tthe:0.019109995103180587\tas:0.012905138001248224\tis:0.010920282998614974\tin:0.010065073129834784\t:0.01\n",
"more:0.14449914668263036\tdue:0.13484845272350116\tpublic:0.12406451221768598\tgood:0.12403741692723917\tin:0.11945606173369773\ttime:0.09860232611184282\tit:0.08458207491866443\trisk:0.0839737241526334\tlarge:0.07593628453210496\t:0.01\n",
"the:0.28859300820277245\tof:0.176566445622439\ta:0.12380099638058098\tto:0.10274053766955328\tand:0.09215976646035769\tbe:0.0664805226347077\tin:0.0495875201634372\tis:0.04724610892476859\tnot:0.042825093941383084\t:0.01\n",
"the:0.41564608671913017\tSupreme:0.18180321100710317\tDistrict:0.09042425402687575\tsaid:0.07168119118824547\tCircuit:0.06676481423033424\tCounty:0.05671885849152854\tthis:0.041521375137266156\ttho:0.03514861529239232\tof:0.03029159390712423\t:0.01\n",
"and:0.26829833195078745\trecorded:0.10717905104111183\twas:0.10263907629409648\tmade:0.09927630384100071\tthat:0.09842569549211198\to'clock:0.08895025276229458\tup:0.08173084504592747\tis:0.07240199994443214\tfound:0.0710984436282374\t:0.01\n",
"the:0.2430700290993388\tof:0.19255952245263241\tand:0.1541377657113866\tto:0.1438140321537308\ta:0.07286436798209919\tbe:0.051059482517056685\tor:0.05091033703493395\this:0.042464487272563516\ton:0.03911997577625805\t:0.01\n",
"to:0.36267412465842147\twill:0.13858750329788957\tbe-:0.12116547449766985\thad:0.07921189610338437\thas:0.07439756623795972\thave:0.07263596961952425\tnot:0.05124771042827552\twould:0.04867871214108111\tI:0.04140104301579408\t:0.01\n"
]
}
],
"source": [
"for elem in results:\n",
" print(gonito_format(elem, const_wildcard=False), end='')"
]
},
{
"cell_type": "code",
"execution_count": 75,
"id": "2f650a85",
"metadata": {},
"outputs": [],
"source": [
"a='hundred:0.16310519953665284\t;:0.13365936507111417\thim:0.11732615948902898\tone:0.10942603140040545\tfeet:0.10793347117441225\tup:0.10029179877010726\tmile:0.09005038552425718\tfeet,:0.085903823261794\ttime:0.08230376577222767\t:0.01'"
]
},
{
"cell_type": "code",
"execution_count": 76,
"id": "6b59b368",
"metadata": {},
"outputs": [],
"source": [
"elems = a.split('\\t')"
]
},
{
"cell_type": "code",
"execution_count": 77,
"id": "cd1ddb40",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['hundred:0.16310519953665284',\n",
" ';:0.13365936507111417',\n",
" 'him:0.11732615948902898',\n",
" 'one:0.10942603140040545',\n",
" 'feet:0.10793347117441225',\n",
" 'up:0.10029179877010726',\n",
" 'mile:0.09005038552425718',\n",
" 'feet,:0.085903823261794',\n",
" 'time:0.08230376577222767',\n",
" ':0.01']"
]
},
"execution_count": 77,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"elems"
]
},
{
"cell_type": "code",
"execution_count": 78,
"id": "aa29f33e",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.9999999999999998\n"
]
}
],
"source": [
"print(sum([float(entry.split(':')[1]) for entry in elems]))"
]
},
{
"cell_type": "code",
"execution_count": 71,
"id": "141bd22f",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.1631051995366529\n",
"0.1336593650711142\n",
"0.11732615948902901\n",
"0.10942603140040548\n",
"0.10793347117441228\n",
"0.10029179877010727\n",
"0.09005038552425719\n",
"0.08590382326179401\n",
"0.0823037657722277\n",
"0.01\n"
]
}
],
"source": [
"for x in elems:\n",
" a = x.split(':')[1]\n",
" print(a)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "dc05af9d",
2023-06-28 19:20:16 +02:00
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"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.10.6"
}
},
"nbformat": 4,
"nbformat_minor": 5
}