diff --git a/cw5tetragram.py b/cw5tetragram.py new file mode 100644 index 0000000..3e23aa9 --- /dev/null +++ b/cw5tetragram.py @@ -0,0 +1,182 @@ +import lzma +import pickle + + +def clean_line(line: str): + separated = line.split('\t') + prefix = separated[6].replace(r'\n', ' ') + suffix = separated[7].replace(r'\n', ' ') + return prefix + ' ' + suffix + + +def words(filename): + with lzma.open(filename, mode='rt', encoding='utf-8') as fid: + index = 1 + print('Words') + for line in fid: + print(f'\rProgress: {(index / 432022 * 100):2f}%', end='') + text = clean_line(line) + for word in text.split(): + yield word + index += 1 + print() + + +def bigrams(filename, V: dict): + with lzma.open(filename, mode='rt', encoding='utf-8') as fid: + index = 1 + print('Bigrams') + for line in fid: + print(f'\rProgress: {(index / 432022 * 100):2f}%', end='') + text = clean_line(line) + first_word = '' + for second_word in text.split(): + if V.get(second_word) is None: + second_word = 'UNK' + if second_word: + yield first_word, second_word + first_word = second_word + index += 1 + print() + + +def trigrams(filename, V: dict): + with lzma.open(filename, mode='rt', encoding='utf-8') as fid: + index = 1 + print('Trigrams') + for line in fid: + print(f'\rProgress: {(index / 432022 * 100):2f}%', end='') + text = clean_line(line) + first_word = '' + second_word = '' + for third_word in text.split(): + if V.get(third_word) is None: + third_word = 'UNK' + if first_word: + yield first_word, second_word, third_word + first_word = second_word + second_word = third_word + index += 1 + print() + + +def tetragrams(filename, V: dict): + with lzma.open(filename, mode='rt', encoding='utf-8') as fid: + index = 1 + print('Tetragrams') + for line in fid: + print(f'\rProgress: {(index / 432022 * 100):2f}%', end='') + text = clean_line(line) + first_word = '' + second_word = '' + third_word = '' + for fourth_word in text.split(): + if V.get(fourth_word) is None: + fourth_word = 'UNK' + if first_word: + yield first_word, second_word, third_word, fourth_word + first_word = second_word + second_word = third_word + third_word = fourth_word + index += 1 + print() + + +def P(first_word, second_word=None, third_word=None, fourth_word=None): + try: + if second_word is None: + return V_common_dict[first_word] / total + if third_word is None: + return V2_dict[(first_word, second_word)] / V_common_dict[first_word] + if fourth_word is None: + return V3_dict[(first_word, second_word, third_word)] / V2_dict[(first_word, second_word)] + else: + return V4_dict[(first_word, second_word, third_word, fourth_word)] / V3_dict[ + (first_word, second_word, third_word)] + except KeyError: + return 0 + + +def smoothed(tetragram): + first, second, third, fourth = tetragram + return 0.45 * P(first, second, third, fourth) + 0.30 * P(second, third, fourth) + 0.15 * P(third, fourth) + 0.1 * P( + fourth) + + +def candidates(left_context, right_context): + cand = {} + first, second, third = left_context + fifth, sixth, seventh = right_context + for word in V_common_dict: + p1 = smoothed((first, second, third, word)) + p2 = smoothed((second, third, word, fifth)) + p3 = smoothed((third, word, fifth, sixth)) + p4 = smoothed((word, fifth, sixth, seventh)) + cand[word] = p1 * p2 * p3 * p4 + cand = sorted(list(cand.items()), key=lambda x: x[1], reverse=True)[:5] + norm = [(x[0], float(x[1]) / sum([y[1] for y in cand])) for x in cand] + for index, elem in enumerate(norm): + if 'UNK' in elem: + unk = norm.pop(index) + norm.append(('', unk[1])) + break + return ' '.join([f'{x[0]}:{x[1]}' for x in norm]) + + +def create_outputs(folder_name): + print(f'Creating outputs in {folder_name}') + with lzma.open(f'{folder_name}/in.tsv.xz', mode='rt', encoding='utf-8') as fid: + with open(f'{folder_name}/out.tsv', 'w', encoding='utf-8') as f: + for line in fid: + separated = line.split('\t') + prefix = separated[6].replace(r'\n', ' ').split() + suffix = separated[7].replace(r'\n', ' ').split() + left_context = [x if V_common_dict.get(x) else 'UNK' for x in prefix[-3:]] + right_context = [x if V_common_dict.get(x) else 'UNK' for x in suffix[:3]] + w = candidates(left_context, right_context) + f.write(w + '\n') + + +# WORD_LIMIT = 3000 +# V = Counter(words('train/in.tsv.xz')) +# V_common_dict = dict(V.most_common(WORD_LIMIT)) +# UNK = 0 +# for key, value in V.items(): +# if V_common_dict.get(key) is None: +# UNK += value +# V_common_dict['UNK'] = UNK +# with open('V.pickle', 'wb') as handle: +# pickle.dump(V_common_dict, handle, protocol=pickle.HIGHEST_PROTOCOL) + + +with open('V.pickle', 'rb') as handle: + V_common_dict = pickle.load(handle) + +total = sum(V_common_dict.values()) + +# V2 = Counter(bigrams('train/in.tsv.xz', V_common_dict)) +# V2_dict = dict(V2) +# with open('V2.pickle', 'wb') as handle: +# pickle.dump(V2_dict, handle, protocol=pickle.HIGHEST_PROTOCOL) + +with open('V2.pickle', 'rb') as handle: + V2_dict = pickle.load(handle) + +# V3 = Counter(trigrams('train/in.tsv.xz', V_common_dict)) +# V3_dict = dict(V3) +# with open('V3.pickle', 'wb') as handle: +# pickle.dump(V3_dict, handle, protocol=pickle.HIGHEST_PROTOCOL) + +with open('V3.pickle', 'rb') as handle: + V3_dict = pickle.load(handle) + +# V4 = Counter(tetragrams('train/in.tsv.xz', V_common_dict)) +# V4_dict = dict(V4) +# with open('V4.pickle', 'wb') as handle: +# pickle.dump(V4_dict, handle, protocol=pickle.HIGHEST_PROTOCOL) + +with open('V4.pickle', 'rb') as handle: + V4_dict = pickle.load(handle) + +create_outputs('dev-0') +create_outputs('test-A') diff --git a/dev-0/out.tsv b/dev-0/out.tsv index 70d91d1..24166d2 100644 --- a/dev-0/out.tsv +++ b/dev-0/out.tsv @@ -1,10519 +1,10519 @@ -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.24600201352236187 use,:0.215455332045114 way:0.19346508712731056 head:0.17254055947027774 :0.1725370078349358 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pany:0.4260634680222688 mittee:0.30167302932655926 mission:0.2034810805330977 mon:0.04907527091194301 :0.01970715120613118 -a:0.949619835546043 no:0.017827095359930104 him:0.015066621252235731 in-:0.0088536825828598 :0.008632765258931257 -trees:0.3798394917847145 and:0.28861839943395046 is:0.20078075475461876 was:0.06850595578664016 :0.06225539824007622 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6448618145158277 as:0.2474503624498555 that,:0.04909321783161723 even:0.030136819601496917 :0.0284577856012026 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4934701869864286 show:0.24120697567320648 be:0.14447869982742223 be-:0.0893263737503899 :0.03151776376255278 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 -to:0.8703739626651745 a:0.03980367012260023 and:0.03629262112765753 I:0.03365418098921676 :0.019875565095351082 -The:0.41258510409528587 No:0.1871248344659923 It:0.17316855571675868 I:0.12088650204059294 :0.10623500368137014 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -posted:0.2660689327136443 known:0.2587796174549372 founded:0.20849126216109506 as:0.18430325451598542 :0.08235693315433791 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.39490408714116115 to:0.34541130191917413 can:0.1229129754472219 should:0.07320819327575634 :0.06356344221668654 -went:0.28922704423966783 carried:0.2184088425888961 carry:0.1798410865231085 sent:0.16011476599744415 :0.15240826065088328 -and:0.36340252133697554 city:0.2026227354451952 avenue:0.169725381890133 is:0.1544326206115337 :0.10981674071616244 -ma:0.49794369336015093 a:0.16655257998759615 to:0.12953270391836058 unable:0.11408992834378684 :0.0918810943901057 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -a:0.5621971396076333 the:0.25881496278882776 and:0.0868589906738228 your:0.054899889533548504 :0.03722901739616777 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.569723662033542 his:0.17571880171874568 her:0.09783596182565325 my:0.08413283929858621 :0.07258873512347279 -rest:0.5980181605782765 range:0.18402842915124998 row:0.08526535052376225 dent:0.0689967496079184 :0.06369131013879284 -at:0.9082491374823662 was:0.03135155048033782 who:0.025233547533375724 had:0.02018458743431152 :0.01498117706960857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -think:0.2862033024477591 yet:0.20917107377509456 known.:0.2041327938691424 make:0.15581931625678977 :0.14467351365121417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2835220886016776 about:0.2472786533722869 for:0.17892875331799857 to:0.1469248568119564 :0.14334564789608056 -had:0.4368423516496384 do:0.17846264558993008 am:0.13769353683079488 felt:0.12657145912614115 :0.12043000680349551 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Township:0.34329208438080827 block:0.2670922565662159 range:0.19426577775066733 township:0.10716670115331828 :0.08818318014899028 -by:0.7315415611303044 in:0.10383235375166504 for:0.0753649083349489 without:0.05125110729825265 :0.03801006948482894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4361667124334472 this:0.4047086639982368 said:0.10436385814059397 our:0.03293389962372132 :0.021826865804000766 -of:0.46139357537502107 capital:0.38602187724891285 the:0.0724969204288579 in:0.05141288667731449 :0.028674740269893577 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.5788144992845426 was:0.1786055308799538 an:0.08720452369645934 primary:0.08327943097464668 :0.0720960151643974 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4543853759797768 to:0.18744632853873358 of:0.17416584393883036 on:0.09784772653614553 :0.08615472500651379 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -difficulty:0.3065793508411808 trouble:0.2769286132971931 body:0.144923558853432 success:0.13800378234710453 :0.13356469466108958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9125245734558857 tho:0.028835224047652548 a:0.028175175314098737 one:0.01594284164895181 :0.014522185533411143 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.43004295176737534 of:0.18660474313108774 the:0.15920859189851702 a:0.12775480148900006 :0.09638891171401992 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8432888902129119 a:0.05426770543163569 his:0.04469518784879191 tho:0.032129897298680175 :0.025618319207980324 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.4847111465802023 her:0.21159048800932412 per-:0.13847940181329407 a:0.09744553818983351 :0.06777342540734603 -And:0.44167427119246977 and:0.31430149447881817 But:0.11246864016669698 That:0.06878609103978846 :0.06276950312222666 -and:0.4051949455556613 out-:0.3788308389970136 matters:0.10404492279859748 world:0.057880963819174396 :0.05404832882955333 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 -husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 -amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 -terest:0.5449502969399911 crease:0.3612798182748024 formed:0.03958267591786972 stead:0.03490178396847522 :0.01928542489886155 -while:0.3412667158380007 as:0.18248559567555775 girl,:0.17771372442708294 ones:0.1661548332946367 :0.132379130764722 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.23267481581277422 that:0.22847719863912913 and:0.20816936963099777 it:0.1654583726216997 :0.16522024329539925 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.5161983310983306 our:0.25355860087095855 its:0.08577544683986499 of:0.0732936942284325 :0.07117392696241326 -two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 -good:0.34325934097809657 high:0.20973091133350139 reasonable:0.16172614956197226 little:0.15178708812637187 :0.133496510000058 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.9381609123977712 tho:0.024657671673000037 this:0.019406289532033546 tbe:0.014045084059503587 :0.0037300423376915416 -laying:0.4328828038219466 lay:0.3204557038848614 the:0.10358039278449506 grade:0.07787723125316608 :0.06520386825553079 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3312557801767928 this.:0.2849345494033658 manner.:0.14324767132284086 that.:0.1327478441637276 :0.10781415493327307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 -been:0.38777215483374855 made:0.19389168978602642 since:0.15567541373379362 lost:0.1429746170010904 :0.11968612464534108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.4880824586728134 almost:0.16382107719562244 now:0.13386854521932443 made:0.1141673471374148 :0.10006057177482489 -there:0.6150848025394537 sold:0.12093073923935985 here:0.10593594348059578 made:0.08840691558579014 :0.06964159915480037 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6044087499223803 a:0.3087508252290729 its:0.043212564228516076 tho:0.024571619154742697 :0.019056241465288018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5986958384628001 a:0.16051413657722693 our:0.11003946546566296 for:0.08898156704326694 :0.04176899245104311 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.25249902776203453 one:0.2520420963055112 for:0.25111074057779453 person:0.13167625249472367 :0.11267188285993597 -knows:0.3052753016612514 that:0.2829226012282115 else:0.15162399431578166 but:0.13490347033618505 :0.1252746324585704 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.37963752471083995 which:0.277996593669485 that:0.19837650456215203 said:0.07692210289720748 :0.06706727416031558 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.911955419231492 tho:0.04581228602582826 tbe:0.015742811380651506 a:0.015563524865122979 :0.010925958496905289 -so.:0.39882236428440876 on.:0.26659352705683287 alone.:0.16399749898265756 to:0.10500942102382911 :0.06557718865227168 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.2823092149688504 together:0.25230653794792557 them:0.16896787327954418 him:0.14945412024604432 :0.14696225355763554 -it:0.3060325733268504 as:0.2117445357599935 owing:0.18232142498893752 not:0.15224176984016674 :0.1476596960840518 -ties:0.5156822661931676 ty:0.38157620395574743 amount:0.044077046343970576 son:0.030149603686366506 :0.02851487982074791 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.6505737311578887 be:0.1619157621337637 be-:0.11251710400443458 over-:0.03869209084900787 :0.036301311854904886 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -j:0.30352479019510104 |:0.2215282954679594 !:0.17814366206175833 the:0.17714359348137834 :0.11965965879380296 -parts:0.477856820340464 kinds:0.24264877681462593 forms:0.13275731694103912 departments:0.07425754036480217 :0.07247954553906881 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -home:0.26286055368536093 friends:0.2322107141819424 life:0.20389665008456553 hand:0.15553758543332877 :0.14549449661480246 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.2779417613393955 with:0.24894694533538586 and:0.20836040554222396 of:0.1473234679996105 :0.11742741978338404 -of:0.40159582631529084 in:0.3229567734300948 that:0.12387586479109555 which:0.07980667784196228 :0.07176485762155649 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.47626531590090276 make:0.19047637937345788 his:0.1577421253268924 a:0.0944519717334408 :0.08106420766530602 -who:0.25771724624198394 said,:0.2307226704668646 says,:0.2035718790617865 said.:0.19159368740952165 :0.11639451681984336 -hundred:0.8146913538746463 thousand:0.14084697536519025 square:0.03494491303257053 million:0.005028602904955783 :0.0044881548226370725 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7068201388797339 his:0.10473643186845953 my:0.07505973318514902 their:0.07110306975471446 :0.042280626311943036 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -they:0.31941768038025886 you:0.28661129449296796 there:0.19409030378002937 we:0.18786630776857688 :0.012014413578166891 -the:0.668418584349697 a:0.1319203311129627 this:0.068322336482838 their:0.06743868177617912 :0.06390006627832327 -the:0.5284939290033316 will:0.23351528046931364 would:0.12254088021708973 to:0.06404994549360286 :0.051399964816662196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3392148090936964 and:0.18882397952847826 from:0.17424583815699093 in:0.15767536571122048 :0.14004000750961404 -is:0.5879703509684495 was:0.2147260076952549 soon:0.06674228423876495 seemed:0.0653502256052731 :0.06521113149225757 -and:0.40850568175649865 age:0.16297857678242395 as:0.1573378830119462 Point:0.15193989605048364 :0.11923796239864767 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8406861882805621 a:0.08089783281298217 tho:0.03549910004934155 10:0.026304660633102498 :0.016612218224011734 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8695826777572843 tho:0.04860791003102441 a:0.04689677176760675 he:0.019624738672132314 :0.01528790177195241 -that:0.28842543043994334 in:0.27062201404251374 with:0.16350461918424508 at:0.14039636874891917 :0.13705156758437867 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -Any:0.44860932105495205 The:0.15884486095510456 No:0.15547272398180292 A:0.13504085569130944 :0.1020322383168311 -is:0.5990030301559554 was:0.2178764183774884 Is:0.06417375623222307 time:0.06138562354639804 :0.057561171687935266 -life.:0.3230045691386579 head.:0.2107649026010411 hands.:0.15983470833983168 own.:0.15476656843882738 :0.15162925148164194 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -of:0.4844677110625118 to:0.1385376950951635 for:0.1326224869385305 with:0.1246608789060206 :0.11971122799777346 -as:0.24149524143603232 impossible:0.23283157014182104 likely:0.2096127732825958 unable:0.17582583595037443 :0.14023457918917648 -old:0.3212314490725795 little:0.2894170019375512 own:0.15015777138464095 young:0.14474849132093792 :0.09444528628429046 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -A.:0.9880406468428994 A:0.004739503060352778 J:0.0032599217242416496 A,:0.0024665907940643592 :0.0014933375784418497 -that:0.41472264569967354 it:0.2707083834339371 they:0.1348136468159461 there:0.10946493435553202 :0.07029038969491139 -will:0.29590348650876386 shall:0.23666103008443473 to:0.18383644506491115 may:0.14335207788176077 :0.14024696046012944 -north:0.45320643239488706 west:0.16621084589786242 east:0.1625096907998096 other:0.11633510236494794 :0.10173792854249307 -side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 -public:0.3898100853689532 high:0.3612506435782259 Sunday:0.09982307054454652 common:0.07537662931033404 :0.0737395711979403 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -view:0.22942680055693515 favor:0.2084749829296014 one:0.20675992105939456 spite:0.18970126498115217 :0.16563703047291678 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.4458300651821836 the:0.20197417185907363 much:0.137999786972573 all:0.1351167612630294 :0.07907921472314028 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.8277477740840845 a:0.06793921773452043 those:0.036660105957607936 then:0.035804913345518795 :0.03184798887826837 -of:0.8940385466223364 in:0.04041786827661279 by:0.03175494166841652 ot:0.01842138155360281 :0.015367261879031396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.48277880957222274 in:0.30554554029573033 and:0.1277514459661744 that:0.0452556045023297 :0.03866859966354295 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -western:0.28434167591423914 field:0.21729793258185648 bread:0.18413772699780104 man:0.17773306215321732 :0.13648960235288599 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -the:0.7318311379282902 this:0.12058472663718613 a:0.061215135129431275 State:0.04619673538864036 :0.04017226491645197 -the:0.7169504632249578 a:0.1578156750289905 one:0.05585518237525677 southwest:0.03474540105848574 :0.034633278312309335 -many:0.3284054587036723 two:0.23018835285399875 the:0.18565850431830078 three:0.12802762557941008 :0.1277200585446181 -Spanish:0.4166352649805643 British:0.20291179228297293 American:0.1431771494052699 Atlantic:0.13269972937585603 :0.10457606395533682 -States:0.23021126364359648 up:0.21757380617631814 in:0.2082353960155363 States,:0.18655142532309787 :0.15742810884145117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -several:0.3361166855296873 two:0.22815644441172625 three:0.22627290907361394 four:0.149632285554778 :0.05982167543019455 -who:0.9676045230329414 which:0.01397997212444324 he:0.009647401005735799 they:0.004723954335113971 :0.004044149501765648 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.26976805018750943 man:0.2212536601680126 world:0.1999252944402413 I:0.17191175539649353 :0.1371412398077432 -track:0.30167246448491014 play:0.2017807522319319 row:0.18821447249021903 up:0.1857541712106953 :0.12257813958224367 -and:0.2479753792580113 that:0.21167846049539688 .:0.20988061484726614 o'clock:0.20042799331769584 :0.13003755208162993 -of:0.30667113564731757 that:0.22895362087277243 by:0.2281292491417123 in:0.12092390411548254 :0.11532209022271513 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.3810615372766169 have:0.27087910569387424 not:0.13070947154475404 make:0.1145795671299865 :0.10277031835476828 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -others:0.2774060435131188 are:0.26013147582040863 those:0.17893012273454537 in:0.15794152149341611 :0.12559083643851107 -C:0.28474600709676084 E:0.18519546315133983 B:0.18332411609027244 W:0.17875587287094405 :0.16797854079068283 -the:0.5450072831451728 other:0.1779570189682393 district:0.11420743392033558 circuit:0.10113536308665688 :0.0616929008795953 -or:0.3773214332858835 and:0.2503058614105699 but:0.20094759212648877 for:0.12834580261290188 :0.04307931056415594 -Beginning:0.9898858582679748 beginning:0.004889043791376756 All:0.0027569771038324087 That:0.0013047375469877472 :0.0011633832898282335 -they:0.6382774966838255 we:0.19718405307235704 there:0.08386922131995972 you:0.07320676989162543 :0.0074624590322323 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7746356403032499 have:0.13610359637453923 bo:0.05349370265484454 not:0.021444992604338246 :0.014322068063027943 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.34416207604055726 it:0.2063210238100373 he:0.1703514584752785 "It:0.1510008139452288 :0.12816462772889817 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 -sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 -people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.24488514188455773 who:0.23725045443210685 were:0.20602302709375028 are:0.17416810095642513 :0.13767327563316006 -morning:0.3362331849729064 country:0.2153909295960501 afternoon:0.17409165191286985 city:0.15861053005288173 :0.1156737034652919 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bearing:0.47460063243802153 with:0.20402686271827294 and:0.14724429165086572 of:0.11270020679910787 :0.06142800639373205 -in:0.3046538453248887 and:0.20450478240771922 on:0.19758809611828543 to:0.15746364712241007 :0.13578962902669667 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8541307498935982 our:0.058369903078921336 tho:0.03455271743633561 its:0.030848665827762932 :0.022097963763382043 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4361922725082296 two:0.25517138870280015 three:0.12163139895875633 any:0.11091829762090913 :0.0760866422093048 -attention:0.39146636766964016 answer:0.2934049318039674 failure:0.1270982389131824 duty:0.10421139828764522 :0.08381906332556477 -trust:0.5181087342488289 them:0.1498772356682265 land:0.12921996744817074 war:0.11296495982784593 :0.08982910280692803 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -as:0.36472426753842896 with:0.20698610497760156 in:0.19084387375812237 after:0.12160154885217636 :0.11584420487367077 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.41760860650444204 and:0.3206035973009414 as:0.19179613057572464 in:0.037648797500096746 :0.03234286811879503 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.5226783063746663 had:0.2116696473809748 has:0.09940910562937041 is:0.09604968509030261 :0.07019325552468594 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tion:0.31199560289155054 one:0.24404715705513305 day:0.16094070245339678 ment:0.14718338146130766 :0.13583315613861185 -people:0.289557714011365 world:0.23429470738372057 trustees:0.16459121796997547 country:0.16273552738585376 :0.1488208332490852 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -body:0.2600359286768659 life:0.2546438055725996 face:0.1981694803881542 name:0.16936589050619957 :0.11778489485618071 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.31226293762662755 which:0.28440127486187233 the:0.20570412102134844 any:0.11112693272756807 :0.08650473376258366 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -neces-:0.9994112450213696 it:0.00023649650247626803 i:0.00012988858542554958 u:0.00011379967208475853 :0.00010857021864387839 -side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 -that:0.8652448488291902 what:0.07048290385010691 anything:0.02344594783721889 when:0.0207272348411766 :0.02009906464230739 -the:0.8396214609731788 July:0.06178090377897737 tho:0.04065349007970962 January:0.03516237872916924 :0.022781766438964974 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7884598754287572 its:0.07543405227441864 their:0.05380013503281142 his:0.04626371042234843 :0.03604222684166438 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.8603091987288051 to:0.06444734487517745 not:0.04267922257644708 a:0.02138897518320265 :0.011175258636367768 -are:0.3613918211132997 and:0.2978138670043008 concerned:0.16280832129848402 that:0.10418506480376485 :0.07380092578015073 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6908094736755075 so.:0.13046911611279685 it.:0.07527379312095259 what:0.06360155917232233 :0.03984605791842071 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7603644840884225 to:0.0689583597731256 from:0.06685123252051764 in:0.053081776798202085 :0.05074414681973213 -committee:0.28524841982471627 body:0.24432588242134334 department:0.18568743035735885 action:0.17343262803172774 :0.11130563936485378 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.30275950603015933 latter:0.2028345201386374 men:0.18294126911424535 doctor:0.16924051029329285 :0.14222419442366482 -of:0.4282052128909177 paid:0.22826216190178406 and:0.1889569142865572 for:0.10317565206470015 :0.051400058856041 -the:0.6534919704353981 our:0.19278455951326154 his:0.07577312413111183 American:0.04337971552319509 :0.03457063039703348 -in:0.5191816512098837 of:0.1482963163389704 to:0.1308611956374292 at:0.11326230816353498 :0.08839852865018169 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.45350174188603676 the:0.45231706234227564 this:0.03898670418783587 tbe:0.03675208635946899 :0.018442405224382733 -greatest:0.2717230706448164 great:0.23928076903491077 proper:0.2065569712557682 utmost:0.15629173853010953 :0.12614745053439508 -it:0.6240057802824778 came:0.12292787192303999 made:0.11252066817895595 brought:0.07042324642478624 :0.07012243319074021 -full:0.3028302081436251 great:0.2974221948614924 horse:0.19717455206581497 political:0.12519459143681475 :0.07737845349225272 -year:0.33723905569500773 day:0.2189139232920089 meeting:0.16029626472077635 session:0.15937987552629104 :0.12417088076591604 -to:0.9830997704296486 and:0.010382059931318835 lo:0.00449084837192817 te:0.0011144684687858402 :0.000912852798318691 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8876064065554378 tho:0.03733606247834862 his:0.03454858396270792 be:0.022786022428191274 :0.017722924575314457 -with:0.354352477185787 to:0.2758266329381632 upon:0.15214350693868978 that:0.12032195324300755 :0.09735542969435257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6192389239013268 that:0.15503559463531216 on:0.0927715324139974 from:0.07411950916052358 :0.058834439888840136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -is:0.6433450063906189 court:0.14790110322026007 school:0.07215357319803252 committee:0.07073419384063472 :0.06586612335045369 -scribed:0.4357110631119298 voted:0.2355723591990026 mand:0.12100108518591376 lay:0.10839742696120874 :0.09931806554194508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.5348013480067784 question:0.1541505854738633 medicine:0.13063480637624478 bad:0.090322082758781 :0.0900911773843325 -am:0.7293871920802105 have:0.11628448310922848 was:0.07191915984973368 can:0.05105543827701401 :0.03135372668381337 -at:0.5574250877389224 the:0.18790716292422194 are,:0.14610689909481553 therefore,:0.07801915429337476 :0.03054169594866524 -or:0.33662181361889576 either:0.261815778174826 trial:0.14380028102536127 Saturday:0.14304087523249198 :0.11472125194842508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.4763418370333663 that:0.23819491576976637 which:0.1920576549385153 this:0.04850952499400939 :0.0448960672643427 -the:0.8356886755628292 its:0.0700396637098888 their:0.051490929343874274 tho:0.025062170655362013 :0.017718560728045736 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5055538249375892 that:0.2821970751434257 on:0.08892005734212322 in:0.08504007030084443 :0.03828897227601752 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.3017812137133732 he:0.234278683070456 then:0.1846502571791671 be:0.16229141645267928 :0.11699842958432441 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6650530373741228 their:0.13039833479281243 all:0.0907565500295485 equal:0.05914285762187543 :0.0546492201816409 -due:0.2735617049390783 now:0.22173185851909474 dull:0.18692645910430544 true,:0.1751971225975963 :0.14258285483992508 -body:0.3168904444989973 body,:0.24313948984340236 man,:0.15203343185916557 peace:0.14631106640606004 :0.1416255673923747 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8622911606562524 in:0.06764198311159628 for:0.02653152507750228 at:0.02376132433691662 :0.019774006817732538 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -filled:0.24244494535671712 covered:0.23589689849022813 connected:0.20001231129998537 familiar:0.18040280991221141 :0.14124303494085802 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.714515407623874 a:0.14075192426889754 this:0.06538010864835496 most:0.04110227619562418 :0.038250283263249384 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.8956504078563851 as:0.03571874061527998 when:0.02611810242431896 how:0.026073376886319163 :0.016439372217696768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 -be:0.3810615372766169 have:0.27087910569387424 not:0.13070947154475404 make:0.1145795671299865 :0.10277031835476828 -to:0.41835912629288885 that:0.20089845110524668 in:0.17449237964188052 of:0.10807266691519664 :0.0981773760447873 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4602790085731507 so:0.2788720865407558 not:0.1455157879450288 too:0.07228536057555476 :0.04304775636551001 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.9290650902927783 also:0.024120658815614912 already:0.01963885353151187 recently:0.014721569929642976 :0.012453827430451973 -estimated:0.31216009318061655 not:0.2793701898665078 now:0.17193194726558897 held:0.12964251283969072 :0.1068952568475959 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.5845347974092793 were:0.2071767900116028 have:0.13125164418821567 entirely:0.04400398402685147 :0.033032784364050924 -side,:0.35790926038112986 line:0.27268686301692396 cast:0.1405408973105514 of:0.13073746746363757 :0.09812551182775732 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -part:0.5201812084285321 portion:0.18058597911711066 end:0.17994158642236704 side:0.06294685849659533 :0.056344367535394894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8294367652991074 said:0.05364461658883438 tho:0.041671064724442236 a:0.038807801956727464 :0.03643975143088851 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.4305291923359648 early:0.19497322456359684 rich:0.13965201237893596 best:0.12129346754385353 :0.11355210317764886 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -secured:0.4622510530411453 and:0.2913540665463123 acquired:0.08534774177137851 granted:0.0833551138153789 :0.07769202482578517 -to:0.2928806656865884 and:0.2669263168864714 will:0.21523476091866428 but:0.11877726794998626 :0.10618098855828978 -thrown:0.24198676832991245 put:0.2408925077509726 taken:0.2022982994034611 brought:0.16467747856048162 :0.1501449459551722 -ing:0.404964105120695 cause:0.23545844045814077 come:0.16516230040291272 fore:0.13319886339887294 :0.06121629061937863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -fore:0.7306767087403003 cause:0.21022666512970725 ing:0.0308538084352726 came:0.017316504707628206 :0.010926312987091782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -mind:0.2992418590095368 opinion:0.29045680855818284 belief:0.1962613694348331 way:0.1304606888103838 :0.0835792741870633 -.:0.870598701198796 Miller,:0.045189604536316444 Hall:0.031340463116685896 M:0.030320240412733217 :0.022550990735468332 -war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Johnson:0.352859170354952 B:0.22622912531461647 An:0.18501396162842426 The:0.12385229578757645 :0.11204544691443082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -District:0.23567600232918642 part:0.23219691088990452 Union:0.2133630368552405 steam:0.1846068532792938 :0.13415719664637468 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -called:0.3414414128794704 levied:0.20166127668596015 placed:0.1908415113929987 made:0.15486433114891746 :0.11119146789265323 -but:0.43489728292527524 and:0.3243893224753386 has:0.11710798785243863 is:0.062274975858414516 :0.06133043088853304 -that:0.30952392707016385 and:0.2520012900433058 which:0.2477234179311381 as:0.12085565209375972 :0.06989571286163247 -of:0.7300081711993696 for:0.08412486248033998 before:0.06914917278558591 with:0.05976569745429807 :0.056952096080406356 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.24336747073640788 dollars:0.21893395845681596 times:0.19193408815832144 or:0.17997049275647467 :0.16579398989198002 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.3205361940571806 not:0.18569710528518604 not,:0.185033190521309 see:0.15878960724303123 :0.14994390289329307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people.:0.2594582454346749 country.:0.2267309127071025 people:0.2210400306547149 word:0.1505211621422868 :0.14224964906122103 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -down:0.6401140215234212 out:0.14360451149507533 aside:0.10934869646734342 up:0.07320523690733101 :0.033727533606829084 -the:0.6374566104136408 they:0.11951487034089445 a:0.09001037180889294 we:0.08692324294347711 :0.06609490449309478 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -is:0.34823471485303403 was:0.2898454613631334 in:0.15538884751732587 for:0.1210653517874934 :0.08546562447901332 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3588242574920508 that:0.2603264355104737 of:0.14803426575443307 as:0.13170388659014903 :0.1011111546528934 -great:0.4107621327269631 mineral:0.18136806617399648 national:0.16510367508494436 vast:0.16033176663757218 :0.08243435937652394 -taken:0.3481726340799203 received:0.21937074286966665 come:0.2112200367436742 heard:0.11449869115664021 :0.10673789515009866 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8537512961352011 a:0.07360249621935343 tho:0.03237021546642795 this:0.027020963976699335 :0.013255028202318315 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5409418776152077 as:0.16783465743570072 is:0.10663181847810235 also:0.10341770428908416 :0.08117394218190499 -of:0.9373319211137218 from:0.027064518242290614 ot:0.013479137604465296 that:0.011968357512317758 :0.01015606552720453 -was:0.3434894135114893 he:0.2127200222158124 then:0.15476166954876103 almost:0.1526535475439835 :0.13637534717995364 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -running:0.29953570405684077 street,:0.2158799162248661 road,:0.19426570526645187 street;:0.14530545640989215 :0.14501321804194917 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.2707085148578193 not:0.2557614636120444 get:0.21056892254999968 find:0.13875736556550078 :0.12420373341463585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3130296474336706 he:0.31120539277711146 I:0.17531792303371438 we:0.1269073066279321 :0.0735397301275714 -reputation:0.25474047127266813 and:0.21432650631715652 prices:0.2073131642315115 position:0.16712916599941333 :0.15649069217925046 -will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 -the:0.5070412755297733 any:0.214747438707911 all:0.13946907601184796 some:0.0707188496361277 :0.0680233601143399 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.5508179173735609 could:0.15755553307236075 might:0.12233114445444143 will:0.091722734742332 :0.07757267035730497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days.:0.3320858164484232 men.:0.2602498496104292 people.:0.222336518212269 years.:0.10765890327413194 :0.07766891245474673 -fact:0.33147881955527014 and:0.2305082183612032 certain:0.1986853812768079 of:0.13653794007428507 :0.10278964073243384 -it:0.46701791285478866 they:0.21828434737855248 there:0.1324191784629664 he:0.12634748954270428 :0.05593107176098825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -a:0.5364137808540813 the:0.34736923662517 as:0.04530902538705733 such:0.03561698730323921 :0.03529096983045212 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.41936818141456866 does:0.20862895215919994 should:0.16861854641743976 do:0.16022048010232945 :0.04316383990646216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6057686672489465 near:0.20267705267727038 at:0.0977024666299132 tho:0.048779921274311924 :0.04507189216955797 -is:0.34253415132515436 of:0.2853443425072046 and:0.16037533272448923 are:0.13326739041462546 :0.07847878302852644 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5128503683169106 a:0.26499402025855356 not:0.09425377584771275 in:0.06995558936341625 :0.057946246213406875 -a:0.4724824651194827 the:0.40626500431399326 tho:0.08097364254880601 n:0.026220264859326235 :0.014058623158391766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.46164887672311916 check:0.23701247328286942 to:0.22835284120164717 copy:0.03740590363580651 :0.0355799051565578 -called:0.34574090266980906 placed:0.2521315031918603 forced:0.14171172363561105 made:0.1303204654425142 :0.1300954050602053 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.2968607504626671 by:0.20230993539351416 to:0.20048897038510352 of:0.1740776630572085 :0.12626268070150673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.7094563993641898 that:0.1176676516989643 him:0.11145157506895702 me:0.03368734132261656 :0.027737032545272274 -it:0.632712229109945 he:0.12260856479077353 It:0.1121441255743704 there:0.09739010622955688 :0.03514497429535426 -vicinity:0.4942605103295576 possession:0.15068715408414565 cause:0.12851541247542975 action:0.1273569830173757 :0.09917994009349135 -not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 -of:0.7863494700128401 to:0.14073118397325995 at:0.038177800235388686 that:0.01956262663949753 :0.0151789191390139 -that:0.5358683133983891 as:0.16310162522781843 if:0.12062127707176971 when:0.09045967274610246 :0.08994911155592034 -south:0.3133951237034383 north:0.30023622898857144 due:0.1364592729200719 east:0.12732203510638818 :0.1225873392815301 -the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -women:0.2884975829274051 evening:0.23721172217956815 great:0.17825997931819454 men:0.14963406791300174 :0.14639664766183041 -due:0.2843986887424714 now:0.2762806325131591 bounded:0.16287026122200962 known:0.14666897456786082 :0.1297814429544991 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -of:0.5346565734466369 you:0.13168563883431836 whether:0.11595092178266239 what:0.11474008294905672 :0.10296678298732559 -he:0.2820261662868672 there:0.2797018998308392 and:0.18908850414671663 she:0.12522669781043347 :0.12395673192514334 -mat:0.37496163295222834 time:0.24221763018265347 above:0.13285119540587045 cause:0.12708252478293133 :0.12288701667631649 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4367258169035495 in:0.17707904594154758 on:0.16602725719831757 at:0.11028929626981444 :0.1098785836867708 -of:0.4443690865964889 in:0.18566618135060078 on:0.18338689120994942 for:0.12167634110132954 :0.06490149974163154 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3162160335555731 times:0.275370399439143 and:0.23693377010234584 times,:0.11673524397608584 :0.05474455292685229 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -were:0.3853136618775459 are:0.2957132589497391 went:0.1408036871395959 go:0.08942418656909688 :0.08874520546402216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.7768194032676419 various:0.07769771563370642 different:0.06220993463699789 the:0.052160562370897286 :0.031112384090756572 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6301364066637849 his:0.15993237375857147 an:0.108023373498786 their:0.07246970078610016 :0.029438145292757532 -the:0.5276900322801625 are:0.17915313286154683 is:0.13651555690905806 was:0.08348235201847687 :0.07315892593075579 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Saturday,:0.43828841568084315 Monday,:0.36752589242631073 the:0.1511547281350247 until:0.02321162915514016 :0.019819334602681284 -up:0.4755610184737805 waiting:0.15695677467156274 him:0.13287661254416155 open:0.12067020361983667 :0.11393539069065865 -all,:0.3573827794885445 due:0.25034488337656013 him,:0.14940737271008617 date,:0.1297695813496176 :0.11309538307519157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.7426987381417238 a:0.1224890170058014 our:0.05003577557570288 his:0.04972959065363565 :0.03504687862313619 -and:0.4096498864670847 train:0.18207932484739006 week:0.14513185959637392 .:0.13653063500363527 :0.126608294085516 -known,:0.2932989465124555 ;:0.23892220303401832 know,:0.17436824186487576 believe:0.1715727448496607 :0.12183786373898975 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -a:0.6115032596815821 the:0.19473970648036162 in:0.08895107448909463 as:0.061329232381986704 :0.04347672696697493 -were:0.7460977772284075 will:0.10903451932076251 are:0.07632298312746927 would:0.037826909537150594 :0.030717810786210165 -more:0.308787530705738 very:0.30262842721311173 a:0.1803217393406137 so:0.11111431000901607 :0.0971479927315204 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.4110764496822824 you:0.2574020939146862 whom:0.1394453370984725 them:0.1078411194824198 :0.08423499982213906 -a:0.446461019004872 the:0.3522136859532366 other:0.08991667859660907 that:0.05651853065166525 :0.05489008579361722 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.3175402221467192 escape:0.22384009754258677 recover:0.1560774848032916 him:0.15259520439595395 :0.1499469911114485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.5172964500044135 days:0.22702616893512279 months:0.1396172112951102 hours:0.08613387285444604 :0.029926296910907316 -to:0.44401486852810307 of:0.3688424374374955 for:0.08957130573861234 by:0.04925290342263198 :0.048318484873157104 -who:0.9435048810600896 which:0.020828142340359117 things:0.013933827090290125 they:0.011370986886931465 :0.010362162622329751 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5311298527944982 of:0.3028857220305583 a:0.1040884717900375 and:0.03187822870834022 :0.0300177246765658 -the:0.7445784073211016 these:0.1568036968486573 tho:0.03873169250914285 about:0.03349255983003158 :0.026393643491066793 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -carefully:0.4081838465413548 was:0.19394531187810388 seriously:0.15610297769567388 fully:0.13363939754833257 :0.10812846633653485 -of:0.43149112284280133 for:0.1959422016209594 in:0.14042629074409488 to:0.1379950043726352 :0.0941453804195091 -scribed:0.5701550443537398 signed:0.33272339137095114 voted:0.039619604423110244 tained:0.03426499036712205 :0.023236969485076805 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.915466996225056 bo:0.04786042974271814 now:0.013747572651001407 he:0.012211393223762673 :0.010713608157461882 -of:0.32217325311431927 for:0.20411362424243623 from:0.16966011303413034 on:0.15987162507737884 :0.1441813845317352 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -the:0.39775285274166555 of:0.32820334679779484 a:0.2013709506455519 this:0.04908873820821548 :0.023584111606772127 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.5481249946711444 had:0.17050391941828666 are:0.11838245757481843 find:0.11171278053034484 :0.051275847805405644 -object:0.26513304856112657 justice:0.2423469110890553 aim:0.17624072111023079 clerk:0.16287354975589474 :0.15340576948369256 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.8557620232667768 to:0.053674561079980795 as:0.04076408450955794 and:0.027259100165834743 :0.022540230977849882 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.812228501368502 and:0.07094065344668532 in:0.043269863305264944 for:0.04063271617049945 :0.03292826570904826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -rear:0.39741363374187555 national:0.34569734847796046 advance:0.09414022703743481 old:0.09037562750861661 :0.07237316323411246 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.43078906532385713 was:0.23653488304255632 can:0.14809047839382425 and:0.10776231055246586 :0.0768232626872963 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.5554672189565311 roll:0.20084447936125663 appropriation:0.08358888635769587 bureau:0.08166749849370607 :0.07843191683081042 -in:0.3444369305734278 to:0.21872380327564678 on:0.18933238125254873 at:0.14543416671343312 :0.10207271818494358 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6604299810732988 side:0.13520631913347048 is:0.08312949403408623 are:0.06660092477931284 :0.05463328097983171 -the:0.482109588177098 Mrs.:0.1418502605859553 Mr.:0.13316748991145413 John:0.13299582177855646 :0.10987683954693613 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -all:0.31956123596302205 that:0.24562922725583497 in:0.16247797620830112 which:0.14011324524419969 :0.13221831532864214 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 -much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 -the:0.7942494054126932 our:0.06580909729499207 his:0.04942655456780062 said:0.04870622888222422 :0.04180871384228992 -that:0.33223694322558345 all:0.29154011281917946 which:0.233450522455781 under:0.07510799224395104 :0.06766442925550509 -time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.35338764815396123 will:0.2663581353650478 do:0.17215778423789616 can:0.11005164372759929 :0.09804478851549549 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5150839238435061 but:0.13962199042109275 based:0.1308850718143126 holding:0.12177277318418063 :0.09263624073690795 -The:0.49386928719703843 the:0.33385631332886573 Charles:0.07914851162426145 Washington:0.048949355195996615 :0.044176532653837634 -a:0.31914723508365483 the:0.2673051405599313 with:0.18240404362181623 and:0.1350188574956942 :0.09612472323890328 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 -make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 -The:0.912140598432805 Tho:0.03388208361985929 A:0.02334714367320951 Our:0.016982437470097606 :0.013647736804028488 -it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 -is:0.6154334705446304 was:0.1657054572879145 Is:0.12651511084981526 a:0.0673639194664616 :0.024982041851178312 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -days,:0.49505189112750947 States,:0.14705955403540535 men,:0.13016553388376467 times,:0.12267365975118891 :0.10504936120213156 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4556530177743978 of:0.38177247325753155 to:0.08222987405452041 and:0.04535254108766604 :0.034992093825884425 -it:0.3864689792249559 which:0.1988596250986965 he:0.18212627087855382 they:0.14326624964607082 :0.0892788751517227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7073625930885031 of:0.11379684488105953 no:0.07999624889216973 their:0.05618436453497376 :0.04265994860329384 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.24814051025576145 do:0.23813940721298887 know:0.21545494313780073 see:0.18368007371682743 :0.1145850656766215 -re-:0.6002093133325074 re­:0.1274963559672514 re¬:0.12683294591290137 ac-:0.08434095441243315 :0.06112043037490659 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.37336678912199434 point:0.1722450793410543 and:0.17190440556958733 change:0.14389658464366833 :0.13858714132369584 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7274224217474807 in:0.08825364104446706 on:0.08083613622049765 upon:0.06808633044651687 :0.035401470541037657 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -important:0.5156051621250397 great:0.15899561739958343 few:0.13177008782899838 Important:0.11475959059204084 :0.0788695420543377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 -other:0.37641962784469873 extreme:0.198246105719124 proper:0.1658586099099227 war:0.15202347541443134 :0.10745218111182328 -right:0.5173362719545237 help:0.17850912416523454 little:0.11092261828242625 bottle:0.10902862599379905 :0.08420335960401638 -think:0.3859902187840195 am:0.29406937401495714 thought:0.14932709644854963 believe:0.0926970784505556 :0.07791623230191817 -the:0.5786762436762167 this:0.1514307210604088 one:0.11237698888578128 a:0.10640029274994864 :0.051115753627644624 -the:0.46440322666422534 Mr.:0.3709653179324766 President:0.10424664756473152 Fort:0.032568628137721926 :0.027816179700844608 -men:0.335536625925091 people:0.27266876101749005 officers:0.13931310621831855 guests:0.13177328285499493 :0.12070822398410558 -young:0.4951371277102692 old:0.2914719286644638 first:0.07498043016915264 poor:0.0707977973769783 :0.06761271607913594 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -railroad:0.2957882719056077 county:0.27051798512098546 telephone:0.15139420031761222 and:0.1452569459560122 :0.13704259669978242 -time:0.3119106609737767 moment:0.2675292502635207 day:0.14897294722368723 period:0.13806279021329423 :0.1335243513257213 -not:0.3252399397691813 in:0.1934030524125223 no:0.18900229607783578 command:0.165530971901049 :0.12682373983941167 -in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 -the:0.5802179820133307 this:0.13837883348139168 and:0.12107545863062959 our:0.09188233854358947 :0.06844538733105847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.5382896721284737 is:0.33029395925798005 showing:0.04721253638582178 Is:0.044934010700653566 :0.039269821527070925 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whole:0.30338090474383184 same:0.18897934102314992 heavy:0.17932150730283886 great:0.16683374187341446 :0.16148450505676498 -was:0.38585504823335554 is:0.249097393593802 had:0.2010704649081898 saw:0.08702013394434917 :0.0769569593203034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.30619734328280335 about:0.2188194567729883 given:0.2092385082695088 told:0.13746381429664858 :0.12828087737805083 -much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 -more,:0.41055988114657155 more:0.28331790193962336 again:0.1208945738886712 in:0.09698196949422154 :0.08824567353091228 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.469748492180796 the:0.2935069568798095 that:0.0805131807783868 this:0.07832707370777872 :0.07790429645322895 -not:0.9255165344198552 the:0.03898014839106117 found:0.012630067493199957 made:0.011976830800653126 :0.010896418895230398 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5717144305194846 not:0.19149089587760856 fully:0.11703554282110142 thoroughly:0.06777041212687794 :0.051988718654927435 -more:0.5411687871284478 less:0.1682521629232557 rather:0.12298834181447031 better:0.12012957327638875 :0.047461134857437276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.26128806699314844 latter:0.21243958735154803 people:0.18718584731224464 committee:0.1726727817611006 :0.16641371658195822 -the:0.821444698549687 a:0.0962910165262761 our:0.030250450446717446 tho:0.02807490492136814 :0.023938929555951113 -on:0.47475825725423737 the:0.2356123332551317 a:0.1247423441358801 of:0.118288070248972 :0.04659899510577892 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7239180537985582 this:0.16106304917560513 said:0.05301315460459084 tho:0.03335983822644552 :0.028645904194800155 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -know:0.7021382124518015 see:0.12583295305965742 exactly:0.06983647715227534 only:0.0525665718709338 :0.04962578546533206 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.44612362902552954 to:0.27926926021066345 one:0.10064066881104376 that:0.09070108436832382 :0.08326535758443948 -110:0.2562512907928973 the:0.23661584232216465 100:0.18318117544060988 six:0.16786086998422373 :0.1560908214601044 -influence:0.5541747378470877 agent:0.15919060458092849 interests:0.1067966021562029 combination:0.09982884612713852 :0.08000920928864248 -and:0.28628984571172406 things:0.23463185457650823 condition,:0.16756915426355642 faith:0.16252581890481013 :0.14898332654340107 -is:0.47918128136361055 was:0.13829448303439104 the:0.13813053060221436 in:0.12454932851825098 :0.11984437648153307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.26362728554659587 was:0.24562617460972008 has:0.1782597877908629 they:0.1565670329086607 :0.15591971914416047 -the:0.6120923462568137 to:0.1460409833039874 of:0.14473381296763962 and:0.05088823593686333 :0.04624462153469585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.547601804519906 to:0.43107831342720687 that:0.013172529774924951 full:0.004200370633636897 :0.003946981644325223 -of:0.8105118593380418 and:0.06528574189129974 in:0.052375042903926305 Central:0.04788881568847733 :0.023938540178254582 -word:0.4487925334590327 good:0.258171078114191 man:0.10427586762686993 little:0.10052590913544732 :0.08823461166445913 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -arrival:0.26080865878167986 home:0.2419191311504419 hand:0.16954420212987395 friends:0.1683633536542074 :0.15936465428379687 -and:0.4648902079560549 that:0.201020188584332 as:0.14542698480790375 which:0.10957826567217618 :0.07908435297953309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8100822187170237 tho:0.10581387125093997 Missouri:0.04285994438244291 Ohio:0.022747519949403053 :0.018496445700190392 -him:0.39091667483528525 them:0.2707607154161339 me:0.15233149372633087 himself:0.10335330318486131 :0.0826378128373888 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5238292175200329 of:0.24874563977281128 from:0.09942011474732892 for:0.07548399151869842 :0.052521036441128384 -ment:0.8304115285271386 ments:0.12460121770635481 ing:0.026340213590783604 master:0.009742734909653017 :0.008904305266069829 -that:0.694861266794534 the:0.20768917924024274 of:0.06785117400211448 our:0.017629090219583463 :0.011969289743525244 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -debt:0.5987366524691644 party:0.20494714882708986 note:0.12449022987496304 sum:0.05738078166685933 :0.014445187161923192 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ago:0.7137856481330065 ago,:0.12391336519740982 and:0.07576765147224233 that:0.06321942705402392 :0.023313908143317432 -d:0.2517468042964821 rent:0.24205372979433454 and:0.22671238027013152 ties:0.1471147498786491 :0.13237233576040267 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2714929284734621 the:0.23601564839173195 Mrs.:0.2078456971371903 John:0.18478114943117396 :0.09986457656644164 -that:0.8796229954167166 to:0.06608663806923783 in:0.02274878308495468 In:0.016744804215907277 :0.014796779213183524 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5297341031894305 an:0.23488674863870784 this:0.1322714477520564 some:0.05477994751572167 :0.048327752904083525 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3242249188454487 by:0.23374120302550644 the:0.21013138225780562 from:0.1269544497268616 :0.10494804614437779 -but:0.3742431966339834 and:0.32045272080509174 did:0.16177162306701157 was:0.07416364075951715 :0.06936881873439603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5576780905303342 of:0.32778013788452054 and:0.049799521082854785 additional:0.03387591197005023 :0.030866338532240196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7092043247066231 a:0.14822658175898598 this:0.057087693777929556 present:0.046940337778735554 :0.038541061977725825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -benefits:0.26558867247900947 patient:0.21629199715501649 ground:0.19917603008151857 first:0.17772590353443946 :0.14121739675001604 -the:0.4396448115414024 this:0.2363955619378203 be-:0.1322004923300031 be:0.10814857364893 :0.083610560541844 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.3568008594934692 make:0.31808503883297123 the:0.1173055260573736 take:0.10614738894196328 :0.1016611866742229 -those:0.5821444474136416 one:0.2570532474431004 all:0.07281478842283937 he:0.05112280521868737 :0.036864711501731505 -They:0.45356052606060987 There:0.333695802668287 We:0.12810507905774896 Both:0.04477966664306325 :0.03985892557029094 -would:0.32724475192082647 will:0.3028937823651089 to:0.1886894039802662 may:0.11154633819457539 :0.06962572353922311 -in:0.387671143415924 to:0.24866066359177055 of:0.13839284351101275 all:0.12885008114206647 :0.09642526833922627 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Francisco:0.9929166673575125 Louis:0.002223074131142022 people:0.0018778949889998997 wo:0.0017307973302132446 :0.0012515661921323074 -the:0.8369802587180419 tho:0.048231327127423854 civil:0.03864538555529781 this:0.03848529007531558 :0.03765773852392079 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.7694501181225609 had:0.17802551942741168 lias:0.022926694067758824 not:0.01706932709204072 :0.012528341290228149 -be:0.36229560011740214 do:0.17636607619922204 come:0.16838823234807407 give:0.14934455431860266 :0.14360553701669912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -corn:0.38847019501717445 meal:0.2776332182816676 oil:0.13540465051413306 bed:0.1055816072535064 :0.09291032893351858 -the:0.4946440856048 of:0.1911948780417127 or:0.17751208329505827 and:0.11063338872412895 :0.02601556433430004 -to:0.3885769452136231 by:0.18103566715219757 in:0.17101354324234447 for:0.13136830138236127 :0.1280055430094735 -been:0.6696954370370573 made:0.10823892216365727 had:0.07808331738989421 not:0.07378010246583468 :0.07020222094355666 -the:0.9337795843134823 tho:0.02991105008140766 tbe:0.015698535753133066 this:0.012216747934094092 :0.00839408191788284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -agreed:0.3042471927932731 called:0.29027965073695644 decided:0.1754344364373611 waited:0.11529521619459651 :0.11474350383781287 -such:0.6565819405276382 that:0.1132066184439417 them:0.08934185961561471 making:0.08396647000126202 :0.05690311141154352 -that:0.4624229128572096 when:0.22760449992323536 if:0.16351973767988218 which:0.07514939990004255 :0.07130344963963016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.41004992427404924 everybody:0.17325586259419945 who:0.1678551561139393 one:0.1439846886242435 :0.10485436839356846 -of:0.6402640818831368 with:0.1349410680451666 in:0.08034530117585321 and:0.07512259045041601 :0.06932695844542738 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -one:0.31999157117598714 some:0.1962370487763305 all:0.19205423789939108 interest:0.17684663520784297 :0.1148705069404483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3228524233678251 one:0.22681637968273077 per:0.20748542902219536 10:0.1329820593689748 :0.10986370855827399 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.26976805018750943 man:0.2212536601680126 world:0.1999252944402413 I:0.17191175539649353 :0.1371412398077432 -and:0.5873329571993368 Bryan:0.23797196988317734 Roosevelt:0.05965090473686382 Smith:0.05811133961136898 :0.05693282856925294 -part:0.3618539875851836 person:0.19457608048414674 time:0.1659892306908341 man:0.14463871358231617 :0.13294198765751927 -not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 -wait:0.6016069737317855 remain:0.15443781604754403 continue:0.10906546620936673 him:0.06982493461258635 :0.06506480939871752 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -to:0.6627679619340757 of:0.10648658109025655 by:0.09937399479760624 a:0.0774886992520455 :0.05388276292601594 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -parts:0.5811587612638888 kinds:0.2558900962260675 sections:0.06966388404385453 portions:0.057338255685099475 :0.03594900278108986 -he:0.3239677306573394 and:0.29020530257434746 it:0.1684924376619984 He:0.11319558199821361 :0.10413894710810116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.24414468540837556 year:0.23241798550517853 week:0.19535775414944145 month:0.19122621209105303 :0.13685336284595154 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -na-:0.6183300163884655 ac-:0.1630935688938501 mo-:0.09951447079191252 elec-:0.0745881315312214 :0.04447381239455052 -in:0.45551857938362594 at:0.1649416761489755 for:0.14489757803609837 on:0.13717188155770696 :0.09747028487359315 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.33621576419635524 he:0.21742855608118525 they:0.1776431185575937 and:0.15910199537909808 :0.10961056578576767 -least:0.29387515866443525 once:0.2223105113924933 work:0.19650111629694159 home:0.1819420486728582 :0.1053711649732716 -of:0.8161040208764668 to:0.07245226930843655 from:0.0667181384305637 by:0.023934141525416973 :0.020791429859115845 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8623170264115115 bo:0.05251763952112908 have:0.03541907755902976 soon:0.02997461007743938 :0.019771646430890147 -the:0.722717864745653 said:0.10821942559383624 a:0.07108200089339098 any:0.06195924764672988 :0.036021461120389814 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 -that:0.3236704376168104 and:0.25692049217269514 of:0.2279858626385575 to:0.12240696727423173 :0.06901624029770533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6192775019433209 if:0.14579606696465144 as:0.1281744602835655 and:0.061287799657090934 :0.045464171151371295 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -demand:0.3161025670595171 reason:0.236995538646501 bill:0.17502591222495167 market:0.14025820626842792 :0.1316177758006024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6549965071589536 a:0.15480808900626294 the:0.07891880810900408 and:0.0603842170566563 :0.05089237866912305 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.383343445783201 is:0.259813515115275 were:0.14682413119878282 are:0.1347893078794407 :0.07522960002330048 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.43321598930541605 official:0.16324655803534488 military:0.1515864385991838 best:0.13623783258947145 :0.11571318147058383 -given:0.2298939905386076 seen:0.2151068503053136 been:0.1942994923665737 learned:0.18415671855596097 :0.1765429482335441 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.2693652377491786 is:0.2069143195321312 was:0.20607580941154463 has:0.17042657819055204 :0.14721805511659336 -Army:0.6388698208963787 Jury:0.1350767034593226 street:0.0955559363132264 avenue:0.07010774355719808 :0.060389795773874454 -met:0.2919587193915587 was:0.2619276280670338 had:0.16992308423522123 filled:0.14232060024684495 :0.13386996805934126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.4505185384167464 of:0.3372354949474719 for:0.09126702031416838 in:0.06612316054018406 :0.05485578578142932 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.28573746813487055 Rev.:0.2456555288550772 city.:0.20001226596669452 bill.:0.1360297828223242 :0.13256495422103357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.23234944307136934 take:0.2206244636911852 keep:0.1999454682200261 give:0.17934088703210121 :0.16773973798531808 -he:0.547152895578757 they:0.13983684492447665 has:0.11751495956197602 I:0.11112242901824396 :0.08437287091654626 -2.:0.659894493865448 3.:0.20661103121342086 4.:0.09762356369281129 .:0.021126035365564535 :0.014744875862755448 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.6335721297769814 native:0.13132856364187218 said:0.08930325312233106 sister:0.07863297496088703 :0.06716307849792832 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7467833510760585 have:0.16610474403759917 bo:0.04660546215370489 his:0.021879086246328634 :0.018627356486308914 -and:0.4500231927591389 was:0.2465652582009546 is:0.1201032462613363 in:0.10067436295361058 :0.08263393982495981 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6568715904308972 a:0.15015727500332257 other:0.07351685904041984 this:0.06637082507574338 :0.053083450449616834 -wife:0.26726643275912904 costs:0.260259939405742 Mr.:0.20906944216049175 then:0.15283548529173913 :0.11056870038289802 -up:0.5964215325472794 them:0.18051296886384507 alive:0.07988165371002806 down:0.07254099651305206 :0.07064284836579551 -of:0.3284473239690617 in:0.22231732350878827 on:0.1683426454808093 to:0.14939341870684006 :0.13149928833450072 -they:0.3431108429472445 we:0.22986876028419434 I:0.18827005065576102 to:0.16222800333943097 :0.07652234277336925 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.27353892423957155 by,:0.23756925880909327 said:0.18245418048529674 under:0.1584541970885238 :0.1479834393775145 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.3288277045838553 that:0.2957576239333694 lot:0.16136774434218135 premises:0.11368039740482738 :0.1003665297357664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -Court,:0.43682509203076453 Court:0.33644801632010124 and:0.10946144822827415 court:0.06914963926854407 :0.04811580415231598 -to:0.3051587888298159 shall:0.22647119640490238 and:0.1703876142927413 Council:0.15011522148514006 :0.14786717898740034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -when:0.7160070514822064 from:0.1125401759176305 and:0.08446244745266664 as:0.04491219685928584 :0.04207812828821049 -the:0.8865447258449777 tho:0.041832184241860894 its:0.04089277474890244 tbe:0.016607771889580833 :0.01412254327467817 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.4081688283690139 as:0.1777829241825146 surprised:0.1722316880851765 thereof:0.12832742995251395 :0.1134891294107811 -money:0.2651157147709687 active:0.22642674304305413 so,:0.18921477114057084 healthy:0.16573986877967314 :0.1535029022657331 -into:0.5830666204587445 among:0.16427866617231532 between:0.09694373178091435 Into:0.08435372058171356 :0.07135726100631223 -second:0.46227234110717186 first:0.36402940057192695 chief:0.07737634647570599 third:0.07165289880800305 :0.024669013037192072 -of:0.852049294826192 for:0.05916586054721057 ot:0.036819629983698504 in:0.026922834857088292 :0.025042379785810646 -First:0.32798716706879394 which:0.19054830020517946 the:0.1725881272751902 said:0.1571639937962759 :0.15171241165456034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -issue:0.3146656201079772 years:0.24502076270794562 visit:0.19747544615801618 years,:0.12224560724640612 :0.12059256377965485 -County:0.25238105257050786 deed:0.24715346637445168 county:0.17341080776496423 Board:0.16569919638178154 :0.16135547690829463 -is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -morning:0.35351016363708077 time:0.23550762900318567 rest:0.14566690423786693 water:0.1417953501259054 :0.12351995299596116 -the:0.7347542251977873 these:0.15435989314224804 such:0.03846725207272424 their:0.03686298410166686 :0.03555564548557363 -or:0.5800496933537846 about:0.20665261118946737 over:0.11330236660556871 of:0.05897356105839725 :0.04102176779278225 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9532926000445168 by:0.015008291123332452 is:0.011949107199954677 day:0.010050070377205381 :0.009699931254990723 -and:0.7123291875688375 Bryan:0.12017667339912456 Cleveland:0.06588152642715082 Roosevelt:0.052214785296249185 :0.04939782730863795 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.5378014061238415 may:0.16105087499791038 shall:0.13825426290880458 to:0.08249673875260134 :0.08039671721684227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.7876652803792912 it:0.09939828513597514 ho:0.060715862536446036 she:0.04058123144630719 :0.011639340501980292 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.5248556989035553 know:0.15640536982260608 told:0.11642298355444174 show:0.10330656406411892 :0.09900938365527791 -and:0.3153427798225797 therein,:0.20800181724895245 comes:0.18576294381604627 died:0.1632100990556347 :0.12768236005678688 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -a:0.3627262213637926 the:0.25385260615318006 southeast:0.1346462891417965 southwest:0.13448146495567465 :0.11429341838555622 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -nothing:0.3182470105903257 him:0.2963897542857493 how:0.23762301460624746 enough:0.07498045935581202 :0.07275976116186555 -this:0.3607268813453243 which:0.34085273206587025 It:0.17297835928743172 that:0.06855906156759886 :0.05688296573377491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.3885993070730181 down:0.2514580500699462 away:0.18453246106805907 out:0.10912356514817025 :0.06628661664080622 -and:0.4096498864670847 train:0.18207932484739006 week:0.14513185959637392 .:0.13653063500363527 :0.126608294085516 -so.:0.33730611554320095 not.:0.32429191931839857 it.:0.19215140435778794 before.:0.09051536985171461 :0.055735190928898025 -it:0.4096628457091822 there:0.20613529896728033 that:0.1467496776644971 now:0.12495303200871617 :0.11249914565032404 -the:0.8454088769572711 a:0.05360701374165598 too:0.036407805612679936 his:0.03405496748956222 :0.03052133619883072 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.596264226146174 been:0.22932330369525664 the:0.10921976844306841 some:0.03590495657470177 :0.029287745140799036 -of:0.29429515696927255 ceived:0.24108681259069437 in:0.19886756817761778 to:0.15697929829033955 :0.1087711639720756 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -away:0.5085018434051933 down:0.15796308273716494 over:0.14380604797702545 out:0.11399499172723884 :0.07573403415337752 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.4143319027377889 I:0.25659703457928945 dead.:0.13682425992463512 it.:0.1230141962990651 :0.06923260645922141 -and:0.2833639396197249 of:0.252983063978598 in:0.23856442316811344 to:0.1219410228541299 :0.10314755037943378 -him:0.3463302277767007 me:0.23081520614792456 them:0.20415005522964566 us:0.1742448569179836 :0.04445965392774553 -one:0.8966383106069915 two:0.030227940506039695 five:0.02580782054882363 ono:0.025369324795628857 :0.021956603542516405 -the:0.779245513019498 his:0.13045595856200895 a:0.03777325903214931 tho:0.027852252064349933 :0.02467301732199369 -hundred:0.49883839189611756 thousand:0.3970239307576412 million:0.09957447563559493 of:0.0031211452288987663 :0.0014420564817474051 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.43355482344712987 but:0.30510933533225115 together:0.09104578959672686 level:0.09001013594567187 :0.08027991567822013 -own:0.5199908452807135 way:0.1796555588125598 return:0.1548050226452841 old:0.09177529650833406 :0.05377327675310868 -is:0.30763476665823053 was:0.2781120124580114 Company,:0.2225824924843772 company:0.10175962083661941 :0.08991110756276151 -;:0.45179318260716167 nothing:0.1706563697005915 tion,:0.1583755277630503 Nothing:0.11996468329364678 :0.09921023663554968 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.5227646171354214 has:0.22949977908820954 had:0.16201557970860286 and:0.056147896748375684 :0.02957212731939056 -was:0.23791584077489955 soon:0.2072994349095612 regarded:0.2019713379408976 well:0.17687728983557652 :0.17593609653906514 -well:0.36345571888638784 them:0.17490906271057458 out:0.16405442143739105 him:0.1533481523269609 :0.1442326446386856 -cause,:0.26371605080583616 taxes,:0.21246951401424094 same:0.19030526993702634 matter:0.18880820731132308 :0.1447009579315736 -the:0.6232958132985676 all:0.16006701777781837 other:0.08147915375891425 bright:0.06815027603653066 :0.06700773912816889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -as:0.6527934163218351 in:0.12060843191512459 at:0.10156134986078788 near:0.06487689949132584 :0.060159902410926606 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.5070324395464924 have:0.1955950410007873 had:0.17828030318615398 having:0.07627123307507434 :0.04282098319149189 -h:0.269433016527188 amount:0.20626714264601553 people:0.20324987635464137 sum:0.17980625047898494 :0.14124371399317026 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.2710251608287042 of:0.23458696520466085 with:0.23338432156684932 for:0.1366966376282848 :0.12430691477150073 -be:0.5195111631538822 have:0.18590723470858253 so:0.12181293192849485 been:0.10253658449361616 :0.07023208571542419 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.37827890523201035 down:0.20665933069104234 the:0.1671158951706223 out:0.15736264985833315 :0.09058321904799185 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8510298750356863 all:0.052376022757991726 his:0.035328357930661136 tho:0.03500461513907006 :0.026261129136590785 -which:0.6457971615934561 both:0.10304728999807644 that:0.09249635776820156 these:0.08300343886681982 :0.07565575177344605 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3388174482333482 as:0.30807518430876996 that:0.16961671797174027 way:0.11295283985444488 :0.07053780963169666 -is:0.8449603279207167 was:0.05456661936654427 Is:0.045503581615769145 has:0.033464457059401195 :0.021505014037568874 -not:0.9088177658552207 do:0.032993497637983975 nothing:0.020313074270259534 anything:0.019488932097612023 :0.01838673013892375 -that:0.8476786309764416 to:0.04641833797802778 in:0.046382683733301344 for:0.04191765964726129 :0.01760268766496818 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3006955254169456 we:0.24806414334094623 would:0.19138405700854033 I:0.1521457767383761 :0.10771049749519163 -country:0.37578545336408753 notice:0.21625593175334304 city:0.16472127691001748 notice,:0.13318678524587335 :0.11005055272667864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right.:0.3087677747684756 night.:0.1969851237381789 day.:0.1942216632628393 times.:0.18310665217296576 :0.11691878605754033 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.3358957699721858 also:0.22411300047922555 generally:0.18271749146734567 ever:0.17346543956439509 :0.08380829851684789 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.36951764679573884 the:0.31345085194079 a:0.17160668383009425 certain:0.07815017995635887 :0.06727463747701797 -of:0.6703519983163931 at:0.1350372713203018 to:0.10204605401952298 into:0.07143155809362907 :0.021133118250153023 -made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8839008347723076 tho:0.04329253194242115 private:0.027362488980959578 his:0.023565307032743288 :0.021878837271568297 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -miles:0.7531157935097601 yards:0.0837410620626216 feet:0.0736737331793592 times:0.054392300944964396 :0.035077110303294835 -is:0.6626496944359227 was:0.16228550436482822 Is:0.14808621836298813 has:0.01549648271222249 :0.011482100124038356 -to:0.9284600437094027 and:0.03400563167110587 labor:0.015529113030694099 work:0.013998749238843384 :0.008006462349953837 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.2922188401739546 and:0.21901134277136144 are:0.1828135322505111 have:0.1735013695605596 :0.1324549152436133 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.47825954316803876 who:0.19764855208083218 and:0.12028322962857561 which:0.11566629703697062 :0.08814237808558281 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.32804250614731045 and:0.31367545765646143 The:0.21144093882913662 n:0.08197176761031996 :0.06486932975677136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 -a:0.4710054884061558 the:0.2957676375730253 being:0.17280850071635787 this:0.03828196028233943 :0.022136413022121555 -depend:0.278189398750476 only:0.20982078040427932 look:0.20632945689014923 based:0.16304367824707353 :0.14261668570802194 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.6384831472172849 was:0.15097115853703727 Is:0.09995445189098194 and:0.06042368869392389 :0.05016755366077207 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.24915589253745718 city:0.22854406432363528 payment:0.20642614765754363 day:0.1602732853515545 :0.15560061012980947 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.5285364908270632 before:0.17123586493673848 at:0.15932769118092935 in:0.09128822897953873 :0.049611724075730244 -Rev.:0.25537395156511083 Hon.:0.22800919175668083 said:0.1983757172759902 year:0.17177091318704207 :0.14647022621517608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -have:0.5346385899240225 had:0.23492820981649992 under-:0.14780348760153708 he:0.05329714805559687 :0.029332564602343666 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6642298991830925 as:0.14813060624481528 when:0.11717599274292109 sure:0.03948180131086157 :0.030981700518309407 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Jack:0.42547513087720146 He:0.19837496133175106 Franklin:0.16434377692084443 and:0.10843367907639144 :0.10337245179381158 -a:0.6007697742279707 two:0.1348537068514391 the:0.12992012262031497 this:0.08381742234368224 :0.050638973956593024 -own:0.2557219167306443 mind:0.20343426144878257 head:0.19790200195050583 opinion,:0.18071651487363063 :0.1622253049964366 -of:0.3798981099561131 on:0.2224846293129623 upon:0.17797419099904402 that:0.1315844433417764 :0.0880586263901042 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 -not:0.9110141388036173 the:0.0373934848170908 now:0.02837621506343358 being:0.015379770021280137 :0.007836391294578216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -good:0.3085833215502971 new:0.26485695877464005 large:0.21358448899110039 short:0.12926982443446014 :0.08370540624950219 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.7060411271788392 a:0.18407584768937268 not:0.05282666652313885 become:0.04273353951186737 :0.014322819096781826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8901837157482254 White:0.03603145243020992 this:0.02901611424655982 tho:0.02241139715534315 :0.022357320419661833 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -Smith,:0.3173356993110606 side:0.20269081120219146 One:0.1932349622742555 Many:0.1508774548883389 :0.13586107232415362 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.2948323250102336 made:0.2712566378106736 in:0.2015436028280816 only:0.11679946258640639 :0.11556797176460491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5353273756062149 Ohio:0.16469489315734337 New:0.1326356102966561 Mississippi:0.08661304747489815 :0.08072907346488747 -he:0.4029308148534864 remedy:0.16575742842951066 man:0.1502567703105011 and:0.14108354351139324 :0.13997144289510854 -100:0.4425271035924046 25:0.1746605534570558 square:0.16640731971119133 six:0.11374242599056206 :0.10266259724878625 -cer-:0.9481486341929731 con-:0.029202984560884954 re-:0.009246593004722952 con¬:0.007686012542091543 :0.005715775699327586 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9082442741842038 and:0.027387962994499283 to:0.023640755787618893 with:0.020405324830079268 :0.02032168220359868 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.750899960483654 probably:0.09335066619449489 to:0.06781875750829983 thus:0.050490821536840175 :0.037439794276710986 -to:0.6694466447191543 for:0.2866597996129766 by:0.01773733728671381 in:0.017075723146223 :0.009080495234932233 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6123662562211499 make:0.1287415409118293 not:0.10712252326114452 have:0.08437450903561178 :0.06739517057026446 -a:0.5685319630833733 every:0.22706052248055927 any:0.07640484632208254 the:0.06605397185668867 :0.061948696257296425 -young:0.4951371277102692 old:0.2914719286644638 first:0.07498043016915264 poor:0.0707977973769783 :0.06761271607913594 -protest:0.35873064228010404 vote:0.20366150918412398 judgment:0.17043003586877886 suit:0.15538698177273783 :0.11179083089425537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.3492520740524179 see:0.18264301165120758 take:0.17711874217641985 get:0.15829609244678158 :0.13269007967317292 -me:0.5516915745428138 time:0.1695445751043529 going:0.1401852246844848 him:0.0795782466325621 :0.05900037903578632 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -strong:0.5220489381052733 direct:0.1564185238864287 special:0.12166680875416154 powerful:0.1170265600743778 :0.0828391691797586 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5290170045537385 or:0.412085047237294 the:0.02827623718232935 of:0.016955083727645245 :0.013666627298993055 -and:0.3687055612744499 that:0.2702815799323966 which:0.15137396593738622 as:0.1288231838161274 :0.08081570903963994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.3590777752174976 it:0.28699525187804986 is:0.1384277596302258 a:0.11964718495055289 :0.09585202832367387 -of:0.8364741692089713 for:0.06256527478588618 in:0.046372018372237075 attending:0.03233144144411509 :0.022257096188790244 -pressed:0.35484143126430095 cept:0.27702951864097397 tended:0.23359208636573736 posed:0.08795235584656728 :0.04658460788242056 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -now:0.29192405110955233 so:0.23200680917044678 as:0.22659078966487212 but:0.12981433899842051 :0.11966401105670837 -of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 -the:0.8239439746315161 our:0.0959204841257017 tho:0.03818334236566733 his:0.0228085778008858 :0.019143621076228926 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3924530920131939 in:0.23691799047090553 things:0.18590066747186715 principles:0.12130418656289267 :0.06342406348114077 -be:0.5079015902992625 well:0.30065314224721434 not:0.12738405501524225 deem:0.03618636778727998 :0.027874844651000843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.7604933914003824 thousand:0.09785621496218828 twenty:0.06363578223340358 fifty:0.04194557097159162 :0.03606904043243406 -would:0.387537633886221 am:0.2341731761889176 was:0.22331396350556826 had:0.1057743819736834 :0.049200844445609716 -home:0.2272952342569261 work:0.2242078405598838 hand:0.18746363659881116 duty:0.18418389046488912 :0.17684939811948994 -is:0.6292553506784105 was:0.29969956606622616 Is:0.04067119713709532 has:0.017516845445560834 :0.012857040672707095 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -new:0.5416860665356086 great:0.2767409245701354 city:0.10936357475227396 special:0.037564195061355304 :0.03464523908062678 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -roll:0.39866725312184115 first:0.36976618711276926 re-:0.09058916540734994 second:0.07412216519604929 :0.06685522916199048 -the:0.4119608153457172 a:0.18780413615511693 can:0.15871343735968094 have:0.13230920252880546 :0.10921240861067945 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be.:0.35532876623939347 not.:0.22737302037482388 do.:0.16846738771964936 say.:0.1593146632786749 :0.08951616238745827 -same:0.48047863796999085 present:0.28227007580815844 first:0.13755936088053886 second:0.056664129213140464 :0.043027796128171356 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -said:0.3965165858739642 the:0.282117234842873 this:0.2655856010780727 Police:0.03505901490469557 :0.020721563300394583 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3025271400268702 for:0.20870564676831657 of:0.17164197244252122 that:0.16423965037076502 :0.15288559039152697 -he:0.38407841181666 they:0.316528815308182 we:0.1432113321517147 she:0.08537502586953734 :0.07080641485390604 -in:0.40736808816516523 to:0.1931187509344111 with:0.1683757926904172 from:0.13006043894101643 :0.10107692926899 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -and:0.26929259325435734 times:0.26672520815993916 faith:0.24370480015933838 city:0.12029644055403396 :0.09998095787233112 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.4132988023636672 office:0.2272777295652964 people:0.1275153741930064 manner:0.11874815325276082 :0.11315994062526916 -first:0.43511769672865147 next:0.3418329446552917 second:0.08647805394911312 following:0.07468074201971824 :0.06189056264722559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5627982039966725 a:0.22531995017273757 raw:0.08771384258536692 any:0.06326224003150148 :0.06090576321372168 -a:0.8366790998843219 the:0.1233676200771519 w:0.014353626253866263 one:0.013360381049253895 :0.012239272735406303 -is:0.443141106366431 was:0.2157620677433479 are:0.1282055140392446 in:0.11914448263343212 :0.09374682921754446 -provided:0.4499735022022903 than:0.26228265595269473 interested:0.10701234609008749 be:0.09395898052784225 :0.08677251522708528 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -W.:0.27787937842254623 J.:0.19441448763701744 H.:0.18657179656471753 L.:0.18551260950813767 :0.15562172786758102 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -m:0.7050896775502418 m.:0.15952086786882436 D:0.07727964992256776 M:0.04666806368421906 :0.011441740974147123 -a:0.6858111813455827 no:0.161902849942606 the:0.08622114336396766 one:0.04890987621924693 :0.017154949128596712 -life.:0.35894417819436797 money.:0.25966877388879056 hands.:0.15007798396137545 heart.:0.11591798193668008 :0.11539108201878609 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.42213360144369094 in:0.3428881929816946 as:0.09523733604947877 that:0.09359701888791289 :0.0461438506372227 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -bank,:0.5299827517142411 bank:0.26554172133305504 hotel:0.07349586855943674 Bank:0.06975170125794805 :0.06122795713531914 -people:0.32040168297440197 government:0.2076175258439789 same:0.16874312876381944 city:0.15630119621138694 :0.14693646620641276 -time:0.644990832215232 way:0.17245341340917655 one:0.0742965596040825 reason:0.06479547042386097 :0.043463724347647885 -seem:0.33676462367658705 have:0.22521145443269291 not:0.20734071238879856 go:0.13543340828169684 :0.09524980122022475 -Democratic:0.37031798654874154 Republican:0.36883060159072434 republican:0.13100776078470663 democratic:0.10072192468847045 :0.02912172638735696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4184448490798628 of:0.187379145633359 officers,:0.16249955079819042 or:0.14092993024636077 :0.09074652424222698 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.39686502250840694 have:0.25995600193221685 had:0.23259114041801932 having:0.06869537161889294 :0.041892463522463924 -man:0.4552285696113747 lady:0.15930632860262578 gentleman:0.1433571448214688 he:0.13784063490754006 :0.10426732205699074 -an:0.3138163769925881 a:0.2539811300160424 the:0.1764852121871398 not:0.14860588173402448 :0.10711139907020546 -corner:0.4161622498347786 One:0.1544731758405243 All:0.1526148774494868 Smith,:0.15127407203033288 :0.1254756248448775 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.5999309956571209 day:0.1481409514543817 only:0.08838961519033192 morning:0.08310273430412177 :0.08043570339404364 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -they:0.5148898128280488 there:0.2483628990712214 we:0.16275211061956227 you:0.06003634860230726 :0.01395882887886023 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5990030301559554 was:0.2178764183774884 Is:0.06417375623222307 time:0.06138562354639804 :0.057561171687935266 -have:0.4769921064770261 had:0.19697521840002102 were:0.18258911447135115 are:0.12802729204681687 :0.015416268604784969 -present:0.3020956076969052 new:0.23584945431072468 tariff:0.17304474675376547 same:0.16115658455637555 :0.12785360668222912 -the:0.7076648063526616 of:0.14929801496137843 that:0.07045677663066138 tho:0.0379482566984706 :0.0346321453568279 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5436525137001919 is:0.1377379068302485 City,:0.11194399259359966 are:0.1060146243022994 :0.10065096257366075 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.34305567258126207 there:0.20086642497337379 I:0.18488202470631518 it:0.15682714799287378 :0.11436872974617515 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3290555693393237 into:0.2954001720574926 about:0.15018739525639482 over:0.11473735846724029 :0.11061950487954864 -of:0.881666477485117 for:0.03980695269651728 in:0.027699751951019844 or:0.02651501111401945 :0.024311806753326438 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -court,:0.23372186531655517 jail:0.2278764835651543 court:0.19249141872246442 seat:0.18286547020372448 :0.1630447621921017 -Of:0.9019404008857276 The:0.06296723639370619 This:0.023013375182816112 His:0.006060767706673494 :0.006018219831076567 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.42681354919686476 came:0.18864042912110748 went:0.1574093888762809 was:0.14180089560892425 :0.08533573719682265 -time.:0.40767872390348586 way.:0.27412216855015337 thing.:0.15578019083165623 day.:0.08329163928769857 :0.07912727742700608 -a:0.30310228987037136 the:0.2839085432200448 some:0.24522278768655686 any:0.13615183978807843 :0.03161453943494848 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -the:0.9402890615276965 tho:0.026563758230470132 tbe:0.01708259437514443 this:0.013144530782526967 :0.0029200550841619235 -our:0.29747044900995934 its:0.2441531913829407 the:0.2291187737584312 her:0.13193604357091626 :0.09732154227775237 -a.:0.5077969914898307 p.:0.3344005408869825 p:0.12999985848444223 a:0.014058439869458938 :0.01374416926928561 -first:0.6754047839969607 present:0.2585950067824264 one:0.028633336727764448 single:0.020506506475563707 :0.016860366017284783 -of:0.7310998341155918 that:0.1271067358826697 in:0.08641890578193527 to:0.031414557960761785 :0.023959966259041565 -to:0.3147831299923212 well:0.273513928922061 it:0.23025274682129973 possible:0.10494274539204305 :0.07650744887227492 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -here:0.28829627930305923 ;:0.25022806489289573 in:0.24047526810005193 here,:0.11277123448807125 :0.10822915321592184 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Jones:0.24953667302288432 Smith:0.24732693264218705 Miller:0.19029675626787423 Davis:0.16072051777026397 :0.15211912029679056 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6537348452282937 a:0.2587889725502582 this:0.03357892738470374 tho:0.02949795757317757 :0.024399297263566763 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7862900727472745 an:0.11398330790267347 his:0.041956622187029106 tho:0.03847858621915464 :0.019291410943868242 -and:0.3696134424952974 I:0.23605229411059805 he:0.21730306175911182 who:0.08966923176385756 :0.08736196987113508 -I:0.2989971569942677 they:0.2780721664210977 we:0.21802782310267188 to:0.14075848993019277 :0.06414436355176989 -fine:0.5606210150817574 voting:0.16519262225296485 light:0.12330512461405736 tain:0.10177290146928887 :0.04910833658193151 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4152709987592493 it:0.2863906317979847 I:0.13183227245318366 she:0.10552800124843749 :0.060978095741144885 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.8054320866365849 or:0.08039181062803666 of:0.054726516836642446 for:0.030656098502400204 :0.028793487396335755 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -state:0.42124708148811185 State:0.4022676853619187 one:0.07142438988228078 and:0.05645727286892728 :0.048603570398761384 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.35142131588718967 them:0.18404364103472884 it:0.17148496497600157 over:0.16665244214717553 :0.1263976359549044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.487785919573225 by:0.16821450564722829 upon:0.14733612702772975 among:0.11132591436655598 :0.08533753338526082 -large:0.3447095553383672 good:0.30035499424799844 liberal:0.13411419835551186 full:0.11201320959836303 :0.10880804245975957 -re-:0.4604403476667843 re­:0.25930232224170974 re¬:0.10564592732525992 time:0.08856903920792261 :0.08604236355832351 -person:0.538320506439836 one:0.16220778341904202 man:0.16148557131781685 day,:0.08457286869347748 :0.053413270129827585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.3075346206441583 man:0.19362987365373235 latter:0.17843613941196482 time:0.1619119895678424 :0.15848737672230215 -and:0.44836467433735794 just:0.30632158749915034 the:0.08297374188111224 all:0.08213005154480832 :0.08020994473757112 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -shall:0.399912839196563 to:0.36566926867582317 will:0.10134241355994951 can:0.08055341036826968 :0.052522068199394666 -bers:0.3425001670554699 bodies:0.25730463158341355 bark:0.13603876558555122 body:0.13557993288403333 :0.128576502891532 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6191304262757191 a:0.3195782987962172 his:0.026273053244490096 their:0.018877969208747233 :0.01614025247482617 -was:0.3693919004306505 had:0.25308047081607604 has:0.13938747673939902 would:0.12000784741990796 :0.1181323045939664 -an:0.36094160682519494 pending:0.26252719401623525 -:0.2084248576894281 j:0.09290675906892601 :0.0751995824002157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.8112429709109126 that:0.06091700301609688 some:0.05894139491717141 the:0.03979566415081201 :0.029102967005006995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -set:0.7173518715073695 facts:0.1385954082159889 and:0.07237676478603564 one.:0.03764892528612383 :0.03402703020448217 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whole:0.47360280716820125 color:0.17563748236870047 new:0.14445537763209837 general:0.13693047398067545 :0.06937385885032449 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.822897615351007 procure:0.04900319537513554 live:0.04673828671172486 sell:0.04420307533661173 :0.03715782722552085 -up:0.32855145100776517 down:0.25956268797640375 them:0.16438588608557175 out:0.1586999464159495 :0.08880002851430976 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.3731753744951924 He:0.27082406760047617 We:0.18769455452636458 They:0.11023437551805652 :0.0580716278599105 -of:0.4562491375794132 township:0.16160328970590362 and:0.15874146985652052 other:0.14417686064280338 :0.07922924221535937 -the:0.9171618790124816 tho:0.030719401641354005 a:0.029256864924255128 tbe:0.015084750481317489 :0.007777103940591705 -the:0.7256959462673532 his:0.1230417314761488 their:0.07485312060755354 her:0.039747671664153196 :0.036661529984791184 -the:0.9152473167056397 tho:0.03529795730549005 a:0.024008160623718137 tbe:0.015141666405817742 :0.010304898959334488 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 -and:0.6424064997342154 but:0.125401637825081 so:0.11670972431989995 is:0.05960814936084277 :0.05587398875996092 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6904668853314265 the:0.14012581186672643 most:0.08754162450668602 very:0.047108910558215485 :0.03475676773694552 -year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 -more:0.4786609092198665 less:0.26259951128501163 better:0.12904777556824193 larger:0.0764387762085685 :0.053253027718311384 -of:0.5628974834881455 in:0.1384875672220178 to:0.13192243499892023 and:0.09694407588977952 :0.06974843840113695 -in:0.2951945132924931 are:0.2685870966940785 of:0.18589759292913025 and:0.16909023266930162 :0.08123056441499647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.2844609484949513 city:0.19896139887196546 day:0.18314003208191001 amount:0.16704582819028854 :0.16639179236088472 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6980713566917636 his:0.12826418776071136 this:0.07438237663845206 a:0.05414269362649323 :0.04513938528257972 -sale:0.35522573083478864 men:0.17376865390459875 liberty:0.1674417122797457 them:0.15217582762416984 :0.1513880753566971 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.41518862660024775 and:0.22932656058597298 he:0.18533288880995427 it:0.08900988328125055 :0.08114204072257437 -the:0.6758481519292461 West:0.23568219407905625 tho:0.032010430744446094 a:0.02958281823978798 :0.026876405007463713 -up:0.3611312924416059 place:0.2845223586311958 place,:0.18577445634504433 him:0.11968229851289819 :0.048889594069255894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.27042750728122394 in:0.2138085083816815 of:0.20009108990244448 at:0.1686313185443771 :0.1470415758902731 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Republican:0.2949993201642995 front:0.2843347828370097 Democratic:0.22808797858911833 republican:0.11297298062457983 :0.07960493778499264 -various:0.5258532348404027 other:0.21323182125493048 worst:0.16315113468727907 different:0.05229368049708348 :0.045470128720304176 -made:0.2953436452185395 found:0.20477720760346002 but:0.19752370900401406 seen:0.1694502632380247 :0.13290517493596166 -ported:0.8091014660495516 turn:0.06186414493161803 -:0.061678329325224886 public.:0.03695898235446755 :0.030397077339137917 -be:0.4669814762001833 the:0.32267125673145874 b:0.09168745613250397 go:0.06222509774681977 :0.05643471318903428 -that:0.5267254593664162 but:0.19526318729883035 as:0.10811129297782436 whether:0.08856609020833901 :0.08133397014858999 -the:0.5979448499083612 a:0.18746267630468186 any:0.11295338671420294 this:0.053164360433463766 :0.04847472663929014 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.40183964905000685 no:0.24540934266469946 not:0.17005835453516774 much:0.10644500128299958 :0.07624765246712628 -seat:0.3041582687220176 court:0.23187363399809027 and:0.20187433916071224 clerk:0.15382549371913226 :0.10826826440004764 -would:0.5454767398070173 could:0.15441668413587795 might:0.11745439392378189 will:0.09715594013071575 :0.08549624200260714 -of:0.4394744139893164 here.:0.1914673526795274 in:0.13610591724805438 market.:0.1296985208940613 :0.10325379518904049 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mand:0.44270878126555 crease:0.17229171635486462 scribed:0.1546895217617128 signed:0.13187505332042324 :0.0984349272974493 -the:0.7074267598055957 a:0.12716292263385093 his:0.06259600046214973 this:0.06025087836832997 :0.04256343873007387 -very:0.39636811867347416 so:0.23813324699360738 not:0.16346921099188855 exceedingly:0.10478734771837564 :0.09724207562265434 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -children:0.3220507969029579 ones:0.2540705261680616 girls:0.17718787385144705 boys:0.14618692285955345 :0.10050388021798004 -not:0.3221154864755227 situated:0.23391352690244643 now:0.18971640892441632 located:0.15051907292151603 :0.10373550477609858 -figures:0.6068071164553871 facts:0.20556505389809737 records:0.07374001136888285 and:0.059146831972704976 :0.05474098630492769 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -at:0.7109855377209183 when:0.1567302260545456 that:0.0708122773369099 where:0.03616632108301759 :0.02530563780460848 -in:0.2800944683377412 to:0.27706855470998304 for:0.18617168547164809 on:0.1442909634369626 :0.11237432804366498 -of:0.37800032598960676 to:0.33647041808407047 into:0.1312869308177955 on:0.0857687263007827 :0.06847359880774458 -the:0.8847783025960911 tho:0.04543564526036151 not:0.028432493239755406 his:0.025036104907075075 :0.01631745399671684 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.868595654861289 a:0.05437870019000001 his:0.02909691585359813 tho:0.02789673816560917 :0.02003199092950368 -he:0.3096984838008487 it:0.271398482801287 and:0.18884574531306558 I:0.1325503312492551 :0.09750695683554364 -him.:0.3168207361725723 them.:0.30264464863618906 it.:0.16438967706764335 us.:0.16235117607660504 :0.05379376204699035 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7976230382774767 a:0.1228825776796683 tho:0.03193189739723689 his:0.02911836106843402 :0.01844412557718414 -is:0.6671518838539491 Is:0.2177150898444027 was:0.08563909573145084 la:0.015820428474911753 :0.013673502095285698 -a:0.3767906108703856 the:0.2877362222619325 said:0.23297182253915824 each:0.05545642457468647 :0.04704491975383725 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5364551962818305 this:0.2219260219752172 some:0.1021431656932798 any:0.07328125221886454 :0.0661943638308079 -they:0.5857784158821724 we:0.25967207468763576 you:0.07743542793420705 there:0.06708278602459707 :0.01003129547138763 -mortgage:0.2688092171642949 described:0.21966934619300804 that:0.1879952254539108 sale,:0.16376033193403416 :0.1597658792547521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3499850782665 in:0.3171775928872306 and:0.13079910354100516 to:0.12672562801327128 :0.07531259729199291 -carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 -In:0.39792751148341227 At:0.21223324224205523 On:0.18375498033764553 When:0.11618925746185228 :0.08989500847503466 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4384362938482187 in:0.35262819684648006 In:0.10058783006846425 story:0.07292392200320025 :0.03542375723363678 -wife:0.2973359242653394 father:0.20457011783865026 name:0.17523120183549598 life:0.17460968528322512 :0.1482530707772894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ques-:0.405250864393749 elec-:0.21998708668975997 sec-:0.21378165834153567 na-:0.09652804049922353 :0.06445235007573161 -more:0.5390239629089191 rather:0.353217772439362 less:0.06883003492658667 better:0.02602895071127579 :0.012899279013856521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.2434858258935918 same:0.23765150894954362 whole:0.21747504833012526 greatest:0.15422611946003853 :0.14716149736670087 -of:0.4309435915550185 in:0.19161342056659467 is:0.14499609326384777 to:0.13477890024971417 :0.0976679943648249 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.32466400547723895 School:0.238666145729258 Judicial:0.16595800028045568 Southern:0.15385664615022707 :0.11685520236282022 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8913150715532998 or:0.03411979695809589 on:0.025440805757229356 and:0.024646043695616474 :0.024478282035758532 -minutes:0.35470826718389825 degrees:0.2745438641587711 min.:0.17507003198994642 feet:0.10333811216886318 :0.09233972449852099 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -less,:0.2916823577692669 not,:0.25773584845958303 more,:0.18689038684292697 anything:0.1600772122716349 :0.10361419465658822 -of:0.6691933661794512 to:0.12813031021384316 in:0.09306084882584602 that:0.07142326735377702 :0.03819220742708251 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Point:0.39898286988339837 man:0.27044495843952365 and:0.13181052280297417 Bill:0.10274881735715186 :0.09601283151695189 -of:0.5499170249821463 and:0.15037722041004378 with:0.11901316992337747 in:0.11142224619466962 :0.0692703384897629 -House:0.4754792922583434 House,:0.3920027592929039 House.:0.0675933229154743 held:0.03605437805124451 :0.028870247482033744 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5717636096971369 to:0.2637310449690589 up:0.06368626772524802 at:0.053490449347699774 :0.047328628260856424 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way.:0.42503882891517686 side.:0.19947537778729288 day.:0.16138427099550928 people.:0.11268828094326995 :0.10141324135875095 -people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.786186433437887 in:0.0715285628883407 whether:0.04883710493637502 that:0.0486956900518984 :0.04475220868549906 -called:0.39270521725650426 made:0.21916132739266228 placed:0.20438667767239457 forced:0.09277459002618173 :0.09097218765225708 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6166595522536467 its:0.12818096854685532 our:0.09752378066168645 your:0.0808783507040727 :0.07675734783373876 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -gone:0.2678064334918426 come:0.2357847201966092 taken:0.17691664099966734 fallen:0.1615280729188828 :0.15796413239299814 -we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 -if:0.29219855894740815 in:0.228207033562893 whenever:0.16762140902926023 is:0.16514482141299203 :0.14682817704744655 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.30582825305453076 have:0.2772149223747322 had:0.17151356423719336 am:0.15793654305734844 :0.0875067172761953 -and:0.4993036466351207 of:0.38927743760842803 in:0.05385685036633161 to:0.02936611220846231 :0.02819595318165733 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.4718263101872752 the:0.18140942502142113 it:0.13676285476848873 you:0.11370269104068478 :0.09629871898213012 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Central:0.44399615926140124 Department:0.35123566889019847 Council:0.09018376649110091 Oil:0.08530120588489482 :0.029283199472404528 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.6701330389164601 it:0.1500044528455433 she:0.10445978740422185 ho:0.048060416199935604 :0.027342304633839087 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3375272930060441 east:0.23005223776308092 west:0.22048465356960895 northeast:0.145608406166719 :0.0663274094945472 -hand:0.2566870729771534 earth:0.19681471262449893 Main:0.1906089617202598 board:0.18391052290532056 :0.1719787297727674 -no:0.2934673289271832 its:0.26520993664275466 the:0.1705489835328194 their:0.15493088655211903 :0.11584286434512375 -him:0.4135779835659834 them:0.21169817760075738 again:0.14334509572483786 and:0.12690061409950026 :0.10447812900892103 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3096132289225458 shall:0.24832970774488586 will:0.1769688172929696 that:0.13329292698525502 :0.13179531905434383 -of:0.2586090959257587 than:0.23844050751419107 any:0.2234178974108351 and:0.15193475792456668 :0.12759774122464831 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5894856402626475 had:0.12978710153300113 Smith:0.10162269297995999 was:0.09167222408405307 :0.08743234114033822 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.46351961923673923 that:0.1950437620183713 when:0.16439815346041567 as:0.11159839558978675 :0.06544006969468694 -that:0.6740520574178749 to:0.16141569301389758 by:0.06362448833159957 county.:0.05446407794386133 :0.046443683292766484 -able:0.49557616965793255 forced:0.17953351268856563 courage:0.15324720768588707 try:0.0873035783378639 :0.0843395316297509 -was:0.6596699926174143 had:0.11151641401657968 has:0.10937659780526446 is:0.08037560492961734 :0.03906139063112413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.29986683679102905 a:0.2433767308685789 the:0.22003635748624545 some:0.1266821457075817 :0.11003792914656495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -young:0.6066319456751718 happy:0.17109633363012397 old:0.10833024915148788 past:0.06465174975688312 :0.04928972178633313 -not:0.6326536769872628 probably:0.18451370932775793 soon:0.08195490950471516 never:0.05697079485280065 :0.043906909327463495 -ago,:0.4230219727023989 ago:0.28012778774408015 old,:0.20507459911029957 past,:0.05051941439515471 :0.041256226048066696 -office:0.30633772009681415 part:0.1968056389290929 member:0.19303929875600387 line:0.15602563189328295 :0.14779171032480617 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -real:0.8501836218248544 said:0.12142189936108247 entire:0.010338086569760159 whole:0.009714613264066202 :0.008341778980236818 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5281845338372311 and:0.20781672938800405 are:0.09932271784456066 be:0.08848185869917485 :0.07619416023102943 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -me:0.3644328405454947 him:0.3311687267900046 us:0.11974563184708452 notice:0.10479098101451284 :0.07986181980290338 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4069383414673033 was:0.1922473537921826 will:0.18949083908937173 has:0.10617020523313478 :0.10515326041800759 -well:0.606008536601065 few:0.1428041255654125 little:0.11772481455423002 best:0.08694431290255049 :0.04651821037674205 -it:0.3794283455553316 far:0.21220655206108227 well:0.1950546986870786 set:0.10743467070819318 :0.10587573298831447 -the:0.8709098264946726 tho:0.039804348235153324 his:0.03635516526745109 said:0.02838350999370896 :0.024547150009014054 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.46773484397634235 coun-:0.21896358831993648 will:0.1383425497273329 then:0.09416236487628202 :0.08079665310010632 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.4105412702097181 to:0.2252969235117525 that:0.16406328491857608 by:0.10832756243111381 :0.09177095892883953 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 -life:0.2639426300178261 name:0.25239093844708693 wife:0.21753073453778635 work:0.13420485644463254 :0.13193084055266824 -be:0.886932390879986 have:0.047754181716362434 bo:0.03711295577386795 not:0.016955379540452946 :0.011245092089330807 -the:0.43193248394730827 that:0.21277413638425668 no:0.14805792519804425 a:0.1456462693893802 :0.06158918508101047 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.3061694475073808 Bank:0.2576632202423662 army:0.20511591362830944 party:0.12123129030594376 :0.10982012831599976 -principles:0.3107477314997632 parts:0.2801038751403944 days:0.16124232376464345 members:0.13639968563470106 :0.11150638396049777 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mar-:0.41842942612939993 thing:0.193872244567952 ¬:0.14961690917038412 fee:0.12466573997613334 :0.1134156801561307 -would:0.23149089878320653 shall:0.22982898694935758 may:0.21074839557301475 to:0.18832860003272583 :0.13960311866169542 -deeply:0.31907734886007943 much:0.27641193338899533 he:0.17465344735276644 re-:0.12120374262498068 :0.1086535277731781 -in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 -of:0.9370363214591065 ot:0.02138266814209277 in:0.02009486631254055 ol:0.0121797001116051 :0.00930644397465502 -the:0.5469470607282613 this:0.15291095361012622 any:0.13287716350475326 present:0.09001949409318984 :0.07724532806366959 -the:0.5898238091538647 his:0.17812608524570336 her:0.08187508631084864 their:0.0752995679944066 :0.07487545129517674 -the:0.8164159369983375 an:0.1378367964262802 tho:0.027817446243588832 tbe:0.012019884095615534 :0.005909936236177752 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.41126722953731665 there:0.1963555184632774 he:0.1940899695228259 and:0.11170463808053797 :0.08658264439604213 -among:0.2798666267228233 told:0.24145512073930536 to:0.18580101505143656 of:0.15700092041549282 :0.135876317070942 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.38932113891132664 and:0.3426572847678081 between:0.11764412524841895 are:0.0823552689853334 :0.06802218208711298 -upon:0.310308256914436 by:0.27255837623731305 to:0.24074883361916266 for:0.1234543493230703 :0.05293018390601806 -were:0.39882274857856687 having:0.22535703376423682 have:0.21738940706277154 are:0.08533571773952212 :0.07309509285490262 -near:0.3153394353828562 much:0.3101849664604432 far:0.17825434566690151 in:0.10544410550260491 :0.09077714698719404 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -the:0.5827984201199012 a:0.3167425172245791 this:0.05031336906957065 tho:0.027424773909992917 :0.022720919675956148 -visited:0.25709206399336143 to:0.23428160438614937 with:0.19119116470868444 he,:0.18823512733385264 :0.12920003957795212 -up:0.29718027079749554 them:0.25388858492262234 it:0.2118556690085857 him:0.1716648417884689 :0.06541063348282762 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -this,:0.8645770078244913 persons,:0.043304047235688724 have,:0.0365023166772704 right,:0.027853199981043707 :0.02776342828150585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.4713734231703206 hardly:0.21750833678596143 well:0.14199246981549224 easily:0.08920285983354723 :0.07992291039467843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5441107528461251 a:0.18290512179436 the:0.16183510715344318 and:0.07228555379944827 :0.038863464406623596 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.42834192874156163 are:0.2237263138296264 were:0.17150178010661848 of:0.09492519815402324 :0.08150477916817017 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.41187291449833774 the:0.33214560115621505 to:0.15125755303695 threatened:0.056417848187860546 :0.048306083120636716 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -work:0.3073701911362385 and:0.24694485733928664 institutions:0.24393813037742398 interests:0.1422545108154432 :0.05949231033160765 -are:0.4165105793038792 were:0.2611270063156417 do:0.1726740084869574 have:0.08739021045940396 :0.06229819543411789 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -their:0.5366580864895562 the:0.40141567518780874 our:0.026608540840773937 said:0.020817951661705764 :0.014499745820155226 -been:0.8675929111674118 stood:0.04480703452951998 always:0.04163534061069716 not:0.0295556842477326 :0.016409029444638408 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -spite:0.25937599619441193 favor:0.24856633178795834 view:0.18836076534936974 one:0.15714766874062056 :0.14654923792763935 -is:0.6025280331867188 was:0.18878138663812166 Is:0.1201681496904671 may:0.05589566033418999 :0.03262677015050252 -is:0.28745874121040554 could:0.2122240621702804 would:0.16962200794249177 will:0.16904759026558278 :0.1616475984112394 -the:0.8485923807397914 an:0.06933403223389709 tho:0.040541388219985736 his:0.024879664682623433 :0.016652534123702437 -of:0.35813181851676923 such:0.32025904881549544 that:0.1270660245731757 over:0.0989769988653793 :0.09556610922918027 -;:0.50616205438852 in:0.26047657654901807 made:0.09815758024028146 to:0.06940513034730715 :0.06579865847487311 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -less:0.4944685262962415 more:0.2170833548020447 er:0.13199197909354773 r:0.08330915364095183 :0.07314698616721431 -the:0.577559063671812 his:0.19195844387620192 a:0.1761252833542547 my:0.03238148045218752 :0.021975728645543948 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cent.:0.4400730280284874 day.:0.18377327256160603 acre.:0.17641418015348723 month.:0.12184259674672886 :0.07789692250969052 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thereto:0.35955913892774344 instead:0.26034528128892037 south:0.14215438800819635 one:0.1309527452147516 :0.10698844656038818 -and:0.26315414278704313 building:0.22390946164685324 trial:0.18206120243046495 home:0.17761600338955622 :0.15325918974608255 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.9775018169111734 de-:0.006906064684853337 persons:0.006671994421366485 having:0.0045165357797058246 :0.004403588202901102 -in:0.4804537405194439 for:0.15498031876015395 made:0.13501508914336718 on:0.12635785516331022 :0.10319299641372491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.43109120763091724 was:0.25051002905983183 is:0.11995397281704705 comes:0.1030931429335302 :0.09535164755867383 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6558493266411921 but:0.1424022205763678 that:0.11460909340248174 and,:0.06795968200123852 :0.019179677378719825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -them:0.4179819757446783 sale:0.2371048635855559 said:0.14151019495314104 that:0.10759785025224289 :0.09580511546438182 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4179819757446783 sale:0.2371048635855559 said:0.14151019495314104 that:0.10759785025224289 :0.09580511546438182 -a:0.6450276661369805 the:0.28129154336451 some:0.028398226861310376 his:0.022812597213852526 :0.022469966423346525 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.45953108506847035 carrying:0.222222866877548 getting:0.1233632437659661 her:0.09748001390928855 :0.09740279037872698 -the:0.7650804716053691 a:0.09190928546100079 this:0.05452841097139893 state:0.05186506016290206 :0.03661677179932916 -and:0.43047599295048194 but:0.2897680057622762 thence:0.12219811043833881 it:0.10812318352764069 :0.04943470732126247 -and:0.4235125991417933 was:0.17785873313809583 went:0.14514917772919655 is:0.1430907558723351 :0.11038873411857934 -way:0.4248088415886431 power:0.2097541557980693 devotion:0.1432368156608365 relation:0.11329618134356556 :0.10890400560888543 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6085008677921365 but:0.16156494636311086 or:0.08979546304646785 it:0.07240219022343465 :0.06773653257485 -this:0.37445636198684934 its:0.22429089863487017 the:0.1459023940827611 their:0.13078427500127207 :0.12456607029424722 -be:0.7618800138621875 have:0.16535829415667644 bo:0.05622620107066147 hereafter:0.01222510539809209 :0.004310385512382606 -is:0.5298044326650824 are:0.23922864998389992 was:0.11132430040544919 Is:0.061619819175389064 :0.058022797770179525 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6020987603797833 existing:0.12498097373535713 its:0.1020758599324009 other:0.08936610208197793 :0.0814783038704807 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -morning:0.3362331849729064 country:0.2153909295960501 afternoon:0.17409165191286985 city:0.15861053005288173 :0.1156737034652919 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -matter:0.3435242673147506 shadow:0.3090857872457205 purpose:0.15094348824430703 question:0.10107902332005947 :0.09536743387516239 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 -the:0.5513736338565813 par:0.15760816881939452 The:0.15435457940543662 in:0.06997794076246694 :0.06668567715612063 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.724322720265166 this:0.1523097366905969 a:0.08437129549991695 every:0.019721671659859448 :0.019274575884460746 -of:0.7608798684649742 in:0.07133885232717116 to:0.06277278877376864 and:0.060655483155753136 :0.044353007278332926 -made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 -on:0.5611628486677717 in:0.22393657793805935 upon:0.10243470237182797 of:0.057904466007181285 :0.054561405015159735 -of:0.6093198697730888 for:0.3306817006084994 in:0.023824754648917364 was:0.0182507289239203 :0.017922946045573995 -tended:0.3294706923844169 cept:0.24504728050498703 tent:0.21170540942025162 pressed:0.1104971766704814 :0.10327944101986301 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.394103963614548 we:0.32079199124999724 it:0.12614015330147837 they:0.08720740324195869 :0.07175648859201761 -as:0.2758355335620881 not:0.2661533481899142 being:0.180787107723217 clearly:0.13875793633679612 :0.13846607418798457 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -a:0.6294729700128158 very:0.14740128212442183 own:0.08671428008459355 in:0.07266179875088821 :0.06374966902728077 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.47871884183727115 this:0.24530163550204057 his:0.11889513408659966 their:0.08928565649312561 :0.06779873208096289 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.355973280017357 a:0.21748000465857123 recent:0.19748975914776665 his:0.18222351278761578 :0.04683344338868925 -a:0.4681988313265661 the:0.3810067249302071 all:0.057396692148168345 that:0.0482862364486941 :0.04511151514636438 -good:0.3446126638962584 single:0.2719635886128749 right:0.18088264942136076 quick:0.10459854490425687 :0.09794255316524901 -in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -get:0.3969082051275087 make:0.18458410180994042 have:0.15343490909582813 find:0.1350781403167928 :0.1299946436499298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 -The:0.5865503592479635 the:0.1965665649336647 Smith,:0.08332092903986833 and:0.07493983478674289 :0.058622311991760497 -to:0.34056599918913094 matter,:0.24776471737599487 more:0.14347163650655814 whether:0.141351501232356 :0.1268461456959601 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -once:0.6148788979775339 was:0.15440695180645778 twice:0.0841233069699453 be:0.07956358123442055 :0.0670272620116424 -in:0.265783303656089 from:0.23038050703809965 on:0.1696077520298465 to:0.16809244590815575 :0.1661359913678091 -re-:0.24517750551827977 re:0.220732172254855 con-:0.20132581538022346 con:0.1881747766244556 :0.14458973022218624 -ten:0.33278532338352135 fifty:0.212948043543752 five:0.18023747143984611 forty:0.14722222953998335 :0.12680693209289717 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -con:0.42244983777808953 position,:0.21786871769796626 j:0.13492003856300824 !:0.13327417312465298 :0.09148723283628307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.36069868999182664 in:0.203483528135048 at:0.17825088054698895 and:0.13740411824000762 :0.12016278308612884 -long:0.38337830678612894 well:0.2169569119218413 large:0.1744648695656167 good:0.14565992151957216 :0.07953999020684091 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8295833319905672 our:0.07494543816510979 tho:0.03750800642452875 their:0.03184707316969808 :0.026116150250096115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7301867122412211 for:0.11910432726367698 from:0.05863174243856943 out:0.048667560692503276 :0.04340965736402924 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.6013447385007744 there:0.17666220390221052 we:0.13209054151831628 you:0.08129847134525511 :0.00860404473344367 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.4165105793038792 were:0.2611270063156417 do:0.1726740084869574 have:0.08739021045940396 :0.06229819543411789 -been:0.9234409982798012 not:0.043035379696267854 scarcely:0.011998623643086136 better:0.011216907184523426 :0.010308091196321287 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -almost:0.44782850852384204 which:0.15698679060258625 case:0.1553399863391237 doing:0.1372082271083482 :0.1026364874260997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -once:0.6690201790489289 which:0.17567915190355118 greatly:0.06370842859220807 all:0.04724025606354942 :0.04435198439176248 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -manner:0.4184038112747542 a:0.1937411700858646 sale,:0.14913431282157041 cases,:0.1321731291179284 :0.10654757669988238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -believe:0.35006072858151865 think:0.2272883310590541 know:0.20589410836029934 say:0.11778857650325211 :0.09896825549587589 -bonds:0.39275356865297745 corporation:0.259578773507715 he:0.11917932775837302 election:0.11477309631504193 :0.11371523376589258 -the:0.5524405403731458 their:0.15715481147958107 more:0.09985125531445366 his:0.09925683700275137 :0.09129655583006827 -after:0.4024143181702699 one:0.19994335920620868 1st:0.18217184047368296 a:0.10822488596374612 :0.10724559618609236 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.7671035104162773 Brown,:0.13299409436654788 Miller,:0.05328653416053697 of:0.025694524347785505 :0.020921336708852274 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.44159550563305755 would:0.2659959104976168 can:0.12336500242766273 could:0.09283603069389666 :0.07620755074776629 -the:0.8933094049150311 tho:0.04386694136463119 its:0.03344966798274337 tbe:0.015180726287918157 :0.01419325944967633 -this:0.5130989105026615 the:0.31850655501934416 his:0.07571510516982802 its:0.06647576976497307 :0.026203659543193217 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8947710948116536 tho:0.04293713718516073 a:0.02489139147961979 tbe:0.019229614697412013 :0.018170761826153778 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.541487529339834 the:0.31800885483329405 his:0.06087377885475748 so:0.05063171726277787 :0.02899811970933663 -in:0.317804166534933 of:0.2058573712886621 that:0.18449583390257895 but:0.16464637990512695 :0.1271962483686991 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.517692506817228 their:0.16181198175170172 his:0.12204205772306856 a:0.1014198604756428 :0.09703359323235883 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -when:0.551574350055641 to:0.18944357901768333 before:0.12767201914817536 and:0.07889851410124711 :0.05241153767725317 -by:0.2778172116136986 in:0.21596400103612678 at:0.18722922454260196 that:0.16212055911437298 :0.15686900369319967 -the:0.3228259734952524 th:0.28727735333057625 tl:0.1819663244303162 t:0.1294230078210604 :0.07850734092279485 -say:0.3204912966662207 be:0.19140953800199428 know:0.18464243896282215 remember:0.16483214234261148 :0.1386245840263515 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.527112588172096 can:0.18530768856680843 the:0.11195725711327238 were:0.09889042760684785 :0.07673203854097549 -then:0.42023485448291087 he:0.20098785408042144 re-:0.18063535649354906 I:0.11289229652996545 :0.08524963841315315 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6761194614689269 or:0.11507788519397685 in:0.10109728866918241 party,:0.06393492526337144 :0.04377043940454239 -the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5934207147971375 West:0.34124718459063197 tho:0.027677055726699942 a:0.02041166283185165 :0.017243382053678754 -for:0.5214797228934829 in:0.19563393200090304 against:0.12643930354369223 by:0.1196479307583831 :0.03679911080353859 -the:0.664183597492425 a:0.18130711704640617 any:0.08459932061141054 tho:0.03684595636806215 :0.03306400848169638 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -a:0.47116851043316554 the:0.19095429288860213 each:0.18970365566954164 this:0.10130845712449062 :0.04686508388420021 -of:0.445595303123461 and:0.1781859395754557 for:0.1507102316802917 without:0.12271726038893667 :0.10279126523185486 -filled:0.24244494535671712 covered:0.23589689849022813 connected:0.20001231129998537 familiar:0.18040280991221141 :0.14124303494085802 -to:0.6497715303636693 of:0.18573170415634707 in:0.06345800814876844 lo:0.051129465727787766 :0.04990929160342738 -to:0.3569959688871489 of:0.25323996519878517 know:0.16215845325548237 hands,:0.1164865332557308 :0.11111907940285279 -north:0.35414378425469484 south:0.35230048356462457 west:0.12380417378626778 N.:0.0891903905261265 :0.08056116786828642 -10:0.35729799434226184 6:0.23005225977359245 5:0.17645014932498146 7:0.12259394660005912 :0.11360564995910516 -against:0.2811718439957967 to:0.23544012031979486 in:0.176368526315404 at:0.1671708008637212 :0.13984870850528333 -to:0.7437612520454873 the:0.13543704378969273 and:0.07235487723925242 his:0.029591386047143866 :0.018855440878423665 -same:0.47485405520850643 legal:0.17112927310779247 water:0.1366016996077962 constitutional:0.11864764545613087 :0.09876732661977397 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.24357252763844509 it:0.20249684527511203 I:0.1902169528619586 and:0.18458870696435795 :0.1791249672601263 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.39166784590974657 a:0.1819473043279691 and:0.16710573146626082 he:0.14743906665112472 :0.11184005164489885 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -,:0.2672131915614693 .:0.22586399453403355 Smith:0.202002120992399 Mr.:0.18897153468569877 :0.11594915822639934 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -of:0.6271532326261835 by:0.1378025507469002 along:0.1052644706583674 on:0.07129890290143791 :0.05848084306711083 -board:0.31127323081597674 officers:0.2095878882092363 treasurer:0.17273095372435407 department:0.15484049567684025 :0.15156743157359262 -the:0.5727792780054209 a:0.22754865949910358 of:0.07385450178017233 high:0.06475185396602806 :0.061065706749275125 -which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 -in:0.293190618317258 of:0.2695606941137432 during:0.16458064155211014 and:0.13648498102343815 :0.1361830649934505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 -deal:0.5907301958349878 sense:0.12161705304350205 condition:0.11174991563087111 many:0.10918125879914733 :0.0667215766914917 -this:0.3582515024062592 said:0.29625967704834644 the:0.28243944677282595 Lake:0.0325536710073279 :0.0304957027652405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7451355300238411 have:0.0747948619300503 also:0.06628398802907486 bo:0.06331821896337338 :0.05046740105366022 -all:0.37799425716071594 talking:0.19533555505091935 bringing:0.16809488240776393 said:0.15639242206632997 :0.10218288331427076 -to:0.38520206870779045 been:0.28241774584628043 in:0.1613653891227006 on:0.09760791031333199 :0.0734068860098965 -In:0.3551672646478269 At:0.2665026887932004 If:0.2020701922915384 But:0.09503617520124642 :0.08122367906618791 -the:0.6863033752650348 his:0.18132969025595733 her:0.060156300782088466 a:0.03854158581895511 :0.0336690478779644 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.313088206760604 was:0.2250677691014318 has:0.2241398994496896 is:0.1514438622192155 :0.0862602624690591 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.8661089087665743 had:0.08212496420101369 already:0.024921131820361906 not:0.017143546943098976 :0.009701448268951146 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.37855887090930923 on:0.3011772007163886 and:0.1500988679933202 upon:0.11333702575158028 :0.0568280346294016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tended:0.24391395185134807 terest:0.2359202207000852 sure:0.22753170743554665 formation:0.18066167991944942 :0.11197244009357069 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.2395593779445603 way:0.2349486372242833 time:0.23194577383672849 person:0.1732350930745947 :0.12031111791983312 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.28517127270493625 served:0.24901022035090936 is:0.17092414512523507 found:0.1487397602724888 :0.14615460154643048 -the:0.823608577809892 took:0.07413497462365663 its:0.04491979262643287 a:0.028866458867648628 :0.028470196072369863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3090148245302924 of:0.2633990546533138 with:0.23021020379029278 as:0.11413298963621366 :0.08324292738988721 -and:0.3914493500665467 of:0.2032891397393734 as:0.1750290260695068 which:0.1434272018243613 :0.0868052823002119 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.2710999970893284 that:0.2706273581182823 for:0.2546944303652237 by:0.10729987987842703 :0.09627833454873852 -person:0.40612010839438967 as:0.1836536920007641 bonds:0.1766502426502626 election:0.12692693293270857 :0.1066490240218752 -the:0.5084975537245854 a:0.3841642666373606 some:0.042787601951559055 all:0.03302933329450157 :0.03152124439199348 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -condition:0.26670503523065425 day:0.22083879031959752 system:0.20155767860982932 time:0.1787631907240076 :0.13213530511591132 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.6618958010419314 greater:0.10155524133211014 certain:0.08816650159720456 serious:0.08246261381849898 :0.06591984221025485 -to:0.34527996946239115 in:0.2931790416823714 New:0.24561309559029826 London,:0.07443971834958556 :0.041488174915353566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.37222054759223683 mortgage,:0.3668598300329682 lot:0.10059747927498155 piece:0.09940761333334588 :0.06091452976646764 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.28573746813487055 Rev.:0.2456555288550772 city.:0.20001226596669452 bill.:0.1360297828223242 :0.13256495422103357 -important:0.2620077795049094 money:0.20643055559641854 effective:0.18644314495602088 rapidly:0.17713521709650543 :0.16798330284614582 -few:0.5207111858462905 two:0.19738462435072054 three:0.1307109045361222 six:0.09826008612996825 :0.05293319913689837 -and:0.2932602455964607 ,:0.2358599614022944 d:0.17304323486255802 ly:0.16138272547153842 :0.1364538326671485 -to:0.4130209028279239 much:0.17451835525448975 it:0.14459572012210417 that:0.14004861800637983 :0.12781640378910242 -come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3717480207066242 mortgage:0.3571410194296957 it:0.10908461709351759 that:0.08587344715093662 :0.07615289561922568 -part:0.6052874064406949 day:0.10606026043057953 history:0.10479169317515884 hour:0.09896549557063117 :0.08489514438293567 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.3152119229682106 wife:0.1886229768898389 way:0.1813171795894081 right:0.1574809051825998 :0.15736701536994252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.36883692271073776 greatest:0.17177886038182494 it:0.1556856306767947 highest:0.15258495256015578 :0.1511136336704869 -to:0.3855817094230681 from:0.19674422791413762 in:0.17691136194129914 up:0.12712072465058413 :0.11364197607091098 -had:0.4512034170627585 was:0.4160139710463385 has:0.06923271305446367 is:0.04799132046373734 :0.015558578372701958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.3982846521950611 get:0.19285570440678426 see:0.15092462979672722 make:0.13762015287442791 :0.12031486072699958 -for:0.22337100278548094 in:0.21545451646273622 is:0.20053785442707778 to:0.19189251201091695 :0.16874411431378797 -entirely:0.5607714201123974 entire:0.14110591529875932 open:0.1136196101596352 a:0.10916543793721666 :0.07533761649199142 -per:0.9996721388339009 par:0.00025505540896798547 ner:3.535238995211747e-05 r:2.322040125952227e-05 :1.423296591913168e-05 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.49061045574783135 a:0.29185678549301286 the:0.08368844172890601 become:0.06743779839616225 :0.06640651863408747 -if:0.27838368631223653 that:0.262172474209477 whether:0.18643175520192393 before:0.15746830900081218 :0.11554377527555044 -come:0.36454736988843367 came:0.23655413182093887 ing:0.18857853245926207 cause:0.13027244871892815 :0.08004751711243707 -above:0.2673419666009935 of:0.23068647031160908 time:0.21516313428499712 following:0.1574028506116551 :0.1294055781907452 -time:0.2695578693720629 year:0.249838603634441 til:0.1998821923374066 month:0.15112272335357047 :0.12959861130251893 -pro-:0.38732503622014486 sup-:0.21502544905564114 dis-:0.14524660216795898 com-:0.12636518517455203 :0.12603772738170294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.8882566241895069 of:0.03485323571410008 inclined:0.02802656837576315 according:0.026006169498287057 :0.02285740222234281 -to:0.32497190683857685 on:0.23759402191175735 in:0.20260265788018697 by:0.12668609256342558 :0.10814532080605323 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -five:0.30989048799434554 25:0.20020827594865725 ten:0.17358762870662492 10:0.16700352199803759 :0.1493100853523348 -H:0.3548809412150663 J:0.1780523207170399 C:0.15608408135270474 B:0.15605524475464294 :0.15492741196054602 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -and:0.5943836674230007 with:0.13601082128750572 when:0.10896492642765872 but:0.1000742465730156 :0.06056633828881913 -the:0.5905474619486789 mineral:0.11690510492166423 his:0.11637210818176817 their:0.09178406346580496 :0.0843912614820838 -of:0.5744513807647079 in:0.3215884440144446 In:0.07027448816762456 the:0.02072034486912112 :0.012965342184101785 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.4186845515066419 which:0.2608232452378421 there:0.14751124450830308 them:0.09389180397066457 :0.07908915477654835 -impossible:0.5604615767107658 as:0.2010570256061872 ready:0.09315119143950049 equal:0.07567756638318276 :0.06965263986036375 -the:0.6200275658677815 Mr.:0.16749827216210667 Gen.:0.08729154630856235 General:0.06437610540152083 :0.060806510260028666 -We:0.46030758038530606 I:0.2849446152579634 They:0.19740757001967385 There:0.03248063945762531 :0.024859594879431405 -the:0.9137065800077041 tho:0.04010078242770236 a:0.02668470840338429 tbe:0.014827369047573206 :0.004680560113636093 -way.:0.4234150481160482 condition.:0.17680537539931387 time.:0.17260366744580743 manner.:0.17127553082539132 :0.05590037821343918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8741784887448942 a:0.053079899510374784 tho:0.04126430892636956 our:0.01813467803510773 :0.013342624783253739 -and:0.2925293517323419 as:0.2214014982268207 up:0.21401090045320714 again:0.18914644449624315 :0.08291180509138713 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -seen:0.29430903108938744 called:0.24968920604996503 carried:0.15359654168682707 found:0.15204367174405528 :0.15036154942976515 -that:0.39629315856499436 as:0.2191702336525819 when:0.1657725654627641 to:0.11665692658747018 :0.10210711573218939 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.5882497094439769 had:0.14463861933495342 has:0.14181713698815504 then:0.07945722768243998 :0.045837306550474535 -fact:0.4208107239136939 certain:0.22020088970114907 true:0.12847881237059872 and:0.11817711412279136 :0.112332459891767 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.34219807401368796 said:0.2987450614565088 their:0.14193496042884565 foreign:0.11697068882608433 :0.10015121527487336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.2594274482107354 the:0.2240554250296065 every:0.2142785983720492 that:0.15480448886433426 :0.14743403952327452 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -like:0.26153607401341283 not:0.23498635788901162 have:0.17752466069132072 be:0.1686522603480573 :0.15730064705819757 -the:0.7202116359870787 a:0.12469513655429396 my:0.071919505126974 this:0.05412521635248271 :0.0290485059791705 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.8956009387404954 the:0.07226669601883083 every:0.014232710014955798 some:0.010049413052264398 :0.007850242173453554 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.907315456779319 tho:0.03966673648430535 this:0.02180867364495187 tbe:0.019605868100044114 :0.011603264991379465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.36576050701153173 that:0.25403497452450413 whom:0.1516626821039713 what:0.14776942442240276 :0.08077241193759013 -contact:0.5759566374903492 communication:0.16219937771897144 connection:0.1358711343507546 filled:0.06947689915730411 :0.056495951282620804 -date:0.6356125004319874 one:0.12991370957532497 more:0.10932331837531582 those:0.0780145561197848 :0.04713591549758696 -more:0.4548940741081455 other:0.16439136970613075 less:0.12992134648793818 lower:0.12619297717173553 :0.12460023252605014 -and:0.3024293019241597 has:0.2702574152134024 is:0.1586812794703624 of:0.13680548417356553 :0.13182651921851 -of:0.7360995077512107 such:0.07449831988662416 by:0.07001848226048756 and:0.06626931859644834 :0.053114371505229296 -not:0.41426630630357586 to:0.33134234856228395 no:0.14701097731251622 the:0.057269225520278376 :0.050111142301345654 -But:0.41928658471992697 He:0.2630757647250215 And:0.11197677778688335 Not:0.10500414580432353 :0.10065672696384456 -of:0.69860202158146 in:0.17410755602728106 and:0.05102239628371365 toward:0.042477089202746364 :0.03379093690479906 -the:0.5670198939648231 he:0.1874945950779649 an:0.12058987739485426 they:0.075520659746684 :0.04937497381567379 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -once:0.2998658157158485 least:0.24344729974513143 home:0.17892993850826558 night:0.16025833063562037 :0.11749861539513404 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.6956218032913215 thousand:0.23439733509554087 million:0.0667385531323773 of:0.0016535096418900984 :0.0015887988388700739 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5975150890329847 a:0.29833563744153363 his:0.038944326340317706 tho:0.034719079584584735 :0.030485867600579135 -The:0.8236115622126586 "The:0.0634643326752037 Tho:0.04937733667117994 “The:0.032441347690130046 :0.031105420750827648 -many:0.5051241458288576 much:0.421670718930611 one:0.04066909850884459 any:0.016298717122352334 :0.016237319609334486 -a:0.7000994963729859 each:0.1788393198337596 every:0.054477003456460574 per:0.04295240806874561 :0.02363177226804824 -the:0.6352655102509397 a:0.25003277952382846 very:0.04249611131926688 so:0.03793017875113363 :0.03427542015483134 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.898485570000543 for:0.055540414235274234 ot:0.02236934378609186 which:0.016220395487710454 :0.007384276490380603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.2501880022564517 reason:0.247773270677015 said:0.19732211526982188 way:0.15312627441000004 :0.15159033738671135 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mind:0.25989909492416124 life:0.25039285163831376 opinion:0.17889522256946985 heart:0.16242847606148247 :0.14838435480657272 -duty:0.2372963852281673 people:0.2365533150996598 attention:0.18319710963392397 way:0.18160577983651732 :0.16134741020173163 -to:0.9522472550235404 that:0.03327366152484512 not:0.008382947271830182 lo:0.003149626821891678 :0.0029465093578926165 -are:0.5480882805323621 were:0.41984296357135853 arc:0.015481145840550478 ar:0.008819587180282982 :0.0077680228754459036 -and:0.31526399952117196 men:0.2643670469764758 thousand:0.19290379316163406 were:0.11905173547546823 :0.10841342486524999 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -has:0.3738914621366105 was:0.33420399570187037 had:0.1784139903417057 then:0.08330346092726973 :0.030187090892543695 -upper:0.29007847580521645 other:0.20294052265380166 lower:0.20168204777424578 north:0.16095911202041766 :0.14433984174631834 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.2896265438536908 would:0.20883578444777723 that:0.17694213531359626 may:0.16985083130535022 :0.15474470507958563 -than:0.2106563133991321 stated:0.20740862542930402 reduction:0.1972405440411808 relief:0.1933457985425462 :0.1913487185878368 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.558985105188386 J:0.21398523581327758 T:0.09548956455301803 1:0.08290538678285538 :0.04863470766246303 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.277750740297812 with:0.1904337481531305 for:0.188400057264903 is:0.17717500647455406 :0.16624044780960057 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.4602424668638733 and:0.1669080785322608 into:0.14164253070052066 without:0.11757698499380889 :0.1136299389095365 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.34724289226643135 them.:0.24167652961942734 beginning.:0.1446273007386631 water.:0.13689182388014362 :0.12956145349533468 -for:0.33284240913063584 with:0.2672867249746143 in:0.17148314819410929 and:0.16346080779999647 :0.06492690990064402 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -feet:0.4891737292496325 days:0.21807928079594213 cents:0.12154563472340922 acres:0.09466429519528181 :0.0765370600357344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6929702508870622 Main:0.15436585404344674 Wall:0.06422643573918793 Congress:0.054000659200075116 :0.034436800130227874 -subject:0.29835472514255235 addition:0.2578182635336027 as:0.17123268773351005 thing:0.15621051053450258 :0.11638381305583233 -was:0.35039665079412247 is:0.25020028829694013 came:0.21442368579893903 that:0.10637456412587183 :0.07860481098412662 -Mr.:0.5409826527128734 1:0.1299843593569491 I:0.11486237911469532 God:0.11398512795235118 :0.10018548086313109 -ac-:0.621838119069764 ac¬:0.11805646139873417 ac­:0.11693160553185937 ac:0.09270024217268913 :0.050473571826953244 -or:0.42670069043162495 a:0.16722476867167801 aged:0.15771245413976884 of:0.13358305303722687 :0.11477903371970141 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3835278984364407 to:0.24974656859046843 shall:0.16020061511743727 would:0.10686458104940767 :0.09966033680624599 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.677809748303708 to:0.14953015712274692 on:0.07276988327233033 time,:0.0630746524210894 :0.03681555888012542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.5765783233828752 all:0.18173173597835926 fact:0.08830429772946394 them:0.08778662429412723 :0.06559901861517435 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -m.,:0.43481491508766057 m.:0.29422603306264783 m:0.17103940650841934 .:0.06304189053904931 :0.03687775480222292 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -very:0.5474390735891138 most:0.22845125999550014 more:0.12963026639245837 highly:0.05767180777621663 :0.0368075922467111 -more:0.6046127430991579 less:0.15764987338530645 other:0.13135770669181487 better:0.0647490854178017 :0.04163059140591889 -Mr.:0.38474342205678175 Mrs.:0.28564187259059987 Dr.:0.13887075756726605 Rev.:0.1043884940404148 :0.08635545374493746 -been:0.2653346834738978 be:0.20767353195633642 saw:0.20242689371826886 had:0.17100614160869643 :0.15355874924280047 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.4457516040488303 found:0.17630523019322042 in:0.14760877610410078 as:0.1272853303158914 :0.103049059337957 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.819994949951605 be:0.13066155997043843 have:0.032195806565155596 probably:0.008603126804018292 :0.008544556708782753 -seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 -of:0.49510461877024164 in:0.19755260526399948 and:0.11814145178909964 to:0.1038587338046586 :0.08534259037200073 -it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 -us:0.2978247925381735 him:0.2747573964327062 to:0.19091729776172414 them:0.11990685709055716 :0.11659365617683908 -one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5777859887188438 this:0.2562696072172906 one:0.059847242998582274 that:0.053781584029719415 :0.05231557703556413 -will:0.36377701759878767 to:0.32491365425970004 may:0.12876985482454031 should:0.09280907108416944 :0.08973040223280251 -which:0.5028485214677351 it:0.17740358781128937 that:0.12513518639165291 this:0.11975450946492218 :0.07485819486440032 -no:0.519859949984242 not:0.1997145541810611 only:0.1673304419423324 the:0.057674431962151135 :0.0554206219302134 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5085255653395109 in:0.1907348435358431 is:0.10567805807364651 at:0.10193810311902524 :0.09312342993197427 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -seen:0.4401936836429388 in:0.1998231851558372 kept:0.12174830892680842 made:0.11940700399326143 :0.11882781828115418 -a:0.6669940128557565 and:0.20991257527603238 was:0.05362467082493602 more:0.03800940133459436 :0.0314593397086808 -a:0.38326739447883384 a.:0.31742400730687687 not:0.12811617123917984 now:0.09229905014585865 :0.07889337682925095 -the:0.7949393350626632 said:0.11882695247456505 this:0.04358401750075775 tho:0.025506745120818658 :0.017142949841195226 -in:0.8163548373008307 In:0.08621586962962649 to:0.0434222449453588 with:0.027743455440345052 :0.026263592683838922 -as:0.9743367046687252 ns:0.011037730869346642 aa:0.011012801064646903 a*:0.0024341470462859206 :0.0011786163509953176 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -which:0.3964503529073719 it:0.21256590002490372 this:0.18493762091534127 that:0.11573863145451538 :0.09030749469786772 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3538710496338779 of:0.2752227551429842 and:0.1427462605821771 have:0.11467590533719497 :0.11348402930376579 -people:0.3075346206441583 man:0.19362987365373235 latter:0.17843613941196482 time:0.1619119895678424 :0.15848737672230215 -have:0.6225421564253071 had:0.3424889471305159 havo:0.012384175594545585 bad:0.012080320076838862 :0.010504400772792468 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -3:0.35706412691460826 2:0.2727361936246575 American:0.1692217711471007 of:0.10594032152074406 :0.09503758679288954 -Do:0.36575055192571754 Why:0.23459511170508415 If:0.167578735199281 It:0.1405799390975107 :0.09149566207240674 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -work.:0.3252206922699259 life.:0.26291721613328334 house.:0.15614777808925323 labor.:0.141242484896793 :0.11447182861074448 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -it:0.40421865824322095 he:0.2260099620472129 there:0.1697226008042566 I:0.10736606997508978 :0.09268270893021989 -the:0.4250411049061061 to:0.38623872785299745 any:0.08854023648584396 physical:0.05072288113065169 :0.0494570496244009 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.41971893439849534 person:0.1730153055940066 one:0.1677127249476663 day:0.1328757459983413 :0.10667728906149039 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.37119957852186347 them.:0.3119168523158486 ?:0.1551193021697069 him.:0.08153165226765957 :0.08023261472492152 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -per:0.9968019317682564 five:0.001492528683270367 one:0.0007408211410443436 per-:0.0005078743556566292 :0.00045684405177218705 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -war:0.3398084719850216 charges:0.18805456304076865 protection:0.16305474961856875 case:0.16254304186971286 :0.14653917348592813 -accompanied:0.26524029987558745 occupied:0.24697169294490393 made:0.20132854658496097 followed:0.1478989987167155 :0.13856046187783205 -case:0.2913677572614345 remarks:0.18721384295651286 speech:0.18646334076559476 being:0.17630785889933892 :0.158647200117119 -had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 -they:0.36131899371189485 we:0.20485250720159895 he:0.1625676685345118 it:0.1464269183807949 :0.12483391217119943 -that:0.4887119143502511 which:0.24578744597704938 and:0.10146696180911716 fact,:0.09090413541249731 :0.07312954245108506 -not:0.5651574037366404 soon:0.17648077513845306 probably:0.1294013263570925 always:0.0767808329512615 :0.05217966181655252 -condition.:0.4485168870818506 school.:0.28484926972455626 times.:0.14173215730672348 position.:0.0629167178332918 :0.06198496805357784 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3174965076557622 a:0.31060488137918574 this:0.26279818062533017 last:0.061013634900365654 :0.04808679543935619 -home:0.38888634642322545 once:0.22500432859221636 work:0.14710710695917845 least:0.12187627637792184 :0.11712594164745785 -the:0.8361258275575344 this:0.06832885708899855 tho:0.03916540502625218 our:0.03570294218669264 :0.020676968140522185 -away,:0.44438907170609615 away:0.18846780064061122 over:0.14819748588758785 on,:0.11230808111097737 :0.10663756065472733 -be:0.46176589458639467 he:0.27652231555345586 have:0.1849134578191365 lie:0.048267199868873345 :0.02853113217213971 -or:0.9500526934430443 of:0.02545080915392626 described:0.010312266341460112 and:0.007247086811057094 :0.006937144250512182 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.4663960971625217 have:0.22970975730693394 were:0.16862822877567782 had:0.09925006111956468 :0.03601585563530199 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.361842779504285 final:0.2656756252172303 recent:0.13472245994610532 immediate:0.12934064392828945 :0.10841849140408977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -Port:0.3421397031199822 B.:0.20905151414926196 W.:0.15780553361873384 Miller,:0.15633766158813453 :0.13466558752388758 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.953089026249618 havo:0.023100897824380847 having:0.010313808925276452 bave:0.007401021493397786 :0.006095245507326969 -a:0.5054291761182546 and:0.3673413988555032 as:0.08389323962829236 system:0.02179986054618483 :0.021536324851765036 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sale:0.8239854087991582 directions:0.04901948147489727 facts:0.04784653262264667 bill:0.03959388140646754 :0.03955469569683032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -effect:0.6882652450016579 consideration:0.10763345352858011 one:0.07920266029731199 all:0.0628308386936603 :0.06206780247878966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -action:0.2505592500471259 agreement:0.22747306910816265 injury:0.19618748198758643 amount:0.1651436616499348 :0.1606365372071903 -man:0.26128806699314844 latter:0.21243958735154803 people:0.18718584731224464 committee:0.1726727817611006 :0.16641371658195822 -been:0.8887150840349928 never:0.05371165048652994 ever:0.02526887297033334 had:0.0202275238491952 :0.012076868658948635 -to:0.22259761886061358 on:0.21084103927777653 in:0.19838051684438665 abandoned:0.18568525868386596 :0.1824955663333574 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ter:0.9641793770537171 tor:0.018144892116676737 to:0.007296818256553834 foi:0.006116048157454175 :0.004262864415598237 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.9318989773249647 you:0.031033645615051612 I:0.023315803443235538 uot:0.00708105831516032 :0.006670515301587639 -to:0.3411998866703954 the:0.3358941549588756 and:0.13143094898124494 some:0.09842860156295453 :0.09304640782652963 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.32095877730235006 look:0.21314328190160264 call:0.20707911510968813 bear:0.13386484303721355 :0.1249539826491457 -and:0.43251602749650586 are:0.2403632742882989 were:0.1616172238724712 men:0.09541703255128205 :0.070086441791442 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6191679130932525 have:0.1536812730628329 not:0.083797097879841 make:0.0729546040524317 :0.07039911191164179 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lot,:0.32779353352810514 lode,:0.21731789975017904 street;:0.16911119858066673 road,:0.14847825237525394 :0.137299115765795 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.3942403101735654 have:0.2882044630613151 not:0.13679646683995964 pay:0.10688658903185866 :0.07387217089330124 -The:0.2730020515473231 And:0.2113637967486664 A:0.20340310905632766 So:0.17548168332713432 :0.13674935932054869 -the:0.8997415926701186 which:0.036520722758358666 tho:0.033806161106692344 tbe:0.016951387977072796 :0.01298013548775768 -two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 -home:0.37844094619443275 husband:0.21005571815346602 life:0.15090215392675485 hand:0.13619940086480134 :0.12440178086054512 -days:0.5724890989891621 years,:0.12230185270934274 minutes:0.1163653283180002 years:0.11415910538721219 :0.0746846145962828 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -main:0.29105651076257966 primary:0.2217860589454049 first:0.18180462526294344 great:0.15273444667885136 :0.15261835835022053 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6574962822024767 all:0.1594435050023744 these:0.11631976905238596 tho:0.04128535609644571 :0.025455087646317202 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.3255683919841728 We:0.19413537042027593 I:0.19363776787790588 Why:0.1607583648930762 :0.12590010482456915 -in:0.3616836231941399 to:0.2749914705806748 into:0.1454763914446576 on:0.11659925445901621 :0.1012492603215115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3257098223455058 is:0.27897665423604145 but:0.15400272936976928 it:0.14871824979820752 :0.09259254425047601 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -upon:0.32250771650896654 for:0.2765750819139418 to:0.16190381438444418 on:0.1441471536535188 :0.09486623353912865 -to:0.45255007491554683 into:0.20994040893857785 on:0.1952575329884051 through:0.07398488710955141 :0.06826709604791875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.2666484158544237 use:0.24730350899251596 being:0.17807826460719448 way:0.1694384813425528 :0.13853132920331301 -It:0.3721977234680337 H:0.21931019940497137 II:0.15624672364561665 Smith:0.12969440958472989 :0.12255094389664846 -and:0.5174058612360855 but:0.23452629352100823 it:0.10939867637774435 and,:0.07329402734442442 :0.06537514152073746 -it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 -man:0.3016312737743372 resolution:0.29874583133507193 bill:0.18706016980108583 meeting:0.11048995390867294 :0.10207277118083209 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -most:0.6152558936634556 other:0.17943317665194367 only:0.08138925950645914 more:0.06803720020870532 :0.055884469969436294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.552452820168632 as:0.14119990008787955 so:0.12328068623180605 the:0.09607555987720494 :0.08699103363447741 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.26023053048162254 for:0.2344257855108119 by:0.21841275526605272 with:0.18309758803018006 :0.10383334071133277 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fifty:0.5652122048214459 two:0.12275306194044978 five:0.11156057600667736 twenty-five:0.10103879548411308 :0.09943536174731374 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7101024605533188 the:0.11049890337319752 one:0.063736531006943 too:0.06042489153190168 :0.05523721353463899 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.34883734280694156 Court,:0.20454921305656376 Court:0.16447624541493278 has:0.14919148991478515 :0.13294570880677678 -of:0.44478830996610946 in:0.34405913850492215 to:0.09894930479646608 and:0.06326573863667931 :0.04893750809582283 -the:0.679327289025709 at:0.10199268129133968 not:0.10085667526017307 to:0.06850963870149068 :0.0493137157212875 -and:0.39404059188340684 containing:0.3050413852618757 to:0.11979195514585708 about:0.11336067112643716 :0.06776539658242327 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.4304428633000064 they:0.20053628697374426 and:0.18574737349501313 it:0.0964936557707751 :0.08677982046046115 -to:0.6122106883730413 not:0.3067674686891382 also:0.0450195143531149 always:0.021232943708938006 :0.01476938487576769 -very:0.6500311318416184 too:0.1149714501643642 so:0.0913190345557095 bow:0.07886382768635854 :0.06481455575194929 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5365103548397133 just:0.1815372397613624 very:0.15437784634221627 a:0.08822954859984744 :0.03934501045686047 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6062180518896152 to:0.18155688915839263 into:0.147130413674735 that:0.04334227229280061 :0.021752372984456595 -W.:0.289279830679701 H.:0.2332556276431757 A.:0.17357631560698136 C.:0.16165359300699317 :0.14223463306314874 -men:0.2881706291484499 facts:0.2490226447981753 figures:0.1895500658092821 things:0.15472763232517792 :0.11852902791891486 -well:0.35208966528424074 known:0.25061997726232177 just:0.13655261849561445 regarded:0.13191230777931956 :0.1288254311785033 -of:0.863107356085169 or:0.04520339771518073 ot:0.04413384352248848 ol:0.035855562508351965 :0.01169984016880983 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.23886251282227441 to:0.2317351242647677 with:0.21717244389793328 as:0.17892895399990388 :0.13330096501512073 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -In:0.41105267869459206 in:0.37540132304915064 of:0.1955193915670031 the:0.012190701280716466 :0.005835905408537712 -offices:0.3876958734119646 -:0.1735297838479751 cent:0.16520091976139673 cured:0.15357576146107382 :0.11999766151758973 -of:0.8759936125162087 to:0.06629281600754329 in:0.025106715181525872 for:0.017077840651088052 :0.015529015643633943 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.7501431959338895 is:0.1154287909125623 began:0.07691542988918817 stood:0.034084595236772625 :0.023427988027587467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 -position:0.3092413018698182 a:0.3038604209629229 its:0.16611689387153092 the:0.11390767767416271 :0.10687370562156531 -to:0.42497400844835614 would:0.18811376311347353 will:0.14600339120313538 could:0.12663527456391674 :0.11427356267111811 -five:0.22162257119855133 ten:0.2150141464914112 three:0.19266342448105667 fifty:0.1854162053878146 :0.18528365244116624 -turned:0.5097139159047644 turn:0.15441962518499885 moved:0.13309587041373183 moving:0.10628227622601405 :0.09648831227049083 -interested:0.43796123792398794 interest:0.1743624842448833 as:0.1594827082406362 money:0.1147008331771675 :0.1134927364133252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -young:0.44775043802601017 business:0.2100754050502717 two:0.14556514954165906 best:0.11453258713641219 :0.08207642024564692 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.42941058535461196 there:0.36200648174789735 It:0.11349072284513323 he:0.05474749565534708 :0.040344714397010394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -New:0.31465301149854014 in:0.2833180046640806 of:0.27026381869251614 if:0.08323451655162228 :0.048530648593240897 -opposition:0.6235428122318942 enough:0.12430992779918412 and:0.11082015968026152 fruit:0.07102592089272292 :0.07030117939593732 -upon:0.3174300166292209 of:0.27304744727487257 on:0.1641722704417035 in:0.13168841420988286 :0.11366185144432027 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.39217196200627213 and:0.3835266545277791 with:0.07781549877677688 that:0.07338247056514403 :0.0731034141240278 -make:0.35652843383901023 be:0.3319927755103968 give:0.10608353801276137 take:0.10407661924883956 :0.10131863338899204 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -few:0.2919870144558133 little:0.258568727358419 matter:0.16893345017861408 man:0.14676718012339593 :0.1337436278837576 -course:0.32925175580269034 circumstances:0.2431428278708028 business:0.1630474297123984 process:0.1359706083512867 :0.12858737826282185 -that:0.4293738541449859 which:0.25689581745551593 least:0.13453860757079644 once:0.10989069372837806 :0.06930102710032353 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5681448725854734 to:0.263430183602866 in:0.09523961734604333 and:0.03838657264727326 :0.03479875381834401 -of:0.9197148959400677 ot:0.027547772264666297 in:0.022823405070998105 ol:0.018945419770339977 :0.010968506953927797 -of:0.9206817252383912 to:0.03019070660857513 and:0.02317612389489635 with:0.014432375122516989 :0.011519069135620298 -give:0.36144968199401956 enable:0.21495145218197764 make:0.1800811319923168 take:0.12225904350080533 :0.12125869033088063 -law:0.25688250336708285 bill:0.21216112176748023 country:0.19343378196209854 work:0.1715252195996577 :0.16599737330368072 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.6993361104774326 these:0.14894630071566364 business:0.05697902997256045 his:0.04845034695459184 :0.04628821187975155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -purpose:0.22811020987118516 work:0.21624235193964111 deeds:0.1923092765982957 spirit:0.1914867397172161 :0.17185142187366198 -it:0.26652268834011733 he:0.2447592185947469 the:0.19690093812973447 they:0.1617743638153608 :0.13004279112004055 -highest:0.3177466605530098 new:0.18788074718168093 said:0.1796836742110362 final:0.1749088318385615 :0.1397800862157115 -money:0.23880029941126588 corn,:0.22993559370479175 wheat,:0.20086695566973922 money,:0.17049665085929916 :0.15990050035490402 -that:0.6420274989769454 nearly:0.1655335728996061 doing:0.07733106137241966 as:0.06030342494411868 :0.05480444180691022 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.36475761878076746 are:0.20149375275522882 of:0.16406129299039068 here:0.13574925404637025 :0.13393808142724273 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.38720817160721166 that:0.2283922323362671 and:0.1604338377889232 as:0.13055928774965367 :0.09340647051794437 -of:0.5012864452145854 to:0.2224591582611084 in:0.11646246783832694 as:0.08854315132040395 :0.0712487773655753 -on:0.3280913773209322 by:0.29861187233723663 one:0.13683070945357337 to:0.1230129454778369 :0.11345309541042099 -paid:0.3147895870180797 done:0.2398740356465111 made:0.20584867028049098 necessary:0.12743447241476025 :0.11205323464015805 -the:0.8265463029473903 a:0.10652028964049333 tho:0.02861994527725383 any:0.023605058585148 :0.014708403549714623 -a:0.47274673300471975 the:0.3092007832270797 to:0.0834006991005553 file:0.08174991644052643 :0.052901868227118884 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3420761367726229 came:0.23460695943722526 the:0.18127502250383185 went:0.15784574956677658 :0.0841961317195434 -again.:0.3902376731287598 there.:0.3187881248059539 the:0.10839542642470258 here.:0.09860941076434959 :0.08396936487623403 -which:0.5702434733606769 that:0.13604348363583843 this:0.12108600666574275 it:0.0930675987579469 :0.07955943757979497 -a:0.7876853574735205 the:0.1291244464171133 large:0.03247955702063683 great:0.03197105637261753 :0.018739582716111876 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -through:0.35944275651690827 by:0.2905858233327929 in:0.11807648220404506 over:0.1177906999011091 :0.11410423804514475 -it:0.3085936196490978 which:0.2984530979647076 and:0.1743690359756837 there:0.16797912492796682 :0.05060512148254404 -to:0.9495360406603879 will:0.017345253374445067 would:0.01699267799752119 a:0.008601206051563389 :0.007524821916082349 -of:0.756237470023212 increased:0.11589366643435628 and:0.06678591815297545 in:0.044452081690792504 :0.01663086369866382 -ing.:0.48976791024558847 -:0.22167715572526075 ment.:0.1255659436619851 ::0.09191486659662727 :0.07107412377053847 -of:0.4645395387156748 with:0.28805137810397957 about:0.16298796979193944 in:0.048612430195799784 :0.03580868319260643 -it.:0.2723381840526283 June,:0.22055427355482993 them.:0.21771751996586058 war.:0.17385182297385898 :0.11553819945282211 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5327219034494991 upon:0.21687302607215087 for:0.09490084384509233 to:0.08467872029177956 :0.0708255063414781 -filled:0.3046100094272481 charged:0.197043674196014 done:0.18490123726853452 supplied:0.15911673389378053 :0.1543283452144229 -him.:0.3259010631798155 it.:0.24812188436273688 them.:0.244778952492682 her.:0.10388198851383418 :0.07731611145093148 -other:0.2922587374872431 first:0.2528405152333098 various:0.17739735942279466 official:0.16418011668509386 :0.1133232711715585 -them:0.3605071166223901 the:0.3273497366189582 land:0.15565138225020955 life:0.08787882178618889 :0.06861294272225311 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3964133705533792 way:0.21031766494785464 as:0.20513354829730623 knowledge:0.12066583272002172 :0.0674695834814383 -portion:0.27537735849742934 part:0.26212457122098687 day:0.21040105267605266 one:0.1577344937988007 :0.09436252380673046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.4864369761424519 and:0.23685926604591256 but:0.12441639255275887 he:0.07745554694464783 :0.07483181831422885 -world.:0.2640367111746353 country.:0.23178389373806066 people.:0.19682201850485836 other.:0.1579133213924044 :0.14944405519004136 -as:0.9518623090444283 aa:0.016882225034197836 is:0.01361703797911291 ns:0.008827251503856196 :0.00881117643840463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 -of:0.5030478201770016 and:0.2416070313530757 are:0.09442653458768162 the:0.08124200769943726 :0.07967660618280399 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6090105657538881 been:0.1718038662425354 have:0.13207950568066404 yet:0.04659926932991139 :0.040506792993001355 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -will:0.3835278984364407 to:0.24974656859046843 shall:0.16020061511743727 would:0.10686458104940767 :0.09966033680624599 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.283398539723086 States:0.26702518051907764 States,:0.2131344283615544 at:0.12670877831817115 :0.10973307307811074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6973207436148603 farm:0.20165706193398325 tract:0.05388169613636988 on:0.02688698462509791 :0.02025351368968858 -terest:0.4998522339737485 crease:0.4075587059765514 formed:0.04951394798629473 duced:0.024230660236565713 :0.018844451826839827 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.7870607450748736 of:0.10680596254893386 in:0.049664222178056744 on:0.03130665441199175 :0.025162415786144157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.38111046443248536 vast:0.20673321388243657 great:0.18625976724671117 additional:0.15909493667066202 :0.06680161776770491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.954955436256363 may:0.019289670472856877 they:0.009309601361689259 will:0.008452115263308711 :0.007993176645782174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.3722295567447382 was:0.23518295461203476 is:0.2120959934959104 were:0.14637022631632093 :0.03412126883099574 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6081690147870586 seen:0.11181474822659883 done:0.10621367812892284 made:0.10289032955598296 :0.07091222930143658 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -never:0.40007194528618134 ever:0.20229979744799576 have:0.15392156404319357 was:0.13635803402173474 :0.10734865920089451 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4972568692954267 as:0.1969894752600474 in:0.14348585762088256 share:0.08466780795948081 :0.07759998986416247 -seem:0.36776571687006265 be:0.2102324364841674 have:0.15893568314002243 not:0.13610036708504536 :0.1269657964207023 -no:0.32242415405455954 any:0.2225140903119049 that:0.19707880973625516 some:0.1864730884049093 :0.07150985749237092 -only:0.23694719322869442 surprised:0.22812804411284837 but:0.19479428643924457 made:0.17044879999792495 :0.16968167622128766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.29231943425129375 new:0.22259424369523087 simple:0.210721054707854 legal:0.15070619021694465 :0.1236590771286768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -into:0.3068272228173874 to:0.28813348154686663 through:0.14560641715780384 in:0.13320800977138642 :0.12622486870655575 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -in:0.5188855472289482 of:0.20012024203644824 and:0.12961504608201907 In:0.1225584658401351 :0.028820698812449176 -follows::0.43599927429491275 to:0.22241457962012467 the:0.16821080082266382 a:0.11867587626329147 :0.05469946899900724 -easy:0.376031446827357 so.:0.18711666441308533 alone.:0.16323170688202887 good.:0.15040747732281884 :0.12321270455470987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -taken:0.2991435782610154 received:0.21498099152323358 made:0.20593216892876431 removed:0.1779900085225189 :0.1019532527644678 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.2858580106044382 they:0.27037562066760273 he:0.24653180350593937 once:0.10195483046175212 :0.09527973476026766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.8171844133138535 a:0.059015339731711164 bis:0.05716485966940941 the:0.042989777975713586 :0.023645609309312265 -is:0.35478808010919416 was:0.28195736809957245 are:0.21307741463095348 were:0.1258161296163554 :0.024361007543924517 -we:0.22740756431201908 it:0.2263187718030482 he:0.20721104431196474 they:0.2018653480331116 :0.13719727153985653 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.6309393734384992 powerful:0.13114137725276664 whole:0.1082616411905071 new:0.06695625555175914 :0.06270135256646793 -believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 -ago,:0.4407216364858434 in:0.23765870934268468 the:0.22557869959303062 later:0.048911208305966195 :0.04712974627247517 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.38520206870779045 been:0.28241774584628043 in:0.1613653891227006 on:0.09760791031333199 :0.0734068860098965 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -dollars:0.5463200945546344 dollars,:0.32298353879479386 miles:0.0609060390886724 feet:0.03999965352694258 :0.02979067403495687 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5592004699987456 a:0.22503920401427735 this:0.12084516744958196 any:0.06073096682830899 :0.03418419170908608 -is:0.4686344940958317 was:0.247777728069299 still:0.1225289545717911 Is:0.08479765606661625 :0.07626116719646212 -of:0.7188405952075662 in:0.12329287228656839 and:0.060186300188150306 to:0.05147200380210851 :0.04620822851560663 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.404476513901982 he:0.23696221155021088 night:0.15140655056640703 week:0.10430527461846942 :0.10284944936293067 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ernment:0.9685496046555634 j:0.015809612288072646 |:0.006904894677554588 -:0.004371826760137404 :0.004364061618671873 -40:0.25727751318266556 20:0.19505416615862986 C,:0.1912518037822811 30:0.1899021392113276 :0.16651437766509603 -attorney:0.4656501173860456 court:0.42115806497913544 and:0.04856159485867925 courts:0.034856947429746675 :0.029773275346392847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.2348976511795785 following:0.21883624409225189 question:0.21288170737869797 fact:0.17837350394983845 :0.1550108933996331 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.5575044500893693 him:0.13295408513134396 both:0.11315600012999563 them:0.09857265818634504 :0.09781280646294598 -of:0.7378491639697534 in:0.12864998957189105 from:0.060949521171531 to:0.043349150809748785 :0.029202174477075692 -and:0.7201130250293295 Bryan:0.0952034538654455 Cleveland:0.06798732998641138 Smith:0.06241960227289813 :0.054276588845915644 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.31266702445042327 and:0.2756494897874316 out:0.16454141488224225 it:0.12895649529524317 :0.11818557558465975 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3864689792249559 which:0.1988596250986965 he:0.18212627087855382 they:0.14326624964607082 :0.0892788751517227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4001509528112826 for:0.30054525401689564 that:0.16897676355692554 in:0.07957728159503799 :0.05074974801985827 -reason:0.4431359497558511 excuse:0.21372077714928664 necessity:0.12344476784393212 means:0.11638563951216144 :0.10331286573876869 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -we:0.3094880123311409 I:0.2459309941278098 it:0.19066615016901825 they:0.17227383452477044 :0.08164100884726049 -sure:0.3268878277009224 him:0.22623632504256705 them:0.18248137823527225 me:0.14174826887719566 :0.1226462001440426 -He:0.63070970256846 and:0.11879915225291664 was:0.09461365558377581 is:0.07901958774967786 :0.07685790184516988 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4561331684383627 and:0.21570724887549317 few:0.1288228264019675 the:0.11313677167721714 :0.08619998460695939 -to:0.8618426781416014 shall:0.07072713706409069 and:0.033678152568420244 may:0.018452229132389992 :0.015299803093497454 -he:0.335176382446265 it:0.23772932853911055 they:0.17916294626646953 I:0.14021456397366527 :0.10771677877448972 -to:0.38520206870779045 been:0.28241774584628043 in:0.1613653891227006 on:0.09760791031333199 :0.0734068860098965 -the:0.8699754714715136 his:0.0394145601092854 tho:0.03906066451440094 their:0.026550358745929384 :0.024998945158870776 -and:0.3117048087036252 or:0.2991603352306561 a:0.21996735274701698 the:0.1187722517629195 :0.050395251555782214 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 -day:0.5200244084130894 session:0.15100957667892762 out:0.12737429320302696 number:0.10118222881306 :0.10040949289189595 -and:0.31869585339108353 demand:0.20944313597604397 of:0.16743294757604055 advantages:0.15895890468432225 :0.1454691583725097 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -serve:0.4493044638821727 serving:0.3030259216698833 sent:0.16168446518381444 j:0.051865828747945764 :0.03411932051618365 -the:0.5010050057284939 southern:0.22694745365480226 S.:0.10692646861666436 by:0.08779735342917326 :0.07732371857086606 -that:0.2886932629420538 Saturday,:0.2136193445346821 Monday,:0.20292921366353753 hand:0.17950628257767942 :0.11525189628204724 -sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 -been:0.27613122168678994 made:0.22593941404400894 been,:0.195878559885622 done:0.16262477216754362 :0.1394260322160355 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made.:0.6026550800095967 done.:0.16923479841411526 used.:0.10453446196474404 present.:0.08280712568780277 :0.0407685339237412 -the:0.4567745766975836 no:0.3108068110451085 an:0.09544787360956981 any:0.08184514883224633 :0.0551255898154919 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ones:0.29966449283969 buildings:0.26417887833963466 and:0.16586995608920285 men:0.16223590665174317 :0.10805076607972948 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.24547619945598173 hand,:0.2205507419507985 than:0.19145681532836525 day:0.18221341751035075 :0.16030282575450383 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4931792202362264 have:0.36905312205775176 not:0.06153993052011724 he:0.043408567900083045 :0.03281915928582161 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.45884077215892544 connection:0.17715348597667507 matter:0.1289410401461493 parallel:0.11840508343751481 :0.11665961828073544 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.4593507860895871 There:0.22786156069103308 He:0.13852170301045524 This:0.10715537634783266 :0.06711057386109191 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ai:0.30942749349080506 -:0.30329604867242693 following:0.16485773541646667 same:0.11367105972185722 :0.10874766269844403 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -run:0.29066701301605374 !:0.23774218407301972 ;:0.20658940432015513 c:0.14588369326026934 :0.1191177053305021 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.5143169812806508 the:0.28030539422402456 any:0.09943386162681 all:0.06277540315017949 :0.043168359718334985 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 -be:0.46739394401155293 the:0.2235959224797817 do:0.11106992989468346 a:0.10039525449417867 :0.09754494911980316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -into:0.40023502668862027 up:0.19259745806502845 out:0.17510384268437998 in:0.13902763635446 :0.0930360362075113 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.38426609507771464 the:0.2755770649533121 her:0.20890179036210385 my:0.08927989443900959 :0.04197515516785983 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.47929412232107144 by:0.41641712924129615 and:0.05738073563823503 in:0.026063401565355478 :0.020844611234041813 -in:0.5049435370060565 for:0.14861319601558812 made:0.12235114169496095 on:0.11734190051709899 :0.10675022476629545 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.29367058080832836 can:0.2738506165191144 to:0.22248109732486307 would:0.11635949766054345 :0.09363820768715057 -principle:0.29998611208482445 acres:0.2938890071913096 view:0.1569987252875276 sense:0.1258219306913487 :0.12330422474498962 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -the:0.6154338311446211 their:0.23106248280535457 our:0.10007332897796944 tho:0.030273815684957513 :0.023156541387097315 -go:0.2798275858762923 come:0.19804377388253017 carry:0.18899759011463618 find:0.16744752248500286 :0.16568352764153862 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.2358729038665443 chief:0.21218862162242805 main:0.20071187914094002 same:0.1872990197193192 :0.16392757565076824 -is:0.4083051024149447 was:0.38184495859416706 had:0.0856607210140714 has:0.07409714927975194 :0.050092068697064764 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.8357465518198911 of:0.07668073521110398 the:0.0489209647729683 and:0.023715004299616562 :0.01493674389642006 -try:0.5105165902024021 ty:0.24919415057689095 ty,:0.13218369093159532 ties:0.08976041889214748 :0.018345149396963946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.4015671973987891 three:0.2291882862977231 two:0.17370490947423414 five:0.10805662388355287 :0.0874829829457008 -to:0.876084109307201 and:0.05976124512539463 will:0.039642632582505534 may:0.015701557813317838 :0.008810455171580888 -person:0.6817487532970923 longer:0.12449923345106542 man:0.06647319671810278 time:0.06612603147914183 :0.06115278505459761 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 -of:0.3942058385435952 and:0.2434435348093704 at:0.21881276771548172 No:0.07227601815387708 :0.07126184077767579 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.49275834720500183 in:0.22424967889926958 true:0.10422101623280706 strong:0.08988207958893475 :0.08888887807398668 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.685869464948585 the:0.11712323184668884 an:0.09926048686763547 which:0.050478062554671944 :0.04726875378241871 -little:0.3705853945109688 small:0.2669014201782772 native:0.21472186032680177 good:0.07530497465721879 :0.07248635032673327 -as:0.31037657843834887 manner:0.23768863171094468 case:0.1785711859030029 men:0.16330732187589006 :0.11005628207181352 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.26805376617466203 own:0.21081848864094035 country:0.2033867187879137 present:0.16573774521020865 :0.15200328118627512 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sides:0.4983165262084478 houses:0.20167127432571452 men:0.1181908541201773 parties:0.09478815999553453 :0.0870331853501259 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3789038492919325 to:0.30394472015282126 in:0.18414744863555607 out:0.08210348115681158 :0.05090050076287863 -before:0.3762073078455166 to:0.22989055228561006 saw:0.17539731092533134 in:0.11143767348143944 :0.10706715546210256 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3768240709438673 character:0.32497443809827525 principles:0.10993040393958611 influence:0.10607872425028567 :0.08219236276798572 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.3587454351525329 important:0.2750793084463515 vital:0.15214158684141912 the:0.1273024679205357 :0.08673120163916087 -be:0.8750322434073632 bo:0.07420793946853846 have:0.02199460872673379 easily:0.017280676292344803 :0.011484532105019754 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.42154500890121777 mortgage,:0.313259003046185 county,:0.09836771966833602 county:0.08643033245472659 :0.08039793592953473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.57204330025558 from:0.16004263829242807 so:0.10409531231030958 In:0.10100794284315127 :0.06281080629853096 -of:0.6499467361113361 for:0.1922045151063244 to:0.09448515765064255 in:0.032950102393025524 :0.030413488738671633 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4656730029277265 a:0.304793397466712 something:0.09114925745408249 anything:0.08041965352871645 :0.057964688622762495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6203362558715391 the:0.16163419298616663 Smith,:0.0893081583136233 My:0.0783856447447591 :0.05033574808391186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -carrying:0.38720705722485244 him:0.23087545619241273 them:0.199654584477034 it:0.10354140192196891 :0.07872150018373189 -such:0.5554589570281726 him:0.19442625238655184 as:0.08858644013022197 which:0.08147956346238802 :0.08004878699266552 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.39337065127017484 when:0.2436577372285483 if:0.1435115544366602 then:0.12776661242254575 :0.09169344464207098 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4527615237638839 a:0.15143733161333897 to:0.1500867513936728 the:0.12707971139141302 :0.11863468183769123 -the:0.7343493880287707 a:0.13513655673106392 this:0.07567745463756115 that:0.028885080674717095 :0.025951519927887193 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.527634100310821 but:0.23810758475696636 not:0.1302719105462149 dis­:0.05301150612720565 :0.05097489825879201 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -capital:0.9167066205923794 and:0.027023637955410254 in:0.02347976327568718 the:0.01647670846267521 :0.01631326971384805 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.2473837782583738 p:0.2257870879784335 last:0.21793202962741529 sum:0.15841656887542194 :0.15048053526035543 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.691805878730527 as:0.11528740785139986 is:0.07935944445820327 was:0.07602679941308431 :0.03752046954678551 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.3934385625235438 and:0.3255222859787074 man:0.13235182679582885 he:0.0923621069304806 :0.0563252177714393 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.35511093007303984 still:0.30278208145484864 a:0.1518662849473129 hereby:0.1385004192435126 :0.05174028428128593 -cause,:0.26371605080583616 taxes,:0.21246951401424094 same:0.19030526993702634 matter:0.18880820731132308 :0.1447009579315736 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.39215381793830223 on:0.17850483299453793 to:0.16784660744132276 at:0.13875156909182068 :0.1227431725340163 -it:0.43561896354422575 what:0.18686447707036705 who:0.12829722730654972 which:0.12538190964153992 :0.12383742243731753 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3210473262562483 tin:0.2375791942134478 lying:0.17324016555886143 f:0.13654064395357057 :0.13159267001787192 -of:0.6842651836929006 in:0.1447453401510731 to:0.08581225040799449 on:0.044168036785747385 :0.0410091889622845 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -line:0.3060283380834578 street,:0.2285126212281845 street:0.17292515797340374 ence:0.15924124463256456 :0.1332926380823894 -fact:0.47937756232303064 truth:0.24405748633628765 question:0.1675741304918259 result:0.07457368294067179 :0.034417137908184035 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -he:0.4029505609955214 I:0.18211068555142865 they:0.15130281519171782 it:0.1474457693180673 :0.11619016894326493 -next:0.346700357586101 same:0.29025764365009704 attorney:0.23741276254016713 last:0.07171402270246455 :0.05391521352117 -of:0.8254661108449765 in:0.10953487250736446 and:0.030938169498543208 to:0.0185002835934326 :0.015560563555683379 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.5358268386932779 portion:0.2287830844097507 number:0.1493241380522897 amount:0.04676658691062375 :0.039299351934057966 -hour:0.5327106538293975 old:0.28683698626053145 early:0.12794473329999725 long:0.02855337641967752 :0.023954250190396084 -say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 -the:0.48254043209367536 no:0.19618359554944861 a:0.16350596572811743 any:0.09383575444508714 :0.06393425218367137 -are:0.25443961658050834 in:0.21765943537297944 as:0.19436846614339148 have:0.17788083121031953 :0.1556516506928011 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -time:0.5773165624430431 reason:0.17595641688082814 excuse:0.09111279616560516 way:0.07927571720603267 :0.07633850730449103 -in:0.3232578678422387 with:0.22460415559175245 if:0.16420132216032007 as:0.15098735082966172 :0.13694930357602725 -the:0.5569270790186648 a:0.29989062662366045 this:0.08859282526468473 no:0.02899593031894894 :0.025593538774041257 -feet:0.5790901490958945 inches:0.14205376606324854 years:0.11979629055205429 miles:0.09472464622217443 :0.06433514806662838 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5650372019867911 in-:0.2584303799641988 in¬:0.07106384001475598 in­:0.061289181503773806 :0.04417939653048017 -to:0.5687794893468335 will:0.15292308073584493 may:0.11958193455142827 would:0.09052919045198592 :0.06818630491390731 -well:0.5051921422478133 is:0.19914743876973254 was:0.1193205830530191 also:0.08831042325459687 :0.08802941267483808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.3016805091749588 is:0.18852711344428932 does:0.1824750845405936 will:0.1687847375987981 :0.15853255524136012 -in:0.31991173296665487 on:0.27164176543318996 and:0.2364081417085471 at:0.08889941151626798 :0.08313894837534005 -going:0.3217901891210058 him:0.259632601397609 them:0.153657825971661 it:0.13581058494222767 :0.12910879856749652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.438530548215532 is:0.2609852029717083 has:0.10809399853987003 but:0.09736181946183957 :0.09502843081105013 -off:0.32045919102678155 in:0.2576838859215474 down:0.15504591106491653 into:0.13787493789812622 :0.1289360740886283 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.44326926764104846 for:0.17532987270128922 a:0.1289522864819735 of:0.12736317311156914 :0.12508540006411967 -not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.4170727633321902 He:0.2536547730796011 There:0.1383745267514418 I:0.11547816089430099 :0.07541977594246603 -engaged:0.25702586496894847 made:0.21896952176304826 placed:0.2091973485765652 found:0.18092104883677196 :0.13388621585466606 -he:0.4424599661552178 it:0.41253838018680156 she:0.09834379692480474 It:0.02396638957196705 :0.022691467161208907 -to:0.3349431600699248 will:0.3279032273728979 would:0.13394002637599003 shall:0.10754966060337227 :0.09566392557781497 -did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 -but:0.37980323529355703 and:0.3110512297861681 until:0.13464699829055368 as:0.09869851319723265 :0.07580002343248853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.5523966830691055 and:0.15340698163283478 in:0.12141002101184889 from:0.10272464316287862 :0.07006167112333227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8213770422470758 his:0.08935835029708664 tho:0.035310625936350856 a:0.02863285981825827 :0.025321121701228622 -in:0.3769193104423524 with:0.29206579963061857 of:0.12328502312513677 In:0.10727682260258131 :0.100453044199311 -necessary:0.24096588207560182 impossible:0.22199192684643873 not:0.20049942933006623 ready:0.17027816810835814 :0.16626459363953505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.773817414665169 in:0.1187012768580031 and:0.04581213397045864 at:0.03162221933553308 :0.030046955170836335 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.5932643890823308 or:0.1424284545352993 to:0.09704435289380342 and:0.08751616432533701 :0.07974663916322952 -one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.4245870400006902 time:0.42140278473406606 time,:0.09441238982926511 and:0.029848758190325425 :0.029749027245653096 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3909554252415782 myself:0.19239934916288298 and:0.15032410635676802 was:0.13701003029966938 :0.12931108893910145 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8888578691300698 a:0.035400032598741776 tho:0.03479210055887068 his:0.0238736633643683 :0.017076334347949387 -it.:0.3410322711059898 there.:0.2810374278250659 them.:0.1666273150975089 up.:0.11037536566218539 :0.10092762030925005 -posed:0.4812370640740628 regard:0.16711784018736767 tribute:0.1287763869830329 position:0.11641105188185669 :0.10645765687367988 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -little:0.44277020807869694 shade:0.23025455017376692 much:0.13798762539086534 few:0.127839710096451 :0.061147906260219834 -bill:0.3130192209026884 result:0.207745711953939 bride:0.1790661194044228 man:0.1504124945085327 :0.14975645323041717 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -could:0.24433194600151115 did:0.24300743390716462 .:0.19223478479281597 am:0.17637544317190618 :0.14405039212660214 -could:0.40149999659898555 can:0.2575160733017666 will:0.18416374875768884 would:0.0817865322019596 :0.0750336491395994 -in:0.3555376612880513 of:0.27108030598882527 on:0.18771261160038766 at:0.11475888180086136 :0.07091053932187427 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.4241789998321079 far:0.16986977292033606 arranged:0.14827152491498824 as:0.14705921514239365 :0.1106204871901743 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -life.:0.31601517135396623 death.:0.21149507261440967 wife.:0.1877948346781055 own.:0.16012413490798005 :0.12457078644553832 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -I:0.36581173095763353 tin:0.2204234011183812 -:0.138874714291513 the:0.13803614667379388 :0.13685400695867841 -which:0.4110764496822824 you:0.2574020939146862 whom:0.1394453370984725 them:0.1078411194824198 :0.08423499982213906 -with:0.27557003786096634 the:0.26992693071556617 his:0.18988742466911016 and:0.14023295424249818 :0.12438265251185913 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -aid:0.4008491912012015 number:0.19567968368122216 piece:0.13948133094254336 line:0.1338636013980199 :0.13012619277701304 -time:0.27401422574056494 him,:0.22633655533520494 Mr.:0.18078362767583855 it,:0.16489232659378641 :0.15397326465460512 -side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -accordance:0.45567474297272426 connection:0.36276114350371136 contact:0.10855163254712391 conflict:0.04534622397643834 :0.027666257000002366 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -being:0.46849791436146054 which:0.3726700527571485 those:0.08862135180186329 himself:0.03705968767063931 :0.03315099340888834 -the:0.6935414161031792 a:0.23296449390227028 tho:0.03156031228059098 large:0.026240197188799004 :0.015693580525160494 -few:0.9093051745551868 six:0.026074495886080216 summer:0.025766066305745402 three:0.019923822688325463 :0.018930440564662154 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -plenty:0.2519505633222797 some:0.19534897260960368 heard:0.1931920356395986 power:0.18336266369755808 :0.1761457647309599 -.:0.9285593936653189 t:0.020393147859047694 V.:0.02025317220917073 M.:0.016500377772284865 :0.014293908494177854 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -can:0.4208463484411206 could:0.3532990160355529 had:0.08473508266005192 are:0.08119633813163588 :0.05992321473163859 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4398114023353183 open:0.1608979853317519 wide:0.15897200050580904 opened:0.12537138364503914 :0.11494722818208157 -said:0.40320126333542466 time:0.3595409908140984 day:0.0839955797679585 best:0.07757820046903845 :0.07568396561348001 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -Canada:0.32565761790805736 and:0.2222116170321594 Union:0.20874382993354823 States:0.12847587871984 :0.11491105640639505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -subject:0.2708521342199717 right:0.22636552663948697 order:0.18426917705445378 way:0.1622515487311221 :0.15626161335496536 -acre:0.7827824357693669 ex-:0.06683574671079487 immense:0.05856040691813479 at-:0.05744668189038912 :0.03437472871131433 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.8788337401623526 aud:0.0382175139287708 thousand:0.032480404526317196 or:0.026711548011672394 :0.023756793370887024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sale:0.8849084282204059 which:0.06300322923219458 sale,:0.02193815222446916 trust:0.01727010331995741 :0.012880087002972688 -protest:0.21197699853583007 claim:0.20466370045893412 one:0.20201925043917834 case:0.19972600594266293 :0.18161404462339453 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -now:0.306813831909966 engaged:0.18934038531521988 interested:0.1889322859730126 not:0.16446278780639428 :0.1504507089954072 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2667507745902356 Mr.:0.2629244174797201 Mrs.:0.1672371706905338 said:0.15719304614428986 :0.14589459109522068 -the:0.696285046667983 at:0.1298675789654359 to:0.06851873488425286 The:0.055584238300930205 :0.04974440118139785 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9015239725672651 tho:0.07181636056552992 tbe:0.01731352045689764 a:0.006052682714003579 :0.0032934636963037377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8196043089329572 any:0.05178581524270606 tho:0.05140151574714726 those:0.047775448279350353 :0.029432911797838985 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.928495713893626 or:0.02736210992997846 and:0.017690770302807943 because:0.015041893610581076 :0.011409512263006516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ago:0.42586827114697046 and:0.2121450690949589 of:0.1609168867420531 old,:0.10643830129097619 :0.09463147172504126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8264103974651795 and:0.08156470288284426 will:0.04371181397221545 would:0.027566496758002573 :0.020746588921758256 -the:0.8683315824512863 this:0.058390034927911436 tho:0.04334793406883611 civilized:0.015042926264653807 :0.014887522287312398 -of:0.7558185702212386 in:0.09488228341919429 to:0.06543979046467338 upon:0.04763385159460769 :0.03622550430028597 -the:0.790584901689543 an:0.09835614538511549 their:0.056367524360414964 its:0.02791412965935272 :0.026777298905573822 -a:0.8185293576605857 the:0.12807191178165878 my:0.0182316799246996 other:0.01760080741250257 :0.017566243220553387 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.3841459616912554 follows:0.22431054652770974 it:0.19025611550294916 aforesaid:0.12108469304478914 :0.08020268323329664 -think:0.36386458168060254 want:0.19932984032050519 thought:0.1741946667132035 hope:0.1409243067540886 :0.12168660453160005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.925111256951744 him:0.029965487320909406 them:0.015427385001628442 it:0.014913622505352202 :0.014582248220366044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -deed:0.26524402694524746 amount:0.2081995842440134 tract:0.18157651848419434 number:0.1731725460154946 :0.1718073243110503 -hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 -on:0.3065516624561744 in:0.24379741988062284 to:0.22162222935655498 from:0.12013404365903674 :0.10789464464761102 -him:0.4253450914285171 them:0.18564183605766446 us:0.14446435858878848 me:0.1437038324937616 :0.10084488143126825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4479001209394811 per-:0.18505507422837467 his:0.14420007941587162 their:0.13484305246815412 :0.08800167294811855 -been:0.6208088156691433 to:0.17941358218696377 lost:0.07361376720553633 in:0.0646655674689739 :0.06149826746938276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7940107014386386 said:0.08063890760491586 County:0.06622437279734911 Police:0.03552234413786754 :0.023603674021228815 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5744167983940197 th.:0.19260774292266222 a:0.11943695383690418 the-:0.06415781434564026 :0.04938069050077377 -the:0.2871323840790679 that:0.27974108171801026 ago:0.1582377284751515 others:0.1393327179027138 :0.13555608782505651 -time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 -fund:0.8065281513135238 condition,:0.06620885648197491 down:0.058536370268660154 down,:0.04093797040501888 :0.02778865153082208 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -if:0.5643213806620258 when:0.1328546325888365 If:0.11799869935404066 time:0.10539766926895913 :0.07942761812613806 -in:0.28218306737541077 to:0.23907725642475344 on:0.17013324058886484 for:0.15507896630579363 :0.15352746930517736 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.5295331748571389 two:0.1801815317048414 three:0.11763314324439253 one:0.10610624163066416 :0.06654590856296297 -in:0.49270757665522347 the:0.13161886116890334 thus:0.13095516393606424 of:0.12710344195998122 :0.1176149562798277 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3823634481619528 and:0.19862969780786105 in:0.18777543785762965 by:0.11692934139407962 :0.1143020747784768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 -know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 -is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 -of:0.38621636873717846 from:0.3332631785992378 the:0.10503637793058436 down:0.09620319021249027 :0.07928088452050905 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -quired:0.5384097234074416 ceived:0.19089128111507495 port:0.134919929889006 ports:0.07121183883712953 :0.06456722675134773 -point:0.3777182727974111 man:0.18829101347037677 attack:0.1809593259859826 place:0.15279508837726724 :0.10023629936896224 -in:0.3055596787145823 and:0.2909721838437867 as:0.17969501044149583 that:0.11345619552831972 :0.11031693147181557 -and:0.3029900193576326 it:0.20653331038378417 that:0.18632205594527346 as:0.16422269935278622 :0.13993191496052343 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6712506073664865 this:0.14941973661345992 said:0.10965088367035296 tho:0.04366047771971513 :0.026018294629985575 -that:0.6375399496403442 him:0.18155040117343862 me:0.08178415943825879 how:0.05896158191660374 :0.04016390783135465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.8860031045439709 that:0.04059585239489983 to:0.029918438748119208 as:0.026510643456491043 :0.016971960856519145 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.23263085152943788 do:0.2307685898095691 get:0.2264895172389247 sleep:0.173970024094039 :0.13614101732802952 -the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -funeral:0.5663626043244238 wedding:0.13715267302555573 first:0.12846598235915177 latter:0.0923270901432453 :0.0756916501476235 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -long:0.9028025038946822 only:0.05737125929757385 that:0.02245958526896197 so,:0.009004787828966866 :0.008361863709815289 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.47249293876086057 feet:0.21800465754420692 hundred:0.18414621706003997 of:0.07224872493747157 :0.05310746169742099 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -never:0.24362086934101598 been:0.22118536260859156 ever:0.21425824384205233 had:0.19305624530129092 :0.1278792789070492 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5039170956514777 the:0.2165163750426205 an:0.16966200520809538 and:0.09092226172479063 :0.018982262373015802 -that:0.2835001458075167 that,:0.2626172574125911 in:0.20376066420052463 himself:0.13796292189985654 :0.11215901067951099 -think:0.4146581956040134 and:0.16298115795908766 thought:0.15576163118193995 believe:0.14227260945824954 :0.1243264057967095 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.35879119967193096 the:0.2465414906475815 an:0.23340638637574912 any:0.09297822156442041 :0.06828270174031816 -a:0.5670579437501018 the:0.34927485466861535 least:0.03282285127138052 once:0.027870196800602553 :0.022974153509299804 -this:0.5273046997499307 an:0.22720901733651133 the:0.15306040573651675 any:0.05346641975537177 :0.038959457421669445 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -almost:0.39740537590295355 not:0.23669877736415781 taken:0.16594682755978796 arrested:0.11378707288908653 :0.08616194628401427 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.3335265811209809 of:0.25998733259890616 and:0.17165959182299687 for:0.1676944474268749 :0.06713204703024116 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.44801772865131767 the:0.23842712644788258 to:0.20212894393957762 in:0.08263175696878555 :0.028794443992436646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4270392601011483 county:0.29848148523990076 It:0.10556116147825817 there:0.08760018261004564 :0.0813179105706473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.2698315495873536 by:0.2431251706193758 to:0.2135208714500239 all:0.1681705380317102 :0.10535187031153648 -did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 -to:0.5143396006711137 and:0.22623957290338736 will:0.11983153037496685 which:0.078678646737873 :0.06091064931265904 -the:0.6135637836838991 an:0.2519620072902758 his:0.07160969719446704 their:0.03244649351123993 :0.030418018320118315 -and:0.23476313793717246 he:0.2118634447803961 it:0.20492654404874647 which:0.184616913979644 :0.16382995925404098 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.29569425473897115 make:0.19378736189873516 in:0.19355625644555668 have:0.17579223979420877 :0.1411698871225283 -American:0.42902152397438315 whole:0.27493048640317086 young:0.10850298016370712 colored:0.10693133720200369 :0.0806136722567352 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years.:0.369752770029808 days.:0.21272233578266522 months.:0.19351462862437457 hours.:0.17538588224030857 :0.04862438332284368 -been:0.9482552207194972 had:0.02308169708221881 recently:0.01637748739466198 always:0.006216705415440767 :0.006068889388181197 -a:0.5293446527569017 much:0.18106855357162416 still:0.10777180412312798 the:0.1070127117060525 :0.07480227784229382 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -can:0.2627609760448367 should:0.2532714665706594 will:0.21129907646175683 must:0.13817856439427484 :0.13448991652847228 -time:0.3303960289524154 right:0.18586476112897235 names:0.18521163808165092 country,:0.15450226977379966 :0.14402530206316172 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7059375924512171 and:0.09820574565271606 to:0.08113118997622681 in:0.07867913725156268 :0.036046334668277176 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8383415392822263 a:0.08755423264971893 his:0.030390276423768035 tho:0.02470787391250059 :0.01900607773178615 -parcel:0.5909479099506468 any:0.1791916136708397 some:0.08873858015682487 part:0.07361809121316343 :0.0675038050085251 -have:0.336615318200091 be:0.28956817248537786 been:0.2069959376555431 only:0.09936353624279952 :0.06745703541618861 -people:0.26817505621003856 man:0.22010859150067927 bill:0.19086816596948514 farmer:0.16085203719390448 :0.15999614912589266 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -six:0.21336674250931592 three:0.21233605686139043 two:0.19925633682069332 ten:0.19271425768467582 :0.1823266061239246 -of:0.48866380851156166 the:0.18872911386189145 and:0.14182890375905055 to:0.1002347525352725 :0.08054342133222384 -price.:0.6167373487636701 prices.:0.1636655184748407 one.:0.09988704901124842 land.:0.06934612689243351 :0.05036395685780725 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hand:0.2985044084515125 earth:0.19024965631422006 it,:0.18691055166528167 board:0.17297951477659307 :0.15135586879239268 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -ahead:0.33835467833836586 out:0.2880202303327906 more:0.1579948511440568 as:0.11670181406512763 :0.09892842611965898 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -point:0.26648883359667247 city,:0.23708542319481446 country:0.23364999506713482 place:0.1638222310431068 :0.0989535170982713 -light:0.7467713686539794 story:0.1420812879994317 |:0.04526699889031518 a:0.03752050171169563 :0.028359842744578184 -of:0.5032127877254985 in:0.17179796208172718 is:0.15586722097466943 was:0.09186788322662505 :0.07725414599148 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -al:0.5934453848210441 ;:0.16556488571788344 knife:0.08487506274786842 up:0.07896766717766077 :0.0771469995355433 -the:0.7505722013462824 our:0.08344674760633163 an:0.0827167301786004 his:0.0464481362907492 :0.036816184578036405 -a:0.4846253430431945 the:0.4047661151287998 this:0.0636921920881886 some:0.03009175276113221 :0.01682459697868485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -amounting:0.42259113046620567 and:0.22177048912436753 interest:0.1433430543051196 according:0.11145845616299536 :0.10083686994131194 -that:0.49371878689425874 then:0.15104330129084353 not:0.12222771029592831 when:0.11805700633922903 :0.11495319517974043 -there:0.27216887218725855 one:0.25739929739998424 that:0.19347555279594214 it:0.16363777204231172 :0.11331850557450342 -did:0.3016805091749588 is:0.18852711344428932 does:0.1824750845405936 will:0.1687847375987981 :0.15853255524136012 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7954234806946855 the:0.10855026482903457 to:0.044972054742653894 no:0.027581863813227848 :0.023472335920398116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.7950123154747399 this:0.10796235737670391 a:0.04921234151180027 tho:0.03426050605033126 :0.013552479586424459 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4021896564949225 in:0.24903173324619854 from:0.12022117429045637 with:0.11957822611942105 :0.10897920984900145 -The:0.5038281317060951 A:0.31700219134691154 the:0.08232070345085907 This:0.052968316269288065 :0.0438806572268462 -as:0.5181541267952301 about:0.16596285967396052 but:0.1268924749193631 not:0.09679584956289174 :0.09219468904855448 -said:0.5569880431373563 plan:0.15789853574547308 first:0.1314446090680694 bill:0.08724696890029902 :0.06642184314880217 -he:0.2998373568041859 I:0.2864755839454262 we:0.19317879442002525 they:0.12612651061231658 :0.09438175421804593 -Board:0.4680381675979116 Bank:0.24779040464939012 Department:0.15251316805339896 Treasurer:0.07059912230830437 :0.06105913739099506 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.4749255581209797 respective:0.18462005586418076 officers,:0.13700768796715726 sole:0.12216666928139364 :0.08128002876628852 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wit::0.3021939301188946 them.:0.20649221786076075 him.:0.20124812714149273 it.:0.17824690288787012 :0.11181882199098189 -him:0.6330632469385085 me:0.1316127628794896 connection:0.09382330546436467 and:0.08056671205971627 :0.06093397265792108 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -all:0.42766840240462006 that:0.2993734721527005 which:0.10844009100744052 least:0.0867683768552149 :0.07774965758002408 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him.:0.2920327446424165 them.:0.2568813511605844 it.:0.1816238648153005 death.:0.14876977438805994 :0.12069226499363858 -the:0.4208232705102259 The:0.24879434055849947 of:0.1423494239999734 to:0.10313188169675928 :0.08490108323454192 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -when:0.3726043616845843 and:0.27629298058019675 if:0.14346799179974046 that:0.1107390978727922 :0.09689556806268626 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.45358146916761205 of:0.2737290333454998 that:0.09795589259442473 to:0.09616227183593613 :0.07857133305652741 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -party,:0.41872537971197643 life,:0.1907104318414429 power,:0.1585479068717099 rights,:0.11640434770826809 :0.11561193386660257 -the:0.8406414281589848 our:0.07059120373105515 tho:0.036097989074009365 his:0.0319063158289447 :0.020763063207005907 -side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 -States:0.5656821172806845 States,:0.4207305784952803 states:0.0059476988349809225 State,:0.00393338830393115 :0.003706217085123002 -which:0.36576050701153173 that:0.25403497452450413 whom:0.1516626821039713 what:0.14776942442240276 :0.08077241193759013 -those:0.6880897775035371 one:0.14434670463908553 all:0.10117063278283239 men:0.035686691440246596 :0.03070619363429823 -it:0.5050446473979147 room:0.2871166303372664 and:0.0702542317537016 rooms:0.06881698016257765 :0.06876751034853952 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -oath:0.23649231608207202 is:0.23074147321165284 came:0.1958876107550201 as:0.16926911167981956 :0.1676094882714355 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -himself:0.263156118197747 is:0.20743901029257983 a:0.20171394002881085 that:0.1782470131419835 :0.14944391833887882 -final:0.2665725248854949 general:0.23371627469838197 same:0.21369152627771545 slightest:0.19016448402796346 :0.09585519011044416 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.8624772951069328 or:0.10118938347705442 about:0.018423641277498334 of:0.010304546183026746 :0.007605133955487865 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5662944311983553 for:0.1753986920143275 on:0.1031802819188409 in:0.08650607000800208 :0.06862052486047412 -a:0.43315815947392583 no:0.21854028579198684 the:0.14396222082177387 matters:0.10679706165163444 :0.09754227226067902 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -year:0.3245310708692772 time:0.22935634002162678 and:0.1562031749708597 one:0.15031421581157992 :0.13959519832665643 -be:0.5511300883739231 the:0.17289818356257655 an:0.11583859092877546 have:0.09197191320176408 :0.06816122393296081 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6830206975131039 in:0.16054220841473082 on:0.06507852948749888 for:0.06408337003105762 :0.027275194553608745 -three:0.407604015444524 of:0.24978477831975116 four:0.1735507182336434 six:0.0905512064074241 :0.07850928159465716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9300605817159296 or:0.029548228704637292 and:0.026907010407589128 along:0.007138432471156976 :0.006345746700686891 -court:0.8006933271546609 judges:0.07838629694180602 command:0.05029401065673476 I:0.037982496159494415 :0.032643869087303955 -No:0.3776583811853884 Every:0.18475396615713308 If:0.1560227955474712 The:0.1425853072764999 :0.13897954983350747 -no:0.4344813761272575 only:0.17421063953015073 the:0.16637913606061142 not:0.13884540078115937 :0.08608344750082085 -in:0.26477055201283245 that:0.2523922178804962 to:0.19029469857840736 for:0.14930715469353087 :0.1432353768347331 -New:0.9842292922090279 Now:0.007493784472734421 the:0.007138995471597404 do,:0.0005966550275451169 :0.0005412728190954367 -the:0.5081918068127601 them:0.13825238830425468 him:0.13378144738980585 us:0.11540745873593115 :0.10436689875724817 -and:0.4447847598148451 passed:0.245827579564472 all:0.1335060751292626 for:0.08997729444498506 :0.08590429104643525 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -line:0.7464822241064181 out:0.08618038786144448 ahead:0.07649220622836943 lino:0.049632631998015944 :0.04121254980575203 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3391415357956831 been:0.20858818981602237 lost:0.17203334409706433 made:0.15949765638490168 :0.12073927390632859 -of:0.29949837670665436 mentioned:0.2549041833267049 and:0.21215858402107093 or:0.12653988204161862 :0.10689897390395121 -his:0.3486457300655126 their:0.2626512406747352 our:0.21967212302525618 its:0.09379913913052267 :0.07523176710397358 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.37963752471083995 which:0.277996593669485 that:0.19837650456215203 said:0.07692210289720748 :0.06706727416031558 -do:0.2768551363585908 does:0.2107925518008519 is:0.2050799503049804 can:0.16628661035446807 :0.1409857511811087 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3810199270599464 mixed:0.18803503349458636 himself:0.1658749836379207 met:0.14679643261525005 :0.11827362319229649 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.3161685910131306 had:0.24891151040504572 think:0.16499033169529323 makes:0.13527479002957102 :0.13465477685695953 -appear:0.4304508688605738 described:0.2543701466776704 discussed:0.11355682922950881 posted:0.11105134777327756 :0.09057080745896952 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -failed:0.43262936470522173 been:0.18338895956904946 refused:0.1361670187051644 come:0.12675076893570522 :0.12106388808485913 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -All:0.8691713247937385 On:0.04299826393125529 From:0.04291315775579584 on:0.02256299196814895 :0.022354261551061502 -country:0.22173380547733262 way:0.202585592024491 lives:0.19898128809658852 friends:0.19572233027978644 :0.18097698412180155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -boy.:0.3279688856489227 and:0.2833243810977152 of:0.13426410926558974 said:0.133135250820155 :0.12130737316761735 -mortgage:0.33046250081340933 order:0.19487989751732326 bonds:0.18898740444644924 proposed:0.1530131467973063 :0.13265705042551187 -hich:0.5812098344144706 ho:0.21632942528364105 ill:0.12153982904761358 re:0.045372005029738156 :0.03554890622453653 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.7226170776401128 days:0.2206206135431524 months:0.03758309395469057 weeks:0.015519510559373693 :0.003659704302670451 -is:0.3781026087531648 said:0.2070040280821857 was:0.1598640500210593 provides:0.13849319768841378 :0.11653611545517642 -which:0.4110764496822824 you:0.2574020939146862 whom:0.1394453370984725 them:0.1078411194824198 :0.08423499982213906 -resulting:0.48052835280960327 come:0.1683848228526329 comes:0.13853513908624712 resulted:0.10976554770739766 :0.10278613754411906 -we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -necessary:0.6178175947320522 sufficient:0.1463847404643463 guilty:0.10998548569856843 it:0.06934104525957423 :0.056471133845458724 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.3910447285615733 8,:0.25630303161384227 3,:0.18217708628249135 12,:0.09818658867048137 :0.07228856487161159 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.3126307222279785 world:0.20939825972142323 State:0.18931481010607562 people:0.15723059030680364 :0.13142561763771898 -to:0.5876576139304962 I:0.1536675135504363 not:0.0929050580050531 would:0.08971373345510304 :0.07605608105891129 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5899966450431731 the:0.19867610080148176 as:0.08259158162342564 to:0.0815692429642446 :0.04716642956767494 -which:0.39228860740784244 whom:0.28557672467718 that:0.1848661180296025 what:0.08475711509539581 :0.052511434789979244 -coast:0.3120361204409019 City,:0.2038203027181137 City:0.19635429268131221 States,:0.18427912144103636 :0.10351016271863593 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -religion:0.3417554588066959 church:0.23902844029631642 association:0.22181486620116714 church,:0.1022511642486875 :0.09515007044713295 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -I:0.25130350431802884 to:0.24339365072089283 we:0.24196357618180467 they:0.18953815584445705 :0.07380111293481656 -that:0.26242037194847034 in:0.24310840161627748 to:0.17971106492130448 for:0.1745622096095853 :0.14019795190436246 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -less,:0.43369946106769247 refuse:0.21007124497171945 otherwise,:0.14740984895191137 ought:0.10770233010147484 :0.10111711490720192 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6732561897139719 and:0.13899437678218537 cannot:0.0691687096698719 or:0.06107152560807422 :0.05750919822589663 -of:0.6093900094644951 in:0.12177040579469686 on:0.10129135265746396 and:0.09223650057084842 :0.07531173151249569 -time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3221867675807893 .:0.24922051440493345 to:0.1820378028219321 of:0.15532077263977356 :0.09123414255257153 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7528691274905589 a:0.14386031397332255 this:0.04402327276378791 tho:0.0388976497998296 :0.02034963597250121 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4075744763932247 and:0.2716344742097519 was:0.13487550020810565 without:0.11852250453101396 :0.06739304465790391 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.4976440284587706 could:0.17615918063741728 does:0.13327057496507214 do:0.09822603757117576 :0.09470017836756428 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.5249328107973557 It:0.1591650820847962 case:0.12068885688727296 which:0.11816452761989261 :0.07704872261068255 -together.:0.34439129684342984 as:0.26571271124281615 that:0.14073618744764818 followed:0.13521204193537634 :0.11394776253072972 -tent:0.35470851346777416 press:0.284954858730312 plain:0.14049829483256382 pressed:0.11568934866976831 :0.10414898429958176 -ported:0.7190829720570041 marks:0.19084372260522994 tain:0.05821497171702425 j:0.018154293329218706 :0.013704040291522952 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 -he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 -that:0.3121305718328553 which:0.30161177554124746 all:0.2789354906283677 among:0.0728966978356385 :0.03442546416189103 -family:0.4211502050423396 party:0.1756524779126431 house:0.14829679266477835 families:0.13296060825416584 :0.12193991612607318 -the:0.569723662033542 his:0.17571880171874568 her:0.09783596182565325 my:0.08413283929858621 :0.07258873512347279 -West:0.3051632380180549 the:0.3049205800999163 do:0.18505288979291545 East:0.14062779004313625 :0.06423550204597711 -to:0.4898336095051301 the:0.27295918445793926 an:0.09000311677461739 and:0.08793035333776272 :0.059273735924550264 -He:0.22792289152286666 have:0.21353579693297775 be:0.21247044980707014 and:0.17416633782050672 :0.17190452391657876 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.30108265378603943 well:0.2566918497019301 much:0.15878947967410206 provided:0.14388689542299365 :0.13954912141493467 -and:0.5189817492700255 died:0.16650716600042656 will:0.16343153338587024 but:0.12358385885494028 :0.027495692488737473 -fail:0.375745178587817 more:0.1713239034870248 know,:0.16672633327624828 may:0.15049306460472714 :0.13571152004418283 -to:0.4160493289499364 he:0.2474907922272795 she:0.1439767502069939 I:0.10925167775172788 :0.08323145086406238 -they:0.2736658951626495 it:0.19972420367023527 us:0.18040692961489505 that:0.17516569343469077 :0.1710372781175295 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.961934885340569 ot:0.014745413787457307 ol:0.010655242858316255 to:0.009739392737447143 :0.0029250652762102653 -to:0.44973473364838346 will:0.27412433048135787 then:0.10912578523967466 not:0.08530357564406774 :0.08171157498651636 -the:0.6669018886646426 this:0.17449491925387087 any:0.05782775794968469 a:0.052349154777121445 :0.04842627935468033 -It:0.38805580691256225 He:0.28953783043268805 There:0.13161665811966372 I:0.10902597730427577 :0.08176372723081028 -them:0.3605071166223901 the:0.3273497366189582 land:0.15565138225020955 life:0.08787882178618889 :0.06861294272225311 -it:0.37151998841059414 there:0.22787827866976573 notice:0.17803252273962977 he:0.12702708477080968 :0.09554212540920061 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.6158066813538509 is:0.16527878144382036 who:0.08385024490083201 were:0.07533940387429565 :0.059724888427201056 -and:0.38998984850270135 or:0.2884546705887087 them:0.14297502832593678 is:0.1230161543477172 :0.05556429823493592 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cured:0.26963518142834114 surrounded:0.25502722756464125 destroyed:0.2269929937793801 covered:0.1905402415047081 :0.0578043557229294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.4075165114382776 he:0.27017278479926493 it:0.1297559661167995 that:0.09644895866901297 :0.09610577897664485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.299397104817262 w:0.2878077150395598 his:0.2056053485039159 them,:0.11852289911135888 :0.08866693252790328 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5342466821221686 a:0.22912162009805806 his:0.12029815081205872 their:0.07895935823267208 :0.03737418873504232 -or:0.44039240681541225 of:0.19677288194945863 in:0.14928718858832352 for:0.12379530286996263 :0.08975221977684289 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9408614218519559 the:0.020885380324080372 ot:0.020515291232416268 ol:0.009944044863108598 :0.0077938617284388865 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3900740453975317 but:0.1983077291864673 as:0.16460718203786112 if:0.13335622463149804 :0.11365481874664193 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6752269838374613 Wall:0.1466746475126802 Washington:0.07004853560326751 tho:0.06581207393471805 :0.042237759111873004 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ball:0.26632902483665283 Democratic:0.2085566743845302 commercial:0.19259776035503323 local:0.1919466608103939 :0.1405698796133899 -10:0.26783310734855165 length:0.23815888751923533 the:0.1748217920582051 11:0.17049747113697283 :0.14868874193703505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -taken:0.3481726340799203 received:0.21937074286966665 come:0.2112200367436742 heard:0.11449869115664021 :0.10673789515009866 -car-:0.3848785131957944 car:0.2288047650726832 mar-:0.17580311472210772 coun-:0.1493563528541355 :0.06115725415527914 -cents:0.3577591838684417 12:0.1890670965410419 11:0.17138243660580396 00:0.16639669497123816 :0.11539458801347416 -it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3335080917062807 in:0.1905136758963337 and:0.1873846750677235 ith:0.1465589021506758 :0.14203465517898625 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.3952275789756636 sale:0.234917258757635 North:0.1344814933402235 said:0.12734481414848461 :0.10802885477799344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8073684228367227 July:0.05617560512368338 a:0.053811223007039596 his:0.04171680208146393 :0.040927946951090435 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -back:0.24460591326307612 duty:0.2128286772293951 mind:0.18844905402037646 way:0.18441381960941589 :0.16970253587773637 -a:0.617132789563955 been:0.20531607538411714 no:0.09379820328092255 made:0.05337495955987378 :0.030377972211131653 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.40296120114766176 by:0.30289451889230634 in:0.12785852975775713 for:0.09787042361386232 :0.06841532658841251 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.7342074830368325 she:0.11964939377898252 it:0.0631918576722196 well:0.04560445641726716 :0.03734680909469826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.2697580599543355 at:0.2470692708085564 in:0.18157453324212658 to:0.15707163357849935 :0.14452650241648224 -several:0.29541843441978766 some-:0.26261098025399293 three:0.22665254253632755 many:0.13165321016234022 :0.08366483262755166 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -party:0.3890782550200727 situation:0.18885494282182833 life:0.18845562284778505 and:0.1424247778141514 :0.09118640149616246 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8649202505273011 the:0.05737925805049072 and:0.055491693300906135 on:0.012833545379079233 :0.009375252742222739 -ports:0.6659828986200805 pair:0.08750014770360513 posed:0.08697165963277259 press:0.0832713710802556 :0.07627392296328604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8566717770407676 this:0.05933272593779106 their:0.031000017426963702 a:0.027962185864336495 :0.02503329373014114 -elec-:0.3526868855395944 ac-:0.2183430201290539 sec-:0.20961088768773875 ac­:0.11728118020249254 :0.10207802644112049 -that:0.26259155708408194 as:0.21712011861303032 if:0.21069928958220768 when:0.1594912036490514 :0.15009783107162863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5081102190626005 but:0.181257928435044 for:0.12998908080637844 in:0.10869378003054997 :0.07194899166542712 -now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.43321598930541605 official:0.16324655803534488 military:0.1515864385991838 best:0.13623783258947145 :0.11571318147058383 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7887463672113436 an:0.12423371874876687 tho:0.032649580998070936 tbe:0.029206892485439524 :0.025163440556379167 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.5649094439772776 that:0.36949558609514 about:0.026830833554362755 for:0.0259756176004111 :0.012788518772808436 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.6065212480499358 that:0.12046633527892296 know:0.09313911956430597 be:0.09255428273564698 :0.08731901437118833 -one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 -place:0.34833724788697323 spot:0.20162386496180532 point:0.18414383965253847 country:0.15714008192469367 :0.10875496557398913 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.33557148489604294 money.:0.2626670072285147 so.:0.1982657767836895 or:0.1081464873063763 :0.09534924378537654 -impression:0.31379859365182555 report:0.2703162713440056 action:0.18931588012759912 effect:0.143201462389224 :0.0833677924873459 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8626108318573602 to:0.04303553158439236 in:0.042264508671905135 ot:0.027913834335054035 :0.0241752935512882 -not:0.555759747584741 necessarily:0.27433289674147504 soon:0.11252912795453106 also:0.0314289529246645 :0.025949274794588507 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.8649472274259874 that:0.05564637591062505 and:0.03373782000222543 known:0.02809466916322364 :0.017573907497938454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.33172757094207705 for:0.21243943672781815 and:0.19983442616386426 have:0.140152283091611 :0.11584628307462952 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.824106878623665 City:0.058997082984948435 tho:0.04951262953594191 said:0.042369672158056336 :0.025013736697388173 -and:0.4535335587592947 id:0.17800117563285883 and,:0.16517151309770944 that:0.10562171776822449 :0.09767203474191258 -to:0.4203348917929265 been:0.3371599399720088 in:0.10272864670502378 all:0.08265988272952915 :0.05711663880051194 -ballot:0.5589918132029624 first:0.2790454271348378 jury:0.06980402719028223 second:0.05300294086059829 :0.039155791611319456 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3742523213511161 will:0.18342093045754362 the:0.14937318126322152 women:0.14725688326695516 :0.14569668366116378 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -give:0.28443005174860586 make:0.2632146722725124 keep:0.24123312628563703 take:0.10844734650378057 :0.10267480318946419 -the:0.2643801761738987 any:0.2640870215098413 an:0.17675602665460236 much:0.1679868311270197 :0.12678994453463804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -free:0.21434111159531763 road:0.20945354400749785 water:0.2069683378284568 people:0.18620643795080932 :0.1830305686179184 -come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 -of:0.3518658387285747 in:0.22923873586303162 to:0.15954503433920075 for:0.1314178496602952 :0.12793254140889776 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.378138563345901 events:0.22753226160514017 conditions:0.1620211910302677 life:0.15331923299432454 :0.07898875102436644 -an:0.358119451662206 not:0.22179413114826496 very:0.19408868256109454 so:0.12804189390528423 :0.09795584072315039 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6445330548955509 under:0.11785474920680432 favorable:0.08262638401113839 as:0.07835521872060887 :0.07663059316589767 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.2973082230530125 to:0.288505680135003 for:0.23616873054102766 on:0.10531387682169124 :0.07270348944926541 -in:0.47394533685622225 be:0.1674373835545069 with:0.13897620253699822 have:0.12392586798689575 :0.09571520906537694 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -l:0.24329574116821462 look:0.23546017908632744 extra:0.2213355254928758 and:0.15119840770474993 :0.1487101465478324 -connected:0.31548648332670953 made:0.21515624107374953 charged:0.1747045950181949 done:0.1515130845731932 :0.14313959600815274 -and:0.40672989582250335 when:0.252689457793247 during:0.13651560285795158 but:0.10493804767242393 :0.09912699585387408 -be:0.34309731578759756 pay:0.18221955644451418 not:0.17888169445035892 offer:0.15436694146883165 :0.14143449184869777 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -terms:0.3851799253769217 arrangements:0.2264207219922874 trade:0.14971561409027626 conditions:0.12189906569217497 :0.11678467284833981 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same,:0.24988887985450783 country,:0.22707589768013137 world,:0.1913512823844303 case,:0.1709796392790603 :0.16070430080187018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7762139835088805 a:0.08973553811281705 this:0.08717574688350255 tho:0.024536292902133692 :0.022338438592666293 -it:0.4088608041534663 which:0.16078872634919023 but:0.15464436665478332 we:0.14369465984231142 :0.1320114430002487 -notified:0.415520264087964 ordered:0.2562873947286048 fact:0.12743262966638033 stated:0.1270407925849673 :0.07371891893208364 -man:0.34459987963002175 part:0.17504112987565124 day:0.16740302596242193 thing:0.1571605099422874 :0.15579545458961766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -house:0.343449136809934 houses:0.2436594070356911 house,:0.23850355699883932 was:0.09096135576656707 :0.08342654338896845 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8590143197869649 Attorney:0.0480280884756258 Major:0.03805896349827713 tho:0.03625092809125631 :0.018647700147875704 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.36559322940636546 be:0.326021078245809 b:0.15832667231232014 h:0.08697340906542067 :0.06308561097008474 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -and:0.48759343908416775 cured:0.20550223593710223 done:0.1245863096692185 removed:0.09413629807769996 :0.08818171723181156 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.38716241933753953 in:0.22166851759469647 to:0.18667456971161772 and:0.10228032785807002 :0.10221416549807623 -the:0.4784286463089214 silver:0.22154547972602173 a:0.1826772835226724 of:0.06001149297364333 :0.05733709746874116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.29120486923233635 with:0.26559301182560363 for:0.2068509025201751 upon:0.12058643982987509 :0.11576477659201001 -to:0.46678226469322387 that:0.23937477472396507 by:0.1061296023524854 upon:0.1048643403031399 :0.08284901792718566 -the:0.44286723504931713 this:0.2462892246030076 an:0.21761881792026774 any:0.051549265263790604 :0.04167545716361692 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.84358281817863 in:0.05660409512309634 over:0.04755798497854929 by:0.026466290931761324 :0.025788810787962965 -of:0.8254661108449765 in:0.10953487250736446 and:0.030938169498543208 to:0.0185002835934326 :0.015560563555683379 -and:0.3499934266603951 I:0.31007299229635815 system:0.2583471384043092 had:0.05292402444945741 :0.028662418189480055 -and:0.42928583118817815 however,:0.2016922211824705 but:0.1730381980579538 as:0.1028515913745036 :0.0931321581968938 -one:0.3847203537933439 day:0.2722940194206343 date:0.1514943363126427 all:0.09631390718136446 :0.09517738329201458 -the:0.8683315824512863 this:0.058390034927911436 tho:0.04334793406883611 civilized:0.015042926264653807 :0.014887522287312398 -of:0.792238500615347 says:0.06265911500293803 and:0.05730238607018114 in:0.05060963780554815 :0.03719036050598585 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -himself:0.3358441953624262 out:0.20959065974669333 that:0.18541225279797846 themselves:0.1472324174050903 :0.12192047468781184 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.8233962045776398 a:0.09181235696371778 already:0.034362256722393486 re-:0.027288932220115775 :0.02314024951613293 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3165150094923971 for:0.30078764874736413 his:0.23974002016304888 her:0.0877304246809044 :0.055226896916285476 -will:0.3780674845500748 may:0.19812453433654917 would:0.19284017783633617 can:0.14709708778448205 :0.0838707154925578 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7615133032444369 will:0.09935035215790367 and:0.05812541777756779 would:0.044732620476209524 :0.03627830634388211 -he:0.528762927716568 they:0.19171831984925033 she:0.13356016969197412 I:0.09053910399403461 :0.055419478748173025 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8253292763519164 on:0.05654104471206069 tho:0.05274780462513872 to:0.04012035701882205 :0.025261517292062094 -he:0.342177979501088 I:0.2715040339627683 and:0.19367800441240499 she:0.11783874678361977 :0.07480123534011893 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4052434305890119 in:0.32480562939228097 and:0.1595748259969724 to:0.05724667797165734 :0.053129436050077514 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -of:0.8744206255056627 and:0.051758410750967425 ot:0.03332618191039316 by:0.0277606957403702 :0.012734086092606503 -and:0.6480082348584808 in:0.1296068804257248 so:0.09537674602186033 on:0.06389781286231071 :0.06311032583162325 -is:0.3652608125572108 but:0.23924906655321565 are:0.16288666462096227 and:0.14433238805900922 :0.08827106820960227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5346301264555721 a:0.22710910842892978 this:0.12685928449149017 any:0.07017263448978081 :0.04122884613422715 -in:0.3679623602891249 than:0.16895391201187637 on:0.15577024607864112 is:0.15564605917478153 :0.15166742244557607 -all:0.3665416815310596 that:0.23135779825641822 which:0.17283219759864385 and:0.1495899226760839 :0.07967839993779427 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -that:0.3308774394816098 of:0.2995306170723095 if:0.16967344518417762 and:0.11448727264194257 :0.08543122561996057 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.46241117626042477 were:0.18830807074582176 are:0.17029313647051833 fed:0.0969817696645891 :0.08200584685864579 -not:0.8436261695573332 you:0.09733455839717708 we:0.027343344877790568 I:0.020851496525844344 :0.010844430641854766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.38560574281562354 a:0.18925577924867049 two:0.17152374396025896 five:0.13782590989113203 :0.11578882408431486 -to:0.36935128545564994 in:0.25129252407937036 that:0.15163348888213585 of:0.1375615453414027 :0.09016115624144116 -to:0.9104084479405277 will:0.06329405126699707 of:0.01646328749479936 which:0.005335961757249559 :0.0044982515404261595 -now:0.28734423821060046 not:0.23095874518787873 situated:0.17547687204843804 recorded:0.1709858307341018 :0.13523431381898102 -re-:0.29451308203860443 official:0.24702584364052269 own:0.23589251635211067 other:0.12897997799143016 :0.09358857997733205 -been:0.6161541220589666 made:0.11108168541517788 seen:0.09628501419537151 done:0.08829569456407718 :0.08818348376640678 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3118835295149181 up:0.19000995115690458 that:0.1899358399072858 out:0.17650364484452996 :0.13166703457636159 -follows::0.9546587210244443 possible.:0.02348417522598228 well.:0.008722942524095997 to:0.006606189314124446 :0.006527971911353093 -in:0.358297768768206 to:0.23328645127779382 on:0.1852699335000188 at:0.16396632424409235 :0.059179522209889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7827384434863461 the:0.12484517909304868 is:0.040086811619072196 it:0.027477020136203834 :0.024852545665329354 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him.:0.25323360001717227 it.:0.23464271375427673 them.:0.21055472823234647 do.:0.16587683642092552 :0.135692121575279 -to:0.3286500150658405 at:0.3203054141280292 with:0.12186415728407844 for:0.11514418860901561 :0.11403622491303615 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3131070564266294 when:0.25513967826923467 if:0.21281199213532687 as:0.14520591507966987 :0.07373535808913911 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6883388725174645 but:0.1608623599977304 for:0.06033458313258616 with:0.04972006480526614 :0.040744119546952826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8235012667756029 a:0.07362408554247026 tho:0.05059014338488169 this:0.03164904451099731 :0.020635459786047947 -sides:0.30908349091212883 are:0.23480547156528636 were:0.19767625250185175 parties:0.14494905439546868 :0.11348573062526444 -at:0.32293488287802324 as:0.19566518945806066 is:0.17898945883640657 for:0.17565270845050274 :0.12675776037700692 -the:0.5270479944494159 and:0.1667928132081656 so:0.12623385118391803 to:0.09831962495728573 :0.08160571620121479 -said:0.40320126333542466 time:0.3595409908140984 day:0.0839955797679585 best:0.07757820046903845 :0.07568396561348001 -a:0.40606931057762613 the:0.2692017055975925 elected:0.146816526674705 appointed:0.09705711163235838 :0.08085534551771804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.24732434061163902 ing:0.2305806163701238 of:0.2189659622143478 to:0.16288994974408091 :0.14023913105980837 -well:0.35208966528424074 known:0.25061997726232177 just:0.13655261849561445 regarded:0.13191230777931956 :0.1288254311785033 -of:0.4591887344371382 to:0.41523305415588546 in:0.0467298644873198 for:0.042566694171481595 :0.0362816527481751 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4787802191351354 to:0.23067398118522803 for:0.10398877312718377 in:0.10029221149788319 :0.0862648150545696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 -was:0.29952639831799543 is:0.26507756679965644 had:0.19155552615438912 has:0.14786097408798288 :0.09597953463997615 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -st.:0.36575612452742823 i:0.22038024580810256 -:0.15904639502366785 e:0.15024240905858582 :0.10457482558221558 -the:0.5842748690922484 a:0.2039049032283049 this:0.13853515955782322 our:0.03828955657693296 :0.034995511544690674 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ner:0.9205722886807126 nor:0.05470242864843119 gress:0.011781041191563774 and:0.006894680700597956 :0.006049560778694582 -day.:0.5207040008007273 future.:0.18369454223350518 city.:0.13231128459854913 land.:0.10734581477308675 :0.05594435759413168 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -War:0.25481078114391087 State:0.24757734174306176 Treasury:0.24448930250672374 Navy:0.22234485719655678 :0.0307777174097469 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.2487736375228256 to:0.23917530287278957 for:0.2235610569878513 of:0.14483507585755612 :0.1436549267589774 -hundred:0.5042470432698191 years,:0.18737423217533716 years:0.12996109771195702 days:0.11168559923848645 :0.06673202760440047 -apart:0.39873345459805043 out:0.2640595218148614 up:0.23374653878243049 them:0.06682858614072143 :0.03663189866393633 -most:0.8281284144815104 very:0.06938542269176454 more:0.056957010653609495 same:0.02676398864411353 :0.018765163529002052 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.6326879487593202 was:0.17772926490126803 Is:0.13388766906361882 has:0.033711438879115575 :0.02198367839667722 -run:0.28393457136654515 talk:0.20790482944581448 and:0.20021377148765537 stock:0.15919360294853516 :0.1487532247514498 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -most:0.557400827901477 first:0.25656368976965266 very:0.08012361355144221 other:0.06137956754634973 :0.044532301231078326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -B:0.2911125912726619 .:0.2901856846908758 -:0.14818745608168252 The:0.1413480998363294 :0.1291661681184504 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -place:0.4275392330133623 office,:0.1553703481615666 home,:0.15039669057285976 room,:0.13547968501482874 :0.13121404323738256 -and:0.30393693334498584 the:0.2309883526557439 by:0.2093299742519478 it:0.1884980158895842 :0.06724672385773817 -the:0.27999952971464803 much:0.2468629310356778 an:0.20060701857620397 very:0.16926166925413882 :0.10326885141933144 -for:0.5885000117489708 of:0.18078547777635295 or:0.09689932217658201 than:0.07649820271044358 :0.05731698558765051 -had:0.4772479818219739 has:0.4324331003036783 have:0.04682590179991954 having:0.024899329468902522 :0.01859368660552565 -of:0.9567108061265609 ot:0.012651303727457295 and:0.01052889180599258 ol:0.010098073669546622 :0.010010924670442522 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.2647010538536375 them:0.21626523392537006 free:0.18428947429339326 miles:0.1759649968348486 :0.15877924109275063 -long:0.27990803274806597 the:0.23651323405456165 a:0.20525842763779548 mean:0.15055112072237906 :0.1277691848371977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -that:0.6861359503283683 upon:0.16181039920457313 to:0.08112114214751802 to,:0.036073500787957714 :0.03485900753158265 -the:0.5781443782235325 other:0.14683828818463415 such:0.11498457898062332 of:0.09063337419879924 :0.06939938041241096 -that:0.5097639559109934 the:0.17010101311369483 and:0.13469292741319583 of:0.0930872199034737 :0.09235488365864218 -in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.40628494815004546 an:0.24723219484295544 cial:0.1354160874777137 -:0.12286156933045576 :0.08820520019882966 -important:0.5440667001372262 all:0.1420163327407517 other:0.13199017526319337 delicate:0.09551681637499052 :0.08640997548383822 -them:0.3798106293529112 sale:0.2155884603662198 said:0.17885953168372043 that:0.11559044337021852 :0.11015093522693006 -people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 -his:0.42351024209619204 their:0.2711185196816988 its:0.13392631554925863 her:0.09231815654354045 :0.07912676612930993 -years,:0.5027937559465269 weeks,:0.19406721995489337 hours,:0.11212449743964491 days,:0.1067441030597662 :0.08427042359916866 -all:0.3276276130271439 which:0.2685252297805583 that:0.2425670389449229 and:0.09572453666725896 :0.06555558158011603 -to:0.3725541721248419 for:0.2777496422488867 of:0.15902002009666155 in:0.09673502505064648 :0.09394114047896339 -in:0.402218282367193 on:0.3131663493226501 upon:0.1193908882540143 at:0.08427278436224071 :0.08095169569390201 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with,:0.35397912369698453 in:0.17800127542772065 ;:0.16224606009811 ball:0.16166725203439186 :0.14410628874279294 -to:0.5642974092480816 in:0.2549581431978302 if:0.06543005183712415 though:0.05894551211192669 :0.056368883605037584 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 -from:0.7117950762845763 and:0.1927807270343644 in:0.05714230059237032 of:0.029948822506026058 :0.008333073582662946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6420356354585308 the:0.1731036816404522 that:0.09198960848916593 too:0.046967817708985574 :0.04590325670286551 -only:0.36388944494205044 be:0.2994803671572123 to:0.11976851349838633 have:0.11006068090284714 :0.10680099349950367 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.34391862270900925 secured:0.22076062828759993 done:0.1656616804599992 shown:0.1395954667090464 :0.13006360183434515 -told:0.32958080993846883 informed:0.2248485615999509 sure:0.16732803409663854 not:0.13927162483967362 :0.13897096952526813 -was:0.2385552419058073 had:0.236563613546134 made:0.19226762716103746 asked:0.1726288010116566 :0.15998471637536454 -not:0.777496161858464 be:0.09961580260369228 is:0.04839023505327938 of:0.040301223184436116 :0.034196577300128136 -on:0.4467663496383185 in:0.21468075740810819 to:0.1253794177620692 of:0.11254871453975324 :0.10062476065175077 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5689064642709667 the:0.3197213298931462 this:0.04671457736435659 his:0.03951743072746914 :0.025140197744061222 -this:0.3142625714139419 only:0.2020060673330627 giving:0.19861200122088385 the:0.17792070748473032 :0.1071986525473812 -which:0.35162475885822353 the:0.24820245061627685 whom:0.16626061275470694 that:0.13074203704247173 :0.10317014072832086 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 -of:0.7056609964583823 for:0.12496466075721863 to:0.07144894235810244 and:0.0541212961791996 :0.04380410424709719 -be:0.8774784910894295 have:0.06511212213047132 bo:0.04326696594147912 not:0.008672930808011618 :0.005469490030608428 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -world:0.2847693741127075 same:0.21268402183628637 country:0.1728648424610908 State:0.16719564263840322 :0.16248611895151216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7856280263475195 its:0.09125791605635851 Its:0.051663895434418475 total:0.04367083490855291 :0.027779327253150615 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -states:0.3094591534805767 and:0.261326944590575 mail:0.1553025723224276 wheat:0.1400383753505512 :0.13387295425586965 -sum:0.3231329965440353 payment:0.20741142341464902 day:0.19873296424285145 city:0.15602152154125767 :0.11470109425720644 -and:0.5380268613574064 or:0.13298031983463954 arising:0.1246830713614688 but:0.1148717054901018 :0.08943804195638351 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.2701491117952495 for:0.2462977931718763 to:0.22925552172214553 reason:0.15464878324266954 :0.09964879006805925 -of:0.9596393390736461 ot:0.013684839789355635 in:0.012292804048836327 ol:0.007802479821024747 :0.006580537267137221 -work.:0.39226005099193234 hand.:0.18706806600443437 doors:0.15504348963650302 door.:0.14052155408177078 :0.12510683928535937 -be:0.8785271962476984 bo:0.052209408390157544 not:0.046071222000299235 act:0.016839743135638238 :0.006352430226206709 -of:0.7956153184585292 upon:0.06355920606795583 and:0.05601405857260481 in:0.04357745767916081 :0.04123395922174953 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -had:0.4553789927263089 has:0.3319694800853524 haa:0.09802070144680175 bad:0.07045748601549892 :0.04417333972603804 -the:0.7120350124461335 an:0.15684534885547527 this:0.0588222291680634 his:0.04164771189667809 :0.030649697633649747 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.4739392168507537 that:0.2562059616196249 which:0.12320501518463044 said:0.07820061116942735 :0.06844919517556364 -hundred:0.5497181236653963 thousand:0.3177710899931458 million:0.1177484800592046 of:0.010964414826393518 :0.0037978914558597114 -is.:0.22315819019275288 as:0.22308171941907848 ?:0.2160822407714502 out.:0.18922390472374556 :0.14845394489297284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5363651295339128 a:0.32241921720517325 many:0.05464626789036334 other:0.044367834855532536 :0.04220155051501807 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5608240304327541 at:0.34065631537589236 about:0.07850668369914364 by:0.010772904227925833 :0.00924006626428399 -people.:0.4404560272619264 government.:0.35235502419092424 line.:0.09332076662599512 trade.:0.05810241206691598 :0.05576576985423839 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7717892885854392 will:0.11944487478768907 and:0.04729758076988065 shall:0.03974500989222578 :0.021723245964765294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -known:0.4447886996926174 as:0.34380612624222956 dressed:0.11318328223055864 and:0.05296811045122756 :0.045253781383366797 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -question:0.2534687913562367 bill:0.20084906941636768 report:0.19472890980175647 deceased:0.18075782634147414 :0.17019540308416495 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -the:0.4764911418037578 his:0.25703255071226294 my:0.11483557715841294 their:0.10919999286771088 :0.042440737457855496 -in:0.7301407847261288 and:0.08206729329979096 who:0.08109315692297255 to:0.05803747476529817 :0.04866129028580966 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 -is:0.5828157665026565 was:0.2191823791835575 Is:0.12173194669427344 to:0.0439638967000863 :0.0323060109194262 -of:0.47230403339109184 in:0.3660023985865416 In:0.06279048332979853 to:0.05844690986641807 :0.040456174826149945 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -the:0.38910448130260594 other:0.3338851408817198 his:0.09969602187712923 attractive:0.09759577468471684 :0.07971858125382819 -made:0.8461505244411804 heard:0.0653862803989803 there:0.03196906798761713 out:0.028440185249721552 :0.028053941922500457 -great:0.2656958492502399 good:0.22662078698297664 little:0.21595810921375386 very:0.1598612886832521 :0.13186396586977747 -to:0.9287492167644572 and:0.03588783581376279 I:0.019655594734102864 will:0.00800217181508974 :0.007705180872587395 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -had:0.38284252759768883 was:0.3584705168222837 has:0.13030014945957308 is:0.07204085282364375 :0.05634595329681056 -see:0.34026189592439443 to:0.17512352777402387 asked:0.16863816175202168 for:0.16375002890257384 :0.1522263856469863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7994401658028905 tho:0.06440702736925512 an:0.053971325788142094 his:0.04662001264751243 :0.03556146839219964 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -peo-:0.9722936143223777 the:0.014704514116253394 ap-:0.006790685807134313 pur-:0.003354341666749702 :0.0028568440874847663 -will:0.5290542530882634 can:0.22527625819225297 may:0.09418370049816846 to:0.08304331527151888 :0.06844247294979634 -He:0.5449311518532343 She:0.1599093020331452 I:0.155963563231293 They:0.07355764130599213 :0.06563834157633527 -be:0.23226366754823627 do:0.22702300826957306 agree:0.20210927245947508 go:0.17577568764751922 :0.16282836407519635 -United:0.9660871445925763 Southern:0.014847843204905764 Confederate:0.009134564711745638 other:0.005786371306168121 :0.004144076184604209 -a:0.4133146914688902 the:0.2934633593120952 his:0.11567941531653368 no:0.11452506494341273 :0.06301746895906815 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -market:0.2638353415324626 great:0.22164242969527806 par:0.19216188425257255 total:0.18493070617857188 :0.13742963834111488 -of:0.5311181700968074 in:0.20151887560459608 and:0.15594111770437788 made:0.0660185846864857 :0.04540325190773304 -no:0.7227150379438573 the:0.09327439366969052 full:0.0668165452076608 their:0.06261206398941047 :0.05458195918938092 -the:0.8128688558386002 its:0.07350431196502419 tho:0.03982072617681983 their:0.03802957849833031 :0.035776527521225565 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.26206239705496165 Davis:0.2212545185241595 county:0.21843114811153702 county,:0.18918161082127558 :0.10907032548806626 -conveyed:0.34571702449442215 made:0.20179423804778707 owned:0.19320515766414895 appointed:0.1366620621510734 :0.12262151764256829 -made,:0.4681705121457407 done,:0.19594920735600124 used,:0.13366608808371794 nothing:0.10435164255559336 :0.09786254985894684 -in:0.4202448872908036 for:0.2335916937207784 with:0.17612624617826017 by:0.08962255328790422 :0.08041461952225357 -tended:0.3440700901543805 tend:0.3172679593570058 posed:0.14090397555485654 tent:0.11158563539277287 :0.0861723395409843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 -placed:0.3096352003107917 put:0.2547204895277975 made:0.17156695559862856 came:0.13205115211531154 :0.13202620244747065 -of:0.7901173920562711 in:0.06976606995026112 to:0.058856987513840345 for:0.04436855137611206 :0.03689099910351538 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -even:0.5387001918470563 hour,:0.15345986662325767 equal:0.11700605658699162 act:0.10410909758430205 :0.08672478735839241 -hands.:0.3192691099889989 own.:0.21896907131309926 work.:0.20182649887891477 condition.:0.13382247118767293 :0.12611284863131414 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4143395054897673 thing:0.2368653640686496 was:0.1782315303446647 of:0.11274964690680313 :0.05781395319011523 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -gress:0.914224174325943 way:0.05026624713202548 dition:0.015609909587135968 go:0.011204109323728863 :0.008695559631166517 -have:0.3553103447355714 can:0.2557306297579339 could:0.1375315187686412 the:0.12797799271756483 :0.12344951402028863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.4897567405883019 with:0.17189788567096317 when:0.131707152227847 as:0.11540082324316661 :0.09123739826972134 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.24952119471483095 it:0.21698416866446427 that:0.1863426832216347 with:0.1735836238696795 :0.17356832952939064 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.5999309956571209 day:0.1481409514543817 only:0.08838961519033192 morning:0.08310273430412177 :0.08043570339404364 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -A:0.7223497060211183 H:0.08573064865013198 J:0.07450489023553764 K:0.061240977109837044 :0.05617377798337495 -cept:0.6263598342279868 pressed:0.20350848387068118 press:0.05899344272832158 tend:0.05866450064752028 :0.052473738525490234 -away:0.33503786037635985 them:0.203167031389788 off:0.15776722163414442 him:0.15293780346659788 :0.15109008313310995 -of:0.9178061365974396 that:0.02790584340212725 on:0.023074344196724682 in:0.016365938359049315 :0.014847737444659103 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.4186845515066419 which:0.2608232452378421 there:0.14751124450830308 them:0.09389180397066457 :0.07908915477654835 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.44903767050206184 in:0.19278374633938944 Boston,:0.1522861846634918 from:0.11455403319504306 :0.0913383653000138 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3432992006548758 the:0.24624306868103948 in:0.15375549503048244 for:0.13225684425411016 :0.12444539137949209 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5829483667437553 between:0.27987195552256183 on:0.052891613603178775 with:0.04649119900707916 :0.03779686512342512 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.9138786180796071 bo:0.04872567499627383 have:0.018910786299245166 he:0.010703966792157387 :0.007780953832716508 -was:0.4447615402323723 looked:0.23750256745009832 died:0.119706603900313 is:0.11258584165118132 :0.08544344676603505 -who:0.47155426292529173 and:0.23312478815786974 to:0.20777161487474952 can:0.05190121757735868 :0.03564811646473033 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.37965248635238996 ago:0.29159718538820534 after:0.129403289993999 of:0.10694429250235588 :0.09240274576304977 -in:0.3097108370480123 and:0.2799230480865264 on:0.18738990118415588 where:0.12138413022449344 :0.10159208345681187 -States:0.6833305242669799 States,:0.3071796102836261 State,:0.0065063088189648245 State:0.0020230139689247006 :0.0009605426615044884 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.45199315740604584 he:0.1890160789668664 and:0.1385732829099386 that:0.12594847503658016 :0.09446900568056905 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -say:0.37787397263183303 be:0.20071360717910397 seem:0.15401607081917063 find:0.13949614414447561 :0.12790020522541667 -after:0.3401867355527732 in:0.32875702139210783 on:0.17032733394177837 for:0.0929018017695043 :0.06782710734383621 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 -he:0.4013453653159783 I:0.20254954246689438 they:0.17189988119460115 she:0.12318850261408457 :0.10101670840844165 -prices:0.32072588248965783 wages:0.2628995309530171 price:0.19377130877346124 rates:0.1214630254623406 :0.10114025232152324 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3929858237463952 see:0.17822447584869247 in:0.16234739946858986 take:0.14013524487362175 :0.12630705606270073 -against:0.30449723293168757 of:0.2854120391293056 was:0.16572170303969208 at:0.12830841783853816 :0.11606060706077663 -time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 -the:0.6294738664115623 Main:0.13996507737068603 said:0.11857407733484716 Wall:0.07038623662716127 :0.041600742255743374 -if:0.5031266793525658 though:0.19512781382877523 that:0.15866615219931884 to:0.07887836429804175 :0.06420099032129835 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -general:0.40943417240726443 hearty:0.2503557704428532 public:0.1457542528955483 entire:0.11118047702420014 :0.08327532723013403 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.2585235478252685 placed:0.23642330981040433 held:0.17344731448956857 carried:0.17233595493789808 :0.15926987293686046 -in:0.7048663801992143 to:0.09210875416444327 In:0.0759182662943682 a:0.06657699788831131 :0.06052960145366299 -first:0.31264017521969134 most:0.27476376047534146 same:0.18055984886377366 great:0.12354842452123307 :0.10848779091996036 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5386131815985976 most:0.1807078609314976 very:0.14951020880469593 the:0.067235481573405 :0.06393326709180372 -that:0.25680648942191686 which:0.2269643467709619 should:0.19996441767397208 would:0.1812611756009446 :0.1350035705322046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3905790862787699 for:0.18336728897533167 to:0.1605065608710758 with:0.14386399889557022 :0.12168306497925233 -an:0.3148112010238913 very:0.2966691785273125 most:0.2046237554510466 more:0.09280751919029358 :0.09108834580745587 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.6852147246970205 yet:0.12233178546935386 having:0.09334949466584878 had:0.05314428404152801 :0.045959711126248734 -sup-:0.5076169237573845 pur-:0.2878627927110612 pro-:0.0998051587928423 pro¬:0.05872312934298346 :0.04599199539572857 -officer:0.5455809677722734 individual:0.19725479223972336 expert:0.10547851027973541 agent:0.08301779949591116 :0.06866793021235662 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4826495034433279 an:0.3250353689559593 his:0.07653450217407645 their:0.06759310644393937 :0.04818751898269702 -force:0.30020739063510027 grown:0.17801255793665618 and:0.17793240437984045 benefit:0.1773762586060051 :0.16647138844239792 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -acquainted:0.6653458129940143 known.:0.20673292267407054 connected:0.05547468117584797 possible.:0.04277446778518001 :0.029672115370887396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -side.:0.45102555898408353 her.:0.33481579224273766 door.:0.10420999651400331 him.:0.06860554140082242 :0.04134311085835324 -at:0.2599656245606889 of:0.24752740231057246 e:0.20765658664426254 in:0.16063101025628646 :0.12421937622818964 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 -of:0.6052058482109697 in:0.13458212158004879 and:0.10132081786379274 or:0.08658428551537413 :0.07230692682981468 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.7467479685569529 half:0.08231866454334275 in:0.06458662047105808 is:0.05764316394681715 :0.04870358248182919 -out:0.259740280440485 good:0.23388141114474084 that:0.21792507721082213 room:0.14919702852382155 :0.13925620268013048 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -vast:0.25004963116127343 second:0.24244514374657705 same:0.2382486139101054 people:0.16096151430872047 :0.10829509687332359 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -me:0.2991071846318897 officer:0.276245508733967 position:0.15977666227834614 him:0.15501603928104674 :0.1098546050747504 -the:0.676055014205895 a:0.14386388613315307 tne:0.07050159130492037 tbe:0.06121476244585366 :0.048364745910177726 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.6566254396566344 regard:0.11357777438254728 this:0.09639258586169677 good:0.07572880491192009 :0.05767539518720141 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -half:0.24750611822843946 of:0.2134578389978743 time:0.18319074465509116 while:0.17847455948790394 :0.1773707386306912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3411674099738274 but:0.21145689756677352 I:0.18411025343941811 they:0.1494406560840585 :0.11382478293592237 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5759813590268862 our:0.13209302528757375 all:0.11407655530804332 other:0.09802007073546597 :0.07982898964203079 -of:0.9596393390736461 ot:0.013684839789355635 in:0.012292804048836327 ol:0.007802479821024747 :0.006580537267137221 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.345540771418676 here:0.19085250266671996 hand:0.19062299170587113 them:0.15243363962677953 :0.12055009458195336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.789292076572394 their:0.06577861232262507 a:0.05187470472949875 his:0.04747762893007266 :0.04557697744540952 -say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 -in:0.5938098067078895 the:0.1853822589758331 by:0.10847776659177367 In:0.07095379908062244 :0.041376368643881334 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -ties:0.5156822661931676 ty:0.38157620395574743 amount:0.044077046343970576 son:0.030149603686366506 :0.02851487982074791 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.313145431028564 over:0.26208402149641913 necessary:0.204187940152817 persons:0.11257858919100876 :0.10800401813119105 -not:0.8539621468915923 never:0.06845464914053649 always:0.03750259055199231 also:0.026120554678857853 :0.013960058737021058 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.4973961975053785 it:0.21356482077295225 you:0.12990945764824224 the:0.0951167107758978 :0.06401281329752921 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -success.:0.48709205152045115 power.:0.15878162785197603 value.:0.1317102031225057 work.:0.12393719189312316 :0.09847892561194402 -a:0.37752521698291724 the:0.21411256309350316 large:0.17426688145816507 A:0.1487073026065106 :0.08538803585890391 -of:0.6845332261924761 over:0.1731577992965732 around:0.06878041223349247 to:0.03998449145547159 :0.033544070821986446 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country,:0.25647522717650195 country:0.23393142623432564 people,:0.21088449289014816 people:0.15166585597042992 :0.14704299772859422 -are:0.29244454637930073 was:0.24291121377054986 were:0.17647461323205593 is:0.14929738335899256 :0.13887224325910089 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3128090578317753 done:0.23089776653516594 at:0.17862928606735418 made:0.14208353626904913 :0.1355803532966555 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.3799754458931045 and:0.26628802687965075 0:0.1348531583838763 .:0.12059224348079446 :0.09829112536257396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.5658711008566274 composed:0.1633654695627263 capable:0.10694179288348933 worth:0.09088855266136625 :0.07293308403579081 -the:0.610340659377666 a:0.28376910333390054 this:0.05600691488498956 tho:0.028337887977527215 :0.02154543442591666 -other:0.5625178272836079 particular:0.20085753484794158 one:0.18149663355860796 legislative:0.033672929230557425 :0.021455075079285 -not:0.6505392953664775 be:0.18895656361647906 have:0.13154799179201399 needs:0.01672036108895019 :0.012235788136079435 -the:0.41876871464388266 either:0.2222699677085069 each:0.19718485040341 one:0.0916842381002334 :0.07009222914396696 -was:0.5964400937562713 and:0.20573953399033904 were:0.07632928586247804 had:0.06166974275088944 :0.05982134364002228 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.6411497021387552 was:0.23748566184536957 became:0.06120022317984976 Is:0.032414510271604496 :0.02774990256442102 -way:0.3991823640873286 coming:0.2437686478081355 work:0.12325855416260659 cry:0.11793400654740759 :0.11585642739452154 -to:0.9102408860352602 a:0.03643409229557851 the:0.0357298702500003 and:0.0088800253946838 :0.008715126024477111 -more:0.4240902957005251 two:0.18083543660714702 with:0.17185162321752367 one:0.14259006794354384 :0.08063257653126044 -of:0.8012042246387014 the:0.09219339696008427 in:0.07010365400427074 on:0.02215424821731396 :0.01434447617962961 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -long:0.38337830678612894 well:0.2169569119218413 large:0.1744648695656167 good:0.14565992151957216 :0.07953999020684091 -to:0.6672652462653891 only:0.22045464315470337 yet:0.04404195954778333 always:0.04087464530663975 :0.027363505725484457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3116547541993475 in:0.30037069563571367 with:0.1386169540249669 for:0.13386894020673068 :0.11548865593324127 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -claims:0.386001686973386 terms:0.21089611788865914 duties:0.13944233922191732 places:0.1319882258625984 :0.13167163005343915 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days:0.31882701394378044 years:0.24860400671858413 months:0.17495178568470846 weeks:0.13689053884436292 :0.12072665480856407 -people:0.26976805018750943 man:0.2212536601680126 world:0.1999252944402413 I:0.17191175539649353 :0.1371412398077432 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.30257832723030337 was:0.23313226593915304 would:0.19950236086180495 will:0.15317295392092448 :0.11161409204781417 -The:0.7035167899194008 A:0.09853369923546915 Other:0.07243968793096212 Tho:0.06495737928005638 :0.06055244363411141 -way:0.2501637392820881 coming:0.2188359812720262 back:0.21196423514768567 fall:0.1727115515396201 :0.14632449275857995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8176588477355398 for:0.08278484431081018 the:0.05583303578176592 in:0.022425473956329687 :0.021297798215554293 -dollars:0.24807875783260766 ten:0.24456113467699467 six:0.19874383274995844 the:0.15771210253068021 :0.15090417220975896 -fault:0.3466288891672205 mand:0.3137557297852001 scribed:0.1636259873101252 I:0.1074689703089825 :0.0685204234284716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cent,:0.41197970955322233 annum,:0.2517147069983461 acre,:0.16522763499362733 cent:0.09466588884539416 :0.0764120596094101 -result:0.2855875466315811 number:0.22944652830896034 members:0.1711509963999548 amount:0.15906508114635787 :0.1547498475131459 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.5207518450709158 small:0.1463040626963172 certain:0.12190102432201719 total:0.12178955622346574 :0.08925351168728406 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -considerable:0.6232436319726327 great:0.18000813446048364 much:0.11140297249623562 the:0.05539990491606776 :0.02994535615458035 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -known:0.9653792848398776 known,:0.010686541933334775 informed:0.008638115542569443 and:0.008572693657027295 :0.006723364027190906 -number:0.3026426046150244 part:0.19149865887319448 copy:0.18604551240261066 portion:0.16550206060409364 :0.15431116350507695 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.36454736988843367 came:0.23655413182093887 ing:0.18857853245926207 cause:0.13027244871892815 :0.08004751711243707 -as:0.3691705427439685 and:0.2685005959874782 is:0.20270990005406808 so:0.10364656359659268 :0.055972397617892446 -in:0.2626202880585887 that:0.22473157576430006 with:0.2031786609669086 and:0.16071757587503918 :0.14875189933516336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.43768618420683164 if:0.18974395903754418 it:0.1621513877871259 do:0.125799900908574 :0.08461856805992425 -been:0.44440383267871536 made:0.21094420362985453 lost:0.14605832220899478 to:0.11689998178287268 :0.08169365969956278 -the:0.4385866634867254 a:0.33533340117792 done:0.08792293275645997 his:0.07145245703524106 :0.0667045455436537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.24153322600079952 has:0.23902320412126718 he:0.2027124240869635 which:0.18167437634747133 :0.1350567694434985 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8455079451298888 in:0.058021497762959416 to:0.04350099470391134 and:0.028136814854024597 :0.02483274754921572 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.564686615942091 to:0.31041809280136684 also:0.05554394967659881 soon:0.0379598799061034 :0.031391461673840146 -head:0.2440405254451253 name:0.24223183971486265 wife:0.1969525695211571 hands:0.17674142766134882 :0.14003363765750598 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ceased:0.48001252631272917 voted:0.25229494395236846 scribed:0.12717612680667864 mand:0.08551021901592343 :0.055006183912300284 -the:0.9199879460263574 tho:0.04598963493209399 tbe:0.017125797095378984 this:0.011084464230111233 :0.005812157716058401 -not:0.3655010045000921 no:0.32239386965514405 been:0.24060960946118023 nothing:0.03886199290804044 :0.03263352347554316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.462484869268238 we:0.17928212099514168 who:0.17579656633491014 they:0.1037935683844705 :0.07864287501723974 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.361006940782101 was:0.2742341571608941 is:0.16841456887375403 were:0.0987516129020374 :0.09759272028121337 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6189891671610418 a:0.27917686932783287 not:0.04145700923802547 the:0.03493803241120836 :0.025438921861891534 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -per:0.8804433971196473 a:0.08290115802384253 each:0.03203354974527651 that:0.0023649016064737284 :0.0022569935047599497 -three:0.22818575938112484 two:0.21636696876531175 twenty:0.19555900108077817 five:0.18015700700819376 :0.17973126376459161 -well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -quarter:0.5271629112316887 corner:0.4265628169990939 side:0.03355766514435427 part:0.007534319951314821 :0.005182286673548347 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.40985145092090564 four:0.22341534227312965 recent:0.1406595663285073 several:0.11472759495322485 :0.11134604552423272 -he:0.4924252076785649 they:0.18995456073922762 she:0.12045341691397464 I:0.11519058879760577 :0.08197622587062697 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man-:0.3706485120016178 man:0.3120218087065212 very:0.15815799788573892 middle:0.0851223165779202 :0.07404936482820196 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -pounds:0.21648069718321974 cup:0.21041230364510816 interest:0.1915394490122192 miles:0.19152464964182275 :0.19004290051762998 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3448219238390545 much:0.25584411764652265 many:0.18600385985317255 part:0.13599459947076745 :0.07733549919048274 -with:0.26272248383247915 of:0.26171405093360933 in:0.19975962395569208 against:0.1396170713306187 :0.1361867699476008 -them,:0.28415966754556465 it,:0.2592280766720697 sale,:0.1604793807466042 land:0.15336635786327832 :0.14276651717248295 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2705869613252287 miles:0.21051717851192162 ing:0.2016081667541367 taken:0.16473080286976222 :0.15255689053895075 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -com-:0.3675497449027136 pay-:0.29841493827153553 be-:0.1677701112791274 com­:0.08822114178723883 :0.07804406375938473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -as:0.4438736971739895 attention:0.17448214204489781 thereof:0.1394461881157221 pleased:0.13563943484682447 :0.10655853781856607 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -was:0.4046793094878609 is:0.29839673293099184 of:0.10948960099376105 has:0.10011352396189983 :0.08732083262548641 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6011099755540903 a:0.25672443232029535 this:0.08398793927513061 our:0.03032327750248721 :0.02785437534799664 -other:0.7237216980979613 all:0.14662863339812734 these:0.06302046202541955 many:0.04872207335386636 :0.01790713312462564 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4593271593652506 I:0.1907967638213524 they:0.16370415547402087 she:0.10116556532562489 :0.08500635601375131 -he:0.4728432150459262 which:0.16287165901043069 and:0.12778127639597403 It:0.12022730528437542 :0.11627654426329366 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -sale:0.3459534941147926 property:0.29496972813074995 sale,:0.18998409191905416 life:0.0879878339394327 :0.08110485189597055 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6121448179206389 but:0.17728862887554234 he:0.09975308543197005 that:0.05657004114940254 :0.054243426622446134 -the:0.8512366162069798 a:0.08124938883849922 tho:0.03296948800445392 this:0.01795575814857082 :0.01658874880149649 -of:0.5136354452395485 in:0.18631584692360578 where:0.12262669729486819 to:0.09519799245423796 :0.08222401808773955 -the:0.38402807734205857 ::0.22024566555589223 that:0.1783518190657448 real:0.1309011381549689 :0.08647329988133558 -ceived:0.45208093622462764 turn:0.15185650230169606 quired:0.14263372631615284 turned:0.13548897930763232 :0.11793985584989111 -out:0.30860167750433426 up:0.26093594737371595 it.:0.16465549417875727 them:0.13330076676908187 :0.13250611417411073 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9381609123977712 tho:0.024657671673000037 this:0.019406289532033546 tbe:0.014045084059503587 :0.0037300423376915416 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.47999583549588054 a:0.17745255838282128 he:0.1507737529895588 she:0.09763286246987814 :0.09414499066186127 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.2800262179278408 now.:0.21439116609156422 not.:0.17335967509860792 done.:0.1718823077442998 :0.1603406331376872 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.3268850733866486 other:0.25721544023547654 public:0.20917019178868654 following:0.10892899325618252 :0.09780030133300589 -the:0.31934630423180826 a:0.2729894878604091 his:0.23237896866745072 their:0.1305541373291091 :0.04473110191122282 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9030017138076329 tho:0.050149063250328266 a:0.024120844562589297 tbe:0.01847385702232124 :0.0042545213571284195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4381178294206576 up:0.2573487200674866 was:0.11548430729519357 out:0.10180552356433287 :0.08724361965232935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 -the:0.3707566353063251 a:0.3051061608574347 this:0.14682799803105984 his:0.10688222145686767 :0.07042698434831268 -in:0.3934965582233325 to:0.20641538268083015 of:0.16792245089322372 and:0.12052703199867683 :0.11163857620393672 -it:0.7620350415642106 the:0.09113558018611137 ¬:0.07886459170208528 t:0.03639335048011524 :0.03157143606747744 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -every:0.23163780886294116 a:0.21344486131574283 some-:0.21088116823061023 one:0.18268299816127925 :0.1613531634294266 -the:0.7658825882408736 a:0.1829817069961768 tho:0.032634023456226235 tbe:0.009968874050728304 :0.00853280725599511 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8906726982235548 in:0.03912753294941591 on:0.02688211166254815 to:0.024495839666666575 :0.018821817497814454 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -recorded:0.6481192764283628 executed:0.10206970581162352 and:0.09461234128387165 that:0.09054290894959573 :0.06465576752654628 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.8359551394148821 a:0.09656459723360789 already:0.02782482953680059 not:0.02069383585501996 :0.01896159795968938 -of:0.28312050965950114 in:0.25312606933874937 by:0.17730511062830812 to:0.16524723941545438 :0.12120107095798693 -way.:0.29179090183726347 hands.:0.20497637400052995 country.:0.17582455525026006 people.:0.17251491661869994 :0.1548932522932466 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -most:0.30933309658307584 a:0.2288599447751316 other:0.1847168430760656 more:0.15951633899142248 :0.11757377657430448 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.2652975035863001 issued:0.25884240072263853 of:0.22316557962832995 to:0.14248250268995027 :0.1102120133727811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4098740609414691 his:0.28105575433045216 her:0.19025105822225963 a:0.0602268134147455 :0.058592313091073586 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 -of:0.7119660665338788 in:0.11734831347216163 to:0.07552145179763152 with:0.05948255509859266 :0.03568161309773528 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8937514843133455 bo:0.05597363073190958 the:0.02179397172473222 a:0.01790896243240588 :0.010571950797606837 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.280492411061459 in:0.2622265462252736 to:0.1651726282573396 and:0.1628986047063671 :0.12920980974956062 -to:0.28172119179980676 that:0.22864121274333143 of:0.19948835622772362 the:0.15782876658792142 :0.13232047264121682 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -doing:0.29783472815871503 that:0.2445642211594589 not:0.15927853080568 worth:0.15723822821047675 :0.1410842916656693 -days:0.3355581368016748 who:0.21000836998184977 States:0.1987682099869918 men:0.1408851588678237 :0.11478012436166002 -active:0.3006540449709395 money:0.2889034479139488 fully:0.1508212127064252 men:0.14274427653911315 :0.11687701786957343 -day:0.24980824492763745 people:0.22224081082283492 question:0.20230242183478755 president:0.17684466143530417 :0.14880386097943593 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up.:0.3971667225682664 here.:0.2332077970282172 children.:0.1507020401603975 people.:0.12802429757754707 :0.09089914266557184 -the:0.7980081205656371 said:0.13624323874979552 such:0.02370618327969637 tho:0.02234869618067133 :0.019693761224199552 -one:0.32924896752232385 those:0.3078900113268311 found:0.18142612777868453 men:0.10327892629473057 :0.07815596707742999 -a:0.5388743813045417 the:0.16129902134979965 no:0.15955196031569555 any:0.08679118481732821 :0.053483452212634904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.2846183197657092 it:0.26654579765521835 that:0.1643699491062161 even:0.16082036835160948 :0.12364556512124679 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.2441062260383895 portion:0.23866557341724506 number:0.1784589257983367 time:0.17731219952656105 :0.16145707521946773 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.2889273550528222 have:0.21661436896613256 ought:0.1956993604835726 were:0.15191221466628485 :0.14684670083118778 -of:0.35169471213754433 and:0.20371596172668074 or:0.20179513463419874 for:0.16896140479947683 :0.07383278670209929 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days.:0.2964769778307562 year.:0.21220900920634297 state.:0.18195027029941402 State.:0.17499933633267384 :0.134364406330813 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tent:0.34567769935304266 press:0.2844575153320419 plain:0.12992840916943185 ports:0.12688972481127309 :0.11304665133421037 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9367246824162122 steps:0.02349968900626445 that:0.020050538300301693 and:0.012490869513365241 :0.00723422076385633 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way:0.30096832018195074 lives:0.24592195458369667 own:0.15598924942815243 homes:0.15067919752492642 :0.14644127828127368 -to:0.2843953067744825 in:0.20401274633891334 be:0.18774672308372856 have:0.16545506201609889 :0.1583901617867767 -man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 -amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 -and:0.590477586733031 knows:0.18338979057973104 is:0.09369270749060797 know:0.07478379846641153 :0.05765611673021826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thereon:0.33275574258724494 and:0.32999757011395814 thereon,:0.23252278112812086 of:0.052577310125888586 :0.05214659604478742 -same:0.47485405520850643 legal:0.17112927310779247 water:0.1366016996077962 constitutional:0.11864764545613087 :0.09876732661977397 -find:0.3336780313834963 went:0.23815663746682816 got:0.20211886620463324 came:0.1250200449241561 :0.10102642002088622 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -to:0.3352856826545633 for:0.30113292570789757 and:0.1568068410941113 up:0.11125217342311945 :0.09552237712030824 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6416554763054443 the:0.18814705452585498 of:0.08426593788641792 money:0.04361020012007396 :0.04232133116220892 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6660631445365797 the:0.19586405523601108 tho:0.10884305006964357 n:0.016350794925038305 :0.012878955232727533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.36659805085420116 them.:0.2331912410529638 us.:0.17261134034915693 life.:0.13612476265584192 :0.09147460508783617 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hand,:0.39796208413654804 words,:0.31073140411261657 purposes,:0.10968639977480454 property,:0.0933514135813045 :0.08826869839472626 -member:0.3662297317797371 port:0.2501336644383082 sources:0.1521353820979181 ports:0.134012877391075 :0.09748834429296156 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.30839328229704194 and:0.2939329693670659 as:0.15859772438537761 if:0.13319397385336704 :0.1058820500971474 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -may:0.3135397804561777 to:0.2998639532458691 they:0.1978314141790796 will:0.1179771221006473 :0.07078773001822623 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.670128213428348 here:0.10473360295928405 home:0.0822764200953523 to:0.07505318151021403 :0.0678085820068015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5399870097886941 a:0.3751623735122842 this:0.04006570224049952 tho:0.0263899729327811 :0.018394941525741157 -is:0.5807890936789079 was:0.21006058120304183 are:0.09204524663349903 Is:0.0696594134221988 :0.04744566506235239 -was:0.27220572319542435 am:0.24564516188789573 knew:0.21078150977881357 saw:0.13891164994265257 :0.1324559551952138 -fallen:0.2550935144253032 called:0.22199141089543725 agreed:0.1956829668086346 made:0.16689753182025766 :0.16033457605036722 -the:0.35336727090747155 a:0.20353363688571274 white:0.16958150096719726 black:0.16543363028696026 :0.10808396095265806 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.45323740297607407 his:0.3112035931442363 my:0.08574471152572656 a:0.08019423759291404 :0.06962005476104904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.8436261695573332 you:0.09733455839717708 we:0.027343344877790568 I:0.020851496525844344 :0.010844430641854766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8139533928992386 who:0.06158374514288158 and:0.057971088441668144 a:0.03942190885461261 :0.027069864661598955 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.590588317450143 but:0.14750269473625943 in:0.11554956348915248 for:0.07993116323160768 :0.06642826109283752 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -uses:0.3799576932303182 Wood:0.25672053180318877 Lewis:0.19394530299066315 Hill:0.08908333088137137 :0.08029314109445837 -the:0.4247327541125737 a:0.28614741225183277 any:0.15546477056637248 some:0.0911305654829253 :0.04252449758629571 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6023854671317729 th.:0.15109269115997762 a:0.13600577571183248 the-:0.056818919501619616 :0.053697146494797385 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.45354914326546353 but:0.2855201666882176 when:0.1026205423550931 as:0.09138736500937797 :0.06692278268184779 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4597366739728643 is:0.19084891407684518 grows:0.13202212429449883 seed:0.11689977406003085 :0.1004925135957608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6868280602553681 have:0.1533547123457478 not:0.09783029956642462 bo:0.050796044310583606 :0.011190883521875673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.2281892461150718 we:0.22618139236075066 they:0.20612414335667154 I:0.18108046532430075 :0.15842475284320515 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8638711235643541 tho:0.041835248380505174 said:0.03626480455891716 bearing:0.03087011716068624 :0.027158706335537245 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -seen:0.3057147908938927 made,:0.22290596125623377 more:0.21039641586034225 read:0.14008936384408346 :0.1208934681454479 -fur-:0.8911203907637002 the:0.03125621279706631 win:0.0286875154115233 keep:0.02689759689153704 :0.022038284136173085 -been:0.4913215030881581 a:0.18896298165230183 J:0.1450263148954228 the:0.09203873716859626 :0.08265046319552091 -not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 -opportunity:0.28890486657815 order:0.2249940295307912 attempt:0.21037774289510267 effort:0.1777913698834426 :0.09793199111251345 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -life.:0.32504834355413503 family.:0.3122449812642007 body.:0.17374342252439734 mind.:0.09466324583599313 :0.09430000682127378 -to:0.457391300225274 and:0.3677706123797597 or:0.06325620658742725 weight:0.05682950171766564 :0.05475237908987347 -it.:0.32818118681770747 that:0.22202870344988204 them.:0.18466135514630586 which:0.13296408090878634 :0.1321646736773182 -left:0.3934500882393098 almost:0.2629028186367616 way:0.13182530882122537 being:0.11815845398347699 :0.09366333031922618 -who:0.7786056111990967 have:0.09771783325384129 he:0.0593957343244706 which:0.032757835796811345 :0.03152298542578034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own,:0.26703315471989003 work,:0.2596225532415905 country,:0.16894448286611086 hands,:0.15761285782356163 :0.14678695134884706 -in:0.2800944683377412 to:0.27706855470998304 for:0.18617168547164809 on:0.1442909634369626 :0.11237432804366498 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -even:0.36544110204784097 twice:0.2059857181131324 two:0.18917045077412847 either:0.15398779713565952 :0.08541493192923877 -things:0.24288858828066553 places:0.23397398069115377 than:0.20747179529605633 hand:0.17325100618987604 :0.14241462954224848 -have:0.5162760299665899 had:0.14050252466688154 never:0.13630097210928377 was:0.1261509925544268 :0.080769480702818 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ready:0.7104869702450195 been:0.13224099930644817 voted:0.06116794198617599 used:0.048449833801610886 :0.047654254660745556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.45087123309828075 this:0.31960039860491635 his:0.1048451717319772 its:0.07918676623976023 :0.04549643032506559 -husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 -forth:0.4168641429702252 out:0.3933527030136007 down:0.14775001981501393 over:0.023953134205523037 :0.01807999999563712 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.3233069960635282 that:0.28331570797951655 what:0.16901174970975189 which:0.12923018923204457 :0.09513535701515864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.4977413373040864 matter:0.13678798048397203 point:0.12914945235724917 result:0.11943237639890907 :0.11688885345578343 -carried:0.5116663224227895 put:0.15766700684868093 so:0.12644340124306633 held:0.10342980093894236 :0.1007934685465209 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4249280870330379 by:0.2273733029815307 for:0.1379445417806927 to:0.11486911463599396 :0.09488495356874489 -department:0.31640982386213035 hundred:0.25416441229255854 alarm:0.17263464069852721 engine:0.1392742134759803 :0.11751690967080351 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -good:0.6475822759081333 large:0.17576358343204912 small:0.08602069700044933 little:0.046272606035638535 :0.04436083762372976 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.45718045892340936 not:0.16476371428460146 be:0.16201056779274697 and:0.14174044294743446 :0.07430481605180765 -And:0.3057033433233787 that:0.2127624394714217 But:0.19867421335920393 and:0.14802565699496698 :0.13483434685102869 -upon:0.4192472128780024 for:0.3416474116416482 on:0.11148139203331564 and:0.06719159872185934 :0.06043238472517439 -estate:0.5339833001248075 estate,:0.3516290971947782 property:0.061515397647783625 property,:0.041297563238892006 :0.011574641793738627 -be:0.26398769654846344 see:0.20314931135706527 make:0.1816466446055846 give:0.18113146774487937 :0.17008487974400735 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3947245019331114 Bryan:0.2791886139419729 Roosevelt:0.1217445581665617 Cleveland:0.11149595689879024 :0.09284636905956384 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -there:0.36428823743634225 it:0.2812278793772329 and:0.1850042686374981 which:0.08562958658631575 :0.08385002796261103 -he:0.5674892518729147 they:0.1681973519408473 be:0.1466967905006717 she:0.08572363427217243 :0.031892971413394075 -opinion:0.25130193045168864 lands:0.22761725976304314 as:0.19851451157246316 schools:0.17487912197205835 :0.14768717624074668 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.260815624967152 their:0.24283544137555713 each:0.23316493421393478 his:0.15387652284549497 :0.10930747659786125 -down:0.36648140043722227 himself:0.28622884993746883 herself:0.1598879766164897 themselves:0.10161344060338993 :0.08578833240542917 -rid:0.4567315970656013 out:0.3861873016525369 some:0.06514367162562114 possession:0.0528971650583694 :0.03904026459787122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hand,:0.2931873053619383 wife,:0.23906539191176063 life:0.16308805996113146 life,:0.155571763679979 :0.14908747908519052 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -shall:0.5172139245434447 will:0.1968786733932238 to:0.18231157699579104 would:0.053174020185272924 :0.05042180488226774 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 -wife:0.32079871115411046 own:0.20626726086968203 way:0.168691815342499 name:0.155601390619078 :0.14864082201463055 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -diseases:0.268468147603684 condition:0.2673810886870135 character:0.1580725488977596 element:0.15568194692093554 :0.1503962678906074 -the:0.683933835035265 a:0.2556129098470275 his:0.02392178512124789 tho:0.02373635911502153 :0.012795110881438155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.28243683817796 that:0.2306189327422228 In:0.1910814607843554 in:0.15067320946540355 :0.14518955883005832 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.8742154557803276 was:0.062373469264232706 Is:0.041545900628678335 has:0.01257006061776567 :0.009295113708995733 -right:0.25713588352461564 reason:0.19943811793838703 attempt:0.19294083764245654 desire:0.18478369497441377 :0.16570146592012697 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.40295145948688293 I:0.25111987191748997 we:0.22757327304721375 not:0.06347598945892514 :0.05487940608948818 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.5480598920407322 street:0.19358602272521783 .,:0.11117337169540122 is:0.09342141409516358 :0.05375929944348515 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.3212276234486541 day:0.1865571679943897 part:0.17540911239191764 kind:0.17376886165058528 :0.14303723451445333 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.43804744221860825 they:0.21356840309842753 these:0.1271039656417373 kinds:0.11083624532571966 :0.11044394371550752 -could:0.43656569871900763 can:0.2396901924261185 would:0.11632766909118517 don't:0.11551616575885953 :0.09190027400482924 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -placed:0.32239155046340445 made:0.26375167061664184 done:0.17546622792593028 issued:0.1398342833848852 :0.098556267609138 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4044803373048269 a:0.31752684718413215 at:0.11544183033412826 no:0.09544916939342636 :0.06710181578348626 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.6091925884213363 were:0.15833280293825272 and:0.14861733576070357 while:0.04843134438100721 :0.03542592849870021 -in:0.29561002192942665 be:0.2895353878003068 by:0.14185196485200163 to:0.14033305759961173 :0.13266956781865324 -which:0.43019123882358973 that:0.26959135897462855 whom:0.14306050524198047 what:0.08611705525647632 :0.07103984170332489 -was:0.3909993287862728 is:0.2148467760309682 had:0.21446841972231484 saw:0.0995793186942518 :0.0801061567661922 -week:0.3716436859294846 year:0.23446099403024723 they:0.17736617046870248 night:0.13964454306648305 :0.07688460650508264 -R.:0.28289152438825815 W.:0.20537247701788156 H.:0.17663760719124694 C.:0.17337094792670854 :0.16172744347590481 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.32375382993444257 and:0.20260834072187275 protection:0.19546394624313435 evidence:0.14890212066638311 :0.12927176243416727 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6011099755540903 a:0.25672443232029535 this:0.08398793927513061 our:0.03032327750248721 :0.02785437534799664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.546002887168958 was:0.17938164488619096 as:0.1693317987042671 may:0.06803970657302331 :0.03724396266756075 -is:0.5743677101276762 has:0.14973248230614994 was:0.14570023618492614 had:0.06826688350061219 :0.061932687880635655 -of:0.35729011668583566 in:0.27479631622374723 made:0.15283289914766734 all:0.10811747039952556 :0.10696319754322417 -seem:0.33676462367658705 have:0.22521145443269291 not:0.20734071238879856 go:0.13543340828169684 :0.09524980122022475 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -special:0.45767515360558714 general:0.30101836149923783 primary:0.0976677939640163 new:0.0909899187523932 :0.052648772178765395 -bearing:0.8151913703514785 from:0.11517403176166482 to:0.028561423567652146 the:0.02286998127043806 :0.018203193048766587 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4073880943697012 on:0.21857146110445475 into:0.2184289204417434 through:0.09383024953492747 :0.06178127454917329 -from:0.2662878973589631 wide:0.24782802890446742 travel:0.19721069048257175 west:0.1541012822320163 :0.13457210102198133 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -But:0.4455138300976967 Then:0.20111133595927091 Now:0.16042158034081072 And:0.10794550016425165 :0.08500775343796994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.580084045484528 which:0.16370646859189125 they:0.08633972820730774 as:0.08566947747606807 :0.08420028024020484 -the:0.6790176760237322 his:0.15120802258735713 their:0.09408246919601004 such:0.039713199411196345 :0.03597863278170432 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.3015402041156875 Jones:0.22999859914422052 While:0.18969291453104023 But:0.14859629540287936 :0.13017198680617242 -per:0.9988672438178856 r:0.00043309849603157284 dollars:0.0004249763162792817 p:0.0001769787428089542 :9.770262699454344e-05 -the:0.25852441919464636 an:0.2528564325464374 that:0.23952424950675721 them:0.13725611184054312 :0.11183878691161593 -which:0.37372730011563793 and:0.26151018507795576 it:0.16965596226466573 he:0.10565168015077236 :0.08945487239096837 -not:0.6326536769872628 probably:0.18451370932775793 soon:0.08195490950471516 never:0.05697079485280065 :0.043906909327463495 -we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -far:0.35722560040686185 it:0.3337611373379196 he:0.19878640797635255 she:0.0648002751143607 :0.04542657916450529 -time:0.8250613779509361 distance:0.08596627263925848 time,:0.03216633417892921 address:0.03142138967480378 :0.02538462555607241 -to:0.8141441929363245 of:0.16906887633430584 on:0.006360549808244135 in:0.006301253957744445 :0.004125126963381025 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.5307512773259486 thousand:0.40598347132295937 million:0.060535892980536514 of:0.0020317303027283474 :0.0006976280678272119 -time:0.3984963425046753 him:0.18887275268273215 day:0.1440937071215401 one:0.1375857356942887 :0.13095146199676358 -them:0.35444814961076127 Deeds:0.20184404038840703 money:0.1689957948524785 land:0.1391189718746798 :0.13559304327367339 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.40374219264776584 Williams:0.25612859021127604 Smith:0.19635640522103837 I:0.07692234624588151 :0.06685046567403835 -side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.24361639194175835 same:0.23690929885455997 real:0.1924351232439773 be-:0.16483813058847366 :0.1622010553712306 -will:0.3178758402435076 would:0.18808730495849804 can:0.17193037834802855 should:0.16775379589348788 :0.15435268055647797 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9208621099390366 tho:0.032800691845277216 a:0.030351728427239766 tbe:0.011165286462831887 :0.0048201833256143675 -people:0.2615751345337125 man:0.22316869416316598 latter:0.18716453164330188 city:0.16686638490524625 :0.16122525475457342 -the:0.311325764910945 a:0.2637816433976308 no:0.22167974007557165 that:0.1097660246369965 :0.09344682697885603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.675992226264545 of:0.1522785607745652 their:0.07464115312537543 his:0.05093600111497414 :0.04615205872054033 -to:0.40858382717670894 not:0.20853084370476044 will:0.1496537919906761 they:0.12733704431261497 :0.10589449281523945 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -seen:0.37459512284467156 heard:0.19443144182146527 known:0.18347393012738708 go:0.15993350287981217 :0.08756600232666385 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.45666576406431036 before:0.1955410671159066 for:0.1318993938605424 let:0.11348143191193846 :0.10241234304730215 -and:0.3655165955916575 or:0.20167434960439073 for:0.16446450068787136 of:0.136904970737816 :0.13143958337826434 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3731320406019427 his:0.1783962902751297 our:0.16348051445635015 the:0.15099752270635367 :0.13399363196022376 -trade,:0.4301596240189072 and:0.2360214598009571 yet,:0.1397886345448919 nothing:0.10513848949467333 :0.08889179214057043 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.51746654913717 there:0.21032682365901526 it:0.17166122552963511 day:0.05080496318631966 :0.04974043848785983 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -of:0.35782248184661725 and:0.22366937838475184 in:0.19785173225670322 on:0.11257537479119789 :0.10808103272072983 -f:0.3343875401417812 -:0.230405245151462 <:0.1757463293918904 i:0.13740733773163244 :0.12205354758323389 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 -asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -and:0.48762507633611657 Johnson,:0.24825432227414548 Jackson:0.14768723219254148 county,:0.05839019274013083 :0.058043176457065485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.8902492622791653 between:0.059799827151827065 of:0.03198893788706246 that:0.010600017675598757 :0.007361955006346298 -was:0.5561735072394446 is:0.19839534706105572 will:0.11052726699659719 would:0.07431190446977347 :0.06059197423312906 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8954133152491479 said:0.04936179462527879 tho:0.03350422270175329 tbe:0.01101415336852677 :0.01070651405529333 -ago:0.5596593134292686 ago,:0.13914955688964495 ago.:0.12476889644894401 before:0.09313564430644894 :0.08328658892569363 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.2782449166009587 good:0.23919618712710783 as:0.19904573386521324 fine:0.14454218185508902 :0.13897098055163126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3780674845500748 may:0.19812453433654917 would:0.19284017783633617 can:0.14709708778448205 :0.0838707154925578 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2605444798207623 that:0.2524562786202502 hat:0.2241024453658596 >:0.15052308647000176 :0.11237370972312628 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5143635107418151 that:0.33086836503241684 this:0.10877145225482886 his:0.02535495709203809 :0.02064171487890121 -,:0.34518094482328326 much:0.30958142066074623 little:0.17061916158623858 one:0.08845478828913272 :0.08616368464059926 -when:0.5143269010471855 from:0.24988153485070047 and:0.1486929293260928 day:0.05127075521685403 :0.03582787955916716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.28745874121040554 could:0.2122240621702804 would:0.16962200794249177 will:0.16904759026558278 :0.1616475984112394 -that:0.38932629607721736 which:0.29659228411121763 said:0.11764581443406692 what:0.10970582467618378 :0.08672978070131433 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -conditions:0.22455933776197287 in:0.21898063923498104 year,:0.20942331195412642 ;:0.18247943678360817 :0.16455727426531158 -it:0.3008179508737004 he:0.2862459532771004 It:0.19609795899084284 there:0.15514768893885422 :0.06169044791950217 -of:0.6875562142008533 in:0.17520433808746755 at:0.06108952890642853 and:0.038240057497441554 :0.03790986130780916 -how:0.5620243258989192 nothing:0.1262323099877793 enough:0.10886216912278926 him:0.10298823852456852 :0.09989295646594391 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -greatest:0.2717230706448164 great:0.23928076903491077 proper:0.2065569712557682 utmost:0.15629173853010953 :0.12614745053439508 -any:0.48749999491427026 the:0.15525921809051427 this:0.14007751423687242 no:0.10945580104981123 :0.10770747170853179 -before:0.2926073721702837 seen:0.2076745135831092 have:0.18854819932177577 had:0.17800633100674498 :0.13316358391808628 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3497191537883011 done,:0.1881230472281815 not:0.17897210977396855 so:0.14450451725560515 :0.13868117195394378 -the:0.8594980005581422 our:0.04384241660743275 tho:0.04197211135644421 a:0.03268231210346381 :0.022005159374516987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -meet:0.26318218299208773 say:0.2238948891594239 him:0.19245791879597127 marry:0.18621654118258402 :0.13424846786993305 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -young:0.5100063690162214 old:0.2764757859584338 poor:0.09927452706232544 American:0.05932691457060001 :0.05491640339241932 -with:0.8902492622791653 between:0.059799827151827065 of:0.03198893788706246 that:0.010600017675598757 :0.007361955006346298 -persons:0.28602365967722176 that:0.2393881104805356 interested:0.16822761757981586 times:0.16441630860446338 :0.14194430365796337 -same:0.25462929411156404 most:0.21526535020424703 whole:0.1988759979430219 debt:0.19109786716778734 :0.14013149057337976 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.6079476323883587 was:0.20198582399694398 can:0.06948733006665683 very:0.06437244094276397 :0.05620677260527641 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.29697887895581104 time:0.19384985812386196 place:0.18885985557539867 work:0.16419017027855629 :0.15612123706637207 -years:0.2886331323432269 weeks:0.1997383217286457 years,:0.192879973466957 hours:0.1657777940155911 :0.15297077844557921 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -some:0.30981892314051906 one:0.23659139228814668 sale:0.19132850777228771 many:0.15060577307030104 :0.11165540372874552 -is:0.24092962666712872 was:0.2279345508781126 and:0.2180411898650243 until:0.1702886992517961 :0.14280593333793842 -to:0.991329492785642 lo:0.0033555842376121075 not:0.0022688774155352896 and:0.0016866189076062588 :0.0013594266536043507 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -January:0.29883933835485355 July:0.23510419818019387 March:0.20852399201925118 April:0.13256079515918812 :0.12497167628651333 -found:0.3234076684373223 remembered:0.2202773322437868 given:0.18162208867405258 so:0.14885244180138496 :0.1258404688434532 -the:0.7217293391885523 his:0.12091002441907422 their:0.08420931306410466 her:0.03898670339721675 :0.034164619931052055 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -New:0.9143053472674747 old:0.034542030769091646 Old:0.026784831264455484 world.:0.016251258623920413 :0.008116532075057614 -for:0.6240425376802772 of:0.17218902353338095 the:0.08159997371310805 in:0.07216880267181816 :0.049999662401415554 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -deal:0.5907301958349878 sense:0.12161705304350205 condition:0.11174991563087111 many:0.10918125879914733 :0.0667215766914917 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -times,:0.3651916370696664 kinds:0.16511082197008284 parts:0.16441896748087903 places,:0.1570688274607939 :0.1482097460185778 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.43281976912227016 in:0.20917426630435124 for:0.1461026259979018 to:0.12495414146896457 :0.0869491971065122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Federal:0.5162746888435396 British:0.19454099861776905 National:0.1133583696394982 General:0.096333260486571 :0.07949268241262213 -re-:0.388852347612027 pro-:0.27319572588973756 in-:0.16443652624736263 pro¬:0.08694826789787519 :0.0865671323529976 -100:0.4164992918627912 20:0.2180623605320145 200:0.15012973104222338 17:0.11896232088005886 :0.09634629568291211 -of:0.7294256394983897 and:0.14777560540600004 in:0.07074108636300586 from:0.030041635668801477 :0.022016033063802908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4715843300042218 the:0.2652829135133135 physicians:0.10891135300789642 more:0.09165686582944572 :0.06256453764512251 -in:0.3150849384113355 of:0.2615759113094107 on:0.21827033436128723 to:0.10769634742428012 :0.09737246849368646 -to:0.56396261057461 not:0.30849482819448554 never:0.08275218436262392 you:0.02494826921215821 :0.01984210765612258 -known:0.6504719414055063 known,:0.2120484305441275 done,:0.0492592105125626 up:0.045364626268521696 :0.04285579126928186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.4389243327734899 better:0.19801865761427156 greater:0.13698735978261667 larger:0.130541279437963 :0.09552837039165873 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.55947145266944 enough:0.19613158308680986 necessary:0.10099015975518359 ;:0.08816341424625572 :0.055243390242310876 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.30732009916538916 which:0.3009406727551868 this:0.16266424125747084 what:0.11489791251065991 :0.11417707431129326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.26299600735495104 on:0.23320417285912767 of:0.20398544587733183 and:0.19831637767397936 :0.10149799623461014 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out:0.42368635734020227 it:0.18479384463037832 him:0.1430350669835986 them:0.12607231123308588 :0.12241241981273479 -that:0.6684242237318163 as:0.22331274560025707 far:0.039355374657809056 when:0.03570998834403659 :0.03319766766608093 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8248640036024979 a:0.11033075036014403 tho:0.040574461644795064 tbe:0.01678233074018064 :0.007448453652382234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ject:0.8384160650824329 tain:0.07481950395176605 scene:0.04089869328718526 tained:0.029240906863109095 :0.016624830815506565 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3987119044236749 in:0.24947521940430645 on:0.12209109432376605 for:0.12065767267684767 :0.10906410917140505 -sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.31346645598530115 it:0.224592836064541 we:0.19009924859101401 he:0.16428035224673251 :0.1075611071124114 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.25345873077828474 and:0.251068121029271 that:0.25096632362688404 for:0.13803868920864637 :0.10646813535691389 -was:0.4145615779900677 wore:0.1704255374469158 is:0.1523633505766441 then:0.15031894634446513 :0.11233058764190743 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.9028356449477838 Of:0.08123792933210261 ot:0.008307826827679632 ol:0.0054082616126678645 :0.002210337279765975 -past:0.4093537187164796 last:0.21871982152378075 least:0.14710556148315726 next:0.12140270603841553 :0.10341819223816691 -in:0.3145266481950316 of:0.3044772572229085 to:0.1565927392886817 at:0.1460949348925018 :0.07830842040087628 -the:0.3726767339157255 J:0.193369737931026 M:0.1645554858091777 W:0.14800555942388186 :0.12139248292018902 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -particular:0.5175709049127722 more:0.1651134387350388 special:0.15488036475678316 considerable:0.108377984148518 :0.05405730744688772 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.671376285726277 was:0.19850324512906298 since:0.05246832017122098 is:0.04083369143802711 :0.03681845753541205 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.7024841807973518 citizens:0.10398298783710215 who:0.06987447055035255 troops:0.06212424455929281 :0.061534116255900814 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -session:0.48471394904165277 next,:0.19559744448087557 session,:0.11966288070376349 election:0.1058955470835707 :0.09413017869013746 -of:0.38993464466054334 that:0.30817678057146175 and:0.12040781042602669 which:0.10523251806751582 :0.07624824627445247 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.429278526174986 government:0.23567160187499306 Government:0.12053817576504845 party:0.10820161624053835 :0.10631007994443423 -the:0.6469929754964362 his:0.13039794085291367 my:0.12000787171593355 an:0.05634965684986068 :0.046251555084855935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.288669639300302 as:0.28652648466532116 regard:0.15287672898029198 according:0.14955031251139042 :0.1223768345426945 -of:0.5423032209809474 in:0.13171258001319644 ago:0.1280807622671923 from:0.12680062233953782 :0.07110281439912616 -It:0.37671496222290224 it:0.2852719641317484 he:0.13540993896771672 that:0.11331452578406093 :0.08928860889357161 -the:0.5082630772576067 without:0.1717910230378693 that:0.14352693269437822 rare:0.10926209188162428 :0.06715687512852142 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4400741706909161 United:0.42874515511004313 these:0.049539096813676284 those:0.04587329697317851 :0.03576828041218586 -have:0.41747734848010415 was:0.3311052591097342 had:0.2052787006653227 ever:0.02464833830766315 :0.021490353437175872 -made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9060534341861178 tho:0.040480085969067 said:0.03081365839662684 tbe:0.014139105588377542 :0.008513715859810943 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ports:0.3875354031252575 they:0.3057108683789504 we:0.12797748785430896 sources:0.09074149264329501 :0.08803474799818807 -to:0.5692744395239163 and:0.35395964425309684 a:0.03037228941373259 horses:0.02589081243070421 :0.02050281437854977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5247196609249463 some:0.19928290191615905 a:0.09926852859661496 this:0.09783567712872245 :0.07889323143355711 -of:0.8430584500770908 in:0.05672022983740698 to:0.0390212198579286 and:0.038864359530900006 :0.02233574069667352 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.41649910337189006 a:0.40859429607882647 her:0.09968196711995247 his:0.04100556988883664 :0.03421906354049438 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.32217325311431927 for:0.20411362424243623 from:0.16966011303413034 on:0.15987162507737884 :0.1441813845317352 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -therein:0.5673994787031837 hereinafter:0.4064591049887348 above:0.01624945000321685 herein:0.009557389946398692 :0.0003345763584659193 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made.:0.37308694776376405 made:0.25544919388717946 done.:0.17280425844153233 found:0.11161554201333151 :0.08704405789419269 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8745552150885637 this:0.051637188414458746 tho:0.030649276837279138 a:0.022362558075969236 :0.020795761583729262 -of:0.2498071723332316 on:0.21843958344851025 upon:0.19106279959091338 to:0.1782322678289256 :0.16245817679841928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3830862868227035 of:0.32890281988232334 if:0.11600634876664005 all:0.09614282858823153 :0.07586171594010162 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 -and:0.26248618321347983 again:0.2588197380373711 on:0.24613377886491764 again,:0.13225128174676104 :0.10030901813747042 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.25005961022080775 want:0.21027051696870752 able:0.1913014810460322 and:0.17871960292450434 :0.16964878883994816 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8596062088643626 his:0.04475432772139557 this:0.038307284125977066 tho:0.032236235181075185 :0.025095944107189586 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.6524007431404812 a:0.13645725888722351 the:0.11290259855924359 much:0.058367446255864354 :0.03987195315718727 -in:0.3658469304489 took:0.28039694188295505 had:0.12967862473052275 the:0.1277694489164172 :0.09630805402120503 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -before,:0.27646910825782844 morning,:0.18513006055989786 night:0.18308310698529454 ;:0.18260446354008486 :0.17271326065689424 -been:0.2653346834738978 be:0.20767353195633642 saw:0.20242689371826886 had:0.17100614160869643 :0.15355874924280047 -that:0.5641716894875966 if:0.1889094431675402 then:0.10226941534948743 when:0.0859011328662594 :0.05874831912911664 -after:0.4223918763921751 on:0.16254465380991287 upon:0.16066199851589721 to:0.13881572377081663 :0.115585747511198 -to:0.4321887447517647 in:0.3051687285286587 from:0.115055430645434 reduce:0.0821742415427336 :0.06541285453140896 -one:0.2683140205387431 two:0.2613964256103944 person:0.18597162537178472 order:0.14379244286210743 :0.14052548561697034 -as:0.3914749872170536 so:0.17475795964918658 then:0.16631318384053217 but:0.14760705245304828 :0.11984681684017927 -you:0.30603378684155425 it:0.22819760630967542 all:0.196271654816174 so:0.18689637050242408 :0.08260058153017232 -will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6022001801105787 or:0.10768191765232306 no:0.10569767027023384 the:0.10053924663213602 :0.08388098533472835 -great:0.2989359737528927 high:0.2765570581577079 slight:0.1602160585603944 strong:0.14065427049571771 :0.12363663903328706 -to:0.3688335624087515 on:0.35609111636055085 and:0.10541019694206227 upon:0.09820233286042952 :0.0714627914282058 -He:0.4777798831896987 I:0.22058160925490353 We:0.10899449211122965 It:0.10298823394742301 :0.08965578149674501 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -democratic:0.3278083130694424 republican:0.23599732723083813 Republican:0.20671735681879802 Democratic:0.20454169530415414 :0.024935307576767245 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3644713840089572 they:0.21723965732181205 but:0.17475939614036323 who:0.15059657967045564 :0.09293298285841195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -attorney:0.4656501173860456 court:0.42115806497913544 and:0.04856159485867925 courts:0.034856947429746675 :0.029773275346392847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3179048517392198 will:0.27520142036734635 and:0.2011697839505526 would:0.12910000346405626 :0.0766239404788252 -by:0.3717247169314916 the:0.3663061205723157 a:0.1553746041998033 in:0.05799855853885085 :0.04859599975753843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.4482809956281203 them:0.37243400887329053 me:0.09546820134805989 us:0.047401225610109 :0.03641556854042053 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -Mr.:0.3715334348445974 law,:0.24610030853521622 law:0.14242006878024704 him,:0.1320353526388377 :0.10791083520110163 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3776460925245073 upon:0.21304274304853013 in:0.1753788825882906 on:0.12992072788166825 :0.10401155395700365 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -came:0.27793411330850687 went:0.25922747068350666 with-:0.20820891077545392 was:0.13307786103750704 :0.12155164419502539 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.37145880878974064 was:0.1924633615815205 had:0.19067817287557953 saw:0.13705415320942008 :0.10834550354373935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more.:0.4923545496644369 good.:0.17210864904928372 purpose.:0.1177240150459896 other.:0.11027596261384107 :0.10753682362644881 -miles:0.3642603898344749 and:0.18913090717619924 or:0.17210338312195922 years:0.16986722965110862 :0.10463809021625796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3961738200821871 so:0.1725975541193058 the:0.1484817040321289 too:0.14270418466015455 :0.1400427371062237 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ion:0.2573221396113938 day:0.20367152697918325 e:0.18663036459475366 one:0.18230889989161767 :0.17006706892305176 -now:0.46960785420375534 a:0.3277494040765566 no:0.0719167183556003 the:0.06758285494929551 :0.06314316841479217 -regular:0.3018566242151768 whole:0.2196376313493547 British:0.17987721073760585 Union:0.15368339814466667 :0.14494513555319608 -M.:0.30072369256335485 Mary:0.2581918432361236 Smith:0.15999454655459133 King:0.14717151399775028 :0.13391840364818 -here.:0.45542260005463436 there.:0.43976439118512445 at:0.04184281738513862 in:0.03976278521965472 :0.023207406155447943 -be:0.7421208303989175 the:0.12479007778284115 have:0.05369681683124798 bo:0.04146508354022549 :0.03792719144676791 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5408841756969746 to:0.15129986351903074 in:0.12368733409621603 for:0.10445071161620331 :0.07967791507157537 -time:0.376531571668328 lots:0.2276218541694941 south:0.15003167444569 north:0.13327532121510824 :0.11253957850137972 -with:0.6049288642112182 between:0.18199020278793612 of:0.1483822664009257 in:0.04372156153159267 :0.020977105068327295 -been:0.3639717305455587 made:0.2682868979784685 received:0.15449417177273292 seen:0.10766838459022374 :0.1055788151130161 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -North:0.3113759258156235 old:0.2779424827634395 great:0.155712663151127 whole:0.13190668078516235 :0.12306224748464764 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.45858758319523857 of:0.19163440387579428 and:0.13639711042252112 is:0.11373911770106722 :0.09964178480537894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6834147613577217 it,:0.12301904364544584 and:0.07427996445086678 or:0.06185826020492475 :0.05742797034104099 -city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 -of:0.6726321151346449 .:0.10260078539987867 Mr.:0.09486394611076443 and:0.08407502881476955 :0.04582812453994235 -who:0.882054897767623 which:0.06007169326088276 that:0.02547856103352815 they:0.016426377845020004 :0.015968470092946045 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8909828281481327 by:0.0342172828702744 ot:0.030492555493546625 ol:0.026961762889396553 :0.017345570598649596 -came:0.2934433501778342 went:0.1969072912925473 got:0.18445887026896718 took:0.18197046918470522 :0.14322001907594603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -deal:0.5523390010904851 number:0.13034774150088962 majority:0.1170653489874489 many:0.10535134462546654 :0.09489656379570985 -to:0.36446946074860387 in:0.23239115705048882 done:0.17900493542743207 of:0.1255119016027749 :0.09862254517070046 -of:0.2938416208024923 to:0.21346037311010016 in:0.18658027175605824 or:0.15727651925345323 :0.1488412150778959 -the:0.5939534987704579 an:0.17041661040958284 said:0.09562020407626151 his:0.07637034976894465 :0.06363933697475296 -and:0.3627947392158834 in:0.26858264405046783 into:0.16109439111856386 as:0.13182429054125258 :0.07570393507383223 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -power:0.4484163642245352 bark:0.1904882899419636 press:0.14511426205069278 necessary:0.12321359924137582 :0.0927674845414327 -are:0.8355516234393487 were:0.10989581009234509 and:0.01987290649683684 by:0.017562858305338255 :0.017116801666130957 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.682114321606906 about:0.1010376996746824 than:0.09813987783861162 below:0.06500164298129864 :0.05370645789850135 -the:0.6906059806494043 a:0.20564358324358226 its:0.03711039005734978 tho:0.0352075424074157 :0.03143250364224808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -New:0.2171634818904436 dozen:0.20236133049530292 man:0.19691236096736395 few:0.19439045466781707 :0.18917237197907252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4239044618936102 been:0.24607190755880212 not:0.16812697086531042 so:0.13409149734615486 :0.02780516233612227 -would:0.4073571207139694 will:0.40357224348403187 may:0.11650898916602635 might:0.04197697945857304 :0.030584667177399338 -made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 -was:0.460452545405627 and:0.25158749880843617 were:0.09870546721637959 is:0.09785238247560696 :0.0914021060939503 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -probable:0.2587176468755314 one:0.2196276781261405 anything:0.2077341425418575 in:0.16697208976682934 :0.14694844268964113 --:0.2615143651348638 i:0.25666925012051534 be-:0.23556171254842048 be¬:0.13922298152953055 :0.1070316906666699 -or:0.44379321388402304 years:0.20159766257837844 men:0.1413215911794033 times:0.13210039209441732 :0.08118714026377803 -find:0.2539389919160987 found:0.24784961025770852 are:0.23066421143746954 were:0.1491622234962161 :0.11838496289250729 -bill.:0.33128232369004446 position.:0.23113422257507446 state.:0.16587169444044658 States.:0.1498243111876684 :0.12188744810676598 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8894846474056033 tho:0.043468692519603 this:0.03398768642972818 civilized:0.019010539774900526 :0.014048433870165064 -in:0.28163892844421706 to:0.2068644969223604 of:0.18795667434435198 and:0.16384955639676269 :0.15969034389230785 -city,:0.2956365855045642 country:0.2521112723997798 act,:0.1603579638384442 country,:0.1573023981720645 :0.1345917800851474 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.33838097047830823 in:0.3260420608769565 of:0.12879570602579318 pro¬:0.10693680938810081 :0.09984445323084123 -case,:0.43014406221326834 therein:0.20252579095658274 when:0.16861560773520928 that:0.12198692290390951 :0.07672761619103007 -said,:0.3349882329347588 made:0.2208625850210736 did,:0.1729910825100002 thought:0.16876765255574697 :0.10239044697842033 -the:0.8462828641411262 a:0.06310781706564017 our:0.03970345400641372 tho:0.03525072591267036 :0.015655138874149488 -to:0.913327483059537 and:0.04344802464312337 will:0.029002825987707273 would:0.011597453984292436 :0.002624212325339919 -to:0.7238623218448622 may:0.1191751033642248 will:0.07837859274193287 would:0.04511059998345777 :0.03347338206552235 -which:0.46435900643850536 that:0.21757519296252192 and:0.14520705888248198 to:0.08893327184105437 :0.08392546987543628 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9427651912547891 and:0.018044311773997544 in:0.01646092777010168 is:0.011479078386349054 :0.011250490814762554 -ten:0.29022353686007585 two:0.22085705810578826 three:0.1768108641435402 five:0.15699702898267173 :0.15511151190792402 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.2781902004134838 for:0.23436985815135153 let:0.18638370460148754 in:0.1526696009780129 :0.1483866358556642 -have:0.5057182724946927 were:0.19938376354707515 are:0.15377799084767066 had:0.12952495255966548 :0.01159502055089612 -be:0.6139904896971081 have:0.11203878510805251 take:0.10483345523323213 only:0.09469417191296225 :0.0744430980486449 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are,:0.5714560607806157 have,:0.24585013852904086 may,:0.07387685885242126 trust:0.05793676345247902 :0.050880178385443196 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -the:0.6319045440612131 a:0.31583786797552826 tho:0.027970083190207887 to:0.012162605130512778 :0.012124899642538038 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7705784053511326 any:0.06898169575907526 tho:0.06404295660733131 an:0.05027945518073707 :0.04611748710172384 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.41529615184966645 for:0.2654379446671425 in:0.1716070751857939 and:0.113591257269163 :0.03406757102823429 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4337496006661466 sell:0.2925498483533703 arrive:0.11203937616289185 not:0.10127666864447234 :0.06038450617311897 -r:0.27289871983383307 -:0.24205398957334245 d:0.19104266052684304 real:0.15249261558901547 :0.14151201447696607 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.2735952418931577 that:0.27231582965676926 which:0.2298014817103934 leaving:0.12406684007474124 :0.10022060666493834 -them.:0.4828563666314067 it.:0.25450866209638895 life.:0.09986113657446609 men.:0.09259081797876241 :0.07018301671897588 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -recorded:0.5102658535580745 distributed:0.16743888907926077 even:0.1177315538220704 are:0.10739567493586034 :0.09716802860473389 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4382854280847476 they:0.18063194158956475 I:0.1591114305784979 we:0.11227410683259853 :0.10969709291459123 -two:0.31998711305060484 more:0.23555506470456888 three:0.20975249557898917 four:0.1190952221977677 :0.11561010446806937 -result:0.22673795146185902 number:0.21981406619343893 amount:0.2083861426766136 people:0.18921046779946343 :0.15585137186862505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4744674901924946 that:0.24997689456635483 which:0.13167059777275608 as:0.09506694874643087 :0.04881806872196357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -of:0.40422518860608264 to:0.24886233555790463 in:0.13613564022750027 for:0.12594527786600498 :0.08483155774250759 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3894203696630528 was:0.21158372069733666 of:0.16347180594087538 or:0.14940850525219096 :0.086115598446544 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.380838494605282 two:0.3497489341980191 directly:0.10170058350286058 three:0.09370703241331155 :0.07400495528052677 -a:0.8000999910059899 the:0.14607029185283077 great:0.026579159830669667 large:0.01914156698347945 :0.008108990327030234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5973254016434285 several:0.14911333237282767 those:0.091273589589006 some:0.08618179410776351 :0.07610588228697437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -place:0.2706940696727083 people:0.2179487114971026 men:0.1769490913470645 was:0.1730209036534874 :0.1613872238296372 -but:0.3229911810463554 and:0.26677311828262257 is:0.14899155615473716 if:0.14318234065292706 :0.11806180386335781 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.3873252968747829 side:0.3261486284260647 end:0.11781486733524942 part:0.0987508632840418 :0.06996034407986129 -the:0.891010164586811 a:0.05741160991226474 tho:0.033193321734515085 tbe:0.01273060601716179 :0.005654297749247285 -that:0.9646541245497186 what:0.01255928391876691 if:0.012123476614555448 when:0.005334130795246365 :0.0053289841217127164 -the:0.5510810798703982 an:0.19527629762774024 and:0.09558217376900492 of:0.07917746259447572 :0.0788829861383809 -to:0.324510671178833 of:0.32165722475541886 that:0.14694017329912015 against:0.11035309057205103 :0.0965388401945769 -the:0.8130798585846363 a:0.10815686109259746 tho:0.0328869358209085 his:0.03266973900334327 :0.013206605498514552 -own:0.39251127063996 dear:0.18070374768550196 little:0.17371570217093138 mother,:0.1340043513163172 :0.11906492818728942 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them.:0.4828563666314067 it.:0.25450866209638895 life.:0.09986113657446609 men.:0.09259081797876241 :0.07018301671897588 -to:0.2770369793805273 and:0.260860175975903 with:0.18160266916071133 in:0.1590713199750207 :0.12142885550783776 -the:0.5749585785053237 d:0.3454949305836429 tbe:0.027938703474483267 ihe:0.02724984350614047 :0.024357943930409635 -be-:0.9068715399508336 |:0.027793280385361288 be:0.025105422358211386 I:0.02107246221437234 :0.01915729509122147 -in:0.23915571073129302 for:0.21974691115935913 the:0.2190996797150278 to:0.18964983679840283 :0.13234786159591716 -out:0.26855544425516714 up:0.2356337455447198 forward:0.18871059913457877 back:0.15870840571244546 :0.14839180535308882 -a:0.6394854936971411 the:0.2206942222523131 his:0.050012444860256494 such:0.04923340276797579 :0.040574436422313516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.45287835168366597 additional:0.1500895709038852 extra:0.14582541823756176 a:0.13261683864939067 :0.11858982052549641 -in:0.32118397354207057 that:0.23676726767576567 to:0.22244148407336878 at:0.1133540442288003 :0.10625323047999466 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.7738970584035777 this:0.07050839427607174 an:0.06292138083636022 one:0.06274213855956019 :0.02993102792443036 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.31707247529642424 question:0.24927980748801457 bill:0.16121796282635298 well:0.1412767584767507 :0.1311529959124575 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thought:0.29470780391101764 says:0.23892558005805375 had:0.1634518018687721 then:0.15436074633276517 :0.14855406782939148 -Christ:0.4936469498187686 went:0.15985544511966193 came:0.15066383703334696 is:0.09896573062504019 :0.0968680374031823 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.28322020810287124 put:0.20716629249854848 took:0.20460834435500888 came:0.15411734927472043 :0.150887805768851 -so:0.2905426530446972 that:0.27469937863766936 as:0.23770704048385966 before:0.09994539063627389 :0.09710553719749988 -York,:0.6920903510689234 York:0.1522457329680088 Mexico,:0.060974917160907874 England:0.05093121006192603 :0.04375778874023401 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -life,:0.28540048368565357 life:0.2533624274522288 sale,:0.18436166692146186 property,:0.14042114733107872 :0.13645427460957704 -made:0.2929635136981908 called:0.20514127171024488 ready:0.18454820896968768 paid:0.17135683871380902 :0.14599016690806774 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.5688691995997147 State:0.11622412912140526 court:0.11360395807372128 Board:0.10643338582183512 :0.09486932738332357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9380926547188496 present:0.01965487366158194 in:0.01618866654395095 to:0.013159725453666027 :0.012904079621951472 -a:0.23693857113429903 in:0.23280131977147026 the:0.21564823507403605 is:0.16119362891977407 :0.15341824510042054 -knew:0.23304828827190358 was:0.2248407255316116 thought:0.18301175409849868 says:0.18013828024777293 :0.1789609518502132 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whom:0.35459524778166396 which:0.2366557904775092 that:0.23322769834999452 what:0.09421541358655347 :0.0813058498042789 -date:0.44155899340185 though:0.24519479383597345 then:0.10928222270778934 charged:0.1091152126104536 :0.09484877744393379 -in:0.28365465127876033 of:0.24700463519309573 on:0.17133391178104518 to:0.163006566795131 :0.13500023495196767 -before.:0.38917171522516536 and:0.3077314088326312 that:0.14111539971406492 air.:0.09288960480947102 :0.06909187141866757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -of:0.2558678945890786 in:0.23780544882530216 from:0.1975269997559555 on:0.17988847914013809 :0.1289111776895256 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to.:0.7706142851138766 to:0.1808836739857886 to,:0.03734578399810816 ::0.00675372147529999 :0.004402535426926723 -electric:0.9265596933692943 additional:0.040119578720015786 interesting:0.011976289677713912 extremely:0.01102994530628833 :0.01031449292668784 -the:0.545084757830778 these:0.30419553191934967 other:0.05571594541872197 such:0.0526609922348508 :0.04234277259629946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4164129343813728 dollars.:0.295551759787722 years.:0.14026120920319907 feet.:0.0829349275617936 :0.0648391690659123 -be:0.3739349765979396 been:0.290902575505458 do:0.16777539788132598 yet:0.08502530757761882 :0.08236174243765758 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3685579455062032 other:0.3424474496467239 raw:0.1681199699120635 all:0.06573017683912864 :0.05514445809588077 -to:0.4759997845920536 told:0.23179734663198923 made:0.1363987551969579 given:0.07890638276633899 :0.07689773081266033 -the:0.5337257494776403 a:0.27571756842104894 other:0.11087395157391226 raw:0.0417610021167272 :0.03792172841067127 -I:0.566915756093686 and:0.1489360455980788 he:0.10813096825568082 it:0.10494079230022188 :0.07107643775233236 -excited:0.44380869995870953 increase:0.21152359995449466 increased:0.18412157154721362 extended:0.08937259831581464 :0.0711735302237677 -it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 -we:0.3643295412720503 I:0.33771674263056434 will:0.11728350788654647 may:0.09418815072982693 :0.08648205748101177 -to:0.35791735412983877 in:0.2986577502935403 from:0.12048180555810557 on:0.11423486742002487 :0.10870822259849057 -the:0.5429120289977816 a:0.2975071439563829 being:0.06596701721097128 his:0.05213828805559815 :0.04147552177926603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -schools,:0.2609132821051426 good,:0.22359790689037232 opinion,:0.18805762115390826 service,:0.16816250620093154 :0.15926868364964536 -the:0.8819915559323099 which:0.056970000564927195 tho:0.0337585960589448 tbe:0.019185637887609956 :0.008094209556208109 -but:0.6844400400395741 a:0.15100146764003441 two:0.062440252357212025 and:0.05920932390242325 :0.04290891606075602 -federal:0.33964953948072224 British:0.23384565175157934 city:0.15546579181679032 German:0.13647851268905795 :0.1345605042618501 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -coast:0.417963310224612 Railroad:0.18898516802231702 avenue:0.1623991779434231 railroad:0.1211304484942985 :0.10952189531534953 -and:0.6077291215133233 but:0.18898229421124063 or:0.07519645276070973 except:0.06534412675988238 :0.06274800475484407 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6986762955476941 a:0.20073598472718612 his:0.034973159161401354 this:0.033022053996167276 :0.032592506567551305 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.32229690172197867 but:0.2600514425651857 for:0.15066934785170655 in:0.14106948727885513 :0.12591282058227413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.43254826438236765 lode:0.19300452192887638 coal:0.16089051348104136 best:0.11097850382085071 :0.10257819638686382 -mortgage:0.34292648780196966 that:0.22134016466980921 petition:0.15182642168669083 county:0.14562874252475172 :0.13827818331677863 -of:0.710931265619714 and:0.14804629132862415 in:0.07481742114213076 to:0.03315731251660487 :0.03304770939292619 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -founded:0.4973497135856374 as:0.24477894911700843 settled:0.10232503785421786 and:0.08530333378639264 :0.0702429656567437 -and:0.23524514074566752 of:0.23202946505964744 reported:0.21618720244408893 asking:0.17846544338276008 :0.1380727483678359 -part:0.6052874064406949 day:0.10606026043057953 history:0.10479169317515884 hour:0.09896549557063117 :0.08489514438293567 -than:0.7131984663670039 or:0.2438184002744286 about:0.021876529991545348 for:0.010667405482047108 :0.010439197884975033 -of:0.8862325289769349 and:0.03975132322100345 in:0.036473715915438645 to:0.019597855363082194 :0.017944576523540857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.3226760403150322 will:0.2822694430741013 could:0.1425697610405298 may:0.13173375946749338 :0.1207509961028432 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.34158231410347106 said:0.24391936336744652 order:0.24215339174540285 all:0.11386963032839055 :0.05847530045528903 -an:0.6728208314102484 the:0.25980185474938505 its:0.02312735566862929 of:0.022837473473213712 :0.021412484698523644 -people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 -The:0.7085537816086023 This:0.13417557801060262 In:0.10475020723702555 Tho:0.03003585332058089 :0.022484579823188553 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.41377884140412674 England:0.17361979493490698 vain:0.13872672039830106 this:0.13712488070407064 :0.13674976255859456 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -others.:0.34969338916239434 children.:0.2555443375850845 friends.:0.15595607302443615 wife.:0.14177712289247182 :0.09702907733561308 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3585315263896008 and:0.31152742830313884 which:0.12197251223005827 as:0.11537271632738645 :0.09259581674981562 -it.:0.42463367840287586 America.:0.19476572265509684 them.:0.14396443577860119 Washington.:0.13397389655015335 :0.10266226661327278 -though:0.8838749655147843 ways:0.073477230447075 so:0.0205919419586824 ready:0.016656203047421804 :0.005399659032036493 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -which:0.727671294730938 these:0.09770567781788281 that:0.0930075864151674 all:0.044947838121668124 :0.03666760291434374 -delivery:0.4989501716318931 holder:0.26591015227414294 use:0.07962823793852608 entry:0.0785246846009202 :0.07698675355451771 -he:0.4353508710469657 she:0.17290161239160556 I:0.15702139826863426 they:0.14305695229197138 :0.091669166000823 -of:0.8782187388644859 in:0.05190446835713195 it:0.03308519531994289 all:0.01946722551963269 :0.01732437193880651 -that:0.5683718522648284 in:0.13423198772155023 if:0.11867278594027213 how:0.09282348479470896 :0.08589988927864022 -the:0.575723593497975 both:0.20311135068404917 their:0.08370856102831248 two:0.08140614216376071 :0.05605035262590266 -The:0.7100862774278117 the:0.1863923754270634 Its:0.039685219473422254 their:0.03650968083559838 :0.027326446836104155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.35253306138190355 high:0.20526820156810408 same:0.18673590503364165 highest:0.15400303635554363 :0.10145979566080712 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -to:0.3987119044236749 in:0.24947521940430645 on:0.12209109432376605 for:0.12065767267684767 :0.10906410917140505 -the:0.8887209903366957 tho:0.048074635854010596 a:0.0472092865561041 tbe:0.010836917826177933 :0.005158169427011555 -and:0.42208742341588656 which:0.23973591280434045 they:0.12959138418309585 we:0.10972527217523687 :0.0988600074214401 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.49489931239773505 he:0.24021211241986853 it:0.11913356478540141 claimed:0.07828975039869902 :0.06746525999829592 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thing:0.2589744218772166 enough:0.20729728230657238 little:0.20694899366282798 looking:0.16426452826492935 :0.16251477388845376 -it:0.43148496703840744 place:0.20296764400261316 there:0.14340316605769024 prisoner:0.13226139888293664 :0.08988282401835263 -time:0.32510345049785794 thing:0.1822324342765936 candidate:0.17791274734455906 reason:0.17078754220577874 :0.14396382567521065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3975922472399683 with:0.28022971031356747 to:0.14230738537644713 of:0.11482216578227547 :0.0650484912877417 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -others.:0.4021272406355896 children.:0.17700551140968465 wife.:0.16179531225908292 night.:0.13250235032308277 :0.12656958537256005 -the:0.48817244701690937 these:0.21947562255181402 his:0.10935552875855217 business:0.10175350633585038 :0.08124289533687408 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.3565511933179621 part:0.18417554859008492 majority:0.16254683969320693 member:0.15202040532160624 :0.1447060130771399 -in:0.2845449419757905 and:0.2122001269786216 so:0.1758237782663363 the:0.1715842818723185 :0.15584687090693328 -and:0.44376432472949223 used:0.24152144918723256 run:0.12792713008359446 waiting:0.11396761375812131 :0.0728194822415594 -with:0.5505503453218591 in:0.1653450291756375 on:0.12410440588028367 by:0.080044410831982 :0.07995580879023786 -be:0.6675084231875636 not:0.23783328481810348 bo:0.04059187794775408 have:0.03481267004244147 :0.019253744004137343 -as:0.6081022099383774 to:0.11221765801758535 on:0.11133231850107014 in:0.08836484804425038 :0.07998296549871661 -the:0.43267313364573523 of:0.19619686859687777 some:0.1401748694653548 within:0.11648511672362888 :0.11447001156840342 -made:0.518199917583272 in:0.14696883152184906 found:0.14082067212125995 held:0.1033644880124015 :0.09064609076121759 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -1:0.5835052117540959 I:0.16874037618544127 2:0.1305001579109393 9,:0.0651416073855683 :0.05211264676395517 -ways:0.5778557424098274 most:0.3861681667893232 though:0.01651544554711875 ter:0.01519956588058547 :0.0042610793731452995 -known:0.4935097165723829 distributed:0.17169947992199444 made:0.12345517088532672 scattered:0.12238735488212216 :0.08894827773817371 -the:0.8146535519298496 and:0.08439602351880413 tho:0.03723137729966905 a:0.037132283498103484 :0.026586763753573786 -to:0.7517611010783593 they:0.09156971986585971 can:0.06936882633624535 you:0.04834781512638807 :0.038952537593147506 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9536063318648471 and:0.022161308594154105 a:0.014269936808606484 lo:0.005806507359498248 :0.004155915372893888 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.2908393200290214 shall:0.1963854895172375 to:0.18556293730632822 should:0.17633804214909982 :0.150874210998313 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4006078317118906 in:0.38691149438629385 the:0.1606421782260971 In:0.027658257358748498 :0.02418023831696993 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.6733560530296041 on:0.14542256979333917 In:0.13835081230850285 at:0.021833733904878094 :0.021036830963675795 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.9184684559731168 comparatively:0.03398442894222756 very:0.021120585637208974 so:0.01579155575040621 :0.01063497369704054 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -a:0.41553391897907166 post:0.19928106809988935 stone:0.17833040480486959 was:0.1053863850986485 :0.10146822301752087 -to:0.4216603306524696 into:0.16563402059988078 about:0.15531827876877616 up:0.14334781903761265 :0.11403955094126093 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 -all:0.479109142004893 that:0.22658340497209123 which:0.1293369991347514 and:0.09266875769279359 :0.07230169619547076 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -liberty:0.3649608057757107 and:0.2925413252362207 master:0.1775440327225215 that:0.08650312427210022 :0.07845071199344678 -the:0.6708303444732459 be:0.24799919254938144 all:0.0328711930959874 become:0.024504209012357687 :0.0237950608690277 -He:0.48933960571396373 I:0.307805889802768 She:0.08536779361746023 It:0.07133529450049383 :0.046151416365314266 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4577284306818429 war:0.16138858839222903 Minnesota,:0.14287714783450617 her:0.12401437431367282 :0.11399145877774909 -feet:0.2777841065336758 equal:0.2540989128193354 years:0.2142431823720469 or:0.13582319066440918 :0.11805060761053264 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -eighty:0.288595806856391 40:0.21010597617086593 80:0.20552264362771586 forty:0.18272916692337138 :0.11304640642165584 -this:0.4969995123764204 every:0.3200367862481354 for:0.08390347043409331 one:0.06196119107587389 :0.03709903986547677 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 -estate:0.6534469418893922 estate,:0.22172391744980333 property:0.10277416746890417 property,:0.015288909072874718 :0.00676606411902555 -the:0.5243831242178495 a:0.37620638235344206 Christmas:0.05313904554343568 another:0.024011605914792126 :0.02225984197048064 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -o'clock:0.8186789665526792 o’clock:0.12819478224443043 o'clock,:0.045394713205392324 minutes:0.004633694990479882 :0.003097843007017989 -the:0.8076914493020628 a:0.07782637206254056 our:0.057733880111234405 tho:0.03308012979526684 :0.023668168728895368 -by:0.43281976912227016 in:0.20917426630435124 for:0.1461026259979018 to:0.12495414146896457 :0.0869491971065122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.8661089087665743 had:0.08212496420101369 already:0.024921131820361906 not:0.017143546943098976 :0.009701448268951146 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -best:0.4920157745464255 other:0.21797219970002898 slightest:0.11705609066343478 new:0.08847526195930754 :0.08448067313080329 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.5829098825332275 next:0.15589214924300202 In:0.15570467773342103 last:0.08465675867435415 :0.020836531815995193 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Court:0.7012503443720537 and:0.08517968520157362 demands:0.08364114189645028 court:0.07128315097299039 :0.05864567755693212 -the:0.32466808058826246 in:0.23702776542547924 a:0.23478818401117652 this:0.10862087999422385 :0.09489508998085797 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7081969273002308 this:0.19446044100740084 a:0.06180168739898256 our:0.018725743820023493 :0.01681520047336234 -the:0.5594058173028241 a:0.18905000404892625 it:0.09709099845427832 those:0.08585438293654 :0.06859879725743147 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.40987263654370604 other:0.353193229966536 better:0.1368333543253861 right:0.06281153820720198 :0.03728924095716992 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -me:0.4761210936779658 able:0.15579682553659224 d:0.12450265507682762 chains:0.12274009994509205 :0.1208393257635223 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -legal:0.7219215282724637 most:0.22975779086988157 very:0.027315188959618077 more:0.010788504769534805 :0.010216987128501965 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -original:0.4776888005479573 same:0.14816036108014363 exclusive:0.14676596986156834 Federal:0.1298948702693167 :0.09748999824101401 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 -day:0.35904912187354876 part:0.19641201572190603 people:0.15796199757750912 end:0.15150200799912097 :0.1350748568279151 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3249775977357288 in:0.3023472978882229 of:0.1444711773604868 and:0.14017213526734548 :0.08803179174821606 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -has:0.8069333609778578 had:0.0794677784942402 having:0.05399621513842004 have:0.04513145126697851 :0.014471194122503282 -men:0.2912698690422179 feet:0.24747787177212993 head:0.22782918567845445 people:0.11999290032596716 :0.11343017318123048 -them:0.3336832564357497 him:0.28425746824557635 us:0.20154735955797742 up:0.09126589452741155 :0.08924602123328482 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.7854427177037997 or:0.1637034402632327 whom:0.017510635797417292 and:0.0172619317020659 :0.016081274533484503 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6994681604548113 and:0.13295029881134116 will:0.07661682867682215 should:0.053124961896333554 :0.03783975016069196 -the:0.6535524830357475 en:0.14537365096914065 a:0.0872790599013985 this:0.05755431469122159 :0.05624049140249168 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -be:0.8526549341095991 hereafter:0.07601558572077018 bo:0.053291450397164736 have:0.00971870570253229 :0.00831932406993373 -of:0.25081106383080026 to:0.22768746724823624 days:0.2194977026852811 years:0.1896351061280672 :0.1123686601076152 -reasons:0.22634620072728615 candidates:0.21832435191638838 remedies:0.1991136818758206 things:0.18166919977132726 :0.1745465657091775 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9066164805502437 tho:0.04064289040843499 this:0.023144503690250052 tbe:0.01549640341001273 :0.014099721941058446 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9762717966384664 ot:0.013758626893916761 ol:0.0062969528244016205 oi:0.0019512549544384932 :0.0017213686887767097 -before:0.41879172408333276 death.:0.4069514062569792 of:0.0697817257050053 the:0.06399752328439857 :0.0404776206702843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 -center:0.28614767835405924 south:0.21071883691999246 north:0.2081845291228014 west:0.14771793774799352 :0.1472310178551534 -and:0.24625273793949246 made:0.2048727211261507 caused:0.19583897645388101 ,:0.18745843666439868 :0.16557712781607706 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -which:0.28842789914351497 that:0.2752444906379823 said:0.2088548594944842 whom:0.1446050227172672 :0.0828677280067514 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4352332561645658 but:0.29615862444531227 as:0.1262354332074375 that:0.07372107021267571 :0.06865161597000875 -the:0.6621991408124169 a:0.22648562053187613 this:0.059063653477388414 his:0.029238591521077054 :0.023012993657241465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 -have:0.4887393217003701 do:0.18165549787009944 had:0.17736847078165197 are:0.08085728691784402 :0.07137942273003448 -say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 -him:0.5347244897948137 them:0.17666739330345183 me:0.11584593389394643 that:0.09176874195014277 :0.08099344105764537 -said:0.5129300566655146 final:0.20342894624786595 immediate:0.1004173954591638 prompt:0.09873266720929239 :0.08449093441816329 -first:0.5937984811648837 same:0.20609513822006736 second:0.11900692247919324 latter:0.04810032724339446 :0.03299913089246122 -is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 -to:0.40352056443907475 of:0.24172604914839932 and:0.17859065352194414 in:0.09776085294837432 :0.07840187994220747 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -better:0.2603398485517936 thoroughly:0.2228849766315824 wound:0.1979176056143719 subject:0.18902971954850992 :0.1298278496537422 -time:0.644990832215232 way:0.17245341340917655 one:0.0742965596040825 reason:0.06479547042386097 :0.043463724347647885 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.2670842029732967 the:0.21400093979327986 much:0.21289427202456337 this:0.19616057473881487 :0.10986001047004522 -the:0.9039824316697403 tho:0.03608150081079468 an:0.02147369633994448 its:0.020701500149760174 :0.017760871029760344 -to:0.24580854130999738 for:0.22198033515634738 in:0.21799885858853604 on:0.18687033496207345 :0.12734192998304575 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.26132247078714205 came:0.2515819944210586 took:0.2102314418243189 looked:0.14110467701591467 :0.13575941595156588 -of:0.9708949469739045 ot:0.013299986063216264 in:0.0064612853786222895 the:0.005385983436054895 :0.00395779814820202 -brought:0.6672115777480467 came:0.16463594916083896 to:0.07379802097690691 went:0.06330404996272321 :0.03105040215148416 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -necessary:0.2983126356312373 that:0.19993562281296834 else:0.18544398539287793 possible:0.17107116826753002 :0.14523658789538646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -minutes:0.35272837054089823 degrees:0.29115866208232966 miles:0.15850520562998613 feet:0.1345636156661917 :0.06304414608059429 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6428783483296241 not:0.13091404854381866 remain:0.09848144554750649 come:0.06846395201715164 :0.05926220556189908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -small:0.26013597347205586 half:0.25371809905006865 large:0.1879473354407213 long:0.1613663447870465 :0.13683224725010756 -he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -J.:0.30161646175596674 W.:0.24245101553436743 C.:0.19853115436311047 E.:0.13941714130982025 :0.11798422703673506 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4601081626032401 with:0.1626998135217435 to:0.1530669669828364 though:0.1235235890636219 :0.10060146782855812 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.7616470853439726 person:0.06728417488143436 year:0.06119755417422768 such:0.05984324537548725 :0.05002794022487801 -the:0.9330923868420726 tho:0.03707552931725558 tbe:0.01393426458463973 our:0.012567584088419634 :0.00333023516761235 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -purpose:0.24142285952381495 payment:0.2291369979276547 number:0.1797514507560867 amount:0.17950631741689538 :0.17018237437554826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4672130165431445 not:0.2507452677914416 a:0.20172929074054324 no:0.04343006137524556 :0.03688236354962498 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.28605250207667376 persons:0.2545305906446862 for:0.17715498537644073 in:0.14398466174767793 :0.13827726015452144 -and:0.41234489597256974 which:0.18952056862279787 he:0.1655231089708997 it:0.15656845776038655 :0.07604296867334624 -a:0.3934352838569764 the:0.37544545058920753 any:0.08900979572753553 no:0.0725699695580397 :0.06953950026824084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -addition:0.45117525212813114 order:0.2836174243931283 regard:0.18388502857632036 reply:0.04106111744362021 :0.04026117745880002 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5171713465028658 the:0.1891623309995455 a:0.14831195629272867 in:0.10881544562290771 :0.03653892058195229 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.28329834258434555 and:0.2473578951164507 that:0.24170506204781136 with:0.13755249501726172 :0.09008620523413077 -a:0.4884400423553446 the:0.39844484895745835 its:0.0417632107270065 general:0.0406490629578171 :0.030702835002373564 -years:0.3543932908905152 and:0.23371851579650327 years,:0.19116240733362216 or:0.12006652081970894 :0.10065926515965043 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3690857396169852 and:0.35601925793862343 here:0.11182408743857544 in:0.0879163853604494 :0.07515452964536636 -have:0.8768857915004611 had:0.04394988188457251 never:0.036330219010772574 who:0.024673568399572018 :0.01816053920462169 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -was:0.34164029160883064 with:0.20822958174906192 is:0.1725031461120452 in:0.13902277823330345 :0.13860420229675893 -in:0.5863105885787088 of:0.1617407484942074 In:0.10507752452225394 by:0.08316720333065356 :0.06370393507417624 -did:0.28829157371321046 could:0.24330719796753783 am:0.1900182008400474 do:0.1832299663455131 :0.09515306113369121 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 -of:0.6841017174074435 at:0.24904222731121867 and:0.031155630709526382 about:0.019479984844461742 :0.016220439727349673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -degrees:0.38587168618659057 deg.:0.3667225902780717 min.:0.12966036683668658 minutes:0.11609960686805086 :0.0016457498306003066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.6392051916780088 I:0.10995397603672584 At:0.08799392801252627 A:0.08719175490135915 :0.07565514937137997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5896269263694419 it:0.11836527647345652 confident:0.11114299727355595 interested:0.09898583683357598 :0.08187896304996964 -made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4416014899581615 who:0.18749378480793769 the:0.14088779876438837 but:0.11847794560759184 :0.1115389808619205 -and:0.2878669583241368 life:0.22705717508066423 conditions:0.21811524274014574 relations:0.138318468741205 :0.12864215511384836 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -together:0.6277875664645858 ing:0.1406250872152226 and:0.10391765843471425 was:0.08178780435160052 :0.04588188353387667 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -life.:0.22485432613847578 wife.:0.2178099823680614 head.:0.20251409893357594 death.:0.18728454379336884 :0.16753704876651807 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.6536069789749348 Their:0.14090574720952076 A:0.08537169570375387 Tho:0.06519563137059092 :0.05491994674119952 -that:0.7653944929944604 to:0.20950785887333181 as:0.013864494938008145 if:0.006234118450527623 :0.0049990347436721745 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -best:0.3685306001891695 new:0.17898760778665457 whole:0.17484129561428952 red:0.155536866342674 :0.12210363006721249 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8356065117525924 this:0.08594235119425245 tho:0.03558176633085733 our:0.022577406329665057 :0.02029196439263285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city.:0.2687553192465947 country.:0.26474334338264893 world.:0.19881503539006837 day.:0.13473216391929435 :0.13295413806139372 -the:0.6926915993437429 a:0.14851725962255966 this:0.0608213177431329 great:0.05870618946779338 :0.039263633822771156 -mind:0.5504949439037671 experience:0.1440775792498931 friends,:0.1138560488526793 life,:0.10192631242292031 :0.08964511557074012 -will:0.39290955570755365 would:0.26496859823968877 must:0.11665710379596567 should:0.11303641062881425 :0.11242833162797766 -flesh:0.2555847845838608 cold:0.2104622229029885 noise:0.20938411331906703 hand:0.17055702363495986 :0.15401185555912372 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5748039290135961 and:0.1887967902820052 from:0.09660196902044751 in:0.0760769220321753 :0.06372038965177604 -war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 -a:0.5448437253569836 the:0.20288424731915644 by:0.08864504026623658 your:0.08819992182101294 :0.0754270652366104 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4369160011682525 take:0.1756344063310621 have:0.1633664852992967 make:0.13372317214367255 :0.09035993505771611 -come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.29892441281108667 them.:0.20737201845705125 age.:0.18726854627598397 Washington.:0.1844597066694412 :0.12197531578643707 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.3313663295145717 and:0.31585613639331156 of:0.22556513409486992 which:0.06647101160836455 :0.060741388388882316 -a:0.6023990986394188 the:0.24722504060190204 very:0.06714964854180284 so:0.0416676266127124 :0.04155858560416398 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.2999228401421083 be:0.28865004966829166 appear:0.1726858079133663 stay:0.14176656673460547 :0.09697473554162848 -thought:0.3425889398092274 was:0.20202947952359218 is:0.1612371709224624 heard:0.16075981351947347 :0.13338459622524457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -you,:0.6095025597227912 be:0.14658526500027477 you:0.08994510657254252 use:0.07990445324328548 :0.07406261546110603 -in:0.35832347792630787 of:0.18468053926800532 with:0.17917664048376333 to:0.14976037789313518 :0.1280589644287884 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made,:0.33449965135087234 over,:0.1850353560596513 said,:0.16987188891493285 done,:0.16762958920016563 :0.14296351447437783 -people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5142512198665002 and:0.2581450549359472 over:0.09376742271509393 about:0.06819775870297 :0.06563854377948858 -election:0.3165515579239989 meeting:0.26999367390721113 court:0.23665580693690025 convention:0.10220525693173264 :0.07459370430015703 -Mr.:0.2234869045869721 land:0.2087347029190895 Columbia,:0.19978642479488057 them,:0.19626883926125935 :0.1717231284377985 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3989128371382014 to:0.2652669223699023 and:0.11861233315513099 from:0.1102899118536317 :0.10691799548313356 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.5398840199523385 may:0.14133968150214207 should:0.11606767343173088 can:0.11286281460781933 :0.08984581050596945 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -good:0.3347905780960811 this:0.2520659329387569 their:0.1736225933149306 my:0.1417612607878845 :0.0977596348623469 -the:0.508992424403978 be:0.21515899151231294 have:0.19580267545009092 recover:0.04278228422346382 :0.03726362441015441 -the:0.38788276634279034 a:0.2798228727110235 young:0.1324988098943016 every:0.10917215868059782 :0.09062339237128683 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cost:0.4249453427209086 and:0.23035085265558894 prices:0.13475067466301827 standing:0.11079894499874515 :0.09915418496173901 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -about:0.49406457120759717 nearly:0.1522114967840846 in:0.13769371176864165 only:0.12870543931515266 :0.08732478092452395 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3394356105471077 them:0.21064835293302323 him:0.20538029521247964 them,:0.13461405514720434 :0.1099216861601852 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.49570236185451455 to:0.19259448237447205 at:0.18286297180194092 on:0.06866988830327082 :0.06017029566580167 -when:0.32630345229877555 and:0.2642752396390058 but:0.1960169303057167 which:0.1172847579544946 :0.0961196198020074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ply:0.7024528399885765 port:0.19960370212676634 pressed:0.04889141366984309 ported:0.02721948028441023 :0.021832563930403687 -a:0.37781532370763704 that:0.17018968999235703 said:0.16224329751732375 one:0.14794339905754134 :0.1418082897251408 -time:0.3030502286676768 soldier:0.1973315551605814 friend:0.177985353433301 bell:0.165631413848523 :0.1560014488899178 -be.:0.43250064949687705 do.:0.3348536918706862 party.:0.10201375476788258 use.:0.0694310152973763 :0.06120088856717785 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4459428573858665 but:0.20689886403742141 for:0.15414096928217721 or:0.12789909424084517 :0.06511821505368974 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -but:0.31607224560704855 has:0.3082347929482461 who:0.19704916149413396 and:0.1071334862469641 :0.07151031370360737 -a:0.6845421843414917 the:0.19616078154252872 his:0.06280344204043437 so:0.03305082702085086 :0.02344276505469425 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -am:0.42363914478791503 think:0.24014958859221458 believe:0.12487685424716159 thought:0.10961015666675004 :0.10172425570595872 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.35006130371238336 a.:0.31855169693597946 it:0.12528219157087211 well:0.11161568617608028 :0.09448912160468484 -payment:0.230792487352589 part:0.22531449542619947 proceeds:0.2036993338045452 plat:0.18567282479308475 :0.15452085862358161 -and:0.510894460723319 but:0.18074877504283815 however,:0.15103999529519357 it:0.0880034026043942 :0.06931336633425517 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8294609987013005 through:0.05203258593116058 on:0.048715698811516175 in:0.03914261151494005 :0.03064810504108258 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Nevada,:0.3862472239127407 Montana,:0.20070303433078113 Iowa,:0.1854871375998962 Missouri,:0.1342708372961998 :0.09329176686038225 -of:0.53430331230853 and:0.19335880275755044 or:0.12375233554115114 at:0.0783284046959053 :0.07025714469686312 -to:0.3116547541993475 in:0.30037069563571367 with:0.1386169540249669 for:0.13386894020673068 :0.11548865593324127 -for:0.5444221053553128 to:0.1469036486506101 off:0.13896584083880284 of:0.08838207714476552 :0.08132632801050879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6022294876929728 a:0.29466244092748234 their:0.035301708424627556 tho:0.03423655559686332 :0.03356980735805394 -not:0.5812862196402239 you:0.17317988705880508 we:0.12065857318132306 they:0.06558223994461523 :0.05929308017503275 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.680432546279653 better:0.11948429271528346 little:0.10395165856143855 remedy:0.0503925291318238 :0.04573897331180128 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.3991802482832699 was:0.18266458091741028 returned:0.17466291871131517 knew:0.14196186909355465 :0.10153038299444991 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.526839348947628 by:0.30656315753568475 before:0.07927164870943393 upon:0.04748100647793588 :0.039844838329317435 -that:0.5185346083414208 quarter:0.2744814786573281 this:0.07901690432848042 third:0.06463048264959213 :0.06333652602317855 -is:0.3872351042088435 was:0.24710105449050007 great:0.14065544805967964 time:0.12600916565247441 :0.09899922758850245 -the:0.928242024807794 tho:0.0394796870321879 tbe:0.01369893078610645 Washington:0.013489677545003536 :0.005089679828908008 -world.:0.2742299389453739 house.:0.26698441183205984 city.:0.22655819947263 door.:0.12425166118017131 :0.10797578856976502 -anything:0.4346692008654793 of:0.1993497325826467 and:0.15629959926234271 was:0.1130511816714123 :0.096630285618119 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7926993649152583 a:0.07628661332558749 very:0.054400652399606376 at:0.04828771270480641 :0.028325656654741422 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3266364425622414 the:0.27055625322520327 a:0.16862222524712547 and:0.15130384341538525 :0.08288123555004466 -not:0.7699721876892721 probably:0.09531138765437643 never:0.05891260454223101 soon:0.04569168140624439 :0.030112138707876126 -states:0.41690965512258643 world:0.18238525824761762 country:0.15258337325867335 line:0.13260451324818734 :0.11551720012293518 -the:0.7165675648695987 our:0.13378870515645502 a:0.09811146987297924 tho:0.03507159009843343 :0.01646067000253346 -to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -a:0.6360455659841393 every:0.16624300010404686 the:0.09091963686529454 lost:0.06317473743928287 :0.043617059607236504 -the:0.8348408308543473 his:0.07587357810575268 tho:0.04116988517626417 a:0.024075078928622883 :0.02404062693501281 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4168897441221419 that:0.32082984828367406 with:0.10634299703333051 a:0.09524908500557462 :0.060688325555279 -the:0.835385142521384 fresh:0.05944067591615678 tho:0.037621008854879734 pure:0.03610076374987483 :0.03145240895770469 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.46611612230270894 but:0.1687204320068492 in:0.15529665403282025 for:0.11136232382967597 :0.09850446782794557 -stock:0.33009271066525736 money:0.3231173714364639 general:0.14253564805879315 highest:0.1027864929698104 :0.1014677768696751 -the:0.69544335056296 a:0.12036492691543861 active:0.11173568867073735 direct:0.03972158338688583 :0.032734450463978104 -time:0.4894120425427251 thing:0.16021008480564278 day:0.13445903718408803 attempt:0.11501955137275967 :0.10089928409478434 -of:0.8215453612251047 on:0.0581178773540706 in:0.04175006929424165 and:0.04137205011616839 :0.03721464201041472 -all:0.3090994558079657 that:0.2502297852672965 which:0.23650961243215987 whence:0.11801128066017944 :0.08614986583239866 -m.:0.48269661239589085 m.,:0.1744225782547118 in.:0.16502608123007448 m:0.1439868004062711 :0.03386792771305159 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -der:0.529099023851938 even:0.1724611229454443 paid:0.1348159682619514 becoming:0.08189970033563217 :0.08172418460503404 -the:0.9282932148560069 tho:0.03885015817801704 tbe:0.01806170314482177 thc:0.008175226603115891 :0.006619697218038332 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tween:0.4909485440834693 fore:0.3239658688517474 ing:0.11448699969660278 cause:0.05898931156674674 :0.011609275801433843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.3016805091749588 is:0.18852711344428932 does:0.1824750845405936 will:0.1687847375987981 :0.15853255524136012 -Court:0.6177636808475657 White:0.27627136484611475 State:0.04423500077763587 next:0.03527814298083248 :0.026451810547851094 -sooner:0.36593249795559796 man:0.2952858751504985 one:0.21218622787364785 person:0.08149256585005743 :0.045102833170198246 -it,:0.37267904338498237 all:0.2319057083132383 fact,:0.1629769991589131 time,:0.11686246055741578 :0.1155757885854505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7388869531924472 an:0.15532046734187394 tho:0.03666412123424247 his:0.03617463385715968 :0.032953824374276554 -to:0.6268622830250657 by:0.26606273860355206 in:0.04890426684116072 for:0.04196176504794788 :0.016208946482273535 -party:0.852338506939443 party,:0.048900701261051845 leaders:0.04331679366435323 ticket:0.02851163999753969 :0.026932358137612123 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -min.:0.6894895279364883 deg.:0.12277146328040901 degrees:0.11383061716741544 minutes:0.048069858006316024 :0.025838533609371283 -they:0.3375270272343705 bonds:0.2225619949599119 that:0.1897107185681465 there:0.15219535049159416 :0.09800490874597681 -resting:0.5300123841690682 action:0.15184898549063783 hearing:0.13025200443309448 vote:0.10122040712875742 :0.0866662187784421 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.39071171871001137 known:0.34033858635122755 enough:0.11434024502461099 adapted:0.10568069965007323 :0.04892875026407683 -meeting:0.5947796860187303 convention:0.29807243839601527 meeting,:0.08563970186205895 had:0.011653147470935645 :0.009855026252259562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.5579707756071741 It:0.1743264232153529 In:0.11564628602748976 He:0.08208058271096214 :0.06997593243902099 -they:0.45178790902969207 there:0.2626815524029223 we:0.15209295702396872 who:0.08191310601524777 :0.051524475528169224 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 -been:0.6730999101203717 done:0.10812407498946341 come:0.10321657004607189 made:0.060497121807887404 :0.05506232303620542 -people:0.5340216431228111 men:0.13854308742444435 I:0.12562795294032067 country:0.10898129682762674 :0.09282601968479713 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.8674253641421141 was:0.07089543589932992 Is:0.03275877725524834 be:0.019920405278950795 :0.009000017424357068 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.23951807375603273 according:0.2283789511059852 assigned:0.21393535056352134 delivered:0.1817075861478071 :0.1364600384266536 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -has:0.5084991803651944 was:0.31609962545549347 have:0.06287112568277012 had:0.05975004680319331 :0.052780021693348764 -as:0.3572807766921138 is:0.3072907031067343 was:0.1364032081323438 came:0.1008572950200361 :0.09816801704877205 -it.:0.48695297736904475 them.:0.13953735044363316 America.:0.1282836917874065 order.:0.12380614002775049 :0.12141984037216516 -His:0.5319516729444709 The:0.3323707292750528 These:0.06161162934594846 No:0.04095996374772617 :0.033106004686801666 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9390533761209332 ot:0.021842811073830754 and:0.018625469440137172 for:0.012573853912757726 :0.00790448945234107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.45576390794054766 that:0.17430895765499038 to:0.15537985259191334 in:0.11687786784623302 :0.09766941396631552 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -rose:0.3249755335907529 came:0.21693014023905732 comes:0.20385969976771826 and:0.13860571578294062 :0.11562891061953101 -no:0.35879119967193096 the:0.2465414906475815 an:0.23340638637574912 any:0.09297822156442041 :0.06828270174031816 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5979512496941846 sought:0.13954384653186971 the:0.10113952472152361 lesson:0.08537518014346247 :0.07599019890895962 -they:0.5491724118993412 she:0.16343192689049182 he:0.157481046000519 we:0.0820003075099764 :0.04791430769967149 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lots:0.3382341811986566 township:0.27459906101619314 Lots:0.174954490564756 12,:0.11922168894856078 :0.09299057827183356 -so:0.8088854104008716 |:0.06759834200072481 I:0.04954804935549004 and:0.038658347796564414 :0.035309850446348955 -found:0.24632557518589404 held:0.19925375992537323 made:0.19566861592337453 used:0.18365984320017875 :0.17509220576517953 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3745652516672113 to:0.270901062544531 in:0.1609525836390594 for:0.12616298503999282 :0.06741811710920548 -to:0.8348813896190032 and:0.059638469771656766 further:0.035979584603259764 on:0.035760778832355 :0.0337397771737253 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.3167397927246767 came:0.24230611775047686 sat:0.18341705056968066 go:0.1391356398749751 :0.11840139908019068 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.2966230296091174 as:0.2840504571322502 equal:0.15735501112293884 them:0.13098637645863373 :0.1309851256770598 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8864850378185054 bo:0.05893579907923245 have:0.03301189743250558 he:0.012660910636019004 :0.008906355033737668 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7470309867474711 any:0.10658075403269952 present:0.061984816895226995 a:0.05956057829814216 :0.02484286402646023 -he:0.5144230835599531 it:0.19407464626516682 she:0.12457902772734576 and:0.0896211598045646 :0.07730208264296973 -have:0.3714329539305315 has:0.34237759125721273 had:0.2671211487012492 bad:0.01000248269506761 :0.009065823415939039 -of:0.715979068059031 to:0.1330798730359889 and:0.07942604399865415 from:0.03602351241821438 :0.03549150248811171 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.31903068838496285 and:0.2742699490495268 duly:0.23946065115921888 as:0.10210669604737996 :0.06513201535891167 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -the:0.8359800290601528 this:0.077639105736723 our:0.03809607432274916 tho:0.028409723648485753 :0.01987506723188926 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.5529501439526827 in:0.15761374701236605 all:0.11708226743890834 said:0.08817307574883741 :0.08418076584720546 -an:0.5106899015221423 the:0.3655310604385533 too:0.06030464713136965 very:0.036858628797726646 :0.026615762110208222 -York.:0.4844227930856356 York,:0.43182345674808853 York:0.06616987458806628 England:0.010827392067175786 :0.006756483511033822 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.43047599295048194 but:0.2897680057622762 thence:0.12219811043833881 it:0.10812318352764069 :0.04943470732126247 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said,:0.4607315781836426 who:0.18487564304195342 thought:0.14892301673339647 never:0.11534788330907264 :0.09012187873193492 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.6021283065193739 was:0.2621370453512656 Is:0.06960487741713924 are:0.035630048746761615 :0.030499721965459817 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year.:0.26405076221249674 country.:0.2031066972282455 building.:0.19757792705259242 world.:0.17766619351491114 :0.1575984199917541 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.2689769450306217 is:0.26005250752280584 notice,:0.19602302229622817 has:0.18310240427158356 :0.09184512087876075 -J:0.30280630880775883 W:0.2431059476697931 C:0.19075154703324312 E:0.14522697782784205 :0.11810921866136297 -M.:0.3793601955676401 B:0.16743055922267056 K.:0.15998611923664258 Smith,:0.1492987494068893 :0.1439243765661576 -the:0.5206241790971304 a:0.3474645509701614 wheat,:0.05189467954528854 to:0.04431842281562524 :0.03569816757179447 -be:0.7949226081741961 amount:0.06634607649858917 become:0.06579275681377386 not:0.04730413967864664 :0.025634418834794257 -a:0.6512952710773384 even:0.13031483214670422 most:0.08458193722435248 more:0.07905238781920368 :0.054755571732401115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.5769302591132225 and:0.13209812328988985 of:0.1312707437583774 for:0.10695629707379675 :0.052744576764713356 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -then:0.34871996846599823 I:0.32192348893300893 he:0.14844572983530202 was:0.09708276457641943 :0.08382804818927156 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5359637440157589 live:0.1653556360502131 exist:0.1075811013402712 succeed:0.09950702161590691 :0.09159249697785002 -he:0.33921029092920363 it:0.2337290115988769 they:0.22824968172202784 I:0.1017961060863465 :0.09701490966354516 -the:0.46161872943194615 take:0.28885953585529583 his:0.1181077119082334 employ:0.08443977716206197 :0.04697424564246284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.2891396088088796 have:0.25713603817389885 come:0.17822733945404773 be:0.16073622905955376 :0.11476078450362003 -the:0.6100336297561193 under:0.14003150372907397 its:0.10588876898096865 their:0.08563158882745565 :0.0584145087063825 -have:0.38557832792849855 had:0.3116962304024056 will:0.13110817564941704 would:0.12606987978468617 :0.04554738623499263 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -p.:0.7561094793298052 a.:0.12603880665988665 p:0.08221778450036464 am:0.01846886236532607 :0.017165067144617577 -of:0.7551707151657875 grown:0.1403769115467423 and:0.07802356834976067 extent:0.016153586568840743 :0.01027521836886889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8262002239132155 in:0.07729885386470244 that:0.03817175682238413 to:0.036864538084438014 :0.021464627315259943 -to:0.9380460527522806 and:0.03321138602228892 will:0.016607469287476567 would:0.007389794745111146 :0.004745297192842759 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.42766840240462006 that:0.2993734721527005 which:0.10844009100744052 least:0.0867683768552149 :0.07774965758002408 -it,:0.28732793109763616 them,:0.27887578485896525 course,:0.19139267831219164 life,:0.1264002559654954 :0.11600334976571142 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.3083213435198566 the:0.24454772696404437 a:0.1857379437431397 even:0.15575166078531022 :0.10564132498764908 -or:0.3186192599922418 by:0.2303134961696417 for:0.17797434771650716 to:0.1497974173135268 :0.12329547880808266 -is:0.327427442423124 very:0.2792071314870597 a:0.1956452186730169 great:0.11984396596336147 :0.07787624145343787 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.36340086628579665 to:0.23438477458732046 of:0.16411599856047165 all:0.12078877542460353 :0.11730958514180773 -bidder:0.2509790378016872 reasons:0.19436402422577587 place:0.1936550770203936 bill:0.18654035528585083 :0.17446150566629245 -morning:0.33945303897175055 afternoon:0.32232767912027815 and:0.11712038395629668 afternoon,:0.11220853966963282 :0.10889035828204179 -terest:0.7422155780609739 formation:0.08009300977013147 formed:0.07095814525976346 crease:0.05418618070872877 :0.05254708620040234 -last:0.4978218766044445 next:0.2411919198129518 past:0.1318838136741195 fiscal:0.0660763812392769 :0.06302600866920714 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -several:0.2369920767455623 ten:0.23003811142740566 three:0.20431487084777342 those:0.17054413030328686 :0.15811081067597157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4076386087124439 was:0.17411790700116056 has:0.14646716595062834 had:0.14372860160125744 :0.12804771673450965 -the:0.6367728647004773 each:0.2352010815331408 any:0.0661891207981596 tho:0.034311893034834076 :0.027525039933388458 -in:0.39215381793830223 on:0.17850483299453793 to:0.16784660744132276 at:0.13875156909182068 :0.1227431725340163 -point.:0.39174695792123304 -:0.21801428931710118 !:0.17932459452425062 j:0.13170487953100093 :0.07920927870641427 -by:0.4766619817890272 to:0.41227511282312745 for:0.07730921731726785 and:0.019565884109913417 :0.014187803960663858 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tween:0.45394264979448196 fore:0.35523694271006034 ing:0.113829157662684 cause:0.06354902962254973 :0.013442220210224036 -do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 -have:0.43712522680471805 are:0.3277420861006477 do:0.08494846702891605 had:0.07547785648829718 :0.07470636357742105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.5328508303371737 to:0.14794988274368676 they:0.13149890847879564 would:0.12382128660211758 :0.06387909183822621 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.592436469856042 on:0.23316649479322035 In:0.10355880510627546 at:0.04284052622537206 :0.02799770401909012 -come:0.3175402221467192 escape:0.22384009754258677 recover:0.1560774848032916 him:0.15259520439595395 :0.1499469911114485 -and:0.4058347220198405 that:0.30774660106765184 will:0.12391345692678328 as:0.0909435056394351 :0.07156171434628941 -had:0.34710057655784676 is:0.3410606461532934 and:0.11023961569228766 was:0.10487327011119987 :0.09672589148537243 -are:0.5261798324788639 is:0.28352213633646206 has:0.08217788646091606 have:0.06708803366785311 :0.04103211105590497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.43381071061869164 without:0.34500220006115634 any:0.09530343403501833 immediately:0.06630574453269426 :0.05957791075243945 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3448219238390545 much:0.25584411764652265 many:0.18600385985317255 part:0.13599459947076745 :0.07733549919048274 -held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 -it:0.3912428845763365 such:0.33877550055010197 is:0.11942521155677531 time:0.08232498847695631 :0.06823141483983003 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.6236628271582576 Our:0.3211584978073122 Other:0.021785309575267416 Some:0.01751721992187084 :0.015876145537291848 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.6906053625248346 its:0.10662283186511277 in:0.08515537898818089 their:0.06475692876391215 :0.052859497857959695 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -believe:0.4454595542946292 know:0.243070708425332 hope:0.1266987846809243 think:0.09976499590860088 :0.08500595669051368 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.40633010950319315 this:0.2671319938407176 any:0.1703929380198183 a:0.09887482613496498 :0.05727013250130596 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.46725390726880284 an:0.3374914466132473 his:0.13976456226775524 their:0.0314256099808571 :0.024064473869337497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.33424722771831056 country:0.2169844612251395 time:0.16442378185094678 I:0.14748785846021836 :0.13685667074538493 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.2655444757049975 give:0.24768179968931184 take:0.19313079360224605 see:0.15779179819151923 :0.13585113281192537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.22614761638177275 provides:0.21624484021658102 it:0.21556615352858488 time:0.18376722346925736 :0.1582741664038041 -?:0.3522321841900804 them:0.16708904337452452 do:0.16403846465303631 be:0.15900470960774873 :0.15763559817460995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days:0.42293448405446765 minutes:0.236020745243483 years:0.1460367571235806 weeks:0.13172945686811224 :0.06327855671035658 -those:0.30915000096558454 land:0.2576449086404568 that:0.1555567859506852 land,:0.14252034063578264 :0.13512796380749098 -of:0.5938879268894328 in:0.14873662323540324 next:0.12378166087387356 last:0.10296339343003684 :0.030630395571253466 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.2917104823876517 am:0.2576555369413741 found:0.19297910632837453 believe:0.15990483007660258 :0.09775004426599702 -by:0.4989681564058235 as:0.19884695447876238 on:0.14905281682914664 in:0.08975579751961851 :0.06337627476664882 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7921024469764437 a:0.0834044313966272 precious:0.04473877907574598 this:0.043105384785658805 :0.036648957765524445 -to:0.39733227673133953 taking:0.23317168451562298 talking:0.171150344253336 looking:0.12007222639471364 :0.07827346810498782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.4827282498215172 time,:0.29196400374922415 one:0.0882865248328127 years:0.0813860115574876 :0.05563521003895835 -he:0.2729848515800274 It:0.25608167097903833 it:0.20509051155233896 He:0.13803793500951733 :0.12780503087907807 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 -Mrs.:0.6111467751169514 John:0.13149512285662202 J.:0.08963912468218735 the:0.08525541945303124 :0.08246355789120809 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.6197494553982044 is:0.1416970158214827 has:0.0913171764916109 were:0.07687527122201471 :0.07036108106668747 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tariff:0.28113329732234965 Senate:0.24999338616295075 House:0.19017271430618138 senate:0.1415516184398363 :0.13714898376868204 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -estimated:0.31216009318061655 not:0.2793701898665078 now:0.17193194726558897 held:0.12964251283969072 :0.1068952568475959 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 -to:0.8219575437608809 only:0.10719275341745477 help:0.046813735519384087 merely:0.012534222929820902 :0.011501744372459441 -is:0.4776419988878637 delivered:0.19440039164399212 was:0.14630073593707088 given:0.09452697538632657 :0.08712989814474675 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.3497006512857437 their:0.3027492082868531 our:0.13867087258811966 its:0.12600906067150824 :0.08287020716777542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -first:0.39643075180578174 last:0.17522190439366678 people:0.1599745625434154 interest:0.14847639606171187 :0.1198963851954243 -is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3132499625767866 ?:0.23316932781480557 there.:0.1981947777749733 to:0.13046708434022278 :0.12491884749321186 -and:0.5752469089907472 was:0.12523319154192677 of:0.10941663117659833 at:0.10416119656580046 :0.0859420717249273 -taken:0.36557095972088793 derived:0.1931671096776762 removed:0.1734367459531808 obtained:0.14051787463044768 :0.12730731001780737 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -those:0.4797015036936935 age.:0.18803956021522364 it.:0.17364346447110512 them.:0.0811269356650595 :0.07748853595491813 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9617039335973444 a:0.02065590901132395 to.:0.00821171031007968 him:0.004880721144021416 :0.00454772593723069 -be:0.42115849324033183 the:0.23229446367489917 a:0.13690558436712563 do:0.10780839498326072 :0.10183306373438271 -is:0.45656315686808124 was:0.2895533919547336 has:0.09716624127577259 had:0.08277640319635403 :0.07394080670505859 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mand:0.42664295925468315 scribed:0.3775715689617984 voted:0.09800152407828076 ceived:0.04908251035566268 :0.048701437349575195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -quite:0.5210533798753827 more:0.2831798991801052 known,:0.0882042649944776 known:0.05586313526127405 :0.0516993206887603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -provide:0.5990225097570039 do:0.11686475604471039 pay:0.1038264509114101 remedy:0.10299740935908941 :0.07728887392778629 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.500132101775197 will:0.1510937523468082 can:0.13972550516460006 may:0.11721373668557063 :0.09183490402782417 -was:0.3218745293424024 and:0.25809980650299597 is:0.21318551429340452 engine:0.12198336792398543 :0.08485678193721176 -of:0.8345274536149215 in:0.06660971208673461 and:0.0476819162946391 to:0.03267028602581228 :0.018510631977892635 -men.:0.35085260436121757 citizens:0.19645171862388305 men:0.175161525539205 man.:0.16812047240803013 :0.10941367906766435 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way:0.48191332381020574 free:0.1447467631676159 members:0.13207302649981556 leading:0.13179009217830548 :0.10947679434405733 -and:0.4056787995787514 Bryan:0.17755424220505092 I:0.14614565557701373 Smith:0.14004091324667764 :0.13058038939250638 -of:0.7723450482647879 that:0.13526411317718876 in:0.05650126836670774 and:0.018654351180848103 :0.017235219010467574 -the:0.8681337310374498 a:0.048137737158813525 tho:0.03522872820796132 in:0.027535753998646665 :0.02096404959712851 -well:0.40355947772923645 up:0.2679930697104767 him:0.1519591018812787 them:0.10798588522009488 :0.0685024654589132 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.4716901934634818 were:0.2425121968046001 and:0.10728557564696461 of:0.0898528867599225 :0.08865914732503093 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -their:0.5100914814912193 the:0.38912730803377243 our:0.03918351744390781 have:0.03396278668075688 :0.027634906350343567 -mode:0.2842234427807977 attention:0.24964284807981788 kind:0.18669569272122247 part:0.14404430367530935 :0.13539371274285275 -most:0.4711216345731325 first:0.24296523204318793 second:0.18541936979753304 upper:0.06134285370755359 :0.03915090987859299 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6674386721551056 and:0.12793405875907485 in:0.08279567242855497 from:0.07264772385696713 :0.049183872800297575 -deal:0.33357138025916333 demand:0.2703090940270673 and:0.16796756947297128 men:0.11590969687738502 :0.11224225936341294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with-:0.31128163672712794 work:0.2742751821939246 pointed:0.16835297950598851 times:0.12471716917273226 :0.12137303240022658 -of:0.6619521708598454 in:0.19902355443446035 on:0.05090580070658903 to:0.04914241809958432 :0.03897605589952084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mand:0.47253701302785445 crease:0.19814157997944068 scribed:0.12765602353326838 signed:0.11538873282068102 :0.08627665063875553 -of:0.2579430328214127 than:0.22041772236928842 in:0.2020665142279125 words,:0.1647129037035039 :0.15485982687788238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -directly:0.38009412773959156 as:0.3743347026749448 Commissioner:0.08451133704907826 on:0.08168165199590201 :0.07937818054048343 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -and:0.33662952772748783 to:0.22332650851583236 in:0.18713544106828642 so:0.15210544866877676 :0.10080307401961665 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4052695579985274 provides:0.2592083136654604 books:0.18159484570884396 providing:0.08159255219796464 :0.07233473042920362 -of:0.6866637267776233 in:0.14591251442561085 to:0.06488613868737199 for:0.058946142251727764 :0.043591477857666185 -long:0.6843602186319134 new:0.1707464163293072 whole:0.055552695628405584 second:0.04688083334247222 :0.04245983606790177 -did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 -and:0.5548647960530696 are:0.1516748988592256 by:0.13466780025885589 for:0.08742789888197326 :0.07136460594687569 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time,:0.2704948862266997 year,:0.2048911973114478 week,:0.18317697614566916 small:0.17726699252353248 :0.16416994779265082 -that:0.532585321222338 that,:0.15830284722445978 the:0.12640142456061126 day,:0.09621799868081636 :0.08649240831177464 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.42083370438357626 in:0.23573817593463223 to:0.15715251433983787 on:0.1193273543001569 :0.06694825104179676 -far:0.5881495083588533 much:0.16943929992548518 well:0.10596868716913298 long:0.10265131826634176 :0.03379118628018675 -opinion:0.3844943843558082 mind:0.37256440950913466 belief:0.11621442419247448 opinion,:0.0751337878541098 :0.051592994088472954 -is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5452726518408596 to:0.14779430095786356 as:0.12467412213661129 in:0.10477043227866516 :0.0774884927860004 -and:0.7357740612285554 annum,:0.175127675161612 made:0.03506787790331226 nnd:0.027469143478294024 :0.026561242228226294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.42463367840287586 America.:0.19476572265509684 them.:0.14396443577860119 Washington.:0.13397389655015335 :0.10266226661327278 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one.:0.3557718684352867 home.:0.23915419986441033 life.:0.19370757377183448 man.:0.11155595199776279 :0.09981040593070586 -or:0.9168577251581581 nor:0.026723245704426687 than:0.024780192211006396 un-:0.017373965541408853 :0.014264871385000022 -piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 -of:0.35366556922808207 time:0.27632183847355324 think:0.19256481647063758 say:0.10782554876044279 :0.06962222706728426 -time:0.38372316710678994 best:0.1792130012443636 way:0.1535109271866731 said:0.14962321006019672 :0.13392969440197655 -much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 -the:0.3842977715696187 a:0.3345043103708771 even:0.11182799083828704 still:0.09314206015719105 :0.07622786706402608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4446018555024738 that:0.16896332690814958 a:0.13152716055485564 first:0.13074619750760463 :0.12416145952691625 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 -new:0.2557122466661221 high:0.21223012258290305 social:0.20461648589831455 good:0.16905355807810082 :0.15838758677455958 -be:0.39105954633220086 have:0.24287457330835063 he:0.22268059429151682 which:0.0916144214853697 :0.051770864582562054 -they:0.3221044081963326 he:0.2510697472185581 we:0.18685177766439232 it:0.12683913572862993 :0.113134931192087 -off:0.28405949479765186 in:0.25318877434677584 into:0.21642309910221705 with:0.12736317625280735 :0.11896545550054807 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -reason:0.7730346894987457 reasons:0.19493321049045176 cause:0.021234675994130765 and:0.007449294454159764 :0.00334812956251202 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.8821122807781052 months:0.06794321694514747 weeks:0.03961916063887997 days:0.006252829413599067 :0.00407251222426835 -only:0.4802428778748002 first:0.19849115841299067 least:0.18205053178956698 last:0.07596790646082333 :0.06324752546181889 -have:0.43566196875438806 had:0.27025921546081283 was:0.16689286729673758 am:0.07895371023658736 :0.04823223825147413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7197322409688109 a:0.13997704523653906 such:0.052050988283418975 his:0.04527961209293989 :0.04296011341829122 -that:0.7780740048577516 they:0.07073644038077462 who:0.06241005296358912 she:0.051651418972123164 :0.037128082825761556 -the:0.38431026051942246 a:0.28521913498156687 this:0.2213709158391217 his:0.07207996458692542 :0.037019724072963424 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7458689468755577 a:0.1711266272159236 tho:0.029660246973979093 new:0.027761121545867046 :0.025583057388672423 -to:0.41952903502948147 pro-:0.20716896005845994 of:0.14639285097935403 and:0.13182076980994473 :0.09508838412275987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.8013279302183882 and:0.07563541060445987 by:0.07418703926876401 the:0.02495435008247844 :0.023895269825909393 -is:0.4248782868184779 was:0.23023030235131212 being:0.14326638703247274 are:0.13865479255414076 :0.0629702312435965 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.6081180471027439 In:0.20233266906567313 as:0.06888686334164094 on:0.06829535484441651 :0.052367065645525505 -went:0.27673095518362745 orders:0.22021905435923295 efforts:0.18236101785656678 attempts:0.1805521855749978 :0.14013678702557505 -is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 -He:0.4933069405096333 I:0.21102540125637745 She:0.16064218038623984 They:0.0835341228669473 :0.05149135498080214 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7259999745874841 this:0.16075149201551853 tho:0.0412324965751167 a:0.04025290848798212 :0.031763128333898646 -failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 -not:0.27704312744361254 likely:0.2371434664494363 entitled:0.21210164823881894 claimed:0.14212117221906162 :0.13159058564907056 -of:0.4346648684311583 in:0.18472519089697179 to:0.15660802917822855 on:0.11270681805147077 :0.11129509344217067 -we:0.2594606320945463 who:0.23399107026576518 and:0.21103597253890144 I:0.15570131071714022 :0.1398110143836468 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.31219898163706883 states:0.222214085011119 which:0.2033484732570931 he:0.15420596982824786 :0.10803249026647113 -go:0.36080905261796875 get:0.21572081582449512 the:0.19245800982018244 come:0.1390059287436487 :0.092006192993705 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 -been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 -was:0.3558160836835885 it:0.2495016765303829 that:0.19429082922805652 is:0.11388404415415745 :0.08650736640381461 -willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -three:0.2118785574492995 six:0.20358408791404697 eight:0.20304564231874164 five:0.19188922020077787 :0.1896024921171339 -afternoon:0.24245046139708273 and:0.23738868258544285 evening:0.1907667248190773 of:0.1744265278350207 :0.15496760336337642 -the:0.7884284601024382 tho:0.07952229344755292 its:0.058553075291276305 tbe:0.04901160611583929 :0.02448456504289313 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.35058555992380724 in:0.24152962253753274 with:0.1885239268101377 from:0.11405870343003813 :0.10530218729848416 -to:0.7951174616004176 ones:0.0605948504015583 I:0.05292994744997487 can:0.04670209827244911 :0.04465564227560001 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3021025167969741 for:0.2618994421712474 but:0.2405497941064475 to:0.0998699542786841 :0.09557829264664695 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -am:0.3699573222226719 think:0.3413648463611118 wish:0.1097634815568768 believe:0.09347157110393674 :0.08544277875540267 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9762100669798146 or:0.010904652363161765 and:0.005008901564322668 lo:0.004744855429119449 :0.003131523663581508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.38480503676456956 that:0.22832358276469975 to:0.14759877338080848 on:0.13243997629071969 :0.10683263079920259 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -of:0.3063970551673443 to:0.2607344896666734 in:0.19168061057581354 on:0.13808190643723048 :0.10310593815293842 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.6192185053989371 was:0.12939348708475887 a:0.12438814178439951 the:0.07983815742316344 :0.04716170830874119 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5954329503015001 a:0.33344694247191886 this:0.03250635160422614 tho:0.027167661284427415 :0.011446094337927504 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -nothing:0.40040469154891456 ,:0.2186694530123132 true,:0.1499029010681221 now,:0.1345668595448489 :0.09645609482580117 -it.:0.31728322507312373 America.:0.31503204273511926 town.:0.14591238966498696 life.:0.11291462925719344 :0.10885771326957676 -to:0.3709896037545103 that:0.17492227984725822 In:0.16572592875299577 of:0.14443701347871915 :0.14392517416651648 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -life.:0.26038581757999624 death.:0.2173609639471723 head.:0.19558642029184775 wife.:0.18702020344718678 :0.1396465947337968 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.45271906427048053 men:0.3377598416610024 people:0.09458540452989839 man,:0.061827401927931146 :0.05310828761068768 -him:0.419990194462673 them:0.22725414675846306 us:0.13857993037442054 me:0.13257856854771097 :0.08159715985673244 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7510350919020462 and:0.0894629714131973 of:0.0675360249301599 or:0.05460477313342706 :0.03736113862116943 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8129881874863701 have:0.11027809928281294 bo:0.041935932249524584 not:0.02939832880777159 :0.005399452173520749 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lot:0.2708706425517555 June:0.23143110662265107 lots:0.17106395469853164 section:0.16793108481539407 :0.15870321131166776 -to:0.40296120114766176 by:0.30289451889230634 in:0.12785852975775713 for:0.09787042361386232 :0.06841532658841251 -character.:0.4323036007541603 place.:0.16815501216099174 price.:0.14476518288363618 manner.:0.13000075676094452 :0.12477544744026717 -be:0.6892635663054129 have:0.17755788408159526 make:0.0476277576497332 bo:0.042789721949922685 :0.04276107001333597 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.43295196928214796 by:0.21979533370306373 in:0.17946051680063416 that:0.11572591920095153 :0.05206626101320254 -made.:0.33014963326848606 good.:0.227832231643349 used.:0.19819402805979067 over.:0.1320004689311219 :0.11182363809725246 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5530068003866004 done:0.17952533515054078 heard:0.09609506107751609 seen:0.09018984117853761 :0.08118296220680504 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lots:0.24699110105269634 Range:0.24343892334324338 the:0.20444230887013612 course,:0.17908740595048128 :0.12604026078344277 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 -in:0.453772302676593 of:0.2739977217260374 if:0.12540453228468382 In:0.09364553856877382 :0.05317990474391206 -the:0.8251826767679633 North:0.08742039052045479 South:0.045953630115944756 tho:0.026854820311203037 :0.01458848228443415 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.5378042258965463 of:0.22057726376602302 two:0.09336321948247502 forty:0.07575177811195212 :0.07250351274300344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.41610090183465637 a:0.16389372412706105 assumed:0.15996083853440474 his:0.15567186657142829 :0.10437266893244952 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.39488842256010137 public:0.368693869612399 tax:0.13789398394312585 great:0.053394538171676574 :0.04512918571269742 -to:0.39434086846496963 by:0.23867912099476962 for:0.20744929656178296 in:0.07996304206546452 :0.07956767191301332 -candidate:0.39789734701993856 good:0.1680462666624389 vote:0.16550426145230196 week:0.16030475784400067 :0.10824736702131987 -homes:0.24567215230248393 one,:0.22585511193679056 home,:0.21927764274588066 life:0.158168786935321 :0.15102630607952378 -the:0.801368548254406 this:0.11767138050982076 a:0.02994917247628616 our:0.02866535920756394 :0.02234553955192329 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -members:0.4555825311719899 member:0.22110954665509186 rights:0.12984337967917045 cases:0.10540339869922018 :0.08806114379452767 -not:0.9298371099346171 hardly:0.040838613424415506 never:0.011881706422594703 do:0.009268424624423583 :0.008174145593949186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.4485896440527666 it.:0.15085660468535972 him.:0.13913901180138927 give:0.13075284728999134 :0.130661892170493 -of:0.6707155363641587 that:0.306261002333619 ot:0.010094303727695162 ol:0.007020749775659105 :0.0059084077988680395 -court:0.431492686817822 same:0.28410797125006987 future:0.11253570904847286 man:0.08638094504412495 :0.08548268783951032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4265500601304632 about:0.22602332794000202 at:0.18823513668177985 aged:0.09051636858886516 :0.06867510665888962 -above:0.5413192902511024 facts:0.2126236712502215 further:0.109252992988164 next:0.0694693140475861 :0.06733473146292612 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5440061520615991 have:0.2224594953236838 pay:0.08592319403575285 take:0.0825452694486206 :0.06506588913034371 -the:0.8888578691300698 a:0.035400032598741776 tho:0.03479210055887068 his:0.0238736633643683 :0.017076334347949387 -the:0.7452216315807746 this:0.18216364738069524 tho:0.029270744249434197 our:0.021893153011430938 :0.021450823777665072 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.27935704426109065 that:0.23845597018017975 and:0.21480808432362386 which:0.1747831795212046 :0.09259572171390115 -it:0.3386163041651109 Co.,:0.16935301802611177 and:0.1666962738104987 Co.:0.1630598027774199 :0.16227460122085877 -horses:0.28100500647611787 who:0.2798254348909735 they:0.19188518993925124 which:0.13982033816498032 :0.10746403052867702 -about:0.5452942449533034 only:0.1421939025413962 nearly:0.12716765714345882 in:0.09485206148635687 :0.09049213387548471 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7639146167895515 this:0.13765447782341278 tho:0.034960891133173494 our:0.03315917268584718 :0.03031084156801495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.504558759057298 this:0.24874549690796194 an:0.1575250349070068 they:0.053424597759016264 :0.03574611136871709 -it:0.5014979596287077 he:0.238332971802412 there:0.12393385393775638 It:0.09053231539009109 :0.045702899241032935 -;:0.24644573841081077 it,:0.22527880124231262 them,:0.20570230580753543 him,:0.18019298845726842 :0.1423801660820728 -north:0.21356441425188846 same:0.2076575944729774 only:0.20720368184686808 south:0.20167922950265135 :0.16989507992561467 -days.:0.40175734607160357 men.:0.2243532340234256 people.:0.1554824755360203 years.:0.14117652089828248 :0.07723042347066798 -the:0.6515240742832058 this:0.1341016232678009 such:0.09122313270219475 a:0.07916114089815965 :0.04399002884863885 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.30765680452725974 I:0.21190636109101024 they:0.18673954247840993 "I:0.14820068909756262 :0.14549660280575744 -able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.28218306737541077 to:0.23907725642475344 on:0.17013324058886484 for:0.15507896630579363 :0.15352746930517736 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.37958538029943345 women:0.2046109511771398 as:0.18972835994456522 but:0.1302700415129641 :0.09580526706589743 -meetings:0.26304067574582984 schools:0.19609535498459982 men:0.1853523184646584 School:0.18251032294064548 :0.17300132786426653 -way:0.24623005583943056 work:0.20939280248618194 homes:0.20876620157447878 candidate:0.19309542393557433 :0.14251551616433447 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.2953436452185395 found:0.20477720760346002 but:0.19752370900401406 seen:0.1694502632380247 :0.13290517493596166 -the:0.7705951604639478 on:0.13322645438450975 to:0.03711130024918346 tho:0.03387093973878415 :0.025196145163574806 -one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 -to:0.849688058105153 a:0.04700189581002394 of:0.04370198437730953 for:0.03481885006300497 :0.024789211644508657 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4804537405194439 for:0.15498031876015395 made:0.13501508914336718 on:0.12635785516331022 :0.10319299641372491 -the:0.5728460994558352 a:0.19606858950333117 said:0.13922536346895095 such:0.05198658125823012 :0.03987336631365256 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.37963752471083995 which:0.277996593669485 that:0.19837650456215203 said:0.07692210289720748 :0.06706727416031558 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -took:0.2210456221438448 went:0.2081449297865593 came:0.20091876231190575 got:0.1884651025400452 :0.181425583217645 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -mortgage:0.6159643249070914 premises,:0.14229294087880345 county,:0.10855639657237956 Court,:0.06897493758278189 :0.06421140005894346 -that:0.30037228650391934 he:0.19479174005331729 who:0.18388758113577897 which:0.17583669858123008 :0.14511169372575428 -is:0.41681833527344425 so:0.1746319068528589 being:0.15738077023975916 as:0.1424776247917785 :0.10869136284215923 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -true:0.2585514489557934 effect:0.2274301997039515 way:0.22336773443748267 probable:0.17400603216328078 :0.1166445847394917 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.582529317119792 The:0.31425910067928964 he:0.03803606684324583 (the:0.033706505599697484 :0.03146900975797506 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.25372136017712854 for:0.19914088124056376 into:0.19727717888063995 from:0.17845097800696436 :0.1714096016947034 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.46534239078696227 the:0.4520878434778255 this:0.045012682842082145 tho:0.020579632278809757 :0.016977450614320322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -British:0.4190427337783083 other:0.2722914035136622 various:0.17416866227526465 proper:0.07644210018269935 :0.0580551002500656 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.698180960510985 escape:0.10843975193248298 a:0.08739446213410183 avoid:0.05754015968015891 :0.048444665742271326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 -city:0.2887327338588287 time:0.21165156274539584 country,:0.17704750610965228 country:0.1627709249012841 :0.15979727238483898 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6876827369456627 a:0.17021141293155073 his:0.055872770085234835 their:0.048947831451836274 :0.037285248585715525 -the:0.8832078619531076 tho:0.03683051034291664 its:0.03501651194554273 best:0.027104570115817028 :0.017840545642616053 -a:0.6365701739088004 in:0.2153981723731276 the:0.05643747074408121 plain:0.04620845119866286 :0.04538573177532787 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6274299529594047 his:0.22453983277796272 a:0.0801254618995374 my:0.03429295208513243 :0.03361180027796255 -and:0.4053054840900167 however,:0.2660642323464136 but:0.18464713985922127 says:0.0934640395649372 :0.05051910413941115 -more:0.33080082024792656 two:0.2938346577774707 one:0.17735154636294403 three:0.12303141353752144 :0.07498156207413739 -shall:0.4592169022781242 may:0.18545150703573482 will:0.16484720286100701 to:0.13955804111668496 :0.05092634670844904 -persons:0.3331533880133629 were:0.20469077909840377 others:0.18110453457748704 members:0.1574866126916028 :0.1235646856191435 -know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 -and:0.2985744295776701 on:0.2773886707278918 in:0.144496990158846 to:0.14104541211711308 :0.13849449741847913 -mar-:0.5382769178228081 fee:0.24713792944161456 great:0.09189601235394917 j:0.06705889737664625 :0.05563024300498183 -one:0.5510126234787974 I:0.12098193017777129 all:0.11311963992143971 some:0.10826191326037578 :0.10662389316161569 -the:0.3164415744243237 any:0.30644167918144566 to:0.18512439954463403 a:0.1429518659034826 :0.04904048094611396 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -and:0.41271279202567446 man:0.300194341691748 men:0.22310211958599893 or:0.033137475588042115 :0.03085327110853647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.2729916684675656 make:0.21512045825787968 pay:0.21098326230020453 be:0.1560823147028857 :0.1448222962714646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.8679548881087062 had:0.06348348519632249 ever:0.026433005598466605 having:0.021441532516166574 :0.02068708858033805 -well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 -interest:0.2722112469164827 that:0.228145945733768 those:0.19336680130206416 going:0.1712479906174482 :0.13502801543023704 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -.:0.30871969956385636 -:0.27519293242506393 i:0.20723921707423065 t:0.11324538894005644 :0.09560276199679249 -And:0.5472464194634173 and:0.25520425365834043 was:0.08128946059897939 is:0.07612416608861368 :0.04013570019064922 -the:0.640372682695965 one:0.15401294307552577 a:0.08281449756274657 at:0.08161373017023192 :0.041186146495530755 -around:0.4287886701986555 over:0.2556299322299888 of:0.1951964339524927 to:0.061703118075982166 :0.05868184554288087 -and:0.4272565843409294 with:0.2131636541583469 in:0.14294574636527424 for:0.11319158832459399 :0.10344242681085541 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 -excitement:0.38534137794928847 as:0.2272023289301677 divided:0.14689947521486058 talk:0.12282703658893838 :0.11772978131674487 -whole:0.36461012578389235 city:0.19246571656875172 other:0.18231696661891486 said:0.13551726883387874 :0.12508992219456236 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4203348917929265 been:0.3371599399720088 in:0.10272864670502378 all:0.08265988272952915 :0.05711663880051194 -chairman:0.4634521920427476 relief:0.18060087581916784 absence:0.1804383856601417 organization:0.09657870044712595 :0.07892984603081711 -people:0.478692893574672 White:0.20667808541662977 I:0.13460782513151223 men:0.0967437476740218 :0.08327744820316431 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.32523199339545844 attended:0.1748722772238226 lived:0.17078201720792208 was:0.16866153696300265 :0.16045217520979432 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.40929901117562295 any:0.33094055566447284 many:0.17690789205337493 to:0.04341540328478165 :0.03943713782174769 -is:0.6014336665530096 was:0.2379605996701129 the:0.06289448669280333 Is:0.06192749097003924 :0.035783756114035066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5364551962818305 this:0.2219260219752172 some:0.1021431656932798 any:0.07328125221886454 :0.0661943638308079 -of:0.5319822769097352 to:0.199276204450517 in:0.10769765358841075 time:0.08718533936491585 :0.07385852568642126 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.726150217432562 that:0.14486080994107253 whom:0.06405321007066778 what:0.035326945739483286 :0.029608816816214464 -which:0.420592995689699 said:0.20209082065553577 whom:0.13078224777454728 that:0.1259679340949773 :0.12056600178524056 -first:0.5937984811648837 same:0.20609513822006736 second:0.11900692247919324 latter:0.04810032724339446 :0.03299913089246122 -is:0.6527676449728447 was:0.20038670318488697 Is:0.07725397569669117 makes:0.03656003638833396 :0.0330316397572432 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -science:0.3681747853274246 advice:0.20571392725861842 and:0.16391248593910865 men:0.15670956340012995 :0.1054892380747183 -time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.3582065674983641 arrival:0.19222051757113942 property:0.18733784873330978 home:0.13883659598674333 :0.12339847021044358 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -.:0.6558118795683732 and:0.13535711382801774 o'clock:0.11368611068338254 that:0.04944222288445351 :0.045702673035772995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.4200630589769105 too:0.23867259510030076 very:0.16767772786548646 done:0.1053677174900118 :0.06821890056729056 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.7181097414752903 a:0.21147969348870183 his:0.03069516512902305 tho:0.02847741935622037 :0.011237980550764567 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.7574115734200646 with:0.06781454392819057 in:0.06428789744712936 to:0.055565462077193484 :0.05492052312742196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -excitement:0.30028727936865657 cause:0.19711225205445437 neglect:0.17922735777932042 use:0.16303997171561513 :0.16033313908195337 -not:0.6825565542347837 never:0.1899766499604643 ever:0.07164862640186741 been:0.034653666178344235 :0.02116450322454051 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -two:0.33823553739657225 three:0.2611567831056587 one:0.14324777041013148 five:0.13494353775867274 :0.12241637132896478 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.6736736111582763 of:0.12876999156972052 prominent:0.09179665880446437 new:0.06287889125132357 :0.04288084721621528 -he:0.3152231959740441 they:0.271601654339084 it:0.23659462435236883 you:0.10422300416785436 :0.07235752116664872 -work:0.28080346390357824 property:0.1992730759274149 former:0.1763020820745387 efforts:0.17304491830509328 :0.17057645978937494 -make:0.4485896440527666 it.:0.15085660468535972 him.:0.13913901180138927 give:0.13075284728999134 :0.130661892170493 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -of:0.6195970809526706 for:0.16588487315315256 at:0.08821927421047941 to:0.06447263134580236 :0.06182614033789492 -he:0.26979864822783145 they:0.26656798101970075 I:0.197207496893932 not:0.14813131270059293 :0.11829456115794294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.8957525249534664 never:0.051533176893761176 ever:0.030855492372781238 always:0.012657097117374533 :0.009201708662616678 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -months.:0.4474615843962676 time.:0.19768254520429265 season.:0.145576149933446 day.:0.11476453146965288 :0.09451518899634086 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.2889273550528222 have:0.21661436896613256 ought:0.1956993604835726 were:0.15191221466628485 :0.14684670083118778 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4820261648190241 but:0.22794239338792233 when:0.12204081590014022 which:0.09766402611781913 :0.07032659977509412 -that:0.3761259173669832 what:0.3392756804917292 how:0.11849018471613487 whether:0.08526748023192646 :0.08084073719322622 -all:0.6596964158447367 two:0.2009064303114228 three:0.05383295294773474 many:0.0441659380366161 :0.0413982628594896 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -character.:0.24689800240259702 one.:0.24115833553465257 years.:0.1963645095443286 year.:0.1633849465062482 :0.15219420601217357 -of:0.45087843934297167 in:0.271193307572742 to:0.14687144864776755 for:0.0671550984398183 :0.06390170599670043 -effort:0.24516173296621102 examination:0.22103628496265174 attempt:0.21250828010047088 amendment:0.17619843483388237 :0.145095267136784 -of:0.42238277220379294 a:0.21481397833956195 upon:0.16091088334539436 the:0.12309449463563538 :0.07879787147561527 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 -filled:0.31234564386159724 covered:0.2516743708745592 charged:0.18594556894628492 connected:0.14289598474020648 :0.1071384315773521 -Y.:0.5337526619835266 said:0.13368833676651293 E.:0.11986110792529234 First:0.10865320343311465 :0.10404468989155338 -set:0.34856062803735105 broke:0.1959831411238083 run:0.16306944045442934 and:0.1501315036614988 :0.14225528672291254 -he:0.4553489205014141 It:0.20448699736583664 it:0.1555928527068844 and:0.09845784391404579 :0.08611338551181894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.485418932398291 that:0.3035216138381866 which:0.1871595208536497 and:0.018488194069703836 :0.005411738840168779 -the:0.6924222056315575 a:0.14679915276267852 their:0.07251004085953819 all:0.04542847427499098 :0.04284012647123489 -the:0.8750275921658747 a:0.04856232232326105 tho:0.04381440004739287 tbe:0.018244450353194122 :0.01435123511027719 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.5112468399103794 have:0.16405778510810684 do:0.14325024057336155 be:0.10433474141958704 :0.07711039298856506 -the:0.9152473167056397 tho:0.03529795730549005 a:0.024008160623718137 tbe:0.015141666405817742 :0.010304898959334488 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.27010961747762513 order:0.2475910027909597 way:0.17153883778797893 subject:0.16907755390451737 :0.14168298803891902 -Minnesota,:0.4070410403448205 North:0.21253836255081202 State:0.14603069048884032 Missouri,:0.12588572825627617 :0.10850417835925102 -for:0.32351925575444085 in:0.21605874712940126 and:0.19587107567619835 on:0.14559479005098597 :0.11895613138897351 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.39482085444793247 has:0.2502066186107409 had:0.1652220169287892 then:0.14894722864687557 :0.04080328136566187 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wife:0.3031415644002731 father:0.22531236176981714 name:0.17152506210591198 experience:0.16659565678838456 :0.1334253549356132 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.35803860782327174 that:0.26568052367424283 which:0.17046408827187517 fact,:0.13473415691354593 :0.07108262331706426 -was:0.3958206527531288 had:0.26334974031985836 is:0.16893307568309351 has:0.10415351622148272 :0.06774301502243672 -to:0.9520277795978354 that:0.020476873043408464 you:0.013026496127030766 may:0.007341894027910709 :0.007126957203814599 -the:0.8587425864197599 said:0.05695396206440162 tho:0.034274905532037284 Lord:0.025345871142768685 :0.024682674841032558 -who:0.4520358377751746 he:0.24240486397381483 she:0.13487669645692138 and:0.09223144143428526 :0.07845116035980396 -being:0.3470406715993403 in:0.24180202205647827 is:0.14566603994546679 occupied:0.13620701243762856 :0.129284253961086 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -r:0.2806832369696056 of:0.24263059993694505 in:0.16910911342488166 ,:0.15514484999427725 :0.1524321996742905 -the:0.3981810630717827 Co.,:0.2889552528276801 Co.:0.1792625547722586 The:0.07116993204300613 :0.062431197285272425 -Smith:0.33256996662480576 I:0.246803586730529 Jones:0.1462546004907416 Williams:0.13770036883220788 :0.13667147732171583 -been:0.7518330145800359 not:0.09466841887778182 become:0.080564791648018 done:0.04861707002168988 :0.02431670487247427 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.35564524369449324 too.:0.23230882225999303 it.:0.15977972282636532 well.:0.153238225016243 :0.09902798620290529 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.7455656637460639 a:0.08569104488130708 their:0.06242947277352743 his:0.05333195742429073 :0.0529818611748108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.5617042972164987 he:0.1987692748279706 It:0.13978735360761269 there:0.05409749230640192 :0.04564158204151589 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.3664730790844177 and:0.3592765801349904 bands:0.14467001141396033 a:0.0818894141295858 :0.04769091523704574 -is:0.27644815737622425 of:0.24318934774265755 ;:0.20221621192568123 of,:0.1663414190858445 :0.11180486386959235 -sell:0.2789031811854642 one:0.21012209263887743 whether:0.17818014786755743 make:0.17529727722933416 :0.15749730107876678 -It.:0.3428171101974916 and:0.2169564720221012 J:0.16459251331678146 .:0.16180015466102315 :0.11383374980260265 -sary:0.955212320522624 series:0.024164239514811527 ity:0.00871100696218486 tary:0.008093375378766225 :0.0038190576216132186 -seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.36824246126878407 the:0.29050166028340185 competent:0.21292233915186526 exclusive:0.06463146331604082 :0.06370207597990804 -work,:0.23943472777838432 plate:0.2305138628862289 market,:0.18750782776034017 mines:0.18162816882973198 :0.1609154127453146 -had:0.5347927269364089 was:0.24916289891870216 has:0.17446314706115848 who:0.024281597086767828 :0.017299629996962662 -cent:0.5989856541839266 cent,:0.37090543311992163 cent.:0.020443130644733607 100:0.005849906130980401 :0.003815875920437906 -be:0.556461864467801 see:0.1518457902200171 get:0.10162802793511076 but:0.10119446240390602 :0.08886985497316521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.2952774716483753 city:0.18507409930672825 he:0.18322361390234393 time:0.17717792119065728 :0.15924689395189526 -thrown:0.33157970498870765 sent:0.1964805262081572 built:0.169822091606465 just:0.1689228633551453 :0.13319481384152482 -me:0.36680272192266494 him:0.3559796763880143 them:0.16509322016297195 us:0.05635123835906617 :0.05577314316728255 -city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 -the:0.5472321751433417 last:0.22531238930363118 Saturday:0.10392226576978614 Tuesday:0.06347666792661226 :0.06005650185662866 -is:0.6527676449728447 was:0.20038670318488697 Is:0.07725397569669117 makes:0.03656003638833396 :0.0330316397572432 -and:0.2676161002052963 Beginning:0.24856295021041783 was:0.22062037757594777 sell:0.14495428933645166 :0.11824628267188642 -ever:0.5726808587851404 been:0.25674100535048294 long:0.10677906403858807 passed:0.038534508719672365 :0.025264563106116283 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3666177582506453 there:0.31824133554309497 It:0.15312557390228565 that:0.08244539591218324 :0.0795699363917908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6093014581039848 as:0.1494121802645019 to:0.09477254613442891 far:0.07643464838144164 :0.07007916711564267 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.44543390420564016 least:0.4040017133265802 any:0.09554811841888138 this:0.03190303634994992 :0.023113227698948455 -the:0.8637736673847938 a:0.055313148297630545 tho:0.05149841763954232 white:0.015105264652936152 :0.014309502025097166 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.7578537310856885 of:0.08498226451496835 not:0.05616984034894959 which:0.05270253053490299 :0.048291633515490415 -is:0.49685254284567976 are:0.17947282940752868 he:0.16317616492969098 was:0.10392047370543757 :0.056577989111662993 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.5545219563510383 a:0.2608085663955532 point:0.08474025760717098 some:0.06466292125496267 :0.03526629839127479 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7018701109378969 with:0.0915064043186707 and:0.08784721317708007 in:0.06764214207431177 :0.051134129492040624 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30308917581985007 to:0.18967251318853043 on:0.18303566026707388 for:0.1764512581833676 :0.14775139254117803 -the:0.22898052034003183 be-:0.2132340317128491 even:0.19993895007817186 cloth:0.19155907549046514 :0.16628742237848199 -delivered:0.3354406898567947 made:0.2189246692825608 secured:0.19193839780144198 conveyed:0.1355126490058617 :0.11818359405334086 -be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 -and:0.5191180823994119 who:0.1812418227159084 he:0.1470077661023793 was:0.08477768138449718 :0.06785464739780318 -wild:0.2836638078123165 other:0.271934942666732 whole:0.1908575661658511 poor:0.1395076357813436 :0.11403604757375696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -growth:0.5826127024591821 progress:0.2270216318095637 development:0.0859030122690821 fire:0.05738675727286127 :0.04707589618931088 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.27437981739702966 is:0.24718521244142466 was:0.21157636111861267 are:0.15060916692978432 :0.11624944211314868 -in:0.3843213381139295 to:0.2011269743824673 if:0.19695707243608726 at:0.10977103752789007 :0.1078235775396258 -paid:0.2845950720510196 used:0.24753554475812814 made:0.19883568547282593 sold:0.13668151753311966 :0.13235218018490666 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.6294277383749111 had:0.17434043309963088 are:0.10707459023521004 were:0.07135375361832086 :0.017803484671927057 -in:0.4102798522084247 when:0.18754123242985876 with:0.14409479444791878 for:0.1337311216464804 :0.12435299926731726 -country:0.29869958899131366 own,:0.26739829050880415 country,:0.174173592897621 rights:0.1333910605242126 :0.12633746707804847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.270026349919342 moment:0.22537094541027097 year:0.18242445341464647 man:0.1644813169747249 :0.15769693428101555 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -above:0.4545900780510038 most:0.1453840086883466 fact:0.13867015487205667 use:0.13597438807656143 :0.12538137031203148 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4054066523853203 make:0.21149607211975627 have:0.14537474488647037 think:0.12483542648094598 :0.1128871041275072 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -very:0.4375809877669585 as:0.17553449370447172 be:0.1729418015578287 doing:0.1317398177856737 :0.08220289918506718 -it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 -in:0.37477340032946577 of:0.2155194418599649 at:0.1426859344793809 made:0.13527271366039648 :0.13174850967079207 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -others.:0.4021272406355896 children.:0.17700551140968465 wife.:0.16179531225908292 night.:0.13250235032308277 :0.12656958537256005 -in:0.42795664280201123 and:0.23600328014294503 to:0.15596374002508107 Dr.:0.1087248138328694 :0.07135152319709326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.3057180835547831 had:0.22579291778241817 has:0.1881738275394963 is:0.16499856242387143 :0.11531660869943099 -to:0.2621218234660518 by:0.2578751540963282 at:0.2431768911377731 as:0.1276864326924444 :0.10913969860740248 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7748166515090325 quietly:0.05908885887944141 there:0.058702448341955635 and:0.05645830023313672 :0.0509337410364339 -which:0.35667337150541994 and:0.34667558976156027 it:0.13676633469808624 they:0.08157589203192549 :0.0783088120030081 -the:0.8400266993969697 a:0.08048189261002 tho:0.03555461489348161 tbe:0.026521050944004476 :0.0174157421555242 -have:0.5819000664942725 had:0.18148977463174465 are:0.1339998132961211 were:0.05581685673175308 :0.04679348884610855 -the:0.9153107354662962 tho:0.05416576106607201 tbe:0.01412943681629669 these:0.008807903450212373 :0.007586163201122642 -the:0.4575722357252958 any:0.26913327289819683 each:0.107098952684728 some:0.09918151716919647 :0.06701402152258291 -to:0.4416829750228396 is:0.15720220657240058 in:0.15670480212611881 such:0.13894831067883417 :0.10546170559980682 -much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -per:0.9996063781255526 ner:0.00017907249210309177 par:0.00015503361816318078 r:4.368729214509646e-05 :1.5828472036020296e-05 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.559677682823192 a:0.31184132007749804 this:0.05345695838945176 his:0.049472580969393595 :0.025551457740464703 -failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8935866514513673 tho:0.037101999248957636 a:0.03261111666109756 our:0.01910224554151987 :0.017597987097057767 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.8661815098293344 In:0.10095615189182089 iu:0.014375168080787983 the:0.009502561914294362 :0.008984608283762487 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -off:0.3790738558587232 down:0.2652563548267291 out:0.15076152874166415 up:0.14224961733013938 :0.06265864324274413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4686450076788888 any:0.20301401793078483 the:0.1383093448866322 this:0.10125017813505399 :0.0887814513686403 -The:0.44484383933691407 A:0.37587902512025584 This:0.0736457859690969 and:0.053325157326987095 :0.052306192246746076 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -last:0.2763691542281986 next:0.2630495968597209 past:0.1618877246196155 present:0.1549060127834819 :0.14378751150898317 -to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 -Grant:0.30507602432257375 Assembly:0.26346570695682364 Government,:0.1517723812003048 and:0.14539703282671837 :0.13428885469357937 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.36094908996155206 as:0.18885261402671524 in:0.17379791303925146 that:0.14635991918605196 :0.13004046378642928 -held:0.32140227588307535 due:0.220234141710712 living:0.16102259477154385 valued:0.15148220517766214 :0.14585878245700673 -the:0.5405981005817545 a:0.3079302953899575 that:0.058919979769809436 some:0.0510839304178359 :0.0414676938406427 -and:0.6374231697108375 which:0.18578755762543658 that:0.06374715770315482 it,:0.056611725999805226 :0.05643038896076588 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.2559473403509949 of:0.2512702893412836 on:0.2120894905224498 and:0.14579664634834477 :0.13489623343692694 -the:0.889405212679876 tho:0.052899907805418304 no:0.021709091557138845 of:0.01881908934628897 :0.017166698611277623 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4672007927200996 in:0.2298629600266384 on:0.19469611005351287 from:0.05837074041324298 :0.04986939678650605 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.5821371269992518 after:0.12506547305238674 and:0.1250457104266441 of:0.08585774644347013 :0.08189394307824711 -which:0.41265982653079725 that:0.3486942025106557 fact,:0.09400299749629465 regard:0.07346649985519113 :0.07117647360706121 -was:0.4723005537965713 had:0.2551283613799193 has:0.18465234598717833 is:0.05465449280231851 :0.03326424603401252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5247196609249463 some:0.19928290191615905 a:0.09926852859661496 this:0.09783567712872245 :0.07889323143355711 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -No:0.4131066368742214 Every:0.1667686361399911 In:0.15850894242732325 The:0.13999122079665638 :0.12162456376180777 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -the:0.29517218801899087 clean:0.2896699283458971 to:0.20151722235180902 a:0.13803355880356474 :0.07560710247973831 -ent:0.5060168320631468 ence:0.40625642875733753 sure:0.08411626819215295 dent:0.0021833572984720786 :0.0014271136888904098 -that:0.31217221812033263 in:0.2674446517771789 with:0.14761935616281102 at:0.14393860209577636 :0.12882517184390124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.3820577129723396 all:0.22823953119089305 keep:0.15232274081674965 do:0.1304749015850331 :0.1069051134349847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wife,:0.3071743010797933 wife:0.21948525155680979 eyes:0.21592388581566455 w:0.12986360352855086 :0.12755295801918157 -petition:0.3083715339522237 Court:0.1940690656306238 mortgage:0.1766845818736309 bonds:0.16503887811988047 :0.1558359404236411 -people.:0.40639538588785507 government.:0.1988310361558101 nation.:0.16183627367384126 court.:0.15715106609615492 :0.0757862381863385 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.7580340816374657 no:0.1212323328175603 I:0.05157468760018024 a:0.04472755780836709 :0.024431340136426692 -and:0.38292488232386807 progress:0.24035104776681274 growth:0.13713932658129144 ad-:0.12989988320699603 :0.1096848601210318 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.364502908913083 in:0.3142753115516344 of:0.17656030024010128 were:0.095388374310979 :0.04927310498420217 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -article:0.3046446982133015 of:0.21104538476644683 person:0.18463095949815742 individual:0.15742218651948156 :0.14225677100261291 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.6480489921182242 were:0.28427420920692203 have:0.028576700751564897 aro:0.021216502168686355 :0.01788359575460243 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whose:0.42564837274495976 of:0.1874673956641087 or:0.16258670993582577 born:0.13595361529290811 :0.08834390636219767 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -found:0.35395029415339313 held:0.2108404604010562 done:0.161982169258132 made:0.14253129023372504 :0.13069578595369366 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4836685624837115 we:0.1756800865932494 would:0.11437084968245158 a:0.11326982641667611 :0.11301067482391144 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2990546537656396 took:0.2590012364917981 this:0.18003967898619636 that:0.1585784233028256 :0.10332600745354015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.2562881792351598 was:0.2010100159432778 has:0.20029776785050535 had:0.19640803514693803 :0.14599600182411904 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city,:0.2956365855045642 country:0.2521112723997798 act,:0.1603579638384442 country,:0.1573023981720645 :0.1345917800851474 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.5917155483501341 very:0.13421973934009188 so:0.12408965069566584 up:0.0765273921585024 :0.07344766945560587 -a:0.3833963522849818 very:0.25263139297704035 in:0.17385934781033627 made:0.1084902697849597 :0.08162263714268189 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4117133052213363 account:0.36966734816878066 a:0.1190172704538574 receipt:0.05702836482832566 :0.042573711327699895 -him:0.34754719465016237 us:0.22535289780377823 in:0.1788711470294533 out:0.1308926443949285 :0.1173361161216776 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.4019535179335506 being:0.2571079094130324 now:0.15836180906159614 fully:0.09291624790992073 :0.08966051568190021 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cost:0.2538877326557141 price:0.23732863644593677 rate:0.21601066282914905 grade:0.15728864770482978 :0.1354843203643702 -in:0.2983973386458897 by:0.26864093189140664 to:0.1631426646118998 for:0.15251281459507246 :0.11730625025573134 -it:0.5695355169337397 there:0.24110556637791752 It:0.12975586361515462 he:0.04578797872512379 :0.013815074348064223 -be:0.9795770934157867 bo:0.01299878846252576 lie:0.004591558943821288 he:0.0015624863627593918 :0.0012700728151067637 -by:0.6398764016050127 in:0.2327502776540724 at:0.05040977336611499 and:0.04420869798981539 :0.032754849384984554 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -act.:0.4459901972037903 city.:0.17790336238180376 county.:0.17036745762839828 year.:0.10944870862402464 :0.09629027416198302 -of:0.5341835956718277 in:0.2064619848859992 from:0.12018633857533807 that:0.08780888325727418 :0.051359197609560786 -been:0.3963970690409361 found:0.20597352244335948 be:0.14473129955993355 lived:0.13487266736354425 :0.11802544159222667 -and:0.37747180769999383 but:0.3681995742492192 because:0.08659500329353524 if:0.08419797000498436 :0.08353564475226752 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5137610804078688 if:0.12815295905531096 in:0.12404466203277162 for:0.11809378012585002 :0.11594751837819853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3662815694491016 them.:0.2702678572677226 life.:0.1327456732258152 all.:0.12171464033652588 :0.10899025972083479 -of:0.6097511720093173 in:0.12023925624686699 with:0.09726242563564554 for:0.0918264736503429 :0.08092067245782734 -way:0.38816385572712114 country:0.3041903073486512 fall:0.19177477182728178 city:0.06732779416632187 :0.04854327093062403 -In:0.4303693786518941 If:0.15225187983169977 But:0.14848399765927756 At:0.14255522138907192 :0.12633952246805658 -gone:0.3049459909206788 come:0.20706971809486294 fallen:0.19768212319634948 taken:0.16869163299817727 :0.1216105347899316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mo-:0.8350679339388927 j:0.047586038034529037 improve:0.04425239453232089 com-:0.04323501233087517 :0.02985862116338238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.4175687175558853 prevent:0.15787909232385175 take:0.15668073676823627 be:0.15354672528599272 :0.11432472806603393 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.40365092413352616 in:0.23014924725642724 as:0.1432942918286305 that:0.12466635325470933 :0.0982391835267067 -to:0.41754511693643404 in:0.24321046927799947 be:0.12056149707499503 for:0.11139392675218653 :0.10728898995838493 -that:0.42025924594095915 house:0.19758066012063144 and:0.14289931164943315 shall:0.1427854095756069 :0.09647537271336934 -of:0.6686301770510173 for:0.18062994121966525 in:0.06173604588779674 to:0.052820213830502026 :0.03618362201101866 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -not:0.6825565542347837 never:0.1899766499604643 ever:0.07164862640186741 been:0.034653666178344235 :0.02116450322454051 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9113340224741332 tho:0.039810375678301216 South:0.019835198955242512 tbe:0.015914673584769844 :0.013105729307553344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.311325764910945 a:0.2637816433976308 no:0.22167974007557165 that:0.1097660246369965 :0.09344682697885603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -if:0.26111588288465004 but:0.22647851828600152 and:0.20107525959802247 that:0.16847542058749843 :0.14285491864382754 -amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -why:0.3842793978887719 if:0.20093184093617383 which:0.16227996324442293 that:0.13644530122980408 :0.1160634967008274 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4584622522750161 where:0.16925261172910488 that:0.14754560579270173 as:0.12045005223009458 :0.10428947797308258 -went:0.3065721060342992 laid:0.23572720788294335 sat:0.19143525642054127 put:0.16138550541793037 :0.10487992424428601 -past:0.4093537187164796 last:0.21871982152378075 least:0.14710556148315726 next:0.12140270603841553 :0.10341819223816691 -it:0.4923748209656926 I:0.1892132657855973 as:0.13422529651117512 what:0.11079986336745802 :0.07338675337007708 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.25372136017712854 for:0.19914088124056376 into:0.19727717888063995 from:0.17845097800696436 :0.1714096016947034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5398811844309893 a:0.25597211999057 the:0.09383696643625064 available:0.07401439076985117 :0.036295338372338816 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6664554001502005 a:0.12161244243939501 be:0.10088787301079509 provide:0.0695060599583485 :0.04153822444126089 -own:0.44727030504977194 way:0.17170948815929934 children:0.13839426565802185 feet:0.12455340065024584 :0.11807254048266112 -was:0.33375375299054943 at:0.3245090409789233 had:0.14085690297086628 is:0.13894295002411122 :0.06193735303554977 -find:0.24052805749408546 be:0.212947685883528 show:0.20525460156250697 say:0.1968911662329019 :0.14437848882697768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.441799696210131 be:0.26799983253948023 is:0.12308401076591433 they:0.0987325364607103 :0.06838392402376416 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.582754367410261 came:0.11529069132759409 with-:0.10970205723729387 point:0.10486470607122945 :0.08738817795362161 -healthy:0.37180669108203845 clean:0.23901921894702544 distinguished:0.13979741887393277 hurt:0.1269035719829534 :0.12247309911404995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4606436235012088 and:0.2524501394814909 I:0.11615640852660426 he:0.0896765705172927 :0.08107325797340331 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -covered:0.2822824150647194 parallel:0.2498464022803805 it:0.20703737238311423 filled:0.15737732285658504 :0.10345648741520089 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7478073098895953 a:0.0938886496491294 his:0.05731917579095034 their:0.05264004256955105 :0.04834482210077372 -of:0.6911680682605003 in:0.13426167098956873 with:0.07606011523128936 upon:0.051718539646080336 :0.04679160587256132 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8770149159524813 be:0.04485781646701 rise:0.03727010295126631 tho:0.021827141769846035 :0.019030022859396197 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.33046250081340933 order:0.19487989751732326 bonds:0.18898740444644924 proposed:0.1530131467973063 :0.13265705042551187 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37125176835157575 in:0.363133141896616 to:0.09767439406048414 In:0.08817917590511037 :0.07976151978621378 -and:0.7649653633982524 person:0.1679832841521321 one:0.0274641586079492 man:0.022557107933303688 :0.017030085908362552 -I:0.2868471167738556 others.:0.24165920376429467 children.:0.20116071568634283 friends.:0.13995359294725532 :0.13037937082825138 -not:0.7426981751192305 you:0.1310502895666498 to:0.057189635946459934 we:0.0439548430094555 :0.025107056358204233 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.2759084092531791 in:0.21742147763871728 to:0.18070988329961274 with:0.17728879052660634 :0.14867143928188456 -in:0.4027082226637818 for:0.29754812999167113 the:0.1230095769789454 a:0.10361404695727969 :0.073120023408322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5996135731574738 but:0.19403904801232713 put:0.10175838234500968 and,:0.06371124391802817 :0.04087775256716124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 -men:0.5426991090383475 years,:0.1494561738731485 persons:0.14248862556204672 or:0.08664998420157898 :0.07870610732487833 -they:0.2623066152966255 companies:0.22549813385667655 you:0.1967307774290484 that:0.16956641607968612 :0.1458980573379634 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.44466806999953157 as:0.2257306537905554 but:0.12359532416527079 for:0.10659175875700201 :0.09941419328764035 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -life,:0.2578638297531708 friends,:0.2544890995457904 opinion,:0.19192355180163492 case,:0.16418542600543362 :0.13153809289397028 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -the:0.8241451600584617 certain:0.07327205291799727 this:0.03689455410573774 an:0.03390185920017166 :0.03178637371763157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.36084316224467267 from:0.23966416347302416 by:0.16343487398905543 to:0.15913572712349763 :0.07692207316975004 -of:0.7417009233208781 and:0.11509541582936528 to:0.09719870937668129 in:0.02409367313467102 :0.021911278338404356 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -an:0.8303089410887526 the:0.07529474573320417 such:0.03719256325552288 our:0.03421247832695044 :0.022991271595569837 -case:0.4220707096813521 sale:0.19258566465695956 cases:0.16839151120832888 action:0.11237222732383535 :0.10457988712952412 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8454549600003647 which:0.0623263484561519 tho:0.05390001780218097 that:0.019340868095394724 :0.018977805645907814 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -favor:0.3253050873055507 men:0.24932360443685134 character:0.16402062116290522 services:0.13510512225979382 :0.12624556483489885 -the:0.6534919704353981 our:0.19278455951326154 his:0.07577312413111183 American:0.04337971552319509 :0.03457063039703348 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.2947508101893897 one:0.28313296229066803 subject:0.14252364300345918 heard:0.14094739924213878 :0.13864518527434438 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.26932165004678615 the:0.2627018414169592 re-:0.1730366747693907 paid:0.15631777335574523 :0.13862206041111877 -the:0.7905727881616114 this:0.10514375611344694 a:0.05858206029348952 our:0.02680117361183817 :0.018900221819614118 -and:0.2723038813743809 talking:0.2440745917680026 to:0.16501709589118618 were:0.16109062456525536 :0.15751380640117485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.30553218038997 is:0.30034868306067586 was:0.2523396722211764 can:0.0768292818397896 :0.06495018248838813 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3183585521632746 placed:0.2684785282416849 was:0.1387175799299411 put:0.13766564927366015 :0.13677969039143925 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -old:0.24620248913041173 entire:0.24353998592124154 excellent:0.23278164686375302 inter-:0.15100897067288352 :0.12646690741171018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man,:0.40225705307076687 life,:0.3341379717945532 year,:0.09571778356878162 day,:0.09360980145462772 :0.07427739011127057 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3090377273036534 as:0.2616278366556328 and:0.1747638776665638 to:0.1553832749353319 :0.09918728343881818 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.33756598077496197 had:0.2755427316393991 be-:0.13832256909667537 never:0.13231114829476395 :0.11625757019419969 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 -pine:0.893418176060683 tree:0.04093774704432757 a:0.028394543900099913 per:0.02203006514575787 :0.015219467849131627 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one.:0.3256233295493647 success.:0.2760057220271746 and:0.1486897798489755 future.:0.1456007669382505 :0.10408040163623476 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -members:0.28697623092247804 line:0.22049608048208588 system:0.19626309695502045 method:0.16433291694990163 :0.13193167469051406 -far:0.7917059143775466 long:0.08328510032727152 much:0.051923120032108666 soon:0.047069508313199435 :0.026016356949873858 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made.:0.3016564439854199 done.:0.23123351476058807 filled:0.19026229744243905 over.:0.1480116574835861 :0.12883608632796684 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -stead:0.3499558843141415 crease:0.2109536211787879 formation:0.1840103142695977 terest:0.17410044798015223 :0.08097973225732076 -an:0.21842422579013188 .:0.21243994904446012 of:0.20302357228729295 The:0.19576680851832584 :0.170345444359789 -had:0.4246431223576737 was:0.2478388483261943 is:0.1525678574686957 has:0.1397887772371078 :0.035161394610328564 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ones:0.2684163007807452 girl:0.21865213937344605 children:0.19857581347325406 boy:0.1580840882111871 :0.1562716581613676 -be:0.5993906699318816 have:0.15627836010031787 at:0.08552512261516615 not:0.08085891243126725 :0.07794693492136717 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.46573734113353904 when:0.2274618337310425 if:0.15408611048499765 which:0.07707919313603727 :0.07563552151438345 -the:0.8281641902200751 a:0.0706146392099596 his:0.03955410749175013 tho:0.03192448780316365 :0.02974257527505159 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6920133790157615 this:0.25240447787638437 tho:0.024536527351351586 its:0.017971474621709355 :0.013074141134793124 -in:0.30067004547707854 of:0.2797229939089808 and:0.14283849302853546 with:0.1396320123990093 :0.13713645518639564 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3239336768907986 in:0.271632505905327 on:0.17522683402678918 at:0.14237103535583764 :0.08683594782124772 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5472762191229471 as:0.15549093560523922 before:0.11486190621780583 and:0.10528725511853931 :0.07708368393546859 -the:0.3618681750268487 a:0.3191042905602629 th.:0.12591868751521262 in-:0.10442365937155872 :0.08868518752611715 -the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -goes:0.2878861792402771 came:0.28125149711342734 went:0.17373056851461818 fell:0.13494745600409563 :0.12218429912758172 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.32944557278696424 be:0.305858593374014 takes:0.17212855006544195 see:0.0989182811545285 :0.09364900261905117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him.:0.22896263651999407 it.:0.2098642470797942 wit::0.1978160427803805 them.:0.18796448457355 :0.17539258904628127 -in:0.5660213721072663 of:0.14323756219908554 with:0.14216051882145248 In:0.11808980351799375 :0.030490743354201877 -was:0.24783815348699978 and:0.24348987197631253 of:0.2358870220041499 to:0.14679712473476858 :0.12598782779776924 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7581955933131262 not:0.09015052936049696 the:0.06868944300207411 at:0.04207770696762723 :0.04088672735667554 -very:0.4062911489285835 way:0.2533056305391094 more:0.13096030035912304 head:0.11264711636945819 :0.09679580380372588 -not:0.9904999206070412 uot:0.006199332237626187 not,:0.0014511860682949991 net:0.0012924914795342391 :0.0005570696075032222 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.819994949951605 be:0.13066155997043843 have:0.032195806565155596 probably:0.008603126804018292 :0.008544556708782753 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.35208966528424074 known:0.25061997726232177 just:0.13655261849561445 regarded:0.13191230777931956 :0.1288254311785033 -three:0.24815570671529277 my:0.2090222022835172 four:0.18606214446055738 ten:0.18012507058756597 :0.17663487595306665 -only:0.4802428778748002 first:0.19849115841299067 least:0.18205053178956698 last:0.07596790646082333 :0.06324752546181889 -they:0.39884548158078126 you:0.23693267443365532 we:0.22205682986947053 I:0.10625063317073985 :0.03591438094535301 -tered:0.49798681608577944 acted:0.18458786906374777 tire:0.16281576486910437 closed:0.09495699492168987 :0.05965255505967867 -only:0.2582293950335973 present:0.22149595059388608 form:0.18359774550888694 great:0.17016430076227299 :0.1665126081013567 -to:0.6068694779162276 will:0.24214939591742698 should:0.09744238167504321 may:0.030470859834863587 :0.023067884656438577 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.47772615074717595 to:0.21830834934225735 was:0.17680652032728203 of:0.07079057988707993 :0.056368399696204545 -county.:0.36532651146077916 says::0.20638325585961947 river.:0.16722805386309889 ::0.14379816169825202 :0.11726401711825053 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.520620941807409 land:0.13304531605593475 premises:0.12853812199115341 property:0.12423255846919874 :0.09356306167630404 -by:0.4221510240186959 in:0.18474541430149236 on:0.16670087024151567 that:0.13380139016336906 :0.09260130127492687 -the:0.6934582794881142 this:0.12643112695564446 last:0.07568123503029364 a:0.07223691226845877 :0.03219244625748902 -way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city.:0.2985122023262604 success.:0.23574705841062918 work.:0.19379511684330353 power.:0.14239578109646348 :0.12954984132334335 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.7201130250293295 Bryan:0.0952034538654455 Cleveland:0.06798732998641138 Smith:0.06241960227289813 :0.054276588845915644 -we:0.30404969092966094 they:0.2618572844154868 it:0.16493496410702396 I:0.13517023700889083 :0.13398782353893754 -which:0.49048924918697956 this:0.2050933689040185 it:0.1260203279811977 order:0.0894676930985123 :0.08892936082929193 -the:0.7647813726963952 said:0.08307792456590302 an:0.059507300094091206 his:0.05721049421105243 :0.03542290843255811 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.45087123309828075 this:0.31960039860491635 his:0.1048451717319772 its:0.07918676623976023 :0.04549643032506559 -other:0.4169636477293577 special:0.20980349252109862 one:0.12540536548196196 such:0.12466866218090836 :0.1231588320866735 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8612956992537737 in:0.06906619689220249 to:0.02950126969306074 ot:0.020203750935028936 :0.01993308322593417 -him:0.4095961870474925 up:0.29485069869979835 them:0.1731910193575921 and:0.06465287862554284 :0.057709216269574294 -in:0.2968607504626671 by:0.20230993539351416 to:0.20048897038510352 of:0.1740776630572085 :0.12626268070150673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -view:0.29456648037171346 condition:0.22462149342853868 piece:0.1621987477030642 day:0.16199595142928824 :0.15661732706739537 -the:0.7344882988296282 said:0.1092499316721914 this:0.09825011250589744 tho:0.03031372327540726 :0.027697933716875373 -of:0.293523038787294 in:0.20024125253836342 In:0.1736558860384149 on:0.17336408354056174 :0.1592157390953658 -to:0.28517113423752 will:0.23036604628549337 not:0.21216520349172616 that:0.19780753634498757 :0.07449007964027306 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3960088614603387 upon:0.37379814861360644 on:0.0891103734515252 the:0.07733079132519671 :0.06375182514933293 -to:0.418217519595689 for:0.24153439669442997 gave:0.15064046673618248 on:0.10120247507298431 :0.08840514190071419 -and:0.29311376746259304 up:0.23658278098968535 now:0.1741568981625535 them:0.16202885763310498 :0.1341176957520633 -road:0.25059187883239487 line:0.24865904201957856 track:0.18158243682530378 and:0.1770158652600781 :0.1421507770626447 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.24600201352236187 use,:0.215455332045114 way:0.19346508712731056 head:0.17254055947027774 :0.1725370078349358 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6991479585033096 very:0.1762939818186409 the:0.05722132191729042 no:0.04117228874114748 :0.026164449019611576 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4520297413211172 and:0.2986686877800756 or:0.09899178114712882 in:0.09416526501427706 :0.05614452473740127 -be:0.5159218371281022 elect:0.18753264663728425 the:0.1335294916465012 send:0.09090539490905385 :0.07211062967905851 -they:0.3272847239949864 it:0.2662606960821848 he:0.17014418644814472 you:0.14079497404777655 :0.09551541942690757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -first:0.34532701031884644 said:0.267032852751123 same:0.14000919411367369 best:0.12911946539305072 :0.11851147742330631 -hour:0.28790869813115627 act:0.212748389574435 account:0.19028024213079217 amount:0.16334313226288413 :0.14571953790073258 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -based:0.35116904682685496 was:0.19796074032327582 is:0.16519202425109047 and:0.14725106774261476 :0.13842712085616388 -the:0.29802063017135816 about:0.22709890902391328 lots:0.21002628562417297 Section:0.1374442691377122 :0.12740990604284322 -of:0.8850001223672859 business:0.05139775272021401 are:0.027023288634082997 and:0.018873649729535726 :0.017705186548881334 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -far:0.5881495083588533 much:0.16943929992548518 well:0.10596868716913298 long:0.10265131826634176 :0.03379118628018675 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7344882988296282 said:0.1092499316721914 this:0.09825011250589744 tho:0.03031372327540726 :0.027697933716875373 -interested:0.5208877375874227 those:0.21106894681363328 when:0.10632821430812206 as:0.09841280788557753 :0.06330229340524451 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8278799835932141 doubt:0.05246288830796524 their:0.04229482114354265 our:0.039421791290691115 :0.03794051566458683 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -formerly:0.42507819080526027 are:0.21745395479836116 is:0.1341894510119791 now:0.1167988455563826 :0.10647955782801698 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.299297881007759 them.:0.2683812736918355 him.:0.21271911512701253 years.:0.11435755894151686 :0.10524417123187593 -about:0.2560466222843642 for:0.2530090821564583 the:0.2427996274351532 at:0.12806535609043576 :0.12007931203358861 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6335432486675228 city:0.10627257168709353 City:0.09038786812352409 city,:0.08946363996297356 :0.08033267155888611 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6886604575504797 that:0.16858566725943572 a:0.059260695991518224 further:0.04780866453930718 :0.03568451465925908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sup-:0.5801501859467315 ap-:0.20187471913319519 re-:0.12571282828353894 re¬:0.0490433891918953 :0.043218877444639 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.28880101519177526 in:0.28513806659093727 to:0.15997300460571334 for:0.14255151721754103 :0.12353639639403304 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -best:0.44063839635614255 greatest:0.20783825123346517 lowest:0.14832925650749249 highest:0.12222104537534946 :0.08097305052755038 -feet:0.2685932782017531 days:0.26783015163043544 years:0.22090239302735817 minutes:0.12952691062074725 :0.11314726651970596 -ranks:0.4428872937919288 as:0.210498981409816 and:0.17008736244685987 in:0.0984961454320988 :0.07803021691929647 -it:0.26399453284816915 him:0.2590697036979949 that:0.22228382890245563 when:0.15297698678473412 :0.10167494776664615 -they:0.3028704637714659 he:0.24085883565663685 we:0.2261714414596094 it:0.13426798727512723 :0.09583127183716063 -all.:0.37636055487532627 out.:0.1917278446564835 up.:0.17769866511058896 off.:0.16091759016414778 :0.09329534519345363 -are:0.2640904091294035 were:0.2501795866742653 gentlemen:0.22074092904526368 very:0.14239579600063257 :0.12259327915043501 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8836238159026605 N.:0.06227315714115383 tho:0.023604358670177232 a:0.017726931009414228 :0.012771737276594248 -he:0.23906339788120756 it:0.23016357009713445 is:0.21771558889552345 they:0.17314196876747914 :0.13991547435865542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.28239149706497607 placed:0.2737099410813851 carried:0.17029127090658125 put:0.16493740024948628 :0.10866989069757123 -a:0.5402902834506215 the:0.18453398527328202 w:0.17696830597327984 been:0.0682877055845124 :0.029919719718304396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7393684661283849 his:0.10473275611647506 a:0.06704385952106735 this:0.04589678295613472 :0.04295813527793794 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -if:0.34493133071143595 If:0.2436060770760108 that:0.19250972834511013 though:0.1430231660595764 :0.07592969780786664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -follows,:0.3139439103282803 well:0.22106136706173157 it:0.16672491199188066 much:0.1559682933135404 :0.14230151730456717 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.2511105579263658 will:0.2470700021944791 figures:0.22438474553292503 people:0.147913637310378 :0.12952105703585215 -purpose:0.20719197122450905 State:0.20592744932833862 day:0.19613414923494918 people:0.19556251276437905 :0.19518391744782418 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8131648040490205 a:0.07056015296504316 tho:0.05408466379922716 time:0.0372084590327077 :0.024981920154001417 -was:0.42964260780644115 were:0.31240456488953733 are:0.12856476708199907 is:0.09946527954026067 :0.029922780681761758 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.33489113616423966 them.:0.2761448758626678 him.:0.24379148746471532 home.:0.07377527018951713 :0.0713972303188601 -to:0.3502416787094014 of:0.19581684596027343 and:0.17372992793807693 ar-:0.14079229262145443 :0.1394192547707937 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5762977183559291 these:0.20220528834524354 those:0.11728531743374151 two:0.06160286009447152 :0.04260881577061438 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -shall:0.6024370592522315 would:0.13351352455222978 will:0.11600942493419007 to:0.08263161379885409 :0.06540837746249457 -as:0.8197916561776349 too:0.0639277517758595 a:0.05088784207344365 be:0.04198641341111181 :0.02340633656195022 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.889227793623049 this:0.030189852571776865 tho:0.03010632637991652 White:0.02980231512683501 :0.02067371229842247 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days.:0.5799403440114981 hours.:0.1561308640273268 years.:0.11859400596575054 days:0.07834116266427446 :0.06699362333115005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4735783450489836 where:0.2910713905747509 that:0.18066887003184703 which:0.029979651419577116 :0.024701742924841463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4088813728266846 had:0.27244597470301196 has:0.2090645511479232 is:0.0890955181100513 :0.02051258321232899 -of:0.857759949186879 to:0.0574521336428488 in:0.04285305045913058 that:0.02624472706622813 :0.015690139644913483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2788042534688078 country:0.19545941946755727 world:0.1930913123452917 city:0.1704606403572238 :0.1621843743611195 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -that:0.24939506685925134 with:0.21990842490627233 in:0.20272351550980874 of:0.19455381754972248 :0.1334191751749451 -action:0.23009325040710257 it:0.21482062617718406 he:0.2098799392752144 plan:0.17267674666166605 :0.172529437478833 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -and:0.37909388157188434 that:0.22791557724006872 go:0.15577735939377896 not:0.13240182866495656 :0.10481135312931147 -did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6324650472790379 the:0.2509377074009092 hot:0.04819175603449293 fresh:0.0388815141145881 :0.02952397517097177 -up:0.3474076556958875 back:0.28618079849784783 them:0.15270302495162938 him:0.12265289343469792 :0.0910556274199376 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -annual:0.23624957466986315 first:0.22734532630283788 next:0.2171351175192688 regular:0.2066273144099544 :0.11264266709807581 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6029711877046687 with:0.1566675756949919 in:0.10373404514571664 but:0.08139929561780751 :0.05522789583681522 -ordered:0.4080823336457079 notified:0.19945643418759423 relief:0.15034823392607297 states:0.1443955744970047 :0.09771742374362014 -time:0.4827282498215172 time,:0.29196400374922415 one:0.0882865248328127 years:0.0813860115574876 :0.05563521003895835 -is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 -with-:0.3125223601857507 up:0.26534681188514836 back:0.18735131617952563 from:0.1417124640418233 :0.09306704770775197 -and:0.32466259634338157 but:0.2938119731301661 that:0.1381532180583145 when:0.12392355193179433 :0.11944866053634354 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8087017928079864 our:0.07216678228483403 this:0.04910980830635399 tho:0.035528452004818474 :0.03449316459600721 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3615513013216157 into:0.3309981159894522 on:0.13344917493175848 up:0.08917871612026607 :0.08482269163690756 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 -turned:0.2740921562696725 port:0.267879263024589 ceived:0.15373441795153514 cent:0.15366272657983762 :0.1506314361743657 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5492233538005616 do:0.16682445559166587 not:0.11728117307537045 bo:0.08401267582753234 :0.08265834170486962 -suppose:0.433923041653141 it:0.15888670565957663 so:0.14690107634592922 in:0.14374058108918186 :0.11654859525217137 -it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.5129498170849175 to:0.3783552485302477 now:0.04116063196982422 also:0.04053618180577985 :0.026998120609230715 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.4202896153353412 "It:0.18892213981956474 it:0.16604913311827887 There:0.12475135556483898 :0.09998775616197621 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.7225831969000196 thousand:0.11051703555259099 and:0.0596779156079746 of:0.056580783488496364 :0.05064106845091858 -which:0.2961172161873645 but:0.2876652126587946 and:0.20846308853172096 as:0.12591225601915412 :0.08184222660296582 -number:0.5449764284454687 deposit:0.15873389408445096 portion:0.10612844605841987 few:0.10006972350623797 :0.09009150790542242 -distance:0.47711289465058293 importance:0.2360320580798886 money:0.11228962643709169 loss:0.09485765105169049 :0.07970776978074626 -of:0.6591267671176425 for:0.12406614078355532 in:0.10345536315781426 on:0.07860029639845703 :0.034751432542530845 -most:0.31580762874767554 same:0.2361567099146447 general:0.18314870891956436 law:0.1352936434087749 :0.12959330900934055 -of:0.907268334591354 years:0.025737241027863237 in:0.024565968461624694 as:0.022342452596263114 :0.020086003322895004 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8620614363408406 its:0.0623544882723237 tho:0.03555559100255277 all:0.02087860291603573 :0.019149881468247237 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.33754344508522033 years:0.30475698594098527 years,:0.14719203607832923 minutes:0.1147584084413511 :0.0957491244541139 -points:0.31761402039035846 children:0.2757742272727049 child:0.2439005496231806 positions:0.09249014024059854 :0.07022106247315757 -the:0.42559119259292916 a:0.3752649733063677 this:0.12337672366763466 his:0.04161223992619893 :0.03415487050686948 -All:0.2835650034706165 One:0.22974012641879957 Smith,:0.1932891080877386 V:0.15435422453701128 :0.13905153748583404 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2768319978496814 in:0.21858269016823292 In:0.20920021328586152 but:0.15913982366604834 :0.13624527503017583 -to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.382822512214865 that:0.3189651646776821 fact,:0.13227465521724788 said:0.1132625584891586 :0.0526751094010465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -Monday:0.2997385625419117 m.,:0.20724294671221588 yesterday:0.17209508172475718 p.:0.16620183845768755 :0.15472157056342747 -Virginia,:0.7540602909721222 of:0.13091842015180563 and:0.059172947360195904 &:0.02963447101645366 :0.02621387049942269 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -came:0.3078911000110205 come:0.20454167040124577 are:0.20193654768573135 were:0.16313089969071307 :0.12249978221128925 -not:0.6693654926427389 probably:0.11618927754721017 hereafter:0.09131962038954101 soon:0.07042748956657341 :0.05269811985393656 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -stead:0.3499558843141415 crease:0.2109536211787879 formation:0.1840103142695977 terest:0.17410044798015223 :0.08097973225732076 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 -a:0.562049377717793 the:0.22794754859436522 each:0.11426798962184681 in:0.05142230109234864 :0.04431278297364634 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 -and:0.2983925921655949 being:0.2215175810869689 law,:0.19996602312927922 which:0.15262867779573305 :0.12749512582242403 -water:0.3031107095330785 horse:0.2407740528959703 whole:0.17094752759029452 great:0.15034701450852359 :0.13482069547213296 -the:0.7299262090173405 a:0.15216393043877982 said:0.05267344190149094 his:0.03679500296642862 :0.02844141567596005 -the:0.8208028459464394 a:0.09466214820441857 tho:0.04019266946524272 tbe:0.03133437284766121 :0.013007963536237994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7438275366335481 tho:0.19391872246358846 a:0.027855235846935226 tbe:0.019356526559251266 :0.015041978496676907 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -look:0.28053503531404356 sought:0.2142979525147772 immediately:0.18971558589109694 was:0.17436487089871297 :0.14108655538136933 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6271532326261835 by:0.1378025507469002 along:0.1052644706583674 on:0.07129890290143791 :0.05848084306711083 -a:0.7136768742042643 the:0.16283619359671364 his:0.04804906264667283 in:0.03963958000565312 :0.03579828954669604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.42154500890121777 mortgage,:0.313259003046185 county,:0.09836771966833602 county:0.08643033245472659 :0.08039793592953473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.2929392254220789 in:0.2682893847905068 by:0.18328426775509243 at:0.14174504439255195 :0.11374207763977011 -him:0.3144638346602169 himself:0.19314406796488842 them:0.1905092041989874 me:0.17361014665419128 :0.12827274652171602 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -in:0.36623116848568954 of:0.27698378994299805 is:0.18496637838271718 to:0.09376285202532865 :0.07805581116326664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.39405515272276553 was:0.17425963025717683 is:0.171497883910032 Assembly:0.1303122494248118 :0.1298750836852139 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -out:0.38887268058805513 up:0.17179064512173223 was:0.16793823827210547 and:0.15283262124679423 :0.11856581477131282 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6926157789530475 an:0.14697722068419414 some:0.08971654213252483 what:0.039049488452044395 :0.031640969778189164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -formed:0.5904862087719301 former:0.3491264677203571 chance:0.027062146086158978 tain:0.021434638303541517 :0.011890539118012161 -of:0.9469863022823536 a:0.016257166588294403 No.:0.014100964181712151 ot:0.01387603222162661 :0.00877953472601312 -let:0.6895884126411421 to:0.12170149553376594 for:0.07159678069723628 with:0.06010850630107951 :0.05700480482677624 -and:0.34336866606526 at:0.22278681240142195 with:0.1730492614845373 as:0.13600047099512105 :0.12479478905365962 -have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3442897275613856 May:0.21280178472711278 October:0.20776877755129708 April:0.12168167392456168 :0.1134580362356428 -be:0.939614304062127 bo:0.04105179265459046 contract:0.007802336684445729 have:0.00686730821943108 :0.004664258379405701 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.5067115140377507 and:0.20241039285700532 against:0.13006977559125638 the:0.10389327749839351 :0.056915040015594005 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -That:0.5186695739784515 It:0.21257891243451021 There:0.15154368745092917 This:0.06837722960524746 :0.04883059653086168 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thorough:0.2252155960347672 I:0.21938088852485296 frequent:0.20472341533560812 prompt:0.17652170347250706 :0.1741583966322646 -you:0.3003298737907555 them:0.2567592375270112 which:0.17818694988968814 I:0.15145115310336696 :0.11327278568917824 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.4150829771551462 he:0.22943867144838842 there:0.13134104065440688 It:0.12053334500510204 :0.10360396573695643 -United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 -South:0.3475441941157938 North:0.23508812691324774 great:0.17369649663009 Central:0.12431827684780891 :0.11935290549305946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -national:0.35000795232135695 mo-:0.33866381371359755 j:0.11230751427942949 |:0.11218262486900515 :0.08683809481661083 -and:0.7248568043931264 was:0.10799539631767498 up,:0.0658244984973884 for:0.05148348572733005 :0.04983981506448006 -them,:0.4461209595799576 them:0.170804005826803 France:0.14732742489457237 him:0.12150097706355635 :0.11424663263511083 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.2525905536602418 that:0.24086953704306668 however,:0.203603379813847 it:0.17114983588842128 :0.1317866935944233 -the:0.5652139135812851 running:0.13322999799590746 then:0.12332110903807351 John:0.09511443646837986 :0.08312054291635403 -dry:0.8111221436295679 the:0.0761252038500178 and:0.05715701723871805 white:0.04620217853437007 :0.009393456747326145 -reasonable:0.5259022480217863 fair:0.20041778144371605 liberal:0.10984856909609032 small:0.09511842489715906 :0.06871297654124811 -by:0.43281976912227016 in:0.20917426630435124 for:0.1461026259979018 to:0.12495414146896457 :0.0869491971065122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.8888578691300698 a:0.035400032598741776 tho:0.03479210055887068 his:0.0238736633643683 :0.017076334347949387 -of:0.4399266654282679 that:0.361729932729972 in:0.07428889805793981 before:0.06890008741816495 :0.0551544163656554 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.5537061759062347 distance:0.21462308609037387 time,:0.117953069544228 address:0.06155213859831928 :0.05216552986084413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.6249957572689656 we:0.1756008055088701 there:0.08287728976683932 you:0.06761470567423801 :0.04891144178108691 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.25713588352461564 reason:0.19943811793838703 attempt:0.19294083764245654 desire:0.18478369497441377 :0.16570146592012697 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.36924946682823834 man:0.28425813578154185 gentleman:0.14893686693143457 lady:0.09952691470956117 :0.09802861574922393 -people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 -mand:0.412208234601425 pany:0.27339234184612415 mittee:0.14461002967250372 petition:0.0886370938828831 :0.08115229999706394 -he:0.2652832461322699 and:0.22940868833374342 there:0.18084763020565298 house:0.17028736738703096 :0.15417306794130278 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.2461519714710672 free:0.20865856602899532 running:0.19555178959877592 returned:0.18403538943977474 :0.16560228346138686 -the:0.41786629396843455 his:0.27587247009166366 a:0.15728243887280624 their:0.09231461783142811 :0.056664179235667494 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.5566592055992242 of:0.21166534168588744 with:0.10381567356857054 In:0.0753340450631087 :0.05252573408320924 -that:0.3204309369075381 and:0.30972240187911115 of:0.18976447807444 to:0.1081484668592826 :0.07193371627962823 -same:0.40405122532863663 case:0.22671995542506188 people:0.1703355042117408 court:0.10099974593101893 :0.09789356910354191 -as:0.36175077473798395 up:0.18650205442024198 back:0.18245073043930246 and:0.14291922597656312 :0.12637721442590846 -Mr.:0.7142681190224774 Senator:0.10367188877666014 Mrs.:0.06561630262430858 Then:0.06279163321833628 :0.05365205635821746 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.2804749923771562 of:0.2684180883683288 with:0.15526254148712343 In:0.14961278896467722 :0.1462315888027144 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -will:0.4780622777551612 shall:0.20166644443457826 would:0.15586018312094327 should:0.08270562781551037 :0.08170546687380678 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7901173920562711 in:0.06976606995026112 to:0.058856987513840345 for:0.04436855137611206 :0.03689099910351538 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6569228932506791 have:0.22579994084262608 not:0.04947780045580511 bo:0.0341371430729783 :0.03366222237791127 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.43739148808768286 around:0.19670059943358625 and:0.15588155572212808 in:0.11201890167053423 :0.09800745508606855 -of:0.4979979896032077 in:0.2359547191641254 and:0.12721155108073004 to:0.08119213885155892 :0.057643601300378065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8529318263784151 in:0.04698205474553998 and:0.041033579723453166 with:0.03494386655889877 :0.024108672593693047 -General:0.2645038654134091 general:0.2588056212590209 most:0.2510760204256185 court,:0.12095389984641071 :0.10466059305554067 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.2512345743258341 after:0.2326885468256897 by:0.20720328912237498 as:0.16578614154785767 :0.1430874481782436 -the:0.2926151981994734 be:0.2851215679073473 any:0.2098368720031492 make:0.1215128445024753 :0.09091351738755477 -not:0.22800988639949962 go:0.21948833637571055 continue:0.20887578828962483 be:0.17519518221252411 :0.168430806722641 -the:0.36526872727748905 in:0.25370538188626324 at:0.1593464811271513 to:0.14343330756601763 :0.0782461021430788 -law:0.28801542435750244 the:0.22152099290333302 them:0.17446325908396731 him:0.16943931403181717 :0.1465610096233801 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8415253223268931 tho:0.05854271099876476 his:0.042652181798146 human:0.028675737981144565 :0.02860404689505161 -told:0.391988159040023 saw:0.2931437697536312 asked:0.11644504489332635 gave:0.10233712337234266 :0.09608590294067672 -know:0.7021382124518015 see:0.12583295305965742 exactly:0.06983647715227534 only:0.0525665718709338 :0.04962578546533206 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.5384396589243462 one:0.1272126237394188 years:0.11499838629604237 places:0.11107074516029596 :0.10827858587989676 -most:0.47999715204941523 very:0.2884977900722418 more:0.17533959208327327 highly:0.036754870030232596 :0.019410595764837026 -have:0.5339718739384498 not:0.24068694438412142 be:0.15276865856513355 be-:0.04249848850797723 :0.030074034604317935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.36884440162481796 was:0.19968892551621217 necessary:0.18589932349131308 impossible:0.15154418773140443 :0.09402316163625231 -and:0.33528403765115494 was:0.2787576090603626 is:0.25650423683778345 are:0.07673236430247543 :0.05272175214822354 -have:0.5481249946711444 had:0.17050391941828666 are:0.11838245757481843 find:0.11171278053034484 :0.051275847805405644 -be:0.8885443797679154 bo:0.06317716835812354 easily:0.016954553267224812 well:0.016437834418833733 :0.014886064187902587 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -carried:0.6064556112163244 taken:0.1281335148768434 worked:0.10103412433667781 thrown:0.10090952153235402 :0.0634672280378003 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8531874081190264 tho:0.03843729082929482 a:0.0368200733694699 its:0.03668269909999974 :0.034872528582209024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -me:0.5044841556846251 him:0.33370970831990443 us:0.07303065327333576 them:0.058257963270454925 :0.03051751945167962 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.391011888807529 a:0.2494345750180191 common:0.1952709875107576 every:0.08629646571327905 :0.07798608295041523 -be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 -obliged:0.2598792479716274 going:0.22899817590925256 referred:0.19953394791594806 not:0.16767475984820673 :0.14391386835496536 -to:0.6588328116862617 not:0.25992658909896726 over-:0.03691275906169046 a:0.023883788451379732 :0.020444051701700786 -the:0.6378020771841322 make:0.14482213055845025 our:0.11910378715751634 its:0.05758893904546924 :0.040683066054431984 -to:0.538618895188208 and:0.19254197691089536 in:0.11473429552786682 on:0.08481145699296566 :0.06929337538006423 -of:0.7290767705263522 to:0.12905032074113804 for:0.056468890034698384 that:0.050571946535682456 :0.034832072162128885 -by:0.5714133565823319 to:0.3360223681291732 in:0.05520492125516661 at:0.021593407539121503 :0.015765946494206866 -interest,:0.30037424791880124 character:0.20994401154044723 circumstances:0.169956366283766 character,:0.16470785845586022 :0.1550175158011254 -no:0.6524007431404812 a:0.13645725888722351 the:0.11290259855924359 much:0.058367446255864354 :0.03987195315718727 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8620673102080396 tho:0.04957319687742728 its:0.03462960605436709 a:0.03064745405662565 :0.023082432803540387 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lie:0.38237262190394294 be-:0.2560444550110732 be:0.1893326088989062 >:0.09969699475174 :0.07255331943433774 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.32595577453777846 or:0.18907801354627432 over:0.1883878777278667 within:0.1626110307298694 :0.13396730345821106 -for:0.3541612076749834 or:0.3246071248814775 and:0.1904625184518842 in:0.06571191910718259 :0.06505722988447242 -it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.30060818705297876 an:0.2327577149695929 the:0.21103092636423715 per:0.15155957289664643 :0.10404359871654474 -old:0.5388944090188911 whole:0.1340059607643885 United:0.12537864326280984 best:0.1022892639992431 :0.09943172295466739 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.7600326768573179 great:0.08026692866414625 total:0.06616354053901397 largo:0.04937565139963632 :0.04416120253988556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -South.:0.43003734102254915 side.:0.230181418204941 street.:0.17274518372998748 Union.:0.08814133227653859 :0.07889472476598365 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.27641190207101207 who:0.2620479468459058 has:0.21094015565044238 is:0.15196839819469854 :0.09863159723794113 -be:0.9299355648544987 bo:0.039482578264576774 have:0.01912105221075998 he:0.0068129068158757486 :0.00464789785428889 -found:0.3234076684373223 remembered:0.2202773322437868 given:0.18162208867405258 so:0.14885244180138496 :0.1258404688434532 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.29291110172006124 more:0.23928040205800719 very:0.209584899441618 entirely:0.14541386513848562 :0.11280973164182799 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -of:0.3465061824760367 in:0.31836742522400185 all:0.14897223542193394 on:0.11139305853644446 :0.07476109834158295 -when:0.33645036779607057 and:0.269633930079677 to:0.14360250009895376 that:0.13209571872983536 :0.1182174832954632 -tell:0.3508177250467423 give:0.2530171921237043 do:0.2207731296506232 make:0.10631782769977638 :0.06907412547915392 -tween:0.7698102219216426 fore:0.09063312715324641 ing:0.07845567095177827 cause:0.051735800101568495 :0.009365179871764166 -ner:0.9060110752863424 age:0.03172659250908625 kind,:0.02327915029246376 kind:0.020680330018100292 :0.018302851894007356 -200:0.25204257966664767 fifty:0.2156793665029295 100:0.21186078368544828 300:0.18188761080795152 :0.13852965933702313 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -early:0.3144462696422131 city:0.19044727867238798 time:0.18043012505682438 election:0.17516969128491353 :0.1395066353436611 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -world.:0.2640367111746353 country.:0.23178389373806066 people.:0.19682201850485836 other.:0.1579133213924044 :0.14944405519004136 -an:0.23044249932233965 a:0.2165547489097687 i:0.202075692439855 known:0.19001816988883316 :0.16090888943920353 -apart:0.3181646724993098 aside:0.3063394422272346 up:0.15498067251821634 out:0.12667565633910374 :0.09383955641613549 -sum:0.34120176925562506 need:0.2238187111029073 will:0.19702529094325436 can-:0.13357711711632436 :0.10437711158188906 -that:0.3578326482784027 when:0.18477440723419292 at:0.17186614672041234 lots:0.159461606626881 :0.12606519114011094 -he:0.4845088074286456 prosperity:0.1981489077870373 and:0.14517245632593886 He:0.09146017005759016 :0.08070965840078823 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.35794955937767414 equally:0.28486198095392096 the:0.20560981596324243 its:0.07998736794962553 :0.0715912757555369 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3838706733250693 shows:0.253731473791642 showed:0.21098928425596863 and:0.08132476648484223 :0.07008380214247786 -the:0.8375389017108192 a:0.049805444122886025 tho:0.048562620947538375 this:0.03642466672666258 :0.027668366492093973 -e:0.263190996746864 h:0.22189429794670684 r:0.19407238170638225 s:0.17447976067513846 :0.1463625629249085 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -M.,:0.403502954810456 D.:0.20310063575809184 D:0.19664344550382418 M.:0.12177618584629712 :0.07497677808133081 -Mr.:0.5629855952720745 the:0.1730657122254535 to:0.10244347828806542 for:0.09209973992521236 :0.06940547428919412 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3651209294993735 before:0.2330889972801379 that:0.2040892957627261 it,:0.1044951426145301 :0.09320563484323252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9417349911991307 and:0.04026860297672243 will:0.006247232425085555 by:0.005930977504468328 :0.005818195894592968 -of:0.764733047635831 for:0.126845284691428 which:0.04520813215821139 and:0.03375666670390989 :0.029456868810619773 -Rock:0.4755422475773618 the:0.36606066437465534 Long:0.08089811156533754 this:0.04698494191902823 :0.03051403456361709 -New:0.9470844518395996 the:0.042583409846404206 Now:0.005094325969812999 do:0.0035611951249552016 :0.0016766172192280476 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.5740749831335982 them:0.20970275973165212 sale,:0.09053563105645503 this:0.06994284362101369 :0.055743782457281045 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.37394842971161313 people:0.23918631687117262 committee:0.1491929864829881 I:0.13182864102164485 :0.1058436259125812 -of:0.33985407656046823 again.:0.3232439685188672 of.:0.12861735809001085 there.:0.10863296790621194 :0.09965162892444178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3696343447627655 they:0.3630283969817678 it:0.10403110121569498 we:0.08574317121599655 :0.07756298582377523 -use:0.29946109638533225 following:0.18761451626536538 above:0.18542908906739186 of:0.17480954551286204 :0.15268575276904853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.4522910794330044 tract:0.24945681391688174 woman:0.10967808118409718 portion:0.10602113360994084 :0.08255289185607609 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.4391082704231684 America.:0.20129544424169593 them.:0.15234004682430316 Washington.:0.10411330505913395 :0.10314293345169843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -yard:0.36537538360325106 business,:0.23628135499936148 trade,:0.14474838190404662 business:0.129033369011562 :0.12456151048177885 -time:0.25277025583393287 period:0.21098599328048945 line:0.18792411766422568 list:0.1814930331873122 :0.16682660003403987 -the:0.6803195016857765 their:0.10945068407580147 two:0.09541648812136776 small:0.07053974135364845 :0.044273584763405954 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.8198779672226643 its:0.09843465083092341 a:0.03992857475641458 tho:0.021163062259240285 :0.020595744930757495 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -off:0.294615694865224 of:0.2333494662159845 up:0.18090871546370754 in:0.14870187258530712 :0.1424242508697768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -based:0.3033479842382343 called:0.28354776194806575 dependent:0.17873473327865674 placed:0.15005630211608229 :0.08431321841896101 -young:0.6432864976979662 two:0.136525749097059 business:0.11827761957366233 old:0.051420853472603896 :0.05048928015870853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.47556071598154115 all:0.28890335730656835 control:0.10125494012360262 for:0.07800918267914311 :0.056271803909144685 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 -time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 -so:0.2682109077520346 a:0.2627620856381285 and:0.20716105086480477 too:0.1469667689837591 :0.11489918676127309 -act:0.30549977475887047 which:0.29785807718506635 whom:0.1395209971161789 be:0.1291322532663142 :0.12798889767357 -he:0.4096586368503164 they:0.18229661433266545 I:0.18201454502947453 we:0.1294544910131726 :0.09657571277437108 -the:0.3522217156349553 t:0.3274675531676785 -:0.12754768638028938 i:0.11191880774936622 :0.08084423706771052 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -a:0.3547818665069313 on:0.26084506134211155 the:0.19299035414450671 left:0.0965992743248372 :0.09478344368161333 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8849057439617202 tho:0.037075737371720034 each:0.03624468332417228 last:0.024335971727651194 :0.01743786361473639 -the:0.6338763324017294 by:0.18991633764622193 a:0.09322378269636532 every:0.04342805875567209 :0.03955548850001124 -how:0.28727377597857373 the:0.20668276608459427 too:0.18920936211015418 very:0.18641006558624304 :0.1304240302404346 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3184892846720086 the:0.20090286698296123 any:0.16557567064980877 sale:0.1601380808331288 :0.15489409686209246 -District:0.32521996388795515 -:0.20338846908626637 Board:0.17959889351147196 city:0.15306266386176828 :0.1387300096525383 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.9201943748966166 if:0.035545835420554825 ::0.02088950179664535 when:0.013161898318803976 :0.010208389567379307 -be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 -was:0.5237439617841158 and:0.19646478279249968 is:0.18860578297706468 of:0.045905796112592344 :0.045279676333727294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.35820430491149097 so:0.24429254584243987 as:0.17526270963504811 very:0.11690774872826208 :0.10533269088275883 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7939503781311158 in:0.08108587220652044 at:0.04842580773137662 and:0.03975703509824893 :0.03678090683273835 -lands:0.24590202586788326 powers:0.21339340835968862 court:0.18472863750632446 privilege:0.17809110455996333 :0.17788482370614025 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.24539809117865566 was:0.2151500266249952 saw:0.20084463185069082 think:0.1836982350983484 :0.15490901524730988 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -annum:0.7158433132555214 cent:0.13401980079541168 annum,:0.06650883359121913 cent,:0.047531029474675975 :0.036097022883171605 -of:0.7743693453848391 Executive:0.10669333460261421 was:0.05485102111365549 and:0.03206814678632262 :0.03201815211256863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.3343505427569476 minutes:0.3317678534372936 degrees:0.18911279686820479 nine:0.07422894057943562 :0.07053986635811825 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year:0.28465516211493064 week:0.25329711873435595 night:0.19952503638571392 resort:0.16630641129705145 :0.09621627146794808 -his:0.4176411440013859 their:0.2805702511032155 her:0.11579374791539246 my:0.09628431209707541 :0.0897105448829307 -of:0.8802476363242749 on:0.05094219583137567 and:0.027991632874300034 in:0.021132290221278036 :0.019686244748771307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8019960735137689 a:0.10977397673716673 any:0.032978245872568715 said:0.031698113964988346 :0.02355358991150723 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.49152843460698525 which:0.19575912103464888 that:0.1725657744863124 in:0.07062219789980687 :0.06952447197224661 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.41411071140093225 without:0.19454260794593808 with:0.16546707447807169 In:0.16090559546934338 :0.06497401070571455 -same:0.47947053664835776 name:0.2800798712505302 first:0.10369624459049237 fact:0.07549296568148962 :0.06126038182913009 -in:0.5697485032641886 separate:0.15675452580640503 at:0.10052847838208859 and:0.09564633905223766 :0.0773221534950802 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.9416703704140091 various:0.023236699274713616 many:0.012994807837560228 a:0.011364422584320827 :0.01073369988939609 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.47517884095236823 I:0.1744341654134558 think:0.14020571147715452 lie:0.11244089814883575 :0.09774038400818569 -be:0.36095377835824216 have:0.18524878544556667 do:0.18124230136938715 say:0.17446664629142375 :0.09808848853538049 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -addition:0.2602468090663326 and:0.2285528668645031 right:0.18407887793608924 as:0.16952167711578534 :0.15759976901728986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5679598260651182 to:0.16994512987487823 in:0.13852567384985523 for:0.07252968463249508 :0.05103968557765316 -year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.34761994195539425 get:0.21398372546405375 came:0.20954298372314678 all:0.13822421205494434 :0.09062913680246087 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cured:0.3277916924188085 done.:0.26615364197896857 familiar:0.2007229273389916 well.:0.1309402340708865 :0.07439150419234473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.6361144407610316 was:0.2374669991526607 Is:0.05712859408488569 would:0.04015006508286588 :0.029139900918556148 -The:0.5865503592479635 the:0.1965665649336647 Smith,:0.08332092903986833 and:0.07493983478674289 :0.058622311991760497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.5999309956571209 day:0.1481409514543817 only:0.08838961519033192 morning:0.08310273430412177 :0.08043570339404364 -of:0.36430296933007866 in:0.32819545233856295 the:0.26019442482765054 and:0.02390407976040008 :0.023403073743307877 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3693162434875774 into:0.18893086540077844 up:0.18498036898491604 in:0.15669464395541785 :0.1000778781713102 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.5617042972164987 he:0.1987692748279706 It:0.13978735360761269 there:0.05409749230640192 :0.04564158204151589 -side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4587283731314373 the:0.17094274049688707 to:0.14610371623520435 in:0.13012055993879013 :0.09410461019768114 -have:0.37941790458533037 had:0.282027967829014 would:0.11767323844622991 could:0.11455066112694358 :0.10633022801248206 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7028734518464442 the:0.21655547631411992 one:0.03964942039166838 this:0.023399710886610463 :0.017521940561156853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.662663278745635 I:0.09419563156553354 have:0.09061013756384399 he:0.0772627021712782 :0.07526824995370913 -the:0.7094065729308406 was:0.09261937014860443 are:0.08646077698707268 is:0.06577204619354785 :0.04574123373993419 -and:0.5473021961756446 Smith:0.12842465166237477 Smith,:0.11769490144988407 L:0.11229847437119513 :0.09427977634090133 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -trade.:0.46026420368584303 them.:0.22528973886664336 party.:0.1314301379833661 each.:0.0928187783728755 :0.0901971410912721 -they:0.5148898128280488 there:0.2483628990712214 we:0.16275211061956227 you:0.06003634860230726 :0.01395882887886023 -so:0.8838124286701197 as:0.03668534259449245 very:0.03290232759073164 gone:0.025656462014929046 :0.020943439129727338 -D:0.6145509470645836 M:0.18371345212042448 C:0.06992382493431662 J:0.06885938328699737 :0.06295239259367796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -there:0.24260303622326032 is:0.19749698151941336 now:0.1914729867424438 are:0.1883311010897014 :0.18009589442518106 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -an:0.3801489907562184 the:0.2726405486360934 most:0.1994301213651299 this:0.07499005403773479 :0.07279028520482357 -country.:0.26003973935479047 world.:0.25537658717033485 city.:0.18932180786528852 people.:0.1538644508481336 :0.14139741476145265 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.862065642370777 cold:0.05303739831515047 tho:0.04080678249260602 bad:0.023804669388858873 :0.020285507432607656 -of:0.7257746928194893 for:0.08495599538779568 to:0.06657737581924754 in:0.0629579349975379 :0.0597340009759297 -have:0.32193236968775296 do:0.21764487462061655 had:0.1714744741319788 all:0.1524596416704333 :0.13648863988921836 -in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -could:0.4498219036320944 can:0.2040901251632009 would:0.19709156903673927 will:0.10214178351764118 :0.0468546186503244 -to:0.6486814839161572 is:0.10448027595054572 and:0.09299919078863786 as:0.07876609287559776 :0.0750729564690616 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.6566254396566344 regard:0.11357777438254728 this:0.09639258586169677 good:0.07572880491192009 :0.05767539518720141 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5443694439971554 be:0.17130976042688062 satisfy:0.1463313011747931 pay:0.09513711399201712 :0.04285238040915378 -make:0.2910412635092548 be:0.24768058752629352 find:0.1656315370149174 do:0.15766531253224766 :0.13798129941728654 -people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them,:0.32238342406724335 those:0.3111756891518597 sections:0.15842661716862833 them:0.10708028334902644 :0.10093398626324208 -the:0.8251826767679633 North:0.08742039052045479 South:0.045953630115944756 tho:0.026854820311203037 :0.01458848228443415 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ease:0.22618989133145084 position:0.20484966114038894 played:0.19911647451316752 trict:0.19497174110627488 :0.1748722319087178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -does:0.24192458152261304 did:0.214826494181494 is:0.20863216137856302 has:0.18335845237513487 :0.15125831054219527 -are:0.7046221394926144 ever:0.11799618078685975 in:0.0779277593692258 were:0.07427310729524789 :0.0251808130560522 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4438720798119591 but:0.26071353621547183 that:0.1528702970621189 which:0.10766387830532728 :0.03488020860512302 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.32466400547723895 School:0.238666145729258 Judicial:0.16595800028045568 Southern:0.15385664615022707 :0.11685520236282022 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.3906025679471786 is:0.2520833798439566 were:0.136133620903313 by:0.13124724693114498 :0.08993318437440677 -and:0.425480603218735 which:0.2680070388849837 that:0.12854019053303337 it:0.09576785351629799 :0.08220431384695007 -time:0.2751757718956172 attempt:0.2287522786671317 way:0.22434242918915487 person:0.15109550241479633 :0.1206340178332999 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.28505727097657263 has:0.26514627279388703 the:0.18782105215786493 an:0.14578757464448983 :0.11618782942718568 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 -heard:0.43689782477812134 cured:0.15496998868458634 guilty:0.14834563107590415 seen:0.1443006251060057 :0.11548593035538252 -years,:0.34633155545320465 years:0.2645400069531216 friends:0.1833239311499035 men:0.1093200602446743 :0.09648444619909587 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -In:0.46792782859067555 When:0.15881174131006862 If:0.14575803770431875 On:0.11699217708387398 :0.1105102153110631 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lot:0.377256448142661 post:0.17541975295538623 corner:0.17334761969424864 year.:0.15643706163896537 :0.11753911756873865 -the:0.588645170173213 a:0.2363165892088863 much:0.09092746511952159 to:0.046824647108749756 :0.03728612838962927 -one:0.31999157117598714 some:0.1962370487763305 all:0.19205423789939108 interest:0.17684663520784297 :0.1148705069404483 -that:0.5225376754783512 of:0.23245611174754657 what:0.10362886202148174 how:0.07529453231686317 :0.06608281843575725 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -portion:0.4045729479864679 posed:0.2297825063096416 pose:0.15656781294769995 vision:0.13845974368918892 :0.07061698906700167 -far:0.5881495083588533 much:0.16943929992548518 well:0.10596868716913298 long:0.10265131826634176 :0.03379118628018675 -not:0.5742823680242956 just:0.13333332965392658 glad:0.11395286175755612 sure:0.11309302387525062 :0.06533841668897108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9219078652668475 that:0.029325983976091628 in:0.02243488249655384 to:0.015054893157293293 :0.011276375103213825 -same:0.40405122532863663 case:0.22671995542506188 people:0.1703355042117408 court:0.10099974593101893 :0.09789356910354191 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.36007751067740873 with:0.34041508130556447 if:0.13875418103193857 to:0.0932435453254705 :0.06750968165961778 -to:0.5739915062921989 and:0.18505729063818918 in:0.10002042644065791 at:0.07534224967469524 :0.06558852695425868 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -soon:0.3451875336216873 he:0.2588448226770858 it:0.17268509012152744 and:0.1201568950530787 :0.1031256585266207 -average:0.505980655062121 largest:0.1512938475259066 two:0.12450497502424722 total:0.10927794137589639 :0.10894258101182865 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.834636736179689 a:0.07184816389348919 tho:0.037892228109769194 this:0.031551375383438954 :0.02407149643361366 -was:0.27447364188180523 and:0.2581361521154093 of:0.21942267147700048 died:0.1279973191631224 :0.11997021536266263 -mortgage,:0.4217088838165308 mortgage:0.34868561643731283 them,:0.1254090162628563 lot,:0.05435343493582621 :0.04984304854747374 -not:0.7388698059410694 you:0.18320329062590562 we:0.03424808907680696 I:0.02706800178777056 :0.016610812568447524 -acres:0.3776788559126032 dollars:0.31036698695468823 acres,:0.15160158964828102 feet,:0.08872292165222231 :0.0716296458322053 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -under:0.23963754051635286 his:0.2337775594294363 by:0.21345717104539044 in:0.20930125302491454 :0.10382647598390587 -tract:0.3025989834532601 tent:0.22154176311630022 tained:0.1894665584533335 dition:0.14406826415077237 :0.14232443082633395 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -first:0.5937984811648837 same:0.20609513822006736 second:0.11900692247919324 latter:0.04810032724339446 :0.03299913089246122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.49717548880460793 however,:0.20598108339789245 there:0.1537678045055392 he:0.0842516970588267 :0.05882392623313371 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.415183480718313 an:0.24021265482722665 equal:0.17912487363848117 his:0.08428420548835687 :0.08119478532762223 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5684035380136069 said:0.24506395779315107 these:0.07604819491154449 public:0.0677411406995507 :0.042743168582146905 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.485157432309254 the:0.38081604450782025 to:0.05598177261896471 a:0.045585460659216794 :0.03245928990474414 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3842634867519996 in:0.2609577920538338 the:0.17053406871250198 insurance:0.1057819305955072 :0.07846272188615738 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.4787372426341979 no:0.208803912602808 even:0.13266591251904303 any:0.09144824806956788 :0.08834468417438317 -tended:0.3440700901543805 tend:0.3172679593570058 posed:0.14090397555485654 tent:0.11158563539277287 :0.0861723395409843 -that:0.39397906389524995 to:0.29780868051119835 in:0.17968556881123873 from:0.07404326486263746 :0.05448342191967546 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 -lot:0.24051561911805175 few:0.23471335159884793 -:0.22493582494624273 great:0.17945296754364587 :0.12038223679321174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -and:0.28965924508128427 or:0.20996121608299675 is:0.17239521259745005 as:0.17144626408288333 :0.15653806215538552 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.36459278766750364 up:0.18836030450037858 together:0.17202846034495803 down:0.1650167929781303 :0.1100016545090295 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8314141268564205 blue:0.053807692945600324 this:0.050304974329142715 tho:0.033264552971125905 :0.03120865289771065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5864220404194133 by:0.13273794881822054 of:0.10615880060222163 before:0.10224585977024923 :0.07243535038989539 -been:0.9410836241359571 the:0.020302899461382643 a:0.017685855634491196 finished:0.01342504234773003 :0.007502578420439 -New:0.9915396891702188 Now:0.006765761752981317 w:0.0006826864684850944 the:0.0006296600579121326 :0.0003822025504025266 -not:0.25331455034739625 be:0.25233018435093574 not,:0.20645302608741595 do:0.15133753431108093 :0.1365647049031711 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.3963698545201042 them:0.2979707187966795 us:0.12469166971447947 me:0.1002382563002273 :0.08072950066850951 -can,:0.32026361330577174 be:0.2636561190498514 made:0.15619214131578915 assisted:0.13125205389895303 :0.12863607242963473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.8699754714715136 his:0.0394145601092854 tho:0.03906066451440094 their:0.026550358745929384 :0.024998945158870776 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.24915589253745718 city:0.22854406432363528 payment:0.20642614765754363 day:0.1602732853515545 :0.15560061012980947 -property,:0.5444101192783195 property:0.16502386892908524 friends,:0.12993136243465703 service:0.09528114394493722 :0.06535350541300095 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.26340779833067623 for:0.23122478130356935 of:0.18165547747208322 that:0.17011729322915814 :0.15359464966451308 -for:0.2685869307648912 which:0.2623674900062109 and:0.22123597333781328 the:0.1800707681599846 :0.06773883773110001 -of:0.6402426551554862 and:0.10846763079093874 is:0.08593053361974606 looking:0.08522481642522997 :0.08013436400859897 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4856647918543364 of:0.446103777679911 and:0.0320209970987765 in:0.020032403244274345 :0.016178030122701834 -not:0.6405918911962818 done:0.12485412998521711 quite:0.0834278744385071 doing:0.07697912443953071 :0.07414697994046313 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4966245946054493 an:0.36614821912552503 born:0.04958020970064993 in:0.04863262381534472 :0.039014352753031105 -to:0.39579965073960593 to.:0.31066790488081 the:0.21566407249747663 Senate:0.05779867240816484 :0.02006969947394268 -well.:0.2679896036952556 much:0.24964481864180166 good.:0.19366839615612738 best:0.14903431446028056 :0.1396628670465349 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.2780130342970241 quite:0.2510902396558717 of:0.2460284815987901 such:0.15284684392472522 :0.0720214005235889 -a:0.7510858143558545 the:0.08948128472122985 made:0.0706777438876616 was:0.05000572979543563 :0.03874942723981846 -of:0.602173500010865 in:0.1918295092353601 and:0.07336838406252658 on:0.069851650816414 :0.06277695587483442 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.3915611312983361 not:0.17204564578038756 already:0.16947183855088177 never:0.15832306530011775 :0.10859831907027682 -land:0.21784620728898546 people:0.20885432064856427 question:0.20276551420210553 bill:0.1969136679406479 :0.17362028991969686 -all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 -it:0.4321518987509686 there:0.1907398618689629 and:0.1721832845498651 which:0.10960794690618544 :0.09531700792401804 -and:0.3913401699801207 that:0.19643805658835015 as:0.16239175248396695 or:0.15594091275599492 :0.09388910819156726 -of:0.611664818752449 and:0.12456815902243881 in:0.1183241901853823 to:0.08241909092433293 :0.06302374111539695 -make:0.25600663872024754 prevent:0.2472314873832693 find:0.17700700168424946 all:0.16097136309974694 :0.15878350911248662 -hope:0.24066296894230582 demand:0.23444518847361703 do:0.19191245033964233 ask:0.1768027426427255 :0.15617664960170932 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -had:0.33614994346363763 has:0.2529531614713876 was:0.2517455752333256 is:0.13442323775137135 :0.024728082080277845 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7853622579446436 been:0.11986404398617533 bo:0.04389693820733387 always:0.026714340156755563 :0.02416241970509166 -of:0.9183906696882692 time:0.0474840975542576 in:0.012771813746916725 ot:0.012376003569924477 :0.008977415440631948 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5918056665454785 an:0.28501938311698166 this:0.05965225473632093 their:0.036276479526536856 :0.027246216074682042 -mortgage:0.5475778648905462 mortgage,:0.18570637357679606 county,:0.1087889722512933 that:0.08465750384760473 :0.07326928543375975 -do:0.35452521991188235 be:0.22373193490484683 pay:0.17249511178074836 say:0.1283150911095611 :0.12093264229296136 -the:0.4930843515785253 one-half:0.16583991496752723 cotton:0.1253072624699616 steel:0.11528893918332692 :0.10047953180065905 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 -the:0.7239180537985582 this:0.16106304917560513 said:0.05301315460459084 tho:0.03335983822644552 :0.028645904194800155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.6661643623332206 His:0.12423843627673989 Their:0.08697848016366565 Her:0.06262432642445588 :0.05999439480191806 -being:0.34834040451050013 making:0.1912818115905985 giving:0.16115992081345737 leaving:0.1522595256496396 :0.14695833743580436 -be:0.843542604862741 have:0.07174854293460285 bo:0.056837316780794477 he:0.0199075787948599 :0.007963956627001554 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -To:0.32829245168031984 Let:0.2495939566815875 to:0.24831859943266874 believe:0.09804840871866619 :0.07574658348675786 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3910381809528965 as:0.26753658839015304 is:0.12011998725296681 very:0.11394375489361012 :0.10736148851037362 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4048344210131725 an:0.30768076244647263 no:0.1896592731031509 any:0.05183822345570643 :0.04598731998149759 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -following:0.44726189511222314 special:0.20360904813578445 same:0.14749161387516682 Washington:0.11066797832725267 :0.0909694645495728 -two:0.305951767932132 four:0.24485845305180592 three:0.16684470749219013 six:0.16037570922995556 :0.12196936229391635 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -party:0.3606875491921684 party,:0.223123883577145 and:0.20081374380918052 in:0.1423009684897074 :0.07307385493179856 -well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 -of:0.5587509883996411 in:0.14876992350406235 to:0.14065470800544005 on:0.08547446713903872 :0.06634991295181779 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.29533775683921404 which:0.2791571123581783 sale:0.14874679002468497 they:0.1440178519329183 :0.1327404888450044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tained:0.38618193836663844 gress:0.22130661049055794 dition:0.16907032057885898 firm:0.11857183576382774 :0.10486929480011704 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Smith,:0.31497975208292434 Williams,:0.19878929329529652 Brown,:0.16758992278664855 D:0.15955195533546215 :0.15908907649966855 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ing:0.29941889432346286 cause:0.24484212167157465 fore:0.21116227335011276 tween:0.17188061151934406 :0.07269609913550566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4228515188471714 on:0.19984069784670327 after:0.1440590160119692 at:0.11767169920807598 :0.11557706808608018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6842651836929006 in:0.1447453401510731 to:0.08581225040799449 on:0.044168036785747385 :0.0410091889622845 -Smith,:0.33288533919470625 Jones,:0.19790489632815217 Davis,:0.19158043074507491 Wilson,:0.14577330886534834 :0.13185602486671832 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.3612912388217405 out:0.20616206982214433 down:0.18917344064409053 here:0.12222420932822486 :0.12114904138379975 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5076365195972571 al-:0.2624050820857471 provide:0.10658026916595935 many:0.07913479546494405 :0.04424333368609235 -thence:0.3291758352427312 the:0.2280414619661992 The:0.17161570658553268 W:0.1497768708784133 :0.12139012532712369 -was:0.253088465051469 will:0.2508208929932614 would:0.17836175045157793 is:0.16537453098353974 :0.15235436052015208 -up:0.6665764928838865 up,:0.20503152585545137 in:0.06252793387796196 around:0.033902642628265756 :0.0319614047544343 -a:0.6420356354585308 the:0.1731036816404522 that:0.09198960848916593 too:0.046967817708985574 :0.04590325670286551 -of:0.9025707260342506 for:0.03508105920982961 ot:0.024436610716614016 to:0.019777745723577315 :0.01813385831572842 -a:0.5617838131164321 that:0.28804778402512593 to:0.06630815832987927 in:0.0572865914889463 :0.026573653039616556 -to:0.36148015762459285 could:0.26701627382251064 can:0.23251344171733307 will:0.0701801050899336 :0.06881002174562977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.4518163445338062 to:0.25616574673341835 by:0.15106009006723026 and:0.1027137977046983 :0.03824402096084689 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 -which:0.5571726095763538 that:0.2997964939352325 what:0.06272484741378502 this:0.041554531588834195 :0.038751517485794286 -want:0.30073435248161473 have:0.2256043376331714 to:0.18398260835107166 get:0.1451330325665908 :0.14454566896755125 -now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whom:0.45813977535275957 that:0.21336563778529824 and:0.1361164446841446 w:0.133258722121291 :0.05911942005650655 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3440988276222857 in:0.22244101470954972 of:0.20733249815327445 on:0.11523265720042361 :0.11089500231446642 -the:0.42348356942502313 a:0.3291769898823401 this:0.11739283524754364 each:0.0659429395503285 :0.06400366589476464 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ways:0.25958390969750805 forms:0.21287524504243222 cities:0.19931797563642215 departments:0.17412618320254883 :0.15409668642108862 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.29098905237092504 in:0.23198459047946562 lost:0.19723684268796257 to:0.14061550640722797 :0.13917400805441893 -o'clock,:0.4651569558128597 years,:0.24294993297478293 ;:0.10108137444295107 ,:0.09842035515061916 :0.09239138161878718 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other.:0.26144050055322554 city.:0.23575390227070694 ground.:0.18042702883063289 same.:0.16831212655180225 :0.15406644179363244 -law.:0.8283613468554734 said:0.1117626167383526 the:0.031284383252872375 him.:0.016880529312846143 :0.011711123840455619 -the:0.6606027681588788 of:0.22253534228787492 a:0.04633407225754257 such:0.035671370129261214 :0.03485644716644251 -and:0.5421248090824101 of:0.13573774234810967 at:0.1345089736938498 in:0.11862596527557219 :0.06900250960005797 -were:0.3099215339052128 are:0.3087832741303899 had:0.1485820139733317 have:0.1434309609971237 :0.08928221699394194 -that:0.31619213289598325 him:0.28748056175521497 law,:0.16649578589514677 said:0.13086047085858432 :0.09897104859507055 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -this:0.3357756382973017 any:0.2992625169864728 the:0.2630181515377343 its:0.053456950403670093 :0.04848674277482098 -pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.29634185477412617 they:0.2490503919967582 you:0.1630227318468907 we:0.15750266874363397 :0.13408235263859086 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.31083776908823757 and:0.2760343158030859 at:0.14541595897030796 of:0.1356327566019057 :0.13207919953646283 -posed:0.4206263778563124 claimed:0.22543131722818463 found:0.15340564088463565 pose:0.10079130775044953 :0.09974535628041782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.28239149706497607 placed:0.2737099410813851 carried:0.17029127090658125 put:0.16493740024948628 :0.10866989069757123 -he:0.3733361926969531 and:0.22098750503700082 she:0.14464868200179973 I:0.13607086576791666 :0.12495675449632965 -an:0.2830379582893963 the:0.26096650190874116 any:0.1924177673422471 more:0.15014677332104925 :0.1134309991385662 -about:0.7620672166412402 to:0.1513720012263283 into:0.03486678538239931 from:0.03374543571387943 :0.017948561036152867 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -the:0.603631886686478 our:0.27522061198275133 American:0.04715345335614919 its:0.04196073654742467 :0.03203331142719662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3147900696082553 subject:0.313520921092182 as:0.14859115322787303 according:0.13902450693939972 :0.08407334913228989 -first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 -did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.2518794510743946 institutions:0.2121153443062262 charges:0.1879164437647681 bills:0.1784292677234208 :0.1696594931311904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ward:0.2530355195067543 reform:0.23858352210200448 crop:0.19546386879407301 the:0.17697025445872028 :0.13594683513844794 -will:0.4311874681553715 may:0.20171570997978597 would:0.15599469524284743 shall:0.12314748397336106 :0.0879546426486341 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -value:0.3004599122502041 copy:0.2515756725909142 interests:0.1542153920796624 spirit:0.14893062717350533 :0.14481839590571405 -with:0.22707867271815207 was:0.21794382822725406 and:0.19581493282221965 is:0.19292729260924393 :0.1662352736231302 -them,:0.4461209595799576 them:0.170804005826803 France:0.14732742489457237 him:0.12150097706355635 :0.11424663263511083 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.4744046701425123 all:0.22338812567519192 to:0.1274395962970766 and:0.0904319057023041 :0.08433570218291515 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.4122695910822943 people:0.18420310486391256 population:0.14570648529756158 community:0.1412079862641724 :0.11661283249205917 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.39524484607970733 10:0.18580764486445345 11:0.17886712657156692 ten:0.12146216397010853 :0.11861821851416385 -was:0.38585504823335554 is:0.249097393593802 had:0.2010704649081898 saw:0.08702013394434917 :0.0769569593203034 -and:0.32664049317159066 it:0.26742749324650283 he:0.20021005020441254 there:0.11212973271154034 :0.09359223066595353 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -low:0.2839502623836897 reasonable:0.27598744118401713 moderate:0.18978830784908882 high:0.14458466798607345 :0.10568932059713067 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.31285300507947983 which:0.2399616372297918 who:0.22151708759114566 it:0.129562627935367 :0.0961056421642159 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.23642286520489467 to:0.2256338845931212 before:0.19327139265563933 by:0.18114569130053304 :0.1635261662458117 -time:0.39807397614510825 said:0.29500832188800014 day:0.10948629039075249 last:0.10440159557224948 :0.09302981600388958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.4012347130635659 got:0.2180268884701884 ran:0.14536541440899525 carried:0.11775924278236101 :0.11761374127488941 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -enabled:0.2602111500509902 made:0.2012325704532875 compelled:0.18264231241504464 brought:0.1810601388582118 :0.1748538282224659 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.7441763700165185 time:0.08474219298994062 person:0.06653520851807858 order:0.05264784115833869 :0.051898387317123484 -be:0.5697722619497669 remain:0.12672583015231645 so:0.1104513196524496 bo:0.09977678066384192 :0.09327380758162508 -according:0.3473322961338355 and:0.3108405300189832 as:0.15346252500914567 owing:0.1029805409828157 :0.08538410785521984 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -state:0.36581514369675394 latter:0.18939875075789184 time:0.16309327563306716 people:0.14116391662097152 :0.14052891329131556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3130296474336706 he:0.31120539277711146 I:0.17531792303371438 we:0.1269073066279321 :0.0735397301275714 -a:0.4663620325654505 the:0.4066294873557004 much:0.06019137199606787 inch:0.037966269743728 :0.02885083833905329 -the:0.877330971009717 its:0.03422755534897268 our:0.0329580349030115 tho:0.03285931238129667 :0.02262412635700213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.46055210985241657 I:0.22608833202461615 would:0.12971670448774708 to:0.09219169051372791 :0.09145116312149215 -engaged:0.25702586496894847 made:0.21896952176304826 placed:0.2091973485765652 found:0.18092104883677196 :0.13388621585466606 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4211079911049784 are:0.27146955779654647 was:0.1678552800306333 were:0.08134817747536692 :0.058218993592475045 -goods:0.27677687202109225 mills:0.20745582832803738 market:0.18206874832730824 and:0.16909326936049032 :0.16460528196307192 -not:0.5544033408208954 hereafter:0.17970441489967423 be:0.11991513466274217 safely:0.07458445758940188 :0.0713926520272864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2253799920660815 payment:0.21064083453797872 day:0.20720044038896096 amount:0.17842669431229974 :0.1783520386946791 -and:0.40365409724198276 E:0.2935739324419342 ,:0.13500139217639595 Smith,:0.08578349222013355 :0.0819870859195536 -of:0.8496671288425459 in:0.07380209049070666 and:0.02988273091315026 to:0.024720160981906842 :0.021927888771690284 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -shall:0.6190865370211224 to:0.21917196838858471 would:0.055724233592145435 may:0.05353260088978401 :0.05248466010836357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tween:0.3969698793858161 ing:0.33979301986362337 fore:0.11061090372744053 cause:0.09776461384410383 :0.054861583179016155 -now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 -part:0.5266344645094371 portion:0.16258591959127416 line:0.13379389712828924 boundary:0.12550457237127782 :0.05148114639972186 -War:0.25481078114391087 State:0.24757734174306176 Treasury:0.24448930250672374 Navy:0.22234485719655678 :0.0307777174097469 -who:0.5463644903915985 she:0.2076841584260448 and:0.12436280164255625 he:0.061373653528972005 :0.06021489601082839 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3847203537933439 day:0.2722940194206343 date:0.1514943363126427 all:0.09631390718136446 :0.09517738329201458 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -knew:0.3295407842201399 did:0.2208065674854482 knows:0.1653746177950786 saw:0.14876029275898547 :0.13551773774034795 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.7563236007118754 through:0.1003629116773746 away.:0.06811204421844091 and:0.03970704011394332 :0.035494403278365734 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -night:0.3763552962327039 week:0.22388003274356325 year:0.2085918607763453 year,:0.09973245110561972 :0.09144035914176797 -way.:0.3812933062119401 time.:0.23498857217731162 condition.:0.15931915921123666 manner.:0.14414246620270627 :0.08025649619680535 -total:0.3896207105883503 market:0.22961634976203088 average:0.18753524675207606 great:0.12472765748256355 :0.06850003541497923 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4527615237638839 a:0.15143733161333897 to:0.1500867513936728 the:0.12707971139141302 :0.11863468183769123 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pres-:0.816293490490059 the:0.09457812313524286 a:0.04278215884682361 n:0.02503846174391114 :0.02130776578396359 -him:0.35143466105732724 them:0.22581453705143678 me:0.1641981392530122 want:0.1559293680867314 :0.10262329455149242 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.2710904364157006 and:0.25163171812254265 I:0.2251464386676668 he:0.1548066544220608 :0.09732475237202926 -one.:0.4043096346896307 end.:0.16852740629686758 place.:0.16740606779190229 price.:0.15192693674414293 :0.10782995447745648 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6274299529594047 his:0.22453983277796272 a:0.0801254618995374 my:0.03429295208513243 :0.03361180027796255 -side.:0.509813062811402 sented:0.27155592392416744 sent:0.11538890497004468 served:0.07950940660061254 :0.023732701693773322 -terest:0.4998522339737485 crease:0.4075587059765514 formed:0.04951394798629473 duced:0.024230660236565713 :0.018844451826839827 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.29491114552748077 any:0.26047117910329526 this:0.23325374608015842 a:0.1550841730495056 :0.05627975623955986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.40248208576746 secured:0.20845392427631085 and:0.1877702768549041 followed:0.12449427255911735 :0.07679944054220769 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.32040168297440197 government:0.2076175258439789 same:0.16874312876381944 city:0.15630119621138694 :0.14693646620641276 -hand,:0.5085564935083491 hand:0.129676656077052 things,:0.128588798227652 words,:0.12393774963221127 :0.10924030255473563 -public:0.36882271265569316 war:0.2196960704835032 first:0.18036959226451085 big:0.11688385547024378 :0.11422776912604896 -of:0.3993631679675232 in:0.29024944258219104 to:0.13486719212612644 with:0.08817575205921989 :0.08734444526493938 -son:0.6124616001240512 and:0.13457129599945963 Johnson:0.08801789190063414 center:0.08521097194631902 :0.0797382400295361 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.21573405114304003 time:0.21391617338348348 any:0.212209627528977 him,:0.20579815727544012 :0.15234199066905946 -be:0.7801464997290475 been:0.10646453275741591 bo:0.052373313440586336 only:0.040046926208663965 :0.020968727864286475 -to:0.6915670004658772 not:0.17761782214879324 now:0.055446049461517925 only:0.0419682264561951 :0.03340090146761654 -had:0.6667630400855167 been:0.18312299511373667 certainly:0.051681666712298 decided:0.05144866157585926 :0.046983636512589515 -have:0.5468681169013314 had:0.18197710621940122 be:0.10254963114940466 has:0.1006663538541864 :0.06793879187567639 -other:0.6744982709836806 of:0.20055707133129133 serious:0.046517970468532205 such:0.042304799820920856 :0.03612188739557507 -taken:0.36109347040665185 come:0.19660939518540227 made:0.17639900343595585 picked:0.1437022773329085 :0.12219585363908152 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.831557927577061 this:0.06822045910245446 tho:0.06477597556265464 tbe:0.021331738203123896 :0.014113899554706036 -on:0.5473839490499937 by:0.22996402975540126 and:0.10806035542190469 as:0.10229433612939808 :0.012297329643302232 -disease:0.24475887686825445 market:0.22055183293092415 storm:0.18915032887327163 weather:0.179663525534165 :0.16587543579338476 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days:0.43768401854905453 years:0.22243455859144015 remarks:0.1254215848023768 weeks:0.1097030387272988 :0.10475679932982992 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.45437123876103874 you:0.26125493758761237 we:0.13223510108409078 they:0.08575952730053915 :0.06637919526671884 -the:0.738538644729191 his:0.14445328942664346 my:0.0485431269818128 their:0.03757030969986551 :0.03089462916248727 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.3579199041607406 in:0.325445134101138 of:0.11845318625949824 at:0.1152291421435303 :0.08295263333509285 -side.:0.28876604409095 way.:0.2762164626943271 day.:0.1529968612955494 hand.:0.14201604538944657 :0.1400045865297269 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -and:0.4637715680764153 for:0.22750371340903827 keeps:0.11817057890392221 in:0.1052653500871159 :0.08528878952350838 -we:0.3300170198537396 would:0.2709819237106662 will:0.19882885776241474 to:0.11088577969919505 :0.08928641897398423 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -he:0.528762927716568 they:0.19171831984925033 she:0.13356016969197412 I:0.09053910399403461 :0.055419478748173025 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4447042470000353 with:0.16998446338896783 but:0.1538379270696456 which:0.12260939627545689 :0.10886396626589452 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -an:0.5112705295417375 the:0.20736744136707952 too:0.13068344123375303 very:0.1200867390595078 :0.03059184879792212 -to:0.3954195669589446 for:0.2908070669836381 that:0.17119591749462976 when:0.0790664310619522 :0.06351101750083549 -time:0.3119106609737767 moment:0.2675292502635207 day:0.14897294722368723 period:0.13806279021329423 :0.1335243513257213 -the:0.3708381250694438 in:0.2274891172298111 a:0.1717638120132631 next:0.12413255232636282 :0.10577639336111927 -the:0.729467019990142 all:0.07049956702655323 and:0.07038330608205462 its:0.0667567272622825 :0.06289337963896774 -and:0.3947026840567419 are:0.2180509092230679 planted:0.17043825252885875 were:0.11654376819971606 :0.10026438599161527 -war.:0.6368758368566486 people.:0.12505336855741195 government.:0.12382058739054702 money.:0.0596789018456925 :0.0545713053497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -subject:0.333280974567875 amount:0.22420568056868115 thing:0.20154424178055777 country:0.13191390941471148 :0.10905519366817462 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.34071185907621837 know:0.2319694253721847 see:0.20275886387474815 marry:0.11253834076617128 :0.11202151091067755 -and:0.3650774577391216 in:0.21409156352703873 for:0.1801654829035395 to:0.13129792602332943 :0.1093675698069708 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8020800310339099 for:0.06355357686630023 or:0.05704810018309047 with:0.041200325804789946 :0.03611796611190931 -people:0.2898840640509074 I:0.2844648013204839 only:0.2290818458142747 earnest:0.099375138071393 :0.09719415074294091 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -amount:0.21089536885370955 purpose:0.20672887924322614 sum:0.200756999517708 day:0.19387534665233802 :0.18774340573301843 -I:0.3712171594413836 it:0.3479841350844726 it.:0.10768002429647493 exists:0.09489279932957387 :0.07822588184809501 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.27445805819303637 be-:0.25923873529640945 money:0.19323283347793366 time:0.1682203245489624 :0.104850048483658 -which:0.3304759042270243 men:0.19938921258336556 these:0.18551470984389812 them:0.18129380047004448 :0.10332637287566761 -the:0.9080924236529058 his:0.03408608655355794 tho:0.02599912039295981 tbe:0.016149104106423177 :0.01567326529415326 -there:0.45212288526297484 it:0.23980448778385546 he:0.18130303265465475 It:0.06908822592004339 :0.05768136837847147 -the:0.5042001276063923 his:0.30763676556703506 human:0.09516704365976413 a:0.04750976725864495 :0.045486295908163596 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -things:0.3710676464608388 men:0.2189554565173599 people:0.15795916805917548 facts:0.1343550377680285 :0.11766269119459732 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7306343315920144 par-:0.1897039196255916 coun-:0.02897948375089242 par:0.028259145978654948 :0.022423119052846493 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.24420108111665453 found:0.22632870365778782 be:0.20859886094655714 been:0.16421563847124196 :0.15665571580775856 -office:0.30415755602034067 time:0.26768201526389296 date:0.17005313916874165 same:0.1320309962537506 :0.1260762932932741 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -that:0.36095179965867075 until:0.21747119696907885 at:0.1727448531832732 in:0.13092695628948295 :0.11790519389949417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Liber:0.3432798448866101 Charles:0.21972000335993536 the:0.19061365657071705 said:0.15313898892908376 :0.09324750625365381 -C,:0.3509404365916144 Smith:0.1811873184467022 C:0.17762138821357967 ,:0.1588285953605596 :0.1314222613875442 -went:0.40273072060838533 proceeded:0.24152558091377294 began:0.12616285111338477 came:0.12597834904268773 :0.10360249832176938 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -the:0.5910598325303059 a:0.16082463567877722 any:0.11918527492521308 our:0.10264577323758578 :0.026284483628118187 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.600700815110722 his:0.16547529602508632 my:0.09102737182321394 in:0.0731845761303367 :0.06961194091064107 -the:0.8197551773551011 a:0.09386226529516685 tho:0.03381272205894105 at:0.030874438731730618 :0.021695396559060453 -to:0.4460233350703535 shall:0.16690341670909187 will:0.1567224457837305 who:0.1304931460528854 :0.09985765638393872 -been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5420496646648469 be:0.194483009025997 was:0.10485859752103482 do:0.08710704408573164 :0.07150168470238939 -United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 -at:0.6201310292583146 to:0.15024522854619043 and:0.09720373654036026 from:0.08619767820624336 :0.04622232744889155 -that:0.46952312267874013 it:0.16299867797071896 impossible:0.13077432195316221 himself:0.12558134238220267 :0.11112253501517597 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.47539359292707445 this:0.20320848966553226 order:0.12962220410386613 it:0.10504068029259625 :0.08673503301093101 -people:0.478692893574672 White:0.20667808541662977 I:0.13460782513151223 men:0.0967437476740218 :0.08327744820316431 -in:0.6470996517506538 to:0.1429446570947429 the:0.13160027822315074 In:0.044439845262763185 :0.03391556766868931 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -goods:0.39327219622186504 weather:0.2293475877984874 and:0.14520995856401284 it:0.13060697835696014 :0.10156327905867456 -of:0.4978704778281814 an-:0.2613006741342724 for:0.10029482554214635 and:0.07106425701316045 :0.06946976548223953 -political:0.36370336754223537 general:0.2332857444423064 similar:0.15054983862599397 peculiar:0.12927135450091756 :0.1231896948885467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9878101268694622 lo:0.0066837699614721744 and:0.0034650647407052215 te:0.001398814593009414 :0.0006422238353511106 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.8152491814163119 President,:0.06197743017920103 Bryan:0.06196123910436753 Cleveland:0.0309003526973878 :0.029911796602731775 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -plate:0.45063909166248073 y:0.1833612968992641 box:0.1622869745781075 roof:0.10712014994778699 :0.09659248691236066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.9260421002911544 that:0.031465228129624 when:0.017437609506639307 aa:0.012644403826187449 :0.012410658246394798 -had:0.3931431523728429 has:0.29463356361784293 was:0.24465406139509038 never:0.040157021820858216 :0.027412200793365586 -a:0.34472486278752507 sufficient:0.19493311131522728 the:0.16083906426247543 in:0.15502026849835332 :0.144482693136419 -to:0.38190023975302784 will:0.3501969097798573 would:0.12681420361617723 may:0.07768653020490279 :0.0634021166460348 -up:0.2888798783339719 up,:0.21896849310947852 was,:0.18311077844821969 ;:0.15755012301283172 :0.15149072709549827 -hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.8274272198040612 in:0.08847807726783381 with:0.045200946223822834 for:0.02316411543539289 :0.015729641268889146 -be-:0.4831676233669561 be¬:0.17768451026428225 be­:0.17116635033400607 the:0.09261393255676 :0.07536758347799542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9862235438622813 longer:0.004332841303405687 shall:0.003998680330502351 until:0.002733223985511589 :0.0027117105182989467 -shall:0.36060070522705717 will:0.23454270953859246 to:0.2154289186870771 may:0.10698706371758906 :0.08244060282968424 -A:0.5125002850207185 Davis:0.37173196838064343 and:0.05184374717715285 W.:0.03310213645805985 :0.03082186296342537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -street:0.2568439582687722 street;:0.2517196982134714 street,:0.2279144420216144 and:0.14582138225398047 :0.1177005192421614 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4351665714814142 any:0.1775339623778506 of:0.16523259714024646 where:0.12672878059268153 :0.09533808840780728 -up:0.32855145100776517 down:0.25956268797640375 them:0.16438588608557175 out:0.1586999464159495 :0.08880002851430976 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.45209821607351336 a:0.31510013257747577 this:0.09046527707371801 his:0.08073255470353005 :0.0616038195717628 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -think:0.2643269991964159 when:0.23508549459081157 as:0.23058949449011942 make:0.14214214695928198 :0.12785586476337113 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9102619901911598 tho:0.02879259351445675 a:0.028591218079342492 in:0.021588462160111708 :0.010765736054929028 -was:0.30874433287249375 is:0.2152237838646708 soon:0.19299759692203558 regarded:0.18514840603024896 :0.09788588031055079 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.7082365650632553 world.:0.08258215164451164 that:0.07176126856933929 one.:0.0708892696074975 :0.06653074511539646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.913653848852944 in:0.03337139138723004 ot:0.021590428457488816 ol:0.01691555229744121 :0.01446877900489597 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.6381077436551393 woman:0.11910080998509599 party:0.0877489647680512 boy:0.07890275948302311 :0.07613972210869027 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.30969218787573355 went:0.2060561589075979 bids:0.1901281353637579 taxes:0.16872718305536724 :0.1253963347975434 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -active:0.3006540449709395 money:0.2889034479139488 fully:0.1508212127064252 men:0.14274427653911315 :0.11687701786957343 -made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 -he:0.39270491224520016 they:0.27842083345873386 I:0.13157390953732842 we:0.11388492524294111 :0.08341541951579637 -where:0.30389978996537786 which:0.22457249101665383 and:0.222719081101463 but:0.16975314486019052 :0.07905549305631487 -of:0.5299022309362571 in:0.2860190855114179 on:0.09998536208647303 at:0.049720000583045085 :0.034373320882807014 -up:0.2810069007013484 him:0.27823459234476927 them:0.15145490399494135 us:0.1464823653905562 :0.1428212375683847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Court:0.9314405831351488 Attorney:0.02239731680752151 Commissioners:0.020050173470491615 court:0.013230401636661396 :0.012881524950176575 -he:0.3717480207066242 mortgage:0.3571410194296957 it:0.10908461709351759 that:0.08587344715093662 :0.07615289561922568 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7886879872837411 no:0.068177423578992 pleasure:0.06586682514757038 a:0.03947862826750582 :0.03778913572219066 -military:0.29184478421472376 moral:0.28738694754188293 naval:0.2821686578569677 physical:0.06966581603368938 :0.06893379435273632 -give:0.43322207004404584 afford:0.2760757100263372 need:0.10625661554656578 find:0.0963694634169576 :0.08807614096609373 -to:0.4073880943697012 on:0.21857146110445475 into:0.2184289204417434 through:0.09383024953492747 :0.06178127454917329 -it:0.2590025935474426 we:0.25847396466714606 and:0.20073788747024582 which:0.172967322083878 :0.10881823223128749 -the:0.8531179519172708 tbe:0.08085193905719322 tho:0.032022481583711335 ihe:0.018631347116934927 :0.015376280324889779 -the:0.9048324236612565 tho:0.038812944704227616 them.:0.025736237877592084 General:0.017167787925990555 :0.013450605830933252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -striking:0.3291884306821683 man:0.27190350241857636 cry:0.14942351225126718 strike:0.13582626258331673 :0.11365829206467144 -and:0.37840011369317195 but:0.31332204999728824 and,:0.15179478079361738 that:0.08873390119830557 :0.0677491543176168 -of:0.6023518366926425 to:0.14314629692377298 and:0.10919545880815705 for:0.07629181203374963 :0.06901459554167781 -up:0.2888798783339719 up,:0.21896849310947852 was,:0.18311077844821969 ;:0.15755012301283172 :0.15149072709549827 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.6072909312629697 a:0.26053191877148896 his:0.048445007525773916 is:0.04575082749676811 :0.037981314942999334 -wife,:0.5732828145618288 friends,:0.13750986678990737 friends:0.10382662772954125 wife:0.0955798120996124 :0.08980087881911016 -a:0.6935112887237946 the:0.10454695615628647 no:0.09082027195602434 been:0.07393556146231639 :0.03718592170157805 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.8449603279207167 was:0.05456661936654427 Is:0.045503581615769145 has:0.033464457059401195 :0.021505014037568874 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.23392129222355124 is:0.21241137730145046 as:0.20899150579383707 that:0.173181238442042 :0.17149458623911915 -it:0.3252567962673893 he:0.22167879426213422 I:0.19280478321170005 and:0.1360263960292949 :0.12423323022948159 -wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 -not:0.33160912508025064 be:0.2518516720742311 see:0.19014098400555335 have:0.11470504346045704 :0.11169317537950782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -half:0.38609907028655294 as:0.2569453499811118 to:0.20137892049949827 by:0.07934042508265436 :0.07623623415018276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8522490215303375 a:0.0740867962227813 tho:0.039386660553390795 this:0.017794227840841774 :0.016483293852648562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time.:0.24956044477216166 place.:0.22153782821349471 day.:0.19288474070503564 body.:0.1716279490252663 :0.16438903728404178 -well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 -days:0.5612268732092776 miles:0.2820725273210341 feet:0.10274339079407879 years:0.04447991071453224 :0.00947729796107719 -of:0.8962189477868692 in:0.043535560388970204 over:0.037301145278190576 In:0.011873688613576454 :0.011070657932393467 -the:0.7757849781232456 any:0.07874948285246225 a:0.060700661830589274 tho:0.04571494827435892 :0.03904992891934378 -go:0.29827220790924364 be:0.29073438400608764 not:0.1532582368992466 come:0.15201890421369413 :0.10571626697172794 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -for:0.2591383955516667 was:0.22376889496482827 that:0.2112797729054364 is:0.1583834385448868 :0.14742949803318195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.6959571250744978 be:0.12929739890760827 a:0.11281259988075304 the:0.04351485564728464 :0.018418020489856232 -the:0.4157070387028795 at:0.20122535003025688 in:0.17911313846984542 of:0.10770515330398975 :0.09624931949302837 -the:0.8630893465377998 said:0.03777226212782514 Missouri:0.03601518429520228 tho:0.03346409915095873 :0.029659107888214124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tended:0.4077920769239289 tract:0.17303744168722365 tained:0.16161804298791774 tired:0.13037372894089697 :0.12717870946003285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.2478390582279805 r:0.21339602028184623 go:0.19478620086737167 her:0.17877398965938687 :0.16520473096341465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -prior:0.6903215185866691 ago:0.16429295161845814 previous:0.08902052183186751 ago,:0.03445642246341674 :0.021908585499588528 -go:0.37296565361585515 enter:0.23364910752029164 get:0.19689958686849707 put:0.13563592133593708 :0.060849730659418996 -the:0.8771382426507347 his:0.03896238685097286 tho:0.036488057694484724 an:0.02453207010201619 :0.022879242701791463 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -duty:0.2972736413349692 way:0.1915189908786245 work:0.18759579518604552 home:0.16477513170539318 :0.15883644089496765 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4348905287360003 holding:0.1933507201784512 by:0.1543942942133486 as:0.15325445599035756 :0.06411000088184246 -from:0.5422553531904459 with:0.2566835480210408 in:0.07355705835022162 to:0.06521247152240169 :0.06229156891588991 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7338567320107491 an:0.14483796914781244 in:0.046898984455206134 little:0.03801106295293134 :0.036395251433300996 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3069627526434421 in:0.22770839013495386 know:0.17154957325221548 at:0.14909574183327737 :0.14468354213611126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.40656285477936704 to:0.2738439903921423 for:0.1778113206466376 in:0.07756427243117477 :0.06421756175067825 -league:0.5128423269920159 Red:0.17161390671388027 college:0.13535118673747695 home:0.11301209759772063 :0.06718048195890619 -gone:0.3091318839128925 been:0.23491721662672746 passed:0.17927759365482993 turned:0.14862782161152763 :0.12804548419402254 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cars:0.5473557372064667 machinery:0.23660213091460516 with:0.07437282222863417 owing:0.07285106832338353 :0.06881824132691051 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.29155171046212 would:0.2847451715457281 to:0.20709088455785488 can:0.13935422040877876 :0.07725801302551827 -per:0.7231127582651145 fifty:0.12342278211295676 and:0.08513042379958129 worth:0.03913931013326208 :0.02919472568908535 -A:0.672181121887171 T:0.11185934473803308 W:0.10056267952964726 I:0.06245530124127338 :0.05294155260387523 -of:0.7901173920562711 in:0.06976606995026112 to:0.058856987513840345 for:0.04436855137611206 :0.03689099910351538 -many:0.2757713243682383 now:0.20047412094043904 thousands:0.19206333264644018 some:0.18325451092066597 :0.14843671112421641 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.3976273235445376 a:0.323450881841282 his:0.1798393146088407 their:0.06465632156715742 :0.03442615843818236 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own.:0.26859300902371813 work.:0.262391264531062 hands.:0.17683003345165318 country.:0.1585148512514293 :0.13367084174213742 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 -of:0.6112188405049543 on:0.1392895779863088 in:0.10304938927070384 and:0.09798748197522907 :0.0484547102628039 -he:0.30085160961698687 it:0.21740601102461524 I:0.18604889899239035 and:0.1609348997782252 :0.13475858058778245 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.8703419650303273 In:0.08141214996247315 Tho:0.02872810810245847 Its:0.01202790599176592 :0.007489870912975256 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -of:0.508344954001931 is:0.272822567922457 in:0.08096443471838943 was:0.06980616863527317 :0.06806187472194936 -our:0.35262679453154616 free:0.33041329887243115 the:0.1695805644733674 and:0.07744367919746424 :0.0699356629251911 -of:0.8305111462290449 and:0.06052213196732132 to:0.046920063057965436 with:0.031465188034092435 :0.030581470711575853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.34300829041780967 believe:0.17977557755370724 and:0.17268407780347222 know:0.15416020256953747 :0.15037185165547354 -be:0.8438132152831794 have:0.08428999787146912 bo:0.03866766202425344 not:0.019438518969248336 :0.013790605851849566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4652609774130261 an:0.21839376172444427 the:0.120908422479931 to:0.11685168693532114 :0.07858515144727753 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -not.:0.35665269018220225 not:0.22695608921243454 now.:0.16077456740605564 done.:0.14213930546186562 :0.11347734773744189 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -even:0.2540628439574588 either:0.20944225621158338 made:0.19985912497512084 destroyed:0.1911585323888773 :0.14547724246695967 -the:0.8908107603177087 its:0.03132890883553376 their:0.031209755067029672 tho:0.03063125193760187 :0.016019323842125885 -them.:0.8960957881442803 us.:0.05979234271212008 themselves.:0.01948689774358516 them:0.014755523328455552 :0.00986944807155883 -to:0.43256334414307346 should:0.20234222149678388 will:0.14197801125076748 I:0.1277129856791099 :0.09540343743026536 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -free:0.24859791767391443 people:0.22214004514879504 road:0.19640848324651725 water:0.1670105641827968 :0.16584298974797645 -as:0.32430358654933394 very:0.24340064740852613 pretty:0.17206088774888442 so:0.16706640121328906 :0.09316847707996657 -people:0.26817505621003856 man:0.22010859150067927 bill:0.19086816596948514 farmer:0.16085203719390448 :0.15999614912589266 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -date:0.6356125004319874 one:0.12991370957532497 more:0.10932331837531582 those:0.0780145561197848 :0.04713591549758696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8961994168133844 tho:0.05284387980440516 tbe:0.021075667626220946 a:0.01582555864790026 :0.01405547710808914 -bound:0.46071550169446435 -:0.2039304032610729 ¬:0.12412395912236558 I:0.11030898306284109 :0.10092115285925608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.6070929904872829 not:0.16301915068834755 thus:0.08316873239763119 too:0.07779806267724187 :0.06892106374949634 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -children:0.31651071168652706 rights:0.2552385312289744 work:0.18017670141219716 way:0.13776287015920022 :0.11031118551310126 -looked:0.35937940400097623 something:0.24163180848961344 a:0.1426422215313839 would:0.13377519279440456 :0.12257137318362185 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5324037446632263 made:0.1638393939369306 taken:0.114876507011248 done:0.09709786375684054 :0.09178249063175473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 --:0.415696595032512 la:0.32439555276603316 f:0.11705139811047992 e:0.07560058883496862 :0.06725586525600634 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3526329584135661 from:0.24414224891934408 in:0.22212856257808344 and:0.09168005517221256 :0.08941617491679368 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6464232533523863 and:0.1442289325649793 the:0.08242246985454903 for:0.08094517796307192 :0.045980166265013535 -which:0.27373181542128633 that:0.20864543739718006 say:0.1920316293263952 whom:0.18661564805931516 :0.13897546979582326 -law.:0.4171617750176224 him:0.18034172229511267 law:0.1361747966588504 them.:0.13467562727756233 :0.131646078750852 -make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.41238398847822993 in:0.24866855373879057 for:0.1601497761090428 on:0.09116661222337703 :0.08763106945055957 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6596607693794239 you:0.10503069537376464 away:0.08542666049120252 so:0.07772114718918521 :0.0721607275664238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.3967791274922993 probably:0.3730426961669821 always:0.1029376047962713 still:0.07681173546259627 :0.050428836081850954 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.6733560530296041 on:0.14542256979333917 In:0.13835081230850285 at:0.021833733904878094 :0.021036830963675795 -open:0.25297199108862 the:0.23323862843707957 not:0.21893961340912507 a:0.14815044364852129 :0.14669932341665398 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8348408308543473 his:0.07587357810575268 tho:0.04116988517626417 a:0.024075078928622883 :0.02404062693501281 -they:0.5148898128280488 there:0.2483628990712214 we:0.16275211061956227 you:0.06003634860230726 :0.01395882887886023 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.5705524400528108 always:0.17849052750676295 as:0.1113482501959561 so:0.07016331862410335 :0.06944546362036678 -first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 -of:0.576094291338531 in:0.21144426567410377 for:0.08254254096410044 and:0.06508153500804677 :0.06483736701521804 -the:0.6971723210652698 a:0.18074422482487504 his:0.058221701912546324 our:0.03686793885570171 :0.026993813341607026 -the:0.7095262666729701 a:0.10067932567498529 his:0.09693987104601656 her:0.04923992776227631 :0.04361460884375168 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5702905698146158 as:0.1599372664871153 to:0.10727281404362382 in:0.08422994864545358 :0.0782694010091916 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -good:0.33579637277336133 this:0.2654875119153272 their:0.1607692018380063 my:0.14122995114130424 :0.09671696233200094 -through:0.30880003580305904 and:0.21290687088880617 fired:0.21087792281770873 in:0.13545777600837133 :0.1319573944820547 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -beginning,:0.3583712457083486 am:0.20635135082699924 west,:0.17215891523248011 can:0.14310321873956683 :0.12001526949260521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.802413486822937 as:0.0683143890678942 is:0.06367216737407956 has:0.044347397494953145 :0.021252559240136172 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -England,:0.2965423541507361 leave:0.23126874000114517 make:0.20191863806388413 that:0.15609920411934447 :0.11417106366489 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7291927254479973 to:0.07946626752414114 for:0.07688322660136918 and:0.060800556832691574 :0.053657223593800846 -of:0.9225860023524053 two:0.020568227969138805 former:0.01998127047258565 for:0.01937244057283732 :0.017492058633032815 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year:0.4517222831007265 week:0.19614542827693418 all:0.15153339568897825 and:0.1046148355890269 :0.09598405734433417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.5981137844166051 and:0.27186871344839414 he:0.04989593641764431 women:0.04135378234651665 :0.03876778337083987 -find:0.2671257428808093 be:0.2509644195696817 take:0.19623697928682296 make:0.14454157953705316 :0.1411312787256328 -for:0.3809662827916847 and:0.35979774145034576 to:0.13345828711973745 speech:0.06648796101891101 :0.05928972761932106 -the:0.40982419011112187 so:0.24578543302406217 their:0.12629591385335473 his:0.12425306913077395 :0.09384139388068732 -he:0.46452695402959804 they:0.2460480493509285 she:0.13177290145671913 I:0.08206163951839913 :0.0755904556443551 -the:0.5491324469684146 a:0.18803546123456188 to:0.09521037394338719 then:0.08986838278403059 :0.07775333506960569 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5668592514324786 or:0.2386025847746832 for:0.07407724959769336 and:0.07089509382984606 :0.04956582036529875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.31504723471043605 that:0.2514817621526051 as:0.17029801424269364 in:0.1654121065673975 :0.09776088232686747 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.34000821333528863 through:0.3377707254381382 compared:0.12454252748178897 and,:0.09972410088027447 :0.09795443286450985 -and:0.35718700498867345 is:0.2132894206506645 so:0.1670624306786097 well:0.1390090953839058 :0.12345204829814652 -hour:0.27792223753527034 hour,:0.19792389143497674 acre,:0.18544513977624716 old:0.1720240078065667 :0.1666847234469391 -and:0.5347482635240743 for:0.1263736598547076 to:0.12546865763083961 with:0.12030027584541769 :0.09310914314496074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -United:0.969261228308657 Southern:0.013264520270367659 other:0.007277028585831077 Confederate:0.006119431058271475 :0.004077791776872657 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5099280403274383 any:0.18406771895068075 or:0.14957826565838142 an:0.11790753648452781 :0.03851843857897169 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8652111170475869 the:0.07524090610511444 free:0.02513813014039649 and:0.01965941942813041 :0.014750427278771645 -an:0.9040084256175962 other:0.04023836985336615 banking:0.02335949410534651 that:0.018522154148801026 :0.013871556274890113 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7937556099942062 its:0.07621812294035679 their:0.04608176394528829 a:0.04445690656742005 :0.03948759655272858 -very:0.38827033040456294 greatest:0.248958589966338 other:0.12730729979092575 great:0.11871046199120819 :0.11675331784696513 -is:0.3413887605419314 and:0.19965590104052322 or:0.18655047590209076 was:0.1678774461958748 :0.10452741631957992 -all:0.5264325015654913 that:0.14381741382896052 which:0.1400491162635937 him:0.11050669539653951 :0.07919427294541487 -to:0.4043263780632911 of:0.31540730102300935 and:0.11120281360953246 wide,:0.09660554174389853 :0.07245796556026839 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9665237140033403 by:0.010031870243737476 ot:0.00862377890293793 set:0.007947342027510924 :0.006873294822473452 -York.:0.9438356858879908 York:0.03505108049258921 Orleans:0.010842111168976412 England:0.005243809376348539 :0.005027313074094971 -his:0.4481095466855596 the:0.20046674646343735 a:0.14111835854685795 their:0.10891704474082459 :0.10138830356332051 -described:0.26542229552760266 soon:0.23356576054097475 well:0.22983095917758292 so:0.15198020025961947 :0.11920078449422015 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.6398764016050127 in:0.2327502776540724 at:0.05040977336611499 and:0.04420869798981539 :0.032754849384984554 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.24268545488133128 we:0.24096860158489378 they:0.23539182831654998 he:0.17414340158650968 :0.10681071363071527 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.4800686865686584 effect:0.20330879952828676 that:0.10972017703001899 by:0.10965499670381079 :0.09724734016922489 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -water:0.5462490093264714 water,:0.33976777177646034 air:0.04185179608521613 meat:0.03985162614082052 :0.032279796671031744 -said:0.41742798782678403 a:0.2759307139561991 the:0.2003190979061005 certain:0.05923902512154608 :0.047083175189370344 -an:0.35461834494256966 been:0.29044886515810764 lots:0.14846662624017817 a:0.10885096716520602 :0.09761519649393864 -the:0.7948408630186145 his:0.0784857517622669 these:0.04706337759456268 their:0.045321287639632425 :0.03428871998492342 -was:0.2805118302358149 not:0.2188638238973314 is:0.20255409453466686 are:0.15120269803630731 :0.14686755329587967 -they:0.6382774966838255 we:0.19718405307235704 there:0.08386922131995972 you:0.07320676989162543 :0.0074624590322323 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -we:0.48851636888478406 I:0.4276134740705075 wo:0.035902156819050825 1:0.029013599663879716 :0.018954400561777933 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -of:0.4494041786808493 to:0.4283052173019691 by:0.047098853119464136 that:0.040377499399974176 :0.03481425149774326 -number:0.30398953664951567 part:0.19956296844739052 member:0.1868402923079783 copy:0.17968757827472964 :0.1299196243203859 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3987119044236749 in:0.24947521940430645 on:0.12209109432376605 for:0.12065767267684767 :0.10906410917140505 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.841826930084687 Bryan:0.06975374932908067 Roosevelt:0.034969448362432605 Sherman:0.026946795323932352 :0.026503076899867375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -terms:0.3851799253769217 arrangements:0.2264207219922874 trade:0.14971561409027626 conditions:0.12189906569217497 :0.11678467284833981 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7260191575302699 was:0.15278876342558423 in:0.04554888845275362 and:0.03843390907977129 :0.03720928151162092 -of:0.2840747126245008 or:0.2729446146262182 and:0.1669336740360221 thousand:0.15187949892938082 :0.12416749978387812 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -and:0.31512476260037414 where:0.2412055778820356 that:0.21504932553882564 as:0.12136563621274842 :0.10725469776601632 -which:0.474154212378248 that:0.1564932532334921 they:0.12883581354319215 it:0.12062344040620392 :0.11989328043886377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -born:0.27909499281399636 found:0.20874192851455553 made:0.19950402527668518 held:0.16262582102093442 :0.15003323237382857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7074267598055957 a:0.12716292263385093 his:0.06259600046214973 this:0.06025087836832997 :0.04256343873007387 -days:0.6233367108302031 thousand:0.1569557935728644 cents:0.11024178271470819 two:0.06190823879513032 :0.047557474087093925 -of:0.7154907114595026 with:0.08356723283111903 to:0.08070680215306193 and:0.07209438020428942 :0.048140873352026985 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -based:0.48167024761002925 m:0.20651469587478877 and:0.1251029470969192 down:0.10136415750552502 :0.08534795191273786 -the:0.7177793521737214 a:0.1534121795261323 no:0.07317278749827848 great:0.028087285333464596 :0.027548395468403295 -of:0.5973640200173559 in:0.179485079005239 and:0.08726013263103588 that:0.08612228824351431 :0.04976848010285495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.45016815143411243 They:0.2112678357094457 We:0.21045459601596148 He:0.0760074463428295 :0.052101970497650765 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.47704903740462057 a:0.4265126161208107 which:0.045134919787998294 one:0.027375517365742917 :0.02392790932082762 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -much:0.5127043211481686 glad:0.19671110647773782 apt:0.14826356188455034 late:0.07611652254783244 :0.06620448794171076 -is:0.3262261543921464 and:0.2476810066704937 was:0.18149253312924885 be:0.12779184322451975 :0.11680846258359132 -subject:0.44850761715266935 important:0.17595989028526335 whole:0.15041721169699052 the:0.13012884349376827 :0.09498643737130842 -body:0.40677291995442283 de-:0.2208057336181198 snow:0.13793460369289018 man:0.11862891965187199 :0.11585782308269542 -which:0.36281545046678915 all:0.1833183118707048 that:0.15462327833388634 cover:0.1520190631087139 :0.14722389621990575 -of:0.8764080707114913 for:0.08285088161860707 in:0.018874484700798416 ot:0.012503836770279197 :0.009362726198824015 -of:0.47834575484138936 is:0.17850582673967857 for:0.17456131254780685 was:0.10069245145217771 :0.06789465441894758 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -to:0.8779898612149084 a:0.05608699680197396 and:0.04604664939253451 from:0.01154840857246523 :0.008328084018118014 -and:0.3540790910093607 to:0.1993914198948272 in:0.19368353542253436 the:0.16659647502877498 :0.08624947864450284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6517801698965139 shall:0.12363814946193652 or:0.11210119081948511 can:0.06414491162858332 :0.048335578193481187 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.46612373781288036 this:0.2553665667419666 my:0.14264970197716875 a:0.11521174969516658 :0.02064824377281779 -be:0.6802681086195382 have:0.23397962251753573 bo:0.045218214694424476 make:0.021212196834143892 :0.019321857334357814 -shall:0.5172139245434447 will:0.1968786733932238 to:0.18231157699579104 would:0.053174020185272924 :0.05042180488226774 -it:0.5385096418852592 he:0.24099375754556776 It:0.0785178729995436 which:0.07445815160626261 :0.06752057596336669 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.47937756232303064 truth:0.24405748633628765 question:0.1675741304918259 result:0.07457368294067179 :0.034417137908184035 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.4641836697676292 will:0.27056022691492626 should:0.09484518601806241 could:0.09011624703153871 :0.08029467026784348 -are:0.31463010379207673 arrived:0.2088726911644116 look:0.19246053828151688 were:0.16455046002175652 :0.11948620674023823 -seen:0.2598702726712984 here:0.22235799970639847 made:0.2182207072703338 held:0.20008548829457187 :0.0994655320573974 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5019069546488455 was:0.15755395002482875 are:0.12773282482430048 a:0.11474188149569566 :0.09806438900632972 -of:0.4671911970623652 in:0.17770086549377945 and:0.15030550638312898 is:0.11129701099647638 :0.09350542006425008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -filled:0.33952356035732695 covered:0.2509399637782936 connected:0.14375049291459188 met:0.13453030849834222 :0.13125567445144526 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -just:0.4378823313392636 known:0.21280537070159827 been:0.16526771490790987 taken:0.09723031951503588 :0.08681426353619234 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -and:0.43330418980582674 but:0.15313259146810207 as:0.1515451927928433 with:0.13648484439703937 :0.12553318153618848 -the:0.7257559650081732 will:0.09974820095848337 no:0.06343927160477428 would:0.056155464736281226 :0.05490109769228804 -of:0.6751714180434255 and:0.10285996968371476 over:0.07651523136978629 in:0.07317387819085862 :0.07227950271221481 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.4871980560683371 same:0.25587349552574595 first:0.12287733762265822 proper:0.06932051295890929 :0.06473059782434927 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -six:0.4550166915525807 three:0.2120830022223525 two:0.1378213424491993 twelve:0.1002606763017488 :0.0948182874741186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6464117745802223 our:0.14764808566266907 a:0.11878209148131204 tho:0.0611040442613114 :0.02605400401448527 -of:0.8294412979207725 to:0.06409867697780347 in:0.05112219346704214 for:0.03465069073775421 :0.02068714089662782 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -in:0.5830169336355644 once:0.2500517822141805 In:0.0751779231507418 here:0.046943697134828925 :0.04480966386468441 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Union:0.25225720557056514 nearest:0.2495709048179786 Atlantic:0.23276728079899106 electric:0.17235080547401255 :0.09305380333845267 -make:0.3034363011558368 take:0.20557727392563568 keep:0.18383693365580323 get:0.16316149256965284 :0.14398799869307138 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 -the:0.9236729489691601 tho:0.03490104190150654 tbe:0.01616632722377251 its:0.015020186501234616 :0.010239495404326275 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3221044081963326 he:0.2510697472185581 we:0.18685177766439232 it:0.12683913572862993 :0.113134931192087 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -set:0.4972858268072881 put:0.17365757655459918 went:0.1514248883865696 go:0.1147272742075036 :0.06290443404403953 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lot,:0.6309160214422652 certain:0.13380943920148833 small:0.12142886012980965 lot:0.0637525510730899 :0.0500931281533468 -be:0.745077343036549 not:0.11481157822066469 as:0.049741426493991485 very:0.04963395048456333 :0.04073570176423155 -only:0.5105858821254092 bill:0.13826123653792333 people:0.13558306320986205 proposed:0.11060780096333137 :0.10496201716347402 -a:0.5591225466100411 the:0.22953729832775208 out:0.08024947467100776 on:0.07608449866112454 :0.05500618173007459 -order:0.3971025612628747 to:0.2213962652429609 which:0.150060570885664 this:0.13264882220913052 :0.09879178039936985 -that:0.30618612922125604 if:0.26265207929165835 there:0.163542444864124 is:0.1357807656914131 :0.13183858093154854 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3359729944129841 it:0.30880479848729897 we:0.14280863379233677 he:0.13642546714981485 :0.07598810615756528 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4818383800774588 large:0.2594278370393422 small:0.1254643419740363 vast:0.07856615595275254 :0.05470328495641015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -began:0.3362864575016465 proceeded:0.21647234861372924 more:0.19056014141142702 went:0.13674581328229737 :0.11993523919089981 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.25206296598693656 on:0.2501335551146999 in:0.20866625371243816 of:0.17510412125559013 :0.11403310393033504 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -property,:0.3349618721660154 property:0.3299888850816817 liberty:0.12698589873291544 estate:0.12230200847303778 :0.08576133554634958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8305782448840535 to:0.1094206828442116 that:0.02238257463280761 from:0.019137744910655095 :0.01848075272827231 -whole:0.5973987809421875 entire:0.1841125856047583 surrounding:0.10027257737241846 other:0.06726338194515198 :0.0509526741354838 -out:0.41139775491180486 use:0.18167885505563286 some:0.15283337491952462 one:0.15131067672851697 :0.10277933838452066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.39337065127017484 when:0.2436577372285483 if:0.1435115544366602 then:0.12776661242254575 :0.09169344464207098 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -quarter:0.5316187223239759 corner:0.4309953198259194 side:0.01926739081945107 part:0.012470722806314876 :0.005647844224338768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.2519273326972084 not:0.2429270203128028 was:0.19027289489324578 that:0.1743908901176501 :0.14048186197909296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.3641149602378628 principal:0.2133843528709556 great:0.17329671330094057 various:0.1254506082537976 :0.12375336533644335 -ready:0.36833748612590445 known:0.23462153777230071 attempted:0.14567592733312082 offered:0.12637454675922538 :0.12499050200944861 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Co.:0.4707606562962404 Co.,:0.24144406318621792 Ohio:0.1130263500029624 Company:0.09426355086710107 :0.08050537964747825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6745087319061853 into:0.13943614245486013 under:0.07403393175623699 to:0.057215405857125506 :0.05480578802559224 -it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 -o'clock,:0.5318592238887629 o'clock:0.29345480812546226 and:0.08163885675941401 o’clock:0.05144478399236255 :0.04160232723399801 -from:0.5418969797066674 of:0.17198681766613716 to:0.16389345981635442 in:0.09774412727696835 :0.024478615533872646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4893136016636606 a:0.32918002825042897 this:0.13560946721752584 which:0.024219143443634964 :0.02167775942474962 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.24412672571957442 and:0.22972672443577352 is:0.21548263266958878 a:0.15774752534816772 :0.15291639182689565 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -few:0.9762953520690524 ten:0.00917370587423652 week:0.007420297266025401 dark:0.003855927592337654 :0.0032547171983480527 -the:0.5145271880713146 both:0.26572702212128135 their:0.08544959436007003 these:0.08347204046471267 :0.050824154982621265 -him:0.2763785448259629 them:0.22620151810266378 different:0.19794082888102144 her:0.155994116435636 :0.14348499175471577 -made:0.2865007563898702 given:0.18707095409125066 occupied:0.18029096520486088 taken:0.1750411775258742 :0.17109614678814403 -sure:0.32726318900043605 convinced:0.20045374971142055 confident:0.17966198205123035 satisfied:0.16205820466340556 :0.1305628745735075 -Fifth:0.34466993157470754 the:0.26614520785881357 Pennsylvania:0.13788735545222136 said:0.12622588510417082 :0.12507162001008662 -that:0.35697259855308877 and:0.2988685922191003 which:0.17760892019624805 it:0.1156159636439785 :0.050933925387584254 -Nevada,:0.6281549221446826 which:0.13944707714757248 California,:0.10840224576093067 being:0.0869284220910132 :0.037067332855801105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -very:0.252309126560985 present:0.22429152655499665 same:0.19678499924727386 new:0.18112637117452027 :0.14548797646222422 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -soon:0.275543793791002 well:0.27387486560827035 known:0.17737110092296213 just:0.14424834119238059 :0.1289618984853851 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3986980458593127 the:0.3494674527894401 all:0.09447636912787541 most:0.08649498934344982 :0.0708631428799218 -many:0.2611854226816431 some:0.2068042163042336 thousands:0.18044607942171062 capable:0.17975112455100817 :0.17181315704140457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7309230775163745 that:0.10346016177106404 in:0.06815416166033017 to:0.056978875713877955 :0.04048372333835332 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7001668978104663 in:0.15470430583577802 from:0.06463336445142 for:0.04146024176994317 :0.039035190132392594 -of:0.6544567446762887 was:0.12442807951739702 in:0.09681839886142532 from:0.06257971670554799 :0.06171706023934082 -any:0.6653015811177871 in:0.14955308728093192 of:0.06683177244135236 by:0.059594126617232734 :0.05871943254269582 -virtue:0.5644179908974355 deed:0.15265949352544586 means:0.11526939737991859 one:0.10056603725510939 :0.06708708094209066 -had:0.312604746715835 was:0.2079875958180596 has:0.1853526870687794 having:0.16605565673443243 :0.12799931366289358 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -made:0.4017282138091417 in:0.3535950953128626 for:0.09925339823720347 on:0.07606841843328932 :0.06935487420750304 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.25700009692971343 himself:0.24647576352710082 assigned:0.188934409313107 are:0.15580361035400908 :0.15178611987606966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sons:0.4968713619823817 son:0.3886963792960968 I:0.0427048805222162 mission:0.040834083093621965 :0.030893295105683373 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.44332543380960043 to:0.1485174353659674 on:0.14667606068412553 with:0.14138252146960317 :0.12009854867070333 -brought:0.459224361280028 is:0.22128434664120872 or:0.12449993778288222 taken:0.10113995936819418 :0.09385139492768685 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.7497931668251158 was:0.09423619784652992 being:0.0578357912906161 be:0.050778668092049464 :0.047356175945688694 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -nothing:0.5605222476927079 anything:0.12595655732303504 enough:0.11138713885373397 that:0.10572245857107236 :0.09641159755945072 -now:0.420162188501115 all:0.23969168321237927 certain:0.1626575867625255 proud:0.0894493521074524 :0.08803918941652801 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -industry:0.2959139913015496 trade:0.22728234165558545 corporation:0.18496135073537975 and:0.16289275563738387 :0.12894956067010135 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9480095420245807 and:0.0278000402907469 who:0.011895908116260182 not:0.0076003120078633616 :0.004694197560548849 -its:0.4881480696288261 their:0.2730468422956671 the:0.10843319558454366 public:0.06668066677427034 :0.06369122571669272 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -matter:0.7077925945551056 doubt:0.14932576778862622 wonder:0.0701167874036618 telling:0.039828196509863696 :0.03293665374274273 -hour:0.27792223753527034 hour,:0.19792389143497674 acre,:0.18544513977624716 old:0.1720240078065667 :0.1666847234469391 -he:0.35785950933915395 it:0.311293238097769 there:0.1589384072212929 she:0.10396547422958032 :0.06794337111220382 -the:0.8938022200776872 this:0.04797813101384419 tho:0.02482982230244173 tbe:0.018504574579442497 :0.014885252026584462 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7588286168742037 our:0.10978334154477845 be:0.06407034571454746 a:0.03749002813055417 :0.0298276677359163 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5638011043319452 that:0.13022713602305738 a:0.12600334872274233 every:0.10737837955340794 :0.07259003136884723 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.24467188556839767 city.:0.22576096868251727 world.:0.2190887536601012 state.:0.16450294626115974 :0.14597544582782424 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.44273425417115375 1:0.1784328231350147 he:0.16493016935800622 I:0.12617347423784472 :0.08772927909798046 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.3343143555883938 have:0.3042059587625749 been:0.2250231658514437 only:0.08322327166481988 :0.05323324813276766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.43994357419853863 to:0.24690496136752615 should:0.10865133403589174 shall:0.10325237258927622 :0.10124775780876734 -the:0.8371891126991755 seed:0.04230091331139372 tho:0.04200190392082427 a:0.040992267265876424 :0.037515802802730126 -came:0.309925922956656 went:0.29657920616820205 are:0.14125196629599818 was:0.131143154298922 :0.1210997502802217 -are:0.44497998953526585 have:0.2856725621835353 were:0.1591146217147707 and:0.06257552040066042 :0.0476573061657676 -to:0.511724498509057 not:0.3884718695388764 now:0.04985443079697052 only:0.030093767577358065 :0.01985543357773797 -is:0.5460054357958671 in:0.1878863280425286 was:0.09374803123026969 and:0.08686555120445427 :0.08549465372688017 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -general:0.6679224171618748 business:0.10072128963069671 city:0.08542964786541882 stage:0.07744041412070005 :0.06848623122130966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -single:0.8152462025551263 special:0.1028037360749724 curious:0.03905312079629011 remarkable:0.023312018401251192 :0.019584922172360023 -was:0.2917104823876517 am:0.2576555369413741 found:0.19297910632837453 believe:0.15990483007660258 :0.09775004426599702 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.3005984218262769 known:0.2655373970567997 the:0.24717544958242826 informed:0.1220430792700076 :0.06464565226448767 -that:0.6590038740748176 to:0.12073331160087994 and:0.1030114218697692 of:0.07552440816894054 :0.04172698428559267 -a:0.6036720540161221 one:0.1287270768612395 the:0.12823789420367232 every:0.08922094169683364 :0.05014203322213256 -reason:0.2650651340342022 and:0.21681196582147647 thing:0.20000323630736758 things:0.17781643756729187 :0.14030322626966207 -that:0.5322026599421515 what:0.21699857697669697 how:0.1368449485523328 where:0.05935808448336459 :0.05459573004545413 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -was:0.34213187058807853 is:0.21237138281971008 has:0.2004057170251573 were:0.13338728729002455 :0.11170374227702955 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.3156113442068492 much:0.21375794948271912 will:0.1951939024251364 and:0.14671966182598004 :0.12871714205931528 -according:0.3555824560814179 and:0.25349777949930696 as:0.15486331387205723 himself:0.14046628939083994 :0.09559016115637795 -year,:0.32848371612188276 year:0.26308908292497357 shall:0.13964057884152706 years:0.13758874765761933 :0.1311978744539972 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.24341930994123637 loud:0.22594700756677846 in:0.19143859524312848 still:0.17652167101623703 :0.16267341623261958 -committee:0.5857686258870516 letter:0.1346802582485176 blood:0.10135043626500327 father:0.09616474593927947 :0.08203593366014804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6348764062133089 have:0.1722777119572877 had:0.07844761572429704 been:0.07186501001580349 :0.04253325608930309 -time,:0.3902136991835628 time:0.28243918036157223 year,:0.13334671714149182 day,:0.10600795069300126 :0.08799245262037188 -in:0.3352596324935674 and:0.21258273006807626 for:0.16867070586759286 as:0.14456190137071825 :0.13892503020004532 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.44815787220666076 a:0.20089916910624228 won:0.1863765011663116 ai:0.09071049688679418 :0.07385596063399125 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.4124220092634804 of:0.29426503454490116 and:0.21080864716082978 the:0.058470386633171535 :0.02403392239761723 -moment:0.26292630283232415 time:0.23893844843373474 man:0.21373173822132197 year:0.17411586585710045 :0.11028764465551871 -name:0.26718864387260566 word:0.2621444132912944 said:0.17464266934667932 words:0.1697718632070335 :0.12625241028238726 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -he:0.3406675391186579 and:0.28011619052895337 which:0.15372359175753803 they:0.12032136503785627 :0.10517131355699443 -eminent:0.651647710174632 prominent:0.2155126248940548 distinguished:0.06445117827791105 celebrated:0.0477043539027362 :0.020684132750666055 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7557919258253728 in:0.09315941393850816 thence:0.07919599270351631 of:0.04041227061691792 :0.03144039691568491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8365252420458127 a:0.08221454533435171 tho:0.03601209658997877 his:0.02376323319802094 :0.021484882831835965 -He:0.3852792396065479 She:0.20537414599480475 I:0.15505676947960684 They:0.14755753709720776 :0.10673230782183274 -the:0.8789737842073698 tho:0.037529888619360574 a:0.031673395373726286 six:0.026743424586553436 :0.02507950721298991 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4398666598729556 for:0.2073221407016403 to:0.1791160265587611 with:0.10052071829330231 :0.07317445457334065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8887209903366957 tho:0.048074635854010596 a:0.0472092865561041 tbe:0.010836917826177933 :0.005158169427011555 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.814313075214286 herein:0.11476474708703656 aa:0.031351959641783236 those:0.022384674014302747 :0.017185544042591434 -in:0.3630409628886776 to:0.2624026403739989 on:0.12926626011819484 at:0.12271000817660928 :0.12258012844251934 -world:0.2902661748371584 country:0.2222473979389011 city:0.1773477177489124 government:0.17433420460373003 :0.135804504871298 -failed:0.3726013753089509 and:0.19897570741554613 as:0.1904596745457058 have:0.12676239954704524 :0.11120084318275195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thought:0.26954855792152616 had:0.22361357864818188 said.:0.1794193968867037 did.:0.17781213885476302 :0.14960632768882529 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.2997629071190403 man:0.22582378534204278 as:0.21371538148994895 which:0.13414358828618098 :0.12655433776278688 -gether:0.4322708871317314 day,:0.19615272067317516 ward:0.17356324438044426 day:0.1395569651874887 :0.058456182627160465 -through:0.46294332359828627 over:0.14510133367945285 on:0.1431165548751897 upon:0.13874430792734993 :0.11009447991972122 -see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 -wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.41898458409291456 that:0.24261616192919847 I:0.12025260173539418 and:0.10965895553891443 :0.10848769670357837 -well:0.5522421223523808 far:0.207637425643884 soon:0.15314698604852223 much:0.05231429146523605 :0.0346591744899769 -that:0.43402016799522153 what:0.36856829672286723 of:0.08794780358878336 how:0.060953484265182795 :0.048510247427945144 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.30628063371456404 we:0.264288573019645 they:0.21801892410324517 would:0.10648509534338894 :0.10492677381915687 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.4826076780454506 and:0.28477439965591533 cause:0.1291794769928569 as:0.05615317385604225 :0.04728527144973485 -me:0.3644328405454947 him:0.3311687267900046 us:0.11974563184708452 notice:0.10479098101451284 :0.07986181980290338 -made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.3720760911837878 is:0.2883364606693182 being:0.156456638870435 that:0.12362489695565732 :0.05950591232080173 -was:0.5112583470092996 is:0.2924815376593282 had:0.1222824531160859 became:0.03817305536289247 :0.03580460685239395 -no:0.5066441430732729 a:0.2284158500525827 the:0.18210883798951172 their:0.04558054400558436 :0.03725062487904819 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2915953793545578 as:0.25943405556171695 such:0.23531199772538186 or:0.12185439633653826 :0.09180417102180524 -hundred:0.418796876047723 few:0.23941193032816915 thousand:0.17417089460634633 half:0.132041267073761 :0.035579031944000486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.4221510240186959 in:0.18474541430149236 on:0.16670087024151567 that:0.13380139016336906 :0.09260130127492687 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3239569697508548 by:0.29940648098022077 that:0.15020041729506312 in:0.1498741857175021 :0.07656194625635915 -tended:0.491977446969195 terest:0.19612100844782568 tend:0.11798492895460129 come:0.10624537584885095 :0.08767123977952705 -the:0.34110758052671813 about:0.23155442877878193 some:0.19860529061870505 a:0.15538071813786755 :0.07335198193792736 -writer:0.368190364874526 train:0.2295501523408562 ball:0.16889551177594606 smoke:0.12723338399174697 :0.10613058701692477 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5869585330649484 if:0.14009335618219526 as:0.12043832507701507 has:0.07672623641473715 :0.07578354926110421 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -best:0.4241172439894904 same:0.1713829782369717 new:0.15955881485767442 present:0.13051807407362886 :0.11442288884223457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6629138249138383 hardly:0.22786116864656286 scarcely:0.061261142718823006 never:0.0375609346303939 :0.010402929090381784 -make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 -it:0.24731417708451314 even:0.24229244116713733 this,:0.24063838984187322 all,:0.13766758772284637 :0.13208740418363005 -take:0.6568662990540863 not:0.33119989865208926 be:0.005670415427434305 hardly:0.003349520777906414 :0.0029138660884836507 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9118965401660062 tho:0.03331265920957103 his:0.02673141977393186 tbe:0.015047021889920242 :0.013012358960570729 -All:0.32931157306611936 In:0.2083892732739058 And:0.16549459824095364 Now:0.14842327316152887 :0.14838128225749234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.45884077215892544 connection:0.17715348597667507 matter:0.1289410401461493 parallel:0.11840508343751481 :0.11665961828073544 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -weeks:0.24831434863347787 years:0.22899601329648137 or:0.21155160349195432 hours:0.15750988161570115 :0.1536281529623851 -will:0.34414844061497196 would:0.19299369643919212 may:0.1831788859063651 can:0.14661730342662094 :0.13306167361284976 -try:0.5885286296441988 ty,:0.1469404419683656 ty:0.1342451202628596 ties:0.12638940809118038 :0.0038964000333956165 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5170792337978347 and:0.14112771896030293 I:0.13508974708102042 that:0.1338818916563518 :0.07282140850448998 -said::0.6338624697162226 says::0.21496857789802382 on:0.05884321905857571 in:0.04936722444604811 :0.04295850888112975 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3000617254168005 th:0.26713234492229854 ho:0.22160395451612083 tin:0.13421864560317115 :0.07698332954160912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4124799596953061 is:0.31816826479046983 will:0.0975573157175443 to:0.09686156681536984 :0.07493289298130995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -back:0.2651858312574032 side,:0.19537499116359444 ordered:0.19428957583824924 on,:0.17814086440493795 :0.16700873733581523 -of:0.6683665772170536 in:0.12895383362837848 to:0.10696328242682433 over:0.07097481703160116 :0.024741489696142482 -which:0.35296312408720415 it:0.2794070160046456 this:0.2246432250704566 what:0.07854804354576883 :0.06443859129192485 -.:0.7607492066676997 V:0.07166591383297544 is:0.06311341618613286 have:0.05705253855673201 :0.04741892475645994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.5382027568910309 All:0.3098961965434046 A:0.07098070301023224 That:0.045597150732103346 :0.03532319282322899 -it:0.33735456562258065 which:0.2800283652936288 and:0.262141958114354 there:0.060863803701553136 :0.05961130726788344 -whole:0.4522939498305869 royal:0.1544565790498033 entire:0.13904848627056418 best:0.13266337954135188 :0.12153760530769378 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.36054725543568394 in:0.25104015913284095 that:0.16997219530927762 from:0.11873990492666225 :0.09970048519553527 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.39431265691494394 &:0.1970352191175564 k:0.14894032537080618 ft:0.14686468673282185 :0.11284711186387164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -attention:0.2746584835525123 father:0.2285408012956728 answer:0.1737101067432454 letter:0.16290476736521317 :0.1601858410433562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6041689913634901 had:0.1060409239537605 to:0.10358411056943348 made:0.09881059483505486 :0.08739537927826117 -the:0.6380967912469692 said:0.18165297242127426 our:0.0828461914645248 this:0.06279664798238284 :0.034607396884848915 -the:0.3315112916882049 his:0.2894358334151999 our:0.1825973103092127 many:0.11044237166351019 :0.08601319292387224 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.40246448507839766 and:0.19712284921797874 party:0.1419114918213138 Pacific:0.13802328799087246 :0.1204778858914374 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -and:0.3105883909747178 or:0.2947204167009707 the:0.2370653671260343 an-:0.09114957234003171 :0.06647625285824556 -of:0.5880463628251464 the:0.176413929492526 and:0.08924024467596336 to:0.0821226714470688 :0.06417679155929526 -more:0.7074319835373611 less:0.16510403682604466 rather:0.07592032434094827 them:0.026732142590431995 :0.02481151270521386 -the:0.5545356046209312 which:0.17481830010723404 and:0.09941693228409526 that:0.09713278618270697 :0.07409637680503246 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5227927489893616 but:0.14511776124727907 the:0.14302700151595105 lower:0.1217326205453021 :0.06732986770210614 -of:0.6025537472335281 at:0.13852318943245234 religious:0.09128658970246302 between:0.08921038647854047 :0.07842608715301615 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -an:0.2950355470845622 a:0.29082880120383536 the:0.1624423332776568 not:0.14551465744171005 :0.10617866099223547 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -morning:0.3479237911670612 day:0.23796909972169805 day.:0.1823178168123502 year.:0.13083116641347484 :0.10095812588541563 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out.:0.3589428499197398 it.:0.3355746254879976 himself.:0.15288613551279087 out:0.08016233554318948 :0.07243405353628225 -all:0.33998571620451634 passing:0.2993602735963012 going:0.13674271105617924 him:0.128090459823753 :0.09582083931925013 -the:0.7470103411808625 his:0.15156662942511084 tho:0.040252919722914476 its:0.03222095461423072 :0.028949155056881427 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.8885168506269056 what:0.041956644766018555 whether:0.03582341527416638 when:0.016913413292604377 :0.01678967604030497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -certain:0.2950176662341537 great:0.2317811422580379 single:0.22406393294587088 strong:0.12967727346693708 :0.11945998509500044 -so:0.44482552799515085 as:0.33805906249974277 how:0.15734555552053178 not:0.034632589952126216 :0.025137264032448328 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.42639859723178 was:0.18516331402608513 the:0.17557276202261635 an:0.1229489625025562 :0.08991636421696232 -floor:0.3476855538263723 floor,:0.23521140468790425 ;:0.16672023092047167 lying:0.1518356462903299 :0.09854716427492184 -one:0.3648278020186572 time:0.19637319031665834 person:0.17772273556119397 more:0.13591991814815224 :0.1251563539553383 -in:0.8782151757773767 In:0.07513903084077735 iu:0.02761498337421219 relative:0.009772651942125685 :0.009258158065508084 -that:0.22403825545544673 truth,:0.2124640121680924 duty,:0.20265353236058353 ,:0.18087341449035196 :0.17997078552552548 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.4887393217003701 do:0.18165549787009944 had:0.17736847078165197 are:0.08085728691784402 :0.07137942273003448 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.3268102494903684 men:0.21174508911704912 citizens:0.19001199375327332 citizens,:0.14849573795775456 :0.1229369296815547 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.28908066975305224 would:0.2780916927874321 to:0.1835710212207945 may:0.13814391784624766 :0.11111269839247358 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -That:0.3416218739128062 The:0.3391836873134322 He:0.16430540026329707 In:0.11485171869753563 :0.04003731981292893 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out:0.26191375786534377 over:0.23610699117155728 back:0.2181889076777121 up:0.1854106630803036 :0.09837968020508327 -Pacific:0.3120299896854518 avenue,:0.30675354678126676 and:0.20987455313157086 about:0.09355335131787405 :0.07778855908383649 -It:0.4072871794478388 You:0.22381855979848364 We:0.15511289231370845 I:0.10724725835318837 :0.10653411008678082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.537127936573132 between:0.3862947864966203 and:0.02965361871388308 South:0.024575783289255956 :0.02234787492710876 -a:0.908982189368535 last:0.04658029590176496 the:0.025861130975890465 those:0.012303597693683655 :0.006272786060125938 -before,:0.4493420504129089 known:0.17799095011673205 known,:0.1277404088923155 made:0.12258949446416377 :0.12233709611387979 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -give:0.3161995032607451 tell:0.21311292876638901 let:0.17649795059505258 make:0.172591041641658 :0.12159857573615528 -the:0.5630619273892246 this:0.32281089947535346 said:0.056002679458008506 our:0.02951038482722317 :0.028614108850190167 -the:0.9106214968203415 tho:0.04368795335768687 tbe:0.018947093569232215 an:0.015764597542149053 :0.01097885871059025 -the:0.8636108971131127 this:0.043643777489961066 a:0.04215156654947585 tho:0.03116125555041103 :0.019432503297039504 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3810887439789034 to:0.19255659830133662 would:0.15598500207132873 should:0.14818159286625324 :0.12218806278217802 -less,:0.2916823577692669 not,:0.25773584845958303 more,:0.18689038684292697 anything:0.1600772122716349 :0.10361419465658822 -on:0.6381074000057922 at:0.17139730346418589 and:0.08698216330683879 in:0.05981630797026065 :0.04369682525292229 -that:0.4518163445338062 to:0.25616574673341835 by:0.15106009006723026 and:0.1027137977046983 :0.03824402096084689 -a:0.3895872083317454 the:0.36442569137255854 said:0.09288361320062986 its:0.0854004586081204 :0.06770302848694577 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8655107057716589 in:0.04830835412436777 for:0.034657836318787966 to:0.028284341293330344 :0.023238762491854976 -are:0.44807634355262504 were:0.18258223073176502 will:0.17249091272106162 would:0.09947505754495987 :0.09737545544958853 -would:0.3226760403150322 will:0.2822694430741013 could:0.1425697610405298 may:0.13173375946749338 :0.1207509961028432 -at:0.5601774022088544 about:0.1564027898605496 to:0.1036252651765581 after:0.09551876978151654 :0.08427577297252152 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -many:0.3218515404346324 the:0.24166000522975128 several:0.1855378315797301 four:0.12732982493969894 :0.12362079781618729 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.4107787633214158 one:0.18308034023041894 sooner:0.15157394574049385 person:0.13239481761856162 :0.12217213308910983 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.36750213488382105 I:0.3364674102252771 they:0.11780251317357504 m:0.09757378256939936 :0.08065415914792755 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.3366894007943536 it:0.2863391013280192 this:0.17583641020207327 that:0.1237109484167922 :0.07742413925876171 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6277636382323701 in:0.22537585525931275 a:0.058050777683834556 to:0.045343534886462436 :0.04346619393802013 -by:0.42026236526667404 to:0.31569358338945847 that:0.15016784981869713 himself:0.05703017865779713 :0.05684602286737316 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -and:0.2911417590175337 State:0.2400122014506058 farmer:0.1594128705101488 legislature:0.1587817851132899 :0.15065138390842175 -the:0.8577153359484204 tho:0.04756914412375399 January:0.03586759706258654 July:0.035293095697312274 :0.023554827167926843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.36657951429590396 to:0.1912233898247066 not:0.1887948994458463 then:0.15721046126066168 :0.09619173517288138 -not:0.46652435431537576 be:0.2306617458624069 well:0.1762361775111843 do:0.0670532504402384 :0.05952447187079459 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7528691274905589 a:0.14386031397332255 this:0.04402327276378791 tho:0.0388976497998296 :0.02034963597250121 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.49245685267464906 in:0.2308016216404441 but:0.1125151332989595 when:0.08976818842257575 :0.0744582039633717 -to:0.9373411436763323 and:0.05046795374835947 I:0.005862399353893991 can:0.003846305015435318 :0.002482198205978907 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.4712906391570718 their:0.16502248546874926 the:0.1587387285776933 my:0.10795053739215744 :0.09699760940432829 -o'clock:0.3952308865512929 was:0.21447971444352665 am:0.15518767088187618 found:0.1292939430296092 :0.1058077850936951 -to:0.33833151517338683 for:0.20044777768026045 with:0.192119211998388 in:0.14813328098391268 :0.12096821416405212 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.3091263640245377 had:0.28817048768696685 was:0.23873435230477882 is:0.14098019073227278 :0.022988605251443923 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.36095064747237443 one:0.17271087224771947 as:0.16930770939854078 a:0.150251700179222 :0.1467790707021433 -that:0.31217221812033263 in:0.2674446517771789 with:0.14761935616281102 at:0.14393860209577636 :0.12882517184390124 -and:0.3825964114686876 were:0.34515099915943265 are:0.10695661980643875 already:0.0892932245388706 :0.07600274502657046 -Co.:0.33318173074392426 .:0.19784047807601093 each.:0.19164690382911861 them.:0.15566790961968976 :0.12166297773125632 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3655224793259098 which:0.21437497575678058 and:0.20002989134441276 there:0.13817197671849088 :0.08190067685440597 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.8541870298134394 the:0.06220574301377649 "The:0.032342687945601196 Army:0.02745030473979486 :0.023814234487387752 -of:0.5470460668032644 that:0.17219388970941985 for:0.11504961281099998 the:0.09389093650382617 :0.07181949417248959 -line:0.42473113632772747 side:0.26134168391647156 direction:0.23873898349446163 corner:0.041522464204806396 :0.033665732056532914 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4227864182287676 and:0.15678952731939974 any:0.14755560315236863 as:0.14399024430372948 :0.12887820699573446 -the:0.7413322999168078 a:0.18598354468791423 tho:0.037376018258169864 and:0.018474703021854288 :0.01683343411525381 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.23920488219016744 days:0.23359108683144542 year:0.20726319130525772 day:0.1993704029060444 :0.12057043676708501 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.7943956412568322 in:0.0837909797718344 and:0.056463442107599036 to:0.0376078717323615 :0.02774206513137297 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -in:0.5447345995321556 at:0.1446128300652364 to:0.10922489936200494 on:0.10185546343059779 :0.09957220761000518 -half:0.24750611822843946 of:0.2134578389978743 time:0.18319074465509116 while:0.17847455948790394 :0.1773707386306912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lots:0.5194316639136203 the:0.23116120619572222 an:0.11009077033055394 which:0.07673337773099173 :0.06258298182911182 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -into:0.6020148808076131 upon:0.23754933370775605 Into:0.09274804956245605 on:0.038092556135576085 :0.02959517978659872 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -work:0.30814400580419565 lives:0.21750209535318848 duty:0.18937288845330646 views:0.14514170302417165 :0.1398393073651378 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fore:0.2767238820467851 cause:0.2675151955900089 ing:0.19937597345665697 I:0.16633150660554766 :0.09005344230100132 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -not,:0.40772887882972914 even:0.4014535924947578 otherwise,:0.06649719962970417 not.:0.062356280547249614 :0.06196404849855912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6708922817147481 on:0.1061346062766463 in:0.08283382937547724 at:0.07527849345118814 :0.06486078918194009 -interests:0.3049144603031642 men:0.19442570707560577 known:0.19439096437636844 quality:0.18154241307048638 :0.12472645517437508 -country:0.3883095761560454 city:0.19629707343171213 company:0.165849263138146 opportunity:0.13844252682389127 :0.11110156045020518 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4434269511306302 that:0.24416947950160456 to:0.15990420157835217 for:0.12357485989383742 :0.028924507895575637 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -once:0.33272799926555374 right:0.23623250683678043 least:0.1990716453629417 home:0.12559821484433517 :0.10636963369038907 -present:0.34444093288085403 whole:0.31868172107787246 new:0.12219530952127047 entire:0.12026615763791693 :0.09441587888208598 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -very:0.252309126560985 present:0.22429152655499665 same:0.19678499924727386 new:0.18112637117452027 :0.14548797646222422 -do:0.3184387484427923 hardly:0.2634180246154216 be:0.25829441668791586 obtain:0.09294699723028249 :0.06690181302358775 -the:0.6359597688492045 general:0.12415417950873178 an:0.09825511819617729 his:0.07909914050629235 :0.06253179293959403 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -health.:0.21681998872130823 man.:0.21270539193850901 time.:0.2106985248208908 order.:0.18592603993122395 :0.17385005458806815 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2521721978791727 honor:0.24707095590444791 which:0.2297639920282843 a:0.18050448681333178 :0.09048836737476325 -would:0.3137506371102054 will:0.30229077242690316 must:0.1516223024866113 said:0.11723247872090156 :0.11510380925537866 -he:0.46756674757504246 I:0.2565569149660784 she:0.1456085263877579 they:0.07949014253390946 :0.05077766853721173 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -and:0.2980297792764018 is:0.24658687821418193 be:0.1811501830644025 was:0.14420479043977918 :0.13002836900523476 -the:0.689577208937944 these:0.23449497826785454 tho:0.033612564917422504 those:0.025653827042006506 :0.01666142083477232 -mind:0.2584866883743739 head,:0.23338910536278948 face:0.17686227055518816 or:0.16885996655728588 :0.16240196915036262 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -of:0.6390876826406074 for:0.14537310169524328 in:0.09263643763854613 on:0.06690264650218371 :0.056000131523419296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -week:0.30742217664341426 time:0.19328742991718753 Court:0.1831471400325474 city:0.17422759139085284 :0.1419156620159981 -of:0.43816309711831186 most:0.19425878492999502 and:0.16858051954569342 are:0.10842963052501091 :0.09056796788098867 -number:0.3026426046150244 part:0.19149865887319448 copy:0.18604551240261066 portion:0.16550206060409364 :0.15431116350507695 -depend:0.278189398750476 only:0.20982078040427932 look:0.20632945689014923 based:0.16304367824707353 :0.14261668570802194 -John:0.28185725160268554 county,:0.25541571578561323 Charles:0.15759643806607146 U.:0.1572996320629123 :0.1478309624827175 -to:0.32497190683857685 on:0.23759402191175735 in:0.20260265788018697 by:0.12668609256342558 :0.10814532080605323 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -a:0.4846253430431945 the:0.4047661151287998 this:0.0636921920881886 some:0.03009175276113221 :0.01682459697868485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.27181213388231373 weeks:0.22187065708126524 o'clock:0.19337769067871924 men:0.17520030839228298 :0.13773920996541886 -up:0.27706039113085207 out:0.26291826700130005 outside:0.15909766442749604 strength:0.1544433957588861 :0.1464802816814656 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -of:0.5944618356801051 that:0.15733965837775643 in:0.12787444277089688 among:0.06994407446270572 :0.05037998870853601 -be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7946871220197886 said:0.10246151117044232 Bay:0.046731240135155235 tho:0.03077155068197765 :0.025348575992636083 -if:0.4450035760702198 though:0.3387685223109366 when:0.1216293408924436 as:0.04986573466736683 :0.044732826059033254 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -involved:0.4791647373677439 contained:0.16310576819262879 that:0.1597001733561548 is:0.10254146570262349 :0.095487855380849 -am:0.23157768800948617 asked:0.2249044078391004 do:0.19460309692635064 hope:0.18234625750415534 :0.16656854972090734 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.4064070124411826 and:0.2670108143051853 he:0.12147277297684585 never:0.11498731790472536 :0.090122082372061 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -30:0.5337648421442125 45:0.1615670184720643 40:0.10987188269630162 35:0.10487029877030747 :0.08992595791711411 -that:0.3918094606957633 when:0.382099825967578 and:0.10143666232916394 if:0.06613512834087483 :0.05851892266661981 -a:0.7733243215013553 service:0.09813871594703906 tax:0.05815449559319356 highway:0.047245037971914636 :0.02313742898649737 -in:0.7617777342406287 of:0.14330069454652025 In:0.0431916004888139 under:0.02805340895186781 :0.023676561772169435 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.891014588173277 his:0.038587551535390376 tho:0.030282738385897 their:0.020549087743881204 :0.0195660341615545 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.5433329911090748 persons:0.16931446552857582 person:0.11370047188587526 articles:0.10528559243163764 :0.06836647904483646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.36037369076522274 day:0.21280165666260917 number:0.1503775456261177 amount:0.14515365087909804 :0.13129345606695236 -It:0.3857935233886248 He:0.2431648575062909 There:0.18584572198551902 This:0.09515737423733787 :0.09003852288222726 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4792163814630782 any:0.2686504559369056 every:0.12649354884003022 some:0.06717848059588147 :0.05846113316410454 -first:0.4234354763421296 time:0.17946943983153435 Senate:0.13714433797541686 court:0.1362677168685034 :0.12368302898241573 -brought:0.5136012080159068 made:0.131996529458298 located:0.1222182136853666 situated:0.11739693820097395 :0.11478711063945458 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -nothing:0.40611710812377344 that:0.3783146402139685 all:0.09527475123834409 him:0.062410291821600794 :0.05788320860231313 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8455079451298888 in:0.058021497762959416 to:0.04350099470391134 and:0.028136814854024597 :0.02483274754921572 -down:0.24070513395480206 up:0.23187364848575778 away:0.21024387694995217 out:0.1876543692496133 :0.1295229713598747 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whole:0.23123379425115395 true:0.23105770510782536 great:0.194239907707475 other:0.19080881549698914 :0.15265977743655645 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.32631557049600485 which:0.21132756531893743 to:0.16983000593901557 with:0.1557440561450864 :0.1367828021009558 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well.:0.5362359657510158 good.:0.24011040412180792 old.:0.10895984543224801 last.:0.06910609088642647 :0.04558769380850189 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 -they:0.4186730825846897 there:0.29061365110468124 we:0.1750876695397314 that:0.0736966396191978 :0.041928957151699746 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -corner:0.39905172439401354 line:0.2459704840766434 bounded:0.1497263240887356 shall,:0.11158946933176095 :0.09366199810884658 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -you:0.4088518001567058 they:0.23277693817301795 we:0.18342015594786945 a:0.09287013028988256 :0.08208097543252446 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -sale:0.7919395969029386 provisions:0.07469651304521616 directions:0.056037565684869506 power:0.044022895933385715 :0.03330342843359008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.2600687300373408 take:0.20913168457478165 be:0.20432458816982405 have:0.1687730942845154 :0.15770190293353825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.4760054387317019 A:0.3681205327139372 No:0.07321654187098582 This:0.04640676306221124 :0.03625072362116391 -to:0.9025666068132738 will:0.06738314065899279 should:0.01484768528016347 would:0.008448869628799573 :0.006753697618770224 -the:0.45152142835388565 a:0.4151012691982451 so:0.056223443363718394 with:0.03987777895732396 :0.037276080126826726 -the:0.6160566217469812 in:0.16575919522081223 a:0.10250022191761625 every:0.05934594530010081 :0.056338015814489543 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.2980560284370497 know:0.274424915377403 be:0.24794688650762453 been:0.09010904014167931 :0.08946312953624344 -the:0.6037851774304345 final:0.22966659860661684 a:0.11631822353110038 tho:0.026207314486986218 :0.024022685944862034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6411850378077792 his:0.15584237173043997 our:0.0905304718631084 a:0.060208218147604624 :0.05223390045106782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.26571650983403255 th:0.22136304436461668 ti:0.193696525559978 tl:0.16878492600747344 :0.15043899423389934 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.39807397614510825 said:0.29500832188800014 day:0.10948629039075249 last:0.10440159557224948 :0.09302981600388958 -gress:0.284197813288754 dition:0.2348686607881963 tained:0.2010063506011329 test:0.14688932358647128 :0.13303785173544544 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.24035420499673232 appear:0.2266872306435259 go:0.21612426349213212 have:0.15959992186142086 :0.15723437900618878 -sented:0.48268384168780376 scribed:0.2701281340096202 served:0.10543760088874264 sent:0.09760480270455077 :0.0441456207092827 -lands:0.349390961041457 auction,:0.2223708797973966 places:0.16776815167742137 auction:0.15088532910709818 :0.10958467837662692 -be:0.9030147121711507 bo:0.04523615584198637 not:0.03035694926867084 he:0.01238267456596333 :0.009009508152228765 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6119426847045852 in:0.18553460593924193 to:0.09523067341495094 have:0.057192280713435406 :0.05009975522778652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.28587243222804154 in:0.22433664018221974 by:0.21501836326627194 along:0.1438318112217105 :0.13094075310175618 -own,:0.26703315471989003 work,:0.2596225532415905 country,:0.16894448286611086 hands,:0.15761285782356163 :0.14678695134884706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -when:0.4094959401519512 because:0.19021050064532172 that:0.18895380560985042 as:0.13454559220494341 :0.07679416138793342 -it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 -dress:0.30862151126458043 mitted:0.2954633395833171 vice:0.14584627638387593 mission:0.1351630446399791 :0.11490582812824754 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -is:0.5421211923968171 was:0.24092767673874635 will:0.11199701256677701 has:0.061013035427011225 :0.04394108287064817 -as:0.3337295334239592 before:0.2633389899178076 since:0.15340886557321612 and:0.15275138344928227 :0.09677122763573487 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2529871282436301 that:0.21156712587752471 where:0.19348902362895934 which:0.17856621695257952 :0.16339050529730628 -man:0.4977413373040864 matter:0.13678798048397203 point:0.12914945235724917 result:0.11943237639890907 :0.11688885345578343 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -things:0.5957740162027131 are:0.11586857703149102 things,:0.09812429525369723 days:0.09721086454480796 :0.0930222469672907 -him:0.3223925330631257 as:0.22088905646106596 that:0.16511722026296827 out:0.15040453444056626 :0.1411966557722737 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5240297429532961 of:0.18162877716679152 were:0.11723341716472906 are:0.10170773351422296 :0.07540032920096029 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -he:0.42021557656775577 they:0.2590670081242196 I:0.12397825148276725 she:0.10344308164095942 :0.09329608218429794 -so:0.6221209166412879 made:0.12074682919136089 in:0.10669239723517018 too:0.08419622106610539 :0.06624363586607562 -to:0.25241339524498807 with:0.22125832349463304 in:0.19509480618091624 as:0.18656632378392524 :0.14466715129553734 -one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4254760163773637 in:0.31189408510478406 to:0.13647961632116876 for:0.0645088520077003 :0.06164143018898304 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.39043164600772645 will:0.25043656577917517 could:0.18120523254030918 can:0.09125430428938604 :0.0866722513834032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -what:0.4473989177718491 it:0.22568091836165294 that:0.1818245804502592 there:0.09551471663787309 :0.04958086677836568 -the:0.5164496305873743 give:0.17703629899421605 his:0.13686148502863402 profitable:0.10801061698963493 :0.06164196840014074 -him:0.4482809956281203 them:0.37243400887329053 me:0.09546820134805989 us:0.047401225610109 :0.03641556854042053 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -this:0.3009765509683675 it:0.27754748271765045 which:0.27122023261121997 what:0.08313647179907756 :0.06711926190368454 -men:0.24066925423380944 cases:0.22765215031150932 who:0.2092994680002208 people:0.16914922066598223 :0.15322990678847834 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -accompanied:0.3303164948284305 and:0.30118950466037975 owned:0.16980624427474364 but:0.12194370114807455 :0.07674405508837176 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.5485026373473462 likely:0.18413511455206064 difficult:0.11720566816743044 or:0.08261002859168438 :0.06754655134147855 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -there:0.34312767244550774 the:0.26841288029752186 it:0.19413184543358064 It:0.09851949614937887 :0.09580810567401084 -to:0.3796244877086039 likely:0.19921798693660084 probably:0.15295934739852207 easily:0.13797100793769765 :0.13022717001857553 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.43077356922959326 to:0.32746398575770636 of,:0.2056990900401697 on:0.02407502826974461 :0.01198832670278619 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8592844988907292 said:0.09807043899427947 any:0.018045507873336385 tbe:0.012840817799046212 :0.011758736442608733 -referred:0.3954508528179929 as:0.17684887779700406 calculated:0.1663892640125837 necessary:0.14004973826315037 :0.12126126710926896 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5754648559016744 of:0.22321440849196084 an:0.14302403214796286 and:0.03509044169906672 :0.02320626175933521 -to:0.36137129212848496 nearly:0.19442530107751385 they:0.16189616712267638 it:0.15012451745768396 :0.1321827222136408 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8608770504475965 in:0.04934868826058313 to:0.04368716485837286 ot:0.02380766385500434 :0.022279432578443135 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -served:0.8236590657082627 it:0.08863640568297448 not:0.04766426468533955 you:0.021199104348970224 :0.01884115957445298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -purpose:0.2612449559977458 line:0.2108198067483472 number:0.17976760714634546 District:0.17454917909784268 :0.17361845100971884 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.3648778284962686 way:0.23137758187227883 bridge:0.17330038216569588 course:0.126036574806351 :0.10440763265940578 -will:0.4575492189132489 only:0.2101766223301091 same:0.14156367638303857 first:0.10090145538857885 :0.08980902698502466 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4770618898383828 a:0.44733323317110474 no:0.03407437799618759 made:0.021998027571851136 :0.0195324714224737 -said:0.7484854902418119 such:0.09284729332961013 the:0.06374861178506562 a:0.05244156147264487 :0.04247704317086757 -of:0.7561153447766719 and:0.1114666910768161 in:0.04899828897054815 to:0.04876460862498709 :0.034655066550976756 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -month,:0.3340375267566223 check:0.22608460529292168 note:0.18774376330000223 balance:0.13071757697819236 :0.12141652767226142 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.2649108325076209 and:0.24727383975519895 is:0.17287782175839034 ed:0.16035862802253928 :0.15457887795625053 -as:0.858362948816005 for:0.04555294862043789 with:0.03332914703179324 to:0.033323998892432 :0.029430956639331863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -from:0.2233680814175031 for:0.20797748572057806 on:0.20409208845725227 to:0.1862412305017835 :0.17832111390288305 -people:0.5219797613206313 troops:0.18941836115622745 citizens:0.14353396668181828 delegates:0.07436831640398293 :0.07069959443734009 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -talk:0.32601663747008625 remarks:0.20461404288266724 wife:0.16513555527804902 arms:0.1632510841838166 :0.14098268018538088 -of:0.34483185056225407 and:0.2685245567650474 which:0.17458361613633744 that:0.12132742784371141 :0.09073254869264977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -age.:0.5322637453233636 man.:0.26292216998619033 home.:0.07909264034333509 friends.:0.06338386171188834 :0.06233758263522284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -political:0.28706733153368463 an:0.26113308153810716 commercial:0.17716503302629644 natural:0.1429883031752347 :0.13164625072667707 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.37058887957721764 are:0.26131768723449583 of:0.13904460636718785 in:0.12971183718398382 :0.09933698963711485 -war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 -is:0.6192185053989371 was:0.12939348708475887 a:0.12438814178439951 the:0.07983815742316344 :0.04716170830874119 -the:0.6709926395255541 a:0.11865409253856939 his:0.09708844174668027 this:0.05927618171199617 :0.05398864447720003 -hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 -shall:0.3051719949793432 may:0.23879169749402973 to:0.21857008506923853 will:0.17955769119376386 :0.05790853126362467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -campaign:0.49295881012610454 and:0.26738871101926354 school:0.1159135845169974 exhibition:0.0643987857346112 :0.05934010860302317 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3620904849731762 but:0.3292137098302803 that:0.11450503585032312 as:0.10730934253784784 :0.08688142680837249 -city:0.24490368549558117 year:0.2340892896365114 week:0.20097435895937937 act,:0.16616407652421766 :0.15386858938431036 -the:0.6908928175402342 its:0.10478602573750265 such:0.0898053195888012 a:0.0712350613699186 :0.043280775763543285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7807540768597027 his:0.0973142343406795 their:0.059944978971151024 whose:0.03322798141443253 :0.028758728414034415 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -into:0.3068272228173874 to:0.28813348154686663 through:0.14560641715780384 in:0.13320800977138642 :0.12622486870655575 -some:0.26932905298089355 all:0.2677429204729519 three:0.16183198498770074 their:0.16057293681761775 :0.1405231047408361 -year:0.28465516211493064 week:0.25329711873435595 night:0.19952503638571392 resort:0.16630641129705145 :0.09621627146794808 -that:0.7416706890752898 for:0.12701471760553154 and:0.05789583326984656 which:0.04216018171060564 :0.0312585783387264 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -com-:0.6535493200110425 com­:0.11207133257831417 com¬:0.10859277532917481 com:0.0776819925432746 :0.048104579538193935 -put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.361657747439878 we:0.20351586514109096 it:0.15869968502398935 he:0.15116531806676373 :0.1249613843282781 -tained:0.6026810239656281 tain:0.18811076967966303 ceived:0.14310556635945323 sent:0.03478063769509416 :0.0313220023001614 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.31603656037435146 given:0.2459283249739636 among:0.18665118585158066 about:0.13469841083881978 :0.11668551796128447 -of:0.7818844015646705 ot:0.09024305561160594 ol:0.0467480433465979 oi:0.04425712601979723 :0.03686737345732843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4607941530793505 was:0.2544165740098362 duly:0.10574329566632863 have:0.09486375367427974 :0.08418222357020498 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -line:0.8844842527348548 numbered:0.036496986512560024 of:0.03292308158124256 lino:0.02499555125889225 :0.021100127912450233 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.23532520669498327 is:0.226963362838455 was:0.20057528162963223 are:0.18386514933230236 :0.1532709995046271 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.2554823238686618 to:0.22835281241797692 has:0.22598281172701248 had:0.170888874967264 :0.11929317701908479 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made.:0.573223184664265 killed:0.14283704215083132 used.:0.12024937796265309 made:0.08193033158905877 :0.08176006363319167 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.3343217384958375 men:0.2496833050350655 and:0.1594743943080766 man,:0.12950267501287405 :0.12701788714814646 -one:0.7482421401320875 One:0.12044905881611664 of:0.055772009926640824 two:0.04263815636908381 :0.03289863475607102 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.7600326768573179 great:0.08026692866414625 total:0.06616354053901397 largo:0.04937565139963632 :0.04416120253988556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.38804841734740253 he:0.32065451008485285 she:0.15413013902314485 they:0.07355050311655405 :0.06361643042804568 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5097356386789135 call:0.26902906167634927 his:0.08559256657447473 their:0.07231703604270139 :0.06332569702756106 -is:0.3698278758590536 was:0.3377138974988842 being:0.11595208300527764 had:0.10388196493164331 :0.0726241787051413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -J:0.3000505371417024 loved:0.26081460145797797 .:0.22180637132730616 J.:0.12402216357526742 :0.09330632649774608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -amount:0.23951143615697304 city:0.22618009893654653 sum:0.19810441374529592 day:0.168806194936708 :0.16739785622447664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4133370370830977 by:0.21744534680901537 their:0.15113602662073686 the:0.1396046023017305 :0.07847698718541946 -of:0.5430897055206644 to:0.14480336735695815 that:0.1332026290222778 in:0.08959544651102666 :0.08930885158907305 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.2909244631216241 they:0.1963793415172654 are:0.1907297511483696 it:0.1792047268903612 :0.14276171732237963 -next:0.5254288569270817 present:0.14936502978238667 Republican:0.13405089975743328 Democratic:0.09967377401471542 :0.09148143951838288 -large:0.27535285358426004 well,:0.18945744038425205 quiet:0.1835209349355324 dull:0.17912635432965726 :0.17254241676629833 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.45171740096739815 an:0.37755229681387 this:0.11945792218523144 every:0.025795475720994762 :0.025476904312505624 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.814550473648136 bands:0.06490907972063087 land:0.048076927662381676 powers:0.043449763794428164 :0.02901375517442324 -wife,:0.3492983166232137 left:0.3128261745136246 own:0.11796355039309071 visit:0.11092049929494875 :0.10899145917512226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3506912638818566 in:0.18327297502351883 by:0.16964059864672362 him:0.1642420958412961 :0.13215306660660478 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.7974217629843988 to:0.09605233638264497 at:0.03956696050070711 with:0.03425528686478447 :0.03270365326746474 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -there:0.39157595308326404 it:0.3732539959991392 It:0.11217855404506379 he:0.07976820644150616 :0.04322329043102673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6165716031648899 to:0.1313037131523663 his:0.10463672003768991 at:0.0784153871763121 :0.06907257646874189 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day.:0.2760338906060199 year.:0.2704832799398822 time.:0.18688609170929474 man.:0.16504347955502885 :0.10155325818977438 -The:0.7804299000387547 A:0.11938358922880038 Tho:0.04293799514941278 In:0.03843751549473266 :0.018811000088299428 -been:0.7318836871910421 had:0.17023172653566557 not:0.03764747415664175 never:0.03055401193488485 :0.029683100181765742 -to:0.38582437851147466 by:0.31475055377624417 that:0.18523553926632036 of:0.05794776914526358 :0.05624175930069728 -only:0.36388944494205044 be:0.2994803671572123 to:0.11976851349838633 have:0.11006068090284714 :0.10680099349950367 -was:0.3259171060119184 are:0.21082483538057809 is:0.16262870653942704 who:0.15192823745480163 :0.14870111461327482 -lands:0.3278853704479492 debt:0.1977415540237862 and:0.18032072406496208 is:0.16751148604388985 :0.12654086541941265 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.41798464539858493 they:0.20885642910204338 would:0.1488651321703022 we:0.11958476957722908 :0.10470902375184048 -to:0.44245571710466636 life:0.1773004151169898 again,:0.1741561508739631 work:0.10428190827906766 :0.10180580862531294 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 -the:0.9086465101639978 tho:0.04303634989586336 re-:0.019523872841893747 tbe:0.016224864282899893 :0.012568402815345285 -in:0.5210554702584732 by:0.19789651025951532 for:0.1386885836333518 In:0.0734367446229146 :0.06892269122574508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -contained:0.37197073479464277 w:0.35899975962031566 of:0.1760905094656525 therein:0.05542260908770577 :0.03751638703168341 -for:0.7872978973094087 to:0.12694235119457017 upon:0.041364862449717425 with:0.02996840468163137 :0.014426484364672414 -as:0.3522241098607283 enough:0.2340887282597929 possible:0.165975947048226 possible,:0.15113300907232655 :0.09657820575892628 -the:0.872273471444081 tho:0.04597016984654526 this:0.035059538059531076 tbe:0.025856125721145377 :0.020840694928697463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.25540038874828075 committee:0.23902635444929504 county:0.18491217704462942 will:0.17376199906428152 :0.14689908069351312 -of:0.8507861800466352 to:0.08780539000998083 in:0.026200701805325802 that:0.023041607899303006 :0.012166120238755134 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -character.:0.4842976543673196 law.:0.18954073074207717 life.:0.16190345851099208 man.:0.08254797698026423 :0.08171017939934702 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.41906376441766263 the:0.2776783995439763 is:0.14123613026225368 found:0.08791693150516254 :0.0741047742709451 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -thought:0.3425889398092274 was:0.20202947952359218 is:0.1612371709224624 heard:0.16075981351947347 :0.13338459622524457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4370771611055871 In:0.17409187156698502 a:0.16520262323421953 to:0.12053508123787667 :0.1030932628553319 -than:0.4494914950080963 for:0.20218895721451038 to:0.17928061793956357 in:0.09090709709508854 :0.07813183274274124 -it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 -which:0.3618379045804045 it:0.2917132070440524 he:0.19876625757931216 that:0.0884290126610434 :0.05925361813518756 -back:0.3051940759597595 out:0.23292122771422832 up:0.19647076359294027 down:0.17677449938707057 :0.08863943334600126 -them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 -called:0.3414414128794704 levied:0.20166127668596015 placed:0.1908415113929987 made:0.15486433114891746 :0.11119146789265323 -and:0.31971834142527733 of:0.22647213527701668 in:0.21043839889200391 at:0.12521790346457756 :0.11815322094112443 -did:0.35977242227819156 could:0.19497428210619228 had:0.18584474656623226 was:0.1328737811341331 :0.12653476791525092 -candidate:0.39789734701993856 good:0.1680462666624389 vote:0.16550426145230196 week:0.16030475784400067 :0.10824736702131987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.28659584121937326 last:0.2734154106435396 in:0.17659929881733227 and:0.13522515128005919 :0.12816429803969578 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3874534483747249 to:0.19879621566410682 on:0.17440802911663345 at:0.15220287747568603 :0.08713942936884883 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6949088472564149 in:0.1067816024044339 thence:0.09459256971230294 of:0.07553754080082863 :0.028179439826019836 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3733985231646176 you:0.2223547555030495 do:0.1825568660728294 them:0.11098804639657894 :0.11070180886292467 -attention:0.36455401735013043 chance:0.19751565249779326 time:0.1803100230727356 over:0.13279484143770384 :0.12482546564163678 -and:0.30863471457544134 were:0.2957548122551564 are:0.15978979176728128 went:0.13821678262632853 :0.09760389877579238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -came:0.47729551504330153 work:0.14007967658588144 comes:0.138366247256225 stepped:0.12438904759732868 :0.11986951351726344 -not:0.40178782915227823 absolutely:0.33245547110465307 the:0.12634991226488287 deemed:0.07114440776759327 :0.06826237971059256 -it:0.26263058113356036 he:0.24259848942698556 they:0.2182873436471359 I:0.1434371387014605 :0.13304644709085772 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.2860889947377438 died:0.20198732294479005 know:0.19138602831756382 come:0.1821406229964756 :0.1383970310034266 -are:0.5180298895378314 were:0.30777652588860405 have:0.0766895547036073 had:0.06846201169707253 :0.0290420181728847 -him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -back:0.43994706214832074 down:0.24078065695668868 out:0.1300877160403912 up:0.12613258742250086 :0.06305197743209852 -people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 -City.:0.362626092679863 State:0.2468981676167094 Central:0.18923321021938946 and:0.10933725183589421 :0.09190527764814395 -not:0.8391929501038213 have:0.08226383723430321 be:0.06797566547019457 uot:0.005764291510730132 :0.004803255680950943 -being:0.27445623098471433 making:0.24285773327482932 having:0.21534753046763525 such:0.157938024465479 :0.10940048080734216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6993361104774326 these:0.14894630071566364 business:0.05697902997256045 his:0.04845034695459184 :0.04628821187975155 -up:0.321299283873162 in:0.19881974227136087 from:0.16709549095315782 into:0.16091088670449524 :0.15187459619782417 -and:0.3339865559647121 as:0.3044667440143706 him:0.17159399152121513 that:0.12172245086031083 :0.06823025763939129 -you:0.4966215195670267 we:0.17901707000630088 they:0.14989051635149517 I:0.09565549771195007 :0.07881539636322715 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8294412979207725 to:0.06409867697780347 in:0.05112219346704214 for:0.03465069073775421 :0.02068714089662782 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.34441583961242805 any:0.28318538444260766 and:0.18710238183876476 or:0.12222406132330879 :0.06307233278289073 -the:0.8699754714715136 his:0.0394145601092854 tho:0.03906066451440094 their:0.026550358745929384 :0.024998945158870776 -25:0.4086038721042453 11:0.3192828749893848 15:0.12548497799854025 12:0.08807912694766802 :0.05854914796016142 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 -in:0.25997785366595755 of:0.25101513952664234 at:0.21132952956457698 from:0.17390562311939756 :0.10377185412342566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5061531921303697 his:0.27222192670316275 my:0.106813326852356 her:0.0753637280966755 :0.039447826217436026 -the:0.7913753309558667 a:0.05662508864009364 their:0.05620055901313936 general:0.050251442916499356 :0.04554757847440083 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.34804186472640936 go:0.20610850614873374 stand:0.16163675459398383 give:0.15426853064738857 :0.1299443438834845 -important:0.2620077795049094 money:0.20643055559641854 effective:0.18644314495602088 rapidly:0.17713521709650543 :0.16798330284614582 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.7699721876892721 probably:0.09531138765437643 never:0.05891260454223101 soon:0.04569168140624439 :0.030112138707876126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6509104843331276 the:0.15085309651732856 seeking:0.10206903602572448 of:0.08106501172973365 :0.015102371394085781 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.8312015625258107 in:0.05720662192420894 and:0.042718213189327864 to:0.040632625924029844 :0.028240976436622673 -present:0.2274370119614554 city:0.21998990893585404 time:0.1951237379639586 fact:0.17996752638774977 :0.17748181475098232 -difference:0.8472635115634105 trouble:0.042634825178750314 difficulty:0.04108474441230906 way:0.034745677640108 :0.03427124120542216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.3895705326778518 be:0.27885975195313656 had:0.11139933881585459 have:0.11056660334843112 :0.10960377320472593 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.43429854641147814 a:0.18523651885306602 the:0.16679959295262992 to:0.11768159023779019 :0.09598375154503577 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.3531514082796797 that:0.22589903703437209 he:0.22247983202608812 it:0.11248333258804194 :0.08598639007181813 -is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 -the:0.7086252881799725 a:0.11071610925866708 and:0.07724807165242886 of:0.07097969285517518 :0.032430838053756454 -self:0.92402530753296 If:0.029181560257708194 if:0.02037118343662887 that:0.01347768903357695 :0.01294425973912604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.5622047386753992 me:0.24111027972830015 for:0.09035548765504713 them:0.058587766090631696 :0.04774172785062201 -the:0.6936721975226994 a:0.2218717561921074 our:0.03940150061832939 tho:0.024592030843471818 :0.020462514823392005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -should:0.2775289604118358 will:0.27256923146101425 may:0.15181065646025452 as:0.15155813018101558 :0.1465330214858799 -husband:0.6005812121396129 father:0.11595268724272575 life:0.1026964821021148 ;:0.09178282815007652 :0.08898679036547007 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only,:0.5960734014546111 laws,:0.15230145057164907 bill,:0.12402657002422582 system,:0.06593665372412497 :0.06166192422538912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -from:0.6253620663455255 in:0.30359144913802255 In:0.0491217481014089 to:0.01784367985023991 :0.004081056564803169 -in:0.32348946354878677 for:0.19802063209884213 that:0.19067472389985346 to:0.15712991300200313 :0.13068526745051456 -he:0.35077209560275535 it:0.2897302060987001 that:0.13613033967864405 who:0.11733210226865042 :0.10603525635125008 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -be-:0.6314905645512048 be­:0.16563522431821412 be¬:0.1476243709594305 no:0.03249204980571343 :0.022757790365437177 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.23053462550081175 system:0.21211225164956987 law:0.2112802413005584 we:0.17427108881546807 :0.17180179273359192 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -speaker:0.43396197558493615 amount:0.18445855744561154 question:0.1574801723841787 bill:0.12313611569830558 :0.10096317888696811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7127099717632573 said:0.1281262805075146 an:0.06794268297188152 his:0.05225901066221877 :0.03896205409512775 -of:0.4402986510292945 in:0.23948918467251906 by:0.1743425303564942 to:0.08546039348607902 :0.0604092404556132 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.7694501181225609 had:0.17802551942741168 lias:0.022926694067758824 not:0.01706932709204072 :0.012528341290228149 -top:0.31449750980253516 kind:0.2917040766737737 most:0.1678353853262914 payment:0.11323914317720958 :0.11272388502019012 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.36765397415854745 on:0.3014397873712555 into:0.18588249394408388 with:0.07418322280659638 :0.07084052171951676 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -first:0.5710680329695754 second:0.23911788768774936 other:0.07010359697089716 most:0.06536318415985581 :0.05434729821192228 -no:0.5765522645788039 the:0.18670544641451964 not:0.09634911867138672 much:0.09004095530961924 :0.05035221502567032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.9135965732151456 bo:0.04038414914975091 have:0.02763916592662461 not:0.011368825696420679 :0.0070112860120579695 -have:0.30133837886903536 say:0.19708079293145558 do:0.19444675616478221 were:0.15382746209480727 :0.15330660993991946 -as:0.26019308618404163 and:0.20547153244647295 when:0.18456268973262266 of:0.18367815805036022 :0.16609453358650256 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.80445027459801 said:0.07623214295211922 his:0.05209573867674754 their:0.03366698503387135 :0.033554858739251875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6066801479473346 for:0.1683919695261945 to:0.15020562607093735 by:0.03910990672530846 :0.03561234973022501 -is:0.5990030301559554 was:0.2178764183774884 Is:0.06417375623222307 time:0.06138562354639804 :0.057561171687935266 -of:0.9456009071158317 in:0.01726216547930199 ot:0.015385435226966723 and:0.010978858213955122 :0.010772633963944447 -on:0.3373436846264578 in:0.20996176853021717 and:0.18445713580099005 of:0.13942624195968295 :0.12881116908265183 -in:0.7620479809358401 In:0.11745358456721311 to:0.05504992277027544 iu:0.034576000993900166 :0.030872510732771287 -the:0.8032692796215412 an:0.08321519047131049 other:0.04116081918611622 every:0.03796224478133044 :0.034392465939701605 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6854102863118287 his:0.14406364367805088 their:0.08941988118986643 my:0.04305068658101224 :0.03805550223924172 -life.:0.32549241537482876 hand.:0.18675728055419627 case.:0.17111912307453905 own.:0.15972426591362807 :0.15690691508280785 -as:0.26655788832278765 ground:0.26403064435342244 and:0.18590625158859353 was:0.14501485922381335 :0.13849035651138297 -north:0.21356441425188846 same:0.2076575944729774 only:0.20720368184686808 south:0.20167922950265135 :0.16989507992561467 -a:0.5933300251554279 the:0.20975461245845922 no:0.11019020395725262 all:0.04919996558037619 :0.037525192848484205 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -have:0.2901259139919906 ought:0.22134695273976548 are:0.1784451164300058 want:0.17778334585619732 :0.13229867098204073 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -in:0.47982212734457325 to:0.15650008233477003 made:0.13570514707553263 at:0.12248307441550255 :0.10548956882962142 -a:0.753913486847982 the:0.1902289601305856 almost:0.038385783241151016 in:0.009273660318168115 :0.008198109462113136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pounds:0.35492382432743336 feet:0.2484037586658525 acres:0.200809785814882 miles:0.10731248307090323 :0.088550148120929 -him,:0.33871448821889 them,:0.22989236740702126 us,:0.17634228342281993 me,:0.13795511812601582 :0.11709574282525291 -tract:0.3605614584746068 dition:0.3564919352996782 test:0.10244064816639846 gress:0.09895556019776042 :0.08155039786155624 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -crops:0.2640749329311587 it:0.2381759943401063 crop:0.18402765888201222 and:0.18391541413702978 :0.129805999709693 -All:0.2806905220408695 In:0.19947119763151447 Among:0.19515220971535938 But:0.16550226777559446 :0.15918380283666206 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4276500938587074 about:0.1923048688075895 of:0.13076444621360206 in:0.12681930971234495 :0.12246128140775621 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -kept:0.3268654371592562 a:0.2742565133427376 keep:0.22850826766246632 be:0.09353360728592379 :0.07683617454961611 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -that:0.5586788706831035 and:0.18499292916084606 fact,:0.09567152582744505 which,:0.08370337362344471 :0.07695330070516081 -make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 -do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 -is:0.7152866585205638 in:0.100265916359918 was:0.09679247362296534 Is:0.0456580535205081 :0.041996897976044605 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -A:0.30147720447735304 I:0.27250644463739115 Smith:0.18217792645304412 and:0.12296112249678749 :0.12087730193542422 -make:0.4748962347395264 give:0.15660046887923373 take:0.13075111245983911 keep:0.12790266298044403 :0.10984952094095664 -so:0.24290855110434043 as:0.24134476060884788 that:0.21965913379654853 done.:0.17818138743384976 :0.11790616705641335 -fellow:0.28974843250674964 own:0.2553183023223875 business:0.24484339014787246 young:0.1349444417526289 :0.07514543327036154 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.43551960858718153 to:0.17778835414412764 in:0.16138858767202657 of:0.13834502909495952 :0.0869584205017047 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.3346038743098 who:0.20011395025966328 there:0.17792694396075798 they:0.15270061678764127 :0.1346546146821375 -to:0.8951681945897589 about:0.07284562883945121 interest:0.01310603987037973 in:0.009477558674004422 :0.009402578026405633 -first:0.40963727623886037 next:0.283540534774472 re-:0.19898241842527364 latest:0.0592370582790741 :0.04860271228231984 -and:0.2784214328288342 that:0.27445987315725023 way:0.19873003556260266 way,:0.13406996696721551 :0.1143186914840975 -make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 -a:0.3584949366363551 the:0.29696334871279667 this:0.19659224235220196 each:0.10979663021138641 :0.03815284208725992 -that:0.44289809809061914 and:0.21291470635639606 as:0.20226543926067608 it:0.09040726433782528 :0.05151449195448336 -slightest:0.3038654905194609 highest:0.30252877377809523 same:0.21785340348547702 great:0.10989164370736267 :0.06586068850960415 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pay:0.2795112296574538 cut:0.1990894678758511 carry:0.1919774355891628 take:0.17476407029437943 :0.1546577965831528 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Smith,:0.33790005875028745 Hill,:0.22058288560482384 Johnson,:0.16126845684247035 V.:0.1566708042138223 :0.12357779458859611 -own:0.8522971202530435 body,:0.055996179650436954 master:0.04003723966412843 public:0.03833544850204396 :0.013334011930347141 -men:0.26045697327893996 as:0.2471185074916363 things:0.20999835039915465 cases:0.16157232907578858 :0.12085383975448027 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2807180919327847 difference:0.20896045097003307 girl:0.1805567461166378 difficulty:0.17579490341105447 :0.15396980756949005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5318406884167498 in:0.142516304618198 and:0.12758339552945774 for:0.10293484253646577 :0.09512476889912874 -brick:0.6928639068717852 frame:0.09298589560530186 building:0.08754305339752746 window:0.06706203226463854 :0.05954511186074683 -will:0.23560493465926508 did,:0.20834128437541183 are,:0.19555850716485704 have,:0.18038086530424008 :0.180114408496226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -or:0.3322686648504462 of:0.21499845755615696 and:0.18225453868357 that:0.1778211400571542 :0.09265719885267254 -the:0.7272425838891815 their:0.11773522163347357 our:0.07961331780669685 tbe:0.041388574146640975 :0.03402030252400716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.329584933057405 miles:0.18385754768021143 feet:0.178514784305485 hours:0.16651158312569145 :0.14153115183120707 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4494883466564079 the:0.20026118971463547 -:0.12551108622793888 The:0.11812392759440657 :0.10661544980661117 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -and:0.8056509256682115 Smith:0.07434863633786994 Brown:0.059702317812360274 Sherman:0.030670618343018485 :0.029627501838539697 -do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 -described:0.26542229552760266 soon:0.23356576054097475 well:0.22983095917758292 so:0.15198020025961947 :0.11920078449422015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3198581071244783 to:0.2585381343117659 would:0.18901837158894777 an:0.14784723880080453 :0.08473814817400359 -the:0.8229981476768023 a:0.06446108573592291 this:0.04234920471425238 his:0.03852866401504697 :0.0316628978579752 -that:0.30132889896081133 in:0.256854791186334 and:0.15427558926215293 within:0.14867586318129788 :0.13886485740940396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4459223275701213 have:0.3614724186054513 see:0.10392579296737967 make:0.044396544950004044 :0.0442829159070437 -to:0.22259761886061358 on:0.21084103927777653 in:0.19838051684438665 abandoned:0.18568525868386596 :0.1824955663333574 -the:0.25352676208584823 Fourth:0.2023899249054429 said:0.19415044293665748 Second:0.1825714843772306 :0.16736138569482067 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -per:0.999516855692805 ner:0.00022410641850525545 par:0.0002173048016877703 r:2.733698085575843e-05 :1.4396106146178455e-05 -first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 -your:0.6351550897313049 the:0.15380816087777924 special:0.09436519195207724 particular:0.08061024598740162 :0.036061311451437074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.2799286549752752 vote:0.2496879954019323 and:0.17918765793619787 interest:0.17863637407253458 :0.11255931761406004 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.5072704262957127 country:0.13642118225942532 readers:0.13127867193150136 farmers:0.12128838796121266 :0.10374133155214812 -be:0.5188465049042377 see:0.15034405157361874 make:0.1307274224503514 get:0.1290654080081691 :0.0710166130636231 -in:0.3379945141202231 for:0.19492448776723723 to:0.1699323771467134 that:0.15513162129382507 :0.14201699967200124 -Supreme:0.3753559980359437 District:0.2824162881096287 Circuit:0.20826448698151553 County:0.09495285681086733 :0.0390103700620448 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -showing:0.3622180796836837 see:0.18998505304581056 to:0.18428456027055076 doing:0.1583921887699754 :0.10512011822997959 -be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 -the:0.7240683808148134 an:0.14214294771680483 his:0.07070404417643036 tho:0.03402439887488989 :0.029060228417061452 -and:0.3250032152530777 of:0.23414524025938505 says:0.17452695401637597 that:0.14430578523282697 :0.12201880523833426 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.516404929069087 had:0.325629890682928 were:0.07340755422929846 bad:0.04652832481558779 :0.03802930120309882 -of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 -plat:0.4448926061229033 map:0.26244088751848177 action:0.1562942508542125 oath:0.07538871699633069 :0.06098353850807164 -that:0.5485830702927903 himself:0.16238827722674035 as:0.10667058309604839 myself:0.1053935316445293 :0.07696453773989144 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7461107015448618 this:0.1332677979672725 our:0.05544934771496658 his:0.033653458901892266 :0.031518693871006725 -be-:0.6570923050371538 be­:0.15320032732742253 be¬:0.10240621543024024 to:0.04900106562827572 :0.03830008657690772 -ber:0.7742496436162783 bers:0.2237847351067622 number:0.00100452581118794 bar:0.0007638651478234889 :0.00019723031794781373 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -that:0.5310078477628835 when:0.19283821077708346 as:0.1008837412257204 then:0.09017868325486615 :0.08509151697944664 -to:0.3239569697508548 by:0.29940648098022077 that:0.15020041729506312 in:0.1498741857175021 :0.07656194625635915 -most:0.7263727492963554 very:0.13131241356965948 other:0.07927638978857701 more:0.04115779191711643 :0.02188065542829138 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.25893388146796625 of:0.24051987111417567 was:0.19654455491808984 up:0.1621517905871092 :0.14184990191265903 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2979145000757174 signed:0.21776331680776725 made:0.17185720513023478 Hill:0.1565926409581789 :0.15587233702810147 -that:0.3505237344129369 but:0.2081948260970865 as:0.18006459483884849 and:0.155357941213071 :0.10585890343805698 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -date:0.2702999049608445 consideration:0.26499195290359406 one:0.1817196279996263 command:0.15775323472605174 :0.1252352794098834 -man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.28529799085324653 is:0.23021077236137413 in:0.19191706321487628 on:0.16206412200561 :0.13051005156489318 -no:0.37702340059371303 the:0.19134821992967146 not:0.17615996890718338 much:0.14155823069796936 :0.1139101798714628 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -schools:0.3184944617030442 auction:0.1821645517065791 buildings:0.16944671619388996 health:0.16504782601865745 :0.16484644437782925 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.42305068345426283 no:0.33687528238444164 as:0.09381017397942704 an:0.0776025779966431 :0.06866128218522533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.569723662033542 his:0.17571880171874568 her:0.09783596182565325 my:0.08413283929858621 :0.07258873512347279 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.37345569977791593 had:0.2446805677991662 is:0.17447977219468705 did:0.11877863684609506 :0.08860532338213573 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -country.:0.22100319086403547 world.:0.20916559072023072 city.:0.20628367616284463 sale.:0.18712747359893 :0.1764200686539593 -by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 -feet:0.3692132581724253 miles:0.3179626822178752 inches:0.1882662335165328 years:0.07803788467393552 :0.046519941419231235 -they:0.27958656586269626 he:0.25384299478630346 it:0.1946469487993776 we:0.1734825111833929 :0.09844097936822982 -me:0.5044841556846251 him:0.33370970831990443 us:0.07303065327333576 them:0.058257963270454925 :0.03051751945167962 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.3845066503515108 was:0.27100183492523017 the:0.16711495133622523 is:0.11423428058686282 :0.06314228280017109 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.35583570345522825 river.:0.19978636286020535 Pacific:0.17709243565924354 river:0.1558031286578073 :0.1114823693675156 -time.:0.25476239044785387 other.:0.2198255417402867 kind.:0.19971225343481927 one.:0.16890937899252406 :0.1567904353845161 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.20860159770840722 not:0.2059250783897851 be:0.20451573498461967 continue:0.19287332038499716 :0.18808426853219068 -a:0.3409104680390761 be:0.2965517371757425 the:0.28079609474892114 this:0.05587671689482429 :0.025864983141435923 -of:0.2938416208024923 to:0.21346037311010016 in:0.18658027175605824 or:0.15727651925345323 :0.1488412150778959 -the:0.7934288317140348 cold:0.07034756603319073 of:0.05225658018031006 hot:0.04238266587832477 :0.04158435619413982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pany:0.39409244017999295 mittee:0.2960057180190273 mission:0.18601763721683573 fort:0.06310547320066431 :0.06077873138347973 -lowest:0.5130750488361673 highest:0.22125630964674278 most:0.18112507116076684 way:0.05675986066743451 :0.027783709688888693 -the:0.5188188905312128 he:0.19261660268635172 a:0.11398746511566984 they:0.09546437412180912 :0.07911266754495651 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.29177927513978336 one:0.27546538675388743 part:0.2162920835259711 member:0.12571916314886405 :0.09074409143149417 -officers:0.38424173117961946 service,:0.24907314085008864 stores:0.1322632389146348 service:0.12285670473280264 :0.11156518432285446 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cause:0.723374951173226 ing:0.10675996445690207 sides:0.0692292182958529 side:0.05501460125616094 :0.045621264817857936 -and:0.45770500502234696 but:0.1969845455084913 as:0.1329571640101116 for:0.10882456016883314 :0.1035287252902171 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8404544678833009 a:0.08562329669198626 tho:0.03620971317976699 open:0.021034257227136394 :0.01667826501780937 -and:0.6331684527125595 or:0.20382209905796067 purposes,:0.09051564070654504 conduct:0.036280996885450195 :0.03621281063748453 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.507998031108565 we:0.14250650103838994 not:0.1341894578713893 and:0.1213076623460352 :0.09399834763562043 -we:0.2960484006338947 they:0.21836254349555642 he:0.19632971940400593 it:0.15589105733702702 :0.13336827912951604 -time:0.3353305298851757 section:0.2777614457293267 country.:0.15088102463890846 city.:0.11971634175400614 :0.1163106579925829 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -about:0.4406776003787546 to:0.1884326274227257 worth:0.16191205230222266 only:0.1296100567767352 :0.07936766311956203 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -after:0.6526050318359782 above:0.16638789465805537 at:0.11080639867436042 in:0.043786521453611504 :0.026414153377994454 -favor:0.35702697395761607 front:0.20165834476590563 one:0.16276286979992774 order:0.1534271826066025 :0.12512462886994816 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3279954802415183 a:0.2067042981314706 in:0.15870720026700028 that:0.15809121279897434 :0.1485018085610364 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -m.:0.422979088281532 m:0.32429109574264076 No:0.09642909460573816 Township:0.08527654739899071 :0.07102417397109848 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -deal:0.5907301958349878 sense:0.12161705304350205 condition:0.11174991563087111 many:0.10918125879914733 :0.0667215766914917 -possible:0.4397306953103425 importance:0.16637218396618284 care:0.15988729291634804 opportunity:0.12504571965579314 :0.10896410815133342 -well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3025636435087844 in:0.21923970856932853 or:0.20674261210998035 In:0.14747423998410308 :0.12397979582780369 -ing.:0.4006234697315729 -:0.21575120554477134 cause:0.15633287648514743 come.:0.1271228317962259 :0.10016961644228227 -the:0.6497421777713981 that:0.12440007007983618 in:0.12159378930367304 to:0.0587227208133609 :0.04554124203173167 -ner:0.43692954379816085 kind,:0.19112022124420996 age:0.16155299730929273 aged:0.14087358186277663 :0.06952365578555988 -the:0.6600219009934777 a:0.13605747354857461 this:0.07016779237550069 tho:0.06806370831592322 :0.06568912476652385 -is:0.6750648539255654 was:0.17568420226758674 Is:0.12188447506576229 has:0.0150244878726034 :0.012341980868482157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.3739703295156943 parents:0.2227225622306154 couple:0.1894052194778647 mother:0.12127102810295633 :0.09263086067286927 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -New:0.9930325477287238 Now:0.006020950986399632 the:0.00047921781813481954 w:0.00026322297991021023 :0.00020406048683130064 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.4552826101530618 particular:0.2344029777209727 time,:0.11161778935894173 solemn:0.105285592392913 :0.09341103037411065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5060039010150793 a:0.1957820783992109 his:0.12280238353379012 their:0.09013305086865157 :0.08527858618326799 -and:0.5234424204551603 is:0.18217832778889004 or:0.1150262371985518 was:0.10779235047342928 :0.07156066408396859 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.37360507763595185 claimed:0.17200910516994722 shown:0.16858371270771805 done:0.1446405634121955 :0.14116154107418738 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.3355444662142457 man:0.31401876484823527 persons:0.166725062472748 person:0.14735899684459974 :0.03635270962017129 -is:0.5747935699452871 was:0.2679283347646157 Is:0.06902262592363115 are:0.06408382882519448 :0.024171640541271366 -it:0.41242901695740736 they:0.17585730991951226 there:0.17455857542856254 he:0.12467133922969874 :0.11248375846481914 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.23392129222355124 is:0.21241137730145046 as:0.20899150579383707 that:0.173181238442042 :0.17149458623911915 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mississippi:0.44379889169787734 Missouri:0.24907801643483377 Ohio:0.1649038537061228 Red:0.08243563058204173 :0.05978360757912442 -made:0.404005389264605 issued:0.20523496962753146 and:0.14201992141911463 therein:0.13930475298648703 :0.10943496670226173 -up:0.43685745472409304 ings:0.21351258633699627 one:0.16730967105624595 ing:0.12136704990975651 :0.06095323797290809 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -premises:0.31715201422214157 following:0.29548645441684135 said:0.1617493849010753 lands:0.11636069454626245 :0.10925145191367933 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5641716894875966 if:0.1889094431675402 then:0.10226941534948743 when:0.0859011328662594 :0.05874831912911664 -are:0.6072530053457007 were:0.1785378368842833 found:0.08665595010382832 have:0.06451589214487186 :0.06303731552131574 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8850417951376174 this:0.034800469815547144 tho:0.034419815403243334 an:0.03042111810773542 :0.015316801535856716 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.6836439214632912 small:0.1280144078593396 larger:0.09124720200114943 largo:0.05121616180413701 :0.04587830687208272 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -between:0.4323384107690971 in:0.27756303454481 of:0.21360811761842838 In:0.04278526265942455 :0.03370517440824001 -for:0.3373889683201654 now.:0.238512252952084 at:0.15245157936238052 more.:0.1439868658225734 :0.12766033354279666 -had:0.33473615102392174 have:0.31831823528266173 has:0.20501579138902462 was:0.07684172752627588 :0.06508809477811617 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.632712229109945 he:0.12260856479077353 It:0.1121441255743704 there:0.09739010622955688 :0.03514497429535426 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.2870855639095787 will:0.26459011906659174 we:0.20602979088894963 to:0.12291890618018092 :0.11937561995469909 -the:0.511919704069664 that:0.2059538019665788 said::0.14290579924887434 a:0.08912317816156558 :0.050097516553317116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.28829157371321046 could:0.24330719796753783 am:0.1900182008400474 do:0.1832299663455131 :0.09515306113369121 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.46326402866168215 for:0.29715200728795055 to:0.1644777827123122 in:0.05926353311905568 :0.01584264821899929 -time:0.4152049642886269 morning:0.17222225230157037 way:0.16130314305391502 that:0.12875168873128479 :0.12251795162460283 -the:0.3218792407959958 in:0.281793517087285 a:0.1639631241752654 with:0.14245555589761089 :0.08990856204384275 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.35564428011320853 you:0.2823643906516749 of:0.14771316780947547 their:0.1254030856931303 :0.08887507573251066 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.33533543553387113 very:0.31438467256727015 poor:0.17726912768778488 matters:0.12227769962168884 :0.05073306458938501 -said:0.9030187616283484 certain:0.044149523525492784 such:0.021530434993689646 the:0.020879650996970207 :0.010421628855499156 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 -homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8484941561492974 a:0.06479025476312983 tho:0.04026093149306147 this:0.0319357550071943 :0.014518902587317178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4510663700126516 this:0.20228559538849003 a:0.141297453430032 some:0.1137566149123703 :0.0915939662564562 -be:0.3787604846437459 appear:0.20382792778694628 put:0.14826221486361182 remain:0.13674382940724739 :0.1324055432984487 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -inches:0.44111527286328994 feet:0.22736571097979222 years:0.1407148069976078 bushels:0.10920937330819663 :0.08159483585111334 -of.:0.31779638634080065 people.:0.25831163239906063 world.:0.22979877170563062 again.:0.14971917721554354 :0.04437403233896472 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -and:0.30366531082325676 went:0.29741617379199553 was:0.14089115201447888 came:0.1334832822173921 :0.12454408115287671 -man:0.23512516938558284 place:0.21085574289245193 decree:0.19764450140774678 feeling:0.19180199201609613 :0.1645725942981222 -be:0.7568281660028164 not:0.1340077363281694 bo:0.05308263008237794 have:0.037055766457788214 :0.01902570112884808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8119620939475993 tho:0.08356683177149828 and:0.07157607993391624 from:0.018028221290110502 :0.014866773056875612 -view:0.3165970093886053 est:0.2951443626129211 course:0.20065538009610917 cept:0.09989432124750136 :0.0877089266548631 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -county:0.4001766070321706 the:0.23096983285273986 or:0.13013090513695008 and:0.12719475716435807 :0.1115278978137815 -to:0.3730117784757217 with:0.2147240328631041 in:0.16380831201982296 husband,:0.13401507780084695 :0.11444079884050422 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4354259832950366 and:0.1708073266792515 in:0.1515808816938241 to:0.14155877520643292 :0.10062703312545489 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -away:0.4103451747980654 him:0.22895662811066314 on:0.1405459620378121 off:0.13439354970286008 :0.08575868535059922 -not:0.4168319107690567 generally:0.3138807463449502 always:0.10611018140996233 also:0.08412786160624754 :0.07904929986978318 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.39627573883597433 and:0.19202110331310987 for:0.16615142334587704 from:0.12459675169754554 :0.12095498280749338 -He:0.6682286685197237 She:0.1783532587183732 One:0.08190436608085629 It:0.05148710191241744 :0.020026604768629424 -and:0.3957077993865005 as:0.22752962566834872 work:0.13519581299799138 mineral:0.1331356643663834 :0.10843109758077583 -willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3040321274360912 to:0.2693750724265698 on:0.19393481597777654 there,:0.12048064752902536 :0.11217733663053703 -of:0.3165718183878305 in:0.2644704337593209 to:0.1664236341839278 on:0.15209456132600313 :0.10043955234291771 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4320137457904714 their:0.3160957119704991 our:0.10656961821322566 his:0.08250159910241829 :0.0628193249233856 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -He:0.31652602060756635 But:0.2413688975838501 and:0.21015340341464872 A:0.13299112720578526 :0.09896055118814968 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.29869942294928425 and:0.2859369200605272 that:0.16025842120530046 with:0.14204536350074154 :0.1130598722841464 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5039129144849048 duly:0.14451275772222452 to:0.14400715121746166 a:0.11301911098544712 :0.09454806558996183 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7251030822530683 an:0.1300666731569362 his:0.054291831702859124 this:0.048999026829867155 :0.04153938605726938 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3291185977709797 he:0.2519298051538914 we:0.2292843080170801 it:0.13587953010732282 :0.05378775895072602 -in:0.3518130063467805 of:0.2149169812885283 all:0.21151515469388626 that:0.11209923957060895 :0.10965561810019607 -men:0.4136999573176498 and:0.194246003050795 went:0.1371749627506235 was:0.13276395775666636 :0.12211511912426543 -the:0.8552241503738888 tho:0.046891539627280994 a:0.0365453409287781 usual:0.03293785101738133 :0.028401118052670777 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -entire:0.2982403851746012 county:0.2521810236291745 American:0.17362693362330314 large:0.14474577627378127 :0.1312058812991398 -man:0.25845201388079686 named:0.20790139873198363 was:0.20162881757473963 vote:0.17389481464737522 :0.15812295516510466 -that:0.3130091207804673 he:0.2243717535562977 far:0.19969860183381666 often:0.1425194244997922 :0.12040109932962621 -been:0.8209404308318236 an:0.09250519368474464 not:0.047657852926791325 something:0.019691659369988488 :0.01920486318665184 -lease:0.23900657332408912 control:0.22957496695385343 handle:0.19566842428795495 operate:0.1712460611781749 :0.16450397425592764 -virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 -and:0.33189897067235863 Council:0.28993248629628426 Hall:0.240165043055565 is:0.07528879535814378 :0.06271470461764851 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -the:0.47572266429487226 nearly:0.16244760598251534 each:0.12624946219018904 about:0.11894595121538162 :0.11663431631704166 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thing:0.3120328154881009 reason:0.21051012047546733 one:0.1837354091836135 possible:0.1689062672694805 :0.12481538758333777 -are:0.34886677734993204 and:0.24005520190171892 as:0.18254910891995763 were:0.17126208673380008 :0.05726682509459128 -on:0.2690099046661418 largely:0.22798653033421837 something:0.21417813702716484 paid:0.15985226747211495 :0.1289731605003602 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.3835272506364659 men:0.27062729872872315 people:0.21086083089951896 woman:0.08022621259575838 :0.05475840713953359 -ready:0.3628517431405841 provided:0.2271772781686584 used:0.1925663127722895 stands:0.11242809975076085 :0.10497656616770715 -to:0.40224556207459383 who:0.32160120939773457 of:0.12395686712448664 will:0.085065530453475 :0.0671308309497098 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.4297023856687259 would:0.26221949868608224 may:0.14943892201617703 also:0.09891100070132727 :0.059728192927687586 -street:0.23973867003608645 of:0.23413798734329508 N.:0.20363982401351066 section:0.1645976635634413 :0.15788585504366656 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9124171787337586 tho:0.050218894282050175 tbe:0.014768134064873059 a:0.013042946109431401 :0.00955284680988679 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4224351940879293 was:0.1772211015655809 does:0.17105551134860458 would:0.1299145353044791 :0.09937365769340607 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.29779152044792967 the:0.25690857216033114 100:0.16542697333093123 six:0.14473551387813968 :0.13513742018266825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4064016830554282 into:0.22268313547745067 in:0.1549739333519344 against:0.10812889737133095 :0.10781235074385599 -hereby:0.4786773952931736 being:0.25854672958261754 not:0.13974316645808652 now:0.06485206255903002 :0.05818064610709234 -and:0.2747836865564974 as:0.27174219017300894 life:0.2215753310729137 age:0.1488450025718443 :0.08305378962573566 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.5212847390129304 out:0.15294187241192392 composed:0.1327814462586652 made:0.11838493255350334 :0.07460700976297718 -direct:0.22392953928653347 report:0.20953339379791838 point:0.20154545239934102 visit:0.19293253809968133 :0.1720590764165257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.4036412792211286 were:0.17865386168547043 came:0.1708410613719349 come:0.1555527391581591 :0.09131105856330711 -the:0.7566067338621943 a:0.10121881831881586 his:0.05533589699442518 their:0.04428716132770496 :0.042551389496859764 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.6074710955064027 is:0.15071925868082006 who:0.14012186360957446 had:0.06895754979925972 :0.032730232403943044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -name:0.5944091476983021 life:0.1319818244064209 duty:0.09762295002306193 death:0.09102145421711444 :0.0849646236551007 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.3882556477059495 all:0.17624135766700755 Deeds:0.16088807782174416 land:0.15702328380727673 :0.11759163299802199 -the:0.32565356809213253 his:0.23022003091261883 in:0.21742917770331746 a:0.14624415156940263 :0.08045307172252861 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -corporation,:0.30949575359345466 late:0.18869792347564232 boy.:0.17420343827998738 man:0.16930979770121812 :0.15829308694969757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -it.:0.37101738964456066 them.:0.22416805906337475 you.:0.1508852716379464 sale.:0.14324569886216212 :0.11068358079195607 -distance:0.4028360878730149 girl:0.1777999938630454 ones:0.14905998460505757 attention:0.1382149216562056 :0.13208901200267656 -great:0.27457239613887097 wonderful:0.2557206840866798 valuable:0.21344149649859348 certain:0.1321218479857673 :0.12414357529008842 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -a:0.5372542926713467 and:0.16437782716858915 the:0.11387935539293303 to:0.10014799998463055 :0.08434052478250056 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.3681336043859945 wet:0.180114720490851 long,:0.17253480119951967 weak:0.1443802896749316 :0.1348365842487032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.28336941342445204 I:0.255117620681886 we:0.18254048818856258 they:0.1792390955767895 :0.09973338212831007 -to:0.48625277615692586 in:0.17881569377688697 for:0.1343132910991075 until:0.1089593963737637 :0.09165884259331597 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.7036411772237295 as:0.09259317187106929 body,:0.07027350589332108 peace,:0.06754382138255974 :0.06594832362932021 -he:0.5122754784646757 she:0.1637857895618838 they:0.14558338262085468 I:0.10166048056132293 :0.07669486879126301 -did:0.28829157371321046 could:0.24330719796753783 am:0.1900182008400474 do:0.1832299663455131 :0.09515306113369121 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.4562987977426752 what:0.193650905047024 if:0.17575295771313634 how:0.12907900663528832 :0.045218332861876334 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -government.:0.38388424955990613 law.:0.2239882867125796 duty.:0.13618949954972306 power.:0.13274898443478478 :0.12318897974300635 -of:0.9060596404359029 by:0.0453149527106415 to:0.016729052266158773 and:0.016265525781433393 :0.015630828805863365 -the:0.6810422162016305 a:0.1390878882744646 and:0.09660368632138545 in:0.04706698123629526 :0.03619922796622415 -excellent:0.5158052828873824 eminent:0.14762762316583564 absolute:0.1390009678783597 ample:0.10773750867379221 :0.08982861739463005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 -have:0.46497155214865077 had:0.15730394829102431 who:0.13827465761817284 will:0.1271663298427595 :0.11228351209939277 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.3339015767732208 it:0.24856711454033095 which:0.2045649534643611 and:0.11531314221362432 :0.09765321300846286 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -i:0.44712279817786454 in-:0.1613958617141656 l:0.16137830864027355 1:0.12097325772635376 :0.10912977374134253 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.34374556665565564 I:0.2468232333880304 You:0.17430955273150875 it:0.12741608267202992 :0.10770556455277523 -a:0.45993752017418604 the:0.29376015914599224 such:0.09570913772887628 be:0.09554592020034829 :0.055047262750597174 -is:0.3977442968515334 was:0.2027620582011754 to:0.16900208136486805 in:0.1386371658455847 :0.09185439773683832 -would:0.29257180563090646 to:0.22168315003045044 shall:0.19846498927458797 will:0.18478705032811057 :0.10249300473594461 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.46713385224818454 miles:0.1439419469270302 feet:0.13863456670478952 millions:0.13190833369247829 :0.11838130042751756 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.39177571257834876 so:0.280154490399486 very:0.14628463735258038 too:0.09833712974090467 :0.08344802992868044 -the:0.9215329279956558 tho:0.031686499922291375 its:0.023391566388098174 tbe:0.016567315888987095 :0.006821689804967466 -he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.5934885995069547 lady:0.14939467677343587 woman:0.1454403856587628 girl:0.056894576609769536 :0.054781761451076945 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.30868328858735894 be:0.17916151544747147 me,:0.17681553280612206 him,:0.1737521460638493 :0.16158751709519834 -of:0.8253163916788852 in:0.049328015734623684 for:0.04870116143751956 and:0.043996771099779175 :0.03265766004919238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.24207259443030926 decided:0.21139199027951106 certainly:0.20802500357204654 probably:0.2032048747021178 :0.13530553701601536 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.32979583969910414 pointed:0.23236384633791402 came:0.16665483240192394 was:0.16108270190724816 :0.11010277965380974 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -I:0.2991268178420035 investigation:0.2761700369923984 oil:0.1889617973154222 explanation:0.15361992921197068 :0.08212141863820516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5503823718938 are:0.252589064636103 and:0.07343029965511987 has:0.07264749426337458 :0.050950769551602375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hand:0.2985044084515125 earth:0.19024965631422006 it,:0.18691055166528167 board:0.17297951477659307 :0.15135586879239268 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5066438707344467 under:0.29202121071443626 and:0.08973833649677929 shall:0.05646566259732163 :0.05513091945701608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.38161701791368025 by:0.24091225628745613 up:0.15622177716778538 with:0.1294754189070057 :0.09177352972407271 -king:0.5337453349471781 ture:0.4123507856812327 ;:0.020175944535631832 ple:0.018222206606861555 :0.015505728229095647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.36079498822183836 he:0.2389155899372102 they:0.1922849404340769 it:0.1119783877032484 :0.09602609370362607 -is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 -and:0.9115256514883142 of:0.050166158685566876 in:0.014403137401924032 Smith,:0.012768965875152426 :0.01113608654904249 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.9168577251581581 nor:0.026723245704426687 than:0.024780192211006396 un-:0.017373965541408853 :0.014264871385000022 -to:0.30177038590628075 more:0.3014862579754869 hard:0.1562224597589407 extra:0.12866746909251037 :0.11185342726678137 -in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.3220842928339163 country,:0.190526329323428 house:0.16886871133218292 country:0.16166585438199063 :0.1568548121284822 -in:0.2722049117534322 if:0.22092800878777075 nor:0.18313984301291023 as:0.16593276735866397 :0.15779446908722286 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -favor:0.24629659869273499 attendance:0.2161998156795393 charge:0.195898218747123 effect:0.17989219729043224 :0.16171316959017046 -the:0.616814299841363 old:0.11639650309925365 a:0.0999601519288818 them,:0.08696812686685901 :0.07986091826364244 -and:0.26206756840048595 that:0.23643390191733893 because:0.21222940029262088 as:0.15842148008539386 :0.13084764930416032 -the:0.8150576179014313 of:0.06881478549705519 in:0.04617736360283236 this:0.03754587925610887 :0.032404353742572285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.33987505168382603 such:0.20429190044323775 in:0.1597975838805144 was:0.15804302107453402 :0.1379924429178877 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4922427631381249 to:0.1691675879649133 in:0.16821409019064926 on:0.09111284606805298 :0.07926271263825967 -make:0.34322138585111767 keep:0.19350419037159775 be:0.1667581700847247 give:0.153157434332911 :0.14335881935964903 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6508556366490896 owned:0.10578685179138829 or:0.10507530131221088 around:0.08291733588224146 :0.0553648743650696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -executive:0.4530036723685066 great:0.20339010758142942 business:0.1484980665106981 natural:0.10523092339103732 :0.08987723014832859 -pany:0.36927774102157024 mittee:0.3062477503561977 mission:0.11071269506000124 ing:0.10730928517314851 :0.10645252838908234 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -just:0.42554280747267337 not:0.32054223007910737 Just:0.11951579770069178 been:0.08153781425990281 :0.05286135048762478 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -friend:0.5048948963497879 is,:0.1751045520030225 cities,:0.13469469369365794 loss:0.10169067360659886 :0.08361518434693273 -people:0.29553566225384426 we:0.2458653893210707 I:0.2278757567447669 men:0.13871003902994997 :0.09201315265036834 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -there:0.3204188440631065 and:0.2301869118614876 what:0.15588587153225603 it:0.15251823966861688 :0.14099013287453296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.4206349697951371 down:0.1702808638051853 up,:0.16819743838516404 away,:0.12685902972205484 :0.11402769829245879 -able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -able:0.31358081660741727 and:0.21485736951572101 ing:0.1848058250428197 ed:0.1661267447423215 :0.12062924409172032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4287719816426461 as:0.20375387484981192 to:0.154568228316988 is:0.1341653918595252 :0.0787405233310287 -all:0.4739392168507537 that:0.2562059616196249 which:0.12320501518463044 said:0.07820061116942735 :0.06844919517556364 -the:0.4250873674365557 this:0.2290183898571274 his:0.14697275026340853 their:0.12990483008578604 :0.0690166623571225 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7744322187826811 a:0.11772816998459246 our:0.05034620038129276 tho:0.03422399566799266 :0.023269415183440802 -majority:0.3833371528292724 total:0.20175067708600938 single:0.14625949101503935 large:0.1360910771194194 :0.13256160195025946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -me:0.23416810729494922 him:0.2058545786818288 and:0.1926643106125615 up:0.18890069582510963 :0.17841230758555082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.3193549281489067 is:0.2777829848774328 came:0.1688676445931626 broke:0.13028723871758957 :0.1037072036629083 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.9787586929768431 of:0.018968605597361524 and:0.0011752612157272656 oi:0.0006642289707696744 :0.0004332112392984226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7883265422417264 with:0.06364027408167684 an:0.0530421447492246 and:0.05078162083882684 :0.04420941808854541 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.2743998783904892 in:0.2288366774444578 on:0.21849446996600372 from:0.15206588963789106 :0.12620308456115825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -can:0.40319925172028115 will:0.20249244180909443 could:0.16999100616134327 would:0.16129329917702043 :0.06302400113226063 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4526687311570797 as:0.16924652504673768 in:0.14855766553011485 is:0.11497618397613928 :0.11455089428992843 -have:0.3974554208989962 was:0.2979920228011935 had:0.27796437896874343 be:0.015022018466849958 :0.011566158864216806 -time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 -it:0.2990328777825526 to:0.264662811308389 us:0.23680899183191925 will:0.10508410426292611 :0.09441121481421309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7850468648661079 by:0.0870418030876829 ol:0.07111531807526598 oi:0.033305237743582516 :0.0234907762273607 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -several:0.4243219099785659 for:0.2863101117791479 four:0.1689173173071885 and:0.06314148743321485 :0.05730917350188288 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -due:0.35652308670036387 thereon:0.3062873319855571 and:0.1351953346868698 according:0.10386660567949454 :0.09812764094771467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -very:0.33196784676414615 most:0.2577501770700018 small:0.14697532011826117 certain:0.13566682310943912 :0.1276398329381517 -the:0.9058073393312376 tho:0.04326409628296924 tbe:0.021376635509181147 our:0.01603894412907241 :0.013512984747539576 -after:0.46385590425883716 default:0.18068015833477366 without:0.12964697211499715 not:0.12164092017080429 :0.10417604512058792 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.5481440258110865 just:0.20414553041210226 a:0.09863069672441678 being:0.08117104602525471 :0.0679087010271397 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 -that:0.4664866673823332 which:0.2657310285970014 or:0.11814086768458387 and:0.07829193051446069 :0.07134950582162089 -business:0.2504127203674375 process:0.21537715481600034 person:0.20700254384686528 man:0.18943078975430647 :0.13777679121539055 -be:0.8670592681093132 the:0.06143048618068625 bo:0.04365036558195885 have:0.020558861819450273 :0.007301018308591422 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.4345711205605893 Senator:0.23763064265631761 Mrs.:0.16476157117953277 the:0.09670949432481644 :0.066327171278744 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7653115426572044 a:0.1649339562226255 tho:0.03876368244610588 tbe:0.015966312448231948 :0.01502450622583237 -so:0.38434527729342743 been:0.1917292278246543 gone:0.16737246789631685 not:0.14598195584966348 :0.11057107113593799 -a:0.45693446488793715 the:0.4218368351086838 his:0.06474302509249918 so:0.029648234393456423 :0.02683744051742338 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mind:0.2992418590095368 opinion:0.29045680855818284 belief:0.1962613694348331 way:0.1304606888103838 :0.0835792741870633 -was:0.41129757222919316 is:0.28791428546609354 and:0.13566328897654004 has:0.088185720943553 :0.07693913238462037 -would:0.5238413505630494 will:0.16049233794060636 may:0.11609740330123607 might:0.10224749104993114 :0.09732141714517711 -whole:0.39851455537090774 principal:0.2757790109038661 said:0.19678835235622213 further:0.06589885095072343 :0.06301923041828067 -are:0.29244454637930073 was:0.24291121377054986 were:0.17647461323205593 is:0.14929738335899256 :0.13887224325910089 -that:0.5005155831931414 it:0.2683852913613634 he:0.09741219357177444 It:0.06828066188466853 :0.06540626998905213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7763859983324731 in:0.12570219014277187 thus:0.05019291790713174 for:0.025020850502043595 :0.022698043115579474 -ten:0.2882127826118327 the:0.24271201104469747 five:0.2116204450815345 fifteen:0.14702062258266166 :0.1104341386792737 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.7138456887314236 This:0.18696793816939025 A:0.05436684256036876 Tho:0.02843095325416587 :0.016388577284651356 -a:0.4075921561013095 the:0.3963091793266427 my:0.09453064005536216 little:0.05103665050912576 :0.05053137400755985 -and:0.32198705895006446 that:0.27866861640802204 all:0.16636882049869878 for:0.14819710209646772 :0.08477840204674704 -says:0.304397649372872 stated:0.17990656545138953 was:0.17288636242906316 said:0.1726370866615515 :0.17017233608512378 -all:0.2735952418931577 that:0.27231582965676926 which:0.2298014817103934 leaving:0.12406684007474124 :0.10022060666493834 -provided:0.3594626449808402 shown:0.3233657043234826 required:0.11571991894097551 prescribed:0.10810915442390684 :0.09334257733079494 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.33080082024792656 two:0.2938346577774707 one:0.17735154636294403 three:0.12303141353752144 :0.07498156207413739 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.38824934718837745 and:0.33045909444162436 wheat:0.14917963849898908 season:0.06625473682009278 :0.06585718305091628 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.36013232722177835 but:0.22169802904453562 that:0.19459081888776195 for:0.12383257280039353 :0.09974625204553048 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -remedy:0.40868676636697354 qualities:0.2056446880695492 results:0.14554681110898104 work:0.1315568067294737 :0.10856492772502262 -that:0.3087650391887661 securing:0.20456076326268435 making:0.19838428241518882 all:0.1927704886838413 :0.09551942644951941 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.8723401364009922 our:0.06023167999339589 tho:0.032978724042140285 tbe:0.019114235348121383 :0.015335224215350185 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3312252810696853 in:0.2859389250175949 from:0.1448983501541111 on:0.12422035913208748 :0.11371708462652119 -capable:0.25647061821433986 many:0.2193758653449946 all:0.18563816784770718 some:0.1728729849950285 :0.16564236359792975 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -deem:0.26749105931578615 turn:0.2562767357019406 ceived:0.20674902595770542 turned:0.1649951609860009 :0.10448801803856687 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -war.:0.4677005725521972 hour.:0.21570029105844102 years.:0.11215776280830579 day.:0.10708587819359702 :0.09735549538745897 -the:0.9325863034625386 tho:0.04037391683132624 tbe:0.015248135457127322 two:0.007255110801250146 :0.0045365334477575426 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3690833669419034 them.:0.21475314725243275 life.:0.20317220737447972 age.:0.10922726239659418 :0.10376401603458997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4802448760911503 by:0.24066444725642797 in:0.1001244462063414 after:0.0947867649782564 :0.08417946546782402 -the:0.8298729445161634 its:0.051558244097085974 that:0.04819408568823791 other:0.043124431576812526 :0.02725029412170016 -mind:0.2992418590095368 opinion:0.29045680855818284 belief:0.1962613694348331 way:0.1304606888103838 :0.0835792741870633 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -told:0.4931129828373709 gave:0.22489600995242356 asked:0.11600345577290824 did:0.0859965949215083 :0.07999095651578896 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.4601607484336419 men:0.22893870118682025 and:0.12371392921101428 lady:0.0946988219937487 :0.09248779917477493 -that:0.3696251319778758 of:0.27444165844701035 in:0.14971775209065358 to:0.13978451281823343 :0.0664309446662269 -been:0.6696954370370573 made:0.10823892216365727 had:0.07808331738989421 not:0.07378010246583468 :0.07020222094355666 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.45255007491554683 into:0.20994040893857785 on:0.1952575329884051 through:0.07398488710955141 :0.06826709604791875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -all:0.43082410254839026 are:0.17748098148447924 in:0.13525789841164876 to:0.13263741790364306 :0.12379959965183868 -give:0.3479250840271788 make:0.2382698212705376 see:0.1796764712115269 keep:0.12664973131541768 :0.10747889217533889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.2972051903670318 is:0.27425613375097735 are:0.22035854001137292 were:0.11640370214739289 :0.09177643372322508 -in:0.8448808508079906 In:0.09656431237509025 at:0.024462970431822877 iu:0.018258558926651517 :0.0158333074584448 -has:0.445422844351229 had:0.23255057703397763 who:0.15740466596022923 never:0.09866447604169616 :0.06595743661286793 -he:0.3012959577507515 and:0.2518479353046702 I:0.20964109046592305 but:0.14781066453743352 :0.08940435194122168 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3805768920745337 this:0.2122707542009932 any:0.17272712511090424 an:0.125829420845044 :0.10859580776852491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8430862203821585 that:0.1317250351646069 in:0.010321713306237169 and:0.0076294442029649955 :0.007237586944032387 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made.:0.42387206232626556 used.:0.19143758053876725 not.:0.14258557809292852 dead.:0.12707334837304973 :0.115031430668989 -be:0.8200572147766793 have:0.12345056949666738 bo:0.045621077382893054 stand:0.006851453857742672 :0.0040196844860175985 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2794725890984442 of:0.2434236557895909 in:0.20643598518109718 to:0.1879091612861326 :0.08275860864473521 -kinds:0.39248399643859305 parts:0.36771283114669484 day:0.09922703556036784 classes:0.07700250880863103 :0.0635736280457133 -the:0.48840340492511364 a:0.27892511072556264 his:0.1065373301752389 their:0.06739657363730975 :0.058737580536775115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.6644861639997852 Every:0.13966321625531894 A:0.1233352391740218 One:0.038521206990646324 :0.033994173580227494 -amount:0.26687394479667553 sum:0.21640829342601706 state:0.17653853855737936 result:0.17580715931694996 :0.16437206390297807 -still:0.6114768302201871 it:0.11413328461919223 is:0.09430214597904057 are:0.0926372443908697 :0.08745049479071042 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 -first:0.2650552147487358 child:0.2347538597716923 native:0.1743558129782585 children:0.16392444284905763 :0.16191066965225573 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6926157789530475 an:0.14697722068419414 some:0.08971654213252483 what:0.039049488452044395 :0.031640969778189164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.697315711624364 the:0.12369596983682028 sufficient:0.11736397421511639 no:0.03848642674894594 :0.02313791757475332 -it:0.3647512111505145 the:0.30639701687283905 is:0.20712790966102765 if:0.062017591343466356 :0.059706270972152406 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.34251913010610857 care:0.24158004733188898 place:0.19830123173552577 out:0.172417368807137 :0.04518222201933963 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -war:0.3398084719850216 charges:0.18805456304076865 protection:0.16305474961856875 case:0.16254304186971286 :0.14653917348592813 -Howard:0.5766836352087291 H:0.1308580241535768 A.:0.1183579105487592 He:0.09190137435239294 :0.08219905573654208 -to:0.9643909014312689 that:0.01203020419922955 not:0.010609697728445625 I:0.007571708324278994 :0.005397488316776825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3733796716657848 they:0.23909933252174312 he:0.19259235488860807 we:0.11508979199959882 :0.07983884892426511 -him,:0.32768115840867806 me,:0.220634152139299 her,:0.15218541331184546 it,:0.15201077417206177 :0.14748850196811553 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.3942146411794743 her:0.26020207927661176 his:0.22351891716694455 the:0.06150860592353444 :0.060555756453435035 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.7606775791890327 had:0.13379192650195287 time:0.04945093638251909 have:0.03801925868183542 :0.01806029924465997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.6447151762991752 that:0.24426285845072618 surprised:0.04493557401612863 even:0.0426989703749884 :0.02338742085898166 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -one:0.3184892846720086 the:0.20090286698296123 any:0.16557567064980877 sale:0.1601380808331288 :0.15489409686209246 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out:0.49804133713937254 up:0.16878270749333088 away:0.13877862874357114 over:0.10756183573477948 :0.08683549088894596 -him.:0.3605351165914421 them.:0.20360697902131966 it.:0.18378244957964623 me.:0.12711756266502403 :0.12495789214256806 -same:0.3282256444744516 best:0.2432056528853636 general:0.1566705393799096 present:0.1481777497119307 :0.12372041354834439 -had:0.5593106009745954 already:0.1389765576672962 not:0.11992162444731279 never:0.11406889059510296 :0.06772232631569278 -the:0.5840499047110982 a:0.2063487504999577 this:0.15084836577893332 no:0.0375469980626088 :0.02120598094740194 -well:0.5280947698498617 soon:0.2150789012203518 far:0.1472554485653053 much:0.07149621962684118 :0.03807466073764015 -to:0.79467098674076 thus:0.0747693438633591 will:0.06902529959545432 can:0.033462272112557735 :0.028072097687868947 -of:0.46399399631467425 to:0.19650673413514916 and:0.14180618552321894 the:0.10804315225895689 :0.08964993176800065 -years:0.32639278964819096 days:0.2912042204043016 times:0.1579753158342688 o'clock:0.13266596585301135 :0.09176170826022714 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.33235108018335835 do:0.1948831396202358 be:0.18250266701958048 know:0.14592616698892186 :0.14433694618790346 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.5447839161243819 is:0.3076096380891112 be:0.06883937633848733 has:0.0516379031313938 :0.02712916631662566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.7689310562483691 for:0.07145016164177874 you:0.0607201158268421 it:0.053022813006830434 :0.04587585327617968 -the:0.6281999274911008 a:0.15983439142729616 any:0.10044631695296015 such:0.05935240048811741 :0.05216696364052557 -free:0.24859791767391443 people:0.22214004514879504 road:0.19640848324651725 water:0.1670105641827968 :0.16584298974797645 -be:0.7302686817174942 have:0.21686249799846022 bo:0.033366688874308985 he:0.010168490667580927 :0.00933364074215575 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ai:0.30942749349080506 -:0.30329604867242693 following:0.16485773541646667 same:0.11367105972185722 :0.10874766269844403 -crease:0.8459676256893307 to:0.0800052141732585 duced:0.035543103468183006 come.:0.02824807250246531 :0.01023598416676255 -it:0.378801112451045 that:0.18422353285494042 not:0.1599827915294449 almost:0.1531160549474982 :0.12387650821707161 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 -it:0.31667046037548513 I:0.2316927071259943 we:0.15950427777120824 he:0.1485491049376234 :0.1435834497896889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3144810881421146 ago:0.2602985197133065 later:0.22277627235133507 have:0.10838187517525938 :0.09406224461798456 -give:0.28443005174860586 make:0.2632146722725124 keep:0.24123312628563703 take:0.10844734650378057 :0.10267480318946419 -kinds:0.39248399643859305 parts:0.36771283114669484 day:0.09922703556036784 classes:0.07700250880863103 :0.0635736280457133 -will:0.39807684118118836 is:0.23828946413170146 would:0.23424314236895957 was:0.10001543681078234 :0.029375115507368283 -house:0.4237015411633198 house,:0.21706561256495385 together:0.12321216923021794 and:0.12018663023757246 :0.11583404680393582 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.34158231410347106 said:0.24391936336744652 order:0.24215339174540285 all:0.11386963032839055 :0.05847530045528903 -special:0.4533753027679138 newspaper:0.3275555497736714 few:0.09240325174169171 Washington:0.07371549233653177 :0.05295040338019124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -reason:0.2650651340342022 and:0.21681196582147647 thing:0.20000323630736758 things:0.17781643756729187 :0.14030322626966207 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -things:0.29945976948841024 men:0.268451163023958 facts:0.16062471854545127 people:0.1554800788960831 :0.11598427004609733 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -hereby:0.9312943511466402 not:0.0280527806057066 being:0.02347091239140887 now:0.009883505747921203 :0.007298450108323126 -the:0.6796268792098978 such:0.10798306713701042 their:0.0893021512615737 several:0.08114929474101584 :0.041938607650502106 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.6851167965833106 of:0.10245855206430016 in:0.08301265649069876 on:0.07698296390997439 :0.05242903095171605 -are:0.37459965584063504 were:0.2688063611605144 will:0.19625856676657405 have:0.10179917454699235 :0.05853624168528424 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9603371801559304 or:0.019617541540053983 in:0.006957009123071206 on:0.006722203425097116 :0.006366065755847424 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ceived:0.48530204220776857 turn:0.15840050724998533 turned:0.12809673216431597 cover:0.11810583980214286 :0.11009487857578736 -it.:0.36020369088479903 them.:0.17468275895394075 Washington.:0.16265750900694595 life.:0.15163114466097563 :0.1508248964933386 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5103698755541443 a:0.2032087034268071 stood:0.1349706594624713 become:0.09957432808041246 :0.051876433476165086 -are:0.618777514072725 were:0.18815019172112923 is:0.07543043285299526 of:0.06194993325203588 :0.05569192810111463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.22800988639949962 go:0.21948833637571055 continue:0.20887578828962483 be:0.17519518221252411 :0.168430806722641 -for:0.3840152138996437 of:0.2719775226206847 in:0.13246762109079685 on:0.11634051051807247 :0.09519913187080216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8621746708781858 and:0.056054469160492316 they:0.03592914581430114 could:0.02567056875709887 :0.020171145389921957 -was:0.5858385782337926 who:0.21347000495920385 man:0.08178879507848331 person:0.07406913352879717 :0.0448334881997231 -believe:0.24156551393334355 know:0.23352579403272666 knew:0.2208946649695335 is:0.16703230698449426 :0.1369817200799021 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -satisfied:0.5320498317338587 convinced:0.13650627922651673 out:0.12969225749117905 probable:0.12062211762002716 :0.08112951392841831 -be,:0.5435142829181281 be:0.2641067453482126 appear:0.09082002174820542 be.:0.05366077235692906 :0.04789817762852487 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.3475849054778883 the:0.28116199413654397 their:0.1435203922448205 my:0.12817798181033896 :0.09955472633040831 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -knew:0.37679372360233016 saw:0.26138834168319225 see:0.13163815086235936 know:0.11688984783102285 :0.11328993602109523 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -that:0.3383673107691184 and:0.3128365577129129 which:0.20099787076553655 as:0.10432441710645478 :0.043473843645977284 -the:0.25412371505604203 now:0.23511581623851296 a:0.2132813575306299 not:0.15228878749813227 :0.14519032367668291 -of:0.26260083635343895 street:0.21137267071126153 here:0.19942450784931878 street,:0.18730092465561152 :0.13930106043036913 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.36482212219848376 the:0.2531549761196659 his:0.2508395277876274 on:0.06949762642878894 :0.0616857474654338 -of:0.7333259037417059 and:0.09640820309187013 are:0.08053085143040646 as:0.06320757645863533 :0.026527465277382197 -be:0.7345609189260672 appear:0.08301506567024614 not:0.07440691987891951 be,:0.05887557024999375 :0.04914152527477342 -he:0.3717480207066242 mortgage:0.3571410194296957 it:0.10908461709351759 that:0.08587344715093662 :0.07615289561922568 -that:0.3006820385358622 and:0.23059997335711416 as:0.195891920541978 life.:0.13906897496639126 :0.13375709259865454 -that:0.5153812941871666 of:0.19343062638968084 in:0.12755879700010989 but:0.09231985006332329 :0.07130943235971927 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -favorite:0.41933902754925917 summer:0.22925228766872058 great:0.14953008154436656 popular:0.10868347445344781 :0.09319512878420595 -to:0.371243976049795 when:0.18811541736795473 that:0.18624325425736848 which:0.14805724032027068 :0.10634011200461113 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.36354552778532234 do:0.2653526031173493 take:0.1750230696062238 see:0.10067288662010863 :0.09540591287099581 -be:0.24535020163943028 make:0.24478627444475157 get:0.23415075895733276 take:0.14718384787221678 :0.12852891708626848 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.812228501368502 and:0.07094065344668532 in:0.043269863305264944 for:0.04063271617049945 :0.03292826570904826 -the:0.7952921628421469 our:0.12226730681086777 their:0.0396208295801909 tho:0.028028279308968607 :0.014791421457825782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -He:0.3931687216177822 I:0.23113103672049312 She:0.18831229124405913 It:0.10112958862582776 :0.0862583617918377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -others.:0.3773046374871692 all.:0.18709471715642245 water.:0.155868127781319 wife.:0.1497702829460951 :0.1299622346289944 -favor:0.5186464414818259 one:0.1844671995275245 order:0.11276878074526824 some:0.09279428025170594 :0.09132329799367549 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5713256121969719 in:0.21292179243733053 at:0.10913434518673888 to:0.05365310364664268 :0.052965146532316015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.5593106009745954 already:0.1389765576672962 not:0.11992162444731279 never:0.11406889059510296 :0.06772232631569278 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -give:0.3479250840271788 make:0.2382698212705376 see:0.1796764712115269 keep:0.12664973131541768 :0.10747889217533889 -the:0.9355264956229347 tho:0.03075265279359507 tbe:0.02545750694493841 ihe:0.004528364657027099 :0.0037349799815048802 -to:0.4782609152541507 that:0.278007310541388 upon:0.0868022009054932 by:0.08074705823100706 :0.07618251506796114 -once:0.8534398672880494 which:0.04009011500326833 1:0.039144995905162405 least:0.03509872392991616 :0.03222629787360366 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -account:0.5364740567608858 behalf:0.13550991952581004 board:0.1354428863244095 one:0.11086672590820994 :0.0817064114806847 -him:0.2460646484505709 going:0.2129702610102446 date:0.1877616762267398 one:0.18113791405782592 :0.17206550025461884 -hundred:0.6275884838009234 million:0.16958736809555916 thousand:0.13319079989949384 of:0.05131247894795556 :0.018320869256068142 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 -and:0.397702960339928 or:0.21835793687114857 for:0.17139826049800155 than:0.10828097037839525 :0.10425987191252666 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -three:0.2479349892520964 two:0.24457588528251695 twenty:0.17444331218749906 ten:0.17277503331837382 :0.1602707799595137 -soon:0.254132072434229 am:0.21540195565069983 was:0.20569836399503863 felt:0.1882200506182423 :0.13654755730179025 -new:0.4553421699259136 first:0.19585669669047975 second:0.17489419845562143 fair:0.10162719423657718 :0.0722797406914082 -will:0.37831339886214527 to:0.2223606354486967 should:0.14562815219229036 would:0.1446397883922058 :0.10905802510466185 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -a:0.48529123190130335 to:0.3268355313282842 with:0.07413954330353856 his:0.05701566605610438 :0.056718027410769624 -people:0.3075346206441583 man:0.19362987365373235 latter:0.17843613941196482 time:0.1619119895678424 :0.15848737672230215 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -quired:0.4796251506854974 moved:0.15456014444674288 turned:0.14940426524364084 ported:0.1283102948803417 :0.08810014474377725 -the:0.5929689521877298 a:0.16723958914823026 this:0.12110482541592041 your:0.05986073266194034 :0.058825900586179106 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.35911565832207654 State:0.25044877425235784 all:0.15321726534563357 some:0.12369161710328837 :0.11352668497664369 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -w:0.5792707766806686 v:0.16332667696187642 st:0.12413485944756207 n:0.07703664610536651 :0.05623104080452632 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.2515763858006961 be:0.24225826664325933 meet:0.19235028093637174 agree:0.16219014831695833 :0.15162491830271452 -one:0.49438831511342607 a:0.3152262698271612 the:0.09519470423745487 on:0.06240505847505063 :0.03278565234690709 -to:0.7265901541085806 for:0.20292226499889413 in:0.03391887207750828 of:0.02483035191274012 :0.011738356902276842 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.5005382716624946 such:0.19357369180909717 the:0.15539071802052082 in:0.08934003030061287 :0.061157288207274486 -made.:0.5429558057368005 done.:0.27694589663818947 used.:0.08277414522773713 there.:0.05437055464406389 :0.04295359775320908 -turned:0.3048525439290518 paid:0.2694745690931319 given:0.1631484813918693 taken:0.14105390114316121 :0.12147050444278581 -it.:0.3561884367934559 them.:0.26361398939505376 life.:0.14348639564941842 the:0.12416015078799382 :0.1125510273740782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.4626175540302907 only:0.151785207784425 some:0.13295939704758697 from:0.1297988865325617 :0.12283895460513583 -are:0.49482213849210055 and:0.21774911028582883 is:0.11949168718182389 a:0.08875046857181203 :0.07918659546843457 -to:0.296797084184698 been:0.24727381931096204 lost:0.17007442496962744 made:0.1475190603543833 :0.13833561118032928 -and:0.2891450074150891 as:0.2551004542670774 with:0.21725932292622782 but:0.13146005048529766 :0.10703516490630813 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9349408904127074 from:0.018276730340333558 in:0.01773888682871411 to:0.017491695884235152 :0.011551796534009765 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.43906645124462146 brought:0.23821927763610187 just:0.1701829028220646 gone:0.08516161508699778 :0.06736975321021442 -quired:0.4775799767127319 ceived:0.1786725741013211 port:0.1477099406480763 suit:0.11250032929359653 :0.08353717924427415 -the:0.8133446542865276 their:0.07199014756930305 his:0.055416807955846754 tho:0.033058286057950075 :0.02619010413037237 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.3749902896091036 are:0.22522094283334174 was:0.22333610855612052 were:0.10781563124084836 :0.06863702776058583 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5964900290254129 in:0.18007473896743828 on:0.079529845102964 from:0.07688786614291734 :0.06701752076126759 -the:0.7023077771758108 his:0.09884421604925729 a:0.08813743705666593 in:0.06458638356251606 :0.04612418615574984 -to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 -men:0.378044212646723 things:0.2433828587489037 together:0.13347507518961838 people:0.12517850931339924 :0.11991934410135571 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -shall:0.48249455606213104 would:0.14495746182191444 to:0.13176677843601411 and:0.12889331529532952 :0.11188788838461093 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -he:0.3696343447627655 they:0.3630283969817678 it:0.10403110121569498 we:0.08574317121599655 :0.07756298582377523 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.3152884230717808 of:0.2838571189159439 know:0.16655641927256537 in:0.1323632315689471 :0.10193480717076277 -the:0.35906524618875824 went:0.24178415007282264 running:0.15146673790893667 go:0.14576767716816053 :0.10191618866132192 -and:0.7201130250293295 Bryan:0.0952034538654455 Cleveland:0.06798732998641138 Smith:0.06241960227289813 :0.054276588845915644 -the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4244397509982609 they:0.1777386038138465 she:0.14709431080204385 was:0.13767522001615884 :0.11305211436968984 -to:0.8350176445972284 yet:0.05892909380791997 only:0.056773923875522325 take:0.03326913491657152 :0.016010202802757858 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.49926511009097685 shall:0.295618388704508 may:0.07589415787782976 will:0.0745213166810426 :0.05470102664564274 -charge:0.2860838260767526 ease:0.26626693109786903 position:0.1776862105647576 pose:0.17404258114489563 :0.09592045111572516 -which:0.3791216805861341 the:0.19819149067440134 it:0.17552221252080816 this:0.13312774039594152 :0.11403687582271481 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4408019865134716 who:0.23330583231660582 and:0.1575043501965376 that:0.10362000751780497 :0.06476782345558002 -have:0.3933758818462019 are:0.26764035946262754 all:0.1277980604707824 see:0.11728570750577583 :0.09389999071461222 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8722363694163953 top:0.05162398265297627 tho:0.03858030481543931 this:0.023668065824012076 :0.013891277291177074 -It.:0.41965952647139704 road.:0.1778251479177633 C.:0.1421655451331215 J:0.13854770249602344 :0.12180207798169473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.34942244265466726 not:0.25607508395891376 anyone:0.15554847237980834 one:0.12820388926543483 :0.11075011174117576 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.37360507763595185 claimed:0.17200910516994722 shown:0.16858371270771805 done:0.1446405634121955 :0.14116154107418738 -satisfy:0.2623184905157561 defend:0.2535544689639669 make:0.20191208961858279 kill:0.14490313928337176 :0.13731181161832265 -ques-:0.8002756431729089 na-:0.07435674450299275 sec-:0.06948586831604682 elec-:0.042931984076873354 :0.012949759931178244 -the:0.5061110450857952 this:0.2930735207861576 a:0.12931386917226106 one:0.04301596213446271 :0.028485602821323428 -use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 -help:0.2785015630400007 be:0.20212319556812752 get:0.19862322008547253 stand:0.18027959910150743 :0.14047242220489162 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.8242475838518161 of:0.11925090571823638 and:0.028644995402599068 bv:0.020004903569083517 :0.007851611458265064 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6373352058264176 and:0.13937170467400584 in:0.10482915305072316 that:0.06413189623253734 :0.05433204021631603 -amount:0.33367574802765154 name:0.18299013168488598 view:0.17360884438446778 knowledge:0.15768545770780476 :0.15203981819518986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year,:0.27447260614094954 week,:0.23323493822729008 night:0.21575551614698668 night,:0.1403886682966319 :0.13614827118814177 -young:0.3253452029893527 best:0.29122749868490905 old:0.20040038209974265 business:0.09214573382239705 :0.09088118240359852 -coast:0.4067539396660377 company:0.2086336342735335 and:0.1825038072502286 ocean:0.10883419296324756 :0.0932744258469527 -pose:0.8173617022959214 suit:0.14532791866937775 ity:0.01464310040733574 port:0.011436168763297533 :0.011231109864067581 -of:0.4408994483208504 for:0.1754359014919423 and:0.14630864846346744 to:0.12287312116183402 :0.11448288056190595 -it.:0.26988614037646885 the:0.2113798798894478 them.:0.19318107578184696 April,:0.16598737908146127 :0.15956552487077513 -of:0.9648139464733405 ot:0.012761276406701024 in:0.01045089662795504 ol:0.0075355362600291265 :0.004438344231974403 -described:0.32486746642033765 officers:0.19807293697458295 day,:0.17955112470470944 year,:0.16847127165098633 :0.12903720024938362 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.46411432583212686 the:0.23144499797029144 open:0.18525180203430275 into:0.0961228797622277 :0.023065994401051077 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.6201239956788943 good:0.13830875335562323 lost:0.12272249929914412 the:0.061467622725881625 :0.05737712894045676 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.27969225561753536 amount:0.21351912149210664 purpose:0.1851507046121718 payment:0.1687510661551826 :0.15288685212300365 -the:0.6712871386246012 this:0.2361395704248781 said:0.044036586966660345 tho:0.025382260690902582 :0.02315444329295763 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9432086342266082 ot:0.01762372325581689 in:0.0176209986409533 ol:0.011535701580864168 :0.010010942295757476 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.523487302131522 was:0.36245509710169005 Is:0.05371704333649195 appears:0.03803195792966676 :0.022308599500629123 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.42534479630849487 of:0.24259107764166657 into:0.11944177112443137 in:0.10921217220226706 :0.10341018272314016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6813731393083869 made:0.09773675400355819 done:0.08124393023156463 resulted:0.07313707764103868 :0.06650909881545163 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.5324317414516833 here:0.16379218633474804 ill:0.12607074602683166 hich:0.11593786864408562 :0.06176745754265136 -greatest:0.2668871366431219 splendid:0.2103429519649281 precious:0.1944286925307225 great:0.1655580652544967 :0.16278315360673062 -Sec.:0.9133387327448699 Section:0.06056983744545683 No.:0.011395168820062859 Lots:0.008081939602733401 :0.006614321386877112 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -friends,:0.3685128137261208 wife,:0.218122505001051 mind,:0.15385490721111433 father,:0.1424697125335129 :0.11704006152820073 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.3727695426020295 of:0.2581880673047265 in:0.20952688720813353 for:0.08280499635967589 :0.07671050652543476 -and:0.46688649067733706 floor:0.22852574865627168 wife:0.1216359547165499 time:0.09857718315624485 :0.08437462279359657 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.3808582681045895 in:0.24244804711317927 as:0.18378243413876436 with:0.10593527367921474 :0.08697597696425224 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3025939127780153 feet,:0.2261933906205311 a:0.16584875065683438 me:0.16165885629413687 :0.1437050896504823 -a:0.61223368415403 to:0.1693982573303177 it:0.09781990175681834 long:0.06476242615597969 :0.05578573060285442 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.5956297973677863 with:0.1593608740230667 over:0.11141414018950609 and:0.07981106915956625 :0.053784119260074696 -according:0.4018189199001973 him:0.228041737776846 as:0.19275387006023167 them:0.11852894660037401 :0.05885652566235101 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5681448725854734 to:0.263430183602866 in:0.09523961734604333 and:0.03838657264727326 :0.03479875381834401 -the:0.6656596275972905 a:0.19788276127125087 said:0.07081592316653508 any:0.03771758873627653 :0.027924099228646998 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.511724498509057 not:0.3884718695388764 now:0.04985443079697052 only:0.030093767577358065 :0.01985543357773797 -them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -recorded:0.25224574524264315 not:0.20407997895155758 and:0.19147041845298393 been:0.19094851019921258 :0.16125534715360273 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3372205977511197 time:0.21783221877527625 sort:0.2016084934116983 day:0.12282862190105882 :0.12051006816084694 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -a:0.38066012606097877 one:0.19107959252055334 ten:0.18276960827639846 two:0.1269671147368509 :0.11852355840521851 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -good:0.37937607300081105 big:0.22022639568724295 little:0.14952918089947045 small:0.1405315509906256 :0.11033679942184997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4152709987592493 it:0.2863906317979847 I:0.13183227245318366 she:0.10552800124843749 :0.060978095741144885 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 -of:0.6021710468581248 and:0.2364572274435177 in:0.07602463350226836 to:0.043186481933895675 :0.04216061026219348 -country:0.5002853837525202 government:0.17046470558796117 system:0.11975532778394615 city:0.11111895415875797 :0.09837562871681454 -in:0.33823259750578644 of:0.2529377366570128 or:0.1976408829529433 to:0.11678800794016528 :0.09440077494409213 -whom:0.3053861041910432 surprise:0.302052168905203 by:0.1422073634871718 him:0.1348032088695485 :0.11555115454703342 -but:0.38207786788614345 and:0.3285342348462411 which:0.15385577305192252 as:0.07638499793235791 :0.05914712628333495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.7750885713522411 a:0.08608267343486008 this:0.0644886105440936 tho:0.03931048551728576 :0.03502965915151946 -to:0.6338657857404483 and:0.11961937577212442 should:0.09580295906302322 shall:0.08928447845044432 :0.061427400973959656 -the:0.6475718471707024 a:0.22442815383932718 his:0.057225096051163465 this:0.044542417499572995 :0.026232485439233975 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -not:0.8079444074682186 I:0.08974490615142264 you:0.08059790849471954 we:0.011904610372476034 :0.00980816751316316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.36468108944025457 that:0.27298583918238034 which:0.21085787399917288 it.:0.07820685878254371 :0.07326833859564846 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -give:0.2603317189911152 have:0.2125223922838202 make:0.20433659809963658 take:0.16321134898790365 :0.1595979416375243 -two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 -the:0.6908928175402342 its:0.10478602573750265 such:0.0898053195888012 a:0.0712350613699186 :0.043280775763543285 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.35143466105732724 them:0.22581453705143678 me:0.1641981392530122 want:0.1559293680867314 :0.10262329455149242 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.29177927513978336 one:0.27546538675388743 part:0.2162920835259711 member:0.12571916314886405 :0.09074409143149417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3649491614566502 to:0.3404542040314828 at:0.10863109939507005 done:0.09426762878601377 :0.09169790633078333 -was:0.3562224139498901 when:0.28194091669110316 afterward:0.14525615289474172 afterwards:0.11165207305172845 :0.10492844341253656 -of:0.9274586873923725 and:0.023481767379740413 three:0.020342891359702252 the:0.014440169268444136 :0.014276484599740527 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9223532953915025 between:0.024174321997062286 and:0.02215359262207454 ot:0.017830431771115558 :0.013488358218244928 -of:0.5446104206517096 in:0.2510023257909215 on:0.07972533971781053 upon:0.07181778251203465 :0.05284413132752377 -the:0.8138305234363341 that:0.07186334889670049 by:0.05474641921996741 for:0.03019069761744979 :0.029369010829548212 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -regard:0.3057149411782757 order:0.28334663279449285 search:0.2111464206098458 respect:0.10206572494999128 :0.09772628046739461 -did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.6665764928838865 up,:0.20503152585545137 in:0.06252793387796196 around:0.033902642628265756 :0.0319614047544343 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -longer:0.3098741458947133 more:0.21204368513931296 one:0.18387642566549317 means:0.1483655435694626 :0.14584019973101792 -the:0.9206259370580363 tho:0.034754120351652956 tbe:0.016487359950497434 a:0.014339615137216453 :0.013792967502596804 -a:0.6561994812733819 the:0.2791604022648534 some:0.02496807972748647 his:0.0230767777315185 :0.016595259002759703 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 -the:0.6011099755540903 a:0.25672443232029535 this:0.08398793927513061 our:0.03032327750248721 :0.02785437534799664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9515502295506177 the:0.01668967363212554 at:0.011582061584270147 in:0.01088624141170625 :0.009291793821280103 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.31277580746036093 incident:0.22958947152382672 are:0.19558817638565962 involved:0.14400095761764403 :0.11804558701250871 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -even:0.4268597976603368 until:0.2102199136354758 shortly:0.14081187050979765 two:0.12920214473348815 :0.09290627346090151 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lot:0.3056495998377238 parcel:0.2930694097828358 Section:0.1742496006042055 lots:0.13247397405756767 :0.09455741571766713 -else:0.34681611668318135 wrong:0.241417315643322 that:0.20095667877596735 more:0.10985694255160272 :0.10095294634592646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -just:0.25586027339572265 not:0.19524785793565785 now:0.1889470556514176 cases:0.18043032805423695 :0.17951448496296496 -who:0.33564339994172604 to:0.23267261321310798 have:0.15914999621811635 had:0.13891104696981776 :0.1336229436572317 -that:0.30956887800994426 and:0.2667084287118096 as:0.21388588325339156 when:0.1225421005759054 :0.0872947094489491 -be:0.5582230147768059 have:0.13552776316520213 take:0.12489044146779348 only:0.10470670696764763 :0.076652073622551 -stated:0.4160846515236065 provides:0.19534509393980837 satisfied:0.1621523124176743 true:0.11408802927342002 :0.11232991284549082 -entire:0.2946562596660503 whole:0.29311643041136526 same:0.25742983562784255 great:0.08114913592471017 :0.0736483383700317 -doubt:0.5624175685087676 hope:0.1336515097218968 and:0.12851743951686934 ground:0.0920831638308769 :0.0833303184215893 -to:0.6152689961092674 over:0.13699912641790013 by:0.10061662653839346 from:0.09200604619604948 :0.05510920473838953 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2681685194219616 to:0.21810760417841032 Scott:0.1943388770163071 Jackson:0.1743111060141311 :0.14507389336918974 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.35326578731982183 on:0.33994590066135505 of:0.13806683251399035 at:0.0919413695569743 :0.07678010994785837 -in:0.592436469856042 on:0.23316649479322035 In:0.10355880510627546 at:0.04284052622537206 :0.02799770401909012 -treated:0.2629403678077351 love:0.2051032636139095 say:0.18717630820481646 and:0.18308391397020501 :0.16169614640333402 -work:0.25290796589404463 rights:0.23483598710351813 power:0.19256367517661932 money:0.17600272227052688 :0.143689649555291 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -who:0.42913811174352884 to:0.2079852946551255 can:0.19699585460271762 will:0.08530042176800437 :0.08058031723062362 -it:0.2461519714710672 free:0.20865856602899532 running:0.19555178959877592 returned:0.18403538943977474 :0.16560228346138686 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -be:0.6308848338855788 the:0.17930484419152323 his:0.09136719933994873 a:0.052592796566845075 :0.045850326016104184 -valley:0.3667307934760998 road,:0.22233550324410387 Valley:0.1723027573344216 street:0.12855035751136387 :0.1100805884340109 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -look:0.2906118803158538 enter:0.23457875146426582 call:0.2238033046332441 depend:0.12998529615411303 :0.12102076743252337 -not:0.3228676900794807 I:0.23154150373348564 to:0.1810809078424126 you:0.16174227939220884 :0.10276761895241239 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -d:0.4358918115781332 -:0.3061909586253246 t:0.09607546008203009 l:0.08695885532024256 :0.07488291439426965 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7598781443675746 by:0.09215311362872766 a:0.0654568346222501 no:0.04613137254459691 :0.036380534836850706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -rates:0.4898024458365649 cars:0.228339554455139 trains:0.13475862120991017 charges:0.09729047810485546 :0.049808900393530545 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.7853054370998189 his:0.0606750472810458 its:0.057492222012512806 their:0.055942697201598675 :0.040584596405023814 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Assembly:0.5578109058608385 Government:0.20929326493162895 Grant:0.14676627996316394 Government,:0.04340041122370358 :0.042729138020665164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.3329156479071492 these:0.24064207929299158 all:0.2182450476408574 such:0.11478980660298149 :0.0934074185560202 -or:0.4560347917374156 of:0.2974111430847363 for:0.11961602734739976 and:0.06974297394881755 :0.05719506388163068 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.8481385099819522 the:0.10093234630038209 such:0.024418448518292127 his:0.01417155401801661 :0.012339141181357025 -contact:0.47454336726627067 communication:0.24748081861343432 touch:0.13720516672327904 conflict:0.09520794023011653 :0.04556270716689933 -the:0.7120391040605589 a:0.13788302155058876 this:0.06961637856199214 his:0.048388073955879664 :0.03207342187098046 -have:0.6947071330485896 take:0.12412871829202637 exercise:0.07743377817345341 the:0.06435506351885115 :0.03937530696707952 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lowed:0.7981646162792343 low:0.10690861023055875 lowing:0.03549022746075259 so:0.03418991895789993 :0.025246627071554312 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5325791603763266 the:0.2921098708028859 one:0.09372881368709325 this:0.05282591344308134 :0.02875624169061301 -the:0.44286723504931713 this:0.2462892246030076 an:0.21761881792026774 any:0.051549265263790604 :0.04167545716361692 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ceived:0.6110263047512674 ported:0.12770318783259832 moved:0.11351609557643035 turned:0.09147692742259048 :0.05627748441711351 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -port:0.33489688830303477 fact,:0.24709664423476885 the:0.17730301745443897 a:0.12705137016740997 :0.1136520798403474 -and:0.3069043370037409 science:0.20116295264984008 Association:0.18525676046554398 Journal:0.1850941370571006 :0.12158181282377438 -men:0.3487791144558567 man:0.2791378665085578 man,:0.17584707871549035 ladies:0.10335571838119481 :0.09288022193890028 -the:0.37798427204832485 re-:0.20349156104010496 be:0.16839415518426187 re:0.13382990751737062 :0.11630010420993771 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -portion:0.4781245990873984 posed:0.20324266483068482 vision:0.1589970910340449 pose:0.11926332783310009 :0.04037231721477187 -and:0.5556721359512383 in:0.1820479252756791 at:0.10116918716630911 to:0.09357431729421813 :0.0675364343125554 -was:0.41868916824693714 I:0.19360705667273248 he:0.18621009383381362 they:0.11881558077777025 :0.08267810046874631 -same:0.4670557694062045 finest:0.1676261829519798 political:0.1336925036797741 different:0.13191923009218798 :0.09970631386985349 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -E.:0.3096120466736567 A.:0.21406484352734534 L.:0.20386595222147455 F.:0.15193312290833458 :0.12052403466918883 -in:0.2800944683377412 to:0.27706855470998304 for:0.18617168547164809 on:0.1442909634369626 :0.11237432804366498 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -for:0.823871433762439 to:0.0533094856666001 in:0.048640819253793065 from:0.03870060805268677 :0.03547765326448098 -is:0.6691173390967476 was:0.16186711609881937 Is:0.14058758780660552 has:0.01681813195577751 :0.01160982504204996 -the:0.6850614277009638 Rev.:0.13282196644463365 our:0.08639880496877717 Great:0.05825799516117337 :0.0374598057244521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.2979058428170665 other:0.21401787686828 one:0.18246218944668077 kind:0.15331122404450745 :0.15230286682346522 -the:0.9007099026361464 tho:0.044494599015119034 an:0.020208570107871256 tbe:0.019453189282530897 :0.015133738958332301 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.27479669460312667 that:0.2554351002525219 and:0.21712499059338458 for:0.13406163309811844 :0.11858158145284829 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7882936679561359 a:0.08004964574952556 this:0.05210644467410511 said:0.04545802251632225 :0.03409221910391115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -when:0.3705180936770211 as:0.18404855500117037 because:0.17982818862252622 that:0.15265615625065204 :0.1129490064486302 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7084695122015376 forward:0.09483198768193808 on,:0.07672621781124202 back:0.06060326446409194 :0.059369017841190405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.24467188556839767 city.:0.22576096868251727 world.:0.2190887536601012 state.:0.16450294626115974 :0.14597544582782424 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -now:0.29108738956113445 due:0.26192990218022943 dull:0.16742247637202018 quiet:0.15917331493536385 :0.12038691695125199 -made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 -people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own,:0.26703315471989003 work,:0.2596225532415905 country,:0.16894448286611086 hands,:0.15761285782356163 :0.14678695134884706 -is:0.4851130068822417 was:0.17966354333207624 and:0.17499509410758493 are:0.1008634486444796 :0.0593649070336174 -it:0.3380011056470231 It:0.26846056942818697 which:0.22922027274939774 this:0.11395196012463546 :0.050366092050756706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5519824654964205 that:0.2796282957041216 not:0.10919371959334498 it:0.03485677078503054 :0.0243387484210824 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.4800125687036997 so:0.2590479899124522 done:0.10317089109072361 too:0.08144672196255262 :0.07632182833057197 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.34923499722655926 all:0.25481234169582473 in:0.1469072815842144 found:0.12911293016870792 :0.11993244932469373 -man:0.27061660067100135 week:0.2012666546590631 point:0.18972559500412353 steady:0.17863007625055627 :0.15976107341525572 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.4787662311083671 ,:0.23329580856767926 -:0.20526849325966076 re:0.06121963732907197 :0.021449829735220992 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -notes:0.610080040767714 of:0.12097202569765492 on:0.0933456592604576 to:0.09044048989728076 :0.08516178437689276 -the:0.27417874680761267 to:0.2450184140154136 a:0.22891228153110435 and:0.14193899529929982 :0.10995156234656964 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -old:0.6431272378510438 of:0.3361716969343928 past:0.010505029636372764 with:0.005168966639867742 :0.005027068938322959 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -survey:0.25180016501184244 ballot:0.21035265189880104 report:0.18653831700883902 position:0.18435401494186385 :0.16695485113865371 -of:0.647134445176645 in:0.12988985228593392 for:0.07956097469799571 as:0.07598480644668903 :0.06742992139273647 -as:0.30037003152663067 found:0.2301075218784299 learned:0.19527741498379356 discovered:0.16219906718809415 :0.11204596442305169 -for:0.5537255653270474 are:0.30289328659421927 of:0.052626311117134894 were:0.04766449721345335 :0.043090339748145155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.8990990403711929 first:0.029293070169376247 pro-:0.028729282460242898 original:0.023164246078604334 :0.019714360920583738 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.2685112225121823 the:0.2476015251396888 and:0.1641483130947651 for:0.160965422402438 :0.15877351685092586 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -came:0.4068220913784362 went:0.15713187709314658 sat:0.1555956625792276 lay:0.15144957989909055 :0.1290007890500989 -country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.5833093878636784 the:0.25011312471095215 my:0.0815944084114968 a:0.055963813568607794 :0.029019265445265008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.45029597174427693 be:0.39006132656441556 not:0.10432604425107962 bo:0.03271207368536536 :0.022604583754862465 -we:0.2532156284982659 that:0.23209098648028323 which:0.2219941379286255 they:0.15847571567885516 :0.13422353141397025 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6418158655667011 with:0.21628197319261586 in:0.09149409565405558 to:0.025251237442078654 :0.025156828144548633 -of:0.417611339534393 by:0.20348395919911508 and:0.14049462477871516 J:0.12974033637538251 :0.10866974011239418 -part:0.3217917352156925 payment:0.2673612799594774 holder:0.19867681277206697 date:0.1420346447095755 :0.07013552734318772 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.4221510240186959 in:0.18474541430149236 on:0.16670087024151567 that:0.13380139016336906 :0.09260130127492687 -a:0.5905029722709677 to:0.1377143283475126 one:0.10122892026819541 each:0.09767596051109244 :0.07287781860223196 -the:0.8169291835564689 many:0.06226895642031761 other:0.05096577637008145 our:0.04087503501839057 :0.02896104863474161 -which:0.27373181542128633 that:0.20864543739718006 say:0.1920316293263952 whom:0.18661564805931516 :0.13897546979582326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4468483673625859 that:0.14351858652798133 with:0.1391572887948387 to:0.13678077056415583 :0.1336949867504382 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -described:0.8584923686030149 well:0.06350847486869651 bounded:0.051206688404363175 designated:0.016007402619804774 :0.010785065504120632 -did:0.25970958282346235 and:0.23911576336782112 but:0.22884481525282338 does:0.17986855585266748 :0.09246128270322576 -of:0.31422712453779755 and:0.2803396179764214 for:0.19488117830425647 from:0.1105418892351347 :0.10001018994638994 -make:0.3034363011558368 take:0.20557727392563568 keep:0.18383693365580323 get:0.16316149256965284 :0.14398799869307138 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -those:0.2516795997187912 in:0.20698757334937168 the:0.20135042048260313 a:0.18377051253078214 :0.15621189391845183 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -upon:0.5126582023713852 on:0.28839672959118307 by:0.08685982092421096 for:0.0629018691400383 :0.04918337797318254 -a:0.46657925112232257 sent:0.2135073088629025 no:0.1076712658668393 made:0.10627814866521192 :0.10596402548272366 -the:0.7552970741915414 a:0.1367153952751595 northwest:0.03848427343849489 witness:0.035533900716260586 :0.03396935637854377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.5038281317060951 A:0.31700219134691154 the:0.08232070345085907 This:0.052968316269288065 :0.0438806572268462 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5744532204904805 this:0.30573079820001753 our:0.05152881633655962 said:0.037211772190471684 :0.03107539278247058 -who:0.3375989348866445 and:0.30011712866113166 it:0.13635509656792894 they:0.1286622541593826 :0.09726658572491234 -the:0.8707609850300969 his:0.03914819594710745 tho:0.03744548217523818 their:0.026568520365424956 :0.0260768164821323 -make:0.36354552778532234 do:0.2653526031173493 take:0.1750230696062238 see:0.10067288662010863 :0.09540591287099581 -piece:0.2424833536299108 more:0.22484660679151272 man:0.1919742288373828 little:0.175613868309332 :0.16508194243186158 -it:0.30349874561731116 I:0.27084724762329165 he:0.1636921619592701 we:0.16218986577052757 :0.0997719790295996 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.29139433881127896 to:0.23674533676291878 county:0.18319460561899698 bonds:0.15264664008368778 :0.13601907872311744 -and:0.6927972554699436 being:0.14759179143309947 is:0.05925452348775762 I:0.05836548580958021 :0.04199094379961886 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -In:0.36468385124674063 On:0.18636678538881388 and:0.18460202866784084 If:0.13735835968619875 :0.12698897501040596 -in:0.5655196985036984 not:0.17738343351401645 In:0.08730589082758107 without:0.08562200105346099 :0.08416897610124312 -far:0.34317358955898547 not:0.21098425054032546 no:0.19677020154396696 very:0.12804192145212467 :0.12103003690459743 --:0.41632824190025414 ant:0.25803854636717927 j:0.16520998729163638 ti:0.08070547887615633 :0.07971774556477382 -was:0.5201271355767227 is:0.2884378797017023 will:0.07169450601350437 would:0.06089771120241833 :0.058842767505652344 -been:0.6813731393083869 made:0.09773675400355819 done:0.08124393023156463 resulted:0.07313707764103868 :0.06650909881545163 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -too.:0.3594494953397857 however,:0.2518730676321971 3.:0.20120003247657836 too,:0.10483757579020285 :0.08263982876123603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.9381741638910602 bank:0.026129483114643057 false:0.018212199495506426 official:0.010513894196716583 :0.0069702593020736815 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.2621273859460673 it,:0.21742538845573964 them:0.1918533962577756 him:0.19153566043716855 :0.13705816890324887 -it:0.40489169173362993 he:0.3064964639938213 there:0.1384694721605473 It:0.08098016200176392 :0.06916221011023736 -condition:0.3581292597908762 condition,:0.1915626733683397 energy:0.1806616576846556 activity:0.15749975071623248 :0.11214665843989595 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.48899346122319537 negro:0.17220897938094445 that:0.1456679267396306 a:0.11838079566232536 :0.07474883699390435 -however,:0.501354522484351 Mr.:0.22893724001488094 It:0.09524706837880652 ,:0.08964556227371125 :0.08481560684825017 -distance:0.5488738804575047 cases:0.1413219971478599 extent:0.11545393932810627 degree:0.09869909705414673 :0.09565108601238244 -present:0.3560155844498974 govern-:0.17950402812864805 report:0.17196943120075922 crowd:0.1542301051479819 :0.13828085107271348 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3446073433257634 and:0.3166714251482446 I:0.11679470145416286 has:0.11254461503538818 :0.10938191503644097 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -American:0.4177556185458607 young:0.17255214427380125 whole:0.16193392033864812 colored:0.13093731231274836 :0.11682100452894165 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.37641311440741715 three:0.2458431181977444 four:0.14206310057600394 six:0.12000175507221475 :0.11567891174661983 -the:0.6749641912764263 their:0.1734409472327191 great:0.05840508370527603 two:0.04763038622770737 :0.04555939155787131 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4795203597460338 and:0.1735865973216592 at:0.16566322376849435 in:0.09384123052319086 :0.08738858864062167 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.7743250092643184 that:0.06810976107811445 we:0.06623870073134676 they:0.05274145528961164 :0.038585073636608666 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.37435466198226097 his:0.23631611679078243 much:0.14071316816324023 the:0.1276191448368465 :0.12099690822686979 -of:0.6160953042152703 Of:0.21987526327046233 in:0.09445661070290107 the:0.04803897053900897 :0.021533851272357275 -which:0.5712656547617422 they:0.13146721688787874 whom:0.11097902474623077 that:0.10995491850347477 :0.07633318510067344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8566750875143119 a:0.049454286749984776 tho:0.04318684881860834 this:0.03280517696193942 :0.01787859995515569 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -connection:0.3401091424058627 matter:0.19801129251760474 trouble:0.1640484083862325 sympathy:0.15728109919291564 :0.14055005749738428 -his:0.2901577128346547 her:0.2512983725400477 their:0.22390976781818692 our:0.1326055091786585 :0.10202863762845213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 -of:0.3347715314239459 is:0.2856031761001634 was:0.20567132154099063 a:0.10488130719993749 :0.06907266373496265 -cept:0.4962494512284815 count:0.24698296351374716 tion:0.15002038954871183 quired:0.06304307143763255 :0.04370412427142688 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5290577612204869 not:0.17169551966257504 it:0.10871801394561992 is:0.09997575815531036 :0.09055294701600788 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5407060085838596 but:0.17432168643570348 came:0.11598658042724515 escaped:0.0864904548017275 :0.08249526975146423 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5648244101318287 been:0.29200715242474645 have:0.08111444116443894 being:0.03464256901042887 :0.027411427268556984 -people:0.26817505621003856 man:0.22010859150067927 bill:0.19086816596948514 farmer:0.16085203719390448 :0.15999614912589266 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3259959060750748 of:0.19921356280565153 or:0.19917328416502128 and:0.17707707505315898 :0.09854017190109353 -costs:0.39163534554654983 activity:0.18092613216592124 demand:0.15791931649693172 production:0.14515423507739345 :0.12436497071320377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.44747871152760743 which:0.1957293259400533 we:0.15204780017896988 it:0.11756376327289524 :0.08718039908047405 -a:0.5648305002744152 the:0.33900120424821034 young:0.039123956591158214 little:0.0350883571421938 :0.021955981744022395 -in:0.6100354436730662 at:0.12046584371867715 the:0.10973809955509126 In:0.0899662247643301 :0.06979438828883534 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6730579771258571 this:0.21445774660179137 our:0.05062953184635418 his:0.035562816337386956 :0.02629192808861033 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3357713273380832 to:0.24910680660083973 and:0.19101495270287988 of:0.16408315385157402 :0.06002375950662313 -the:0.8359800290601528 this:0.077639105736723 our:0.03809607432274916 tho:0.028409723648485753 :0.01987506723188926 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4804537405194439 for:0.15498031876015395 made:0.13501508914336718 on:0.12635785516331022 :0.10319299641372491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6787179965300354 as:0.2333588202515069 far:0.03777261170487605 when:0.026367511714521542 :0.023783059799060008 -so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 -great:0.4420424542063987 big:0.15424140520102625 large:0.14819564131230004 greatest:0.13805088238909066 :0.11746961689118429 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.2539520056090173 are:0.19775362897319773 to:0.19665379987518286 have:0.18850135810218321 :0.16313920744041888 -own:0.247253636392896 wife:0.22447145548191078 life:0.21336423156649947 head:0.16801187571465004 :0.14689880084404378 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -federal:0.33964953948072224 British:0.23384565175157934 city:0.15546579181679032 German:0.13647851268905795 :0.1345605042618501 -of:0.6546525742879925 the:0.12002201070401411 whose:0.11828385525564214 their:0.07912972524470287 :0.027911834507648604 -which:0.3636263034881724 that:0.29213720551003314 and:0.15647943983030618 as:0.1532840513420282 :0.034472999829460234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4835744152200314 the:0.4508676983722537 this:0.029597629847326275 tho:0.01963332105796337 :0.016326935502425245 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -was:0.47255854334999964 is:0.3039754740289865 has:0.09193989144919375 Is:0.07745386899028119 :0.054072222181538905 -In:0.26398429888270275 As:0.2616014602136102 After:0.18504342955162287 and:0.1679294854446843 :0.12144132590737981 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -against:0.7354780753460872 of:0.13646064039726924 from:0.06511061857081936 to:0.03296237031301327 :0.029988295372810912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Main:0.742406756372208 the:0.13039501236007767 Fifth:0.05531661448141935 Fourth:0.04370644738110915 :0.028175169405185756 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8946041870762448 its:0.043275883791016934 tho:0.041174014354483646 tbe:0.014120894932500383 :0.006825019845754157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.6528017576847813 one:0.18465216054663267 fail:0.06084478590406701 directly:0.055063658298314805 :0.04663763756620423 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -quired:0.44862407969109386 ported:0.16337663193359916 turned:0.1603897923110941 moved:0.13099628799530905 :0.09661320806890375 -cause,:0.21030193347306123 him:0.2087980966331115 that:0.1989747784140432 you:0.19371848847303474 :0.1882067030067494 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -filled:0.24244494535671712 covered:0.23589689849022813 connected:0.20001231129998537 familiar:0.18040280991221141 :0.14124303494085802 -market.:0.3233015324165998 here.:0.25056640353479737 again.:0.16759530090906474 life.:0.14299487642812908 :0.11554188671140894 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -.:0.822535661399877 J:0.08781087333537474 s:0.03953111024364809 J.:0.02517844802212704 :0.02494390699897318 -not:0.24841896853184858 sold:0.2425658156610839 now:0.19632373084178734 held:0.1704437614799453 :0.1422477234853347 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6171535261993212 it:0.15292069862173036 they:0.07709759270088498 there:0.07645730332550212 :0.07637087915256137 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -a:0.4506106045834642 the:0.24377470355085126 of:0.13973880414813908 are:0.09121989674643884 :0.07465599097110663 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.33513035047046563 thing:0.21364737322129349 very:0.15442843994224092 look:0.15140209971315635 :0.14539173665284363 -the:0.506324082615366 a:0.33992388455907224 this:0.11185245176289438 his:0.021850634340047543 :0.02004894672261983 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 -out:0.6685796517056625 because:0.1328199775058847 part:0.07858789911937654 end:0.06061861580747467 :0.05939385586160179 -all:0.4374659844284752 them:0.15944218800752644 out:0.14896311745107682 up:0.12836781839242778 :0.1257608917204937 -hereby:0.8571777102804095 not:0.08776065289066541 also:0.021801519045817945 for:0.01872892354585528 :0.014531194237251938 -in:0.47298081095165306 on:0.14456116476623965 while:0.13587021422620557 if:0.13385996625080612 :0.11272784380509565 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 -most:0.4117695450951247 use:0.19675478914265976 fact:0.15688089140412723 almost:0.15273875566213563 :0.0818560186959528 -to:0.5204124737101872 on:0.20563848419185707 into:0.1648963184054619 through:0.06293514974485727 :0.04611757394763668 -the:0.8689347573051442 tho:0.08065595816908605 tbe:0.03592625569227114 tne:0.009360828390608358 :0.00512220044289027 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6502046726093105 in:0.14632564426605427 to:0.09788447879499412 from:0.08424100050285883 :0.021344203826782336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.553879420066935 not:0.2944187558984243 never:0.07023587538336873 they:0.043700615333772334 :0.03776533331749971 -man:0.547710297729993 woman:0.13920018351452043 petition:0.10849066316371277 matter:0.1051524362735239 :0.09944641931824981 -and:0.23478359109194635 wire:0.23010545483877728 are:0.22404377872151274 is:0.1937500199017869 :0.1173171554459768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city,:0.28227115034459654 country:0.20120402776837767 country,:0.19269461797700246 city:0.1700581071514082 :0.15377209675861508 -that:0.7001355445804749 cause,:0.1651263069162732 that,:0.05830834705430972 taxes,:0.04995859350665503 :0.026471207942287196 -the:0.6376318225780602 a:0.13508784849327904 this:0.09319777468739443 our:0.08864692231010582 :0.04543563193116058 -had:0.41165972345807117 was:0.23653226139044886 is:0.1822426337625183 has:0.1485947640497028 :0.020970617339258864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8964541647957077 tho:0.041166929058509466 its:0.023684446535728838 national:0.02149535718934934 :0.01719910242070464 -payment:0.230792487352589 part:0.22531449542619947 proceeds:0.2036993338045452 plat:0.18567282479308475 :0.15452085862358161 -a:0.40245794671354546 the:0.3802083083362331 to:0.14231154084178146 spoke:0.04904935722626484 :0.025972846882175202 -him:0.35143466105732724 them:0.22581453705143678 me:0.1641981392530122 want:0.1559293680867314 :0.10262329455149242 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.35162475885822353 the:0.24820245061627685 whom:0.16626061275470694 that:0.13074203704247173 :0.10317014072832086 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.668758030589902 time,:0.1327323909239497 while:0.06692361223397826 and:0.06629431196603076 :0.06529165428613919 -hard:0.28233851907564783 thing:0.21384434894414148 and:0.18794699047260208 clean:0.16581871561006406 :0.15005142589754455 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.7200811568490637 completed:0.1367845693143484 making:0.09731478769379147 existing:0.026495582812396657 :0.019323903330399544 -acquainted:0.4015128884905453 filled:0.17761703999998985 pleased:0.1726540770093868 supplied:0.1358512873976068 :0.11236470710247118 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.30015919762272253 that:0.24643654671671808 by:0.16584081721859545 in:0.157532667071409 :0.1300307713705549 -once,:0.331378217749452 home:0.1879458190179684 once:0.17606325166668244 home,:0.16667278215179304 :0.13793992941410413 -interested:0.7096689574783906 engaged:0.159836266583168 residing:0.05443944921897364 employed:0.04220416923238583 :0.03385115748708194 -Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 -opportunity:0.28890486657815 order:0.2249940295307912 attempt:0.21037774289510267 effort:0.1777913698834426 :0.09793199111251345 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.3542479003490976 is:0.22419314392543963 are:0.1548924901111969 then:0.15354073844724084 :0.11312572716702508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.38080740478366093 and:0.2912182965932603 that:0.2099401670350022 as:0.061810359819408175 :0.05622377176866838 -are:0.36167462997378513 have:0.24512686791819055 were:0.19272262079081176 had:0.12213282707286675 :0.0783430542443457 -for:0.43772548716845666 of:0.31777815764543466 to:0.0878597729775441 in:0.08573779383541977 :0.07089878837314494 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.3718350500570857 look:0.17684999697041523 be:0.16861048269174345 get:0.15706079660766445 :0.12564367367309115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.34501689717126005 country:0.1993914047255576 confidence:0.16078414346926093 citizens:0.15304309987393172 :0.14176445475998956 -The:0.41063875802367367 In:0.32840992578905936 A:0.11169842955741212 of:0.10052645791236957 :0.048726428717485226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -accordance:0.30475649316314946 connection:0.2862815873924049 .,:0.23942404237512885 .:0.09701459305888299 :0.07252328401043377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -property,:0.35289973214852144 real:0.28610012868128726 land:0.17382902442157883 in:0.09798056770449677 :0.08919054704411569 -is:0.33047271704127823 was:0.295164212163862 are:0.19567559235730766 were:0.09259693592977812 :0.08609054250777404 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.27711358413303655 to:0.2648702913255775 for:0.22788331778019597 in:0.1391212222782256 :0.09101158448296442 -the:0.492480066244949 a:0.2191561166157898 every:0.1005877142061404 this:0.10055164350307919 :0.08722445943004159 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5279691279233537 not:0.21150030749299706 have:0.12156620008796777 appear:0.07017863376901143 :0.06878573072667017 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7780476144201518 an:0.17383226438887672 tho:0.028821277501812712 tbe:0.011566736683118943 :0.007732107006039847 -the:0.6643323856414716 a:0.21734649319532254 our:0.06864527748163912 tho:0.025438316827545843 :0.024237526854020926 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3530834960784411 them:0.3341402036018159 him:0.10776124770226282 that:0.1065479573307391 :0.09846709528674094 -unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 -place:0.34833724788697323 spot:0.20162386496180532 point:0.18414383965253847 country:0.15714008192469367 :0.10875496557398913 -street:0.32247271357781415 street,:0.235446283414655 ;:0.162407496193877 county:0.1454704440343268 :0.1342030627793271 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Smith:0.4726178714414747 M.:0.1930782667692426 A.:0.11900448351164969 Smith,:0.11303546670947391 :0.10226391156815912 -virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 -more:0.42276731747913077 on:0.16171693252012875 whether:0.15870102331256603 one:0.13971541531947745 :0.11709931136869699 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -this:0.302200067986624 jail:0.18667292868530608 both:0.17748268963927571 one:0.17108514681672243 :0.16255916687207161 -the:0.759363224992346 said:0.08972055629778883 these:0.0893078884280696 its:0.03296095457773188 :0.028647375704063775 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.4575492189132489 only:0.2101766223301091 same:0.14156367638303857 first:0.10090145538857885 :0.08980902698502466 -of:0.5735631763647894 and:0.2588204562293289 is:0.07686320671237133 or:0.04807568222286138 :0.04267747847064899 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6878775794597288 described:0.22408867167856644 the:0.04760515546051629 one:0.026353120525504287 :0.01407547287568418 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4355651760348236 in:0.2555470600887326 to:0.11044904399052814 on:0.10134639630009867 :0.09709232358581706 -25:0.279537468206741 fifty:0.20951670422305854 75:0.20191838036665152 50:0.16570728325135145 :0.14332016395219743 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.34120017902112887 much:0.18836060492444512 secured:0.16432557377053644 amended:0.16359163229734106 :0.14252200998654846 -of:0.7526188039211897 to:0.09109745354445506 from:0.08800548097980124 for:0.04111073700150078 :0.027167524553053306 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -is:0.8218696038701764 was:0.10295302142653807 Is:0.060231089471382525 he:0.007502822720540332 :0.0074434625113625925 -sides:0.6300621270691076 together:0.11135656212118665 hands:0.09084338399628236 ends:0.08958347506624571 :0.07815445174717763 -appear:0.5502707033055716 long:0.20836815174177892 come:0.09634101908804718 even:0.07411946752307673 :0.0709006583415256 -young:0.6824303121118656 good:0.09276267620613028 white:0.08178104757993127 single:0.07478137676498879 :0.06824458733708402 -of:0.49706412238988085 in:0.18999335252169886 for:0.13162738548536998 is:0.1017117028564248 :0.0796034367466255 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7394017195373128 said:0.11739624465257628 a:0.09409451121818518 tho:0.030303650015611427 :0.01880387457631421 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -readers:0.499913380907409 people:0.22758061610464955 country:0.13741936602552385 government:0.07068972153226417 :0.06439691543015343 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3874534483747249 to:0.19879621566410682 on:0.17440802911663345 at:0.15220287747568603 :0.08713942936884883 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whose:0.47987200719637224 of:0.17527544236781542 had:0.12558745572271768 from:0.11915785973801056 :0.10010723497508404 -to:0.41754511693643404 in:0.24321046927799947 be:0.12056149707499503 for:0.11139392675218653 :0.10728898995838493 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3165735460247696 in:0.25946936079916144 to:0.15506573127393322 for:0.14103478518490895 :0.1278565767172268 -was:0.22250405777539234 he:0.21777747906429554 being:0.21330703951195498 has:0.17574389671270157 :0.17066752693565565 -best:0.7318892670128958 business:0.11009825161601448 public:0.06052950411464436 great:0.0516495751153207 :0.045833402141124795 -is:0.26907900329081336 ;:0.24225462072353204 was:0.20216169773870063 up,:0.15528045304984803 :0.1312242251971061 -the:0.5588673105594176 a:0.22806830745687365 this:0.12868199440749326 your:0.05005033999043069 :0.03433204758578475 -1:0.28727121262638083 which:0.2735299919334522 least:0.21932466028678596 I:0.11120318157137939 :0.10867095358200163 -not:0.750899960483654 probably:0.09335066619449489 to:0.06781875750829983 thus:0.050490821536840175 :0.037439794276710986 -a:0.7268128978694677 the:0.1564994950226013 no:0.07102613633409828 nothing:0.03147884472095637 :0.014182626052876481 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.24915589253745718 city:0.22854406432363528 payment:0.20642614765754363 day:0.1602732853515545 :0.15560061012980947 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -being:0.4091914426205469 now:0.2121510176763275 not:0.198599968833973 also:0.1099908578394032 :0.07006671302974939 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.9201288608494863 those:0.03392205255404213 that:0.023637833135038536 the:0.012905278165570093 :0.009405975295862833 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5315001108440658 said:0.29109015079560496 a:0.07151877492182156 this:0.05377529341104589 :0.05211567002746176 -and:0.304200297422003 thereon:0.2882662979177051 payable:0.23262991225878277 thereon,:0.08996398913813286 :0.0849395032633762 -man:0.35592266086034474 point:0.24130479517609796 change:0.14696324754392406 part:0.1304589583290741 :0.125350338090559 -to:0.3196703842535227 will:0.18596148039646349 has:0.18023507037569295 and:0.17486303129366265 :0.13927003368065838 +the:0.5278388563550233 a:0.050368639174224974 their:0.039111431647736505 his:0.03742339644822187 :0.3452576763747934 +make:0.9238826930233718 growth:0.0014488408784434721 application:0.0014038310271249374 nature:0.000989787754790469 :0.07227484731626924 +an:0.332401298930968 the:0.101460724052519 a:0.028801017142979737 Dr.:0.028404307193620592 :0.5089326526799125 +who:0.17663142345761246 generally:0.16063765732216204 They:0.1480697998960838 and:0.14398706284928792 :0.3706740564748538 +pany:0.05946084722784085 mission:0.0064368318805753475 promise:0.0030634987626265054 pound:0.0007115521034954233 :0.9303272700254619 +means:0.23057177163017917 money:0.1522650779558824 water:0.1055427001356689 earth:0.04258555515028434 :0.46903489512798524 +as:0.3980121937553174 land:0.08464554616578857 farm:0.07775350916580526 but:0.07117521989796412 :0.36841353101512464 +and:0.226915008731915 fifteen:0.15288533007101346 it:0.053189700465730315 of:0.03572027384514014 :0.531289686886201 +of:0.792519658169344 and:0.07540315057562239 ot:0.034989142139444845 in:0.03225969322166957 :0.06482835589391922 +as:0.9746608237044408 that:0.004055929628513313 sure:0.004026505399953897 its:0.0031418350544577204 :0.014114906212634263 +two:0.05177493503357986 are:0.025097809379383343 the:0.02446648909750067 great:0.015397963571315952 :0.8832628029182202 +the:0.891467680978457 tho:0.03174265584558654 tbe:0.019556558321003815 show:0.014126941234981117 :0.043106163619971785 +poor:0.11190012474586682 where:0.08813947507056566 young:0.052813419496498745 much:0.02928640168307345 :0.7178605790039954 +house.:0.141765410925507 ground:0.06564952924384516 table:0.06326151640735805 train:0.05653668299433515 :0.6727868604289546 +to:0.8768824425919237 and:0.04774911877042356 I:0.017345210371344056 a:0.011284628628259036 :0.04673859963804957 +to:0.2224607428266613 There:0.12758552621158198 To:0.10958707465845617 The:0.034271010689762585 :0.506095645613538 +to:0.2842820180716186 of:0.11436836307230727 where:0.05869183950582461 that:0.04909372434110808 :0.49356405500914147 +informed:0.1234697897824811 along:0.08058686350514152 up:0.058266562318890394 as:0.030952322976369805 :0.7067244614171171 +of:0.4673005951783434 and:0.030770663940147318 in:0.027070063797657598 leaves:0.012916859726282941 :0.4619418173575689 +the:0.1728787193350616 a:0.043703986730724634 his:0.02291817336488355 to:0.0172209589867583 :0.743278161582572 +since:0.40808730358900036 but:0.12861728580939402 and:0.10313521754721594 of:0.02116494784108549 :0.3389952452133043 +will:0.9996746657025808 to:0.0002922108263656017 can:2.1833492877183535e-06 and:1.8192252916478407e-06 :2.912089647447961e-05 +day:0.9961191459171163 go:0.0016434404034638658 days:0.0006191458353107187 then:0.00031010465399977356 :0.001308163190109384 +and:0.088086688636324 is:0.04247633382487365 or:0.036499469073992374 City:0.027720839781631413 :0.8052166686831785 +ma:0.2541013585082104 ill:0.2170060214268086 do:0.12449163668148495 at:0.0035922473387986287 :0.4008087360446975 +in:0.20188838192708175 on:0.14678759739459077 all:0.12113001247940289 from:0.10439495157438719 :0.4257990566245373 +i:0.6219867325194841 a:0.24970444729875688 the:0.048308817784659334 more:0.01250781488860226 :0.06749218750849734 +was:0.8726663286616149 I:0.020852753653544942 ant:0.019426526472724363 us:0.014682598913123712 :0.072371792298992 +the:0.6492980644328296 their:0.2962016256840026 his:0.042633717305217256 tbe:0.007777398306493792 good:0.004089194271456717 +my:9.180308315653385e-05 rest:3.319883135543964e-05 arrived:2.2641452766000963e-05 I:1.4967227646039539e-05 :0.9998373894050759 +at:0.7730936682919889 When:0.0870667156406777 has:0.04073839256729885 not:0.02568244582538672 :0.07341877767464783 +and:0.3202531976793976 court:0.1357590093799651 he:0.08182059904197905 we:0.07628057115381416 :0.3858866227448442 +in:0.15227609998764732 Every:0.1364447281975287 The:0.11507372354943733 Not:0.09644309398646478 :0.499762354278922 +that:0.009784227368863632 because:0.009602789349671202 all.:0.004520373806027096 there.:0.003678745996649925 :0.9724138634787882 +and:0.008656057735454498 this:0.007351681902675577 these:0.005010232312210901 These:0.004681076790475781 :0.9743009512591833 +add:0.3700529346880802 taking:0.05735514132061289 the:0.042125611294115774 o:0.03868325427812542 :0.4917830584190658 +had:0.9993253183845133 would:0.00037676897796057654 bad:0.00023038986005133796 might:3.522032689697891e-05 :3.2302450577750434e-05 +feet;:0.4168529364965993 feet:0.1825552243453816 feet,:0.08528850071636002 ft:0.007164405787924099 :0.308138932653735 +block:0.7416196639176702 page:0.07187426242715576 Section:0.07178492693710896 Block:0.03531988352011837 :0.07940126319794684 +toward:0.9626569167753775 by:0.017703763102011442 to:0.01018565752504385 it,:0.006478306881755119 for:0.002975355715812251 +the:0.13221669697175906 and:0.05910339492655603 of:0.04082775726368 has:0.039900725543287885 :0.727951425294717 +this:0.5676612170360427 the:0.15528467345053343 said:0.03994341909878441 that:0.02929227742371615 :0.20781841299092346 +of:0.8289045770594563 of.:0.17104961197174345 of-:1.9831202761749573e-05 or:7.781318677187626e-06 :1.819844736121581e-05 +be:0.1940134991903106 have:0.1614823780525162 the:0.02502359054513484 was:0.02455377647996711 :0.5949267557320711 +way:0.026888446067655242 and:0.02549939436965649 I:0.022249676371689772 way.:0.015177617752139784 :0.9101848654388588 +was:0.614382691569553 is:0.0982441041983521 ie:0.029700442041271126 Is:0.019882062092346345 :0.23779070009847747 +the:0.23632733682540605 a:0.142747743297848 Messrs.:0.10501616486977695 Mr.:0.10429999320660349 :0.4116087618003654 +in:0.3043930121964174 of:0.21954315652615275 to:0.20342524722688854 on:0.0815954367399374 :0.19104314731060398 +and:0.059938464795097644 not:0.03168293830332907 attempt:0.030062513560448426 as:0.028331305385681217 :0.8499847779554436 +the:0.26603591154447237 and:0.11918257590160723 his:0.09310526258889738 a:0.06474063410919673 :0.4569356158558262 +mass:0.04611485706236836 and:0.036398492507108395 industry:0.02059630172151897 world:0.019097836898956833 :0.8777925118100475 +question:0.11623513901306994 man,:0.07862315423503421 and:0.06633173823329032 .:0.06551190530671894 :0.6732980632118868 +portion:0.27922035744523943 being:0.21781737719344432 One:0.12905364929676713 means:0.014097393942224304 :0.3598112221223248 +the:0.7093507677570863 tho:0.09795866851920355 said:0.09280690053270874 any:0.01697683532217841 :0.08290682786882307 +of:0.5495830432611674 and:0.08495990559469348 in:0.07626612776739271 to:0.04919099757487052 :0.23999992580187574 +directly:0.40785613782811875 the:0.35793591488724874 tho:0.08767264241283645 them:0.0805531897409108 :0.06598211513088532 +of:0.32520590258064236 any:0.3186350166462515 the:0.10605968562486859 to:0.09052882675334474 :0.1595705683948929 +and:0.07194567514251239 to:0.051114780146397754 of:0.03456669004240722 the:0.01629099508421129 :0.8260818595844713 +de-:0.21596183205385888 re-:0.05332846889383362 required:0.026792692588256117 state:0.012771856125974413 :0.691145150338077 +secretary:0.19808714940416133 Constitution:0.1046906182372601 application:0.08043650600985859 President:0.07214761036996027 :0.5446381159787596 +necessary:0.6375144416402704 impossible:0.27263052566758095 easy:0.0054565336262736 difficult:0.002478005492301184 :0.08192049357357377 +of:0.2396428521567032 and:0.10969744671599407 the:0.05656747265778741 to:0.030966679659321233 :0.5631255488101942 +the:0.8428585690827222 my:0.06738925589075392 our:0.02848787136795808 her:0.0230930527697835 :0.03817125088878222 +the:0.42373815334102455 be:0.10623207540235548 their:0.09592497119514369 his:0.036820270665179886 :0.33728452939629633 +his:0.36998252231405176 little:0.06707925565630003 her:0.06207245808892222 one:0.033299268991189915 :0.46756649494953606 +Even:0.09112757722014761 and:0.07573273970035141 But:0.03507808972456165 .:0.016313334131333502 :0.7817482592236057 +condition:0.23128455597163214 and:0.03692874803768272 to:0.022187208363420474 world:0.011584219252154212 :0.6980152683751103 +on:0.28028521214018876 a:0.08039361218129544 the:0.060656436930030026 to:0.05697297169269356 :0.5216917670557922 +few:0.06729071000109178 great:0.0445588671817791 small:0.03280892540557957 large:0.030353528971051435 :0.824987968440498 +opposition:0.6911452114372124 report:0.09129206102274876 mind:0.07063506657838865 and:0.051858048731962425 :0.09506961222968775 +head:0.0262989891679492 hat:0.022065518586987784 feet:0.010624961593589539 long:0.009653754813558697 :0.9313567758379148 +case:0.27626798555915144 art:0.04596905660704142 is:0.024043529079396362 labor:0.022000315382145766 :0.6317191133722649 +valuable:0.017826841386199044 contained:0.0012077992243694612 down:0.00016660547288148712 does:0.0001221763403272046 :0.980676577576223 +has:0.9378152696431911 is:0.05369121000631383 as:0.003179180246687388 which:0.000537303001806671 :0.004777037102001049 +such:0.5064597529957059 said:0.18279866757922417 the:0.09770359745977332 his:0.022125871238865395 :0.19091211072643127 +been:0.3234901623769645 were:0.20836558376495756 in:0.11993302717606694 no:0.11275537214681058 :0.2354558545352005 +size:0.23073431330422856 kind:0.1976975582876999 shape:0.08621696946105988 way:0.07618992936559987 :0.40916122958141177 +their:0.7160519075787687 the:0.27839125079924076 tbe:0.003444593101343951 our:0.0010831112359944175 :0.0010291372846523194 +London:0.014740322000989896 New:0.012901146568022827 paper:0.0063608105849080054 Jersey:0.005712796623508902 :0.9602849242225704 +training:0.019500906172938492 pleasure:0.014444655735522631 show:0.004537273469141369 little:0.0027867457396458612 :0.9587304188827516 +rights:0.34348155580573436 amount:0.13526413905786536 owners:0.06503464635997419 value:0.04149525485291461 :0.4147244039235117 +the:0.9292480819662352 tbe:0.0257565947987258 tne:0.01767617979298471 this:0.015568084677355362 :0.011751058764698912 +the:0.017030260234064395 with:0.007289663567846563 lay:0.005365742468212378 I:0.0038303631493782305 :0.9664839705804983 +the:0.09549416249018775 to:0.07404353651628903 and:0.05353992013983487 June:0.05091132936282473 :0.7260110514908635 +it:0.18566958313148066 it.:0.11716244584447567 that.:0.0742858685389819 11.:0.058729616823086736 :0.5641524856619751 +all:0.4636906518719787 to:0.2273219743432191 has:0.16451998052077554 will:0.07775067737173373 would:0.0667167158922929 +the:0.15167217544002426 a:0.04958847305056712 his:0.0219021491920162 to:0.020830473363477226 :0.7560067289539151 +round:0.6675113887596177 of:0.15817225430643017 on:0.04772865140496623 to:0.022091837524561925 :0.1044958680044239 +life,:0.024358255478514904 own:0.020675172052034306 husband:0.020049524781008698 father:0.013333760316829662 :0.9215832873716124 +for:0.9865612199709791 as:0.007488464369585674 tor:0.004287679938543144 lor:0.000765469983824519 :0.0008971657370675293 +to:0.7429646165864542 You:0.05345408266064771 not:0.05170444915684074 and:0.04047014787415309 :0.11140670372190413 +of:0.919823229375431 ot:0.01661991736553192 the:0.012068357155028133 ol:0.01192564700370737 :0.03956284910030148 +still:0.4828457077507721 left:0.1730084880859623 issued:0.05467115547673198 run:0.03245385958745908 :0.2570207890990745 +and:0.6629373736477924 aud:0.0885584443131837 or:0.08830248189511966 cured:0.03658539016949046 :0.1236163099744138 +the:0.21402667209699724 I:0.12400991924400365 is,:0.08834147787668109 they:0.0621859008112064 :0.5114360299711116 +a:0.7444075965723749 the:0.12051995557721702 it:0.08950961388864419 but:0.003079171276321034 :0.04248366268544277 +to:0.300452364019866 in:0.1612343703477015 of:0.1361324967388126 and:0.13274071633648515 :0.26944005255713466 +the:0.8781103885857533 our:0.10929708819897803 tbe:0.009595169397829409 for:0.0005696471364383833 :0.0024277066810008503 +to:0.6774662854870769 will:0.06806599897746765 or:0.058731353625295725 not:0.0368849009414988 :0.15885146096866087 +and:0.07902984661248899 together:0.04528122484681193 of:0.02326753920545433 connected:0.022999629478553486 :0.8294217598566912 +to:0.07568939243889056 own:0.03275409788190946 a:0.024465914220460808 of:0.02223667884596783 :0.8448539166127714 +by:0.44662031808277924 from:0.2747863298457328 in:0.1417517943384864 of:0.05427760282660132 :0.08256395490640012 +of:0.11981990685980352 ing:0.07703120599914204 taking:0.05843842180706863 but:0.04756078698851064 :0.6971496783454751 +He:0.17566774289491474 and:0.1678017870108109 of:0.11771502305609438 was:0.10543799703538531 :0.43337745000279465 +making:0.4280729364004714 using:0.16963551976313507 that:0.1123735069456062 which:0.09451057819449378 :0.19540745869629364 +to:0.4359278116806651 from:0.12087686322521533 the:0.09923435658155187 in:0.0860211082276907 :0.2579398602848771 +the:0.9534609430395382 thc:0.02085400328480197 tbe:0.018114996758394425 said:0.004324223301034771 tho:0.0032458336162307097 +by:0.03762053193326659 to:0.02552253937193782 ed:0.02004551048854784 from:0.016849365770092755 :0.8999620524361549 +not:0.6074355711785184 be:0.1603323162569999 have:0.07382316597076484 never:0.014479995668990695 :0.1439289509247262 +covered:0.0633734824240189 played:0.045899738890494944 satisfied:0.04558149392679444 provided:0.04049157541608842 :0.8046537093426034 +if:0.4117394932406145 as:0.10789820978365149 up:0.05392189796223283 owing:0.05059033806187116 :0.37585006095163004 +be:0.00013163439688426674 amount:5.877257198910524e-05 ty:5.536851147634834e-05 he:3.208473740086904e-05 :0.9997221397822496 +the:0.7611140283976718 a:0.03489473506974227 an:0.03174981655867338 free:0.018723782185338034 :0.15351763778857433 +to:0.3244464860745158 The:0.15511661695246365 These:0.15397720740886037 the:0.13949103187310954 :0.22696865769105073 +be-:0.8208789300135664 the:0.02374346504892731 be:0.017566876285786917 have:0.00556309021317251 :0.132247638438547 +right:0.801925596186679 chance:0.05288428902298594 light:0.040363548821206297 desire:0.010341764970963577 :0.09448480099816496 +d:0.015562262228227156 of:0.010150898218537813 the:0.009127042255111979 dress:0.0076913351203466715 :0.9574684621777764 +kinds:0.08257413839226763 forms:0.063776664130315 parts:0.06339344968098763 classes:0.03604349574372375 :0.754212252052706 +capacity:0.07502665831123494 We:0.0463990488566171 There:0.02958428937734268 who:0.017531210888711755 :0.8314587925660935 +by:0.35055893513101205 that:0.16487160723060437 and:0.12603961835149377 for:0.1257844471066638 :0.23274539218022594 +.:0.08341726625952799 and:0.06031307419334596 a:0.05836990303537153 John:0.0427732275918659 :0.7551265289198886 +and:0.08034665132166349 peculiar:0.07729167168707192 to:0.03049405086236754 the:0.02829512534183979 :0.7835725007870572 +education:0.24856369070939546 work:0.1811441295607772 course:0.14962727090331676 speech:0.04201223568692127 :0.37865267313958945 +it:0.12881771830541686 you:0.0644738137765977 not:0.058114026238439684 him:0.0451077683062682 :0.7034866733732775 +and:0.2330707229244997 but:0.1166033916522353 is:0.032695250023730076 are:0.021246171906747376 :0.5963844634927875 +of:0.6038023177218037 on:0.10401280800540598 was:0.08376941245853745 On:0.04458386115284603 :0.16383160066140678 +that:0.41368731488192295 of:0.25303829548152207 and:0.17752814804877595 in:0.1307929258676017 :0.024953315720177283 +of:0.6528424217634715 and:0.06952679583825284 in:0.05284503922661421 to:0.04245932432974378 :0.18232641884191764 +the:0.5049622951972638 his:0.11733489266125463 be:0.08754836311279111 make:0.06515352305926611 :0.2250009259694244 +':0.010002356172023524 ?:0.0015115334477301871 seen:0.00044860824811315564 .:0.00029474532861408284 :0.9877427568035191 +hundred:0.7241759924396732 4:0.03183480847225775 white:0.01765736790008276 thousand:0.013440833867383156 :0.21289099732060296 +on:0.03577267699004544 of:0.02158815114559135 more:0.014421409878921767 to:0.013685774904483505 :0.914531987080958 +the:0.5601849815416925 be:0.3673641955744659 tbe:0.03299949864863601 tho:0.0240549124967598 :0.015396411738445788 +and:0.12957676831559084 of:0.100074026978611 the:0.06259626642649897 to:0.04247405813550116 :0.665278880143798 +he:0.4189976081460556 which:0.12207509779213434 and:0.06085572036816499 that:0.046474159348528325 :0.35159741434511665 +city:0.035869055272847804 river:0.016220784582099117 street:0.013933963661542528 scene:0.013856484227977344 :0.9201197122555332 +you:0.9870886390182485 so,:0.0028123017399289112 true,:0.002810381502313069 they:0.001060254680624569 :0.0062284230588849935 +the:0.3761127562028582 this:0.14546968323199017 a:0.09276275848016732 its:0.08533538818163708 :0.3003194139033472 +I:0.10763202355835408 to:0.05666456378789342 could:0.0491846347828841 will:0.029046940121873643 :0.7574718377489948 +it:0.11020520882509967 and:0.03293186650250638 them:0.01607356895097066 are:0.01560437184160802 :0.8251849838798153 +to:0.8999322497468558 from:0.05978017245183038 and:0.012024014134475519 In:0.00859310522401751 :0.019670458442820893 +looked:0.7261245674519946 seemed:0.13377114633443546 was:0.06085819299532521 seems:0.00877380056443746 :0.07047229265380722 +as:0.30430659761471196 ,:0.014747643756309773 mill:0.006305467475458749 year:0.005871635509277013 :0.6687686556442424 +of:0.40936570782544546 in:0.39239069298307905 In:0.05058363274767115 within:0.04373900302487024 :0.10392096341893434 +were:0.30976859919409655 was:0.2994947088790745 and:0.08736280470596199 is:0.08096088664375307 :0.22241300057711397 +the:0.6497011741342151 a:0.059838959995268295 tho:0.046581496264707596 his:0.04385800384619917 :0.20002036575960994 +the:0.4481492958166903 a:0.35212671606853585 still:0.0663895392494505 much:0.04609662812587735 :0.087237820739446 +of:0.16228144625253454 and:0.10000142961768371 to:0.0907699230346045 or:0.03808504610241204 :0.6088621549927651 +the:0.4646506574828912 it:0.09489464091074723 his:0.09148001346187676 a:0.06922913924344488 :0.27974554890104014 +that:0.09019208896592885 at:0.07229549756029294 for:0.06865621294118193 in:0.06525534125897829 :0.703600859273618 +number:0.44217170790643806 set:0.1397882679800843 suit:0.12899271258982528 bottle:0.037890192480605364 :0.251157119043047 +any:0.36458751704166764 other:0.16723281619278227 the:0.12409065585804906 a:0.11191209506661931 :0.23217691584088185 +and:0.29414671388072655 country,:0.16008905963771303 road:0.07235883908854446 in:0.04686506378430954 :0.42654032360870653 +life.:0.04452226517539868 work.:0.02076141155485539 hand.:0.004080416103743222 feet.:0.003628367205202666 :0.9270075399608001 +is:0.4486541140683783 having:0.29496666736656935 aud:0.08536661360725584 of:0.02831941729878254 :0.14269318765901398 +of:0.36460119670269486 for:0.18741669184631435 towards:0.1360880685204835 ever:0.10441340772570654 :0.20748063520480076 +list:0.07602592404434078 father:0.01904756841671805 ground:0.009224163224443614 ground,:0.008163704375376748 :0.8875386399391207 +of:0.06755892534815752 to:0.053714381077281395 found:0.05210409734554681 over:0.033125556416241146 :0.7934970398127731 +really:0.7859129079778713 to:0.026520060222479064 not:0.02569671031495504 time:0.01815881155587213 :0.14371150992882253 +old:0.07522290493372018 own:0.011657897845623958 dear:0.00564876075236196 poor:0.0056454156538361736 :0.9018250208144577 +favor:0.17597642753359313 case:0.07977492741807662 the:0.06319298759444061 front:0.05832510349933282 :0.6227305539545568 +the:0.6489806072876537 this:0.04927566241150259 his:0.04230092160798846 its:0.03577873343598341 :0.22366407525687193 +to:0.198976792758232 of:0.18419939588404083 in:0.1761882382504247 with:0.12273220791374333 :0.3179033651935592 +English:0.7392836850101783 American:0.024915761114588438 the:0.019366525145196687 German:0.017019010898362857 :0.19941501783167373 +A.:0.9728905724747459 A:0.01647563601944116 a.:0.009538590103772579 4.:3.498722898373915e-05 :0.001060214173056381 +you:0.9513897288386531 all:0.02415309834340428 they:0.01468027102610218 he:0.006360047219328062 :0.0034168545725123006 +shall:0.5171662473416804 for:0.15855833885554854 will:0.1072250644796004 may:0.07700401165434814 :0.14004633766882246 +south:0.12071538190493661 north:0.11363283576437187 other:0.11148878393170837 west:0.10893562874957083 :0.5452273696494123 +third:0.46171627844988566 fourth:0.20162158647816886 half:0.13152296273946576 ton:0.07352736792372164 :0.13161180440875805 +public:0.5740595300005318 lower:0.10504903686411474 summer:0.06807745944906139 high:0.05421912150041388 :0.19859485218587822 +and:0.16324883467029147 of:0.05868703705260563 the:0.0475297087546944 to:0.03524887489250206 :0.6952855446299064 +tion:0.036188658446243485 The:0.03585952143637831 fact:0.03143475179018434 view:0.030749330059442904 :0.865767738267751 +this:0.6371055957710731 your:0.11528895619736715 such:0.07483797566856441 the:0.05338550710910352 :0.11938196525389196 +all:0.9963339619835917 no:0.0005043288701227803 much:0.00011738611878984994 their:9.446200670695589e-05 :0.0029498610207886683 +It:0.5167451910217866 it:0.31572786496420546 which:0.027607279952664012 and:0.022483753279096515 :0.1174359107822473 +that:0.49178615888052957 a:0.33813961923261204 the:0.04520905508543279 then:0.02430942144839335 :0.10055574535303229 +of:0.6811918726260098 by:0.22531567903068997 in:0.06518243225960205 and:0.018599151951364266 :0.009710864132333887 +feet;:0.6216469525333466 feet:0.03658597941724903 extending:0.027974119079761564 feet,:0.021607547455986108 :0.29218540151365674 +;:0.3286455697968568 at:0.27052781418822563 and:0.20241438234255785 in:0.1294940799838578 of:0.06891815368850195 +do:0.13694825640402933 letters:0.12057135650142915 that:0.11595380899858908 which:0.11180799513266321 :0.5147185829632892 +man:0.06903063007769725 hair:0.062121253360987755 voters:0.053076606873495115 people:0.033011406665785885 :0.782760103022034 +favor:0.4438356144756519 support:0.32308267795630324 spite:0.023686940208649265 behalf:0.008886162374755244 :0.2005086049846403 +the:0.4879389285697744 this:0.15136754173208136 their:0.07940840261024562 tho:0.02326759436299726 :0.2580175327249013 +the:0.8420297308772969 tho:0.03817890475618096 tbe:0.023289723935906344 a:0.0227942082501487 :0.07370743218046703 +the:0.4362217246597118 some:0.10696901882671446 recent:0.07755636293401275 two:0.059101070175458355 :0.3201518234041027 +United:0.026383507984645768 new:0.02004450424838257 American:0.01821197589365226 present:0.017600772768568543 :0.9177592391047509 +them:0.4126079529255011 in,:0.2884343528641263 up:0.04725692638889975 by:0.038410353754912294 :0.21329041406656055 +M.:0.21387825119190143 B.:0.15352405277085632 A.:0.1415466529141944 H.:0.12123859893251203 :0.3698124441905358 +the:0.40154985848518737 a:0.12869414147076122 his:0.04325485620909561 their:0.027871464400410984 :0.39862967943454486 +who:0.926103553668228 present:0.03213975210031812 he:0.00707704528419016 we:0.0037545411863267784 :0.03092510776093692 +But:0.3338258550488491 but:0.0849648376412257 set:0.0605479502538897 and:0.03952869484829186 :0.4811326622077436 +he:0.5316483308758432 report:0.04462292570326423 road:0.037775944214589054 present:0.02781204115615216 :0.3581407580501513 +this,:0.044329348369222706 this:0.028934693910216237 up:0.027387640119893236 over:0.01281661657471863 :0.8865317010259492 +and:0.08797361912171994 that:0.057851517204981155 as:0.04890498379159 the:0.04534202160742286 :0.759927858274286 +that:0.9996837868720873 bv:0.0002630666414529586 of:2.293594659894661e-05 by:1.8360399158410183e-05 in:1.1850140702400255e-05 +one:0.04675332824622523 self:0.04103501275387709 and:0.0371158254016132 because:0.03320424654989169 :0.8418915870483927 +re-:0.111792248754189 in-:0.056805802693410255 apparent:0.05410148446291405 terrible:0.04344166492729466 :0.7338587991621921 +interests:0.11004827344476201 business:0.09299671375694359 men:0.08616951310719423 credit:0.05067919534562658 :0.6601063043454735 +ed:0.08049314525744712 1:0.027114675070161326 year,:0.023526677293363947 are:0.017257068107123685 :0.8516084342719039 +pay:0.3796698801357114 be:0.23862540849518152 find:0.11016305117991705 form:0.11004643428140796 :0.1614952259077821 +per:0.35224551650401514 to:0.10816419967022953 for:0.04431774365165866 a:0.039050579875138075 :0.45622196029895845 +party:0.1486516404223503 same:0.033566542940660825 county:0.03222186489994225 highest:0.0320030999301117 :0.7535568518069349 +the:0.34377020184158485 all:0.03683922773911156 other:0.03327598478684879 a:0.03299205073710622 :0.5531225348953487 +M:0.3444680658448865 R:0.34239814188575396 11:0.19541409871927792 E:0.060880164945314855 C:0.05683952860476688 +the:0.5855739807496817 county:0.06230516153828366 said:0.0586326600444904 corporation:0.048022526948290026 :0.2454656707192541 +of:0.7628198964579141 over:0.047210319083227634 and:0.04103595230710362 worth:0.03395339710534604 :0.1149804350464086 +Beginning:0.9026914398830063 beginning:0.013208358737563108 ning:0.00032361200658609157 lot:4.247086215452435e-06 :0.0837723422866293 +they:0.5762940240168046 we:0.03906284716226226 there:0.023784097632383486 you:0.009596836565944707 :0.3512621946226049 +with:0.09550592650868885 .:0.07449471847725869 son:0.06931082867933393 an:0.06342646490216143 :0.6972620614325572 +be:0.6765888668838357 the:0.0783145491852407 take:0.03846420602830852 have:0.03822448916732431 :0.16840788873529078 +of:0.3494967729201736 in:0.1816616768673754 to:0.11807688115771472 on:0.0872305720231024 :0.263534097031634 +nor:0.4093923202280388 When:0.051695442938444046 who:0.04568095871358003 it:0.025829467523358324 :0.46740181059657876 +of:0.08878392770007036 and:0.08645661880329743 the:0.0832090836318876 to:0.04666663335699823 :0.6948837365077462 +may:0.22526279313364467 to:0.16362283837705263 "I:0.14866457472390704 shall:0.1382286064449415 :0.3242211873204542 +get:0.2938284947499689 keep:0.12094272798669352 go:0.08524295660978386 be:0.06337227822703297 :0.43661354242652073 +beauty:0.04830180525757881 benefit:0.04627957750453165 support:0.04209285018269277 fact:0.03707579449008451 :0.8262499725651121 +fish:0.06252994655798613 buildings:0.061165329996221506 men:0.052767264786328066 eggs:0.04143134424939817 :0.7821061144100661 +to:0.5198849550987427 of:0.17886617909648972 and:0.126897363277807 which:0.055563620174127984 :0.1187878823528326 +to:0.30825294972273554 and:0.12072977730955527 the:0.10964597807157109 who:0.05253006702503481 :0.4088412278711033 +They:0.32332592297699714 interests:0.18844343509630399 people:0.12085586219514828 I:0.09803474760907904 :0.26934003212247154 +who:0.9586203479540328 that:0.011214805274851353 whose:0.009624551443271283 too:0.007125633712241137 :0.013414661615603158 +fact:0.04282644341874661 water:0.03212249444929919 is:0.03096023062930438 city:0.025535165433587352 :0.8685556660690622 +ex-:0.1136904045677471 Chicago:0.07599124616971904 late:0.07414851125549397 full:0.05046049678414288 :0.6857093412228971 +and:0.9814834308100808 with:0.011730616328465095 bearing:0.002673923462100504 aud:0.0011831080164192292 :0.0029289213829342855 +into:0.40173062961688477 over:0.3511780241292459 in:0.09112221341357601 down:0.08639501206835233 on:0.06957412077194093 +There:0.3392203664325778 there:0.10597901004805553 It:0.07039478399185063 This:0.05567484257490523 :0.4287309969526109 +city:0.11425774588478399 room:0.11260442376155039 station:0.08339923951534878 District:0.06816371845706609 :0.6215748723812508 +said:0.7304945055342061 such:0.1624622928508518 the:0.03613834617921799 said,:0.025149835783133703 :0.04575501965259038 +national:0.24177339558240432 large:0.14020341122002744 new:0.1398504819116125 bill:0.06328158808938113 :0.4148911231965746 +the:0.7808473227082895 tho:0.08148529578721832 our:0.06972827112036999 its:0.025327806736822524 :0.04261130364729958 +has:0.3351019604230915 have:0.25811364226128225 had:0.21268746075929285 having:0.03786886065931226 :0.15622807589702098 +the:0.1986389560502504 for:0.05709986222006103 two:0.053930248469955124 more:0.0329638665063476 :0.657367066753386 +duty:0.07706762968661116 way:0.05781300945519696 children:0.05349020690124339 attention:0.050370692523669616 :0.7612584614332789 +soldiers:0.8904147739606249 night,:0.006260157735192487 it:0.005867004177240607 light:0.005746390389672544 :0.09171167373726954 +morning:0.091828857183109 time,:0.04523787827395355 time:0.017118148035949878 went:0.012582994780912553 :0.8332321217260751 +as:0.26886371123483066 with:0.25356262601659857 after:0.1183195878461071 in:0.11306780205391387 :0.24618627284854966 +will:0.705254097126239 of:0.16489983002842387 to:0.0775817320034782 was:0.028050312312886096 :0.024214028528972812 +the:0.4345461879575036 these:0.08569900885368092 a:0.062367268432440295 U:0.04991445297543245 :0.3674730817809427 +estate:0.48128270163005804 estate,:0.1994755500487094 and:0.011829319261110005 of:0.009416429853830552 :0.29799599920629205 +and:0.07714153099736018 con:0.07075244232168498 in:0.05955938071722957 la:0.043772308497644824 :0.7487743374660804 +they:0.1977237631607889 We:0.16597780748608085 They:0.09714959605544501 it:0.0958295156037767 :0.44331931769390853 +committee:0.08070470655831426 mere:0.06253118794245624 word:0.059782715830646385 platform:0.057275771087873774 :0.7397056185807095 +about:0.17790248812268572 late:0.05212876954089452 the:0.03381257014713754 ner:0.024763668410205334 :0.7113925037790769 +the:0.4164239254140303 a:0.11335816830287118 his:0.03676967348561418 tho:0.02965931584054866 :0.4037889169569358 +had:0.13527484793031716 was:0.07953658084518221 has:0.07174348753494623 will:0.0691278783723167 :0.6443172053172376 +the:0.1386964009740263 New:0.08420536797927351 this:0.05944751274293028 Chicago:0.05294700163274907 :0.6647037166710209 +him:0.052757425351228834 tion:0.04746212784820227 One:0.04565628176131348 ment:0.04234407083517909 :0.8117800942040764 +city:0.0841491442438392 country:0.022031738178254927 people:0.012646404389278833 constitution:0.011826646321225199 :0.8693460668674018 +the:0.1024013166056167 and:0.09374187879026058 of:0.086274672820316 to:0.04599878533002067 :0.6715833464537859 +name:0.31106334768427135 face:0.16007668523123605 wife:0.1171729351460666 hair:0.11428078702528408 :0.2974062449131419 +of:0.2489691256672005 to:0.056686401526021495 the:0.02496155400944123 British:0.014293979868027112 :0.6550889389293095 +will:0.21785107945309798 and:0.20529092210327754 classes:0.1385267351309263 should:0.11095984943596049 :0.32737141387673757 +the:0.4862756160691513 a:0.0471820738386916 St.:0.03607296984336469 their:0.03222695821835928 :0.39824238203043316 +order:0.17565911455488983 the:0.13152279444567525 taxes:0.07592517780058046 cases:0.06456985105817584 :0.5523230621406785 +the:0.5230003066890194 tbe:0.11834062409644092 ihe:0.08909951764537224 tho:0.08485227116836361 :0.18470728040080378 +which:0.1706538900851074 as:0.10424994834705709 and:0.10283892391344576 that:0.06447557063903502 :0.5577816670153546 +necessary:0.268505352472282 that:0.14613184714084498 the:0.11997398916532494 im-:0.09404705303767173 :0.3713417581838763 +side:0.7190274141670087 line:0.2658085342382602 boundary:0.005594328427637324 end:0.004015249413601277 :0.0055544737534924055 +whether:0.7415860076103267 that:0.22621988144009764 more.:0.008889537926303936 what:0.008742071668042492 :0.014562501355229315 +the:0.39245593572652243 after:0.3259922716893009 0:0.042169587798754404 9:0.038150436418748206 :0.20123176836667409 +to:0.22796536323521932 and:0.15972960521765264 the:0.15647597913430983 or:0.07551289902795616 :0.3803161533848621 +the:0.7512495713316398 an:0.07925745745219086 their:0.058064566677764225 tho:0.05155908060158745 :0.05986932393681758 +and:0.05338527282191209 them:0.017539188331919194 it:0.013367821981514087 him:0.012742032587465155 :0.9029656842771896 +been:0.9028635493964312 now:0.015562344140746703 to:0.01147466209906053 also:0.01037901692858556 :0.059720427435176034 +and:0.08585210999472562 of:0.026088478908388203 was:0.022214952983129768 is:0.0204629649685815 :0.845381493145175 +the:0.4805763967481517 tho:0.17688688000042152 a:0.10753344414864681 his:0.0315107476561236 :0.20349253144665636 +the:0.1823415712706263 The:0.11871632645058336 His:0.06802555056909361 "the:0.058858405303521016 :0.5720581464061757 +of:0.17108840576237092 to:0.10073274381308563 and:0.09965651891347473 by:0.03429287426295997 :0.5942294572481086 +in:0.22512383711443876 the:0.21057181379800516 of:0.1728979679940341 one:0.14578588131938033 :0.24562049977414183 +you:0.3127591211894961 not:0.11842282084258092 so:0.1053885716623214 so.:0.08539254195905774 :0.37803694434654384 +in:0.558711071562759 of:0.16632160840607801 In:0.10642909868970643 and:0.042427052906402044 :0.1261111684350545 +for:0.3613986991387947 of:0.35602420855531514 in:0.07503858189204853 the:0.04790335521656324 :0.1596351551972784 +It:0.13015398249232862 He:0.09251256765489606 he:0.07307696772758936 it:0.06117607548937592 :0.6430804066358101 +the:0.16427329440097505 and:0.08425544911542548 of:0.07673054385268448 as:0.06157692496906601 :0.6131637876618491 +to:0.25342367044027697 We:0.17831518474739252 you:0.15950948009605384 and:0.10852872106818999 :0.3002229436480867 +report:0.06320871522020838 moment:0.05231218378501477 Indians:0.03329017782185736 bill:0.030369090655826738 :0.8208198325170927 +of:0.951753263517387 ol:0.02784355879118651 which:0.008877013777079237 paid:0.006364659434632278 for:0.0051615044797151104 +the:0.39950159170574906 tho:0.15763368374186248 our:0.14535763587163267 their:0.0950525288169339 :0.20245455986382185 +at:0.13925133337613843 made:0.06945297222422321 on:0.04440592895894032 doing:0.03622992233371492 :0.710659843106983 +been:0.369420642097707 be:0.23151891461059187 as:0.11409023733532474 was:0.062455430676946026 :0.22251477527943042 +the:0.8601487381046082 a:0.030256234168058314 do:0.01187510638061315 de:0.0078033699967185585 :0.08991655135000161 +proper:0.15619174602541125 home:0.07775253611961719 and:0.03877798786450732 first:0.02754591322789898 :0.6997318167625654 +make:0.2804451954436089 made:0.06634174954062393 went:0.057227604007040966 broke:0.055188597759220435 :0.5407968532495058 +great:0.00618134738426711 the:0.00382546088448998 world:0.0028738442432031425 political:0.0024164832599490797 :0.9847028642280907 +year:0.414923301634685 week:0.10346460647372457 reference:0.09970461716108216 meeting:0.03474128223777636 :0.34716619249273195 +to:0.9955929439439544 te:0.0015807062576399659 lo:0.0008176350246116667 will:0.00021956783357494745 :0.0017891469402189063 +the:0.30253671445617486 a:0.060440229366760446 this:0.02193840188761372 once:0.013782902477626062 :0.6013017518118251 +found:0.09213883983626228 lies:0.0807666353496642 and:0.05040614279171949 is:0.028043968583705014 :0.7486444134386491 +the:0.9578070636849658 said:0.019393113479346805 tho:0.008544519286359162 January:0.0022788673609966613 :0.011976436188331413 +to:0.10679434379448037 with:0.09895259341774884 upon:0.0731596343690092 that:0.07094700555384646 :0.6501464228649152 +not:0.1308740454664113 the:0.04208849753920881 too:0.039587165303616834 from:0.03520628200835966 :0.7522440096824032 +of:0.22451591869812149 to:0.12365562187524143 upon:0.1081110386515608 in:0.09233185335990428 :0.45138556741517194 +and:0.3556876592189817 If:0.14738638951850805 of:0.1260728142377595 but:0.11795341691211618 :0.2528997201126347 +place:0.9940820915702397 point:0.001379934343813308 town:0.00015139211964412287 city:9.566974432074608e-05 :0.004290912221981989 +latter:0.12865789517144796 living:0.055896484377352104 is:0.0281135689138579 waiting:0.026553120019538894 :0.7607789315178032 +serve:1.5854167234916783e-05 light:1.318716746493945e-05 scribed:1.187945436408436e-05 vote:7.361571900928643e-06 :0.9999517176390349 +ment:0.6063784570216105 to:0.1854297477633901 can:0.1674872659499573 will:0.012957650018353882 :0.027746879246688273 +steamer:0.9999995564569059 would:9.665370195271844e-08 been:3.831588170736395e-08 vessel:2.372754153911117e-08 :2.8484596903987773e-07 +am:0.8379579745854471 was:0.011289554519979055 myself:0.0033756046813376082 are:0.00286340940951572 :0.14451345680372069 +at:0.28914235365121294 .:0.222990333556173 the:0.07866913893629011 is,:0.07252710372501982 :0.3366710701313042 +or:0.9991187795271559 Saturday:0.0003479697976384959 oi:0.00013307010149115716 01:7.50264684389957e-05 :0.0003251541052755693 +of:0.22181483501625743 in:0.1534472240875928 and:0.15134345994878515 to:0.12844712369916492 :0.34494735724819964 +all:0.22802049810670263 of:0.0515197719857496 affairs:0.04659663916188633 whether:0.031989406905589886 :0.6418736838400716 +the:0.9057718833780576 tho:0.020890799744988104 tbe:0.020431528319088746 their:0.009025810295150843 :0.04387997826271475 +The:0.10582875659530236 and:0.09644363489880614 the:0.09443900071729741 of:0.07684409889726102 :0.626444508891333 +electric:0.04609809883868374 wire:0.0432960572332025 con:0.0424232357880388 local:0.041268965580694504 :0.8269136425593805 +the:0.3329764334816573 a:0.10646999969628969 tho:0.026860343757414654 their:0.02261122513249302 :0.5110819979321454 +that:0.8557837696359014 of:0.049028916701663434 on:0.025388412347179787 in:0.02130154682424533 :0.048497354491010176 +from:0.3842948171108142 at:0.22315249164325826 At:0.1002850198181997 in:0.04848053275156715 :0.24378713867616064 +I:0.7046500642864872 1:0.164102900459831 to:0.04788779614630017 not:0.03732197879810636 :0.046037260309275234 +then:0.6478552451381108 he:0.2996286124405585 has:0.03124157921251978 so:0.006399528716175278 :0.014875034492635697 +by:0.16984626718658238 offices:0.060868631864174266 have:0.052829540693829155 do:0.04452056764587722 :0.671934992609537 +I:0.032713234641121705 -:0.012681153168568588 One:0.011351425648667335 the:0.006919826468275145 :0.9363343600733672 +the:0.6528742058280702 all:0.0812219309490003 tho:0.02811436423194499 their:0.02428486482383508 :0.21350463416714943 +right,:0.09517766397475425 honest:0.060617151952536606 able:0.0442586251101594 dead:0.02002714360993471 :0.779919415352615 +church:0.045093124932468955 too,:0.030277868127175336 offices:0.02228788096022286 here,:0.02013156036237154 :0.8822095656177613 +cent,:0.14829459897727365 cent:0.11173014157478225 cent.:0.08387183774891922 100:0.011733018570800391 :0.6443704031282244 +often:0.03182569217320159 slight:0.017168919240159196 house,:0.016162637442279817 house:0.014885143901356007 :0.9199576072430032 +of:0.6697294538974216 by:0.23566893675029035 in:0.03469167278600993 ot:0.02666706583125886 :0.03324287073501916 +of:0.9370278364773524 to:0.016633649572396242 in:0.01016330279654343 with:0.009350011219310374 :0.026825199934397553 +met:0.5186231913260573 even:0.1707670581834748 satisfied:0.013939478277657073 pleased:0.009434330987063925 :0.28723594122574675 +and:0.42556979555702756 for:0.23358038043082371 in:0.11373838676165451 is:0.0838140319238904 :0.14329740532660395 +the:0.4266078711009618 a:0.16268125811783024 we:0.06272135630388653 he:0.0484805938133461 :0.2995089206639753 +the:0.6519530992142832 tbe:0.082956418581889 against:0.07706035086307192 a:0.07477043032983612 :0.11325970101091958 +that:0.6001702862427816 if:0.11358786904579819 and:0.11169268131515114 whether:0.05824608178844424 :0.11630308160782471 +of:0.6670852030044904 to:0.10308927340578862 in:0.078260256360622 and:0.03197255294761629 :0.11959271428148267 +heart:0.2565208428486901 center:0.12281464440644188 nature:0.09000198279569703 face:0.048426827896279605 :0.4822357020528914 +be:0.1640032688184947 make:0.07707276019823117 give:0.05859384117990606 have:0.05796399138327183 :0.6423661384200964 +by:0.7634133110113621 in:0.1081785912358053 to:0.06571008916652864 of:0.034108509324779324 and:0.028589499261524612 +with:0.8269918348983273 the:0.03488144247116553 and:0.016909092461348908 to:0.013616946487328188 :0.10760068368183022 +the:0.1777549502094759 of:0.15655310784926751 and:0.11534710779343851 The:0.08347781194727794 :0.46686702220054016 +of:0.33005384309295716 and:0.16307063676550362 in:0.10650079035209072 if:0.06584591292309895 :0.33452881686634944 +in:0.4194109750389688 them:0.1409140878660968 than:0.027004231941465968 God:0.01678218736099511 :0.39588851779247336 +not:0.6251718583906171 a:0.2609033604288599 uot:0.05073004996814111 so:0.03417105495429931 :0.02902367625808266 +de-:0.0813277826948196 hotel:0.0363068523275268 condition:0.026169041155810233 p:0.02421516260613264 :0.8319811612157106 +most:0.02123389711323067 the:0.015282270106668293 said:0.010640610585601055 following:0.010121412066918828 :0.9427218101275813 +been:0.9407989656042909 not:0.021732142197243263 recently:0.017789260768964695 also:0.003547707973738878 :0.016131923455762497 +located:0.10760598476090294 thought:0.07330488492109512 found:0.06493201766058623 steady:0.06338633395636559 :0.6907707787010501 +of:0.07416604402834896 law.:0.035977840462882764 and:0.030996623489406818 .:0.009696753475853337 :0.8491627385435082 +tell:0.2212542075215562 have:0.1931713896449341 were:0.08072150656241632 are:0.05861678640001612 :0.4462361098710773 +from:0.11655650990610934 them:0.0641301131378112 and:0.02019776122613647 of:0.01614992270257565 :0.7829656930273674 +the:0.560041718983365 a:0.078354059310982 his:0.047242037345983055 tho:0.030867794762930483 :0.2834943895967393 +deep:0.12552562392830643 black:0.1086065302908498 quick:0.07167462621666514 look:0.06538653520983334 :0.6288066843543453 +visit:0.02951480070411464 record:0.02313408475875374 organization:0.011745216230738001 ?:0.006309756389517372 :0.9292961419168762 +a:0.12909405311569688 to:0.12012622668866038 and:0.10965382396264194 of:0.094920142820193 :0.5462057534128076 +sale:0.08622364125045169 issue:0.08613433971404151 breaking:0.06030838666177473 spread:0.015653276102901913 :0.7516803562708301 +part:0.24782639362926265 end:0.15466878592577338 house:0.11126424355882479 counties:0.10934317224316414 :0.37689740464297516 +be:0.30249895282596523 been:0.27406357995537994 not:0.1810247981682746 or:0.12743112234979184 :0.11498154670058845 +the:0.5080252137726097 his:0.05371110716163521 mixed:0.046384695418737444 said:0.04609915124020068 :0.3457798324068171 +ment,:0.03738324220629895 to:0.036909295811856584 conditions:0.022696365172768993 This:0.019561086311876332 :0.8834500104971993 +the:0.38197051177308233 a:0.18679874024146953 his:0.04565467566263278 an:0.03427023786077966 :0.35130583446203567 +little:0.14945643242337528 popular:0.09488775623812942 quiet:0.08615761498654141 few:0.03589466575718644 :0.6336035305947676 +dred:0.07299603415222256 sand:0.06888693315795841 millions:0.04512168321221378 thousands:0.029600007160249225 :0.7833953423173561 +and:0.13627629621658352 but:0.03482968937933628 a:0.028760309455684727 against:0.020870416787685152 :0.7792632881607102 +will:0.3667809228309325 would:0.2631519446827891 to:0.17023720188547983 and:0.05421634259844931 :0.14561358800234928 +thrown:0.3145153712143017 put:0.09300901640989394 brought:0.05878288633228908 turned:0.04231700378424587 :0.4913757222592694 +came:0.5249028416729096 fore:0.08226233366064424 is:0.08210940436014146 come:0.07052344075240428 :0.24020197955390032 +ones:0.054382321675101694 sister:0.04961890583399641 tor:0.014771383464916923 friend:0.014092907219324217 :0.8671344818066608 +the:0.019862334841569566 a:0.00709501204368277 gold:0.006341237445551724 men:0.005400845241145591 :0.9613005704280506 +cause:0.4178799245637641 fore:0.3889726495628518 if:0.023777764244598223 ing:0.022980869410285088 :0.14638879221850087 +H:0.17177377057182602 W:0.16727614106451752 D:0.12824699362298184 P:0.107134732207732 :0.42556836253294267 +estate:0.5403962765536291 matter:0.02227146396784563 discharge:0.017553077810362597 duties:0.01143389845261453 :0.4083452832155483 +way:0.0842711481797302 friends:0.07411454670088631 honor:0.050181769797982737 will:0.036708171907254866 :0.754724363414146 +.:0.30154050641689273 r:0.08052893110135259 a:0.07530561981786191 Justice:0.05133417734239538 :0.49129076532149735 +head:0.19925512397521716 ground:0.09770480919206151 floor:0.05396898228714728 ground,:0.047087256362206585 :0.6019838281833676 +and:0.07480587501460441 of:0.0704642253797668 the:0.058915899457411436 to:0.028140466877552582 :0.7676735332706648 +an:0.04612059552727518 the:0.03977403621464292 for:0.030008082199736903 and:0.021347095061612403 :0.8627501909967327 +and:0.17179225794591477 was:0.055071183398955545 the:0.05251869843739465 of:0.04383381097661679 :0.6767840492411183 +of:0.19891381996549568 and:0.10850574382055321 in:0.083874273271317 the:0.07859420110926371 :0.5301119618333705 +failed:0.08559447809952565 come:0.08457617541540913 gone:0.07858669857583198 nothing:0.05981766113022053 :0.6914249867790127 +the:0.16239664895192335 search:0.08847919837645105 favor:0.07821360141675089 case:0.046372769815481975 :0.6245377814393926 +facts:0.25689768036288396 stock:0.15103171393487666 people:0.004867060873374128 proof:0.003754976275842191 :0.583448568553023 +year:0.18389685831106656 night:0.10369489153099708 week:0.08608457255154048 year,:0.03687696082433943 :0.5894467167820565 +been:0.30601945489267074 a:0.12041415415335605 the:0.08456196657982268 an:0.0465550956471875 :0.44244932872696296 +division:0.0716696082121144 boundary:0.0060514554323152165 District:0.0011450422208211753 Union:0.0008679633099925111 :0.9202659308247567 +The:0.5519812266951534 my:0.037343053342470844 his:0.02450123479576875 the:0.01976806850740713 :0.3664064166591999 +forced:0.16345217956150823 called:0.09132583093014145 made:0.07032737979014235 passed:0.05976036734456111 :0.6151342423736468 +but:0.6553374071262419 are:0.23306518522761543 and:0.06168511638564299 too,:0.0261774453872299 :0.023734845873269714 +the:0.03283019875951286 in:0.031948411823700194 and:0.025624452221163444 1:0.024867941511565454 :0.8847289956840579 +control:0.40936183687758315 of:0.2633641467140267 to:0.103308504785142 over:0.05776737313202902 :0.16619813849121914 +for:0.43108594871389994 to:0.21839489722284106 of:0.09567559385400119 and:0.0743599844938085 :0.1804835757154493 +pounds:0.383586626038561 and:0.0017116313162356316 tons:0.0017045164493999234 cents:0.0014321481760264166 :0.6115650780197771 +above:0.7467651692828254 to:0.11632058942248603 from:0.030629670546417357 that:0.013822888982385588 :0.09246168176588554 +walk:0.11456140404960104 continue:0.01915102243970737 stay:0.011412127273921407 see:0.011094084585049548 :0.8437813616517207 +in:0.7002774364678225 -:0.02728059054119451 test:0.014689814823580874 the:0.00826453769387812 :0.24948762047352405 +not:0.4046753545315018 have:0.12987680451707456 scarcely:0.1031044136280435 hardly:0.032782833187530974 :0.32956059413584904 +business:0.017956022901227543 business.:0.005033562430289952 hands:0.0028524223138582405 city.:0.0019085552846373898 :0.9722494370699868 +by:0.21760982832034595 with:0.19270208375464132 that:0.15474506507341287 hy:0.12928984550836625 :0.3056531773432335 +J.:0.17672372244567464 E.:0.11887039505644216 P.:0.11282302438173264 T.:0.0836978569654376 :0.5078850011507131 +down:0.3421976143721717 her:0.19579991579650574 out:0.18730686556411788 him:0.06164294992212957 :0.21305265434507514 +the:0.4260577952799087 you:0.2959267290841062 all:0.09277816121924558 at:0.08677851468843523 :0.09845879972830415 +In:0.19303365392066166 from:0.15894314433172077 by:0.13677187653667952 bounded:0.11301988331032216 :0.398231441900616 +to:0.2213486228776356 up.:0.2053994055284875 from:0.20463076078739006 upon:0.19775297073593598 :0.17086824007055093 +Mrs.:0.33559127817485424 J.:0.09622225294529198 C.:0.062408691943749775 W.:0.061200285016355285 :0.4445774919197488 +the:0.6548833603960201 tho:0.08181890276167327 a:0.070577007736807 its:0.0667226794713686 :0.12599804963413108 +of:0.2109660870570884 on:0.20449146597267726 by:0.20188462725666098 in:0.18609757849142788 :0.1965602412221455 +as:0.17206538801008722 and:0.15147574105007117 that:0.1215211421104616 but:0.08287438213524949 :0.4720633466941305 +material:0.2679305144926334 common:0.12863827193873562 actual:0.09712855163575362 vast:0.07925982859242917 :0.42704283334044807 +come:0.2477442384292219 died:0.17792161109856292 fallen:0.09449853429202969 returned:0.05718841891577759 :0.4226471972644079 +Wm.:0.15202486510556937 J.:0.13229331936619743 deg.:0.11256132828796532 F.:0.09798754979324809 :0.5051329374470198 +sale:0.49600029324148437 a:0.059512800873244 tion:0.01431239186450341 out:0.012615382382743342 :0.4175591316380249 +of:0.6624155727658128 its:0.11263257315082695 and:0.07318505706904435 gave:0.0514504293364504 :0.10031636767786567 +and:0.12140698346460797 itself:0.04413975693316537 this:0.03476744721721333 interests:0.02988900586997615 :0.7697968065150372 +a:0.6269375777931898 the:0.24269417076973904 that:0.0992767870643747 no:0.00790266350164271 :0.02318880087105378 +the:0.03712399725305524 W.:0.030506510162553704 N.:0.02941752721813266 V:0.029412072020928576 :0.8735398933453297 +nnd:0.30189120276329917 but:0.2635429046595035 as:0.1674434507623906 who:0.15716876212493233 and:0.10995367968987434 +of:0.9603722424939624 ot:0.032067760111282734 or:0.007323609050546335 in:0.00010071651903211846 :0.0001356718251765348 +we:0.30885286079061475 and:0.1712110357463393 lie:0.09380936641594215 was:0.07223145729262563 :0.35389527975447826 +of:0.4110390680821995 the:0.17097308336090963 to:0.11913472927058226 in:0.10031329335663901 :0.19853982592966957 +road,:0.027251158287208522 north,:0.0052468180097518715 running:0.004798212580500387 street,:0.0026838454020898335 :0.9600199657204496 +and:0.8123885719682578 of:0.01643424279261263 the:0.015210165166210125 on:0.007231493446562794 :0.1487355266263566 +a:0.38204905148141216 the:0.2514031185761208 but:0.10040218895453552 very:0.06376742910427263 :0.20237821188365893 +be:0.45905577520096813 not:0.30906732857202496 bo:0.04907426325190841 pass:0.029609110708867417 :0.1531935222662311 +of:0.46439798613407735 in:0.10973514596303148 to:0.1023286258339233 and:0.07845542190723676 :0.24508282016173114 +of:0.17515436856938543 and:0.07944416135381246 to:0.031386974342267865 the:0.02962073099994309 :0.6843937647345911 +promptly:0.9486855389819356 the:0.0023555847032743753 a:0.0013910038648152902 in:0.0009097189711811834 :0.04665815347879338 +they:0.1431644094734947 we:0.10102509988365815 it:0.0997339908524063 he:0.08565566291882412 :0.5704208368716166 +school:0.05890060980188405 prices:0.0335705755520682 command:0.025421824774845572 wages:0.008420717225529421 :0.8736862726456728 +would:0.4598773318803361 will:0.4431661099773231 may:0.047398633446645064 must:0.02731307149524246 could:0.02224485320045325 +the:0.9133500042336306 many:0.04175352481229043 any:0.014731838473874189 all:0.009097039571599727 :0.021067592908605094 +the:0.517870916559772 a:0.10217828498738617 tho:0.03134971808380379 his:0.02443473982139152 :0.32416634054764665 +would:0.45875759854554315 will:0.29913969981663113 may:0.11080850725163202 didn't:0.033969365612570586 :0.09732482877362307 +of:0.24605438382589687 and:0.12679081378874307 to:0.07216434369551006 which:0.06572588048109798 :0.4892645782087519 +questions:0.018191843377549363 days.:0.007200644537687148 .:0.001275480368715461 ?:0.000876013820776819 :0.9724560178952711 +fear:0.1898985472197893 complaint:0.05333046768554055 statement:0.013991765084816392 condition:0.012667269780071952 :0.7301119502297816 +it:0.4072415814378766 he:0.2463628703086065 the:0.13004007066852016 I:0.08460765925264192 :0.13174781833235483 +the:0.19146578315205418 The:0.0767166975692117 and:0.05749000155324744 a:0.04884314088426533 :0.6254843768412215 +and:0.18936443303453518 in:0.1480242205922926 at:0.11026942193925869 to:0.039293013244109894 :0.5130489111898038 +near:0.5314009503896663 far:0.1792133575412869 nearly:0.12693710573157452 soon:0.12456965524383581 :0.03787893109363629 +result:0.1469177442956008 cause:0.10762338427982288 case:0.08114676199465007 results:0.06483635601034295 :0.5994757534195834 +as:0.9577942062531315 the:0.028473582665182264 a:0.004476335680895645 very:0.004218349671231142 :0.005037525729559635 +of:0.5269098852470963 was:0.10966710303420477 and:0.1021077871973166 t:0.04882054056452427 :0.21249468395685808 +should:0.8103446707978544 did:0.08590824968773597 will:0.053433220057079685 do:0.04394133456924286 were:0.00637252488808711 +and:0.4830488474435021 right:0.04953309414761811 us:0.0238519706642262 extending:0.02318130363955305 :0.42038478410510055 +the:0.05552970797235687 and:0.026138132540969288 near:0.016712507009124394 other:0.015385957375777028 :0.8862336951017725 +to:0.36927278216705484 and:0.14985631974291622 of:0.1124259824495212 He:0.022164341037267964 :0.3462805746032398 +an:0.599218529982012 of:0.1028323002918063 the:0.04670141176870794 la:0.03757337737371005 :0.21367438058376378 +the:0.22280593095541315 and:0.133686611130432 The:0.08710902015605106 a:0.042189515411102246 :0.5142089223470017 +already:0.5379698661364352 been:0.3073763416115804 in:0.040581852121310345 of:0.020791849102746365 :0.09328009102792761 +the:0.4026676678325437 a:0.08573816337043917 »:0.026832209836287552 tho:0.019254143459043332 :0.4655078155016862 +I:0.1371628294822042 during:0.13207584126847619 and:0.11380191374129905 to:0.08687497964339853 :0.530084435864622 +in:0.23454599667427392 under:0.22779121684206508 by:0.22659160739461154 In:0.15842273886580277 :0.15264844022324672 +determined:0.24416671179410396 called:0.017316603042583183 heard:0.009388299748978942 due:0.006833703634550368 :0.7222946817797835 +to:0.37807227102736934 will:0.22803313650963206 shall:0.138667724583711 should:0.07366858407814177 :0.18155828380114594 +more:0.14105671058845304 than:0.02926446915829188 known:0.01813864406975023 ing:0.016187258061242445 :0.7953529181222625 +in:0.3434138846061024 not,:0.25891793418416736 on:0.09282392220328037 at:0.06683076742708949 :0.23801349157936047 +tue:0.812101768398499 kind:0.06208317858672369 virtue:0.022680779542362903 son:0.022142367416840735 :0.08099190605557369 +for:0.6525556947400264 that:0.27954157357038245 him:0.02684634831976845 you:0.005642798988607669 :0.035413584381214815 +there:0.5752435006257898 it:0.1722816871864668 he:0.06945216263786891 It:0.06384451188743853 :0.11917813766243612 +cause:0.014874031418220884 action:0.01310448294645644 members:0.01283425456075284 command:0.011115064918044785 :0.9480721661565251 +not:0.2678152783292583 never:0.16047681032233574 always:0.07889019146695762 in:0.07728525101903339 :0.41553246886241496 +of:0.9865731132056815 oi:0.0057384594258503546 to:0.0017708043706385263 ol:0.0014227570494458 :0.0044948659483836475 +that:0.8705344908148668 what:0.07077218428140677 today:0.02014913922062703 until:0.013447163795165454 :0.025097021887934026 +north:0.6828855099579465 south:0.31056651347790176 west:0.0014475575792616726 east:0.000682215549574743 :0.004418203435315487 +a:0.49938548687389084 the:0.11248159164889321 River:0.03288700152230076 such:0.01560987115464383 :0.3396360488002713 +that:0.1001705243451117 himself:0.08297395733938898 ing:0.06973482602096913 and:0.05384231698305462 :0.6932783753114756 +The:0.05979842317840833 passed:0.04249920390013986 for:0.012087565422019896 the:0.012045725926586641 :0.8735690815728453 +coat:0.040502216878118925 man:0.026616218195416402 number:0.018261577794506094 glass:0.011625076618583422 :0.9029949105133752 +and:0.06505333622122289 man,:0.03397027236593158 or:0.03339155238716925 now:0.0286904691128633 :0.8388943699128131 +men:0.49002120028653584 field:0.04420059667519515 horses:0.010915610699459862 back:0.010850761159830774 :0.4440118311789784 +good:0.09749425047843037 small:0.046412843704212565 bound:0.028478457070184354 quiet:0.02051879721417301 :0.8070956515329997 +tion:0.05676978102720723 day:0.03638549034276336 ment:0.025948785748480366 of:0.02312660722922797 :0.8577693356523209 +Sec.:0.602525715359309 Section:0.14949987893999245 of:0.021283591426913353 further:0.01929889321198149 :0.2073919210618036 +by:0.041304346735525244 to:0.037806085461379896 ;:0.014294144874724057 ed:0.01105250805781298 :0.8955429148705578 +of:0.4039729170648049 and:0.11275343652345454 the:0.051489082111319966 The:0.029992894634044722 :0.40179166966637586 +band:0.17811805056188598 duty:0.1091350469263889 street,:0.024948093231182997 charge:0.022283757648487525 :0.6655150516320546 +to:0.15222090160295337 as:0.14613510859655546 by:0.12966080649773284 in:0.12493311955678045 :0.44705006374597783 +idea:0.14438374431679202 fact:0.1320002326397157 theory:0.041763757429597786 papers:0.028285425564407753 :0.6535668400494867 +of:0.8834228570332313 in:0.02734558219046951 how:0.020495391745883804 who:0.010770853978177048 :0.057965315052238314 +by:0.380004480088353 a:0.0274224649093706 it:0.022695938704570547 he:0.012099466042857816 :0.557777650254848 +of:0.12978495909180435 and:0.02488665100605008 while:0.02166774620390526 or:0.006069341369661309 :0.8175913023285791 +of:0.22009441289176943 have:0.20750524523900282 had:0.132328519401384 are:0.12317236745134406 :0.31689945501649974 +mountain:0.18110174417323496 line:0.12040084487480006 heart:0.07072226004250622 property:0.06976220709944272 :0.558012943810016 +of:0.2889579849954986 to:0.17981265688262857 in:0.16335363787861795 and:0.1130624459859155 :0.25481327425733946 +while:0.2931465693606233 and:0.19134982557764726 to:0.0883011860003796 has:0.06610851695429538 :0.3610939021070546 +on:0.40085417815440527 before:0.2562307129139436 in:0.22046785738088373 upon:0.07098803046479765 :0.05145922108596961 +night:0.3700198357147593 week:0.04674789624684725 year:0.04290702059703204 week,:0.03050351953195118 :0.5098217279094102 +days:0.1039421564908046 times:0.057638745039096495 times,:0.04576843518300907 of:0.03398854125987834 :0.7586621220272115 +the:0.6630604877766249 a:0.1513068462852474 be:0.039663950249298384 tho:0.029817433045420328 :0.11615128264340882 +out:0.2647382365325445 up:0.1052048951554004 it:0.09739263500863342 led:0.05055429546257003 :0.4821099378408516 +looked:0.2805817167784471 came:0.1573835126503526 carried:0.12696781542323504 went:0.11662608086655094 :0.31844087428141427 +the:0.8565279885869486 tho:0.042161055135655004 a:0.01348029997716923 that:0.010015423830046938 :0.07781523247018027 +all:0.9108581162239983 ail:0.013119465740026625 different:0.010087930374475283 nil:0.007098590793771607 :0.05883589686772828 +file:0.026128152948393334 at:0.01970626322152922 to:0.011046428632139949 and:0.010874343895183687 :0.9322448113027538 +their:0.2909778455342968 his:0.24002044413217372 high:0.18984055553532614 bis:0.13067679595629242 :0.148484358841911 +the:0.9627142135093747 tbe:0.02591154526582151 tho:0.006171725258851258 by:0.0030395437975225545 :0.0021629721684299024 +by:0.22593614188137695 In:0.20528061501306177 By:0.18685219248735865 in:0.18133225582226822 :0.20059879479593434 +night,:0.05447580959203234 Saturday:0.047353614420772704 the:0.025149144112111742 evening,:0.02445538714380236 :0.8485660447312807 +up:0.37682613908331514 separate:0.10225117275704525 open:0.07756549217547466 there:0.07433457852596231 :0.36902261745820264 +a:0.02298265929724037 long:0.020901857078478202 the:0.0144503793695246 careful:0.01049133428066063 :0.9311737699740963 +the:0.8455012692741115 a:0.05054400018816462 tbe:0.02543816695326426 tho:0.0232514794446907 :0.055265084139769015 +and:0.16176031528261464 the:0.11647382936736307 to:0.07516584524387784 ing:0.054476204981194834 :0.5921238051249496 +of:0.37174701297940954 in:0.0625317922291223 to:0.05755281918400044 or:0.052485288377026165 :0.4556830872304415 +people:0.006523474290964343 law:0.005409503458528224 country:0.004945298476116476 rich:0.004872613749283172 :0.9782491100251078 +the:0.4968984652712499 a:0.2093301433541125 his:0.0572235685571105 our:0.04632057025314492 :0.190227252564382 +Smith:0.015318110979454104 King:0.007682255602386695 Brown:0.006831607463206395 Davis:0.0036597955442973693 :0.9665082304106553 +well,:0.00912089182403867 ;:0.002833593582143235 done,:0.0012603408497359558 say,:0.0011852051703120218 :0.9855999685737701 +past:0.24105862048348764 member:0.035517434630686656 government:0.029174994364269305 u:0.02186404779487285 :0.6723849027266835 +the:0.4017728049846872 that:0.11262799142212496 this:0.06890732108754447 The:0.061993586981084106 :0.3546982955245593 +expect:0.45116581093423624 time:0.1566032545567729 begin:0.09658260213267376 come:0.08767335916616699 :0.20797497321015015 +no:0.3876202652617666 the:0.2532255314293646 a:0.07224064984204469 tho:0.013179420096572652 :0.2737341333702516 +were:0.9213490141308737 must:0.029818698881760853 bo:0.02137282899815464 wero:0.020231374357673082 will:0.00722808363153769 +was:0.29446707358228413 very:0.17147134072245923 more:0.09365274775814673 too:0.043973787490050716 :0.3964350504470592 +in:0.24047757018246604 by:0.2050529051426472 of:0.14336226822826395 upon:0.11789928249936191 :0.2932079739472608 +to:0.1694270258394434 per-:0.03013352164738629 clear:0.028476791258998043 most:0.02400228737076874 :0.7479603738834036 +see:0.1528043029986677 reach:0.10949821232051193 attend:0.08649919593885412 pay:0.08146978788292825 :0.5697285008590379 +the:0.2296683780542903 a:0.16876080307076846 true:0.040069392476014425 fresh:0.03770066157639251 :0.5238007648225341 +a:0.20433492939805764 too:0.14581966335223498 most:0.10728288308079843 almost:0.07707203625382537 :0.4654904879150836 +and:0.22505090570347352 gain:0.07075090851911502 remove:0.0648587324395537 us:0.05126723788321607 :0.5880722154546417 +John:0.09032724081256387 J.:0.07642658874018267 W.:0.06305901079930659 B.:0.050959148802703 :0.719228010845244 +years:0.4800778276197916 days:0.26507964659128846 months:0.15098372934934035 minutes:0.07950501323780028 weeks:0.02435378320177922 +of:0.9874029497338376 by:0.0034902846635255736 to:0.002256111954952828 on:0.0016574205396668318 :0.00519323310801714 +who:0.8787402396539533 arrested:0.08352778097254183 that:0.009392996900369831 which:0.0041293192000274774 :0.024209663273107505 +and:0.103809686702468 1:0.06857167243826409 of:0.051324898351391215 in:0.04100207792653621 :0.7352916645813404 +his:0.20104102486289369 my:0.1263225997409915 My:0.09145657150859951 her:0.07263120592186377 :0.5085485979656517 +of:0.6743883372318157 dred:0.07302038534277251 and:0.07147213491570102 sand:0.06249067003675995 :0.11862847247295073 +the:0.6710645400965318 a:0.18807842458292556 of:0.03974315219198716 tho:0.03406578345614246 :0.06704809967241292 +the:0.9411753434850784 these:0.02454367547675203 any:0.01440516333590828 tho:0.008926170988518858 :0.010949646713742529 +said:0.023153956095968653 same:0.018478805189615793 property:0.01646956909319316 unknown:0.015470094982225137 :0.926427574638997 +the:0.4707143896076297 a:0.07988137271834474 tho:0.07128889679759151 de­:0.057376234653269846 :0.32073910622316415 +particularly:0.9344552458228383 duly:0.014442693019054674 fully:0.01443307056311158 carefully:0.008036655367389319 :0.028632335227606193 +of:0.7349462318983364 to:0.12650298143499328 in:0.0570478802907206 above:0.05103011088754262 during:0.030472795488407083 +signed:0.055698203215464884 composed:0.002807733885247696 scribed:0.0007130695362174989 pressed:0.0003545348784105537 :0.9404264584846593 +he:0.2763522436769124 had:0.13196310659804733 who:0.13018284066693803 and:0.1299174127603546 :0.33158439629774755 +be:0.8520604015031719 bo:0.12173951127954358 but:0.009534703996262862 tin:0.001128857418724155 :0.015536525802297611 +stopped:0.3151197843951114 at:0.10365632999698446 on:0.09464400288639607 of:0.08314680889832017 :0.4034330738231878 +children:0.13066814281568087 men:0.07292926955770636 those:0.04985622293489917 people:0.04523595696970297 :0.7013104077220106 +the:0.49879513388507735 a:0.32652466030075417 any:0.14232585318345856 and:0.018229985051626905 of:0.014124367579082923 +on:0.5014921116514748 of:0.12583787973570773 also:0.11628679728804248 to:0.06723385096767495 :0.18914936035709992 +give:0.23151669030158248 present:0.16064267685342332 find:0.09644671592313168 hope:0.07659601686980583 :0.4347979000520567 +desire:0.7209891346069432 necessity:0.06608854289205222 thing:0.054110641680477044 object:0.05014767709811381 :0.10866400372241361 +so:0.470755542325112 to:0.20103994214422377 was:0.07864731258920182 between:0.07346865889647833 :0.17608854404498397 +of:0.3630699439368431 and:0.19766117320101698 in:0.08782738871707324 to:0.08285373293776786 :0.2685877612072989 +the:0.19858050449981307 public:0.06672313091471559 a:0.04160478085903936 his:0.017373999359020117 :0.6757175843674117 +that:0.990092709368091 there:0.0016929178519555271 where:0.0015195789485128927 as:0.0014441031497452116 :0.005250690681695309 +he:0.5837479129314469 and:0.12537311543166965 I:0.09774029751650462 she:0.06433554251857215 :0.12880313160180662 +of:0.642221704411862 year,:0.2501233303494731 case:0.015379150932219171 ;:0.013069361326117275 :0.0792064529803285 +by:0.6553018637651319 to:0.1281106243677781 and:0.061049347886667105 with:0.05535271200981143 :0.10018545197061147 +he:0.13631406700077262 which:0.1071359636213425 and:0.09527375121965068 it:0.08158235304435198 :0.5796938651138822 +advance:0.09971229855231785 old:0.08113070229028167 national:0.07061818058296279 rear:0.04562229166305172 :0.702916526911386 +quiet:0.009095906167952778 dull:0.00809054489088035 and:0.007627038671376383 John:0.005045778867331849 :0.9701407314024586 +and:0.9995043582500974 they:0.00019140950258267092 if:0.00010699114406873053 the:8.882360221325519e-05 :0.00010841750103783271 +and:0.24820763371048266 Just:0.18116034201174036 just:0.0988069865670126 But:0.07423441189397814 :0.3975906258167862 +It:0.29801505222803354 it:0.16095810891143766 which:0.11686483557853579 I:0.09625763279790303 :0.3279043704840901 +on:0.8551911376028469 and:0.09953435045220788 at:0.021905541290776754 in:0.007427548348908048 :0.015941422305260477 +of:0.21270646888817593 and:0.09928432657564244 to:0.04350543513246054 the:0.03745156276173133 :0.6070522066419898 +and:0.5861635531541959 side:0.03489435305006838 line:0.008532454978404078 by:0.008492929476175344 :0.3619167093411564 +J.:0.7898631168953384 Mr.:0.06018908781260078 Paul:0.05963496109456511 Gen.:0.035059903151352115 :0.055252931046143546 +provisions:0.12364721565498062 order:0.06419342507704329 control:0.0633333999276146 payment:0.06134551090340267 :0.6874804484369589 +all:0.11039566946851971 the:0.08793276905751152 them:0.062199242462607836 which:0.057276180505825225 :0.6821961385055358 +and:0.4734911266828155 which:0.1355046443248868 as:0.1230676702285727 but:0.11264944500259133 :0.15528711376113355 +Committee:0.21840119257807633 committee:0.14650612497588347 interest:0.038232241483745474 tax:0.03346053209188722 :0.5633999088704075 +as:0.9678497315773931 and:0.005799241829184691 at:0.00402065433580636 us:0.0033329600460093446 :0.018997412211606644 +this:0.6435662010781404 the:0.2150805210888865 their:0.03845156148933327 his:0.02673743781176735 :0.07616427853187246 +just:0.9999985680336904 and:1.699383500421508e-07 taking:5.3677982632269166e-08 for:3.780026795642464e-08 :1.1705497089252731e-06 +country:0.23133144290931004 people:0.03953051594349168 valley:0.03318732730413316 river:0.02533516673166154 :0.6706155471114037 +he:0.6193643499794975 be:0.12414897964631066 which:0.11796083052341866 He:0.03843745438025941 :0.10008838547051362 +do:0.14295541434897785 did:0.1074496202641412 would:0.09565594951517258 may:0.04476232918724612 :0.6091766866844622 +the:0.24224863312218572 of:0.13049518285483844 The:0.09521042267221036 a:0.0735600837529 :0.4584856775978654 +and:0.3224606069349671 made:0.0961402064354134 did:0.09264005476773772 dated:0.07919357701277825 :0.40956555484910356 +The:0.04465337476545685 "The:0.011220361915748777 the:0.005266080215366054 this:0.0025472762476027888 :0.9363129068558256 +of:0.6117164400874745 its:0.24728711848954377 The:0.06317205787631498 the:0.04177159522384445 a:0.03605278832282243 +the:0.41835003011185423 a:0.036766876060977415 tho:0.030885706996186816 this:0.01690648914380788 :0.49709089768717374 +some:0.07866534538039538 visited:0.05365620235413673 being:0.051229794244778526 not:0.05022426069013077 :0.7662243973305585 +was:0.29077672399980703 is:0.2288416292111367 had:0.1287941193385763 has:0.07581723022877647 :0.27577029722170343 +those:0.22556895861712803 and:0.1756035455913038 on:0.10256797998342221 of:0.0948858592106999 :0.401373656597446 +a:0.17517206858119555 the:0.13037266199826048 any:0.12185165169421011 acre:0.11095315669031532 :0.4616504610360186 +which:0.10776072853308942 it:0.09811525608241485 there:0.06357732264334912 they:0.06288256276037275 :0.6676641299807738 +keep:0.13001324108160928 remove:0.11037766518677172 cut:0.06584784703384604 get:0.06479532853454609 :0.6289659181632269 +A:0.569951530839303 the:0.2689373003820348 for:0.061097956012571855 to:0.04956503648099486 :0.05044817628509548 +there:0.27852858318704754 it:0.26001289986470605 he:0.16938129266975452 this:0.11470401115565028 :0.1773732131228417 +&:0.9739533597838418 a:0.02291433729888574 takes:0.0014170106809013765 was:0.0006093656793572068 :0.0011059265570139078 +sum:0.02407738981970453 number:0.020789986902774865 amount:0.018529810816717007 city:0.016367697708397258 :0.9202351147524063 +men,:0.05348944402439701 who:0.01400373674484152 of:0.00665894430250433 there,:0.004017347916798135 :0.9218305270114588 +and:0.36069468010906264 to:0.2202668929310397 then:0.06223901024602602 which:0.057436867634139854 :0.29936254907973187 +of:0.4172680453168334 or:0.25863802258068913 in:0.17815693689943135 to:0.04685691234855196 :0.09908008285449416 +T.:0.3507590085280925 B.:0.2714949425923474 S.:0.11504594063414102 H.:0.04696142089983212 :0.21573868734558674 +the:0.1964013555277783 which:0.12299783085162563 our:0.043017875212762506 to:0.019936773286397598 :0.6176461651214359 +of:0.2939109450652277 and:0.09444054862074075 the:0.04783783679218674 was:0.04113755571487773 :0.5226731138069671 +had:0.16655849468771405 has:0.12502450827219452 is:0.10807464329013562 was:0.09856152226292472 :0.501780831487031 +of:0.5058127673529782 the:0.24872690940896153 in:0.0896834080523765 a:0.04389810825557572 :0.11187880693010803 +it:0.264772338933847 the:0.20402080238513437 that:0.063571286130112 they:0.06151553374046505 :0.4061200388104415 +They:0.388785307892184 We:0.1816284411482229 I:0.13246455583321684 we:0.10403025071481238 :0.19309144441156378 +his:0.38892689390355856 the:0.2453961414517003 no:0.03260726776676934 your:0.024384725157371223 :0.3086849717206006 +as:0.07660271157600745 respect:0.054562254265068305 debt:0.04267533898213339 word:0.038224290340816834 :0.7879354048359739 +do:0.3739703122627129 say:0.30656580286329305 get:0.06057727196004416 see:0.05542721418154302 :0.20345939873240682 +held:0.18274006657783143 a:0.12147261587286236 entirely:0.10033921096712312 no:0.08310256513643409 :0.512345541445749 +I:0.8876789573483936 who:0.04790299222069607 we:0.022008028116579474 to:0.007238604124669118 :0.03517141818966165 +little:0.06901765495521713 the:0.045331713599003884 handsome:0.04341358080378229 large:0.04222029872342244 :0.8000167519185742 +witness:0.13918334069305519 really:0.1256266565831373 man:0.06110673406675276 friend:0.02557672084131566 :0.6485065478157392 +last:0.2439332581842914 at:0.014502720570325778 of:0.009830653372821825 all:0.007197410387072711 :0.7245359574854882 +and:0.6425641084852217 And:0.05545021794959876 but:0.035051416902587305 Since:0.025489344762956695 :0.24144491189963552 +of:0.4689478555442656 in:0.3798940836806983 In:0.10640493326965214 on:0.03180002520405098 :0.012953102301333074 +he:0.46608571902479395 its:0.25658638760445496 the:0.09441739333339814 you:0.015268238790457104 :0.16764226124689585 +was:0.04994211538714162 the:0.0280040934713193 night,:0.02279221839153319 I:0.022465419499029218 :0.8767961532509766 +of:0.9946928443101671 and:0.0010510846891681773 ot:0.0008021752301208326 the:0.000628259484132446 :0.0028256362864112054 +avoid:0.22653003102955047 the:0.13395908400854076 a:0.07246600579781139 have:0.04075294332013118 :0.5262919358439664 +important:0.4935150372873321 great:0.14010487439269154 many:0.07077081303802062 few:0.014665150818201177 :0.28094412446375455 +not:0.4500130146560613 no:0.14809996412239443 against:0.11751593783009619 when:0.0840505372754188 :0.2003205461160293 +now.:0.06095808180989791 ment.:0.009831420770013491 with:0.00916282497659775 State.:0.005827559746317789 :0.9142201126971732 +he:0.45550986831327106 I:0.22233574016236365 thev:0.11728621028646449 she:0.06389856524518558 :0.1409696159927152 +he:0.7969884845582629 it:0.05347384927257249 ho:0.02569301295406652 I:0.024310341114789597 :0.09953431210030848 +first:0.8977879367033842 prominent:0.017517528573204707 best:0.007353131293315463 the:0.0061262642009654086 :0.0712151392291301 +no:0.44759204341669656 time:0.17142152024351553 its:0.06825119956014858 we:0.05990697111493245 :0.25282826566470684 +think:0.17137814516664024 know:0.06880096126923453 thought:0.062263443404708595 said:0.045790503301402996 :0.6517669468580138 +the:0.8990726040548974 this:0.036454450840095035 tho:0.025316476619158465 that:0.013949904377700934 :0.025206564108148154 +President:0.9983525418338868 Mr.:0.001106587456802731 the:0.0002305428664282562 what:3.743121101500091e-05 :0.00027289663186728556 +words:0.2676378127242568 girls:0.20393617110245427 police:0.10610397385931389 French:0.10019619650106441 :0.3221258458129107 +young:0.8488082539016641 poor:0.024504965346539943 a:0.012066417551680942 lay:0.011897169101641177 :0.10272319409847384 +cases:0.6652795855930531 the:0.019843218707902524 in:0.017581320725291776 years:0.016533100670029912 :0.28076277430372276 +tariff:0.015293929147668939 law:0.01238222119679293 county:0.009639901905770087 railroad:0.008410989555965349 :0.9542729581938026 +morning:0.29443238677367495 in:0.05481085517278654 lady:0.040815436185537485 day:0.0304225324052456 :0.5795187894627554 +fully:0.4852138113786074 and:0.3370515338212846 not:0.10957857298343288 be:0.029638857150193203 :0.03851722466648178 +if:0.39601177058902065 certainly:0.2030001676646331 at:0.14775199546908796 in:0.14287177277991026 :0.11036429349734794 +the:0.32750500088775125 that:0.3079902913473335 a:0.29442088298273233 his:0.04519928025464129 :0.024884544527541835 +by:0.26611578424242477 and:0.1771153997244817 with:0.16296251560888092 the:0.13458957225234827 :0.2592167281718643 +was:0.5999104646720437 being:0.07088589604670735 have:0.06998083389311094 then:0.025003306812296365 :0.23421949857584154 +the:0.42670125949504545 The:0.09492309356359906 and:0.09327221106189296 in:0.04745845819246186 :0.3376449776870005 +total:0.9153193349160363 whole:0.0029354184531081673 the:0.002466896047567072 average:0.001566186570258699 :0.07771216401302958 +realize:0.16565858235173533 has:0.07665239284470537 of:0.0565531465315147 like:0.03859057104666036 :0.6625453072253843 +them:0.1807595337290355 himself:0.04994385241633128 that:0.04892590267795616 ing:0.03800289542157913 :0.6823678157550979 +of:0.26874458900729215 in:0.1282102288396362 to:0.09566239672562031 not:0.015245779177275131 :0.49213700625017615 +as:0.9678497315773931 and:0.005799241829184691 at:0.00402065433580636 us:0.0033329600460093446 :0.018997412211606644 +directed:0.004683869369498366 more,:0.004162357770858638 more:0.004162165153666741 will:0.003039325344201068 :0.9839522823617752 +us:0.06549559950385653 ed:0.05148075699256149 him:0.045226999984541605 up:0.04148745918200714 :0.7963091843370332 +as:0.10535648311233967 and:0.07559732581019517 belonging:0.07151050588396003 tions:0.03166921685863802 :0.7158664683348671 +duty:0.2725808385421187 were:0.1588963675931845 now:0.10780598610300339 supply:0.10695896736499715 :0.35375784039669644 +of:0.05975256617285008 for:0.047393802086058694 amount:0.037944961717423634 is:0.021171999552361917 :0.8337366704713056 +the:0.347995706651029 his:0.2399941696046511 a:0.20490908352824083 A:0.0776405687498338 :0.12946047146624537 +not:0.22624855690252715 used:0.19330311645353593 once:0.17820712638196595 fit:0.10879153320620133 :0.29344966705576975 +of:0.32320628280038893 the:0.2297631743997778 The:0.08624315411327409 to:0.07723018565836413 :0.2835572030281949 +delegates:0.14809043826531354 parts:0.05354060819988381 feet:0.050639292263729964 pounds:0.04031580983300712 :0.7074138514380657 +and:0.11776125820848668 are:0.04848903032245364 store:0.0442617035877902 walls:0.04150511114463585 :0.7479828967366338 +a:0.28644990879061694 not:0.12430568107732554 the:0.10847634080167408 an:0.05347433397323717 :0.4272937353571463 +more:0.741059386492378 better:0.006073855076138116 less:0.004564679052505832 greater:0.003063988796424358 :0.24523809058255366 +it:0.23911559706060403 the:0.09314559908240819 itself:0.08012354533617835 a:0.06818108919473258 :0.5194341693260767 +man:0.022651465821492012 latter:0.02193713732323077 men:0.015699502975491726 sun:0.014900468324577185 :0.9248114255552081 +the:0.6993776114675986 a:0.17138396307022813 any:0.037911665349319064 our:0.031154533205784755 :0.060172226907069463 +and:0.3028204354764154 of:0.192342912082013 the:0.13109141645304592 as:0.10581153385769958 :0.2679337021308261 +of:0.3202635935065772 said:0.1210397106940152 from:0.10003102382239665 and:0.08218423820503404 :0.3764814337719769 +of:0.16569618058417623 and:0.14450299956140872 the:0.05990224344686693 to:0.048450609347268574 :0.5814479670602796 +the:0.5336846735115952 this:0.3283394841527361 that:0.039020985398195485 said:0.030022138708901146 :0.0689327182285721 +Carolina:0.031731632543687736 Republicans:0.020709867885950122 defendant:0.020264918466719167 police:0.018666285356790997 :0.908627295746852 +know:0.7806256353087541 believe:0.07701978918004673 see:0.05147004025601953 say:0.03883693587264518 :0.0520475993825343 +then:0.08392196109752274 here:0.05954774956620524 Here:0.04936354399737174 street,:0.016660225636461284 :0.790506519702439 +the:0.11349119034346393 nothing:0.09312926338965531 something:0.07117476282685077 done:0.06715940908806661 :0.6550453743519633 +nine:0.10147810895843866 twelve:0.09825146841317398 seven:0.09443577863231188 eight:0.05333758673994529 :0.6524970572561302 +attack:0.3661571227763382 influence:0.019887225485348634 hair:0.01866274427493178 pair:0.014459790408863015 :0.5808331170545183 +many:0.041068611745944554 family,:0.012290772134553665 to:0.00972725253295167 and:0.002945690329304205 :0.9339676732572458 +j:0.3048182928070122 tho:0.29474250516184497 was:0.14579633478577528 is:0.1377336106491442 the:0.11690925659622317 +in:0.299132899031831 took:0.28746871451970174 iu:0.13074726920787771 take:0.11920093553923942 :0.16345018170135003 +made:0.33116985608667104 shall:0.08047831717041556 what:0.04055309148743379 who:0.028836808117895598 :0.518961927137584 +the:0.5975040380603807 in:0.11662634127409453 of:0.11467784765822485 to:0.03988569669888331 :0.13130607630841656 +that:0.2001013020944214 and:0.11532443373166175 That:0.08115149696671904 t:0.042234316001703104 :0.5611884512054949 +to:0.5484713547688739 and:0.09366405128059568 on:0.0685040703058288 may:0.05085766061510971 :0.23850286302959203 +of:0.9995646418035183 and:0.00030552673471193206 t:1.8779311380986402e-05 do.:1.5007001412823611e-05 :9.604514897584355e-05 +day.:0.025264788474251468 said,:0.023153008423814257 sort:0.022804720489534625 small:0.020323868761374493 :0.9084536138510252 +doing:0.2948494504690047 of:0.09636673615004432 a:0.0927887096728478 their:0.06876421276563728 :0.44723089094246604 +arrival:0.05775012876202255 hand:0.02391654130370089 speech:0.02385147548130408 home:0.02344033826056555 :0.871041516192407 +as:0.21341256124210067 than:0.10704152998742808 that:0.08526204998056014 when:0.040310419442377544 :0.5539734393475337 +at:0.13163507848263722 and:0.0554431241582514 do:0.05291674906339664 the:0.035424034018464515 :0.7245810142772503 +to:0.2567146071630823 was:0.2230300658020604 of:0.18562759083690075 is:0.16733005472803056 :0.1672976814699261 +a:0.36190265663609916 the:0.2045959505341439 tho:0.18744669131479624 their:0.08277373455083337 :0.1632809669641273 +me:0.4548270186061657 them:0.23648086439532284 for:0.1401632156589108 you:0.07639709991145091 :0.09213180142814986 +of:0.9863977061765635 ol:0.0032546979747677075 by:0.0010779234323066585 Of:0.000958910766690347 :0.008310761649671627 +brought:0.6359268255906032 glad:0.09933150632246068 pleased:0.026145887931280573 able:0.018576513709974454 :0.22001926644568104 +in:0.7340999719066545 In:0.03141634838277515 from:0.018705734290311214 ln:0.008074828271435365 :0.20770311714882386 +of:0.1688117853364367 and:0.08716396715579186 the:0.05605699372000677 aged:0.04734238670413212 :0.6406248670836326 +the:0.5630939610358797 a:0.055472881015570165 any:0.03820074581489154 tho:0.034151567306468955 :0.3090808448271897 +and:0.5173485161982624 I:0.13284212331434742 was:0.12845702487596472 we:0.0765056666093675 :0.144846669002058 +and:0.26977795974858404 of:0.1698420306720544 to:0.10005637869968834 found:0.05285986492972905 :0.4074637659499442 +the:0.5060397735774222 this:0.05409839568310599 tho:0.03785867403420362 a:0.03030747812025419 :0.3716956785850139 +to:0.7170992424887345 Into:0.1680369935881826 of:0.05520093055197488 from:0.03243894691670702 you:0.027223886454401124 +one:0.03211527124753513 and:0.031421331869112196 out:0.023515875179966905 some:0.016367533489003588 :0.8965799882143821 +that:0.9827345784842137 the:0.006755555395766513 of:0.0049101304423069606 is,:0.002715517705795287 :0.0028842179719175487 +battle:0.09308044993399572 station:0.040701266513526804 various:0.04065155485024814 Governor:0.01927172561617597 :0.8062950030860534 +for:0.30475077539247597 to:0.08491748389839976 of:0.06739236774439741 various:0.06730869104281358 :0.4756306819219133 +and:0.14477159196507214 of:0.10592440585515342 the:0.10336825566341777 in:0.060526854494879156 :0.5854088920214775 +the:0.11371754343881862 and:0.08827526003593954 of:0.0687137188146781 to:0.03422424476489626 :0.6950692329456674 +party:0.13521192039994925 debt:0.08665963884952357 money:0.07339449318203362 note:0.055058635993123266 :0.6496753115753704 +nomination:0.0621316084485878 hand:0.04186681692053192 delegates:0.03354859829440918 night:0.03179687590493136 :0.8306561004315397 +the:0.014727615500696178 to:0.01447775324325373 same:0.011378100657588328 and:0.011351850739307029 :0.9480646798591548 +it:0.07227895473370233 and:0.06943161168004083 them:0.041516295412621036 superior:0.03457533922458232 :0.7821977989490536 +ago:0.9894461407114812 ago,:0.0032585030615626316 since:0.0021309986789993826 when:0.0005921898857808757 :0.004572167662176014 +and:0.08232622921237052 that:0.03503553871186574 And:0.03400496904074841 tion:0.026087864081747014 :0.8225453989532684 +to:0.23300389870210575 for:0.1921880828515103 with:0.1579531005117722 upon:0.09864356214147295 :0.3182113557931387 +the:0.43521148909206847 this:0.06910296324921925 a:0.056076507258050086 his:0.049785480989163605 :0.3898235594114985 +Peter:0.3953553977262679 Mr.:0.08836034414630661 the:0.06052112076878614 Col.:0.051161814294572464 :0.40460132306406704 +on:0.22485294030143896 upon:0.1729676707573677 that:0.16157985866145466 to:0.09835811334518811 :0.3422414169345505 +A.:0.025915346753695265 In:0.02122489534357676 tbe:0.015245906576030427 with:0.012198208767123988 :0.9254156425595735 +the:0.47268428977390886 these:0.19793739635493787 this:0.11385306943608774 your:0.05070809556870309 :0.16481714886636242 +you:0.10094169056845087 and:0.10087583165411852 too,:0.0920216748107309 say:0.08918262807409126 :0.6169781748926084 +the:0.20975945286904288 to:0.14796097208125653 as:0.12161184130181339 and:0.0833623167386571 :0.4373054170092301 +the:0.46017817296140645 great:0.12675408414100456 The:0.09008035833897034 Such:0.0859754280753993 :0.23701195648321943 +has:0.4206863779139296 and:0.21178538046265027 do:0.16053361073487374 had:0.08540764977650142 :0.12158698111204487 +the:0.270545276196187 her:0.13255040472493784 their:0.1308625658710655 a:0.07933694492515875 :0.3867048082826509 +an:0.999999996378782 the:2.3302140571906054e-09 no:5.072478201598548e-10 had:3.591914338088451e-10 :4.2456475866017957e-10 +for:0.1865381980004065 and:0.11208934051400837 a:0.0876295593665636 to:0.08702901984157999 :0.5267138822774416 +and:0.01281265413525671 here.:0.011037531563727455 for:0.004311120360875519 is:0.0031302933020647228 :0.9687084006380755 +the:0.7213788207502676 a:0.09201196035204787 such:0.05393860796777929 tho:0.028767902311197243 :0.10390270861870811 +and:0.3707696845512681 where:0.13097946826397092 of:0.12140219194038478 at:0.07530010979097433 :0.3015485454534018 +which:0.2053724899918031 he:0.14874040108456146 that:0.12251979911206501 I:0.08230813287426586 :0.44105917693730445 +experience:0.06400814562219595 advantages:0.030736962247553987 knowledge:0.01526713080153398 dead:0.0058818285378484415 :0.8841059327908676 +the:0.9603240800134489 sufficient:0.02310390853085103 this:0.010336716668561029 any:0.0034601944308760542 :0.0027751003562629974 +course:0.045518480855293975 his:0.02793180951320944 farm:0.026546387657846067 al-:0.026471613800701486 :0.8735317081729489 +He:0.16991126149247607 The:0.10731803599845575 It:0.09038875687790494 She:0.08428593445806319 :0.5480960111730999 +make:0.07590459678497706 get:0.05877474619763181 provide:0.05197360112126503 pay:0.04947066150634456 :0.7638763943897816 +those:0.5046865514940989 men:0.30885292990033164 all:0.04874782827159128 one:0.01344006080149827 :0.12427262953247985 +who:0.05040678613145375 They:0.04832152751654169 It:0.0363599786070546 There:0.027436481322533048 :0.8374752264224169 +may:0.3151832933770352 will:0.16960766458422533 would:0.09224842786296245 in:0.07526557787059289 :0.34769503630518395 +in:0.18954628634379872 of:0.04972729147191511 In:0.04162487654274397 not:0.032507930666022075 :0.68659361497552 +son:0.11388772974324543 price:0.08542190199273741 weight:0.07021221824843038 measure:0.04001985954884306 :0.6904582904667438 +and:0.7065088898695269 in:0.12097767475359755 is:0.10552359319155032 of:0.0286622373275599 :0.03832760485776518 +a:0.210082328778565 an:0.13540736541624118 the:0.09911258337135773 public:0.08682207492580817 :0.4685756475080278 +of:0.22163001880207087 and:0.1089898780261372 the:0.0373712260036714 The:0.022372843079491736 :0.6096360340886288 +to:0.9206639860880073 his:0.022532425774909447 from:0.017814398561564037 at:0.012837092329659247 :0.026152097245859825 +they:0.0017754038861980657 in:0.0013201019163348838 who:0.0010062493106981118 and:0.0008299689776558941 :0.9950682759091132 +the:0.48194742008172237 a:0.1312827090372757 make:0.08565081214243399 declare:0.0689865290190486 :0.2321325297195194 +of:0.15383849473232805 and:0.1114233276998929 the:0.04359270712749957 The:0.030642286669927854 :0.6605031837703516 +were:0.2245750508311732 was:0.1840055143125349 and:0.16731856545617121 I:0.13116544316209774 :0.2929354262380231 +2:0.2403872680195171 6:0.11521466450142406 5:0.10505002083685022 4:0.06993546870374807 :0.4694125779384605 +of:0.022648721395740055 There:0.019466286674458017 tion,:0.00930990713559748 in:0.0091350021296826 :0.9394400826645217 +as:0.33852428570033327 a:0.15261696440686975 the:0.058798152066603264 think:0.05058893971804976 :0.39947165810814395 +of:0.2302443941018153 and:0.10235047978205905 the:0.07728954363415348 The:0.05371078375830472 :0.5364047987236673 +has:0.8910136958308438 had:0.044491861804202865 haa:0.009079387299466005 have:0.004461979295306655 :0.05095307577018087 +not:0.2629436214461717 he:0.15636178730484962 be:0.15425517434235472 longer:0.10584233027013489 :0.32059708663648895 +and:0.133935775128659 The:0.07601244773228642 to:0.07250040621095356 Mr.:0.060434996300149695 :0.6571163746279514 +corn:0.06817668632275896 oil:0.011720819618392218 papers:0.010809790818311037 vessel:0.008302680070384155 :0.9009900231701538 +of:0.5986200005275224 over:0.11344139047425114 and:0.04323565463892568 in:0.04154469747847098 :0.2031582568808298 +and:0.35168985399297775 in:0.13867395961816142 of:0.13372050617607092 who:0.09749500334306532 :0.2784206768697245 +organized:0.22114277642332975 discovered:0.09987236399057867 made:0.09582957876146081 adopted:0.07895216376417423 :0.5042031170604564 +the:0.7733698866401418 tho:0.075189800953992 of:0.007472891285657722 which:0.006386713951986215 :0.13758070716822235 +a:0.5262673629542729 per:0.33196804476815495 to:0.053422052352827605 for:0.026933119720093122 :0.061409420204651476 +urged:0.5024580880302243 called:0.06153381329363684 acting:0.045803673954797966 that:0.033887126388147795 :0.3563172983331931 +such:0.698953726985811 great:0.12268518115750913 good:0.03580320575766769 much:0.02967924074412883 :0.11287864535488333 +that:0.4451199780944254 when:0.09052426823866595 as:0.08598358414288174 then:0.07423559652196023 :0.30413657300206676 +Columbia,:0.2438745578554978 Columbia:0.2346262856151192 described:0.03682127686480193 established:0.023619306461378525 :0.4610585732032026 +he:0.18969340307469762 it:0.07409094410594118 yet:0.0630839407710469 all:0.051497851087195 :0.6216338609611192 +of:0.57380922290785 with:0.24845544237540926 between:0.08914804266346521 and:0.01969362942716775 :0.0688936626261079 +two:0.06841700846979992 San:0.056298073450871094 other:0.05422925809333195 old:0.04995608564684395 :0.7710995743391532 +the:0.07628168328461518 to:0.052165682177974106 and:0.029185885194755953 it:0.019566545451565165 :0.8228002038910895 +same:0.015443082427321656 case:0.012215072091919552 people:0.01194989455032324 law:0.010420375252196041 :0.9499715756782396 +ground:0.07241210307594666 surface:0.04041642030857009 same:0.029290040844243453 and:0.02854674956016145 :0.8293346862110784 +that:0.08871619471869414 the:0.05665883701515041 those:0.0369647495260616 a:0.0336346151150829 :0.784025603625011 +of:0.43051151989855735 to:0.14545432629537627 with:0.0834392540164219 in:0.05504360795685676 :0.28555129183278777 +6:0.005153445105142132 12:0.003434802366725113 one:0.0009852047342880804 per:0.0009356757404187208 :0.9894908720534258 +was:0.367826894374211 is:0.28128997464200683 has:0.07657893346226619 and:0.05143226592040582 :0.22287193160111005 +election:0.04794600716059445 distance:0.032326834859900976 State:0.029472044516644202 eyes:0.01966475665840303 :0.8705903568044574 +M.:0.031682022813255724 Smith:0.03132043464115107 Jones:0.030989998528393587 Johnson:0.007819099973087633 :0.8981884440441121 +other:0.21104202096391214 man:0.13736239586392537 point:0.09746010350581663 other.:0.0777559990203964 :0.4763794806459493 +qualified:0.9239247411480874 required:0.009871126275808084 prepared:0.00805063247711053 necessary:0.007574356077110683 :0.050579144021883425 +eat:0.14099904753363718 turn:0.12427605093485657 be:0.1163991112286904 learn:0.10035481958972492 :0.517970970713091 +that:0.7679461217789374 by:0.07527564112772399 to:0.0752122076205313 in:0.007889841089926741 :0.07367618838288054 +side.:0.3332961254986584 side,:0.2810782546782286 by:0.20956005455762564 of:0.0404721058476865 :0.13559345941780088 +and:0.4919305406754522 who:0.19868652908275863 m:0.08035420071756323 the:0.059654233226926645 :0.16937449629729928 +kinds:0.3495369411508901 methods:0.2634241583933743 forms:0.013917094688405556 days:0.012468104548756409 :0.3606537012185735 +of:0.593607190225348 and:0.13188138292179158 it,:0.09177300322228038 to:0.0891062866740624 :0.09363213695651772 +will:0.09779952136434462 to:0.07251460714124254 shall:0.0534288959738332 would:0.04622586975272646 :0.7300311057678532 +time:0.02557218462408456 time,:0.022749239152364695 loss:0.012978452298235934 salary:0.007897221569623858 :0.9308029023556911 +the:0.2000208243685193 and:0.07959240266107379 a:0.06848811962924037 of:0.04260939703670468 :0.6092892563044617 +and:0.1220555190900455 to:0.10052513135881432 of:0.04865338277986068 the:0.04736765216001346 :0.681398314611266 +ac-:0.008617457262130698 mo:0.0004655054851617428 development:0.00035125337224929 past:0.0003294104253244749 :0.9902363734551336 +in:0.7139679177282184 In:0.12828419855933085 to:0.07983942881645477 or:0.04400334700537381 iu:0.033905107890622156 +carry:0.22283220662516676 from:0.10351672720815475 up:0.10125014483495409 of:0.09695993573757883 :0.47544098559414555 +to:0.22410013559550598 and:0.14936233583100356 the:0.05352257339621692 or:0.052361662605586834 :0.5206532925716867 +in:0.11584544517428777 the:0.1099281077712142 a:0.09737734254528271 being:0.061767386250194296 :0.6150817182590209 +which:0.8614031415597811 that:0.035392039037110974 fund:0.025424867525136983 I:0.012709999794703055 :0.06506995208326784 +least:0.09421179669474039 the:0.060238116622830615 a:0.05526118271409942 it:0.04285231763756075 :0.7474365863307688 +of:0.9994732699032546 to:0.00015762654677611336 ol:0.00013367985229422835 ot:0.0001198454963736122 :0.00011557820130130319 +plain:0.139985832226613 executive:0.13889018614114843 general:0.05604046249508682 public:0.038404733873586686 :0.6266787852635649 +Mrs.:0.42128500171256494 her:0.27678822016665916 the:0.10536902149586945 his:0.09319553776254148 :0.10336221886236516 +lie:0.542844762427292 the:0.10886078157538952 if:0.10724663706474857 be:0.09158030525816191 :0.1494675136744079 +be:0.7991913693242823 bo:0.14908188877444903 lie:0.031487225959065474 le:0.00341933059901016 :0.01682018534319322 +tho:0.39734845897844073 in:0.235381942780274 the:0.22877771035298416 said:0.12289034333171714 :0.015601544556583944 +ton:0.09963937211215058 there,:0.03765099265876697 milk:0.0091373654754477 due:0.008931433970699416 :0.8446408357829353 +and:0.047616896335128785 away:0.02111258795773932 feet:0.018734251369174056 taken:0.011276725211153396 :0.9012595391268045 +the:0.5682830076658913 his:0.15267341974473597 those:0.040098083169589134 her:0.03739692612601919 :0.20154856329376433 +the:0.4320688262443071 a:0.056026144737975035 any:0.05372688429846463 his:0.036245076609326236 :0.42193306810992703 +with:0.30247971861503054 of:0.08146341820044894 that:0.05390812349731431 and:0.05195352432302139 :0.5101952153641849 +the:0.4503922521738743 their:0.07879332917120566 a:0.040034760872255694 any:0.03968699065927618 :0.39109266712338836 +of:0.3109084722525462 for:0.22817913908176035 with:0.1693655186116178 produce:0.05716951374381014 :0.23437735631026563 +J:0.33734097989619266 M:0.17236504788219736 W:0.09737458100265518 G:0.08041700885128274 :0.31250238236767225 +war.:0.13272788782621445 Congress:0.030348318057610114 the:0.014764815791935433 congress:0.003488765476252799 :0.8186702128479872 +of:0.7467561068818447 from:0.050167639823099526 in:0.04190390126508221 with:0.038364123790522314 :0.12280822823945117 +and:0.15668656645637835 of:0.11175216335965055 with:0.0772470479770231 the:0.04343231360575424 :0.6108819086011938 +that:0.8985664320146513 but:0.08073037853029653 when:0.0036990061444029053 how:0.003543454341545445 :0.013460728969103839 +the:0.23551557772971213 our:0.10183100866381116 but:0.07725976638930299 to:0.05890266716613298 :0.5264909800510408 +and:0.24693743573599 to:0.06790733965493552 of:0.03331880384366685 the:0.03278787652835114 :0.6190485442370565 +necessity:0.11216646235365851 board:0.04995728105196221 road:0.04702308812962576 demand:0.03804007562175003 :0.7528130928430036 +in:0.5924724987397156 In:0.18186422779863065 with:0.09867533874944279 without:0.0648435409054237 With:0.062144393806787324 +would:0.5289620563294297 will:0.24532936625501642 must:0.08341049638352778 may:0.050099952820239095 :0.092198128211787 +than:0.34841850472077374 in:0.18903833244488819 work.:0.03963365113993969 the:0.013871521862079478 :0.4090379898323189 +as:0.21244529156909792 to:0.19552373429796285 and:0.19289820506402683 of:0.1745665332488785 :0.22456623582003402 +and:0.1810691727482003 or:0.1477700837915901 of:0.12032949005007319 the:0.040906819069135375 :0.5099244343410011 +was:0.6259720435315635 is:0.2186251454649351 are:0.0666712152207104 were:0.06614546826008394 has:0.022586127522707177 +his:0.5609496385632992 the:0.17254401646536974 other:0.08003424411038085 a:0.04326788968728281 :0.14320421117366733 +mortgage:0.04704609004164164 written:0.04190595343590496 own:0.037059747133598046 duly:0.01824112014201681 :0.8557470892468386 +asked:0.5620360232962419 heard:0.19497189491464076 seen:0.06185206212723896 noticed:0.03761139748008781 :0.14352862218179047 +the:0.6439675353590966 of:0.03882460450926833 other:0.035037530011086754 tho:0.03183366025686834 :0.25033666986368 +is:0.6419828366780512 was:0.30996348122518297 Is:0.018375938843300996 are:0.0024787193533929177 :0.02719902390007188 +river,:0.002821287489888063 Island:0.0027936894299797777 Council:0.0026455192295014376 avenue:0.0022504501291032964 :0.9894890537215274 +country:0.3434423273052273 had:0.06520025914593992 treated:0.052214643086727366 said,:0.051857313009874256 :0.48728545745223134 +and:0.04510735603217113 an:0.04154071312450822 of:0.032547477762155885 boy.:0.025082268234675673 :0.855722184846489 +the:0.44587124422094826 of:0.3657283011332088 by:0.09513800617497555 at:0.062809394561059 :0.030453053909808535 +and:0.26864049981758015 the:0.07961936769987421 of:0.05400971265877265 The:0.04601435636783138 :0.5517160634559416 +the:0.2578854590536609 of:0.22502140390147685 by:0.12042507523254319 caught:0.11581185426007137 :0.2808562075522476 +time,:0.1012550146618911 time.:0.06664707736266749 time:0.0477168256547795 of:0.02601685342296295 :0.7583642288976989 +and:0.3075472695766173 on:0.18306692061851235 in:0.1571399595758828 of:0.14171865679253162 :0.21052719343645582 +the:0.1713395747923079 his:0.16047992466606129 great:0.08936979155607773 a:0.07957707713912085 :0.4992336318464324 +part:0.03843476252362881 ground:0.024853834235678086 bill:0.01965461457041484 stomach:0.015843370155176117 :0.9012134185151021 +of:0.15050390484830722 and:0.11060517917336529 with:0.09367471244601691 in:0.09198827253012326 :0.5532279310021873 +law:0.037300210220285276 earnest:0.006528995961353304 able:0.0054225540676475425 kind:0.005373884499463968 :0.9453743552512501 +and:0.1717528599678198 of:0.1517429138352098 is:0.07113613487104938 the:0.051447716937564385 :0.5539203743883566 +rise:0.14640067322895056 build:0.04033554884102485 take:0.039829250522720266 give:0.018147973262398056 :0.7552865541449063 +he:0.5380727291884556 which:0.3193413023033412 now:0.06156483136399096 they:0.022615205566710244 :0.05840593157750207 +class:0.008911414113531595 2.:0.007974970120756647 j:0.005800670687160314 the:0.005581862998493663 :0.9717310820800578 +appropriation:0.27918808515350907 order:0.056653537497601165 in¬:0.03227062164653082 ordinary:0.0317064870780846 :0.6001812686242742 +of:0.5944764498034969 to:0.1870239131221923 for:0.08680697252721038 in:0.04894734169895279 :0.08274532284814769 +native:0.3099426024904591 own:0.10650529030910291 adopted:0.08666605946964573 home:0.06832287722311622 :0.4285631705076759 +weeks:0.07574810096176768 men:0.07504798901672213 different:0.06370493912466908 of:0.038617921746355616 :0.7468810491504856 +be:0.8612216738730293 bo:0.1246299556402735 ho:0.00445807622292651 resolution:0.00285542371271047 :0.0068348705510602814 +and:0.18609521379127292 was:0.18284382013041822 as:0.10132472006241562 had:0.08413461453550294 :0.44560163148039034 +Old:0.20407062903925735 and:0.03537791366282368 the:0.02989734830752594 Boston:0.020238926519672108 :0.7104151824707208 +appearance:0.18046814041953943 study:0.09612238791539422 strength:0.09147600212474796 county:0.08185610061220112 :0.5500773689281172 +on:0.39254078691392535 of:0.17185449119012827 in:0.12880442623623659 On:0.06142274589622424 :0.24537754976348572 +not:0.19944830496026847 the:0.17666660322022334 be:0.14381802198547888 those:0.08116987869279961 :0.3988971911412296 +we:0.012036965867887462 will:0.009067961552756913 the:0.0073160460645198796 wife:0.005027832589310704 :0.966551193925525 +I:0.17741963614138692 Its:0.11396083395799556 up:0.044231210046234724 order:0.035540299843137786 :0.6288480200112448 +of:0.6091398568087456 and:0.11773738162237733 to:0.08456900980255523 on:0.05936969158698405 :0.12918406017933753 +we:0.7315437647028145 I:0.16776322799297788 they:0.021320474303117887 1:0.020702699589606806 :0.058669833411482915 +to:0.261963284161689 of:0.10767493030603296 To:0.10680304310648601 and:0.1029297318866638 :0.42062901053912827 +little:0.7299539602161222 own:0.05811883882809236 the:0.006103989431482276 new:0.005282465551491715 :0.2005407459728115 +and:0.14480292334250636 of:0.07713778211805487 in:0.04263235280436268 says:0.02920497893451384 :0.7062219628005622 +in:0.3353024105506341 of:0.23463099534564358 to:0.0857042442420434 In:0.07679917684913858 :0.2675631730125404 +the:0.26079647782116777 and:0.11826674828132504 The:0.0784852225116887 of:0.06025635775739719 :0.4821951936284213 +street:0.03638111167848675 Street:0.03459301456674864 avenue:0.016454154482578705 and:0.015272152912084641 :0.8972995663601011 +and:0.237819553726585 It:0.0958549030579394 We:0.07233970464684733 justice:0.06564601643591259 :0.5283398221327157 +points:0.5098348901939608 extent:0.0197909464263538 things:0.006804819768376156 years:0.005988396215193441 :0.4575809473961156 +and:0.1311433872314144 of:0.11657067231567712 the:0.060949861770873526 its:0.04683451789552871 :0.6445015607865062 +the:0.5202864213101563 a:0.1887984922377265 his:0.037395058902970686 an:0.026256911668912253 :0.22726311588023415 +share:0.056078195088197696 vote:0.05060626021443621 proceed:0.02745822626617517 maintain:0.02574169851752779 :0.840115619913663 +belief:0.054049115210016555 only:0.045276395631187814 dollar:0.04228144544240973 lives:0.02971892323351852 :0.8286741204828674 +world,:0.057576287833293 state:0.05435574493621397 place,:0.040524226822662025 city,:0.0330791979318312 :0.8144645424759999 +Court:0.04105775643607874 Court,:0.021983611678718585 be:0.020511364574163946 Judge:0.017788222277147762 :0.8986590450338907 +shall:0.5687392757707717 Council:0.23402626507391974 may:0.0756273670217015 and:0.01862473632402028 :0.10298235580958671 +His:0.19957212983366499 his:0.14756544649525516 her:0.13614087304145767 whose:0.11206717818406592 :0.40465437244555635 +the:0.2798046746186979 ble:0.04375997519956232 an:0.03185864509636035 The:0.027930277119189696 :0.6166464279661896 +is:0.8187963272075826 from:0.08325898725146012 when:0.05287587449117106 had:0.016295707115805167 :0.028773103933981095 +the:0.9679339330360016 tho:0.013459823297718403 close:0.0011344970101467068 her:0.0007394745461071766 :0.01673227211002611 +and:0.0408886282185024 out:0.027145326713202054 favor:0.020280801901600143 or:0.014862259998713797 :0.8968229831679815 +and:0.06337757602830564 to:0.06237879144675252 of:0.054835509120263984 .:0.046645715948644376 :0.7727624074560335 +so:0.027335027915817968 as:0.020573838820264447 pleased:0.01274335162676586 and:0.004976326660164279 :0.9343714549769875 +fire:0.12057024695899239 safety:0.05680226081885695 valuable:0.0036117931580712556 than:0.0033585179356777177 :0.8156571811284016 +among:0.5040794721501586 between:0.45013751641087885 and:0.01347208629213655 on:0.00967303742915335 :0.02263788771767277 +said:0.15357067464104202 same:0.03397323816087399 of:0.02656087847309935 domestic:0.02400861453241745 :0.7618865941925672 +of:0.6222235626454649 in:0.06909350747158496 or:0.040595291663876196 ot:0.03999701721765642 :0.22809062100141755 +the:0.25122021278480133 Mrs.:0.2330655974006115 Miss:0.13405003260726578 a:0.06184069429045112 :0.3198234629168703 +the:0.510995403685074 this:0.1772334470618426 these:0.12454684754895144 tlie:0.0712442802513892 :0.11598002145274275 +man:0.12107588232577482 men:0.09280354723989342 and:0.08623560956138676 lady:0.038366968826190305 :0.6615179920467545 +first:0.0247235090188948 ':0.0166217318606807 old:0.014533418871526193 of:0.010804323771042325 :0.9333170164778561 +was:0.061631381160789984 visit:0.04810493947628674 years:0.02927590014917652 that:0.028088078242047718 :0.8328997009716991 +County:0.5147639383490423 estate:0.030378695398638876 lands:0.02719353536085709 party:0.016759147284343103 :0.4109046836071186 +is:0.40486693786109407 was:0.3853941294861233 conveyed:0.07661738851186474 Is:0.02452723232649254 :0.10859431181442532 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +part:0.3617103641398021 truth:0.14086331330738996 return:0.014579890352264556 sale:0.013038353481611064 :0.4698080787189325 +the:0.8386987645833893 their:0.10087208091720572 tbe:0.02387168038855347 your:0.01765834909031944 :0.018899125020532117 +child:0.988783138361915 over:0.0037131647392594728 boy:0.0015490506791827128 after:0.0002629641169300504 :0.005691682102712739 +of:0.11786268199781902 and:0.10108935997345767 to:0.06965929235559366 the:0.04570312895391998 :0.6656855367192097 +of:0.679531530922558 the:0.07192506481484198 and:0.06078447098336925 cf:0.030964690705690984 :0.15679424257353985 +of:0.9869055773961027 ot:0.003456928393675388 day:0.0009415140494852327 who:0.0005553294322057206 :0.008140650728531018 +and:0.03674987021801878 Wilson:0.0024982160588292363 Smith:0.0022477979030158086 President,:0.0021596785968588995 :0.9563444372232774 +of:0.049828558112102087 and:0.03262355136800166 wire:0.031206303560055167 in:0.018430031968851127 :0.8679115549909899 +should:0.6094909556081216 will:0.15684696462721126 shall:0.1036315733762012 to:0.07883997070400578 may:0.05119053568446008 +the:0.414953479851006 turn:0.12688786069620953 order,:0.0852927424015204 a:0.0511999526218539 :0.3216659644294102 +complete:0.06631853082471582 make:0.05767914246285719 get:0.05256116365811739 open:0.04121727694300342 :0.7822238861113062 +York:0.724050814409123 England:0.0988716813314522 Jersey:0.05272105922583849 York,:0.01276636078415119 :0.11159008424943505 +in:0.3898568716578843 when:0.17248752764314682 the:0.1644782754670717 said:0.100876192682111 :0.17230113254978613 +to:0.480984322391864 and:0.18729462171858724 the:0.08797073257059251 will:0.07247523162902372 :0.1712750916899325 +of:0.07229736204990084 war,:0.034054709591031795 the:0.02754091196821901 things:0.02718454046408314 :0.8389224759267652 +from:0.3535582579011848 in:0.3297049910318483 with:0.12850663035501578 and:0.07285205132442141 :0.11537806938752965 +A.:0.532131209518467 .:0.041344914625194 J.:0.0159507843057864 W.:0.01011666968343788 :0.4004564218671147 +now:0.6107152742243895 see:0.08066573295437836 us:0.02997876346801527 know:0.021931158488992398 :0.2567090708642243 +written:0.19319638167640366 and:0.07587535842089883 served:0.03280399912675047 came:0.019101412254461242 :0.6790228485214858 +they:0.3695834978547398 not:0.2759917695401521 at:0.06939740734786255 without:0.0679613262835175 :0.217065998973728 +the:0.4182687035400089 September:0.33144136062332796 each:0.11841011966414527 tho:0.06083428363117267 :0.07104553254134519 +each:0.6186288597580877 the:0.14842628296300014 In:0.05971181521359578 any:0.04859883727216801 :0.12463420479314855 +how:0.2910760946916731 enough:0.19676864150681136 nothing:0.006492596901394367 him:0.005799986891718095 :0.4998626800084028 +life:0.08183430342306561 fact,:0.07301853931078012 which:0.023575298699142426 this:0.019651030537525434 :0.8019208280294864 +I:0.30211635335631726 We:0.14011144253235427 would:0.12687829001155934 we:0.12687321160799012 :0.3040207024917791 +ties:0.2501519596827198 tions:0.09799840513759259 s:0.06048814755339688 tion:0.041971529436355015 :0.5493899581899359 +down,:0.9346965820198094 down:0.019442384280811034 ground,:0.015912195026727322 up:0.00901192912445534 :0.020936909548196932 +and:0.029044684823731775 .:0.023646130712318292 ,:0.009786738965869358 not:0.009108956202583776 :0.9284134892954967 +it.:0.029351352271526365 not.:0.028344510383787307 so.:0.014821542523481172 it:0.010904661013586706 :0.9165779338076183 +certain:0.7242751473711381 required:0.14437780247656604 needed:0.05720483528832422 important:0.03752841109615374 clear:0.03661380376781784 +the:0.6459481742557596 of:0.13483838344680046 adopted:0.07968941184548528 as:0.06484617256175054 :0.07467785789020404 +the:0.2310530894970822 and:0.10639271379929223 that:0.09357136234929718 to:0.05958010710924032 :0.5094027272450883 +and:0.17212373809752568 to:0.09014781091040067 the:0.07554413724574423 of:0.051454449823921486 :0.6107298639224079 +been:0.42617855658677073 a:0.22621125320718963 the:0.060474903232219705 never:0.05997755532793308 :0.227157731645887 +tion:0.04542435077486872 part:0.027384317079283207 of:0.02122543389881338 object:0.018530191234243105 :0.8874357070127917 +a:0.7833717897690762 the:0.16727028821933762 tho:0.017437184170813424 some:0.01380604063304613 :0.018114697207726686 +for:0.5077598822357675 sure:0.11864058466609072 of:0.02105977343072403 at:0.01578780802255501 :0.33675195164486266 +from:0.6991982110503474 a:0.04585177693947465 little:0.04450908229002586 about:0.004981758688154975 :0.20545917103199696 +to:0.34941477036775886 with:0.2634670827370034 and:0.06988514800112466 down:0.0509574944067872 :0.2662755044873258 +and:0.0442545717138381 made:0.036956628399513004 ed:0.02409856900775593 caused:0.013884200306375875 :0.8808060305725173 +fairly:0.8193093816204225 the:0.061566601918408494 it:0.021681920157510526 he:0.01582954525729567 :0.08161255104636293 +of:0.09147322128942757 and:0.08280966149260086 the:0.0643644399921021 to:0.04551611572067304 :0.7158365615051964 +a:0.03401897948178937 the:0.02868887498567686 in:0.027662736292997717 of:0.020680042758446173 :0.8889493664810899 +the:0.3227258435665352 and:0.24836179358687313 of:0.09474483661018841 The:0.060007870926598414 :0.27415965530980474 +now:0.2676499055217617 not:0.1104832334514471 kept:0.07930698132334149 all:0.04330907513332874 :0.4992508045701209 +of:0.2150126683703446 and:0.10370936916913252 the:0.04786940102284934 The:0.03147590402062014 :0.6019326574170534 +and:0.268981656099492 that:0.19659020025983492 but:0.15666209947540066 as:0.1074143442091565 :0.2703516999561159 +the:0.04110947758340004 in.:0.02656954069920831 it:0.009365847277005528 he:0.00791150631622219 :0.9150436281241641 +of:0.7678151906120081 the:0.0303541138980075 and:0.024693388300751067 T:0.015684036250628895 :0.16145327093860457 +us:0.09792076510045715 him:0.07170187204798344 them:0.03869983147049833 me:0.037189149875687576 :0.7544883815053735 +one:0.7691276654313048 ono:0.18619582798480028 two:0.002848526265191046 One:0.00037770694497251675 :0.0414502733737314 +the:0.7342341388533627 tlie:0.193847382049805 tho:0.01707772077427584 tbe:0.014996759191215233 :0.039843999131341 +thousand:0.5644221159997823 hundred:0.4078232466372768 million:0.0005943362326544165 millions:2.9362312161134362e-05 :0.027130938818125252 +j:0.022434398991054292 be-:0.003218594220680822 r:0.002694532043237589 in:0.002241664616192899 :0.9694108101288343 +and:0.09422487736289746 together:0.03325341003224651 it:0.020499440273425287 him:0.019569292222125764 :0.8324529801093051 +old:0.41088120783023585 summer:0.3487982876511947 way:0.09048423440762221 own:0.007231084684404701 :0.14260518542654257 +Co.,:0.05249718750652305 and:0.015329479215298638 bill,:0.003066976587482234 Company,:0.0029667903973828545 :0.9261395662933133 +":0.09117629529076964 ;:0.02342761078563139 none:0.008258675801136976 Let:0.006748344859694261 :0.8703890732627678 +and:0.10315607378215808 of:0.10110444366859656 the:0.045736039265607514 The:0.026586900589404123 :0.7234165426942337 +that:0.47097798078029024 and:0.19825036914288774 when:0.0804738155854438 as:0.04647221247532074 :0.20382562201605742 +is:0.4753645610048077 was:0.25491805551324953 already:0.08006172982629457 and:0.07822084550041565 :0.11143480815523252 +did:0.2699459052312179 this:0.09149856851969312 might:0.08299113445931812 was:0.042941040696489054 :0.5126233510932816 +used:0.29849254359226607 fully:0.08347719625882552 away:0.04472203006441146 up,:0.04297507705315842 :0.5303331530313385 +bonds:0.8244853775852685 object:0.005872832929196355 good:0.0030905123196462827 enemy:0.0024301232843770685 :0.16412115388151174 +the:0.3396068894632705 where:0.0578642505313199 that:0.04939753421043607 will,:0.042910551532747115 :0.5102207742622265 +and:0.13609147863431006 the:0.10801703113391009 of:0.08022099146796634 The:0.05284728654309291 :0.6228232122207207 +the:0.4636751890412284 tbe:0.08429626497151152 them.:0.04449966274813584 age:0.02535610093431529 :0.38217278230480894 +members:0.03524138286503286 power:0.022377455975302434 seat:0.02199651330285507 attention:0.01671381033135485 :0.9036708375254547 +as:0.020022549399715078 recently:0.018383076358136553 to:0.007240314067393291 the:0.00597812534138935 :0.9483759348333658 +the:0.49481322990867443 a:0.05682257308455244 his:0.03342017191974627 their:0.029177461181254895 :0.3857665639057721 +have:0.38314301591813255 had:0.21158887621648326 has:0.19167532719708877 also:0.04456404589926329 :0.1690287347690321 +a:0.11019525664581445 power:0.1013987216169336 right:0.08356825893394142 sum:0.05656373141124653 :0.648274031392064 +and:0.250712579205714 who:0.14289472484975188 which:0.11170908417975668 ments:0.06974253236378586 :0.4249410794009915 +in:0.27120916999133443 on:0.25523969455892126 with:0.2530575122182243 and:0.12351467809631551 In:0.09697894513520439 +be:0.3662749303103494 before:0.3142260991659495 having:0.11622000124358166 so:0.04614622251953161 :0.15713274676058758 +another:0.13215308815971735 and:0.07841989407574014 &:0.07004933530897554 at:0.06838810843487726 :0.6509895740206897 +express:0.10561866081950311 do:0.08908533133604678 favor:0.07280960018213475 give:0.07266209865415121 :0.6598243090081641 +south:0.5765104254120427 north:0.41433687460270563 north,:0.004421129286664251 South:0.002448190525644932 :0.0022833801729424345 +in:0.8846320419059936 by:0.04258969322246911 a:0.03194100844539667 the:0.004964550319616191 :0.03587270610652445 +Railroad:0.7075385993071237 Mining:0.0070558508184444075 road:0.0019256735093761172 ment:0.001563134526554463 :0.28191674183850124 +he:0.16755752954790332 She:0.10140900545868026 I:0.0972731481403688 He:0.09305777968219894 :0.5407025371708486 +year:0.06296024887444811 execution:0.06157047641484357 sale:0.022932733702719147 first:0.01626030867426618 :0.8362762323337228 +and:0.3942964237934119 were:0.15572062688089275 in:0.08989989992940059 was:0.07847202168269692 :0.28161102771359786 +and:0.1899802930179568 of:0.18579573549422934 the:0.0414328932952658 in:0.03406786288857558 :0.5487232153039723 +he:0.2524084224199626 the:0.24962600041583277 a:0.13171513582247465 it:0.10531466950141007 :0.2609357718403199 +the:0.5794246365087965 all:0.19359650901963163 tho:0.12040551454287866 current:0.03962611045721731 :0.06694722947147576 +the:0.1435449392260161 bread:0.11302643730387987 which:0.01967739551255595 they:0.012379842859081029 :0.7113713850984671 +J.:0.2588501082445801 W.:0.13924549047738213 C.:0.1323061480876642 H.:0.10710709977916928 :0.3624911534112043 +bo:0.244364998319865 be:0.23551136854503343 not:0.15225857471760892 have:0.09611382929641606 :0.27175122912107647 +payment:0.024659184141177713 action:0.021894082128627826 attention:0.017964746288564738 people:0.017385676346911245 :0.9180963110947185 +of:0.19416616264578768 and:0.18007115646946087 at:0.05571634924682089 in:0.05407515315021949 :0.515971178487711 +of:0.6228116116991419 through:0.03302794997109882 a:0.023097111846637798 what:0.0228627316138098 :0.2982005948693118 +is:0.9477489738463215 Is:0.005759264518913596 was:0.0020243377129169405 will:0.0010902460213594533 :0.04337717790048854 +it,:0.30126512537077926 this,:0.019581084640497997 anything:0.015685352075637694 it;:0.015136870727529474 :0.6483315671855555 +That:0.25071613985407376 by:0.23070115311221803 of:0.18471933823082742 to:0.17819942281293905 that:0.15566394598994163 +the:0.21927494031235983 to:0.023448925796281477 lo:0.009981536289806846 of:0.007805836003004888 :0.739488761598547 +we:0.26709132258505286 they:0.2199398773401833 I:0.19924028487236006 would:0.17667130031779818 :0.13705721488460568 +notice:0.3350853122138775 city,:0.10519209945091319 contract:0.011687711988347524 amount:0.003059190288209918 :0.5449756860586519 +by:0.18924812594937465 with:0.1437313461744928 and:0.1385556426065801 to:0.12181057004715422 :0.4066543152223981 +day.:0.05675488357212864 the:0.021677765208964684 others.:0.018379214993948706 of:0.017786319651108936 :0.8854018165738489 +country.:0.026817476978185446 world.:0.02008858153672548 city.:0.016688110314965688 people.:0.015156633961438426 :0.9212491972086849 +were:0.6238678754649927 be:0.11687271124111033 was:0.06070398947994987 is:0.058118594676005095 :0.14043682913794206 +of:0.14058075136081508 the:0.12462324768590999 and:0.11504593651801574 a:0.04165639833288972 :0.5780936661023695 +and:0.06180163264497112 Court:0.04724143562959373 of:0.029832735863470492 required:0.022070513348988983 :0.8390536825129756 +not:0.24326743403800538 introduced:0.10342288139936055 taken:0.05331580224284701 being:0.05052084804303624 :0.5494730342767509 +most:0.13645045984804674 best:0.06946039710704788 great:0.03874570298373892 greatest:0.0371096271482228 :0.7182338129129436 +the:0.4333926548994422 this:0.30168694894996456 said:0.15352412484643738 a:0.06451858334350936 which:0.04687768796064651 +af:0.5459259277624969 of:0.2419358865386585 high:0.08444199784036627 that:0.08099013221011744 from:0.04670605564836091 +caught:0.48551256291759504 made:0.2535012891860898 placed:0.10451798298708195 engaged:0.03868021119817317 :0.11778795371106003 +feet,:0.7213727203635613 feet:0.21061106769346785 chains:0.006828978129489225 acres,:0.006387323690208965 :0.054799910123272615 +the:0.873900263605758 tho:0.023271024374742263 be:0.016252156790957335 tbe:0.014890964077380041 :0.07168559115116238 +return:0.2659158362272533 reply:0.09491492391363764 answer:0.07591328865851506 pro­:0.035711499304082586 :0.5275444518965116 +miles:0.15178378641907336 feet:0.040674163816064646 children:0.034818751900658175 times:0.02893609102577652 :0.7437872068384273 +is:0.6940324511362383 Is:0.13643311768989203 was:0.09856177894178261 ia:0.02678025308408358 :0.04419239914800334 +to:0.9863266691118955 and:0.012191493104092689 for:0.0003367349021607978 against:0.00011511613490545175 :0.0010299867469456304 +and:0.21163764268605176 This:0.20629560841416522 which:0.10718955812392296 I:0.05994148660455288 :0.4149357041713074 +and:0.8731026912186187 that:0.025149549889014675 means:0.01974656956125648 of:0.012603345305138168 :0.06939784402597193 +and:0.16827001814865053 the:0.12548455110089024 to:0.08415585661396988 a:0.05146116898929048 :0.5706284051471989 +He:0.16916324754445383 was:0.16761613191175606 who:0.13411567061357887 lie:0.12439025944638489 :0.4047146904838264 +and:0.09742381019156654 ,:0.08830413633573038 that:0.0818519283387377 who:0.04949615083606376 :0.6829239742979015 +be:0.3201167708707504 equal:0.03733648082749343 have:0.03362154182020522 not:0.02685299250251394 :0.582072213979037 +and:0.06493745618231933 do:0.0557836550486446 the:0.030502045743573215 of:0.023397440307246924 :0.8253794027182157 +is:0.0834213103109964 Paul:0.029728307227526382 of:0.028810504097046087 Louis:0.006516129433998289 :0.8515237489304327 +Young:0.12685745952924474 National:0.03853626947678642 old:0.03244887013106566 New:0.0323916167109789 :0.7697657841519245 +suggested:0.7688893503339075 found:0.08387519044308968 thought:0.048702887966221575 all:0.018907417590901098 :0.07962515366588002 +the:0.4335528512076807 every:0.18095020156469732 this:0.05347247416073559 other:0.04649609880931944 :0.2855283742575667 +only:0.5420962495706749 alone:0.025416672122048924 look:0.01722619092954129 lost:0.0099223016026614 :0.4053385857750734 +came:0.14220701619226334 went:0.11688030590792345 go:0.0625536176654717 is:0.05734918250026623 :0.6210098777340753 +is:0.8573277894214859 and:0.0423564365658715 was:0.03208106808469042 Is:0.019454615616525804 :0.048780090311426334 +not:0.17170534969047085 being:0.14748372905723064 hereby:0.10521817043113019 so:0.10083286596487218 :0.47475988485629617 +the:0.5496609379001217 two:0.10155401050113771 his:0.06271958416186287 its:0.05902955536212773 :0.22703591207474982 +satisfaction:0.027006315130183055 extent:0.02548812427841136 people:0.02331892597442626 top:0.02179987675728773 :0.9023867578596917 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +as:0.412290141553777 is:0.16689362741697472 like:0.16461886569409692 man:0.1250220789293271 :0.13117528640582427 +D.:0.3456173288984599 G.:0.15382378861518925 A.:0.10380128175976175 H.:0.09972928105832223 :0.29702831966826687 +been:0.4219765057785503 not:0.08137753038295195 to:0.052720837626637346 just:0.05073161266285772 :0.39319351354900256 +child:0.15429284840638843 commission:0.08012298451430849 right:0.07642376148230487 resolution:0.05436846096466948 :0.6347919446323287 +had:0.3775925672820468 first:0.1262072490179125 have:0.11408377221165136 thus:0.06168559459319556 :0.3204308168951938 +of:0.7123933140173423 to:0.05625421256514801 in:0.0478244063246898 for:0.04276721198840993 :0.14076085510440997 +same:0.029807957776095313 the:0.01640323717613357 next:0.01402439255048839 ex-:0.013642946967125246 :0.9261214655301575 +that:0.49688617186182227 as:0.054870807584267926 and:0.03950284254470078 when:0.037360218962123305 :0.3713799590470857 +and:0.2061781599876738 to:0.06657569754284193 which:0.039247163135464336 Mr.:0.03443849027521823 :0.6535604890588017 +to:0.9693980036763727 lu:0.0008811621105672735 will:0.00037106381855573153 not:0.0003450714823010484 :0.029004698912203045 +degrees:0.3663825209635601 3:0.029480108228218494 deg.:0.012222135422985203 30:0.0078162864674204 :0.584098948917816 +for:0.34040962064437796 After:0.21520421195796027 where:0.12380889389073378 of:0.08281108471950593 :0.23776618878742217 +The:0.04305754828519951 He:0.022441117232243644 the:0.020973331978790415 head,:0.011099464594274593 :0.9024285379094917 +a:0.39868855349231463 six:0.18729597378748378 7:0.16578087539241906 fifteen:0.08584221440764624 :0.16239238292013633 +wife:0.1271183805593888 are:0.04502654290226296 is:0.030875167500494897 boy:0.022512796101349642 :0.7744671129365036 +on:0.9220183669584074 that:0.042905247274483506 of:0.012523711383073914 and:0.010107887856030857 :0.012444786528004195 +the:0.7672953673387545 was:0.11425854309224912 tho:0.02452510520671076 a:0.01442289452593607 :0.07949808983634957 +northeast:0.023635924617872985 northwest:0.02218085001590145 southeast:0.01613840237245134 senate:0.01510874017786464 :0.9229360828159097 +York,:0.03358580097029266 Columbia,:0.0018831293958345944 Washington,:0.0007857374814539895 the:0.0004524201068768949 :0.9632929120455417 +and:0.021786262308916338 .:0.01688954303975069 of:0.009592285982974859 county.:0.00834366176202572 :0.9433882469063323 +which:0.08428131768315404 March:0.030386107293970697 and:0.014134507823222215 peace:0.013654743788075374 :0.8575433234115775 +not:0.41903221316788086 known:0.18657091139334306 second:0.10173750508596416 the:0.07196255316277451 :0.22069681719003748 +to:0.9133074071700901 with:0.06866009283264903 is:0.006165552896624397 and:0.002707007439289661 :0.009159939661346756 +entire:0.08188097379015392 public:0.04418244647672483 upper:0.03861430515460612 river:0.022399268722290033 :0.812923005856225 +and:0.11752835993452336 of:0.11515085231771426 the:0.0799861899764638 to:0.0425053468080332 :0.6448292509632653 +of:0.7897766093566791 ot:0.03574485145242693 An:0.004003109304272026 o:0.0036749274101527127 :0.1668005024764692 +large:0.3414806010451286 fine:0.2705109075709144 good:0.2313885731186283 splendid:0.01627022478967003 :0.1403496934756587 +the:0.08201340819337258 at:0.07024920269741179 and:0.06746547055272133 as:0.06711255734431279 :0.7131593612121816 +a:0.5595245733724937 been:0.3609392918583887 had:0.03303637958630513 known:0.016685182005836904 :0.02981457317697562 +the:0.40564017824107723 a:0.03808484515630707 his:0.029284759425929806 tho:0.023676260771413077 :0.5033139564052728 +did:0.3275086536710176 is:0.19121484453497367 are:0.1433575803290244 could:0.09786856451835785 :0.24005035694662652 +way:0.06498946651063253 was:0.05020316363630799 serious:0.04619380124382436 is:0.037689451387272706 :0.8009241172219623 +the:0.5487982543077323 his:0.22958700411122004 be:0.06107039056540217 a:0.038104661242967484 :0.122439689772678 +the:0.4518021648952053 and:0.13049570993191326 a:0.11444422172633995 ing:0.026861258052999555 :0.27639664539354186 +heavy:0.0433970554741135 few:0.03922432299872942 large:0.03490898693542491 good:0.03157087843769219 :0.8508987561540401 +with:0.12207113256836812 in:0.09473730450085151 as:0.08561710852009075 for:0.08136895758570481 :0.6162054968249849 +one:0.06673264188855084 One:0.007382519157163129 Many:0.004281057761906702 all:0.0032722078044102538 :0.9183315733879689 +rather:0.30932085534869824 more:0.2789493031685211 less:0.03560005734484759 other:0.02650193895822402 :0.3496278451797091 +each:0.4582743496454963 not:0.11433557856938047 in:0.0991956936556937 of:0.0876000180209192 :0.2405943601085103 +the:0.18685159980776367 a:0.1044830143056878 not:0.08326564791719906 to:0.04584516954571499 :0.5795545684236345 +the:0.2036911401934606 their:0.014595458336461612 White:0.008442277851727792 Grand:0.004749389180504945 :0.7685217344378451 +he:0.19802967852381811 that:0.13755849910406892 who:0.11449697348676997 she:0.08218324844676288 :0.46773160043858003 +square:0.18524158326259899 thousand:0.04402056388618489 of:0.040274588379280274 six:0.030586832710691347 :0.6998764317612447 +heavy:0.03375267391589752 of:0.002105697147760374 cor-:0.0010302183499082628 con¬:0.0007463679703755528 :0.9623650426160583 +the:0.6255372711116067 a:0.05082180737968629 it:0.043309698824766055 tho:0.03565904301932906 :0.24467217966461188 +of:0.16824029151891393 water,:0.0898312377247692 other:0.018397199046685013 north:0.016065034601707332 :0.7074662371079246 +.:0.7816823434021344 been:0.0324945037935503 be:0.01799957412998153 -:0.005963795398255847 :0.16185978327607792 +that:0.0976374137955751 but:0.06935580924479538 in:0.06756996986970076 of:0.04887647133017534 :0.7165603357597534 +of:0.26121860960192395 to:0.1445562007263915 in:0.14167534554916802 and:0.1018193048783948 :0.3507305392441218 +being:0.16900299755647175 is:0.13781573450555956 been:0.12079462686960302 and:0.11265307599351403 :0.45973356507485164 +ou:0.16199086671672067 a:0.1332607776226553 .:0.05281672184998559 And:0.034008915200643 :0.6179227186099954 +Mr.:0.04126359166513262 it,:0.039560538699253106 you:0.010630926687294021 he:0.007172979950406075 :0.9013719629979142 +and:0.11541200031818351 was:0.03920625078995051 that:0.02475484520814456 can:0.021153494328997827 :0.7994734093547237 +of:0.9525910986846569 ef:0.012353235568571728 to:0.009743747928697385 and:0.007268877088813245 :0.01804304072926083 +and:0.04715112354667591 to:0.025684282116827897 here.:0.02561830890757337 tion.:0.018992220233599668 :0.8825540651953231 +not:0.5162905799299758 to:0.1319241637039754 ever:0.04684213650359588 probably:0.03787757246773153 :0.2670655473947213 +of:0.3567032015716073 to:0.16817259101728899 in:0.14897649550333478 and:0.10281026980440255 :0.22333744210336634 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +be:0.8766084747643288 bo:0.018992628221115453 he:0.015565804197683846 come:0.0063706141971623925 :0.08246247861970941 +every:0.5604186983627055 one:0.17456650002939064 the:0.1361727419591399 a:0.04809507265209068 :0.08074698699667333 +first:0.07431641026908256 other:0.07071710776683214 right:0.0662715492332904 young:0.060830545375712024 :0.7278643873550829 +crime:0.05720636884018138 man:0.019352895332433142 suit:0.007463300208427349 rock:0.006904764012187462 :0.9090726716067707 +from:0.8017796466442697 at:0.035161126634071074 4:0.022122633965520114 straight:0.021732770826609352 :0.1192038219295298 +trust:0.21780147790787455 do:0.19337106649321467 call:0.14274255113834575 use:0.10674872523141805 :0.339336179229147 +and:0.06503675375635289 as:0.023263304775167384 is:0.018513997656271434 him:0.016864670453253572 :0.8763212733589546 +the:0.30081711365944974 six:0.0912366350306555 a:0.036503004428616974 Iowa:0.026769065808726858 :0.5446741810725507 +strong:0.2526125859396833 powerful:0.10060835997059502 direct:0.06905581905937243 personal:0.0426714700158388 :0.5350517650145105 +various:0.05321130192174465 great:0.05310458716452807 different:0.035797969756318666 old:0.02226470951456793 :0.8356214316428408 +can:0.3256515101442778 will:0.297190435201574 to:0.1744836777535216 should:0.10948868843729367 may:0.09318568846333294 +distinguished:0.7222673414827674 worked:0.08999212525115538 and:0.009397771769789124 be:0.0035638237560396105 :0.17477893774024852 +offered:0.19342155262853583 all:0.13339542082766734 been:0.08860623301003381 not:0.08217965151391043 :0.5023971420198525 +been:0.3144371294299506 already:0.2333391242013479 done,:0.12964114460516646 in­:0.10546976952564925 :0.21711283223788572 +and:0.6513653419807658 or:0.21009892730352756 of:0.0800502696856159 ami:0.027300920267755942 :0.031184540762334838 +and:0.4894411904740924 where:0.26931398184969885 that:0.14167239900646486 or:0.0209411974808446 :0.0786312311888992 +In:0.1156454291408062 com¬:0.03610020855358879 the:0.03498244225530276 own:0.0113460013137376 :0.8019259187365647 +is:0.40136939674653965 was:0.23762168976024797 were:0.22176389578592334 any:0.07368081419274321 :0.06556420351454577 +of:0.9727881706818449 of.:0.01723407254656585 Of:0.008414169521902944 ot:0.0013371666706616632 :0.00022642057902458654 +it:0.052384747887148204 cured:0.035140267570167145 pressed:0.028344696518900217 change:0.005341916414279916 :0.8787883716095044 +and:0.1780984478704073 of:0.09070875334039943 the:0.08190251732105008 in:0.057098998958507854 :0.5921912825096354 +not:0.0979081426835331 situated:0.028201816450971105 gone:0.01748313797678746 now,:0.013429076608095825 :0.8429778262806126 +of:0.9651593182982708 ot:0.011888317962179666 of.:0.0047980161519146245 or:0.004694736858506168 :0.013459610729128652 +the:0.6367934049347941 our:0.12142049315842308 these:0.10943778997869115 all:0.038943717628863034 :0.0934045942992286 +?:0.09884288642126592 I:0.07572255188300263 house.:0.01625877559865545 work.:0.012727482589188396 :0.7964483035078875 +of:0.31322343438159467 and:0.08564303320046857 the:0.06384858858323406 The:0.044199411789998 :0.4930855320447047 +things:0.07029770774751942 funds:0.014554925531774081 powers:0.011490717411719979 improvements:0.0067207195841577595 :0.8969359297248287 +be:0.7290326398475727 have:0.055623011123787605 bo:0.03257766719229715 he:0.01993987270508238 :0.1628268091312603 +not:0.3591297813653757 the:0.10770435337027962 their:0.05525155257102668 it:0.053388074154039566 :0.42452623853927846 +and:0.4960067943756055 feet:0.10738765471772665 years:0.10044162586726767 dollars:0.046441947961766344 :0.2497219770776337 +should:0.9995220967341413 would:0.00039440733317926184 was:6.116904674742918e-05 am:1.1279285532520057e-05 had:1.1047600399780189e-05 +left:0.06192898161130658 troops:0.04236865245060478 division:0.004736293398729267 name:0.0029751242874662583 :0.887990948251893 +is:0.3805967943925171 was:0.16552391468181044 really:0.11771722544209247 ought:0.10395610177467118 :0.2322059637089087 +of:0.4587704518436271 in:0.10201698306618769 and:0.09819722203746573 to:0.0924719235901693 :0.24854341946255015 +in:0.2969769344294241 was:0.16312747348128112 to:0.14987743487684219 of:0.14473747984928892 :0.2452806773631637 +with:0.2888595060813241 and:0.12051159248512382 just:0.06930676303208654 is:0.06521559322001004 :0.4561065451814556 +and:0.26190712999061555 of:0.17773890094361264 to:0.14654249513247897 or:0.10590845246943703 :0.3079030214638559 +good:0.15856687771326589 few:0.08808380494261926 short:0.076558320804176 mile:0.05159093286869824 :0.6252000636712406 +be:0.12077283742176943 make:0.10370973311361974 sea:0.07984841901067902 take:0.07771062746527198 :0.6179583829886599 +roll:0.3254120784485522 friends:0.011949128620957225 work:0.007851639845833135 plans:0.007078209704741267 :0.647708943379916 +or:0.19674275249411127 the:0.18728049656688803 to:0.0870311287757041 from:0.08352335218665465 :0.44542226997664186 +bushels:0.046311965801864745 one:0.03948600956351389 day:0.028147375107562884 out:0.02781264236205986 :0.8582420071649988 +?:0.005982305278079862 be:0.005518400813514536 not.:0.00442295962702842 pass:0.0039476074679989535 :0.9801287268133784 +same:0.42755093682780665 present:0.29798031481407183 proper:0.026372500564049734 next:0.015554789315960781 :0.23254145847811103 +dis-:0.19850572124658608 London:0.09686595152084322 d:0.08043175998143964 Government:0.07753245550144386 :0.5466641117496872 +There:0.18731343294893524 which:0.1397755423321637 They:0.1071904130501541 who:0.0841523640491299 :0.481568247619617 +of:0.7584058947482568 in:0.04566572739521688 and:0.040572677903106244 to:0.03768112043313836 :0.1176745795202819 +rest:0.053868732498234116 matter:0.024490398386984018 forms:0.01865260997075621 prayer:0.007066979638379088 :0.8959212795056466 +said:0.6349640121911356 the:0.17460881520045918 this:0.13998625510467405 Supreme:0.003616118896452542 :0.0468247986072788 +which:0.1480129852369577 work:0.08892193845813923 It:0.0831569974552443 and:0.030901792415438487 :0.6490062864342204 +grown:0.2896920755518085 in:0.10207233451450577 as:0.08567624098768528 of:0.07816297883627253 :0.4443963701097281 +it:0.8654505973146147 he:0.0509279851573335 they:0.04841117369448913 we:0.020144918121320868 she:0.015065325712241853 +up,:0.7775464258234053 to:0.07215385175597396 from:0.04925426113409362 in:0.04322622449719407 :0.057819236789332915 +most:0.11384641029998205 British:0.027571599086922128 art:0.02615186511584235 different:0.0257915275351586 :0.8066385979620948 +continue:0.6685345022386739 remain:0.12137415029722641 be:0.02028893404783134 increase:0.019219789629961143 :0.1705826237863071 +courts:0.3707504511497651 office:0.1238240155321118 house:0.05288246599321647 party:0.052100251664879915 :0.40044281566002676 +and:0.00977269048719899 cities:0.008217128205079095 faith:0.0072715357428608934 courts:0.00641587516183141 :0.9683227704030296 +self:0.06704054980700794 relation:0.058796405554261535 according:0.04931276473308177 and:0.047628422655217835 :0.777221857250431 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +line:0.10929552630854963 paper:0.04291879362190317 world:0.03893943594930079 canal:0.029042989584022034 :0.7798032545362242 +third:0.08895767788928136 working:0.062383391968235315 next:0.031128790551394246 all:0.026133011349943173 :0.791397128241146 +the:0.09305086477367616 privilege:0.056910700806396146 we:0.034381852341814345 broke:0.033447012303104484 :0.782209569775009 +him:0.024183801334407833 land:0.019683755798307414 in:0.019317452987635316 them:0.016681360226888917 :0.9201336296527607 +such:0.5070209059083959 like:0.1265281256000648 the:0.12127444977782245 writing:0.10531576432654366 :0.13986075438717316 +a:0.9317470756135371 no:0.053834331601718376 little:0.009098273377378837 the:0.0042910050562776966 :0.001029314351088024 +is:0.43628707934056254 are:0.24028372981600768 be:0.1155826079654286 were:0.10584054907010235 was:0.10200603380789894 +than:0.14195536317030494 and:0.044199291915293086 provided:0.036998696622975745 aid:0.03323753674720331 :0.7436091115442228 +first:0.03504017645825247 great:0.02664983211766412 whole:0.016426627060710224 two:0.015033546486032763 :0.9068498178773404 +John:0.12112736557436608 E.:0.05804368806492221 George:0.05501689106404923 B.:0.05452066918661852 :0.7112913861100439 +the:0.43645900885757116 all:0.13471814452799147 home:0.08137515143902065 an:0.0735482200575842 :0.27389947511783264 +and:0.07054250736513866 went:0.0402320365013711 control:0.03477749927525438 looking:0.03451788507879658 :0.8199300717794393 +m:0.6087311920286499 d:0.07838541544433178 M:0.0745506033751362 D:0.06740801536972973 :0.1709247737821524 +a:0.9157112060197969 now:0.05087014057372967 the:0.027088045245831843 i:0.0010480872850501008 :0.005282520875591294 +conduct:0.13778856030270364 State.:0.03290453373056596 money.:0.0200213204058103 body.:0.008558974044450517 :0.8007266115164695 +as:0.6055508515918514 the:0.11811877957257066 in:0.07477597753235037 from:0.02231962323342098 :0.17923476806980645 +and:0.20260598523548765 in-:0.10301210542277696 the:0.09529266157673369 heavy:0.07896313643111481 :0.5201261113338869 +was:0.8876289507138548 and:0.03290615578317573 been:0.011244611815509311 duly:0.0022000790125005763 :0.06602020267495949 +and:0.20914249572155788 of:0.17818979119750789 as:0.049389272684332144 ot:0.04917081967369309 :0.5141076207229089 +date:0.1168747769362169 size:0.028646960491600596 names:0.028181223276865494 duty:0.026534142767905694 :0.7997628965274114 +bank:0.03601291285017163 and:0.0034944331861690176 Union,:0.0018263349780026266 Bank:0.00160795337583328 :0.9570583656098235 +people:0.03766721764631303 law:0.03666990705790981 same:0.03503734974498434 money:0.033071076817740984 :0.8575544487330516 +one:0.18910755945998253 since:0.17683512454984995 time:0.10615716989816153 plan:0.0748506061957977 :0.4530495398962084 +be:0.0955519341727669 have:0.08437678963139932 not:0.05826250212733621 seem:0.04288076684586756 :0.71892800722263 +Democratic:0.18243551516872575 political:0.18120985430461864 republican:0.0956352537634657 great:0.05056288077725073 :0.49015649598593913 +was:0.10086471520579095 the:0.0871064325547631 is:0.05279621886108092 be:0.03396310535141253 :0.7252695280269524 +question:0.17096205742791232 effect:0.03106426062239424 interest:0.019837664553136215 center:0.019690237514475142 :0.7584457798820822 +It:0.14676020246723182 it:0.07820937232806975 which:0.05690641393863793 This:0.05614657135593386 :0.6619774399101268 +and:0.6944736662421718 ami:0.0684556317875544 coun-:0.05960503535853154 committee:0.020358912424086377 :0.15710675418765574 +Co.:0.009354430317616305 James:0.008248324608130232 Henry:0.00651162947449538 William:0.006509965009701744 :0.9693756505900561 +the:0.7221840159281947 tho:0.05578588062784796 a:0.04519935031477346 tbe:0.017414118246151408 :0.1594166348830325 +the:0.3605757903388315 a:0.2092091358109631 one:0.08969561494516201 it:0.02789843512086028 :0.3126210237841832 +and:0.07687027740177382 There:0.07610768741238055 who:0.07224484290041679 they:0.06439253187105501 :0.7103846604143739 +has:0.410471283386323 have:0.18305124847439658 had:0.17680960289793596 having:0.048092132252604836 :0.18157573298873972 +man:0.6699058266082571 constitution:0.08458271975512657 woman:0.04210572472569656 days:0.03442654839050536 :0.16897918052041447 +o:0.1447228556661261 within:0.0728854099029021 f:0.05518850780796087 the:0.0392781330244152 :0.6879250935985958 +Johnson,:0.01123168388363701 Brown,:0.008990805357899525 Hall:0.005814824918811095 Smith,:0.004804321133223443 :0.969158364706429 +feet:0.1777643727198304 and:0.030415792605214664 chains:0.0276778435060448 came:0.021446307920416283 :0.7426956832484937 +of:0.27603251726173667 in:0.172572817929313 and:0.10237061013200677 with:0.10096035236956039 :0.3480637023073832 +of:0.3152897674030691 in:0.157743983036789 to:0.12186237833278595 and:0.08755632294883722 :0.3175475482785187 +case:0.3190335301793949 days:0.10106151286624879 South:0.034663452227113915 world:0.033260831793213756 :0.5119806729340287 +of:0.16750606222794662 The:0.09208300404888825 first:0.06606390081589146 this:0.06372095969865561 :0.610626073208618 +rights:0.9250285912932127 families:0.003668990854012586 duties:0.0035731336925147457 making:0.0026444211229467362 :0.0650848630373131 +they:0.3960219229582966 there:0.1947132857744843 we:0.1628717330269262 you:0.07268683748333217 :0.17370622075696074 +the:0.49449313299572206 a:0.05595011177314438 tho:0.03433831956569405 his:0.027792135708257427 :0.38742629995718214 +the:0.2740913211714393 and:0.11890302012201642 to:0.11005498710263271 a:0.03766734212137591 :0.4592833294825357 +is:0.6386998363961006 year:0.1774683967156093 on:0.017038967869265422 morning:0.016531236947075947 :0.15026156207194852 +are:0.8506658745221773 have:0.058850593091599485 were:0.05002218573873158 had:0.01228147621068013 :0.028179870436811583 +Kansas:0.30900699286204014 common:0.0984507788924935 present:0.07849268196769586 existing:0.016908366653687654 :0.4971411796240827 +of:0.7542157596739196 the:0.06783489210744448 in:0.036308843195256735 a:0.022391231345281332 :0.11924927367809786 +the:0.13446233317630515 of:0.1273509643869313 and:0.11268591093124605 that:0.06287842350367612 :0.5626223680018416 +the:0.3616117539733761 a:0.08052131814654188 No.:0.02928258267543223 tho:0.021857139767868863 :0.5067272054367811 +is:0.8856473923800869 were:0.06653904556724875 was:0.017563944287750006 has:0.015945322592608557 :0.01430429517230578 +the:0.29523551860130276 one:0.2324859691126806 was:0.13024051784202245 this:0.04923894150690618 :0.2927990529370881 +reference:0.2584102902672584 he:0.16645556876837306 It:0.13485074940547107 it:0.12294745184165855 :0.3173359397172389 +miles:0.8415646231744965 feet:0.0594478942019818 minutes:0.0065385154617225065 or:0.0022703725915769147 :0.09017859457022226 +at:0.3062662306666186 with:0.26107791531213037 into:0.1838958660178081 of:0.12720944903959233 to:0.12155053896385051 +of:0.519921691734246 in:0.06701311715675128 or:0.025795736968685926 ol:0.023063511995555886 :0.36420594214476093 +us:0.4314100258054731 said:0.08348850408262612 the:0.055299583068723464 and:0.04314133863856411 :0.3866605484046132 +clerk:0.3830483230299205 court:0.033198635792219565 officers:0.02683255293098999 seat:0.02286242735023634 :0.5340580608966335 +of:0.7506993803484473 Of:0.08097131500023641 the:0.06446813104673221 That:0.046795384916677396 :0.05706578868790651 +of:0.7892000213486571 and:0.10436328972854461 to:0.024941902395124345 is:0.01953010512402345 :0.06196468140365068 +with-:0.18098135823602646 make:0.10752585612512716 brought:0.10552576979806491 of:0.06072725277612821 :0.5452397630646533 +way.:0.14920838734534855 position:0.07095917609739663 people.:0.014798660884992435 day.:0.009932837916058073 :0.7551009377562042 +some:0.37027921277509207 any:0.17796665529084715 no:0.12357325996191434 a:0.07906734579428301 :0.2491135261778632 +it:0.16580278676319216 It:0.14565369883182072 what:0.09688314039420907 he:0.09630854818793906 :0.49535182582283904 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +the:0.02477019099368336 build:0.014796489462597992 wear:0.013481009071585462 make:0.011155434621842679 :0.9357968758502904 +the:0.8919970088198083 tho:0.07071151596398341 thi:0.0064980093529836865 thc:0.00018063202602918203 :0.030612833837195486 +the:0.46620033684738243 a:0.16003635897481558 it:0.06833514748922175 their:0.04302820659617814 :0.2623999500924022 +a.:0.07963509706655997 p.:0.0436851230977452 war:0.011148966270479125 In:0.005272508834514006 :0.8602583047307015 +same:0.03815937887677139 morning:0.02922407022035731 year:0.025313507127379044 present:0.023605063080042753 :0.8836979806954495 +has:0.35799270860845844 in:0.27393074988771654 of:0.23520452273717765 from:0.07198848017140455 :0.06088353859524275 +not:0.17218311384273652 lying:0.038015700599490415 others:0.03716172193146498 a:0.023571315022733536 :0.7290681486035745 +its:0.575706264976571 to:0.22029440767378292 the:0.07443454827093583 any:0.05817664321588302 :0.07138813586282733 +to:0.1513023029715813 and:0.13709789574711914 the:0.11143253974736134 in:0.09375839144232487 :0.5064088700916133 +as:0.7015093934968115 and:0.13014461604326452 to:0.0432707630411814 in:0.024252315016182725 :0.10082291240255978 +good:0.23181141653251972 ;:0.01247578216955044 with:0.01109005057373916 in:0.009415508176149993 :0.7352072425480407 +Hill:0.07680310028321034 Smith:0.059435467452136743 Davis:0.05314624429547679 ton:0.023283314581173505 :0.7873318733880025 +cannot:0.14814517288916823 learned:0.10690455125362833 of:0.0766716829273975 believe:0.07489870391710067 :0.5933798890127053 +of:0.4293938625847036 that:0.1274042765747817 and:0.11901130071514905 to:0.10516356261028315 :0.2190269975150826 +Brown:0.008827619849209526 A.:0.007031175975678794 John:0.006679991998261449 of:0.002698090662411744 :0.9747631215144383 +the:0.7717287695770793 bank:0.04961990022656998 The:0.03898549912687337 this:0.020560675928384616 :0.1191051551410926 +the:0.5735395090521574 this:0.19206416621109185 my:0.14632602270502576 their:0.05893393573221211 your:0.02913636629951274 +ed,:0.030296610062125938 ;:0.028451684199331008 is,:0.014830092315971903 true:0.012287286443014026 :0.914134326979557 +the:0.612095421807402 this:0.19159919369032105 grand:0.061729120223191075 my:0.03572112838506692 :0.09885513589401897 +and:0.7920548564560362 am:0.0843614095344833 I:0.0449442289959379 He:0.04442442477486567 :0.03421508023867673 +they:0.23297135317829779 I:0.046307568162055134 we:0.007883983458865422 1:0.0009463028043160056 :0.7118907923964657 +the:0.01596096741537345 -:0.012241759859282145 was:0.006953159049322939 not:0.006461634102966698 :0.9583824795730548 +to:0.14317880217267315 she:0.12499103013559036 the:0.12424486522582077 he:0.1052029545631772 :0.5023823479027386 +and:0.08408694490672258 life.:0.03833131575897865 the:0.03212997879994535 ones:0.01851521877631608 :0.8269365417580374 +the:0.4171573109386528 his:0.13112931835790956 a:0.0502133259144461 tho:0.02819005932697255 :0.373309985462019 +he:0.44190574620762224 she:0.2406071604861803 I:0.0920088809766455 it:0.0789298398251896 :0.14654837250436228 +a:0.6506669146158527 the:0.060027882329604335 black:0.05620662765774023 white:0.03586536400713133 :0.19723321138967143 +than:0.9153269937644674 like:0.03143460405769296 of:0.017743663434611368 to:0.013086479883707779 :0.02240825885952058 +of:0.8331313269121231 in:0.0664254251924622 The:0.04759035298512805 the:0.025663267520068873 :0.027189627390217713 +to:0.2702660109055178 state:0.14836483454057758 State:0.07332612413503957 and:0.053733247023940625 :0.4543097833949245 +Mr.:0.16064289785060243 Wilson:0.12671647289451013 J.:0.03148045722753081 White:0.014545137133892116 :0.6666150348934646 +schools:0.3510471275430269 it:0.10230893311156561 him:0.09751171029843769 duty:0.08113699020946737 :0.3679952388375023 +and:0.27459408363051413 of:0.047783374546163375 at:0.04179870574613451 ments:0.03974118424894645 :0.5960826518282416 +is:0.8419774676947507 Is:0.07030636098388639 was:0.059115593973341055 were:0.01575417189265311 :0.012846405455368854 +and:0.13345234634636347 to:0.06709171043301076 with:0.06225628642071534 of:0.047595530141453866 :0.6896041266584567 +to:0.6339175873348275 between:0.13309282404736192 the:0.06837354882463799 by:0.05154701908301306 :0.11306902071015955 +full:0.32807917413112936 big:0.27781142304159884 good:0.14395563146148638 half:0.07959782491521829 :0.17055594645056707 +family:0.06079476509621339 letter:0.039718454931204523 wife:0.0391500799646431 right:0.037315179555830955 :0.8230215204521081 +one:0.9993007893674634 person:0.00022429066317500757 man:0.0001022330326857875 county:7.208092688811738e-05 :0.00030060600978761264 +at:0.3588803959047734 Let:0.28004742413683903 to:0.14783960389839762 tor:0.05267089228928646 :0.16056168377070343 +steel:0.16931202904326564 of:0.1264667454011606 and:0.11164813826577863 with:0.09843908292785462 :0.4941340043619404 +voting:0.08923182746549119 man:0.011904515176142284 room:0.009572214009117211 father:0.00819985740059396 :0.8810915859486554 +and:0.7701555680391331 the:0.0534849968910685 it:0.027157336694968174 just:0.019897203508208023 :0.12930489486662222 +but:0.20598867398784448 and:0.14746793966672192 that:0.08379803250587205 But:0.0695338605899736 :0.4932114932495879 +nature:0.03667695929480724 one.:0.012366141969986612 of:0.004390870248371966 theory:0.00411772216297011 :0.942448306323864 +shall:0.8884576090862718 must:0.01873268582277903 will:0.014980758236003259 to:0.0013343710673541717 :0.07649457578759188 +and:0.010279674909576243 pose:0.0007547471737866905 press:0.00022628103861836203 the:0.00010162819558875865 :0.9886376686824299 +the:0.049291590915182225 large:0.038502184698932324 block:0.037558228550984854 year:0.027541014005448193 :0.8471069818294524 +the:0.4758945700168422 his:0.29876142316293713 a:0.08701520120606163 fair:0.045279527732019535 :0.09304927788213935 +was:0.4738919782580572 is:0.22190028215054564 had:0.09837108133034139 shall:0.07125995556214619 :0.1345767026989096 +c:0.047374005982544876 Union:0.026201713934903635 ample:0.010910162922883748 port:0.008475553147956314 :0.9070385640117115 +and:0.5965934877318797 or:0.09953439097580137 a:0.09476201516015552 with:0.055855471292732745 :0.15325463483943053 +a:0.9899417714777827 that:0.001623027615848754 the:4.0758182859974435e-05 some:2.9698861254107788e-05 :0.008364743862254373 +form:0.018542727054552698 way,:0.013939874676513683 -:0.010398488423430021 results:0.010047501575727699 :0.947071408269776 +little:0.16950946453846336 and:0.13393529655064104 thing:0.08566259359519085 but:0.059483189866640626 :0.5514094554490642 +public:0.29855240257178767 the:0.1911106748063033 right:0.05213295915821762 a:0.0390832953928964 :0.41912066807079507 +the:0.04538167366725823 great:0.026710978923083592 said:0.019785605120067756 first:0.016112396114399973 :0.8920093461751906 +He:0.26670581787159303 he:0.23156326269527636 and:0.14718904561809362 ho:0.07678043782051656 :0.27776143599452036 +the:0.3004463926820699 be:0.14180060283176782 pay:0.06300362053518578 a:0.06229669170248465 :0.432452692248492 +it:0.38958117905735706 them:0.31671380556729073 her:0.05361721947483319 him:0.05273824324702478 :0.1873495526534941 +or:0.5128204659109425 the:0.08128357403605531 than:0.08084567303556087 to:0.04352244080673791 :0.28152784621070326 +She:0.998828433799202 He:0.0005663279265956911 We:0.00041840031457223483 I:0.00011078360351491271 :7.60543561151016e-05 +county,:0.5362658329054661 and:0.06941808736112165 year,:0.06449569209490524 other:0.05882542720477259 :0.2709949604337344 +the:0.9739905768426601 tho:0.00812169634745414 tbe:0.006288293667605059 tlie:0.0016474096794891827 :0.009952023462791509 +the:0.9819495664925996 tbe:0.017995181359852504 tho:2.2265952139256023e-05 your:1.3433822020332074e-05 :1.9552373388456966e-05 +the:0.796166802224789 a:0.07140035970506423 tho:0.0429669347504855 n:0.023135473775175764 :0.06633042954448552 +West:0.014462026047209121 City:0.012714702505995289 California,:0.012258699643722797 and:0.010969374818051639 :0.9495951969850213 +I:0.028714759407181507 States.:0.02614050360542406 spread:0.025657328527060017 war.:0.015290884120202014 :0.9041965243401324 +of:0.34972964245369054 and:0.16392359690927683 that:0.12916164247019185 which:0.10444706535083337 :0.25273805281600753 +will:0.301277037479003 would:0.28610713125710474 may:0.1804698718895952 shall:0.11678678878821747 must:0.1153591705860795 +and:0.1279368069730676 son:0.07763612294964103 as:0.0663573126262472 Is:0.050464739724403684 :0.6776050177266404 +ana:0.06753394842391336 i:0.042957166534474595 and:0.03361129087346422 me:0.023676313944296853 :0.8322212802238508 +a:0.23361341202889602 the:0.18722104869762152 not:0.1310746501316368 an:0.06472723830979181 :0.38336365083205376 +second:0.07678374192446416 little:0.05545335372942924 notice:0.04664342448190293 2:0.040240659647804766 :0.780878820216399 +more:0.37955141175067625 greater:0.16069213318017136 larger:0.10374303132685937 less:0.09479383199456949 :0.26121959174772363 +of:0.6362807083231873 stock:0.005524118498603654 in:0.004968558470345872 and:0.002540418377486679 :0.35068619633037645 +of:0.9346803217039358 in:0.016690990152257234 and:0.01145975680630523 with:0.010268330739644936 :0.026900600597856827 +at:0.06336538396275451 to:0.049226105664790396 and:0.04472785909657378 in:0.04429250643784019 :0.7983881448380413 +side.:0.22939824379800022 last:0.0656475482047085 were:0.008519291473612238 so:0.007928108183926377 :0.6885068083397525 +purpose:0.15706335043787284 time:0.12382576792777826 and:0.0319365624409428 instead:0.02523815899880383 :0.6619361601946023 +an:0.55128631225825 by:0.04876886831726273 and:0.03925512478650151 A:0.032213917949426504 :0.32847577668855915 +if:0.1949778518223233 with:0.15039153966006508 in:0.13261509914009692 when:0.09147589984132112 :0.43053960953619347 +a:0.48752841097021526 one:0.4767316439614671 the:0.017984630133313907 that:0.006929320577684021 :0.01082599435731964 +friends:0.17284834892383488 disease:0.04392211581544063 satisfaction:0.03715899708080681 Democrats:0.029597463379716797 :0.7164730748002008 +the:0.10746710515332743 or:0.09445668074806023 a:0.08627975996262825 and:0.08295058193634747 :0.6288458721996366 +which:0.6969177762880702 it:0.07210648095821438 It:0.041968799618545716 of:0.03621532671715859 :0.15279161641801114 +see:0.5610095497443858 which:0.16157311733522253 the:0.13339773982174974 have:0.0950727453574364 West:0.04894684774120544 +off:0.7194036052678462 some:0.10246906558315363 down:0.09508544040936631 up:0.04679523280824055 it:0.036246655931393326 +all:0.3825476758246395 the:0.1738375917800916 of:0.16381574796095794 with:0.11524532311011843 :0.16455366132419255 +sho:0.9932270607393666 she:0.006769316933140173 he:1.3061731825825984e-06 lie:5.039199219662173e-07 :1.8122343886372966e-06 +Senator:0.1472709610165211 John:0.08344788861966741 Dr.:0.07133685123246596 Judge:0.053853521354173484 :0.644090777777172 +over:0.009842023446903589 for:0.008305086506482061 in:0.007836207225626992 by:0.006460900419115623 :0.9675557824018717 +the:0.09348407175576284 very:0.06700867765996939 not:0.04736945323891501 all:0.04256274739510373 :0.749575049950249 +and:0.13749116249008705 the:0.049638939145636406 of:0.042088958635268264 to:0.024526720807734128 :0.7462542189212743 +water:0.15045963938173015 water.:0.055804412340598866 the:0.022199328471057576 blood:0.004407879680469465 :0.7671287401261438 +out:0.8326133014342944 of:0.05293158448307738 and:0.031658353056150286 in:0.024586224265584596 :0.0582105367608933 +to:0.37975301546981527 and:0.22087361130676655 with:0.11629996039228896 into:0.11412079796198185 :0.1689526148691473 +and:0.12277403582093846 of:0.06817263060083245 the:0.06716129019292709 The:0.027996999816128597 :0.7138950435691734 +ad-:0.04667109351302082 same:0.02411056384763346 the:0.02238126703305201 required:0.017501937881758516 :0.8893351377245351 +ordinary:0.10709886803062428 B:0.10270350656114562 regular:0.049136480421385985 various:0.030077907874364547 :0.7109832371124796 +bought:0.1668893680246839 written:0.10488723664538202 tor:0.10016469182472393 left:0.08434729629015952 :0.5437114072150506 +not:0.005329200532595968 from:0.005258546621424595 turn:0.004795006954671982 of:0.004421033111988787 :0.9801962127793185 +be:0.0187805393000972 the:0.002240186627437235 call:0.0014181713449817807 elect:0.0013873755293232724 :0.9761737271981604 +that:0.25141215920090487 though:0.1334500510828799 as:0.12010225485459859 but:0.10666429104308041 :0.38837124381853605 +the:0.9116618909588278 tho:0.03457023330699874 tbe:0.01486196497408318 his:0.01013233026749918 :0.0287735804925911 +ot:0.48375421925599177 of:0.25830393720311273 with:0.17561435912988668 and:0.03120223810245518 :0.051125246308553446 +be:0.4172821310012923 bo:0.23691260428042046 have:0.04054778845371934 know:0.037497765879785254 :0.26775971038478263 +farmer:0.20662719115723538 officials:0.12535984139392292 line:0.12269567214426706 money:0.030657253275560802 :0.5146600420290137 +would:0.677771425005237 might:0.25308950468919833 could:0.04299319181137577 should:0.013832018860924564 must:0.012313859633264472 +of:0.013766701763934054 of.:0.007101050447666702 come:0.004846184330835477 and:0.00482313734346125 :0.9694629261141025 +and:0.3026251061909327 of:0.0748059092707878 the:0.03914187160294319 or:0.034047009052223735 :0.5493801038831126 +of:0.03171823108889292 and:0.024689712228892356 fine:0.01783106569878988 to:0.014715333089839671 :0.911045657893585 +the:0.624807173120625 which:0.09240497443279945 this:0.035197322675689265 a:0.033833546293638044 :0.21375698347724842 +very:0.5041923315633976 too:0.09228080799481533 so:0.07544627784830736 not:0.05231329716267676 :0.2757672854308029 +money,:0.8794736065300841 labor:0.0043426417433828635 water:0.0027268963360595508 money:0.0025539780108746156 :0.11090287737959889 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +the:0.5476491709024066 of:0.15789615664730794 The:0.07343276207459198 a:0.03231650480063755 :0.18870540557505588 +to:0.7931866830494412 of:0.059459590534332966 in:0.03667137511246338 on:0.029352596989257875 :0.08132975431450469 +boys:0.6552432583192107 bills:0.01696321597763027 trees:0.014263340184359064 things:0.005837601996168441 :0.30769258352263146 +not:0.18542822787264596 allowed:0.15890938253684822 now:0.13911891147359268 confined:0.09164152218599611 :0.424901955930917 +facts:0.6467047264632204 figures:0.04682720050725752 will:0.03007024287875208 to:0.02265829357274364 :0.2537395365780263 +value:0.036308788473997204 passage:0.01732884383381288 right:0.017224182793592495 condition:0.01676362239422323 :0.9123745625043742 +in:0.2219185553684227 for:0.13348918912150923 at:0.11595830272503457 by:0.08218063107531841 :0.44645332170971513 +in:0.41320957620316673 into:0.3077211339267568 of:0.16169528508217956 In:0.07639969934982975 :0.040974305438067266 +of:0.5879594105984361 while:0.11707891391654891 to:0.11517248144255332 and:0.05942026130042497 :0.12036893274203665 +not:0.3889803091491164 the:0.3265440466698343 which:0.036227217248556445 his:0.029282274094012063 :0.21896615283848075 +agents:0.023119954623608913 own:0.02060390601495956 room,:0.014527795443711678 body.:0.010307522138916106 :0.9314408217788038 +and:0.09622335327833688 the:0.07273993489561333 tion:0.06374360016183306 due:0.03360329865375424 :0.7336898130104625 +the:0.8936238286884451 tho:0.05463105735801012 this:0.01618272335300045 ihe:0.00401592466937599 :0.031546465931168215 +I:0.21379861849226123 It:0.15359062293060763 He:0.13687060267430684 That:0.12279102040559484 :0.37294913549722947 +it:0.5860833952728153 it.:0.221259463134884 him.:0.10016553620633213 them.:0.04989603266558957 :0.042595572720379 +to:0.2129436364627466 of:0.15912832074418595 from:0.14843305010172717 on:0.12208872133396836 :0.35740627135737196 +the:0.3738885269477216 a:0.052883836841465415 two:0.0374596207574682 tho:0.012588345682213562 :0.5231796697711311 +Is:0.9807303925793764 is:0.016457665018436658 was:0.0014377337617443077 la:0.0004232949281484464 :0.0009509137122942723 +the:0.27813639299636056 a:0.09569718792065993 1:0.08929992143228506 each:0.03994675475075973 :0.49691974289993474 +main:0.30273874797193545 almost:0.057203427005786414 street:0.042646656601784946 new:0.03892480432625363 :0.5584863640942397 +of:0.15118251910208785 the:0.12548970579419932 and:0.07054452870626021 or:0.06472350480933974 :0.5880597415881127 +that:0.5197301283930373 the:0.2416284843164867 a:0.09200817821541392 our:0.019461760841298664 :0.12717144823376342 +we:0.7336396831841814 they:0.16773308815727037 you:0.025620610685245834 there:0.01582634338655899 :0.05718027458674345 +lot:0.1556167216628576 complaint:0.06445188843282257 land:0.05195352369920883 that:0.04653311847558104 :0.6814447477295299 +the:0.2376685753528672 a:0.10623164309128023 tlie:0.06054373545634193 they:0.043757835010365134 :0.5517982110891455 +his:0.6089672034196172 the:0.07075809606410594 a:0.0167778068720576 n:0.01418255635934312 :0.2893143372848761 +to:0.098495596356485 at:0.09558907609501285 on:0.07539063159538108 made:0.06759493653676128 :0.6629297594163598 +carry:0.47112860348373703 her:0.11992320087662754 get:0.09412657259218193 point:0.08822357305530265 :0.22659804999215089 +In:0.1657873812093677 of:0.16078181948027048 When:0.11369984409826031 If:0.1122331130277496 :0.44749784218435196 +and:0.03145054822762326 out:0.0294852433464995 ment:0.02009385803624262 to:0.020017110482723876 :0.8989532399069108 +it:0.4734161047754032 the:0.09330961819684919 sympathy:0.05166145161694632 in:0.0371015832368625 :0.3445112421739389 +works:0.06948088820919851 paper:0.04085447594684978 prayer:0.02047689421881613 name:0.01943908900955874 :0.8497486526155767 +of:0.1214824503024148 and:0.12083250069515541 in:0.10683384670839834 with:0.09602345963233537 :0.5548277426616963 +the:0.7143317600505456 a:0.05371645629275358 tho:0.025294820261121564 this:0.014513032717406466 :0.19214393067817293 +hard:0.5596399647399419 difficult:0.1965590117274439 impossible:0.13018272628722624 easy:0.05867457773284403 wrong:0.054943719512543836 +country.:0.06200939005783366 Government:0.04557563990127379 state.:0.037386307082477824 land.:0.02262192923961506 :0.8324067337187997 +event:0.5009940259000147 which:0.14579787723099843 that:0.030481315777219135 and:0.016447076732836338 :0.3062797043589312 +books:0.3876649925152316 board:0.0708033388960135 records:0.04663891905013748 letters:0.029232315489485138 :0.46566043404913215 +ac-:0.008332125121018705 a:0.0024239294577308086 a.:0.0009178264800749589 consider:0.0004771168579990605 :0.9878490020831765 +more:0.30428342439946143 larger:0.26243920164391427 rather:0.018910091454204685 to:0.011336563161130351 :0.4030307193412892 +to:0.26604070867831464 and:0.20549286951078102 will:0.04347939607288999 would:0.03307245017101154 :0.4519145755670028 +a:0.258229490187927 the:0.23871752215763437 what:0.06867493383997372 his:0.03190216083046213 :0.40247589298400266 +a:0.20746779006645816 and:0.1575909867587049 the:0.129126320896836 or:0.12845398478663686 :0.37736091749136413 +highest:0.7739818106215028 greatest:0.21090034496383378 largest:0.01216804602311312 least:0.002012313276201275 :0.0009374851153490123 +of:0.1895900583441166 in:0.09536613982596093 to:0.09296457110333045 with:0.050311464488197295 :0.5717677662383948 +to:0.06911939169406982 well.:0.049866759302557476 source:0.012379518680717214 or:0.009619083951445834 :0.8590152463712097 +Southern:0.1947333348827821 First:0.08453266349869462 said:0.07769728465187735 House:0.04383656106653868 :0.5992001559001073 +the:0.13245076184602272 and:0.07934511196193196 a:0.0663066968842265 Mr.:0.05012389953421621 :0.6717735297736024 +the:0.23844182272017178 or:0.13892159999489495 and:0.07632033185434442 a:0.06568808760575494 :0.48062815782483387 +and:0.5487323870316043 clear:0.13874466300864535 this:0.07465243688406589 of:0.07229898131555641 :0.16557153176012804 +it:0.05823945225501184 minutes:0.0011508901144718 and:0.0009887728985904449 .:0.0009664009870404539 :0.9386544837448854 +and:0.2242541933951322 disease:0.1770753955846802 has:0.11969809679739314 I:0.0646417011653867 :0.4143306130574077 +place,:0.018201886632970076 other,:0.017957347825962637 not.:0.00519981480889124 another:0.00367380851477979 :0.9549671422173963 +of:0.9292784314685264 to:0.03963629603686371 that:0.013232295050271644 ol:0.00921452530205431 :0.008638452142283938 +;:0.03648428403416155 which:0.02487650232271572 if:0.019418225591594913 her,:0.012686859039377977 :0.90653412901215 +Fred:0.022445269726537383 gentleman:0.0162043098484042 John:0.015357263308252316 Town:0.007981228159921852 :0.9380119289568843 +of:0.7730408448307258 as:0.08843444965046926 in:0.07668026738615813 Of:0.054843849146333105 use:0.0070005889863138816 +House:0.25557200727127594 House,:0.1583963023312937 which:0.020070558154721255 so:0.018347353544947147 :0.547613778697762 +the:0.09144499621802393 and:0.08753075237195541 of:0.05740052446972609 to:0.043881392272069095 :0.7197423346682255 +upon:0.29371636551743374 on:0.2602349176016952 to:0.23509736970661502 at:0.19392376676456247 of:0.017027580409693516 +feet:0.8811681165646333 as:0.03398600532000796 feel:0.03333607424568766 the:0.006503069107045421 :0.04500673476262556 +people.:0.016130918561023732 You:0.012138586823910431 other:0.010594025414770133 side.:0.007633039088645396 :0.9535034301116503 +money:0.28151535103426034 good:0.0717909844330971 men:0.027720724843771048 water:0.02245991336165402 :0.5965130263272176 +the:0.12240800578194243 was:0.03511480374845064 a:0.033925405959774585 in:0.028515505707467227 :0.7800362788023649 +the:0.025722477606170965 life:0.007178116154110879 a:0.006022351469649742 peace:0.005012392270001325 :0.9560646625000672 +directly:0.07170967649398334 ence:0.05276339810231764 and:0.019930792385999836 I:0.016571672232605816 :0.8390244607850935 +to:0.3188751432740078 only:0.20360630330084395 for:0.1850025576055495 before:0.16693401473462757 with:0.12558198108497123 +called:0.6922090534800986 drawn:0.13001148749298905 agreed:0.009651306570373455 decided:0.008958834593307445 :0.15916931786323152 +the:0.1852601609606823 a:0.15104931840872135 him.:0.1418980318109803 good:0.05934548331745257 :0.4624470055021635 +the:0.3191646272998169 a:0.05135761982844153 any:0.040878492111092214 other:0.033240612148904794 :0.5553586486117447 +by:0.3021568431969621 they:0.1567183226068988 the:0.15169737613498593 said:0.050773695433696864 :0.3386537626274562 +in:0.3618337794112119 on:0.2517013037867537 of:0.07931137722235955 and:0.018607793103295363 :0.2885457464763794 +to:0.6713574874378405 to.:0.1228758981132205 un-:0.04994567496227421 the:0.024491554587236425 :0.1313293848994285 +to:0.26229748322903207 in:0.1540118990077121 at:0.1381145819744282 of:0.11752820553444387 :0.3280478302543837 +passed:0.283407583594915 been:0.13358233732877609 gone:0.07847414046088382 come:0.03908138081004677 :0.4654545578053783 +I:0.7790205790885473 they:0.09233774085074137 he:0.06387557154390895 you:0.028740114213391333 :0.03602599430341107 +if:0.547014497978107 whenever:0.17619005346975128 upon:0.12523041779114072 when:0.09860020203698433 :0.05296482872401695 +of:0.605539183664902 to:0.32389091531522674 wo:0.018661721797697785 the:0.012419340522865576 :0.039488838699307985 +of:0.556671700916552 and:0.08551798815662294 in:0.052991280650625465 as:0.04639668278779969 :0.25842234748839976 +am:0.21222913217931588 had:0.1837629743022331 have:0.16803105958268105 was:0.16386496000799738 :0.2721118739277726 +of:0.8715621249801974 in:0.0608482910111927 ol:0.023500518923632346 oi:0.02239637239617553 ot:0.021692692688801998 +be:0.7612061853805668 and:0.18484425965042142 He:0.007696199649651724 he:0.004859443645266598 :0.04139391167409343 +is:0.6369336203155869 which:0.1442156735612615 and:0.08373477364017164 to:0.03516215974761072 :0.09995377273536929 +that:0.1854840211214717 board:0.15229791988234767 which:0.05689704906607291 Sunday:0.056264750136086186 :0.5490562597940216 +for:0.8896416067116203 a:0.04580514677127593 the:0.02203793477914849 on:0.012340067697377907 :0.03017524404057739 +and:0.8721415046387905 of:0.03197721437721442 an:0.024241928286897373 is:0.010793947938451367 :0.0608454047586464 +of:0.3943079708912956 on:0.18977317848291855 or:0.12090758861586674 upon:0.10015289573702583 :0.19485836627289324 +he:0.29409702513052904 it:0.06549032123900175 It:0.05594886485283061 one:0.02193512869574579 :0.5625286600818928 +States:0.2910932638636749 States,:0.26874533220957114 States.:0.16636601231598735 the:0.006875515716961461 :0.2669198758938052 +for:0.9820420967191019 to:0.006500283247074396 the:0.004929016823875082 a:0.0018284281450675385 :0.004700175064881007 +to:0.9768524702364216 te:0.014222938178935605 lo:0.003984129595949311 In:0.0009222947096591439 :0.0040181672790343785 +foot:0.042771729574900316 fire:0.04249388903468473 the:0.020173453684537056 his:0.012710681260862786 :0.8818502464450152 +telling:0.1652190460542779 the:0.16307212568053261 great:0.1503807094002881 a:0.08141343882434698 :0.4399146800405544 +people:0.8177414068589509 him:0.13309297046075955 them:0.016516938527422653 others:0.012505835607800013 :0.02014284854506675 +April,:0.23004117946277797 May,:0.2057938010842695 June,:0.1976618163600646 March,:0.18928723552614915 January,:0.17721596756673877 +will:0.24607344877723347 to:0.1764571530487156 shall:0.16561229908800654 can:0.15488243773025864 :0.25697466135578584 +from:0.6350427080593518 than:0.03877048519196162 with:0.03416953857378473 of:0.020533866920203 :0.27148340125469894 +1:0.07851412526356238 and:0.06628921180969632 of:0.047731913339088626 the:0.04608085154842428 :0.7613838980392282 +He:0.07240139219114207 who:0.058790996584861546 It:0.048904634558331606 John:0.041584826734813334 :0.7783181499308515 +not:0.8407325433594813 the:0.028376588584669345 net:0.020139699053702786 and:0.011352004884643696 :0.09939916411750271 +and:0.20976128691181026 expected:0.029899152566647245 range:0.02870532975244389 continued:0.024833800046858503 :0.7068004307222401 +He:0.02403296291982247 had:0.014621428415970668 have:0.0024401369100695678 was:0.0017256134594160401 :0.9571798582947214 +a:0.38399104634522574 no:0.24551806959749733 the:0.08191890676346422 an:0.026822051735007395 :0.26174992555880533 +that:0.345972416885106 as:0.2929553963965499 when:0.12889895422009967 and:0.09156583545309432 :0.1406073970451502 +to:0.9116599678180155 that:0.04923777157153718 of:0.008064622484268539 by:0.004948058684718357 :0.026089579441460387 +them:0.011875971368133975 sure:0.0023920224665069582 tire:0.0014829704024605051 route:0.0013465991676416002 :0.982902436595257 +was:0.37935869475458905 always:0.20767905084813212 is:0.18261141105162268 had:0.1263611403955063 be:0.10398970295014995 +out:0.03464778454039569 and:0.030773826367733417 day:0.016840775078004702 amount:0.01610863297676177 :0.9016289810371045 +The:0.6419221979235322 the:0.13647639893876504 One:0.10308904726352293 a:0.08338400522637988 tile:0.035128350647799955 +the:0.5030207443545421 his:0.13996052985611393 no:0.10187989410207317 too:0.06679416697410864 :0.18834466471316202 +the:0.18460761528994651 The:0.17745641102325982 and:0.07457106381472361 of:0.05610619677161543 :0.5072587131004545 +past:0.4994040817675372 last:0.18248370605614211 first:0.0808862594592693 next:0.04381808855549239 :0.19340786416155917 +not:0.49746565037993007 you:0.3258752070771885 It:0.12378072865930166 people:0.030977710166979415 they:0.021900703716600304 +ago,:0.02187892781644002 ago:0.01789651656432836 old,:0.008448263674964844 any:0.00703847635856557 :0.9447378155857011 +state:0.0451058476640427 line:0.03796927245769314 me:0.03701767578882955 lot:0.019943328024139312 :0.8599638760652952 +the:0.7360927118252772 a:0.07051890751351897 later:0.06200437506111269 that:0.03524508034975847 :0.09613892525033269 +was:0.32634917101382355 were:0.18036960277004946 is:0.1777705160434098 and:0.16256105556123837 :0.15294965461147883 +a:0.13374507207201702 tion.:0.03311161706603187 state.:0.02180638739870704 .:0.017528646734710704 :0.7938082767285333 +5:0.322628833843448 6:0.24753995712240298 40:0.18635555808300977 7:0.05345011380869266 :0.19002553714244674 +real:0.9532334766124884 said:0.021570883248647737 personal:0.0002383826512414624 cost:0.00011064015505459958 :0.02484661733256785 +The:0.5919873692169605 own:0.19570073624684675 the:0.017731091131433913 same:0.004106362429993477 :0.19047444097476518 +its:0.32175621891779277 her:0.21892138001738629 his:0.20266859224424152 who:0.031217755316131714 :0.22543605350444776 +along:0.24779904436678177 of:0.19292795889609834 in:0.1792256870330511 on:0.17665662206316804 :0.20339068764090076 +is:0.44084638499659073 are:0.14902833742290186 Is:0.1377640778536931 was:0.08848369198932 :0.18387750773749442 +of:0.18799498054340114 the:0.18075346853426896 working:0.13975627152123488 The:0.08926635905928808 :0.4022289203418071 +usually:0.10607707220350611 they:0.08647790087933631 we:0.06256837635366337 There:0.05145605404298297 :0.6934205965205112 +them:0.10682182553921739 notice:0.04845558381856593 it:0.03374169823476603 all:0.03184367648286952 :0.7791372159245812 +and:0.39679474893621913 It:0.23547477080110255 sure:0.08228176239433738 they:0.057698489055604395 :0.2277502288127365 +should:0.834471942015579 will:0.10894423780817045 is:0.02211733231474053 during:0.016687954416799145 :0.01777853344471109 +few:0.994016232688034 little:0.0006567510584832866 soon:0.0006139471399389204 well:0.0004409028244613186 :0.004272166289082563 +four:0.28690040584745635 much:0.20823291742956082 rapidly:0.14439149086241487 far:0.09709783939947324 :0.2633773464610947 +the:0.7403658632366403 his:0.037308498947993166 of:0.03541830527572805 tho:0.03291050126754361 :0.153996831272095 +may:0.25321951758404887 are:0.07223514309483314 will:0.06543953338465001 have:0.04824888815338729 :0.5608569177830807 +it:0.13917514920637652 It:0.09779354362086463 and:0.09025948131998072 which:0.05796650039377487 :0.6148053254590032 +to:0.2509133716221197 would:0.12349314352873002 you:0.10843521736554779 must:0.06036840118077863 :0.456789866302824 +the:0.32805622663561707 a:0.07551908363504345 not:0.07158933065593444 he:0.06411697401259867 :0.4607183850608065 +by:0.2030090863140295 of:0.15329441741106264 in:0.14272491070653232 the:0.12915489276971728 :0.3718166927986584 +went:0.023458421401924417 as:0.01977750695162558 up:0.016581925387463402 sent:0.01482727192062516 :0.9253548743383615 +tho:0.2954057169574334 and:0.25270731245020933 from:0.1587490250600901 to:0.031256178545704755 :0.2618817669865623 +and:0.1545353273389964 the:0.09745090579646708 or:0.0548035535872089 of:0.053728812474684674 :0.6394814008026432 +the:0.14642780676403233 a:0.03707746254544266 other:0.02239039010489221 to:0.01461279458303093 :0.779491546002602 +himself.:0.2414860579926907 men.:0.031081478245772984 him.:0.023236644320281007 them.:0.02011006679478512 :0.6840857526464701 +acres:0.27541109129630725 tons:0.15250483823022348 dollars:0.13589859664695864 pounds:0.06902422794056484 :0.3671612458859459 +heart:0.43669488204128515 name:0.028730470107761127 face:0.0218067816978053 hair:0.012537138170371354 :0.5002307279827769 +be:0.9268527161325854 be.:0.029382990038803024 have:0.022417460039561504 bo:0.00906826926949076 :0.012278564519559434 +his:0.8892536339382789 the:0.06444809120669923 their:0.03411362373086491 that:0.0018367307417097578 :0.010347920382447067 +is:0.36003580926819445 of:0.1426400448436248 be:0.14157812147516852 by:0.13331968602820227 :0.22242633838481002 +and:0.13152420004027954 men:0.11408313268357351 Bank:0.11011812047588186 side:0.07171607139413506 :0.5725584754061299 +parts:0.06391186736160284 out:0.03641335501954377 principles:0.012724107970485676 who:0.009671945389595087 :0.8772787242587725 +and:0.350604289085271 the:0.21984910034968322 by:0.12524753074454387 ever:0.06101004708650319 :0.24328903273399882 +for:0.006690831103467206 of:0.0008037797219913104 other:0.0007696623755787786 such:0.00060411970922671 :0.991131607089736 +shall:0.45996847575744865 may:0.35278223214709575 to:0.08948300297833454 might:0.054751018791558116 would:0.043015270325563 +he:0.6242591680579539 I:0.23099233709249167 they:0.08469642046901635 we:0.03462603028079798 the:0.025426044099740055 +of:0.28744674394851555 in:0.10626795660439155 for:0.09137527235398814 to:0.07264823093202982 :0.44226179616107497 +of:0.9529421919773774 uf:0.022691686983018128 ot:0.011803396443205117 or:0.005131999948095182 :0.007430724648304218 +the:0.41552590127111855 that:0.391363889350183 this:0.11220535612705371 one:0.05638096937602215 :0.02452388387562268 +the:0.5803093868685352 his:0.0748067933863939 her:0.04493315300694212 their:0.04237026600380732 :0.25758040073432137 +an:0.9859043379665259 the:0.006118191421832061 a:0.00028239639219343834 not:0.00026408533741378127 :0.007430988882034736 +the:0.4499280569137907 be:0.027422502225192158 tell:0.02627731540837669 a:0.018170907927975398 :0.47820121752466493 +it:0.45844905182240964 he:0.40553865992147925 she:0.08734940169921464 there:0.034443628301868756 I:0.014219258255027994 +told:0.25218690697620083 with:0.17678059890976763 to:0.10112712577135541 informed:0.07328458309298451 :0.39662078524969147 +!:0.4507617345581386 and:0.24397527062701221 given:0.1954066926328801 I:0.06536145631803056 :0.04449484586393843 +is:0.1380996030602716 as:0.05721765573057371 has:0.049681435360426046 and:0.020593291863909537 :0.734408013984819 +upon:0.3035647160741861 on:0.13603284142827046 to:0.12242459723805255 for.:0.08741508667325877 :0.35056275858623204 +were:0.4089043188822101 had:0.24723734724268434 having:0.1868534944489057 have:0.14226055715397343 are:0.014744282272226523 +much:0.20914915176693194 long,:0.17694200989491418 fur:0.16492950848236732 many:0.0655732511262227 :0.3834060787295637 +in:0.2928953925748362 and:0.25697905572867286 of:0.08810710387615486 by:0.06396822001925598 :0.2980502278010801 +guests:0.03337356313511947 man:0.022079133423453946 men:0.021225162614506587 officers:0.021021423320387485 :0.9023007175065325 +the:0.5107212329447565 a:0.28318428009683605 any:0.049615514126683205 with:0.035492567026489556 :0.12098640580523484 +that:0.13202350785701733 and:0.1308899413836468 of:0.07319307811561972 to:0.0381357827677253 :0.625757689875991 +bond:0.34175330153799416 out:0.15387882692298957 application:0.11738746436569518 default:0.10805227261921821 :0.27892813455410287 +had:0.1339782864259633 would:0.12689153243605478 was:0.11286146143897599 has:0.08488528967936987 :0.5413834300196361 +this,:0.15021818525128797 know,:0.06297324984833091 will,:0.00403464469287449 testimony:0.0018755635048240662 :0.7808983567026827 +which:0.14425814335583376 would:0.1009447369765159 who:0.09772804742606767 that:0.07979976917006222 :0.5772693030715205 +to:0.6760724724870208 with:0.15444968722483074 by:0.054504867217652596 of:0.051840297064186566 :0.06313267600630926 +least:0.3775763180394845 ill:0.23305183194282217 well:0.18729780528403456 not:0.15983874870271608 :0.04223529603094281 +in:0.2563163448217634 la:0.21833494695750985 and:0.13102798512803213 of:0.095900364372959 :0.29842035871973555 +of:0.9726137224642625 ot:0.021483106102051806 ol:0.0040654862290516475 of-:0.0014227790410057295 :0.00041490616362843154 +with:0.2307965195216253 in:0.21925779203277998 that:0.1823138153060484 such:0.13312413305668477 :0.23450774008286168 +the:0.1425226741023725 be:0.0952579084499791 have:0.08012721548081254 at-:0.06582992330346539 :0.6162622786633705 +the:0.1336597544128549 was:0.0941997429299053 and:0.0752855436893717 are:0.05516319786874174 :0.6416917610991262 +three:0.09791076628448843 other:0.07528012256074876 then:0.06861603268598494 the:0.06809250801751247 :0.6901005704512654 +to:0.4209573582857082 a:0.2764079318997366 the:0.10169048126810326 carried:0.025023883613009983 :0.17592034493344202 +him,:0.021715867051585847 power,:0.020844059223462153 it,:0.011293205480830187 year:0.011007913875355659 :0.9351389543687663 +and:0.5861850343096522 done:0.035563314471595324 are:0.024025853864214096 being:0.012553003151284301 :0.341672794203254 +are:0.5657539586409596 were:0.24211032006866945 now:0.16339154738071698 seem:0.009146953385683521 :0.019597220523970636 +of:0.22520282156594978 in:0.181236828583164 is:0.12878915675800895 and:0.1167166605788323 :0.34805453251404495 +the:0.3050222632791164 and:0.13553724119072036 The:0.054040611717919636 a:0.04357229995711881 :0.46182758385512473 +what:0.5287665580150791 which:0.06550658147812707 them:0.024834150071592353 this:0.018716349806967687 :0.3621763606282338 +and:0.26130473299491946 was:0.19212494220326182 is:0.15730227051149895 were:0.0976933519165684 :0.29157470237375127 +their:0.5884023044886811 the:0.32237607413213787 tiie:0.017233979445142985 our:0.012579264901465954 :0.05940837703257201 +been:0.9686783562467619 already:0.013792978237164744 of:0.008377392926812888 an:0.002243286662399616 :0.006907985926860819 +it:0.37412945676070963 to:0.2929633327863598 him:0.12697165132296498 wide:0.044165018662389414 :0.16177054046757605 +place:0.5374424558646873 both:0.38366172436035745 some:0.026592218492442518 front:0.024400987782698984 :0.027902613499813773 +is:0.761648814759002 m:0.16866410783952054 Is:0.02024612177466231 was:0.0194292653980694 :0.030011690228745502 +ought:0.7189170432046073 is:0.10927689168100774 would:0.07603640766107865 was:0.05461418948836341 Is:0.04115546796494301 +the:0.7791891673196367 an:0.08939288971348204 tho:0.029659659319145236 tbe:0.02612687167233986 :0.07563141197539609 +have:0.6280268738185029 know,:0.13963901605233675 noticed:0.07148896150921587 other:0.02950609587124488 :0.1313390527486999 +late:0.08271782904664693 formed:0.03882280327083484 work:0.022727552185765887 on:0.01605504362769138 :0.8396767718690609 +who:0.07172066441567114 which:0.07141162531346079 they:0.059740108636784944 They:0.05532751723736377 :0.7418000843967194 +more:0.1747930768518326 er:0.09811662853823018 h:0.03890358154244758 system:0.022941626566661388 :0.6652450865008283 +a:0.5227940788179821 the:0.45027684445536004 his:0.008237629373433955 fine:0.0020011797125269438 :0.01669026764069695 +and:0.05532451405446604 with:0.013696727239394094 the:0.011807554747137947 or:0.004816304775768096 :0.9143548991832338 +Where:0.30485993252737614 It:0.14110223482827464 which:0.11447157235558593 and:0.07654163605545646 :0.36302462423330695 +the:0.11190386979321468 of:0.0907074722486773 and:0.08997097554303586 to:0.056287007020293364 :0.6511306753947788 +cent.:0.11372689403854616 day.:0.05516242146745738 year.:0.04115054850516341 ::0.0177106913979548 :0.7722494445908783 +and:0.16916405730895787 Company:0.08865714395892826 refused:0.084090758474632 ple:0.051803916010839585 :0.6062841242466424 +the:0.3503493821783991 a:0.044143797270150956 their:0.019738969276764374 tho:0.018986784181930557 :0.566781067092755 +which:0.17059844380188502 and:0.13370380806607696 there:0.09969166809487047 It:0.07380445348921422 :0.5222016265479534 +own:0.2860139253814835 be:0.007312032415095147 in:0.006920429336533538 was:0.0028444415896344433 :0.6969091712772534 +of:0.2982896674807893 in:0.14261432358133666 to:0.123586516648125 and:0.10050065461780858 :0.3350088376719404 +of:0.21584952636415577 and:0.15170158456814228 The:0.10973434210285218 with:0.07398243234702248 :0.44873211461782736 +to:0.4303432774986581 and:0.1156162149216931 that:0.034004892578584585 were:0.0312981905609352 :0.38873742444012915 +boy:0.8898685342191286 fire:0.004601073440515347 life:0.0032047692957999046 man:0.002308790975338649 :0.10001683206921735 +I:0.45345925847664476 We:0.2966489522022761 we:0.12047991962999093 1:0.04647331734259336 :0.0829385523484949 +who:0.9381824724468015 present:0.006066254471726933 i:0.0023808954777736493 de­:0.0012425339523746434 :0.052127843651323225 +in:0.14969475224683768 to:0.1170360440572583 about:0.11561729517597334 on:0.05026873434038281 :0.5673831741795476 +and:0.11256390420112775 of:0.0872757206241211 the:0.07638601983370531 were:0.07236702117483865 :0.651407334166207 +by:0.5501501290145092 to:0.24850885598734487 of:0.0832927310748976 among:0.05066640187190361 :0.0673818820513449 +be:0.6972691410673266 exceed:0.11349066277962841 apply:0.0779807645568819 bo:0.019785181252514945 :0.09147425034364806 +will:0.2711652103017132 of:0.13578920011912582 on:0.11817608267761702 and:0.09602119321325278 :0.3788483136882913 +satisfaction:0.11289291651003142 single:0.01614339327759821 in:0.009000370308820786 executive:0.006936475887714933 :0.8550268440158346 +and:0.14499296814299692 that:0.04735803542008101 of:0.04530128143737472 ;:0.019088581256045 :0.7432591337435024 +annual:0.03405445214823536 meeting:0.030666804361722047 national:0.027197490625480887 next:0.026020450553410054 :0.8820608023111518 +things:0.7537161531924836 California:0.09499780913888822 affairs:0.05299404882533442 it:0.0030648359575446396 :0.09522715288574916 +State:0.921344528263176 Washington:0.005698643123907764 State,:0.0010998513091100503 the:0.0004591584050381868 :0.07139781889876813 +and:0.14282984453406822 the:0.08416629781439265 of:0.06825553363129629 to:0.05658450240623876 :0.6481638216140042 +damage:0.017690773677174674 God:0.016055271349785565 it:0.01447955893483236 Germany:0.00896229028406282 :0.9428121057541444 +a:0.5413884145630014 the:0.14675915394159955 such:0.08041265855922589 as:0.039596469024137645 :0.19184330391203544 +been:0.24861323025964868 a:0.0690037490583886 to:0.04266764760750839 already:0.040992453880393194 :0.5987229191940611 +and:0.26423697686738745 though:0.23006613797270759 while:0.08703386129011938 I:0.06911619984368782 :0.34954682402609766 +them:0.38162793947843565 the:0.27728803985416633 it:0.061493598022470945 us:0.035717576721697494 :0.24387284592322964 +the:0.7226043146661086 tho:0.19872357021720086 that:0.024829662389717424 a:0.02085687514663477 :0.03298557758033827 +and:0.621737797708963 added:0.036895451728712836 that:0.03307238036636282 addition:0.031151061864316563 :0.27714330833164486 +is:0.705890186314063 was:0.14843727089256062 of:0.05017120625835732 .:0.04735706085750686 :0.0481442756775123 +ability:0.139851736125702 power:0.13556422417360353 capital:0.09408175016453488 right:0.036123754075832265 :0.5943785354603272 +and:0.20392885368832933 as:0.13192657697468707 to:0.115513318476861 the:0.07398393586845392 :0.47464731499166884 +of:0.6245223141561903 on:0.133573443921714 in:0.04488355273332015 cf:0.031070646621502756 :0.16595004256727283 +and:0.8247325249326439 delivered:0.07273158913493481 who:0.042654903757340004 but:0.03247640019336142 :0.027404581981719908 +the:0.44962325147016896 a:0.08219179612191618 this:0.03422662064531952 their:0.03198665489119624 :0.40197167687139923 +be:0.8822683167057225 he:0.012416487333584678 bo:0.01082574272325276 also:0.010183407703076925 :0.08430604553436336 +is:0.508671836978514 are:0.47642492629310196 was:0.008406986564343393 ia:0.0037560721937835427 Is:0.0027401779702571293 +the:0.15580959491956145 a:0.03434488450020519 other:0.032608518640333616 in:0.02861994679028988 :0.74861705514961 +laws:0.11296190768289281 sub-:0.05659366540562937 the:0.04169540247784238 to:0.006226547204296557 :0.7825224772293389 +it:0.7312837673573593 It:0.044235638045911366 and:0.036003978284019196 He:0.03548706943857864 :0.1529895468741316 +party:0.23799516454943073 Congress:0.12101088819769222 way:0.08031225876941722 life:0.0555379510002348 :0.5051437374832249 +Mrs.:0.2666746386425776 and:0.0673755432415009 Mr.:0.050055049673169434 of:0.0403421061657933 :0.5755526622769589 +the:0.46517119065091184 and:0.15230101403382648 in:0.07534951270434957 The:0.04492994404122157 :0.26224833856969043 +fact:0.08363820621601595 necessity:0.06936626689673869 question:0.04385971347533558 change:0.04280036130802432 :0.7603354521038853 +be-:0.019232949804021435 -:0.011175355241632502 of:0.007491722181987778 and:0.006878233495419624 :0.9552217392769385 +portion:0.44953915436770536 part:0.16089426727327383 one:0.032577128449049135 some:0.023450098909805775 :0.3335393510001658 +ar:0.13337565168191487 the:0.08615354273938998 The:0.07283334208371255 par:0.015310371992706932 :0.6923270915022757 +the:0.12054300364609577 a:0.0904507359434516 of:0.08859397582585879 and:0.05558543589726319 :0.6448268486873306 +the:0.758910134017773 this:0.18027485943352742 that:0.02455477837615328 a:0.019969031774903452 :0.016291196397642763 +of:0.9330564126793756 across:0.01637434308444912 and:0.015861542081471374 in:0.01481655554849108 :0.0198911466062129 +placed:0.09854378892994471 put:0.0599209486675652 kept:0.058200109936663455 done:0.03591529462412055 :0.7474198578417062 +of:0.4663153681850628 and:0.12424632202729201 that:0.08094399994973461 in:0.053712118802692416 :0.27478219103521817 +of:0.8789261333364768 for:0.06119069501515249 ot:0.018511342859988306 ol:0.009646801727367472 :0.031725027061014786 +acting:0.006650599041035706 posed:0.0039714852840629505 not:0.0023089262452119846 claimed:0.0016309974235835696 :0.9854379920061057 +of:0.8494651354273288 the:0.020300583036162494 and:0.01984867484972633 in:0.015788796343011877 :0.09459681034377047 +I:0.9547513460690995 we:0.044953108846226636 you:0.00015176950183176148 she:7.714820098647643e-05 why:6.662738185576398e-05 +being:0.16719030684641595 not:0.12552500502912167 also:0.10532749187782643 clearly:0.08166601653516584 :0.5202911797114701 +make:0.24705782669211418 be:0.14715338398319236 get:0.052723796453134075 such:0.05169831212230335 :0.501366680749256 +a:0.4400557072255561 some:0.30252719392217453 two:0.18383217571856134 three:0.025600294638384213 :0.047984628495323825 +tho:0.8181349589178181 the:0.13602374499688058 your:0.005894531376729756 they:0.0034670258195660057 :0.03647973888900546 +Robert:0.10439953543157043 William:0.028567017613116728 and:0.01929318680997451 James:0.012396341290120969 :0.8353439188552172 +this:0.9528845370830583 the:0.017694921305978027 some:0.010400239863076415 that:0.006585848797225805 :0.012434452950661559 +and:0.10577838370649224 the:0.0971905994927138 of:0.08770567460974729 The:0.0596594833259298 :0.6496658588651169 +our:0.9971986382858451 his:0.0011027495044720309 a:0.0006541792704714725 11:0.0003593990126947149 :0.0006850339265165223 +near:0.18203909035624474 them:0.14577377521884224 a:0.12299880831933405 the:0.10683092996522629 :0.44235739614035263 +ready:0.20116590867699477 little:0.061670292213333366 new:0.04861039952871247 large:0.0334803860462241 :0.6550730135347353 +receive:0.997140351382798 paid:0.0003603080227778188 at:0.0002720287829918586 of:0.00026959939937741155 :0.0019577124120547084 +the:0.3595707925792082 her:0.1638082745433795 be:0.06941429497161516 a:0.037237632322871604 :0.36996900558292545 +matter:0.0666621876897802 especially:0.058818847868818094 and:0.05845208256320638 mentioned:0.03184954202269336 :0.7842173398555018 +long:0.04430341626484666 large:0.041921529208498454 trial:0.016854728442471087 wide:0.01553064566552492 :0.8813896804186587 +of:0.40890092030264685 during:0.20857026238447962 for:0.15747973167170548 and:0.06036805632000646 :0.16468102932116147 +a:0.3275342191792396 the:0.20075221400526494 he:0.0920345443004417 it:0.06584760644947732 :0.31383141606557646 +death:0.08995645969364754 time:0.05781047128650785 end:0.052370851005121524 occasion:0.03943579287675687 :0.7604264251379662 +the:0.03761804603963571 and:0.03597078346028384 -:0.03555547074816668 i:0.0325982614996818 :0.8582574382522319 +and:0.05600644844319893 Court:0.04895056703456564 or:0.03405837543230205 ing:0.025554458440307917 :0.8354301506496256 +and:0.21052276537132128 to:0.11341542613761672 the:0.07185506620567689 by:0.0690708700068091 :0.5351358722785762 +the:0.712322011551977 when:0.08119162024368902 an:0.05619862350360245 a:0.0493672363371833 :0.10092050836354811 +himself,:0.24890674290937376 it,:0.1066366743527948 the:0.0577239319131428 it.:0.055671799131513024 :0.5310608516931755 +to:0.07483904684741051 a:0.06300770954464041 every:0.05974486344093509 as:0.05136097679518645 :0.7510474033718276 +half:0.5107927905184829 for:0.08043085679806823 over:0.077282972833858 of:0.07367498740472178 :0.2578183924448692 +Is:0.3543464842985769 of:0.15092127304602043 and:0.08286806823516105 drew:0.08134987121898953 :0.330514303201252 +the:0.08225369541754024 and:0.0802810202244711 of:0.0782285020368913 to:0.0336360397884568 :0.7256007425326406 +government:0.33187026755919286 located:0.26119618328322464 close:0.0371435772406796 conducted:0.03215285301041374 :0.3376371189064891 +the:0.059871662744243714 The:0.041197939847646435 A.:0.024872528695071432 .:0.010022532493981655 :0.8640353362190568 +to:0.007117082708975948 treated:0.003587437335720633 had:0.0020922617007885303 comes:0.0020446710389435915 :0.9851585472155714 +the:0.15497908734926905 not:0.10863185724850347 no:0.07330233811229928 will:0.0539316122912455 :0.6091551049986825 +was:0.09307808914729938 since:0.07788490562828412 once:0.05555171981990152 be:0.05153832655179455 :0.7219469588527205 +in:0.3799493975814914 on:0.3116264177652434 from:0.14199511024878317 into:0.09461821891971799 at:0.07181085548476404 +.:0.002301694711638459 com:0.0012394207636816784 con:0.0009314590743717086 in-:0.0009108072298151783 :0.994616618220493 +four:0.2470620017220757 two:0.16035984749228827 five:0.13313665624200555 nine:0.12777826886134042 :0.33166322568228995 +from:0.46571203121956345 To:0.19130836208625238 In:0.16459377812345244 in:0.09847565863100034 With:0.07991016993973149 +is:0.30675773420111624 Is:0.21117635708997487 and:0.11283981337672581 ally:0.09479981714450389 :0.2744262781876792 +the:0.43913594148341023 a:0.13183930302888028 this:0.04255600524770175 their:0.037674999419870715 :0.3487937508201371 +the:0.4780680054587038 a:0.13716836674521865 tho:0.02924261780828103 no:0.017072366104245666 :0.3384486438835508 +of:0.12093703325072039 and:0.10740888823662466 the:0.0639831416547157 to:0.04058767339668946 :0.6670832634612498 +and:0.1428487502268622 of:0.1329982989551241 the:0.04975149100833768 to:0.03927987364620423 :0.6351215861634719 +and:0.12862656428257127 the:0.09315882563280949 of:0.0767298697961181 to:0.06218454726218451 :0.6393001930263168 +of:0.8681508450349894 in:0.042970732016356254 before:0.0404771702628529 ol:0.015525837286930976 :0.0328754153988704 +thing:0.5492893468354145 man:0.06558804057858315 way:0.024483720585513912 manner:0.020092404524190834 :0.3405464874762975 +war,:0.29353537407868524 God:0.18368426499799972 I:0.044420776015453634 people:0.027173020569229794 :0.4511865643386316 +now:0.3905439093785265 it:0.1954760400974958 this:0.12245660810727947 that:0.10707073557362871 :0.18445270684306955 +a:0.1976945802160396 the:0.05757002780971818 in:0.046581906267808094 not:0.04422973707122896 :0.6539237486352052 +and:0.19588373862845623 the:0.10432012504973179 ing:0.06978626701825416 of:0.06368113589608569 :0.566328733407472 +that:0.11657221243772467 and:0.09829961668696292 which:0.08894765822203582 it:0.08810689781912998 :0.6080736148341467 +the:0.8338757323768706 their:0.05843306167390971 good:0.04904022967761755 bis:0.030980704777124148 :0.027670271494477955 +of:0.41848457549734 the:0.19935716400807488 made:0.05358137964338959 and:0.05255107121533141 :0.27602580963586415 +of:0.77551420422061 that:0.06376272104135164 is:0.05432340838685115 and:0.04289919740304606 :0.06350046894814121 +and:0.24555640712273946 or:0.07066827914175816 as:0.05632165837195603 that:0.049687460510824635 :0.5777661948527216 +of:0.47598887527966216 Mr.:0.15430752785213878 on:0.13677243103510744 are:0.05869253808974093 :0.17423862774335055 +that:0.10489649954663469 not:0.08822407887885557 a:0.07956230465197492 before:0.05243948241595081 :0.6748776345065839 +appointed:0.9690004436942243 compelled:0.005109191038952465 unable:0.004604954491260467 made:0.0023071893772614233 :0.018978221398301395 +to:0.44377439719559436 You:0.2686867832578856 To:0.10760011415000278 We:0.09169402392580374 :0.08824468147071342 +they:0.9163856203444277 we:0.03365725873971313 there:0.01048385838716479 you:0.006507571872322766 :0.03296569065637145 +own:0.2547612671937172 financial:0.09175837492663434 ordinary:0.09016718159279975 immediate:0.03970696027206656 :0.5236062160147821 +his:0.09799948615775965 practical:0.07893712867972612 most:0.061031860043730256 ad-:0.04444438288940649 :0.7175871422293774 +of:0.8292279125739904 ot:0.0512540467301524 as:0.029610242312717205 a:0.017327161076812477 :0.07258063730632743 +are:0.36763323544333437 were:0.2639814979982635 have:0.059351674447139575 shall:0.05062872878667749 :0.2584048633245851 +been:0.9772215247228564 not:0.008570519280891165 be:0.0015564391866050129 never:0.0015423598108343295 :0.011109156998813045 +and:0.10545574302235212 of:0.09320903834786412 the:0.07963089191846427 to:0.04005612919588758 :0.6816481975154318 +of:0.2940080301110956 and:0.10093573726428134 the:0.04710094094579405 to:0.030710394434001864 :0.5272448972448271 +the:0.20501298526558848 to:0.08920947742084859 and:0.08036466391596737 their:0.07214602060747455 :0.5532668527901209 +just:0.12732540699796321 almost:0.04171342160310113 getting:0.0167358091988317 it:0.007227597687089562 :0.8069977645130145 +and:0.1539054923854185 the:0.09495898480652379 of:0.06423299979273213 to:0.03865996473699935 :0.6482425582783262 +the:0.12889290281452473 public:0.12023966660546115 this:0.09917401311361107 1:0.09641854693809364 :0.5552748705283096 +1:0.21356922493241356 of:0.14017431538338918 and:0.060589735363890874 than:0.057011935611941435 :0.528654788708365 +principles:0.293187233290586 form:0.24850846530065338 days:0.021248402424197954 effect:0.013021502944078472 :0.42403439604048426 +the:0.16242474667759035 of:0.11735443273302155 and:0.1064023012701174 was:0.09053639928951536 :0.5232821200297553 +know:0.0649718875386791 believe:0.06038921141424575 think:0.048207513923737934 had:0.0459045641870352 :0.7805268229363022 +board:0.24237024068958676 company:0.11072476296283447 corporation:0.05541861049055776 city:0.05142584054242891 :0.5400605453145922 +more:0.25185573452304183 the:0.2312182748737775 this:0.16591583443958194 any:0.13630493267766222 :0.21470522348593643 +a:0.595595274966402 A:0.3100668027131329 Every:0.024359309912689704 by:0.01673373666766716 :0.053244875740108284 +and:0.07489881332374602 of:0.062182598303338714 the:0.050422210902994855 to:0.027641552119550404 :0.7848548253503701 +and:0.19778437795689416 ;:0.09726292398920279 with:0.04356686384896614 work.:0.02777377988457107 :0.6336120543203657 +and:0.11062851032515532 of:0.09518160173597706 the:0.08515186216761737 to:0.0329897919156676 :0.6760482338555827 +would:0.4420599663413659 can:0.15227387520485094 will:0.11589867416933534 should:0.11000205139444422 :0.17976543289000355 +the:0.45488597488350935 safe:0.42420331566156494 tho:0.11766607881653797 American:0.0017325440382059088 several:0.0015120866001817538 +this:0.4576303005384086 the:0.3380176050303697 its:0.069721535025243 that:0.06443933815294438 :0.07019122125303433 +first:0.03698462423625316 great:0.02746443907408031 general:0.017721797111042426 the:0.015940223302476894 :0.9018889162761472 +the:0.980966624309061 Black:0.0041035771536042445 tbe:0.0033941178946425244 tho:0.0019592913944179676 :0.009576389248274324 +to:0.19679201759717385 are:0.12309549057903377 and:0.10044967482573089 except:0.0789477242926397 :0.5007150927054219 +the:0.40293383926315063 a:0.23473938651685927 this:0.14544713876466303 two:0.03340564009635367 :0.1834739953589735 +of:0.9844407577509313 in:0.004784036042813025 like:0.002328897497189809 about:0.0007687796691162869 :0.007677529039949666 +in:0.5610525493594128 by:0.10378492901245889 with:0.0637342544023006 their:0.052721546767620246 :0.21870672045820735 +being:0.25946266242051824 to:0.1940599977586885 now:0.18979770003626317 not:0.03266345243710868 :0.32401618734742144 +away:0.19332490297416458 about:0.17797385657297893 and:0.06948454703706272 spent:0.03858705526664145 :0.5206296381491523 +a:0.4361332374441486 some:0.3062375331882078 half:0.09521358773127543 the:0.05316411290963813 :0.10925152872673005 +lands:0.17500979609228637 and:0.14891734525098582 provided,:0.1445238662611943 organized:0.056679742836689785 :0.4748692495588437 +here,:0.43428606328227926 if:0.262416219392767 on,:0.07050172446805489 here:0.05204337007788389 :0.18075262277901497 +at:0.31855333391276086 afternoon:0.278464005753126 from:0.12443266691028862 in:0.07116126058680682 :0.20738873283701761 +the:0.38041406228660773 five:0.06356522362849337 t:0.01417158067950191 n:0.009890980171181738 :0.5319581532342151 +be:0.08928013628478636 admit:0.009815459543205896 know:0.008358862374934195 say:0.007307882288300911 :0.8852376595087728 +who:0.12598629514172863 would:0.12386685673907175 We:0.12047381696789994 I:0.11662315367722147 :0.5130498774740783 +the:0.44140429719805163 as:0.1168159966574979 for:0.09967982649699635 their:0.08916650383768379 :0.2529333758097702 +re-:0.5806315014914052 re:0.12348285567767978 then:0.11918997860694122 re¬:0.10049947455038867 :0.07619618967358496 +the:0.2052192797026342 and:0.10956318848763615 to:0.09031989830988019 a:0.08576006033470915 :0.5091375731651403 +day:0.13723950334524734 tion:0.029829152935256623 ment:0.021153083944537885 line:0.015499819634561506 :0.7962784401403966 +life,:0.1567800182401995 of:0.050042261388057965 and:0.045018061403364805 party:0.022829148034352802 :0.7253305109340248 +the:0.9323261951461167 tho:0.024344697703190515 tbe:0.0090665974543988 tlie:0.0015354329352818882 :0.032727076761011976 +are:0.20427869632974252 have:0.08004115308748778 were:0.052468539175414323 hope:0.044661911528779075 :0.6185496998785763 +to:0.41190023966821593 will:0.22835930899903142 would:0.12425317668653382 may:0.05299805355765516 :0.18248922108856364 +the:0.5640937824021444 West:0.1903330471823724 tho:0.07259059543177795 a:0.012333121626431827 :0.1606494533572734 +for:0.5708017200857053 to:0.10273587814902374 the:0.09842638434496967 by:0.06657049914635031 :0.1614655182739509 +the:0.601813928245469 a:0.305209680595909 any:0.0356055150765392 its:0.03558096854860165 :0.021789907533481336 +would:0.37546296124529843 to:0.1907008609111034 were:0.1708306370108951 that:0.03853399039331728 :0.2244715504393857 +want:0.09228108528230161 city:0.05672149481383216 use:0.0400079250903667 point:0.03510763953197016 :0.7758818552815293 +the:0.3771203717026306 their:0.2051557482846846 your:0.0901244111316475 tbe:0.05546105529887608 :0.2721384135821613 +and:0.5556607221634435 of:0.07392517749745156 not:0.019291456423908167 for:0.014147405213948331 :0.3369752387012483 +meeting:0.13871037918796442 caught:0.10167646083457588 attended:0.08673421430025881 received:0.054596030511137726 :0.6182829151660633 +to:0.39461862258266944 of:0.009883828974979414 in:0.007813953831963627 from:0.005489025629085114 :0.5821945689813025 +of:0.0015547228794823866 mind:0.0007544653734534694 Senate:0.00047895207394594354 France:0.00042768482348675275 :0.9967841748496314 +west:0.676780498013601 east:0.1124340368121164 south:0.10611535819202554 K.:0.0532041487375629 w:0.05146595824469427 +six:0.011133400914611626 ton:0.008657044891299558 10:0.004200806756872797 7:0.004192036317735571 :0.9718167111194805 +iu:0.8650151747941471 in:0.1348198744008485 by:9.035064162499198e-05 within:4.663612668516686e-05 against:2.7964036694070436e-05 +to:0.4626051461975066 the:0.1937354969657818 and:0.04887216885221939 lo:0.01909654874510769 :0.27569063923938447 +great:0.2700233048853547 the:0.13401210516712775 very:0.09566340762387483 good:0.08498489087728674 :0.4153162914463559 +party:0.08765635602423823 legal:0.04792220262867354 committee:0.040897374065239196 the:0.028336541371348778 :0.7951875259105003 +number:0.15568356733656624 es:0.04508771892701457 of:0.01308557183845815 which:0.011140963084100916 :0.7750021788138601 +look:0.16635537704761397 pair:0.10927877741496296 glass:0.10382200156239496 bit:0.0586114598750375 :0.5619323840999906 +passage:0.06444622430451835 first:0.052619005082598445 that:0.024845210530599092 service:0.0235642378475407 :0.8345253222347433 +that:0.055830928933864855 him,:0.029960955891048684 his:0.014311728090510687 be:0.0034112758438235168 :0.8964851112407524 +and:0.0954243966237409 the:0.0685668490948212 evening:0.05693990568942121 No.:0.05228832786066276 :0.7267805207313538 +Her:0.21223323405452044 He:0.19033643298606046 I:0.09315579519403672 The:0.07315010775488491 :0.4311244300104975 +the:0.30343258419413566 a:0.1682120461322526 cash,:0.06472628251724555 their:0.05793259994236515 :0.40569648721400114 +for:0.11236010457798136 in:0.10624990270360762 Only:0.10323920076605156 and:0.09327907703336663 :0.5848717149189927 +.:0.0166010163352533 i:0.0013084391945634222 ,:0.0011204389094892117 M:0.0003751161562268 :0.9805949894044672 +d:0.10161006777088769 -:0.09482975603062674 t:0.06013066607188169 prices:0.0507937649102056 :0.6926357452163983 +J.:0.1676054066634582 T.:0.07966801050026324 B.:0.07304627125955265 H.:0.0668105524690033 :0.6128697591077226 +as:0.5002841758372757 and:0.14871222765732264 but:0.08812425278181392 that:0.05777632005786104 :0.20510302366572655 +such:0.18695548287956035 have:0.02502751283798047 within:0.018097735344836843 meet:0.01514374825987993 :0.7547755206777425 +of:0.974815652723542 along:0.01526246194640203 to:0.003159076503493397 on:0.002655966305640158 :0.0041068425209224955 +officers:0.1210263484779518 officials:0.04501294808263734 of:0.015938134055035077 courts:0.012081814252419153 :0.8059407551319568 +the:0.0004758199904487825 of:0.00038002497109706736 a:0.00016297657159644553 vice:0.00010773289163288115 :0.9988734455752248 +which:0.09626821835798961 life:0.07652481452154522 the:0.038057337664104525 them:0.03135167257291622 :0.7577979568834445 +with:0.4240767490105099 above:0.1959255115771149 around:0.17750748151052137 in:0.1439798106446336 to:0.05851044725722009 +as:0.13034288072697706 and:0.09460272830256829 power:0.07616508233883901 work:0.059976978938027684 :0.6389123296935879 +on:0.5421072986579193 by:0.150126445915296 In:0.12647780703391787 in:0.11010668688674193 :0.07118176150612492 +more:0.27162384074375145 part:0.062368980951062504 service:0.031019216969106412 freedom:0.02695618538307324 :0.6080317759530063 +deal:0.8353320615948655 share:0.06230941222222716 number:0.026200867173269065 idea:0.01456416935364452 :0.061593489655993844 +the:0.15197389090792587 that:0.12456833782316772 this:0.11616391831360291 said:0.03433365170965282 :0.5729602012456505 +He:0.18666043038786734 and:0.053182361935015666 he:0.022319320994776584 lie:0.012623996680734018 :0.7252138900016065 +be:0.8119051696257733 bo:0.07352256371176685 he:0.05554993443182128 lie:0.026781300595025107 :0.03224103163561339 +all:0.341781667687258 same:0.22848691280827277 and:0.04977020465014211 exchange:0.04692562291408053 :0.3330355919402467 +all:0.8587821840456212 of:0.03937714376284487 been:0.026613327625614882 with:0.01077089716502476 :0.06445644740089428 +By:0.33288088053751436 Under:0.27343434010896234 of:0.1476427684675256 under:0.09441635305267354 :0.1516256578333243 +the:0.9498383314729814 tho:0.007079462339391825 tne:0.0069906123584779715 her:0.0067776820776233575 :0.029313911751525607 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +of:0.22928543030091025 on:0.1710011737268747 along:0.1548919892793964 and:0.1389690467713729 :0.3058523599214458 +they:0.46023759293456246 he:0.29392877526719763 she:0.10119817983548902 it:0.046570723755734275 :0.09806472820701656 +It:0.2407137509542417 which:0.08357870084624973 and:0.0577301317331954 it:0.040192632299607824 :0.5777847841667054 +took:0.2124880636070543 large:0.20349087392857748 no:0.10804166362984371 and:0.06413800769600014 :0.41184139113852436 +been:0.3392283377213589 now:0.001297311093787293 all:0.0001233917192534081 yet:9.312459302422615e-05 :0.6592578348725762 +a:0.16882274552005005 not:0.059586596546201624 also:0.05736723640910675 in:0.056956108667785624 :0.657267312856856 +of:0.21421451311928003 and:0.1014343039873195 the:0.042909033988465524 to:0.024182434563001752 :0.6172597143419329 +the:0.6292480564731632 their:0.05049724575899574 this:0.04214015945798842 a:0.04071566394774571 :0.23739887436210694 +the:0.5878194799615104 The:0.16410461640454688 in:0.027921054548081137 an:0.027214446150111246 :0.1929404029357503 +the:0.11182143423646565 a:0.03842299653570701 is:0.032457349465543225 be:0.022482551975479118 :0.794815667786805 +to:0.6135129033706747 on:0.1816886168618736 in:0.14919241023616966 of:0.032025484425264816 In:0.023580585106017335 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +not:0.2803667726996305 entirely:0.13161024977981878 a:0.12139426278668618 brought:0.09800019934688013 :0.3686285153869842 +and:0.15658607557719717 the:0.11586628040897974 The:0.11485517328040676 of:0.0773888890588295 :0.5353035816745869 +formed:0.03914553113166319 -:0.019278485882225638 so:0.004057613006681806 deed:0.0027264475309700152 :0.9347919224484593 +the:0.3691294828000598 of:0.1474244449429724 and:0.06080210179245392 to:0.050090222796647974 :0.37255374766786575 +occasion:0.11556798721152665 previous:0.056231371800247724 man:0.01665911806296282 person:0.00869281238667505 :0.8028487105385878 +the:0.33627181755257546 its:0.18684569927255698 and:0.12064231884425156 permanent:0.038371699964615 :0.317868464366001 +elected:0.11689374511609331 one:0.07743607388705324 brought:0.06082399198434267 wholly:0.036602579328449056 :0.7082436096840619 +the:0.7828487872171924 read:0.04244487349027308 her:0.019895638416139602 gives:0.012285931823888914 :0.14252476905250602 +thousand:0.2145709206136796 per:0.1361220564633619 million:0.11070851253714697 in:0.06999814352121504 :0.4686003668645964 +the:0.30064796396641846 twelve:0.1589347138380937 spring:0.028523322148834306 our:0.023575521036106686 :0.4883184790105469 +with:0.848757023059243 of:0.11881845283875475 as:0.02363293125766491 was:0.003087841478505525 :0.005703751365831784 +on:0.801007979192678 as:0.14159423963404733 under:0.015801614046026626 to:0.012712701991574264 :0.02888346513567382 +the:0.41572528750165505 to:0.28623782801846986 a:0.1091965554255642 gold:0.06188176564985729 :0.1269585634044535 +will:0.341252060473369 to:0.2001746833607929 would:0.11292291554787612 and:0.1113536262031219 :0.23429671441484007 +the:0.723586739756117 a:0.048525578900630646 tho:0.03932619382903961 his:0.02552723123221209 :0.16303425628200066 +and:0.19081116793857167 the:0.18797810743635046 The:0.11663226979480922 of:0.06508848541502468 :0.4394899694152441 +for:0.6002950132559705 in:0.07920181434582103 spent:0.052880179983438955 at:0.03412896654371343 :0.2334940258710561 +election:0.7487748316068534 election,:0.07184794445526012 sale:0.04114649983345529 payment:0.008827474359947735 :0.1294032497444835 +a:0.6537367383312429 the:0.11181073825374169 not:0.011118770532689204 men:0.0073077582477668645 :0.2160259946345592 +to:0.26928087183562477 a:0.05308067292134548 the:0.04876921527963332 not:0.045175736358829266 :0.5836935036045672 +be:0.4061777956851863 and:0.08501207551035408 of:0.040199186802043936 spend:0.03961510810293721 :0.42899583389947843 +state:0.22691326720690147 condition:0.16527064980905137 system:0.08386134087931979 rate:0.025533226569347936 :0.4984215155353795 +men:0.4647053099345748 soldiers:0.14365525029937176 people:0.08106281525427794 man:0.07478899348278083 :0.2357876310289947 +of:0.0022183405981461364 1:0.0021143810893721852 and:0.0015479557901197881 il:0.0014258754410753024 :0.9926934470812865 +less:0.023352548705763494 worse:0.01210355705004787 greater:0.009165998499777726 more:0.007159456277348522 :0.9482184394670624 +in:0.2070492458274847 all:0.14485219771766994 free:0.06717815665973491 Old:0.019878523138096082 :0.5610418766570143 +the:0.2547650215258084 a:0.12802210246256382 and:0.05612672161849988 cash:0.04973868117741856 :0.5113474732157093 +work:0.01886822741778857 change:0.005450647753480633 mortgage,:0.003780321111511007 piece:0.003220672686740487 :0.9686801310304793 +the:0.5756780809241152 an:0.15671618921833652 a:0.09759767151684015 November:0.04668522059564376 :0.1233228377450643 +the:0.6648852092167992 his:0.12032931491277961 a:0.04852191048686281 tho:0.029241149200991034 :0.13702241618256736 +two:0.18663344743096447 above:0.03564633650407479 nations:0.032795878525203055 articles:0.028810110170076366 :0.7161142273696813 +With:0.48635312716384466 or:0.1463080897683617 with:0.11860084486370034 out:0.07688265641876568 :0.1718552817853276 +property:0.28402830589001293 premises:0.15603034500773133 club:0.014522988197027556 sum:0.008272119214669207 :0.5371462416905589 +to:0.5356842759949075 with:0.09486705557987334 in:0.06668397540680239 and:0.04669633067509163 :0.25606836234332525 +president:0.28759092395206726 case.:0.03072920282644586 of:0.01138915303094443 ground.:0.010622180324674872 :0.6596685398658675 +work:0.1090998606487431 time:0.07963224471588928 ground:0.04113040543496042 money:0.02360115874125899 :0.7465363304591484 +few:0.3462593117672199 six:0.2754249047074217 for:0.16357762567156517 For:0.08248838290667722 :0.13224977494711596 +,:0.23030322154766109 and:0.05423952404192524 until:0.02854766847626338 Just:0.027902153064616256 :0.6590074328695339 +could:0.6097941972972787 should:0.05098983936094139 can:0.01885439235023686 small:0.010183846700226623 :0.31017772429131635 +failed:0.2696252740531234 sufficient:0.034120819735365245 made:0.027448970381858544 commenced:0.021263142627645452 :0.6475417932020074 +and:0.2887916699368441 that:0.05257648025380499 ana:0.027457185335506784 negro:0.025272171286395462 :0.6059024931874486 +application:0.09301825345354907 he:0.08827605393748052 mortgage:0.08699885617447164 it:0.07219152728745497 :0.6595153091470439 +part:0.32902236957597325 days:0.19694163118663813 stage:0.07567840030661373 training:0.051747886613307474 :0.34660971231746734 +the:0.4400414803878075 feel:0.08973868038873371 a:0.07817675995384175 to:0.06409863329566394 :0.32794444597395306 +relations:0.12531010196292167 of:0.1023385097607056 con-:0.049433666422855065 practical:0.03178947053164297 :0.6911282513218746 +in:0.21168260082341828 17:0.08541179964571098 and:0.0853860681676708 24:0.06267884288772738 :0.5548406884754725 +by:0.36222051421965545 with:0.14940815479874062 to:0.11439747586337885 and:0.10668679899656393 :0.26728705612166104 +as:0.5982271422349564 ia:0.14467655387964518 if:0.022642618827545948 and:0.01567569309467359 :0.21877799196317882 +into:0.5108814952955967 to:0.24051828054591717 under:0.13429399687304877 from:0.055161151447447015 :0.05914507583799049 +was:0.8066120149874337 is:0.09400777547241813 had:0.025739157132450834 Is:0.011168087753657041 :0.06247296465404017 +a:0.2882567575707943 the:0.23856019553889107 an:0.05277081656365372 to:0.0459126115443314 :0.37449961878232946 +do:0.31689073137796714 try:0.09407682650885574 take:0.0649130017912227 meet:0.04409651143685909 :0.48002292888509535 +at:0.28896311564821586 or:0.1315591028224817 as:0.1011735394487865 for:0.08900958616530795 :0.3892946559152081 +entirely:0.5843299585545556 entire:0.18397722188230767 almost:0.011621837831996234 if:0.01118879472275885 :0.20888218700838154 +per:0.6279893279390952 payable:0.152682932633046 gold:0.10333519324565957 of:0.055257463530027064 :0.06073508265217214 +firm:0.3879185226322315 company:0.11458035976067034 association:0.037316649184099306 person:0.018740835804433323 :0.44144363261856556 +been:0.301243200357432 p:0.22587238730527123 a:0.05878756586214233 the:0.030771399525424355 :0.38332544694973014 +whether:0.12449497409517496 that:0.10957211802836199 not:0.060987115787168984 if:0.029445684435418368 :0.6755001076538757 +came:0.20293272722825922 comes:0.01760786411021821 come:0.007613724805676923 gun:0.005049892429731626 :0.7667957914261142 +ground,:0.1379399775049818 of:0.09587365507919061 ground:0.07126447636654015 that:0.03149172449918079 :0.6634301665501067 +of:0.028210535413009233 by:0.02612704851875173 body:0.020431623979129603 earth:0.014472399774193184 :0.9107583923149162 +im-:0.13680245555172332 pro-:0.11078009307409369 pro¬:0.06839348833981332 ex-:0.05770064691589705 :0.6263233161184727 +the:0.19591490398490408 a:0.04169642378915737 other:0.028060002757430917 to:0.02366570305215185 :0.7106629664163557 +to:0.3237097962407656 must:0.13058929711198478 and:0.09519435584925164 we:0.0860818825654577 :0.36442466823254027 +start:0.24769091427317383 so:0.1408157186079607 than:0.06712433362095209 of:0.006997454017011279 :0.5373715794809021 +in:0.3578624150666303 into:0.24508643154921106 under:0.18614593995260365 In:0.15597033827058843 through:0.054934875160966665 +the:0.21279055325765195 and:0.1741692672834358 The:0.09840930937255535 of:0.07615035706896654 :0.4384805130173904 +means:0.32651670874940064 one:0.1921038536677118 all:0.1552105819975135 reason:0.15162975588800026 :0.1745390996973738 +It:0.17449696605723397 it:0.14218729705476377 and:0.08245727846917357 which:0.0662540911225177 :0.5346043672963109 +and:0.49292123879977867 fed:0.1416709918243507 aud:0.02933848867144356 or:0.022482251018810285 :0.3135870296856168 +hundred:0.32965052186063915 No.:0.1466924150035522 of:0.11213006567653551 year:0.03959096558084602 :0.3719360318784271 +4:0.04908859586674505 J:0.03275820236171968 25:0.010055623085596495 10:0.00996467476774184 :0.898132903918197 +F:0.22853229793956387 H:0.21558714098771942 J:0.19767018194712552 II:0.18824433892184791 G:0.16996604020374337 +and:0.22140049923558341 regard:0.2100676140171279 relation:0.14765019688577208 reference:0.13431933036328095 :0.28656235949823583 +facts:0.15766781408812647 people:0.06067640230949518 information:0.05710725981148828 doubt:0.05242714508451568 :0.6721213787063743 +and:0.29676369128184255 when:0.19557134613073013 until:0.18734450214041923 with:0.1721240560077386 but:0.14819640443926935 +great:0.499909781713409 of:0.03936841281238054 the:0.0255652726249257 for:0.02260714563057378 :0.41254938721871093 +the:0.3973801164806659 tba:0.35363138470808797 an:0.020644848908650495 The:0.013517510004701517 :0.21482613989789398 +the:0.262949231486523 ii:0.09352966037143455 to:0.0865851130545848 t:0.03542153650091544 :0.5215144585865423 +they:0.4096920033477452 we:0.09439366030333222 there:0.06479926797864931 the:0.04279962398261017 :0.38831544438766313 +impossible:0.5399435776714115 sure:0.2051794775375576 certain:0.07329158423390746 ready:0.013753003791817325 :0.16783235676530586 +the:0.6005098104945861 old:0.11770397553069022 a:0.05878599832867704 in:0.039089416276333055 :0.1839107993697137 +to:0.1403614367641256 I:0.12051486935527633 you:0.09383061531878432 We:0.08216134227649179 :0.5631317362853221 +the:0.7086712931311652 tho:0.26237113251875616 New:0.010417237432928854 America,:0.005066415462842792 :0.013473921454306897 +is:0.22137949077603095 in:0.18957581746529242 that:0.0980721084914982 way.:0.027864360568111254 :0.46310822269906726 +the:0.18486597662216905 r:0.051337527782568323 If:0.03168460708468262 My:0.03021306816568205 :0.7018988203448979 +the:0.8236876364743475 tho:0.04459857215745901 a:0.04129942252699881 our:0.02253948032937313 :0.0678748885118215 +again:0.884545931691384 home:0.03576690858923206 to:0.010246635351787306 on:0.009424037789497101 :0.06001648657809968 +W.:0.6530455868964995 No:0.09322795419657783 E:0.041046200540798744 R:0.04101926200814234 :0.17166099635798182 +seen:0.15224567848827247 put:0.0830584694981863 found:0.05647503657541513 arrested:0.022501740068397717 :0.6857190753697283 +that:0.6113732416698685 what:0.1515734776783138 as:0.07821338893614964 and:0.051251176815269965 :0.1075887149003981 +were:0.257548661698295 suit:0.1645972076884757 of:0.12810952251742422 are:0.06488524431091405 :0.384859363784891 +and:0.30589051049750343 that:0.20148685950690096 which:0.09839902851229185 as:0.08558447720900894 :0.3086391242742947 +was:0.6259013592778259 waa:0.30290733633201866 has:0.008711124810013052 ia:0.0028027473222728425 :0.05967743225786942 +word:0.6253898577595848 know:0.012760171999466607 friend:0.006387875216947432 n:0.006296902639669451 :0.34916519238433186 +with:0.5943651049060447 in:0.11092555420883786 at:0.0736620480755431 the:0.03895428639783829 :0.18209300641173606 +of:0.7845058479983423 was:0.048708965036416765 in:0.044022972312108936 is:0.03595024175940302 :0.0868119728937289 +other:0.06853340747244142 such:0.0498469537679128 one:0.03599618782883774 Senator:0.03028733802430338 :0.8153361129065047 +which:0.3101350880672284 re-:0.2387155496269218 and:0.13168198947486032 in:0.12977558881012694 :0.18969178402086267 +the:0.7495607592553764 both:0.047932837668219305 their:0.01954667352971653 tho:0.013753280773381369 :0.16920644877330657 +and:0.3119830203076279 the:0.25097920519253947 he:0.10577228604242293 but:0.05901040677341999 :0.27225508168398965 +the:0.1650054698171806 any:0.14466174384182773 roll:0.1283796916640534 a:0.11369378082611482 :0.4482593138508235 +is:0.5027113976151706 the:0.22178210100556683 only:0.04268880546698455 every:0.037738661949213916 :0.19507903396306425 +the:0.4884737890858084 this:0.10011118080852166 his:0.04490842507988807 their:0.037192635005001334 :0.32931397002078044 +be:0.1200381246817664 make:0.07225989555940787 have:0.06821107536427674 not:0.04980375907657034 :0.6896871453179786 +the:0.9401155457162813 tho:0.020375206838881943 their:0.01622661268035932 tbe:0.011826209086864799 :0.011456425677612658 +of:0.8263933506308955 throughout:0.04062264385222333 in:0.04049345904094905 from:0.03139274400923371 :0.061097802466698374 +a:0.9434574361353654 very:0.02959120195171562 the:0.010127597106873935 n:0.005459139830267511 :0.011364624975777705 +was:0.06771129274512767 of:0.06514766658136505 am:0.06339180026820933 the:0.042642623830330253 :0.7611066165749678 +the:0.8497882693914608 tho:0.034179798641926454 this:0.03322624876239734 tbe:0.030328255191835293 :0.052477428012380097 +the:0.08225369541754024 and:0.0802810202244711 of:0.0782285020368913 to:0.0336360397884568 :0.7256007425326406 +old:0.057092124496529985 the:0.021091793272536203 American:0.020389573829525262 inch:0.019335601438473262 :0.8820909069629352 +which:0.0941035650916991 that:0.07704936065989733 whom:0.04135154602038508 this:0.04084410970567716 :0.7466514185223413 +touch:0.4703010088006789 paper:0.00044679787075748193 and:0.000361850779027362 fight:0.0001829090192445319 :0.5287074335302918 +effect:0.016545435966411674 in:0.016259705500804512 ing:0.013913663892005917 progress:0.009733337638967882 :0.9435478570018101 +soldiers:0.1181034854222765 people:0.03998492531725692 other:0.02558538564916856 state:0.021676014907571303 :0.7946501887037266 +yet:0.5962355942594387 and:0.23771478185853803 the:0.06007721594383844 are:0.0540369046941988 of:0.051935503243986186 +of:0.9143548191455985 on:0.020703107050861702 ot:0.01839532656067904 by:0.01222779570815894 :0.034318951534701915 +no:0.9977215217659986 an:0.0009687439213400282 to:0.0006143803365713917 one:0.0006058978613128138 :8.945611477717109e-05 +and:0.2087682132382441 But:0.09596050496910885 not:0.08046582477084693 Not:0.04355375532077463 :0.5712517017010253 +of:0.7200898735692274 in:0.18977619263510964 In:0.04906844953005181 and:0.012339500299489185 :0.02872598396612208 +the:0.4052539690684287 an:0.20062822205794073 every:0.08987385339786838 it:0.07097818220555403 :0.23326577327020828 +the:0.28746278909376205 its:0.062387026340019684 her:0.05579769571683007 a:0.05518239806051758 :0.5391700907888707 +said:0.03913672701522182 least:0.034399685307765285 tax:0.019050489941645703 once:0.01899185495373508 :0.888421242781632 +prevent:0.06467651894730529 all:0.055938845527592186 make:0.042147290484684796 follow:0.028830947707584934 :0.8084063973328328 +the:0.47338492840891694 a:0.14081107630785292 all:0.0469245581740001 tho:0.027072998054324615 :0.31180643905490557 +hundred:0.7178074573382809 million:0.21447840233034535 thousand:0.03699274483764273 dred:0.00018320076959176684 :0.030538194724139194 +This:0.7840221884640832 The:0.11861203985742971 the:0.038548949962171175 satisfactory:0.017336546152846022 :0.041480275563469934 +the:0.5003508112772309 a:0.11964623419921212 tbe:0.08823838485369451 wind:0.048916290094019356 :0.242848279575843 +The:0.34349154930907805 "The:0.17443245771564594 Tho:0.028933459304118097 the:0.025304030118365517 :0.42783850355279246 +many:0.142761822976539 much:0.09103551609918384 some:0.05501121615783362 the:0.023538294728091918 :0.6876531500383515 +a:0.6887151850484171 in:0.1570480389941497 the:0.036787016949761296 to:0.015568487551335776 :0.10188127145633594 +the:0.5447049347744242 tho:0.21247012492964404 make:0.0727443998620724 that:0.06182040802803501 :0.10826013240582429 +Sec.:0.7158024700742706 Section:0.05185852669280445 with:0.0004737082926700919 I:0.0001452717131433165 :0.23172002322711185 +and:0.3359688982420651 The:0.21505935272227883 from:0.19298293668319405 It:0.011971624015626669 :0.24401718833683553 +rights:0.1651713414621614 people:0.07260619519739218 names:0.05258725748212964 battle:0.04406620894675129 :0.6655689969115656 +of:0.9870105648266629 Of:0.0011958377577353933 ot:0.00015921750621501637 or:0.000133928110960453 :0.011500451798426375 +of:0.5783843640678847 with:0.09676138880794638 and:0.059028030442482116 in:0.05678381007756314 :0.20904240660412363 +lot:0.04786296983830952 the:0.034112203714424874 Section:0.01835677941152325 to:0.01827494802638936 :0.8813930990093529 +and:0.21274192481902188 to:0.1491075894749023 I:0.03400365609403498 who:0.028968144472144408 :0.5751786851398963 +the:0.1479336597704548 them:0.06873307996587379 steamer:0.05221227079621103 him:0.037267831571444886 :0.6938531578960153 +the:0.279385298925833 his:0.16676790728079408 her:0.11571052759057905 Mr.:0.07128294355191486 :0.366853322650879 +It:0.154913716259359 which:0.11366543750180882 who:0.11058258423874642 that:0.09394150545632889 :0.5268967565437568 +and:0.32436470625064706 old:0.06352558775069715 but:0.043523352798071964 American:0.03517784732418775 :0.5334085058763963 +payment:0.024659184141177713 action:0.021894082128627826 attention:0.017964746288564738 people:0.017385676346911245 :0.9180963110947185 +which:0.23802538235562404 who:0.18832001795017292 head:0.11052703813166752 that:0.07581920884894769 :0.387308352713588 +mind:0.18851271961312274 soul:0.1013041842639808 heart:0.09699516981925715 course:0.06051165587850067 :0.5526762704251387 +people:0.22866666445245204 capacity:0.0561654763289933 times,:0.04405655033787571 Government:0.035888464366512926 :0.6352228445141661 +to:0.9994404613540583 will:0.0001566623711687413 only:8.995760960252074e-05 not:3.875625712716478e-05 :0.0002741624080433105 +are:0.7728983528519184 were:0.13208973255743606 arc:0.07250666533406824 be:0.007477760593720063 :0.015027488662857037 +has:0.27620171673034805 he:0.2703979423490241 were:0.09990962336022542 had:0.07700429468456037 :0.2764864228758422 +people:0.1650090658018044 secretary:0.11314983844074701 officers:0.06127825125147364 management:0.041237229042924706 :0.6193256154630503 +has:0.24753907197818378 then:0.20698420651320756 who:0.1695028060125626 first:0.09342985104865059 :0.2825440644473955 +forward:0.09345453356784113 other:0.09034491327796618 lower:0.060723349730919175 north:0.05451276860872613 :0.7009644348145475 +of:0.23015556672563117 on:0.135165296341806 ':0.13508346070497165 for:0.11865087513448434 :0.38094480109310697 +will:0.37759985908626287 would:0.2472631000939648 shall:0.23506900060428845 to:0.07083515576807545 must:0.06923288444740851 +asked:0.26115343546073017 stated:0.25138011280059536 add:0.12306998948019159 provided:0.07946186911220923 :0.28493459314627373 +which:0.1375368561765776 It:0.11841791713396549 and:0.0669539640715228 That:0.06463853589457698 :0.6124527267233573 +er:0.24566907620572667 the:0.08933262342888534 and:0.05086248330926457 He:0.033274240024337744 :0.5808615770317858 +members:0.02964624669073248 David:0.01294154552032884 and:0.0069527867746038 to:0.005747801675538064 :0.9447116193387968 +fee:0.4919777631871283 satisfaction:0.07220972589535883 discharge:0.03237957246928399 conditions:0.027912691202273895 :0.375520247245955 +to:0.5674346584031578 in:0.1751315066531049 of:0.11491627308685504 away:0.09555520848561365 :0.04696235337126865 +miles:0.3372411031433967 ing:0.32321906946703527 feet:0.04469767750488918 taken:0.03520704456655529 :0.25963510531812345 +for:0.1747568425011573 with:0.15903853782131863 to:0.15660633544653774 of:0.11991019127186227 :0.389688092959124 +made:0.23738626381233968 in:0.16783570310712925 at:0.0576070082247454 being:0.050893092207349354 :0.4862779326484364 +to:0.905771028628231 in:0.028013904017741467 at:0.025910746658595708 by:0.015410115965418712 :0.024894204730012987 +to:0.4086985616921706 his:0.08279686348404143 the:0.07260329088663416 and:0.06092697971093111 :0.37497430422622263 +and:0.23376060501775026 says:0.05109186745242211 so:0.04219976766942688 felt:0.020583180465199403 :0.6523645793952014 +frequently:0.4533988903294367 ate:0.051276512084742244 to:0.04632777433118273 ing:0.03216517795899361 :0.41683164529564465 +the:0.39683684981076134 a:0.10428297795384238 tho:0.025940185379643838 an:0.02575982122235977 :0.4471801656333927 +of:0.8079991444483356 and:0.07250407725487598 the:0.020009990409662556 are:0.018299283818554373 :0.08118750406857148 +of:0.20533955149476102 shall:0.11972445593371445 with:0.07489342477138855 as:0.03768963393845888 :0.562352933861677 +business.:0.0034550582740815266 party.:0.0024450696042236132 of:0.0016257693556072414 way.:0.0005127763789732103 :0.9919613263871143 +for:0.9899674758754259 after:0.00984280345301866 and:0.00010386887281030743 in:4.910963537804057e-05 :3.6742163366932004e-05 +be:0.5033765912672058 have:0.0793916947701014 make:0.05355397245253669 take:0.022297120457895055 :0.3413806210522611 +E:0.18378571693146584 J:0.1767337968475457 O:0.10806744661783921 J.:0.0761607818958831 :0.4552522577072661 +the:0.4872412405977801 said:0.03897191907032982 a:0.031480494987635055 those:0.023998803620997357 :0.4183075417232576 +ed:0.05721680689399076 and:0.05649556734240362 up:0.04402341599287154 ing:0.03415600018175188 :0.8081082095889822 +side:0.11438022293349578 ture:0.05138561240915736 standard:0.037213768048974034 calls:0.03503075556370851 :0.7619896410446644 +the:0.11176298797213052 thi:0.05350499662414298 Railroad:0.010965190932098566 Charles:0.0046347148049710515 :0.8191321096666568 +matters:0.4676370461065241 questions:0.3731875366061606 measures:0.044907326830375814 matter:0.0275364934585732 :0.08673159699836618 +made:0.23228786673057472 is:0.14347581406847001 now:0.1432137656689551 are:0.08472489167833795 :0.3962976618536623 +to:0.1792745632747948 due:0.009830853867870477 clear:0.008796994822227065 necessary:0.007238121742955564 :0.7948594662921522 +ac-:0.42186908716907484 honest:0.009945278033037106 an:0.006069467875515658 official:0.0023471768780501147 :0.5597689900443221 +to:0.2560858244856631 of:0.1397861207573033 he:0.132172007281968 and:0.10754075246590285 :0.36441529500916275 +of:0.2382747277974116 and:0.2066727056252658 the:0.10807409677967679 in:0.09836414285593748 :0.34861432694170846 +in:0.7387498385445991 iu:0.03314845986853369 of:0.0007055035879695146 a:0.0005083110262384348 :0.2268878869726594 +man:0.33799943377714553 she:0.07425013262695862 officer:0.05258582803129383 that:0.03943305008882587 :0.49573155547577613 +to:0.34310492838614315 for:0.14700644293529627 if:0.13523416494014787 in:0.1284214830326758 :0.24623298070573704 +in:0.19703263642280433 and:0.1919679388667255 on:0.10282703545879278 to:0.08793470074372227 :0.420237688507955 +of:0.16526052733630414 and:0.09444405403312153 in:0.07761806077750366 to:0.07446439511310504 :0.5882129627399657 +green:0.2310718988240327 white:0.0829426657429279 silk:0.06298282879082868 silver:0.05953748760357009 :0.5634651190386405 +the:0.2012510883473649 will:0.18273666740628233 to:0.1549728524663291 shall:0.09198928564718588 :0.36905010613283784 +and:0.1122553006264917 anything:0.10652924883526294 a:0.048531004637509326 don't:0.04824840941972695 :0.6844360364810093 +him,:0.48589629974629306 them:0.024586794353374207 them,:0.021850572184124676 us,:0.020508794293216403 :0.4471575394229916 +and:0.19017060431482605 of:0.08066603159794287 in:0.07437824087875967 but:0.04183144385403485 :0.6129536793544366 +of:0.8653332239282356 as:0.05600323233770363 ol:0.05138466601852068 the:0.005212819272556805 :0.02206605844298316 +the:0.12322817400811421 to:0.1047538926147304 never:0.09628739063454944 he:0.03702533062842257 :0.6387052121141834 +sheep:0.2798457587041967 Indians:0.015845298534272623 boys:0.008902303636934705 horses:0.00593422400126389 :0.689472415123332 +had:0.3095491020664801 and:0.210494221850724 you:0.2048625326136198 In:0.1760414220607627 have:0.09905272140841338 +within:0.43743856513245144 of:0.15800555955623674 in:0.07758118875918613 for:0.04928242102621448 :0.27769226552591114 +the:0.18781590407860754 and:0.1503206430739456 a:0.0726238950170915 to:0.06687547409022288 :0.5223640837401324 +lying:0.06685719348432058 m:0.015173376377198415 and:0.010811150357223107 herself:0.010171557856783801 :0.896986721924474 +and:0.12764236126310463 of:0.06562284978764636 the:0.037464990490753226 to:0.028601728166460234 :0.7406680702920355 +as:0.37384680883573573 and:0.16502304854278727 but:0.10224908022000682 that:0.045225249858322804 :0.31365581254314734 +been:0.46700944165265434 a:0.10973097026711517 the:0.07378553427938808 not:0.03859936717232994 :0.3108746866285123 +manner:0.9646419801752593 very:0.010238714891517573 most:0.008105636502659962 more:0.007902480522152302 :0.009111187908410838 +strength:0.029193383639309553 more:0.009726900599433945 me:0.0029744036800223987 less:0.0024386303154530766 :0.9556666817657811 +Rev.:0.006689088717119898 Dr.:0.002700827167406134 In:0.0011393489123137188 Mr.:0.0009732485301487777 :0.9884974866730114 +seen:0.4197116932665954 been:0.1208487097729119 fed:0.09981536638107193 had:0.08344961577823 :0.27617461480119077 +that:0.29511327990602043 if:0.08072132894162024 of:0.05803222689732641 when:0.05419679598136106 :0.511936368273672 +control:0.03213752339786828 laws:0.03154875512552141 agricultural:0.027733111506471557 firm:0.026912542734359404 :0.8816680672357794 +will:0.34379708383389884 to:0.269838307252836 would:0.14135464722610241 may:0.09721071095388185 :0.14779925073328087 +of:0.2501356280907651 from:0.20924305772787322 by:0.15186325314015495 and:0.11708919705657489 :0.27166886398463175 +of:0.6294382615949294 and:0.07008776932491903 in:0.06754828380574243 to:0.0324981975105126 :0.2004274877638965 +in:0.6671067582948004 quickly:0.07089124658988083 of:0.04676324219503407 found:0.035584955928213674 :0.179653796992071 +the:0.20203999749620646 a:0.039527909312464804 other:0.03256389851768213 his:0.021039436349637865 :0.7048287583240087 +not:0.9909829713467967 uot:0.007626065295758096 be:0.0005870013392686737 if:9.035866302515648e-05 :0.0007136033551513685 +wish:0.302873159473239 want:0.23840146055501812 care:0.13809517289050982 come:0.030241595173557716 :0.29038861190767534 +in:0.3894722543872341 during:0.349324473316216 and:0.120324681963617 of:0.10793731467630295 :0.03294127565662995 +water.:0.02158921378553954 life.:0.01065895035391316 the:0.007401330008688737 them.:0.006407417740751501 :0.9539430881111071 +himself:0.38259096998894687 them:0.33398659710885525 him:0.18977199034744593 you:0.04910702733370608 me:0.04454341522104588 +July:0.2967037758181981 January:0.23361293460190063 January,:0.17978109275620344 October:0.14816153025440984 December:0.14174066656928808 +and:0.48674331127001014 It:0.18130045526348124 which:0.09255141949965619 This:0.07642411078923511 :0.16298070317761734 +and:0.08457817486448488 and,:0.05191581471665839 they:0.03030002651234546 of:0.019978323439135352 :0.8132276604673758 +the:0.29197625553613277 to:0.06697094174383968 its:0.05550258288472301 for:0.042522731222295246 :0.5430274886130092 +will:0.2568030759004958 should:0.2035857605858358 must:0.16563928598576536 may:0.12923137494286624 :0.24474050258503677 +time,:0.2798672726318982 wood:0.030835974884568268 one:0.011955165537929887 it:0.0037088202073324097 :0.6736327667382712 +the:0.3371025897657799 not:0.22405605824856908 only:0.207041387670613 about:0.11170735197423518 :0.12009261234080275 +the:0.40708652804377166 to:0.15856225116763223 and:0.06487130311899905 of:0.04458184075870404 :0.3248980769108929 +The:0.03245301883640604 the:0.02697450597338257 of:0.021833505338889 and:0.015862965383910053 :0.9028760044674125 +and:0.47732366208362637 from:0.2407708648437916 land:0.08193691700972218 are:0.07620023351072476 :0.12376832255213521 +followed:0.29223274682721456 accompanied:0.16745772973284628 met:0.03267355509737554 elected:0.032591756608236974 :0.47504421173432654 +a:0.21615852720037318 to:0.16184461894812696 not:0.06913492433939837 the:0.06862518046804972 :0.4842367490440519 +that:0.5768940198474882 and:0.14380870883175254 a:0.13050670894667832 finally:0.0916657796979305 :0.057124782676150204 +that,:0.09682528469771559 settled:0.07179429238761546 money:0.03927268381521119 a:0.03343561218776233 :0.7586721269116955 +such:0.8321139742294046 the:0.07116246746603976 said:0.06173922395656451 this:0.03488301187883315 :0.00010132246915816927 +with:0.9849791686817542 to:0.008164566659303896 in:0.0034539736498053345 In:0.0014827390586688016 :0.001919551950467786 +as:0.8393038098590135 an:0.02209409641046068 aa:0.022017041215938688 us:0.0036889053336400988 :0.11289614718094722 +request:0.8084788094403877 time:0.055834599149760425 sight:0.017869014869513027 end:0.014479604707242136 :0.10333797183309676 +us:0.2748290920340293 them:0.20949217028308742 which:0.13116295491356553 Europe:0.11474030492853596 :0.2697754778407818 +in:0.3395606698286992 In:0.28084520660499007 to:0.13093122013561828 and:0.12687650790737937 :0.12178639552331312 +had:0.9361174700707026 have:0.020149799633741836 to:0.01701507023163108 haa:0.016174707835206536 knew:0.01054295222871791 +Lord:0.05047502344928141 people:0.03181914027345466 distance:0.029438260409709354 company,:0.02251887320369972 :0.8657487026638548 +have:0.557682096444971 had:0.36712175810776754 bad:0.02181735267662861 havo:0.012933834970029128 :0.04044495780060369 +of:0.11428666872663402 and:0.1003007598834072 the:0.06414567220479221 to:0.028780786094350783 :0.6924861130908158 +.:0.8302314319960407 the:0.03859894557785788 American:0.01997130426269547 of:0.016812341857344357 :0.09438597630606152 +Why:0.07155708369838126 Do:0.05557991353970435 He:0.023512275741829968 It:0.023152175939387246 :0.8261985510806971 +to:0.47408388085436554 not:0.39439862232988315 a:0.05243169576725452 his:0.026553595477889585 :0.05253220557060738 +work:0.10239433696261692 life.:0.0033049857487927664 products:0.0005837389961002507 work.:0.000566234369918757 :0.8931507039225712 +of:0.14864557648086854 and:0.11571969300690971 the:0.07725585778561984 to:0.0363045316488371 :0.6220743410777648 +Union,:0.11498854531751776 of:0.026949048547680387 race:0.011162747072975914 nation:0.008311060412235644 :0.8385885986495902 +it:0.46439456406633545 he:0.20174030089089737 I:0.13689653579226752 It:0.09162331253603292 :0.10534528671446665 +to:0.2212441421466081 the:0.06828506527570585 do:0.021085635850530554 simply:0.015132589297912629 :0.6742525674292429 +of:0.4333897413965139 and:0.17972026803344826 on:0.04513706347341306 to:0.032096037078185896 :0.3096568900184389 +boy:0.2665634397260768 man:0.1983752207117839 one:0.033647819802454425 foot:0.01139889113539427 :0.4900146286242905 +the:0.4349122044508178 a:0.06376946481400365 his:0.025140397177408465 tho:0.02217537332006258 :0.4540025602377074 +it.:0.30205447882773795 them.:0.284413034645935 before.:0.13406012785457366 that:0.04508572478676335 :0.2343866338849901 +or:0.6171269064800304 it:0.10882163882850335 all:0.0933880339566268 and:0.07076322131013629 :0.10990019942470307 +hand.:0.1401382094165138 long:0.08549878250840444 death:0.05642396405696137 men.:0.047094867795636305 :0.6708441762224842 +to:0.6304632471226239 To:0.08800211014388017 and:0.027965772704153173 not:0.024309122162292057 :0.2292597478670508 +per:0.9928517102337263 par:7.44530730778548e-06 years:3.4090248440593688e-06 feet:1.9634700185835737e-06 :0.007135471964103248 +express:0.13384164281954583 by:0.057463113758521096 be:0.030913388563507945 the:0.025607651032094874 :0.7521742038263302 +of:0.11657919253447524 and:0.11615119475645777 the:0.1087771179904302 to:0.03231885474600518 :0.6261736399726318 +people:0.07269712804748593 public:0.04304502604236372 war:0.04277922410878969 charges:0.04207728906503562 :0.799401332736325 +done:0.074525884638473 caused:0.0035938415329663516 made:0.002254776316461341 occupied:0.002252267081391395 :0.917373230430708 +standing:0.5836839834507892 request:0.015021370818863188 statement:0.009001686659531428 agreement:0.007810228745164398 :0.3844827303256518 +allowed:0.29016743353179286 called:0.22439268155787961 had:0.16207418584086986 was:0.02738197053586643 :0.29598372853359123 +I:0.26927196398715053 we:0.24716188534626896 he:0.1839243511632497 eye:0.06465326011877183 :0.23498853938455894 +from:0.36873087790567266 and:0.29673774943768433 with:0.01582426588805912 default:0.007009148119184965 :0.31169795864939903 +also:0.641640712088455 not:0.18541747775706383 you:0.09816132551584687 he:0.036729244105566806 :0.038051240533067694 +2.:0.1593526011688248 home.:0.034832814406332124 body.:0.01033078250709956 limits:0.0033081149534396805 :0.7921756869643038 +and:0.10992266087708437 on:0.07266556041554648 is:0.048406902004326235 within:0.03832432109401563 :0.7306805556090272 +and:0.4328868653804374 I:0.13542627554886139 there:0.12594522974311284 you:0.07205659656467453 :0.2336850327629138 +the:0.5608490029419883 a:0.07299183744244096 his:0.03137268646385202 this:0.029611837025824726 :0.3051746361258941 +for:0.36712916317632904 Last:0.2853708942304743 thc:0.15911271489704562 last:0.09556064312232017 the:0.09282658457383083 +peace:0.305935777315469 home,:0.10410429377232575 that:0.05044406823471829 home:0.0444795111914793 :0.4950363494860077 +the:0.38660481760620047 his:0.039945830401727174 a:0.027901063533566244 truth:0.025710798576137412 :0.5198374898823689 +on,:0.2482143422645235 through:0.2087071028956352 away,:0.19428968873670024 her,:0.09835607216567245 :0.25043279393746876 +be:0.3569221314354815 have:0.20761689292285027 he:0.02610754337143273 be,:0.01984869759421664 :0.389504734676019 +or:0.9996970367430397 and:0.0001997415158423568 of:4.996197774433414e-05 said:1.6396633421622347e-05 :3.6863129952162315e-05 +and:0.16184916300560184 but:0.10370460374619508 number:0.026440454429875995 that:0.023802703220192224 :0.684203075598135 +of:0.28718058311653777 and:0.19669944820472535 degree:0.050128355173676156 at:0.0481758771173486 :0.4178157363877121 +use:0.14392664417094217 office:0.11424857903276399 application:0.061654605045153216 terms:0.055949015535308726 :0.6242211562158319 +an:0.18155700923656956 the:0.08068910130175594 and:0.06321772734411828 of:0.028378357485655537 :0.6461578046319005 +the:0.3136710136006328 all:0.07275159050989964 make:0.057214266483478535 give:0.05134116789395055 :0.5050219615120384 +be:0.2051510126532525 to:0.15705106971880534 the:0.13318117669227691 its:0.13214536134854526 :0.3724713795871199 +had:0.369611557526788 are:0.17868860548673404 place:0.044565073046125246 were:0.03076037427303217 :0.3763743896673206 +day:0.06471847835744335 tion:0.04464377531034041 ment:0.03981750072390622 line:0.03541617719121732 :0.8154040684170927 +of:0.5419451175655274 for:0.11072279882660892 or:0.02623573999984635 pur-:0.02024211539609603 :0.3008542282119213 +said:0.979417147797137 aaid:0.014385363383103984 sold:0.003502363091030148 aald:0.0023121927680842427 :0.00038293296064476317 +of:0.3570123967951542 as:0.19423611031459195 in:0.16502003875576224 from:0.1185347631755183 :0.1651966909589733 +it.:0.13038575884927456 him.:0.07613729480229872 work:0.059518017898577136 them.:0.03350164988947918 :0.7004572785603703 +first:0.13022043626720345 result:0.04099227882955318 number:0.03364925926648506 majority:0.030640435019812978 :0.7644975906169456 +of:0.01508172144583868 V.:0.006917635727800631 W.:0.00654643775253723 and:0.005101404226325673 :0.9663528008474978 +not:0.08212338471381872 but:0.03869422278537335 is:0.020535173923928573 was:0.01033815335120781 :0.8483090652256716 +and:0.1668364174380415 whether:0.12797431604606643 raised:0.06971440865876088 made:0.057673912366192015 :0.5778009454909391 +of:0.7538562905744112 ot:0.13977001802193117 to:0.019981375590923566 or:0.004203300316105053 :0.08218901549662914 +have:0.9157926616524465 havo:0.018023614868430224 hare:0.004597743470525848 had:0.003035712605808384 :0.058550267402789014 +The:0.32228517004088725 and:0.20927997239340632 aud:0.20134070408047372 a:0.16926391974822 more:0.09783023373701279 +bv:0.23757912210458937 from:0.214138719048832 in:0.16374765866718138 to:0.11901682059053206 :0.26551767958886524 +the:0.085450458778851 from:0.06264904069625646 a:0.036497110805975105 of:0.0359214004068912 :0.7794819893120264 +of:0.42973063782074455 ol:0.19124013272453425 unless:0.11991192280173815 in:0.10662366063902261 :0.15249364601396048 +bill:0.36404143058181754 boat:0.3439229245527975 building:0.10284011522533375 parcel:0.1005974363682238 :0.0885980932718274 +that:0.05967013410913077 which:0.04011715770155201 who:0.035750265221915774 store:0.033687859795660954 :0.8307745831717406 +man:0.061406828341240074 and:0.0532670326018264 officers:0.052407053198822495 people:0.03645514365982531 :0.7964639421982856 +and:0.01836644255123342 D.:0.01208701693493325 Johnson,:0.010849607320787023 W.:0.008219545816755793 :0.9504773873762903 +the:0.4227136191770184 he:0.060259212063618735 a:0.056783915472692605 will:0.0468373928403008 :0.41340586044636946 +consideration:0.9818494287160684 account:0.007101945229182806 a:0.0003516021055460255 is:0.00031354353328637557 :0.01038348041591645 +of:0.41332268338405287 and:0.18505102097567006 all:0.17303118845182602 into:0.13153724495335675 in:0.09705786223509416 +the:0.24274460258002006 this:0.03192074009946872 from:0.03032126244269968 be:0.028078829237087863 :0.6669345656407236 +of:0.32150388092395293 to:0.14106124659285355 and:0.11892018987666078 in:0.11523405651153155 :0.30328062609500117 +try:0.2299680131985899 are:0.19167329533055905 amount:0.05387673743416889 act:0.0038307443646097834 :0.5206512096720725 +third:0.06673963977921996 latter:0.05255762021522109 enemy:0.03386356301306091 President:0.02598668563831075 :0.8208524913541874 +been:0.5444790262940898 not:0.1344541205841366 never:0.09144099862803322 had:0.06336632493335845 :0.166259529560382 +to:0.8627104262941259 in:0.04052120168103949 from:0.033295853321329595 upon:0.020728789974943013 :0.04274372872856208 +the:0.12121518230437484 and:0.10712070195502839 to:0.10621778305494738 in:0.05330969034608588 :0.6121366423395634 +to:0.7778520125003383 with:0.008677112153183075 for:0.006701002095243028 found:0.006254680063064347 :0.20051519318817138 +he:0.3499811047030098 the:0.19282264343191197 that:0.10723289680990367 from:0.09014597018776123 :0.2598173848674133 +and:0.343206733526476 in:0.3317356845874355 to:0.12870225095709112 of:0.10424420647745916 :0.09211112445153836 +not:0.9528193254017899 they:0.008057996474869693 he:0.007139741596614882 I:0.00341209641709755 :0.028570840109627897 +the:0.5475860078648965 a:0.061820277473652326 about:0.050435212780692 fully:0.05006415464385514 :0.290094347236904 +been:0.9274341026142785 gone:0.0323192037095915 started:0.006784914554048379 passed:0.005517468203071557 :0.027944310919010038 +Southern:0.024135720281627457 the:0.023747775993540936 terrible:0.014772666733956535 con¬:0.014452287051217332 :0.9228915499396577 +of:0.1251318474370362 the:0.12477580038103986 and:0.07892058834265032 a:0.057401594191655254 :0.6137701696476184 +be:0.11013568451488426 go:0.09074276702914386 fall:0.08584186208067361 look:0.07699843055273797 :0.6362812558225603 +arrested:0.36240958278977387 killed:0.2095470108038575 one:0.03721352286405926 sold:0.03651116792745683 :0.3543187156148526 +and:0.06829143870804508 do:0.015174179440495879 or:0.012665326463956789 but:0.010794026143913851 :0.8930750292435884 +the:0.45206592102518767 a:0.14225423070751508 their:0.066961070300922 only:0.04084317139351213 :0.29787560657286316 +keep:0.38313967213387995 be:0.2630394329407013 receive:0.14500325932716673 make:0.12253896408239463 have:0.08627867151585725 +decree:0.424465005392043 deed:0.029493453917248936 power:0.011984129278341495 native:0.0075624299962900625 :0.5264949814160764 +the:0.06325752090874694 country:0.024908897609016385 city:0.020912739495949392 great:0.02040989064175229 :0.870510951344535 +the:0.5067286337616072 a:0.11541448014888649 his:0.03993809970997246 this:0.03585761606150052 :0.30206117031803337 +survey:0.3280572094636908 road,:0.015987633832266805 let:0.0054298086552049445 line,:0.004873141509344906 :0.6456522065394924 +Miss:0.22246320651471266 L.:0.12056248907030664 E.:0.10580208014935284 B.:0.08540043019362066 :0.46577179407200714 +contain:0.03460892538178661 put:0.018671094999040495 be:0.013724820137879056 bo:0.006200541954122843 :0.926794617527171 +As:0.742151243408138 as:0.023244015882601204 which:0.020500407999740376 that:0.016560941393422506 :0.197543391316098 +the:0.6755476054252095 of:0.0055842490101137825 that:0.0042330927012071955 tho:0.002571496512719206 :0.31206355635075034 +office:0.1393018421503826 church:0.13680075362157212 senate:0.05357939677071494 hands:0.05196479981205479 :0.6183532076452755 +up:0.14416264486846056 authority:0.09395493188458744 and:0.07076859468835739 face:0.05898124506243291 :0.6321325834961619 +minutes:0.6786975779764007 days:0.06075065851878576 years,:0.019609945485583223 feet,:0.012869604676408061 :0.2280722133428221 +the:0.1252249289292722 and:0.11327221219523435 of:0.07604427612795012 The:0.0398578538288622 :0.6456007289186809 +original:0.4334695577771084 other:0.11924330059650312 principle:0.07231128110452915 one:0.07049334474239916 :0.3044825157794602 +in:0.1687329302287984 the:0.12877616102172648 and:0.10449770059220811 All:0.05724364297461064 :0.5407495651826565 +and:0.11814599977459748 the:0.0777167418246618 of:0.06503950995283782 were:0.054550207795648294 :0.6845475406522545 +the:0.44124336516525986 those:0.14820413513934405 after:0.12382083255170655 tin:0.09075664660218684 :0.1959750205415028 +with:0.8467127353993958 is:0.08103628494248588 to:0.016931993456930954 and:0.012447817326719573 :0.04287116887446768 +own:0.08300288660964732 home:0.014209462969847092 residence:0.01182841245629073 in:0.009339396606778665 :0.8816198413574362 +It:0.10797808931466348 and:0.10578834223992005 it:0.0610628959958356 which:0.060580911481999566 :0.6645897609675814 +to:0.39188330332547555 in:0.2772074884178642 on:0.10536521899337076 from:0.1025745674272989 :0.12296942183599056 +The:0.2313032016986226 She:0.1109846556175999 Miss:0.07050037623911748 A:0.05607163848092805 :0.531140127963732 +the:0.29556133396228385 and:0.09839839208776037 a:0.06548490035181079 of:0.03769676734168771 :0.5028586062564573 +the:0.31862065643011506 a:0.14902026910222277 an:0.042921342398752886 his:0.03797156409482782 :0.45146616797408134 +to:0.17911336056285926 and:0.14075518850575036 the:0.0625822099009493 of:0.046040556206176766 :0.5715086848242644 +It:0.983418576631917 it:0.01412954610178682 the:0.0011471307473830466 too:0.0006186284897186843 :0.0006861180291944237 +which:0.43848647172229804 men:0.2773655343432264 and:0.0799573149393284 is:0.05061879624222309 :0.1535718827529241 +ed:0.1498470840519547 executed:0.08830210608248676 employed:0.04342828923596794 it:0.03784348830140716 :0.6805790323281835 +for:0.30013611100948473 to:0.1688741701540658 upon:0.15173438662177796 out:0.1493977260593319 :0.22985760615533954 +to:0.5545190208510834 into:0.22081227323502076 through:0.08136529952217536 on:0.06517359645232783 :0.07812980993939253 +money.:0.06771468953770379 to:0.0610301754045376 the:0.05368857090415769 of:0.05095666076597003 :0.766609903387631 +object:0.06823574030685943 being:0.029352931205031532 of:0.028334619007796855 to:0.016811435718189077 :0.857265273762123 +It:0.13314483246872294 it:0.006835293606513098 to:0.0064173113271270375 there:0.003978032468265431 :0.8496245301293713 +hut:0.4858150641857773 and:0.24921467948019568 being:0.0533238984360195 in:0.02866389583417284 :0.18298246206383464 +quarter:0.07360790036322538 State:0.03222463143109654 time:0.021440479923273373 position:0.01826344938379205 :0.8544635388986126 +fund:0.3639914683046054 resolution:0.10327909823913814 bill:0.05215475534879723 motion:0.028601136988676043 :0.45197354111878313 +most:0.02979708988836271 the:0.019585240028932718 whole:0.014209486497260894 great:0.013095548703681585 :0.923312634881762 +false:0.09221350752776249 American:0.06523767818515282 whole:0.03784085736594189 first:0.025546544724546705 :0.7791614121965961 +has:0.42673063447702525 should:0.36942394837064424 to:0.08862950408233107 who:0.06177027868976689 then:0.05344563438023255 +and:0.10827021022921632 of:0.10276921542871488 to:0.06351015954707397 put:0.06058918123485253 :0.6648612335601424 +and:0.37786194771226966 so:0.08228264149305975 is:0.07503599310165364 but:0.049135153303845464 :0.41568426438917144 +He:0.6411244897255551 lie:0.06454626590789508 "I:0.02923652668259988 Ho:0.025975057878203683 :0.2391176598057461 +a:0.5131716755897329 feet:0.2810294267973957 with:0.04909402189324248 many:0.04355040826367994 :0.11315446745594886 +and:0.12864527166197193 but:0.09383842747283937 determined:0.07729227974337328 opinion:0.06440267470885606 :0.6358213464129593 +hud:0.27172237315655595 is:0.22739123943152312 Is:0.22301125185358783 but:0.0808613148991811 :0.1970138206591521 +In:0.9353179584123742 in:0.03627323264504104 by:0.016646774154156895 for:0.006054029666390399 :0.005708005122037506 +by:0.29074420615621915 one:0.12136121126720298 for:0.0921532593868469 In:0.08444183469178904 :0.41129948849794196 +already:0.6078986399291094 that:0.09297763251132575 may:0.04739565325740107 I:0.04612421638359032 :0.20560385791857336 +fifty:0.25249273333316 twenty:0.03964473902544257 City:0.03336365802881265 forty:0.030797364450240044 :0.6437015051623448 +bushels:0.20672074845597257 ion:0.03318593475600585 and:0.032680452711499226 ber:0.02990345188488606 :0.6975094121916363 +pleasant:0.1678308168409617 increasing:0.1627084364780218 the:0.031141159103098736 popular:0.029603269781477044 :0.6087163177964409 +the:0.46250770342573727 to:0.24060239912609355 and:0.08878101416511995 a:0.039522401424456094 :0.16858648185859304 +bring:0.41943529262149337 prevent:0.2278371295277205 a:0.21502431760927987 with:0.033301944753955474 :0.10440131548755091 +women:0.3339669160989558 .:0.1495822434623693 those:0.06362258012330875 and:0.03222330503820935 :0.42060495527715674 +the:0.42095444972333207 that:0.06967420778934277 of:0.052338172175498306 these:0.04826777126221977 :0.40876539904960707 +of:0.11628981031272945 and:0.11317260747947389 the:0.10263666261157255 to:0.06102561926436844 :0.6068753003318555 +have:0.11999120149285689 continue:0.053033961979586014 the:0.021768129644578835 more:0.018382558693173595 :0.7868241481898047 +Court,:0.9351648023348809 was:0.016224525579778198 has:0.0036236391668124247 be:0.0013348461534945207 :0.04365218676503402 +of:0.9670746167063565 oi:0.007966166688240187 ot:0.0074647067199377 cf:0.0057303071341530945 :0.011764202751312519 +at:0.5773009715770699 the:0.24900355659106396 not:0.06576257000406623 our:0.02735381120873426 :0.08057909061906565 +containing:0.9420205881721957 about:0.01362533397724939 said:0.0059073378893172435 of:0.0036842372859598833 :0.034762502675277675 +of:0.34721039394208575 to:0.12703732230674014 in:0.121835931365287 and:0.09104101144453537 :0.31287534094135167 +lady:0.08610209912141208 that:0.060392378651664504 which:0.045970157857733 schools:0.041847989976768335 :0.7656873743924221 +to:0.9444201653897101 not:0.022613013414013804 then:0.012168939658053452 fully:0.00518169643127609 :0.015616185106946491 +wife,:0.11733660563317658 are:0.0990151309863218 very:0.058161800691134316 with:0.028921560313111893 :0.6965649023762556 +most:0.019650036249848582 United:0.017767602486929844 American:0.017074187305671708 old:0.016250393946167452 :0.9292577800113825 +then:0.3314556741280807 already:0.2979066939392993 Just:0.15933824383680265 now:0.13724342519263777 just:0.07405596290317973 +as:0.3784421170311461 the:0.11313070672919784 a:0.09741310263719574 and:0.08900812821885652 :0.32200594538360383 +of:0.08529932546775394 and:0.06388637991552688 for:0.05956241292382017 -:0.052160280262765174 :0.7390916014301339 +of:0.770129028874498 and:0.05443466783772559 to:0.032470988497676066 with:0.029748891297638618 :0.11321642349246176 +H.:0.280215194633748 A.:0.2219344049952989 J.:0.16839443874022658 B.:0.12473833396277557 :0.2047176276679509 +men:0.05231118025090222 facts:0.051978982601007716 bonds:0.03725718056133317 points:0.028561394563028433 :0.8298912620237284 +just:0.5144344760122218 ":0.1310425875746062 quite:0.08892554700451875 equally:0.08512236083435072 :0.1804750285743026 +and:0.1406760286909116 which:0.09871562771189428 of:0.058082589895299706 would:0.044420942281313304 :0.6581048114205811 +as:0.20440408526553286 well:0.18537466612003947 was:0.1028404139258199 be:0.09310978323626318 :0.4142710514523445 +was:0.8602430026794513 is:0.10271871911749826 were:0.018188757325389195 are:0.005494902613244922 :0.01335461826441635 +and:0.15138400830516163 but:0.03538530477555266 or:0.02934640064555606 ed:0.028142722706887738 :0.755741563566842 +of:0.9518730733914545 cf:0.0023218778304607305 in:0.00020974137063867052 ol:0.0001564044990604467 :0.045438902908385835 +and:0.19060638600852997 for:0.06216334900580312 ed:0.0450126742312374 that:0.04475346067408816 :0.6574641300803414 +of:0.9187854967449087 to:0.024869939177040553 ol:0.01988901938990021 in:0.008700721766327545 :0.02775482292182307 +or:0.34819448450222135 of:0.08877597164200883 and:0.08294533770537034 The:0.05829770103233259 :0.421786505118067 +was:0.35705134180914766 then:0.12260408010158273 gave:0.10893237340442731 is:0.08711817523346732 :0.32429402945137487 +meeting:0.10892512005539348 and:0.05065169737415343 hearing:0.035839139384907265 of:0.023400464412321024 :0.7811835787732249 +the:0.9894342430057359 The:0.0017375623169485464 Ihe:0.0012929882137070678 tho:0.001268961793524562 :0.006266244670083982 +this:0.18163519159049848 a:0.12418857793525549 50:0.117741957442588 the:0.1061299521255874 :0.4703043209060705 +is:0.5651655552350956 Is:0.3587739497796598 was:0.023452737042502805 as:0.007409097971574809 :0.045198659971166816 +port:0.5477606619540769 the:0.007206234717377444 -:0.004126878154433029 The:0.0025346823743224818 :0.43837154279979024 +often:0.39266515584877343 have:0.2658109902535804 would:0.12791041310506462 will:0.11096141733935122 must:0.10265202345323028 +ten:0.6785536020171593 more:0.24110012905730863 16:0.042445463225581195 nine:0.029247121209959714 10:0.008653684489991152 +treated:0.36493597326825794 turned:0.05860176241564794 turn:0.010946437222110498 moved:0.010520470609552976 :0.5549953564844307 +faith:0.1806206239401062 truth:0.07124940467243272 confidence:0.06721909063872389 division:0.06709653363022647 :0.6138143471185109 +step:0.09530219795848317 de-:0.016355373960448172 and:0.010419954674484231 native:0.00978563616633868 :0.8681368372402458 +colored:0.37894997390264734 young:0.17647564106492958 remarkable:0.07537943353370222 business:0.06569004836712218 :0.30350490313159867 +of:0.22577743534569442 for:0.059200416265083856 the:0.05290334376822302 in:0.03986072501631315 :0.6222580796046855 +it:0.4116444357110247 there:0.21803993752379944 matter:0.16996802885004356 he:0.10092985223821291 this:0.0994177456769195 +in:0.24665521414761607 of:0.1696539352175791 from:0.15168810206887534 are:0.11618177822831391 :0.3158209703376157 +years:0.06581748619225476 end:0.05058993199860495 year:0.04243219125234194 n:0.03575819069680998 :0.8054021998599885 +the:0.1362774090392037 and:0.11981798052047818 those:0.10236843049923774 for:0.0876271160051054 :0.5539090639359749 +of:0.24818103949266268 and:0.07952942413371199 to:0.05302470891786703 the:0.029144168184059654 :0.5901206592716985 +New:0.7274850492055542 that:0.05326632753499811 which:0.04133752016151514 while:0.03114785829136396 :0.1467632448065685 +and:0.02963449768011717 it:0.02569762215408877 according:0.02321913072184179 them:0.021944611118553697 :0.8995041383253984 +of:0.3514525394284176 upon:0.1265660095785135 and:0.10204597102805921 on:0.09751430644109958 :0.32242117352391014 +city:0.09393967368298234 County:0.08637206699006074 way:0.0808376279562345 county:0.05103930373241217 :0.6878113276383103 +and:0.07485124950428095 of:0.06683683026179316 by:0.02326186205170943 to:0.01673122732505643 :0.8183188308571601 +be:0.13889044352672136 make:0.1060587484344715 such:0.09839933833942592 have:0.04154053604321887 :0.6151109336561622 +r:0.1270002148328896 the:0.03207367011260692 send:0.025150970345542232 ill:0.014708658641016285 :0.801066486067945 +possible,:0.03390749977165541 part:0.02448285160354782 serious:0.018921116632395284 similar:0.013468057626664738 :0.9092204743657369 +engine:9.603272294876607e-05 fund:6.135967273983767e-05 table:6.037244715157587e-05 crops:4.478506529226895e-05 :0.9997374500918677 +the:0.22631118299015257 me,:0.06514860655735713 last:0.05425255777982965 night:0.04724273230769337 :0.6070449203649672 +the:0.47177367109692414 a:0.1671166701355662 Senator:0.16488339706372163 eighteen:0.06370282147241627 :0.13252344023137172 +of:0.5026610028813356 in:0.38430791830877126 over:0.05571798509576122 throughout:0.03501121250673283 to:0.022301881207399104 +to:0.22962353986462763 and:0.16595903202716986 of:0.1486199824470837 be:0.1292687353935761 :0.3265287102675426 +of:0.9576895362845366 ol:0.02656616983864593 ot:0.013193713334011382 and:0.0005824800312095487 :0.001968100511596593 +forced:0.18845408251541493 send:0.08969546022429273 leave:0.07256259713533891 follow:0.06770606389288322 :0.5815817962320702 +conditions:0.22993984803816817 upon:0.04045336436983145 form:0.03516332700157771 laws:0.03045373029287966 :0.663989730297543 +get:0.07479767412329597 make:0.07047504806198603 leave:0.0691788400365458 reach:0.06651828003196199 :0.7190301577462102 +young:0.09594512058134837 three:0.028526763907352096 ten:0.025147204294450914 five:0.02457140532346383 :0.8258095058933845 +to:0.3010909562731524 not:0.15105213536511394 almost:0.09767375001544959 a:0.005019971823860634 :0.44516318652242354 +governor:0.42631575796764726 deeds:0.1255533364190621 men:0.0261324150083173 women:0.016263612878072195 :0.40573487772690114 +it:0.3170242571093994 there:0.2818134046096925 he:0.15732119618538754 I:0.062412308339500074 :0.18142883375602054 +further:0.6364675906871659 future:0.17553995208647763 usual:0.03881688449947101 new:0.034174317652741856 :0.11500125507414362 +of:0.4940041030457675 the:0.020391300764326815 a:0.009219875914206983 in:0.008436398982218386 :0.4679483212934803 +by:0.30357635577941444 in:0.27873374413099655 at:0.1758564134226501 that:0.04607456827795651 :0.19575891838898238 +a:0.5996013931701187 the:0.05974626778694068 their:0.010576156307301006 our:0.01018217780143687 :0.3198940049342028 +the:0.3342194931940996 a:0.1161348565118984 his:0.054595600489512466 their:0.048855479139271685 :0.446194570665218 +and:0.1618394768123291 Mrs.:0.08138977911249762 with:0.07266738153527964 for:0.02962246935356623 :0.6544808931863274 +The:0.2426662332516232 a:0.21708213547040184 little:0.06930970009965504 for:0.03745489450772387 :0.43348703667059607 +are:0.26888245677096534 is:0.226288676844367 if:0.126318441493931 o:0.07739354386417392 :0.3011168810265627 +ers:0.04962122576359637 up:0.03726025046146586 returned:0.03475110340738524 as:0.029601118537157144 :0.8487663018303955 +which:0.6512843648233556 and:0.1093243117690478 that:0.040108853377279576 clear:0.016513175811121876 :0.182769294219195 +of:0.41849190328691377 required:0.20942413197032697 as:0.1909354908924177 in:0.10143070357949067 ot:0.07971777027085082 +on:0.9364706828601522 at:0.052826200896103424 by:0.0037547078141069628 in:0.0021474268199087364 :0.004800981609728469 +paid:0.38774658175061516 present:0.027123231680551127 of:0.020500472655004397 gone:0.010566564101285961 :0.5540631498125433 +the:0.8751421452247172 purchase:0.047747028380293856 thc:0.039377399793626214 and:0.020008454243757905 tho:0.017724972357604774 +a:0.9591861016736353 the:0.007914298302663684 being:3.827071801045722e-05 press:3.112077267839077e-05 :0.032830208533012474 +which:0.2162715009917981 and:0.13943153686396312 It:0.13899364623922383 ence:0.13137633117378864 :0.3739269847312264 +brought:0.2228782912210066 and:0.12596223327102632 win:0.07966621016660506 the:0.05591044247998199 :0.5155828228613799 +again.:0.24982269291817683 there.:0.06459411846705791 a:0.05768132284797632 and:0.02548727880875104 :0.6024145869580378 +its:0.37582149809206417 their:0.3073618908423215 the:0.16216829456057197 he:0.06387093749086765 :0.09077737901417468 +a:0.8386125068770713 the:0.11925255084817613 tlio:0.023674983115720517 great:0.0031516820784006755 :0.015308277080631422 +of:0.7486378058968967 and:0.05787880010950593 belonging:0.026564005195976508 owned:0.019536469291847117 :0.14738291950577379 +who:0.5055587173485913 I:0.21458235924911376 wo:0.10041535919572811 may:0.04171076372522346 :0.1377328004813436 +under:0.27098585852456003 over:0.21891996491684265 by:0.0643932081953161 through:0.06232957840858152 :0.38337138995469977 +there:0.49459909761600857 which:0.28633795486837266 it:0.0842463035684822 who:0.06749996553121586 and:0.06731667841592073 +to:0.9875978809439236 must:0.006022271997710479 will:0.0024116362626499174 should:0.0012865817872936987 :0.002681629008422344 +of:0.21598317020728156 and:0.11170091037393406 the:0.049647036229283785 The:0.04668675234339604 :0.5759821308461045 +that:0.007456047295889911 |:0.0017407091558564768 .:0.0011637612176247202 I:0.0010679822505815454 :0.9885715000800473 +of:0.6332322328023842 about:0.2963839175669698 with:0.03746174215315792 over:0.023218099350149176 did:0.009704008127338905 +men.:0.07716659872633821 thia:0.03028368742759466 trade:0.009200509658917251 death:0.008910136177207708 :0.8744390680099421 +man:0.014932232114220397 body:0.014141749484046189 our:0.013910374837852449 bill:0.013498472323786195 :0.943517171240095 +the:0.10543818536258387 and:0.09791129369415073 of:0.09088741803228019 to:0.06213883153151823 :0.6436242713794669 +upon:0.48098835388799793 on:0.4346505604382414 with:0.023174718582120012 in:0.004973713936208259 :0.05621265315543261 +done:0.10149507851211774 made:0.035338539472971824 here:0.027314715177155176 connected:0.024043620855694763 :0.8118080459820605 +it.:0.3009233789713914 him.:0.013709171382061318 it:0.012531981734747254 her.:0.006200200798771632 :0.6666352671130285 +people.:0.10238554265392844 officials:0.049036407089270345 the:0.048874729592839186 in:0.03193579115545767 :0.7677675295085044 +the:0.18256328556211437 business:0.04761733784766783 his:0.012905238916233176 it:0.010174853311283087 :0.7467392843627014 +true:0.14082562095512857 new:0.09694537806498374 fresh:0.08135590840817779 long:0.04188762337376949 :0.6389854691979405 +or:0.0346884249029163 which:0.03265521932584079 Company,:0.021027033518172186 company,:0.017779734349021515 :0.8938495879040493 +it:0.2786988167863747 It:0.17993436226274895 which:0.036867145006829354 two:0.03613322722398434 :0.4683664487200628 +as:0.9888138998134606 men,:0.0015473078291033935 that:0.0007205839209142766 after:0.0006147370382097783 :0.008303471398311906 +none:0.9619455513364323 some:0.012258733495426766 out:0.0021025898959898697 many:0.0008577065668249033 :0.022835418705326172 +he:0.4077263944695826 e:0.31967028898304395 the:0.09975792275746827 lie:0.03258791062134662 :0.14025748316855863 +of:0.6331987605816954 and:0.08925188479054619 in:0.05582336999752703 to:0.04311680688476031 :0.1786091777454712 +nnd:0.9987947864515899 and:0.0010097864974666396 but:0.00014103127640443651 who:3.724378152123006e-05 :1.715199301770707e-05 +people.:0.014443284322179327 law.:0.009795782651266897 country.:0.008664064780182142 for,:0.008208898051331516 :0.95888797019504 +as:0.9123885853803055 ns:0.03803575150717135 a:0.010487699026197214 us:0.007007800511027332 :0.032080163575298665 +and:0.1220555190900455 to:0.10052513135881432 of:0.04865338277986068 the:0.04736765216001346 :0.681398314611266 +that:0.8959998444923872 the:0.005047928527986312 of:0.0017074893105816645 and:0.0013086088437770915 :0.09593612882526775 +lots:0.046875248920179004 property:0.04510434093487735 land:0.0375108530528645 note:0.03572380543325491 :0.8347857516588243 +of:0.7399189178637446 and:0.09045847862827902 are:0.035423783588801404 the:0.03047082074428647 :0.10372799917488831 +and:0.7809754950110895 nnd:0.06365855487866194 a:0.030984455493604644 of:0.02951575667838331 :0.09486573793826068 +have:0.6108948123728303 be:0.24343697660304187 bo:0.10006056532503153 yet:0.03715475483740859 :0.00845289086168778 +favor:0.2907662586918187 front:0.15628418746675027 behalf:0.11960845736937538 one:0.05517981800803086 :0.37816127846402475 +would:0.3536616497153152 will:0.31234057360653644 may:0.10927396479129665 might:0.09666634349447203 :0.12805746839237964 +rendered:0.19558038874993056 and:0.04196112204696488 a:0.027545171246952986 was:0.02577782675044083 :0.7091354912057108 +be:0.28459118776720616 only:0.19125330165501167 to:0.056969217802933306 help:0.05624973888084159 :0.4109365538940073 +it:0.029283001670116608 me:0.024925311201602896 contest:0.014778510569534399 Congress:0.010698447633822827 :0.9203147289249232 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +they:0.21778340623092735 of:0.05396033461128939 up:0.014308536636285623 the:0.006928515196208005 :0.7070192073252896 +States:0.621850278075888 state:0.08702276154474921 was:0.04733216821919484 is:0.018628761180734865 :0.22516603097943297 +and:0.10139901354218248 the:0.07968288481183852 of:0.06244835777716857 to:0.05158620501697284 :0.7048835388518374 +of:0.9919198332798421 The:0.0069983830402171624 for:0.0005211729763006089 on:0.00014383411202327858 :0.0004167765916169784 +forced:0.0036415956645563796 closed:0.0029591789276149365 scribed:0.0022055073536126225 correct:0.0018854628119370533 :0.9893082552422789 +and:0.320046690708202 But:0.23568242268928838 of:0.1869382540058179 with:0.08612344792792416 :0.17120918466876753 +for:0.8579244477004272 of:0.04894130151129136 in:0.03201145041697159 lor:0.02602601487382835 :0.035096785497481575 +nor:0.5407198663205577 or:0.08434330864276068 the:0.031233244292207692 to:0.027112916697495777 :0.31659066404697817 +and:0.10125291811581498 the:0.09653662335672361 of:0.08544138484909947 to:0.047858515759929575 :0.6689105579184323 +It:0.6207816871130286 There:0.2298693033561833 it:0.03987996514834277 there:0.025608615239142325 :0.08386042914330293 +great:0.5918015659759758 large:0.12954623227970488 vast:0.10286369563831216 superior:0.036518866394404506 :0.13926963971160244 +were:0.4596037028023406 from:0.4094151187271989 had:0.03282116521154524 to:0.021360227842927605 :0.07679978541598766 +and:0.08716046094745199 of:0.0660586293162876 the:0.05691328870940102 to:0.03580365215256613 :0.7540639688742933 +to:0.262021619842668 a:0.13406473281647324 the:0.12162048528327017 it:0.10199356054913189 :0.3802996015084568 +and:0.0806228330106896 the:0.054141996947665486 of:0.043534770771549124 a:0.03217030436718055 :0.7895300949029153 +she:0.1633728570580525 ami:0.11539246807703339 and:0.09749470822950512 There:0.09308059577425278 :0.5306593708611562 +the:0.5832632011759913 tho:0.02416051963642556 two:0.017550999863639238 tbe:0.013321554624626787 :0.3617037246993173 +was:0.7693060698311718 are:0.08417875268501261 is:0.0423727418821963 had:0.020305120705928104 :0.08383731489569103 +depth:0.058302008891505434 failure:0.04717509832146787 population:0.04464455079552659 capital:0.03797579818210581 :0.8119025438093942 +is:0.5189737884160185 that:0.16041033484915249 Is:0.1243181025483048 to:0.04528237895609541 :0.15101539523042895 +stand:0.1520010777446066 confidence:0.14198354251767412 been:0.1336009762457258 it:0.08740992252376877 :0.4850044809682246 +been:0.8685050097872195 a:0.026220701909658625 at:0.019309141616167987 the:0.00938440483005959 :0.07658074185689408 +great:0.04682706161419529 good:0.04201990577929921 is:0.03830175815873103 little:0.030159228066272647 :0.842692046381502 +the:0.030608237884599054 this:0.025621976275250615 city:0.010100378904582905 such:0.0085659964223289 :0.9251034105132385 +the:0.10573638745378744 regard:0.06726432448807618 order:0.06722923260478268 a:0.037638052844829725 :0.722132002608524 +of:0.623463657210793 and:0.061919020305823504 the:0.058623608137538384 to:0.031624200509530076 :0.22436951383631504 +have:0.35949545407544864 never:0.1827752175198886 had:0.0921764676638053 long:0.035970254975507945 :0.32958260576534953 +of:0.7051000697902488 and:0.07183516231420961 as:0.059523985149801506 the:0.047444697144369684 :0.11609608560137027 +a:0.5537454981566917 the:0.20334506734282662 her.:0.12850055766078664 tho:0.026880944614658946 :0.08752793222503617 +extent:0.18504551905076227 and:0.08745364660587762 for:0.04214398885897265 of:0.02921543427168551 :0.6561414112127019 +apply:0.1075942235273762 be:0.09429950663117129 have:0.062074003258777544 seem:0.0578873129223294 :0.6781449536603454 +that:0.8062025512507172 no:0.10404424513015413 when:0.05487699171621606 not:0.01830857560174677 the:0.01656763630116596 +living:0.011810473712200899 taught:0.006528367617364575 taken:0.004942716578836094 born:0.0045769293957793195 :0.972141512695819 +grand:0.18493304523408602 good:0.048243612044243545 of:0.035343820602852634 splendid:0.029179369214021676 :0.7023001529047961 +a:0.1951150901889107 the:0.13159600478337724 in:0.062381652385492474 an:0.045685994588496565 :0.565221258053723 +other:0.09222425348887696 Atlantic:0.06718295711641727 ice:0.03696201685062419 railroad:0.035762216100087674 :0.7678685564439938 +the:0.17372051847477224 and:0.13494301896713592 to:0.11514389895796666 in:0.08936573087884156 :0.48682683272128363 +secret:0.16499815254265215 patent:0.0035118308649137683 means:0.0007576870293759843 the:0.0006787116252506233 :0.8300536179378076 +are:0.2875937273033724 were:0.1409897607399604 was:0.11404787751798257 is:0.11064402043717718 :0.3467246140015075 +and:0.08659591149518114 or:0.046017475373577456 the:0.026505704748570138 I:0.01812510813046622 :0.8227558002522051 +to:0.39594479577213376 on:0.24043812963778027 at:0.10942742212649438 of:0.0849397684059982 :0.16924988405759342 +respect:0.4258291364366059 the:0.0028507844108801657 hope:0.0018994468707225916 love:0.0015655261621327636 :0.5678551061196584 +In:0.5582296705171389 to:0.12935087345916638 from:0.09988071999710978 left:0.09121722859418556 :0.1213215074323994 +follows::0.9224261397461785 to:0.01654965785682241 a:0.001997982675683914 was:0.001811399151326518 :0.05721482056998868 +killed:0.038468483371270144 and:0.021401731907920156 ?:0.014067876440139989 but:0.009206724057342741 :0.916855184223327 +of:0.3023606511449833 to:0.12231168821393483 in:0.11778151800905463 and:0.09585238752961066 :0.3616937551024166 +fired:0.621991930562594 selected:0.07032198929796231 taken:0.04527846159818902 brought:0.023513346050635806 :0.2388942724906189 +square:0.10919419049282282 of:0.0799259105700146 and:0.05227281240906308 two:0.05025198662553411 :0.7083550999025654 +the:0.9504446630011313 his:0.008235664229304539 an:0.007344444410110604 this:0.006076416402296013 :0.0278988119571576 +the:0.47494514158890283 a:0.19131875490154227 an:0.07360320988726299 sufficient:0.02077407273564022 :0.23935882088665156 +at:0.40795206545802304 In:0.2933222679364849 of:0.14011738931600173 in:0.0762594722697063 :0.08234880501978382 +their:0.21989285379864154 the:0.20807972481503753 his:0.20079497525770568 any:0.187603671335334 :0.18362877479328127 +he:0.518374574663766 be:0.19777640367806829 ho:0.19590031838835373 I:0.053506662554429235 :0.03444204071538274 +the:0.2373927329203484 he:0.2048648972229335 they:0.13873442020007654 are:0.08244054318104757 :0.3365674064755941 +car:0.027996698874670854 mail:0.02492978884830041 now:0.013001951812883406 cars:0.012513653061483174 :0.9215579074026622 +his:0.7427731200176353 bis:0.07731729916011583 a:0.053773473475860784 the:0.019971461799915803 :0.10616464554647227 +be:0.6468738015639874 bo:0.2996144205930372 is:0.009265717228674333 be,:0.007682019035252709 :0.0365640415790482 +I:0.5812641384645937 we:0.27375289797559477 they:0.053910787053018445 1:0.03976446939059238 :0.05130770711620091 +full:0.028198794665009335 laws:0.027361973936069647 and:0.013704738928863959 to:0.00896756189178289 :0.9217669305782743 +hundred:0.2398746554220341 Range:0.23166647325392212 North:0.06116608964235255 seven:0.05466200710919012 :0.4126307745725012 +are:0.2375107792570956 were:0.16097577944405106 have:0.08267529509026061 will:0.08119563993167898 :0.43764250627691365 +strong:0.3982348565152689 powerful:0.01020595478292041 great:0.007195654289378724 a:0.003403390129045938 :0.5809601442833858 +true:0.309652286522203 certain:0.14236724594898986 alleged:0.1398195596638295 reported:0.12656374105649723 :0.2815971668084803 +the:0.36945882189532353 and:0.13252631095239625 a:0.11284965676541085 de­:0.09139879033052443 :0.29376642005634496 +permanent:0.11381856098091593 the:0.0990645701675872 a:0.06574124572983693 my:0.03035534145539832 :0.6910202816662616 +taken:0.2571820422562087 left:0.2486667094381815 been:0.10445231732755467 of:0.026658100683791697 :0.3630408302942634 +the:0.27393402591185473 from:0.22439896907745305 in:0.10361682746730078 and:0.09377599326347957 :0.30427418427991176 +dollars:0.6425876288370651 dollars,:0.19754769821116425 miles:0.026682399277920384 feet:0.0198774681532207 :0.11330480552062965 +of:0.18814665861069593 and:0.07908020854656217 to:0.0392538598614089 the:0.0334690486051053 :0.6600502243762277 +the:0.6351009194212467 that:0.30694439935891604 this:0.028677437477359013 tho:0.011960445036553257 :0.0173167987059248 +it:0.8958390012297569 It:0.04122848288591185 is:0.029617984787694396 k:0.02069699279385761 U:0.01261753830277915 +of:0.8424737004100025 is:0.03987008738656339 and:0.016226198528174772 in:0.015359534966378176 :0.08607047870888111 +paper,:0.036705011637154006 depth:0.0229537668726616 new:0.016666251484480483 other:0.015300964549659998 :0.908374005456044 +day:0.05890056281557121 tion:0.03846415361795439 ment:0.026115670201602992 corner:0.024476275312120665 :0.8520433380527508 +I:0.8383789684662307 he:0.04826187947592762 1:0.04058240859547561 lie:0.03182774398303566 :0.04094899947933041 +good:0.1173941213678062 same:0.03211644948300087 moral:0.028449198826151396 best:0.02599755337684717 :0.7960426769461943 +twelve:0.2004783774297574 one:0.1923163258349442 three:0.06473082229740056 fifty:0.053433534278694655 :0.48904094015920313 +and:0.09938934120097237 the:0.08020330946139913 of:0.0583881494926961 to:0.048178788728377664 :0.7138404111165546 +laid:0.15806558150671846 and:0.06836524770316067 of:0.06214000409444077 went:0.05964807224978905 :0.651781094445891 +York:0.2944735656036561 York,:0.01789933864935147 S.:0.013112420100264274 Carolina:0.012593585411696726 :0.6619210902350313 +meeting:0.02563028151840129 court:0.0020747038848386084 attorney:0.0007836422096569394 and:0.00025864590858391633 :0.9712527264785192 +It:0.2058256227750136 it:0.09853590484114373 This:0.08785982811169445 which:0.07624711013884591 :0.5315315341333022 +amount:0.03526988084519024 balance:0.021979928659733392 State:0.02194125682147623 cost:0.01703712061015743 :0.9037718130634428 +the:0.5949794896472135 a:0.07728322046117372 his:0.05359102185166872 this:0.048544002634300955 :0.22560226540564315 +God:0.03762324545576882 broken:0.026855878041229624 house:0.015489459066621412 her:0.012306585626051482 :0.9077248318103288 +not:0.16116349982797834 con:0.11852261625739094 so:0.08752411852724154 largely:0.06698951178221442 :0.5658002536051748 +When:0.3903371339868758 and:0.17336378478086023 at:0.08110843522977419 State,:0.06977956678841135 :0.28541107921407854 +John:0.1692627177046753 Thomas:0.111332151449068 James:0.11105536909306239 William:0.06860150673753737 :0.5397482550156569 +place:0.05920794368004903 answer:0.048711605421457214 public:0.032393000954083394 remedy:0.022216085866453707 :0.8374713640779567 +dollars,:0.10219064621415504 the:0.05625468585474493 black:0.04377266105036428 these:0.012675939037100613 :0.7851060678436351 +record:0.27274988033844544 demand:0.030251649835028028 trust:0.0197103294361699 bond:0.01301537519647717 :0.6642727651938795 +in:0.5633722041801444 of:0.40158786720147455 to:0.013739838880637189 and:0.0122078626805712 is:0.009092227057172607 +Johnson:0.1810119890685783 to:0.008995044214798745 Hall:0.0014418156602923175 and:0.0009301760064968929 :0.8076209750498337 +and:0.1787284907188069 the:0.13157802871738164 of:0.10231970702383543 with:0.06293831676780229 :0.5244354567721736 +and:0.11797993365323178 the:0.08234157947751075 of:0.05855839789720597 are:0.04836300563937577 :0.6927570833326757 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +Not:0.3017535346426168 and:0.10976433760607299 that:0.07444984254287214 but:0.051209233668516194 :0.4628230515399218 +be:0.34618316850411135 have:0.12715225469090727 not:0.04107098117564719 just:0.022255002534747124 :0.4633385930945872 +but:0.12057207282402511 and:0.1176636144462654 love:0.029876047801802492 himself:0.025741561311438444 :0.7061467036164685 +and:0.24565189310236948 up:0.20426870924484755 here:0.10130713483713999 out:0.05548988568550704 :0.3932823771301359 +course:0.09966849970533492 provisions:0.07000684971423184 presence:0.0698066854615254 service:0.050727886706651536 :0.7097900784122563 +granted:0.12789636534679666 closed:0.06355847420273086 opened:0.04671033448765507 determined:0.005712679431490534 :0.7561221465313268 +and:0.21776762473624126 On:0.2163363567952618 on:0.15876647805056482 ou:0.05592593893068382 :0.3512036014872482 +heat:0.29343181877432634 weather:0.03616267704739412 scene:0.009194465841570075 time:0.00649027101750687 :0.6547207673192027 +at:0.6347502806177393 in:0.09698584069962586 yesterday:0.08260438545795516 from:0.059251040427658025 :0.1264084527970218 +the:0.44241135649594066 a:0.049234829086985954 his:0.03761032963178179 their:0.029378357918097925 :0.4413651268671937 +expenses:0.357525507789617 the:0.19807504476876536 it:0.10495116651219903 that:0.08386006608339323 :0.25558821484602534 +field:0.05120771510934653 man:0.03308184003297974 citizen:0.013236012141525722 house,:0.012297860676635956 :0.8901765720395121 +by:0.6999895484706692 with:0.18983323341366515 to:0.04896194789553579 in:0.033030299276135676 :0.028184970943994216 +reason:0.04161560741808604 provision:0.03673240491716495 use:0.034999715032908996 room:0.03363778484506486 :0.8530144877867752 +body:0.43833631980776344 South,:0.0188207354854326 people,:0.014653200104994763 person:0.014416911833698939 :0.5137728327681103 +it:0.23193502533560623 this:0.19193406505591742 we:0.16086264628068261 I:0.03381818579886385 :0.38145007752893 +one:0.18203839927126475 to:0.1789570322516589 sure:0.17248743390338322 in:0.140497493365779 :0.3260196412079141 +to:0.07394843841364633 in:0.057740726600333005 had:0.046924038265269835 I:0.044690151107116355 :0.7766966456136344 +They:0.13112669289395473 day:0.09442017322776966 We:0.08680564570637432 returned:0.03526853090354726 :0.6523789572683542 +ing:0.31309859958990577 be,:0.036220568964519154 homes:0.010309030155891529 ly:0.010280277922149523 :0.6300915233675342 +John:0.02931644170747586 Henry:0.025971735016420118 Frank:0.018923850003396348 A.:0.017591185873216255 :0.9081967873994914 +to:0.646708269340506 a:0.27686886992384446 the:0.02601113173657242 and:0.022096157732652187 :0.028315571266424863 +and:0.999953849944968 shall:2.8835404463381408e-05 to:1.1973198076973462e-05 !:5.365393948892146e-07 :4.804913096546443e-06 +he:0.7049150563911155 they:0.11069706512409035 we:0.05261261860258488 it:0.05249543179223169 :0.07927982808997765 +at:0.2682045758686627 for:0.25420003785274964 of:0.1763893550552438 in:0.16608111635297093 from:0.13512491487037281 +the:0.9063689586346535 tho:0.04061913071841009 tbe:0.010694536459369082 tiie:0.010161764799080245 :0.032155609388487015 +and:0.1772074552070055 or:0.06227379421653924 a:0.027249834117936196 do:0.019250445443003944 :0.7140184710155152 +of:0.1579180874025774 a:0.11809652502394107 and:0.07472782841104042 la:0.03277519407114239 :0.6164823650912988 +and:0.017864217478237455 employed:0.00601210117310844 was:0.005297201256569272 committee:0.0036342693058297195 :0.967192210786255 +the:0.23268187361327267 by:0.15569636676460566 and:0.08903688690086144 in:0.0646981424636574 :0.45788673025760274 +the:0.4082920119712232 a:0.04669331847112873 his:0.030957774487158703 tho:0.026657157401885668 :0.4873997376686036 +place:0.19546487217792471 cities:0.13579573822477195 bodies:0.07114219337762509 kinds:0.02204269186690695 :0.5755545043527714 +There:0.4083971329775353 there:0.30034820792622674 It:0.08289865471859434 it:0.04344450442526241 :0.1649114999523812 +of:0.27069031177859326 in:0.1510101946876072 to:0.13562849052548365 and:0.11475124683437311 :0.3279197561739427 +of:0.19849177789024608 and:0.06535163061065818 in:0.0574297385502191 to:0.04429115677672128 :0.6344356961721552 +and:0.3144977279858382 Ho:0.14819639192535158 They:0.08138107177684381 He:0.07442422054420325 :0.3815005877677633 +fact:0.03961060457014068 kind:0.039420821148902545 money:0.031577979364048346 work:0.029206408220395448 :0.860184186696513 +had:0.03417829284303173 placed:0.027048810613117102 held:0.017320629915110162 80:0.016204446933284117 :0.9052478196954569 +session:0.8513818926304678 day:0.047043353600207 act:0.018414020549382154 of:0.006714089827669847 :0.07644664339227304 +labor:0.13758970625833886 weight:0.12123162765248037 of:0.06471130402339988 and:0.050849614803227805 :0.625617747262553 +and:0.12432933375704389 the:0.10986015556643759 of:0.08843789223827225 The:0.04151203428714837 :0.6358605841510978 +by:0.02274799975470813 So:0.012779865439977948 of:0.006525550778565388 that:0.005070933545961989 :0.9528756504807865 +the:0.9629170105556608 their:0.02259340662040673 a:0.0015178914806348376 her:0.0005654951918407534 :0.012406196151456961 +and:0.07424209978167293 the:0.04015956871986814 hand:0.028517643558560905 Saturday:0.025143485098847104 :0.8319372028410509 +laws:0.13919763288314438 secretary:0.07071546890188077 part:0.057112415856547874 payment:0.013631672404346293 :0.7193428099540808 +won:0.10767603080175667 made:0.05316178669673627 to:0.03017095326076745 provided:0.027065724948096555 :0.7819255042926431 +the:0.30460861923632476 my:0.14886399743801337 who:0.08139615628060802 to:0.042753231535346825 :0.42237799550970706 +did:0.33247424870807796 does:0.12118275313670815 will:0.11713383239816996 could:0.11020861442699457 :0.31900055133004934 +said:0.01220937982843826 selected:0.006488806863725164 entirely:0.0033437785257277265 a:0.0025251513375477547 :0.975432883444561 +the:0.5154261778755048 Some:0.09480381615099065 any:0.05577858763219566 The:0.05121857096437524 :0.2827728473769335 +the:0.02246870958760049 first:0.012858913110434501 great:0.012263288628178087 chief:0.011830743544797183 :0.9405783451289897 +books:0.42545771147596595 ones:0.0218033773800366 building:0.012607464554299844 road:0.009924544996175488 :0.5302069015935222 +.:0.08154121821330139 P:0.07876757180067348 ol:0.02849123081162814 E:0.017628870340612526 :0.7935711088337845 +out,:0.2422542022567601 out:0.15094637934670846 seed:0.10244703692621844 of:0.04022516120242448 :0.4641272202678886 +half:0.11184884203451399 charge:0.10252004641956022 side:0.09952030355765279 team:0.09681284207447892 :0.589297965913794 +in:0.026148629026948773 that:0.011934516049270155 I:0.00945306605842112 !:0.0062949773480906294 :0.9461688115172694 +have:0.7826115084700143 be:0.18980283369693934 bo:0.008918803518554844 not:0.006365640429868562 :0.012301213884623153 +the:0.6871838554844844 a:0.12055638921640872 tho:0.03333751456016561 tbe:0.01293738469173432 :0.14598485604720707 +man:0.19331001844702167 ship:0.08515733750249388 touch:0.049820029147116605 child:0.03778075133399325 :0.6339318635693746 +and:0.3775287876083428 When:0.13680871556558874 that:0.10868960770986773 when:0.07799328509989387 :0.29897960401630697 +the:0.777247717743859 tho:0.0382027392661994 a:0.03798862696548382 tbe:0.018083906670348013 :0.12847700935410966 +The:0.27346550576886863 and:0.1296194390955976 the:0.10687060916592767 follow:0.034272585079283324 :0.4557718608903227 +lie:0.21283526381037954 and:0.17186783259759272 demand:0.03224853839182941 except:0.025888063887032037 :0.5571603013131664 +than:0.1451757895473598 question:0.04851042810472581 national:0.030587401593900623 de-:0.014471574953055523 :0.7612548058009583 +It:0.9256430785734909 What:0.03132659260473356 Ho:0.015202759986249816 There:0.01483356692279853 He:0.012994001912727472 +on:0.029712999048556798 It:0.025832726674753746 ed:0.023086122146089086 down:0.016442653306101694 :0.9049254988244988 +and:0.10841858714946992 the:0.1022342449953845 of:0.09053539157339756 to:0.053750225553108794 :0.6450615507286392 +If:0.5343080230400677 said:0.2991704120006789 And:0.07070706955963488 if:0.03799696806462183 :0.05781752733499664 +-:0.2096125784799732 he:0.14187706523593696 whole:0.08235635429144715 a:0.03816062180689864 :0.527993380185744 +and:0.15327579427997312 services:0.12233488272488655 They:0.07073867620105291 troops:0.06561281499411634 :0.5880378317999712 +of:0.15440645306046646 and:0.09079814776212733 the:0.07542014338455251 that:0.028870410311959336 :0.6505048454808945 +of:0.2246787940628622 and:0.10527948525259233 the:0.05654513618589212 was:0.030268979681700198 :0.5832276048169532 +the:0.1140322531476925 and:0.10322880508661603 of:0.05665822540856293 The:0.041797220811543655 :0.6842834955455849 +of:0.17266325979480468 was:0.12884942904273752 and:0.1097594500679546 is:0.06850442292946192 :0.5202234381650414 +upon:0.16338983304930188 and:0.12975164804712902 and,:0.08060637466436618 from:0.07539768878163083 :0.5508544554575721 +no:0.953692226166158 any:0.028126447841901804 some:0.003758203048359337 an-:0.0035594860136752182 :0.010863636929905737 +and:0.14507440367301908 the:0.12899335797063988 of:0.09675246577129147 a:0.03562688513309843 :0.5935528874519511 +a:0.4086504189342099 the:0.30736108116047756 every:0.061392572117713734 this:0.05231421395788321 :0.17028171382971566 +ball:0.07097034260480159 lead:0.06424393596698656 place:0.059733224165753655 stand:0.04896711982515813 :0.7560853774373 +make:0.2560615423268979 put:0.22653373426605192 spend:0.1832749278136044 get:0.12231043095532221 :0.2118193646381236 +two:0.3170378496302689 a:0.19606878078792123 thirty:0.1716267629506338 six:0.11751344459456504 :0.19775316203661109 +up:0.10607617674444556 well,:0.05124370273661647 her:0.017517991623486107 them:0.012937997854667146 :0.8122241310407847 +very:0.0736425380362521 most:0.03907908946208983 great:0.03158705900633877 large:0.02897930389936082 :0.8267120095959586 +his:0.002467573666844997 the:0.0021734695147180667 her:0.0015069700853736975 my:0.0006040784927807427 :0.9932479082402824 +and:0.1449103710383416 but:0.036761725554260744 or:0.0145393404848099 is:0.012333306510634448 :0.7914552564119532 +and:0.9968835450038511 to:0.001546612522586179 by:0.0008343124146479683 in:0.0002881986216260648 :0.0004473314372886379 +for:0.8047767531556064 with:0.11237066892775205 that:0.048604949974245346 in:0.009535761857865664 :0.024711866084530586 +near:0.0363941152149921 most:0.026519009463327203 his:0.021254217826046574 same:0.02079332825484801 :0.8950393292407861 +don't:0.999998887077841 cannot:5.306616942226564e-07 will:8.182755603095825e-08 to:6.015120662522459e-08 :4.4028170229350597e-07 +basis:0.16056268866145054 principles:0.08181136105356097 limits:0.06325609256778217 ground:0.013091158094410702 :0.6812786996227956 +and:0.1205850262001084 of:0.08779730139451246 the:0.06192721340601679 to:0.030831733105463513 :0.698858725893899 +is:0.5670158742859812 was:0.2569058360405237 has:0.044068402548472586 becomes:0.028001122486472376 :0.10400876463855012 +the:0.9986505379656659 tho:0.0004807116849249377 some:0.00028346407298390785 our:0.00027691016388993483 :0.0003083761125353052 +be:0.17848345878159727 come:0.14338131927815914 go:0.10981716030756145 break:0.07349458361402843 :0.49482347801865373 +to:0.24274516569890206 has:0.2042779612746751 were:0.18240062669245571 in:0.13074674787650528 :0.2398294984574618 +main:0.31230215253974664 principal:0.20276384223693336 simple:0.1874598229377093 only:0.11592997416488919 :0.1815442081207214 +is:0.40554864532240187 was:0.1133547921869845 Is:0.07657537731416471 will:0.046294435942583756 :0.3582267492338652 +It:0.25993422022102375 which:0.23219096627810284 who:0.07663749644463025 and:0.05779476794761831 :0.373442549108625 +on:0.7594501237709063 of:0.24018021519923144 upon:0.000227742321026585 ou:7.371220247334858e-05 the:6.820650636251166e-05 +try:0.3157436871118281 ty:0.06057530214185084 ties:0.0009161733228567733 premises:0.0007185071053749765 :0.6220463303180893 +a:0.6107432630734709 the:0.1510863676367336 one:0.0664376376295945 in:0.045261062324508536 :0.12647166933569226 +a:0.16724227420979867 worked:0.050749382535707134 into:0.012440501473214917 the:0.010543213049483764 :0.7590246287317955 +to:0.5697229142223423 for:0.19552330259086417 of:0.15525002563397716 and:0.03857438138471414 :0.040929376168102195 +person:0.8985578837642579 corporation:0.04185732735553827 vessel:0.023210147614706272 man:0.010438215579476972 :0.025936425686020493 +and:0.23470626255552401 my:0.14910807623711209 to:0.09211554143834458 I:0.08719843283671942 :0.43687168693230005 +all:0.17543544004404957 which:0.055457931746688977 of:0.05511440447917087 terms:0.023369352174051033 :0.6906228715560395 +at:0.47712674746925327 for:0.03728013160274986 with:0.03352616199671384 to:0.021776801917158944 :0.4302901570141241 +the:0.5498092791909261 The:0.20043511601053657 At:0.08613654463764202 and:0.06076395814976565 :0.10285510201112961 +that:0.9730835838574291 the:0.00425197255943827 when:0.0033754342096255045 in:0.0029690191912525427 :0.01631999018225457 +as:0.25744651014857733 and:0.22391886543775003 even:0.08233113413741602 that:0.05574094647993288 :0.3805625437963237 +and:0.26245707281111047 h:0.07581705584476972 the:0.05780089992347855 which:0.03514123666287469 :0.5687837347577666 +small:0.27715388252543355 little:0.06418876974279164 Chinese:0.020940427552487186 country:0.020575552874814974 :0.6171413673044727 +treatment:0.10848272542280525 as:0.09997561720820915 conditions:0.08038703322598258 a:0.0660353432728238 :0.6451192808701793 +said:0.3336774454481509 states:0.13142191244977092 stated:0.09267155603999225 declared:0.0777294395447952 :0.3644996465172908 +of:0.2653439997071719 and:0.06707216541752425 As:0.06037911540007274 to:0.013343042478538094 :0.5938616769966929 +a:0.25019658691030805 the:0.18044824219287334 an:0.0858261095549534 to:0.06448840717667363 :0.41904065416519165 +due:0.3540703439260157 confined:0.16418151218377092 brought:0.0477317235571576 found:0.0377375172367119 :0.3962789030963439 +of:0.20395630802561468 and:0.06254861124934835 the:0.054663729231100605 a:0.040618474564588065 :0.6382128769293484 +he:0.11097052936382745 He:0.10344653269572493 dent:0.016917417597575937 broken:0.013262316286582407 :0.7554032040562891 +of:0.6085884803888174 to:0.08900630730842922 in:0.08853543810087676 and:0.07404683959773238 :0.13982293460414447 +notified:0.2895835080364226 given:0.1347216163230722 ordered:0.07988414227733913 declared:0.06417847731840039 :0.4316322560447657 +land,:0.13000500295749495 was:0.07699651610706845 of:0.04769277478142069 in:0.040404204836629806 :0.7049015013173862 +and:0.16834718495532586 this:0.10393916013763192 the:0.09351902429609078 to:0.06254922442183301 :0.5716454061891182 +ship:0.06244814773861789 sides:0.04029195028423138 real:0.004143716429003205 man:0.003377373246713052 :0.8897388123014345 +have:0.20523835415522262 are:0.19495922793475634 cannot:0.13538959486370583 must:0.117497656176832 :0.34691516686948315 +you:0.37730866215544545 to:0.30349523761013847 in:0.11762608431965645 out:0.0943122740644195 :0.10725774185034004 +seen:0.3327813276773888 had:0.021159036802524872 been:0.01999034891771945 be:0.018543053010602165 :0.6075262335917646 +the:0.2640878122323105 in:0.09297862674983252 a:0.046953735529206446 ":0.04336861259440604 :0.5526112128942444 +California:0.7669833617264683 it:0.01541528234837886 the:0.009243100931232089 there:0.005767324571349207 :0.2025909304225716 +of:0.4641080453590625 for:0.1844856812412759 is:0.11451993719281663 a:0.09586096476043143 :0.14102537144641356 +the:0.5079720858552146 be:0.05788036425635689 their:0.029037137794062563 a:0.028959598043602187 :0.3761508140507636 +of:0.9274353725547119 to:0.019646866598582974 from:0.018068883547007565 or:0.01615990143946558 :0.01868897586023214 +the:0.55466537041267 that:0.04943334571718059 tne:0.03397133964907757 Saturday:0.03215172494661348 :0.32977821927445844 +conditions:0.012940045654317126 and:0.0007634399250603352 forces:0.0003100918833446127 reasons:0.00029017685295874303 :0.9856962456843192 +the:0.0894906829249963 mother:0.06653937647584003 In-:0.04254308903156941 be:0.02557247357087096 :0.7758543779967233 +the:0.6437467178836864 rates:0.06443173674791058 a:0.045550779793868845 tho:0.028710091580135152 :0.21756067399439907 +new:0.07460730706875947 great:0.06621932228347312 single:0.047912333349487225 serious:0.033296222460409065 :0.777964814837871 +be:0.5377161161834906 bo:0.08658125828442569 ever:0.02831314978352129 lie:0.02347584161246856 :0.3239136341360939 +of:0.5943048355507942 pounds:0.18150933141711523 per:0.07400520558468694 at:0.03176920257176239 :0.11841142487564113 +of:0.5735853053109048 a:0.19155231233749334 the:0.08657915355527533 to:0.07704143299911989 :0.07124179579720655 +and:0.33823492098021574 or:0.1620801431513455 not:0.07148277423260858 to:0.038361012468053506 :0.3898411491677765 +of:0.7464189593859081 in:0.08374896228946142 and:0.06095878385336458 to:0.031883027227089245 :0.07699026724417665 +in:0.0496966292498383 States,:0.04038773625284017 business,:0.030527196412138434 petition:0.02780785036572461 :0.8515805877194584 +the:0.7980295530914723 tho:0.03896024623523007 a:0.0350716314278172 tbe:0.017751368447139617 :0.11018720079834103 +the:0.38071018970951864 a:0.16552786184760857 at:0.1069566353129717 are:0.08096333683403097 :0.26584197629587014 +of:0.8591745069908744 with:0.0566351193357341 for:0.04548165585310797 on:0.02200251757901646 from:0.016706200241267056 +and:0.15348996255733607 the:0.11343720727815465 The:0.09140066452313876 of:0.07752565845919814 :0.5641465071821725 +the:0.24947723054655943 him,:0.21466377386744778 you:0.14501721907279927 my:0.12114183534512656 :0.26969994116806684 +much:0.022636843975029984 me:0.01288941900213019 something:0.010715922147119326 a:0.005468915717371416 :0.9482888991583491 +business:0.04128875363865385 I:0.022647602468373423 en:0.013991572226524916 city:0.00683894566948037 :0.9152331259969675 +the:0.005336143807077559 his:0.005041605059886167 and:0.004014161842965693 my:0.0016293892024099844 :0.9839787000876604 +of:0.17807283530807616 was:0.15317376423353105 the:0.13897802845597002 in:0.09872776644947459 :0.4310476055529482 +to:0.32809490200039737 will:0.22264703108816794 may:0.09704067106180901 should:0.0945470086836481 :0.2576703871659776 +for:0.1557393797729309 And:0.04527585190312663 tion:0.03492492323747724 a:0.02772326649855621 :0.736336578587909 +carrying:0.2536297244644899 wear:0.0339614824967315 calling:0.03232354675429413 keeping:0.03186635343783148 :0.6482188928466531 +them:0.04654581793994234 such:0.025716988350985927 or:0.024379083030648993 him:0.0203726546885947 :0.882985455989828 +of:0.20110383110454427 -:0.0511657024959495 and:0.04121601086639052 to:0.02492770724882927 :0.6815867482842863 +the:0.06362780556860145 when:0.04602939154214968 that:0.04510655400149318 as:0.04318385938071961 :0.8020523895070364 +to:0.20418524270509594 that:0.20050966708612686 of:0.1604262282870903 in:0.0933065884982256 :0.34157227342346136 +that:0.3511233230563815 but:0.10407485621081576 you:0.057980350322264486 him:0.023625435679362858 :0.4631960347311755 +the:0.7177299712053621 a:0.06478024693281947 tho:0.031159539546579487 tbe:0.016613300897021135 :0.16971694141821783 +in:0.6718028026637566 In:0.1942300192540496 into:0.10811360025961317 Into:0.014535832954829964 a:0.011317744867750657 +the:0.554331876807315 a:0.2918588072694234 said:0.0871835341242123 that:0.03484511454271985 this:0.03178066725632934 +the:0.41364054156923785 a:0.07682209636200406 tbe:0.07024739259471063 and:0.039213959982437055 :0.4000760094916105 +and:0.11781887310524786 to:0.09698387626873829 the:0.0787104613708922 in:0.07823045396350328 :0.6282563352916183 +the:0.09404463482522689 was:0.031010128225906087 a:0.0289425248078487 in:0.023783042987166575 :0.8222196691538517 +names:0.12404791028574808 source:0.0759999863943077 attention:0.05102070197945643 best:0.048726585665304634 :0.7002048156751831 +extent:0.04096984416071764 memory:0.03167827411680853 principles:0.022519533275625902 development:0.021025689468839252 :0.8838066589780088 +Last:0.5796473723230937 This:0.11629217558407413 twelve:0.08068415205920017 last:0.05430435823215949 :0.16907194180147245 +capital:0.7711386312009065 and:0.16350096919329737 while:0.017135057321476035 or:0.011116622449654496 :0.03710871983466555 +in:0.01796562708348388 and:0.00609247060609884 ment:0.005996475487353567 In:0.005930137906015616 :0.9640152889170482 +highest:0.029322823245358707 \\:0.023677258099792844 world:0.022678020112744123 State:0.018831654189196523 :0.9054902443529077 +the:0.16327958745534032 and:0.1323015699412833 of:0.11829802712672235 The:0.0956846601930577 :0.49043615528359624 +Mr.:0.9999641182455545 the:7.209760738351055e-06 he:4.280016300948338e-06 to:4.135357688316732e-06 :2.0256619717766816e-05 +or:0.9951154595105389 par-:0.0005767643569067638 par:0.00014000216882003891 the:9.523428719868153e-05 :0.004072539676535588 +and:0.04531738160494042 M:0.014118127185475894 S:0.012927281801619601 as:0.007364048920686349 :0.9202731604872777 +and:0.02501826865531114 full:0.010271054913124265 of:0.009677835972482446 out:0.00960234338364765 :0.9454304970754346 +were:0.2220226927045397 are:0.18745978614746062 want:0.15182787674732512 must:0.10608360096236052 :0.332606043438314 +of:0.3035861636159993 and:0.12363712010543262 or:0.0825989948223947 the:0.0651177999362846 :0.4250599215198887 +and:0.5132040399002851 men:0.029152209592093203 is:0.009342327610412192 that:0.0074963333435212436 :0.44080508955368825 +particular:0.23628818095784562 a:0.2219029291071512 the:0.1524632169154834 A:0.07754493491542952 :0.3118007381040903 +and:0.21546810895439816 to:0.15411398850789904 who:0.11604875016298825 of:0.06484242031749526 :0.4495267320572192 +no:0.6617547167530322 a:0.2486297530522359 the:0.04583277563115574 only:0.01625444424127899 :0.027528310322297207 +bonds:0.8244853775852685 object:0.005872832929196355 good:0.0030905123196462827 enemy:0.0024301232843770685 :0.16412115388151174 +of:0.109332707383599 and:0.06404763760557908 the:0.057621954979088945 to:0.024473537871015315 :0.7445241621607178 +in:0.2727988746253692 not:0.07221837612727178 on:0.05423921268440464 a:0.04733527429003117 :0.5534082622729231 +not:0.07603250486039971 history:0.05290586782965695 it:0.042419438284341665 what:0.02030446084147335 :0.8083377281841284 +of:0.7370898596259794 be:0.10373278813194703 and:0.014992184703349969 the:0.010705848223072347 :0.13347931931565118 +as:0.04556382049012723 lay:0.02681255142401521 lying:0.01962422549338069 arrived:0.01890760062729412 :0.8890918019651826 +into:0.42724802930986355 to:0.2417581291766576 with:0.14066668815124722 Into:0.10419469761963653 of:0.08613245574259507 +of:0.36403577720928654 received:0.1004067612443043 from:0.09485861254773807 and:0.09142187682215355 :0.34927697217651743 +laid:0.049028784650870974 line:0.03895670375511848 group:0.021989988180334024 h:0.018350788263075807 :0.8716737351506009 +girl:0.15748258787788538 world,:0.10376784447392498 child:0.06286388893855813 soil:0.05961396090941395 :0.6162717178002176 +balance:0.03644338432137521 other:0.03405062093966196 people:0.014700986323296115 manner:0.012534283523434045 :0.9022707248922327 +he:0.6443224454453735 it:0.12589501065236824 she:0.1154589421175693 there:0.06851604327200832 be:0.045807558512680646 +attorney:0.09460297261904854 governor:0.03257599824528578 same:0.008491201537936708 next:0.005368432512443656 :0.8589613950852851 +of:0.9794229381543617 in:0.00922944890731645 and:0.004021834379809112 which:0.002662368323093756 :0.004663410235419067 +gets:0.6501977169832014 of:0.06922800266251987 ol:0.06171304937801204 hut:0.04244970991959154 :0.1764115210566753 +number:0.2667281408486283 amount:0.16577741389925404 degree:0.1323488611454322 variety:0.12669781968176505 :0.30844776442492045 +hour:0.9961867454426135 long:0.00023264846948966436 advanced:0.0002083251569973167 years:0.00018137709441381383 :0.003190903836485662 +see:0.17610708032812336 say:0.17200060834444036 believe:0.10667903016136046 find:0.10630748015099661 :0.43890580101507914 +this:0.4592565125461237 no:0.3374158882961428 that:0.10044999544040759 what:0.052001738078274205 :0.05087586563905166 +are:0.9695921912977377 have:0.002185472466363197 a:0.001438679245459817 the:0.0014368725881890474 :0.025346784402250265 +that:0.5098863542251079 of:0.12716263236578118 ing:0.08491167800144392 and:0.08377345976743564 :0.19426587564023132 +be:0.5768441149756205 firm:0.12042641692781315 which:0.11130568564061545 had:0.07401689758475974 :0.11740688487119129 +to:0.10263856837617065 are:0.08315059839886234 of:0.04065775446503619 even:0.025151674674200923 :0.74840140408573 +advance:0.05074594000654808 regard:0.038211875373522164 ground:0.015497497704932377 of:0.012912576800096685 :0.8826321101149007 +walk:0.9922844461824831 on:0.0025381649116561497 for:0.0016800015116065767 though:0.001398733575065865 :0.0020986538191883233 +a:0.9558007021276447 the:0.019734323633769355 A:0.008284996025627314 i:0.0028439787637162465 :0.013335999449242414 +feet:0.4894741470733631 inches:0.11709929663325248 miles:0.09497887848961377 millions:0.017991696081411587 :0.2804559817223589 +and:0.07559168786821358 of:0.047871750315744505 the:0.039009293968826284 to:0.02077478912552829 :0.8167524787216873 +the:0.16005859049800727 to:0.13506954908656305 in:0.12135130565298369 for:0.1129704030575944 :0.4705501517048517 +It:0.18951823896163644 which:0.15852127139334138 and:0.09384055835668878 it:0.0928180408476734 :0.46530189044066 +the:0.37782385598726514 a:0.05896819816731787 50:0.020018361135690797 tho:0.018220517404288004 :0.524969067305438 +may:0.45612026681844975 would:0.32985045445278066 should:0.0889310665906083 by:0.08886914803236218 to:0.036229064105799076 +is:0.18724563929622076 was:0.10173558985597071 now:0.05262892702879332 formerly:0.05062558918694239 :0.6077642546320727 +the:0.2665839742224931 Van:0.06808744451991008 White:0.05625269089137243 Fort:0.055577004148511765 :0.5534988862177127 +the:0.20068632589640878 i:0.05504339793613118 North:0.04874000294870019 New:0.014034650993705945 :0.681495622225054 +head:0.13793290512989304 head,:0.036592502073817104 face:0.03621448273634101 clothes:0.019379452517116612 :0.7698806575428322 +I:0.16262382232208664 a:0.13629089012546672 The:0.0840400591609761 and:0.06840498928147834 :0.5486402391099923 +of:0.21272265195845058 and:0.11135845681658425 the:0.0425899321690583 The:0.02947817606717574 :0.6038507829887311 +not:0.2438238382031457 the:0.17303711953553408 a:0.14294070517789362 when:0.1208653637208473 :0.3193329733625793 +and:0.3761963965241955 in:0.23860451200268587 or:0.13750749168066487 on:0.1245727480322317 :0.123118851760222 +him:0.968484814475182 the:0.009934235298270446 of:0.0033671563863049976 going:0.0010019394868265522 :0.017211854353416052 +single:0.332058567957522 the:0.10372938760053553 particular:0.09961244811034133 private:0.07302934677065982 :0.39157024956094144 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +but:0.31426103728080745 is:0.21017214911547283 and:0.15445124203860247 that:0.0604158970259353 :0.26069967453918197 +and:0.5399275844707762 off:0.21131735641341384 at:0.12418035027262664 in:0.08378288716501046 In:0.040791821678172996 +of:0.5903912145136347 by:0.07911004104963724 for:0.053310404082567396 from:0.05169470464014769 :0.22549363571401287 +to:0.06215072878808941 the:0.043823345942223424 and:0.04344301930808742 of:0.03300097218490186 :0.8175819337766979 +of:0.40897912227090955 to:0.18768537373756958 as:0.08571221146949641 the:0.05550636935798616 :0.2621169231640383 +and:0.19730509873276433 has:0.06435376801230853 proved:0.041794953171810846 seemed:0.04084433782985883 :0.6557018422532574 +not:0.2180507229396093 of:0.10557873364111027 also:0.10094421420699928 in:0.10069662140742715 :0.474729707804854 +the:0.15282893591174251 American:0.11182414603179006 in:0.05540666594285423 are:0.04754544130277079 :0.6323948108108424 +He:0.643491385294996 It:0.20365541071270712 There:0.060349197656288586 That:0.018973389867510376 :0.07353061646849801 +carried:0.4302687574404082 placed:0.022460776006984564 engaged:0.019911680077881883 not:0.015377183506902278 :0.5119816029678232 +he:0.044837669840078316 it:0.033562556784959625 ho:0.004148988564123951 she:0.003215839713939101 :0.914234945096899 +would:0.8172818378036343 will:0.10700629479441433 to:0.02390599716323835 and:0.021695369967605606 :0.030110500271107205 +did:0.7470885878241486 does:0.21811049191708026 is:0.015053706421627393 could:0.008356169043490425 :0.011391044793653247 +and:0.2457646667300775 where:0.10353247341763942 that:0.08515657565008809 but:0.08471324157815024 :0.4808330426240448 +her:0.1946877105255934 soul:0.1681982816736606 heart:0.11647974289694432 In:0.0920431150407327 :0.428591149863069 +northeast:0.3511132950481183 southwest:0.28578702269666445 southeast:0.2138595368002503 northwest:0.08741594976224817 :0.061824195692718756 +of:0.32435307732832425 took:0.1780462154097495 and:0.07932059781663782 beat:0.03143619052128463 :0.3868439189240037 +the:0.0644120345659994 ran:0.03470680072193751 and:0.028626757642503307 my:0.02838491449372167 :0.8438694925758383 +the:0.4388871726319669 dark:0.17704850680436607 my:0.01675066923050774 his:0.01167839276100484 :0.3556352585721544 +country:0.3261642292252976 1:0.09351684450077706 bill:0.024639687814482586 county,:0.023714281270621872 :0.531964957188821 +possible:0.24246259462922748 impossible:0.12799839290017093 necessary:0.12661278588434474 not:0.04125454808981741 :0.4616716784964394 +good:0.060848631454598234 few:0.03722688945077174 bill:0.032811597637610934 colored:0.028080621889593906 :0.8410322595674251 +of:0.9976644044134676 in:0.0012378369288356499 for:0.0005627067922986329 ot:0.0002450031375669059 :0.00029004872783134754 +top:0.028785956495628835 end:0.026693544031028353 people:0.023763020212850792 extent:0.020111832646898815 :0.9006456466135931 +of:0.09755386769463611 or:0.012044588983519788 large:0.008708296537334669 in:0.007842637744825257 :0.873850609039684 +tax:0.6504565456075541 work:0.02703544549438158 one-half:0.012852650800776109 taxes:0.009462534851946269 :0.3001928232453419 +the:0.5777981413949839 these:0.07722209342315015 this:0.06832407475367343 all:0.06636010546942828 :0.21029558495876424 +as:0.5904215076597152 that:0.16701499677953469 time:0.0862997236742402 time,:0.04646440382313989 :0.10979936806336998 +not:0.07473878399285103 being:0.035852923853687664 also:0.03115492442246211 made:0.026222637647008787 :0.8320307300839904 +be:0.5808283876680095 the:0.22033548237822942 seem:0.036232239126910266 do:0.02743575142558795 :0.1351681394012629 +strength:0.8234646651762996 her:0.12658678632150977 the:0.017804583362465088 like:0.0114232494106057 :0.020720715729119862 +25:0.36472908796158976 about:0.09664863423428793 10:0.055800077490061925 the:0.03902361381724834 :0.44379858649681203 +the:0.9275151162049735 a:0.06859600325035711 tho:0.00092006946831158 this:0.0006852659499905343 :0.002283545126367212 +in.:0.053189200994108225 born:0.03090488056068112 it.:0.029473545823498534 a:0.0151383211400104 :0.8712940514817016 +posed:0.8332553468467927 appointed:0.01237869953101443 covered:0.0030355995138408366 satisfaction:0.002616856513621982 :0.1487134975947301 +tion:0.01844056294280626 and:0.012256036699883602 company,:0.010048209113080096 ple:0.008759217164042788 :0.9504959740801874 +been:0.6187097838171656 a:0.05349516093754104 no:0.044063554489711984 the:0.03955711911974464 :0.24417438163583666 +and:0.1390519018140373 is:0.09558815063857927 the:0.07691525777630759 No.:0.06527555398447712 :0.6231691357865987 +somewhat:0.635734187039794 a:0.0064814449493732175 little:0.002037730037420371 the:0.001874164195437808 :0.35387247377797476 +light:0.14723321715036977 house:0.10116056167614419 statement:0.08844252525099051 law:0.020419922594712578 :0.642743773327783 +that:0.4258657340729295 if:0.08163882398933521 to:0.04831907675280937 when:0.03571054853730248 :0.40846581664762327 +ment:0.059428443716104666 thought:0.04014996669702624 out:0.036491768874376926 feeling:0.0361437233214747 :0.8277860973910175 +the:0.14966042108986366 a:0.09031834382565655 in:0.03616066481873532 made:0.029531689464099446 :0.6943288808016451 +being:0.21005995681147052 con-:0.15499334549817928 not:0.14762127179875997 too:0.11370803985067927 :0.37361738604091105 +and:0.17767152619063478 of:0.057848713565993894 the:0.054933130937777665 or:0.05005734017209933 :0.6594892891334944 +day:0.5528514334991605 Mr.:0.19535800115401272 and:0.12149126899518028 to:0.09182954555726809 ly:0.03846975079437836 +together:0.1001225156373971 bed:0.037563134062704624 hand:0.0358216544836968 room:0.03307955057403775 :0.7934131452421638 +do:0.06301897575798651 .:0.055398130782213985 will:0.04264601476722293 did:0.04068967695209741 :0.7982472017404793 +will:0.2485147278631328 could:0.2122526493176063 may:0.20929545820656345 can:0.14588517104910717 :0.1840519935635902 +to:0.8826577600577205 on:0.049708864413529924 in:0.031632066303725004 of:0.02708269146003858 :0.008918617764986045 +and:0.12787205764501003 of:0.12166447457797772 the:0.07331306213660564 to:0.04105070824928466 :0.6360996973911218 +great:0.174937400860048 large:0.026104506728190247 small:0.01839428433324339 strong:0.01776012774207424 :0.7628036803364442 +tion:0.17131825232559597 ment:0.1192877715929322 and:0.03627518858630612 tions:0.023184699503840486 :0.6499340879913252 +party.:0.00891674867446609 country.:0.004894183918811007 life.:0.0037353001375932593 way.:0.0017282505340631344 :0.9807255167350665 +and:0.14093061265854928 the:0.1090383807857595 of:0.08947708648920681 The:0.07604065570429376 :0.5845132643621906 +protect:0.3932504778374479 maintain:0.14565329354165615 secure:0.10921434288806382 obtain:0.021200393976995087 :0.330681491755837 +love:0.0774478138979223 -:0.04385484525373301 the:0.01884169242878004 I:0.012342697882324644 :0.8475129505372401 +these:0.06900341102445717 who:0.04875656466111842 the:0.04427413351699563 which:0.04416421337414899 :0.7938016774232798 +ber:0.5575320257325219 without:0.25676850817630986 with:0.06274075066909035 and:0.05905628273006765 :0.0639024326920103 +and:0.18233400406789094 the:0.1093558020772675 of:0.05041663500438107 The:0.04508357041738807 :0.6128099884330723 +variety:0.10655743099254339 certain:0.01675921333382981 one:0.010905745406456502 some:0.006491954964917839 :0.8592856553022524 +pain:0.15961817924152408 long:0.07372793211454425 loss:0.02426708459584908 want:0.020300729504764237 :0.7220860745433185 +thing:0.16148076252865307 things:0.10824649622559879 points:0.10733859199026285 places:0.10618993559213413 :0.5167442136633512 +of:0.4020991167042448 and:0.08964041487405883 the:0.04768283259365328 in:0.04405769376581566 :0.41651994206222737 +accordance:0.2972324994659843 connection:0.07684135430267702 company:0.07108175855215293 love:0.03872561436413099 :0.5161187733150547 +Carolina:0.05982647475928273 Dakota,:0.047206385521486996 and:0.03012538213577935 of:0.02303052770879893 :0.839811229874652 +are:0.7814910388976748 those:0.03503011341652893 was:0.010764172085607723 the:0.007134564476820637 :0.1655801111233679 +the:0.8024695685052166 a:0.16109991456272993 tho:0.01040204108029021 tbe:0.003405800824615228 :0.022622675027147956 +few:0.24076423017138296 short:0.16058694251925235 month:0.04243470472061868 small:0.014703164624989242 :0.5415109579637569 +and:0.827955471137216 but:0.01819791600478626 that:0.016984151371435708 yet:0.015265340067847686 :0.12159712141871412 +heard:0.15561497596477902 plenty:0.0818823365806471 said,:0.06855896945227208 had:0.049384726202458804 :0.6445589917998429 +.:0.65014229207355 A.:0.006758463437852438 the:0.0005485127317808945 of:0.0004437354887159156 :0.34210699626810076 +the:0.38741049302774594 this:0.19796357198594897 that:0.13708477945317624 North:0.10534950758990527 :0.17219164794322375 +could:0.42597108579763837 are:0.2914942826220578 can:0.11145475996592613 need:0.09596488582546242 have:0.07511498578891529 +the:0.1897393949994178 and:0.08306014014304312 a:0.05010048549619644 The:0.03626824077776169 :0.6408317385835809 +open:0.032056374755161925 of:0.028748600630643443 and:0.007410304918684809 to:0.0034723201633207216 :0.928312399532189 +supplies:0.13068809176287147 time:0.1207922026046712 property:0.10724211939968294 lands:0.10221386234102284 :0.5390637238917516 +the:0.2354427171504327 to:0.1016070606988435 thirty:0.0735014481754915 your:0.04614226821666954 :0.5433065057585628 +House,:0.21179691301202577 commission:0.04585916186948134 people,:0.04522404090030152 court:0.04511079362180831 :0.652009090596383 +farmers:0.09488449561284111 country:0.06066118293222804 States:0.017933885079994275 so:0.009828387545106032 :0.8166920488298306 +a:0.5676139900859876 of:0.08104679487206129 and:0.07379802662829937 the:0.04766000715539661 :0.22988118125825527 +Wm.:0.05511766872285456 Frank:0.044119601576832604 I:0.031960692979274875 James:0.03180664586239454 :0.8369953908586433 +Board:0.3115486509983472 Department:0.02631137451764606 B:0.005323450898387634 provisions:0.004992596067966603 :0.6518239275176525 +The:0.2650299928532267 or:0.2027574665724177 and:0.12623270548038817 of:0.07975541277984918 :0.32622442231411813 +of:0.2996664350804226 to:0.22557227725691936 from:0.1379090035399539 and:0.13063665875966832 :0.20621562536303564 +right:0.04295402624848224 time:0.030950707411621387 city:0.022771028429744468 way:0.0182812172509451 :0.8850430206592067 +acre:0.1601110092237208 original:0.1405994198876846 ex-:0.06396409260380974 ex¬:0.04180335890872106 :0.5935221193760638 +the:0.21367468246296126 of:0.03806643632508232 a:0.036727405383520685 and:0.03081109181223634 :0.6807203840161993 +and:0.986051644516855 thousand:0.002535848641469186 aud:0.0018811133438096626 men:0.0004316044489464455 :0.009099789048919608 +been:0.6945980475704194 the:0.09268253572505968 The:0.03518474392002122 for:0.016519855513000888 :0.16101481727149883 +sale:0.97195286770406 sale,:0.0035129150376816774 sat:0.0014322817617886375 safe:0.0009713640057210828 :0.022130571490748464 +protection:0.35276544475556215 chance:0.05089992481621077 one:0.008473385882999765 information:0.006843145547053453 :0.5810180989981738 +the:0.3805128620659048 The:0.11759331965318097 his:0.09821614231788482 His:0.07628524393972838 :0.32739243202330104 +now:0.1382436171740095 still:0.058879211993825134 republican:0.05594499045788461 payable:0.04943433571839136 :0.6974978446558896 +and:0.037617480241987224 the:0.03574963451323961 The:0.024663699847521068 of:0.02238837290448265 :0.8795808124927694 +the:0.9894872962453115 tho:0.0008818884756101708 The:0.0003071150425748465 of:0.00019804287012050996 :0.00912565736638311 +the:0.06022583503920954 to:0.01923128845095739 of:0.008995220714757462 may:0.00881031866890611 :0.9027373371261694 +and:0.11200696758540143 the:0.09893696710544468 of:0.0899605751108329 was:0.08454284734391287 :0.614552642854408 +by:0.7702824061205543 and:0.08115638905892271 the:0.0605702606668577 of:0.03498168235624772 :0.053009261797417606 +the:0.9298124919499234 a:0.036365539703679915 tho:0.019075640351461365 Ihe:0.0020958882947571633 :0.012650439700178328 +range:0.09708649039010923 plenty:0.08818604750060917 state:0.05159334678234071 waters:0.032401241242214725 :0.7307328740847262 +the:0.9414711874505065 tho:0.007295525165544588 my:0.0053771944737976175 that:0.004789276281007129 :0.04106681662914415 +and:0.28151010734037296 that:0.17431982165412024 but:0.1488881201631168 But:0.06913261797423813 :0.32614933286815195 +a:0.26034229212045307 the:0.16478770641696597 of:0.10029838121105428 The:0.05112948846862466 :0.4234421317829021 +quickly:0.02198120807581572 than:0.004421007359007951 as:0.003987197515990134 money:0.0031643661745055797 :0.9664462208746806 +and:0.3151507284097872 to:0.16897051866590734 ting:0.1446788556084036 of:0.07773189458212201 :0.29346800273378004 +seen:0.0006782365114991793 directed:0.0005617362190741901 not:0.0003766030230015308 going:0.0002246059201760375 :0.9981588183262491 +Into:0.7681322712902567 the:0.05118063555564471 a:0.010463381432500347 your:0.006286183578269302 :0.16393752814332885 +ago:0.36207087617086736 old,:0.19397614055965834 as:0.04751036849056765 of:0.0231006555730118 :0.3733419592058949 +the:0.26770951392570136 Mr.:0.10471231886035051 very:0.08829157448494362 he:0.07831739906498021 :0.4609691936640243 +of:0.2058834978677486 by:0.14579207210713063 to:0.09827641198955839 and:0.08884615674335482 :0.4612018612922076 +at:0.28961775901911296 that:0.24297630073324805 and:0.23590260610348765 of:0.18399539112287364 :0.04750794302127765 +to:0.9989668471759842 and:0.0004773813700902335 will:0.00014510434112253122 would:0.00010727143782945015 :0.0003033956749734809 +the:0.9655845491024777 this:0.011874553531926827 Ihe:0.008897409539177404 tho:0.0054947914377156135 :0.00814869638870252 +of:0.8976602175269448 cf:0.024991536677754587 by:0.02374145125993082 Of:0.012884892943040642 :0.04072190159232914 +the:0.8181815382672721 tha:0.03853380706892197 tho:0.032727730692411944 a:0.031368663442775245 :0.07918826052861869 +a:0.2050302158966435 the:0.06045717102137146 Mrs.:0.058829854386777874 an:0.04466452970019942 :0.6310182289950078 +the:0.6287888428382173 page:0.0998812843232584 a:0.0699320345366502 tho:0.03652242726317506 :0.1648754110386989 +of:0.14801522753336915 the:0.1429965953347603 his:0.07861880974815415 in:0.07812209788435788 :0.5522472694993585 +and:0.26777877851522447 of:0.1635430082140341 with:0.1015868736283143 to:0.0837258190452849 :0.38336552059714213 +approved:0.023296542732232167 important:0.013081705659418347 perfect:0.013011485841767659 of:0.01171763873920071 :0.9388926270273811 +the:0.0972342815124906 many:0.05531958166233312 certainly:0.054109654828979385 South:0.03267116210366143 :0.7606653198925356 +think:0.4239267826719145 thought:0.22341135581832547 speak:0.14140571048689235 bought:0.08398149513395554 :0.12727465588891212 +The:0.3371943900986863 My:0.18350163690727178 the:0.15250931504819948 Their:0.14779244430548347 :0.17900221364035893 +to:0.9971324904572366 lo:0.000896561913002866 10:0.0008173136693707966 may:0.00040058177083404287 :0.0007530521895556183 +his:0.19182249439642562 its:0.1665015924294252 a:0.12270422596095701 their:0.11913552544775402 :0.39983616176543824 +believe:0.25862045890968427 him:0.08528196680028005 notice:0.07002173575364433 you:0.062462541503838245 :0.5236132970325532 +of:0.29544859203565715 to:0.11811569039107 in:0.11318316798007488 and:0.09686913667310895 :0.3763834129200889 +tract:0.5858441319934701 deed:0.03320587873853504 means:0.028327773048533737 result:0.02098768571823046 :0.3316345305012309 +hundred:0.93684683184544 dollar:0.0007441425146554551 of:0.00021941629653700882 side:0.00013944455108461857 :0.06205016479228278 +from:0.25570557233103614 while:0.2090074497896511 toward:0.19118410583409295 after:0.17776542001606924 to:0.16633745202915048 +the:0.03965418187503385 him:0.011688165119672958 them:0.006671092613683931 it:0.006235872911656321 :0.9357506874799529 +own:0.3455725716655549 natural:0.07118030352784473 new:0.03450396804215233 respective:0.0334054246436296 :0.5153377321208185 +to:0.39466506104876603 will:0.25051340297275465 and:0.178759602687333 tions:0.09033010419700803 :0.0857318290941382 +per:0.16350659582651259 the:0.14294796882065147 their:0.12337552836799205 her:0.06688319953745503 :0.5032867074473889 +done:0.21533847344351198 with:0.14946798732410493 closed:0.14234012913978242 been:0.11015784819366317 :0.3826955618989376 +and:0.11791402613406586 the:0.08477055953904908 of:0.07338507572999617 a:0.050778659751133555 :0.6731516788457554 +the:0.7873644281350163 every:0.050487111387237 said:0.04557029807398191 tho:0.025985497677650186 :0.0905926647261148 +and:0.06563179745566024 was:0.015100332627618866 is:0.013731628386402472 or:0.010541681575383445 :0.8949945599549349 +the:0.42731514350356425 not:0.08016439928722172 a:0.06665448798000156 all:0.03982681496614789 :0.3860391542630646 +W.:0.10194990919188077 H.:0.028141612758466758 O.:0.017610477252943686 F.:0.017594328699845483 :0.8347036720968632 +ac-:0.7415411277124205 a:0.015842061952309538 Texas:0.0025667588022395948 the:0.0007198249312647519 :0.23933022660176584 +longer:0.20841648013511496 aad:0.09901989514022971 in:0.04522837584219687 if:0.04362804169832021 :0.6037072071841383 +time:0.9513386927633292 three:0.00041521364755909337 one:0.0003351929985644155 lime:0.000334250779439584 :0.04757664981110786 +in:0.03882021227617352 ;:0.012864031675796387 ing:0.012436602756385093 the:0.011952830679606525 :0.9239263226120384 +country:0.07827969983070353 way:0.03145319278529566 answer:0.03014469962998974 attention:0.028327094408825585 :0.8317953133451854 +and:0.03033618143392441 plenty:0.028373643265131882 play:0.02314447784021638 out:0.022667724851245276 :0.895477972609482 +if:0.85880751123747 should:0.019572113985209208 then:0.012471621773838345 it:0.009906956975707903 :0.0992417960277745 +to:0.7800959436392367 in:0.10546656698622162 into:0.06418906514096542 by:0.03373024145712896 :0.016518182776447086 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +four:0.9394345626049987 one:0.01316371868706679 two:0.0108233598733909 three:0.0037232765450753345 :0.032855082289468325 +the:0.8957524145211474 tho:0.09184053649568234 in:0.0019137056894339714 of:0.0017759336933470696 :0.008717409600389116 +iu:0.30971146263314486 in:0.20374495291037042 to:0.14734460513931916 This:0.09679036867566994 :0.24240861064149563 +of:0.40549639752036826 by:0.1550694313768865 and:0.13872191738887205 to:0.07027886496544211 :0.23043338874843122 +leading:0.2912786383762077 shall:0.11286526317726647 and:0.04170978374923503 er:0.02819523345091807 :0.5259510812463728 +up:0.4590695119094626 by:0.13535585922747362 of:0.122520597844871 for:0.0890901428583876 :0.19396388815980506 +and:0.015347215850965903 character:0.00921424428745104 in-:0.008100123058076966 per-:0.006112098004390628 :0.9612263187991155 +excellent:0.05886565710709528 la:0.0567151828859755 the:0.04752111670125557 early:0.018337570566433283 :0.8185604727392403 +said:0.1412709988195416 ma-:0.02719079938385938 fol-:0.02582931463568924 of:0.018724322027601176 :0.7869845651333087 +come:0.8745382933031152 agree:0.042272328645056395 attend:0.022991696201387787 go:0.011805389767735958 :0.04839229208270473 +of:0.30392494650659463 in:0.15682247709609135 to:0.12243399602709111 and:0.1153458496518129 :0.3014727307184101 +of:0.3604916324405185 in:0.12390240127355301 and:0.1147045406134064 to:0.10990150516408041 :0.2909999205084417 +road:0.21388366109114282 room:0.16983708450009327 box:0.060046118234186915 house:0.04454850533309674 :0.5116846308414803 +know:0.3184783378295378 believe:0.18624598473658086 think:0.11249993803516443 say:0.07048103744416837 :0.3122947019545486 +is:0.16565465186891581 goes:0.14080875323868877 seems:0.09347094969103367 failed:0.06777942395428882 :0.5322862212470728 +from:0.6648570152555813 above:0.15288787936457218 below:0.11310644692997354 to:0.05355830796516363 in:0.015590350484709449 +the:0.5870276254546948 his:0.0644502128339251 their:0.041050454946155626 a:0.027939515910321358 :0.27953219085490316 +he:0.09292653318332211 the:0.05184657072882915 lie:0.04458468026270754 .:0.03018658109810305 :0.7804556347270383 +served:0.03948195808741791 opened:0.01371607543028375 placed:0.013265151606055518 moved:0.006187602261905768 :0.9273492126143371 +mark:0.38327232555554686 location:0.06517668202400878 attack:0.059845442513165786 one:0.022838767934605445 :0.46886678197267323 +on:0.4804034726135391 from:0.20000853594733495 in:0.1454608558960861 upon:0.07558399737642876 :0.09854313816661112 +e:0.07575336217353708 when:0.022127665423513427 and:0.011578171419237261 the:0.007375920985677234 :0.8831648799980351 +the:0.14779027585602303 of:0.11350816581048968 and:0.09749554270430263 that:0.07587436163298318 :0.5653316539962014 +Mr.:0.7553661039187015 Dr.:0.11826537932908461 G:0.01950471552537297 John:0.0008615387363476959 :0.10600226249049319 +half:0.27353170760950907 of:0.27275142285568943 about:0.15545683752668987 White:0.03500446375772878 :0.2632555682503828 +the:0.574360292211959 said:0.2848097999914586 aald:0.025704679188365227 tho:0.02222420384051597 :0.09290102476770117 +me:0.7045538129437503 that:0.10896584746010982 him:0.051919962646082896 them:0.028152878492890967 :0.10640749845716618 +of:0.3074509542949718 in:0.08537776573256224 and:0.05343868466310125 to:0.04995836563381745 :0.5037742296755474 +was:0.6306033070590266 in:0.17736243973816113 and:0.050767012808331756 of:0.02759336247482604 :0.11367387791965457 +of:0.20442046907717132 and:0.1099457473424881 the:0.04955385571401264 to:0.03209382161027976 :0.6039861062560482 +sum:0.06139912600276697 scene:0.030368511646381182 City:0.026647216438300023 loss:0.02626495419874263 :0.8553201917138092 +will:0.420837963985314 is:0.2453095250909949 was:0.08887182225734358 soon:0.03995266058469978 :0.20502802808164763 +of:0.2856116873061852 and:0.08464847439994838 or:0.07774520390151782 to:0.07246526022297885 :0.4795293741693697 +ha:0.2555099537803256 e:0.02409199245535986 i:0.011568523081570827 a:0.009794118749501554 :0.6990354119332424 +Notice:0.6966536964636272 notice:0.1548829926648689 It:0.019275263175630258 and:0.017961219810867752 :0.11122682788500601 +by:0.683261642705026 in:0.1625154586875966 bv:0.09849978676026326 on:0.04312839036440231 to:0.012594721482711723 +and:0.19830430201961813 of:0.0652671149820995 Miss:0.03852631147137645 to:0.030272140829971875 :0.6676301306969339 +only:0.11670528636605272 up:0.0990425329691434 but:0.053617220900177065 and:0.053118209884512116 :0.6775167498801147 +to:0.9873563216796044 a:0.0037440666424152476 no:0.00214312550221337 the:0.0020156877192113783 :0.004740798456555502 +say,:0.29191902848283513 keep:0.2545982861129425 the:0.14827116983574762 as:0.09230015115883392 :0.21291136440964079 +the:0.9121899417746246 tho:0.04601362042503015 tbe:0.01828787069270376 tlie:0.0029209385699308053 :0.020587628537710626 +of:0.20322841266712274 was:0.13992033683507527 and:0.08440616975294038 is:0.06047676310109094 :0.5119683176437705 +Senate:0.2721296995453261 House:0.08970284805403185 house:0.04604007951707408 committee:0.039604702204594035 :0.5525226706789742 +of:0.3716423298948591 to:0.10846711514293132 and:0.09518815764773718 for:0.08404229891431132 :0.34066009840016104 +federal:0.6870358266307945 general:0.04993467669832835 General:0.04814817985995815 Federal:0.04668474169732987 :0.16819657511358913 +It:0.31280299141623424 as:0.1341094888491214 This:0.12141710838124598 He:0.10849759381589955 :0.32317281753749894 +most:0.02286676925847578 the:0.017468677349747476 said:0.014242284051369899 United:0.013776754295683508 :0.9316455150447234 +and:0.26541282980533765 the:0.10534573866183465 or:0.06359930863438407 The:0.056037998152073644 :0.5096041247463698 +a:0.08673722507927777 the:0.07910887985317079 so:0.05673875613592408 in:0.035960666970292085 :0.7414544719613352 +of:0.6504250655062559 and:0.07594682661351318 in:0.03736834102374405 to:0.03716289443115123 :0.19909687242533552 +has:0.4814642854336214 had:0.288227775688268 have:0.12502657793752578 and:0.011074777481837115 :0.09420658345874777 +section:0.9873433851833673 sections:0.007952008744479015 land:0.00029895080325665046 all:0.00029730525936733234 :0.0041083500095297956 +the:0.19986801427159887 a:0.05140470165459604 called:0.04907792818916726 done:0.03602544743910372 :0.6636239084455341 +the:0.1348152643640928 and:0.10414476922038036 of:0.07410114653844983 a:0.03361806469639951 :0.6533207551806776 +and:0.32219735786686693 unless:0.12194954945904223 as:0.09200835942910998 although:0.08791910662397126 :0.3759256266210097 +presented:0.25602384330692374 received:0.1524258619119108 left:0.13369170029756783 furnished:0.06695122887507647 :0.3909073656085212 +long:0.9407603309057178 once:0.0016545877124349091 has:0.0006099862619351139 a:0.00030013549811891725 :0.056674959621793454 +in:0.3405808768743204 by:0.2725504350069022 to:0.1487921845497552 of:0.12821449663156906 In:0.10986200693745307 +or:0.5564770094656531 to:0.3888665309961382 and:0.03215997859328209 nnd:0.0029155130552326073 :0.019580967889693938 +the:0.5385658224879705 their:0.09225057732461255 this:0.0695835306086917 every:0.0655592830171903 :0.23404078656153499 +he:0.33417936487600014 to:0.13522391604432316 u:0.1312887548437428 certainly:0.12323855366403053 :0.27606941057190326 +For:0.6336421208452963 of:0.1665757948348509 ter:0.07999771570554041 to:0.061747146334648846 :0.05803722227966339 +the:0.6532306670814354 large:0.17618386029166747 to:0.029735280298770057 an:0.026862098710913045 :0.11398809361721396 +that:0.3135165934663873 by:0.09913507306801234 her:0.06761975043603144 the:0.05180632841318891 :0.46792225461637993 +take:0.7780446686039573 took:0.14988637024345278 kept:0.008287978266695818 leave:0.006267899636401626 :0.057513083249492614 +to:0.5389394995257967 will:0.14225338278429397 may:0.11269924465489126 can:0.09797010829309528 :0.10813776474192272 +colored:0.28875458512335944 of:0.04672416015115389 and:0.043171913999763764 the:0.023467088160939516 :0.5978822525647832 +no:0.49568104526686185 an:0.34702278718149876 do:0.04677561522197635 any:0.046402369551662645 :0.06411818277800041 +the:0.7702761588528672 tho:0.19185038338889213 our:0.006795717579350275 a:0.0054091632711260485 :0.025668576907764435 +any:0.4513486061429101 this:0.3273639525325976 so:0.18915584129007498 an:0.01840813143338318 :0.013723468601034199 +matter:0.8527086304107722 source:0.08001046487170385 subject:0.042287953833365206 day:0.0035131007698893375 :0.02147985011426948 +and:0.17536394374994604 The:0.12328141976346782 the:0.07457513997390196 of:0.05414470684096236 :0.5726347896717219 +going:0.24398914371465552 being:0.15254209811468766 the:0.13120511369042254 his:0.1028570329224322 :0.3694066115578021 +arrested:0.31231989990144965 given:0.23440832594478228 turned:0.07093882859730967 taken:0.05591722562398945 :0.3264157199324688 +him:0.05575615325316807 up:0.03391429934569589 us:0.030729870223670575 according:0.0284641165609224 :0.851135560616543 +of:0.5097077293865897 in:0.3782456133081646 is:0.06623395522118927 that:0.02671221649910437 :0.019100485584952205 +scene:0.11852073421416368 water:0.0543585096658385 heart:0.041636165199920715 air:0.026872874929907007 :0.7586117159901703 +said:0.2526723885024259 the:0.16999382139946445 lands:0.024819042529993448 a:0.02283816385856987 :0.5296765837095464 +is:0.1900607847173517 and:0.11503795045944536 was:0.10857158097825625 of:0.0932172956974077 :0.49311238814753905 +the:0.6172219487031826 a:0.2363814053379694 that:0.06265902942480275 true:0.012896030559776908 :0.07084158597426828 +or:0.22956044477980858 and:0.11961898909007287 of:0.056686274881708895 the:0.04211450244591788 :0.5520197888024918 +new:0.05887859607278121 same:0.05215566675065617 City:0.048465491575681675 United:0.04391229346519015 :0.7965879521356908 +This:0.16536872867797817 which:0.11595974963117375 that:0.09910161721873235 and:0.08763674063011562 :0.531933163842 +with:0.4281800268313398 a:0.24466191942175375 of:0.09314316393806463 the:0.07346856151562722 :0.16054632829321447 +which:0.18870393729257712 the:0.16009576734814612 by:0.1013433214268358 all:0.07232149049500053 :0.47753548343744046 +did:0.08970140024064037 could:0.04622902894152657 would:0.02907629692264662 does:0.019334112652726304 :0.8156591612424602 +which:0.15321711381564787 aud:0.1428321651479342 and:0.13262077795139068 to:0.07663897392115854 :0.4946909691638686 +the:0.2650488140481449 an:0.10936209637725557 his:0.017862210311079856 my:0.014799399845075077 :0.5929274794184446 +it:0.4390962446432676 he:0.18648080707982911 experience:0.09144282739271195 ho:0.07805719931776747 :0.2049229215664238 +a:0.08704146905763206 the:0.07065448846749794 asked:0.06059485199451876 very:0.04484630959943368 :0.7368628808809176 +r:0.5253048446944282 der:0.16579929000889967 under:0.1525611904103075 by:0.07404004724382914 :0.08229462764253553 +whole:0.9406477161230449 Southern:0.05242315578797851 American:0.003723537051433657 young:0.00058196760572977 :0.0026236234318131684 +the:0.41969428080682586 a:0.09058819161134503 this:0.03991913692427394 his:0.03335557537314127 :0.416442815284414 +the:0.39411436635834085 a:0.048752681145381754 tho:0.026097996972180217 his:0.019346955304851848 :0.5116880002192452 +years.:0.09559264818668081 days.:0.0020374447539682128 days:0.0014791123919804005 years:0.001464372135490526 :0.8994264225318799 +been:0.8058855548705799 a:0.06405620239034139 it.:0.05434685473056317 to:0.02785825157338686 :0.047853136435128535 +much:0.8338328342711706 now:0.03953431164118929 not:0.025888647145980714 far:0.018964487012313947 :0.0817797199293456 +of:0.30963208226293304 ?:0.032357713604069596 In:0.017965334025491757 on:0.017246378550820847 :0.6227984915566849 +they:0.5888234857650717 of:0.13540290523641754 and:0.12346788262839535 that:0.05516318937391253 :0.09714253699620301 +which:0.706380632314994 the:0.10502058567556913 our:0.06511688698176692 their:0.026428588062167562 :0.09705330696550223 +will:0.42433946918387405 to:0.3506269780302304 might:0.08835307962127643 would:0.07554298936265545 should:0.061137483801963585 +State,:0.09609923681805989 years,:0.01302062313077615 town:0.005507320970021254 building,:0.004645796312816705 :0.8807270227683262 +my:0.30319490274679967 the:0.2586480484354518 all:0.15441093988338014 some:0.08396491660945936 :0.1997811923249089 +of:0.8019359815045305 and:0.07942741425336546 to:0.03509236383807788 in:0.029499097604370944 :0.0540451427996553 +done,:0.3228985810380269 and:0.09705369741503518 him:0.08759217491170779 only:0.07901151714074789 :0.41344402949448217 +the:0.7699467141337786 a:0.09691093562376002 his:0.0408006801176151 tue:0.03568696263211537 :0.05665470749273097 +any:0.032892836645007556 parcel:0.017861193567506452 the:0.0162555531596025 more:0.014897621409927652 :0.9180927952179557 +be:0.9172675225882362 have:0.04848123702014434 bo:0.02515216386521411 get:0.0019902275958015273 :0.007108848930604057 +hands:0.21406117224237178 ground:0.15284264359436983 bread:0.06805848188259689 house:0.06623790707806222 :0.4987997952025992 +and:0.32682889678631943 the:0.1792702399391012 when:0.15631181089263022 but:0.06310495994788505 :0.274484092434064 +three:0.12791360971843477 forty:0.01050404368818496 ten:0.009417958638788776 thirty:0.006521369656286725 :0.8456430182983047 +of:0.9448117938653988 in:0.0406917551979667 the:0.007028245045941221 and:0.0034103476724501457 :0.004057858218243094 +and:0.029681766115526403 !:0.006033702468058505 land.:0.0051165313205024715 is:0.0035955231042667894 :0.9555724769916457 +of:0.4524374461187953 in:0.11145532665530393 to:0.0921760461698182 and:0.07915118169693475 :0.2647799993591479 +board:0.13915011198396993 the:0.01907910144076039 his:0.011547693015639269 in:0.005031386195509041 :0.8251917073641213 +and:0.2568730359689939 enough:0.04080115150228242 but:0.03460784211234175 speak:0.030074640578599553 :0.6376433298377824 +to:0.13002129523599698 of:0.08836788679968215 in:0.08326090758584147 that:0.053453656300832125 :0.6448962540776473 +t:0.26540701149550444 west:0.04149364797762889 reaching:0.005758364956177304 ahead:0.004365623349128837 :0.6829753522215606 +the:0.35614255688749785 that:0.2899128651482319 tho:0.25406706512659416 such:0.05203494773438574 :0.04784256510329036 +city,:0.3346146094163693 country,:0.2649199161020399 place,:0.12893742021485874 country:0.09135444285541196 :0.18017361141132035 +the:0.02447898275445647 a:0.02391449639190808 cent:0.020081934051591838 e:0.008442230281087119 :0.9230823565209565 +is:0.40128404433125253 was:0.3809158750037192 of:0.1320398450611038 is,:0.037000069301056975 :0.04876016630286749 +or:0.11804929670437915 and:0.05539822302433031 aud:0.040476857177878925 dollars:0.030445908940372378 :0.7556297141530393 +treated:0.07707753925281197 if:0.058400256134004506 and:0.017451520139018375 it:0.00888921660107654 :0.8381814678730887 +the:0.5508037091013291 a:0.10994508850824425 said:0.04376825935661037 this:0.03823037410261023 :0.2572525689312061 +of:0.60892007955963 and:0.06893005420808203 during:0.05827544648959692 in:0.05647994482693945 :0.20739447491575144 +been:0.5114159684085303 generally:0.16628986518577238 gradually:0.07604044255063876 largely:0.0423684580264085 :0.20388526582865005 +him.:0.021036439120337706 sea:0.0026865454244925347 ;:0.0026184437404311784 al:0.001855024303483041 :0.9718035474112555 +the:0.5950407282153052 an:0.1059937541785909 our:0.06600845492450683 tbe:0.033751397277972536 :0.19920566540362458 +a:0.7213137570204724 the:0.1701089068531325 some:0.05052120453636732 tho:0.02779949736585222 :0.030256634224175724 +page:0.8539052976288002 the:0.08900988930364648 this:0.005085431347418691 his:0.004062622088512616 :0.04793675963162199 +ple:0.10140563894447788 and:0.07412545773633514 people:0.0726538985845913 seems:0.06950450293978969 :0.6823105017948061 +fired:0.34620058944705046 that:0.017624098582664463 tired:0.00583482910578102 to:0.0047761103462132795 :0.6255643725182908 +intended:0.08670316034853791 agreed:0.06909288204540238 signed:0.02410446982973256 who:0.02083794081576992 :0.7992615469605571 +does:0.2959611619751641 can:0.28713755198048807 will:0.07408969772588564 would:0.05198858796208082 :0.2908230003563813 +been:0.26855424743738726 not:0.08221441557455181 a:0.05551410772017936 to:0.04134248337399755 :0.5523747458938839 +to:0.13498067864117783 .:0.05986532787445574 said,:0.0417153956921491 A:0.026081962827565704 :0.7373566349646518 +the:0.36856343626545296 a:0.23647676038581508 been:0.0882595289443358 had:0.0403451428621026 :0.26635513154229346 +and:0.20660373444238905 the:0.1419482621406335 of:0.12668505079202305 or:0.09740314266406325 :0.42735980996089107 +the:0.6334797522953335 life,:0.03669567997883227 a:0.034706981569066535 its:0.0308599534196101 :0.26425763273715763 +to:0.256083992144638 entirely:0.15170868264835696 the:0.1061784577661055 his:0.05201762304115717 :0.4340112443997424 +high:0.11901909802292562 Atlantic:0.02867165542262583 French:0.0244626143671525 North:0.013046811495875053 :0.8147998206914211 +the:0.8827271009497502 tho:0.04320520332151585 this:0.037333705764154464 a:0.020645598924587484 tbe:0.016088391039991927 +the:0.71220188791836 a:0.06443154026600352 tho:0.02829518112754543 any:0.01767922687676933 :0.17739216381132186 +the:0.17507843942066117 said:0.08743581303271622 It:0.04931682310884163 a-:0.020597038485940945 :0.66757188595184 +of:0.4252466525777742 to:0.09918269055359943 House:0.0857177954297503 is:0.0458214743216333 :0.34403138711724274 +in:0.17664611138104658 to:0.15776493729730004 at:0.0943006794333701 on:0.07265456959263257 :0.49863370229565074 +The:0.6359208848557374 the:0.11881889347671783 A:0.08425426050717084 Tbe:0.07428682693641897 :0.08671913422395479 +as:0.8423298265011491 us:0.04659381838820697 aa:0.02425867759344374 a*:0.01556986967890048 :0.07124780783829984 +exchange:0.11657785769260084 Republicans:0.0843929696298823 bill:0.07045642750871416 people:0.05104520992479532 :0.6775275352440073 +you:0.4645753249495991 I:0.14144706825581455 1:0.07212920240142881 he:0.07182185561251866 :0.2500265487806388 +Board:0.513446405190718 Department:0.05171133072560632 board:0.04817674756856949 Bank:0.03001081981296036 :0.35665469670214567 +of:0.2288017915825278 in:0.17649208290452476 with:0.15936599111359723 and:0.15199487902953013 :0.28334525536982014 +and:0.09472487012168639 regard:0.0920186908838835 the:0.06860202789197334 addition:0.04741496673873141 :0.6972394443637253 +of:0.46519014102074313 and:0.09395086939384503 the:0.07073635511497915 or:0.059271281272072936 :0.31085135319835977 +and:0.16082853726742624 but:0.05501578006947597 and,:0.035549080321975256 such:0.0302299321165398 :0.7183766702245828 +paid:0.4025540866636585 respective:0.17026393908141346 local:0.011620305820317698 foreign:0.007493823830566228 :0.40806784460404394 +one:0.14539566838978013 it:0.09505656912693389 as:0.08516731863054783 It:0.07641007299604598 :0.5979703708566924 +the:0.02053954905045487 wit::0.019590523677954018 him.:0.01679476107150885 it.:0.015392137885789222 :0.9276830283142932 +it:0.4090347659899096 him:0.16336400412657284 me:0.14122608885693455 wall:0.1184262163216197 :0.16794892470496325 +country:0.013050452832382514 country,:0.012095169707785167 people:0.010878831939414843 city:0.010333978210238641 :0.9536415673101788 +nearly:0.28375951524967025 once:0.08187836620481884 among:0.06119927457778765 times:0.035492939100021006 :0.5376699048677022 +who:0.26604040336343504 lands:0.22277864165995925 farmers:0.11194736431828595 They:0.10454820308825323 :0.29468538757006657 +the:0.02698992930184442 do.:0.0072867206548722745 us.:0.004668754971988434 it.:0.004266150914361489 :0.9567884441569334 +.:0.04527872750331105 the:0.010851756027729373 covered:0.00863180275846088 form:0.007130335171105551 :0.9281073785393932 +day:0.09836341622080941 tion:0.026491523616161566 line:0.01614132175259662 of:0.016034007363092306 :0.8429697310473402 +that:0.36762866312253983 are,:0.24398403662999918 until:0.16285193683716426 and:0.09950166366606482 :0.12603369974423198 +for:0.08997752795617872 together:0.0740152314229381 and:0.06592270128203119 ed:0.06271919776968621 :0.7073653415691658 +their:0.14852217417172703 the:0.14555971606345214 and:0.1260230273752063 to:0.10345592537831734 :0.4764391570112972 +the:0.31073480083792493 and:0.23594660598320225 from:0.18060706179738542 ami:0.0976901527591388 :0.17502137862234857 +of:0.5787567184052624 and:0.11050573692497044 they:0.06153320017825225 ;:0.040366432570746485 :0.20883791192076845 +He:0.29887181803982854 he:0.1736840127521931 and:0.16609683001358289 I:0.08865397222698913 :0.27269336696740637 +of:0.23905047087304473 and:0.17754949374325557 as:0.06357849150942713 the:0.05326593286193881 :0.4665556110123337 +time:0.06789742952547374 place:0.05185074722999357 purpose:0.026193153244719772 extent:0.024783136849354383 :0.8292755331504587 +;:0.04082628184106055 right,:0.027091199441264764 party,:0.015115826900979604 office:0.006257413153716934 :0.9107092786629781 +the:0.9999442161027675 country:8.757928054699695e-06 its:5.475810597803751e-06 a:4.078411511978275e-06 :3.747174706799722e-05 +side:0.7190274141670087 line:0.2658085342382602 boundary:0.005594328427637324 end:0.004015249413601277 :0.0055544737534924055 +States:0.5108124766432611 States,:0.32272775025433054 State:0.002775104145045091 State,:0.0026605332163345233 :0.16102413574102875 +all,:0.32290308659368816 us,:0.29167990813497 those:0.19448614580460463 which:0.10796627404840514 :0.0829645854183322 +persons:0.09545234041408054 people:0.03364499677516134 those:0.0202253298913828 one:0.02012563042401766 :0.8305517024953576 +his:0.4022879197829904 and:0.03733292435322509 it:0.023719551294455472 much:0.014306659654874798 :0.5223529449144544 +the:0.5078174703041777 a:0.08375164186024694 he:0.04093436147465168 Mr.:0.04085336615777667 :0.32664316020314715 +him:0.15687061902326632 them:0.133497025743037 and:0.07743282701771713 each:0.06531953702506008 :0.5668799911909194 +had:0.20158717045035204 is:0.19692135782940504 as:0.164657440144702 was:0.09781665024765217 :0.33901738132788856 +large:0.24223512234998854 The:0.2182083125518691 that:0.2094701807926389 His:0.16641036592274863 the:0.16367601838275483 +the:0.15697701787821078 all:0.1448619610092387 which:0.10654243049184298 of:0.05011969268860156 :0.5414988979321059 +one:0.037821646046570956 out:0.024662896513132856 and:0.024100681918256227 tion:0.01257016019905129 :0.9008446153229888 +of:0.2731251196312322 to:0.13765212736977817 and:0.1344955603418057 in:0.13038660747081376 :0.32434058518637027 +himself:0.8127094558882546 as:0.035390173270545285 is:0.005488077460283057 are:0.0032900019588779452 :0.14312229142203906 +growing:0.23119195209790303 least:0.1030802037046008 in-:0.08807782778485672 same:0.04837830875316636 :0.5292717076594731 +The:0.10024266279845082 the:0.056682464304342164 and:0.03447162376825184 of:0.03437012119119912 :0.774233127937756 +than:0.9974570763325193 that:0.0014963920639620304 or:0.0003538611945216031 twenty:0.00011457285607365813 :0.0005780975529233034 +No.:0.1249745659590515 .:0.05379467061989149 George:0.05253524560413884 at:0.04123995655064038 :0.7274555612662778 +of:0.14634892470420083 and:0.10309351062988191 the:0.0713133640034302 was:0.05895297476040599 :0.6202912259020812 +on:0.3879304381416454 upon:0.2652197149000811 of:0.1860034768239546 by:0.05055915823619066 :0.11028721189812819 +a:0.7639540252792908 matters:0.18040804851574294 bad:0.038248850604361506 me:0.011036319383334261 :0.0063527562172703824 +avoid:0.04202268788746674 on:0.03728069101609324 take:0.03600154748180542 make:0.03574628917335134 :0.8489487844412833 +year:0.12093663719559627 year,:0.07194355011892223 month:0.05771566979481395 payment:0.04318963874068745 :0.7062145041499801 +be:0.7740272458130966 take:0.08735770381854424 lose:0.016165643151424495 her:0.015356466810847472 :0.10709294040608715 +the:0.45101092184749175 down:0.13368194687675197 a:0.06221363812938704 out:0.0589050048721763 :0.29418848827419286 +of:0.854411186843804 in:0.09090090968057647 for:0.02633963875589144 on:0.0009107992349003533 :0.02743746548482753 +of:0.913410968879813 ot:0.045698828857892185 ol:0.003756596495021808 o:0.0025033922468347424 :0.03463021352043811 +of:0.4831736222015813 to:0.2614273987794689 in:0.08412967840869093 and:0.04909112029080447 :0.12217818031945442 +of:0.8967226443197218 ef:0.0634795084891519 ot:0.024355500447748344 or:0.014459163163432983 :0.0009831835799448691 +court:0.5463614078611366 law:0.024188252507943125 I:0.01657741754348469 they:0.010747020397843464 :0.4021259016895919 +No:0.8011804136654861 The:0.12135700682157587 Every:0.022290495381705605 If:0.00964227136624545 :0.04552981276498691 +no:0.5366252177213099 little:0.26219168817001004 any:0.10256717624223388 the:0.04587963230278148 :0.05273628556366474 +destroy:0.19665315263152167 after:0.16211977374151582 in:0.12524003298525424 on:0.09671835891434835 :0.4192686817273599 +New:0.8766862138230861 Now:0.06821361464818282 now:0.0016981543531144133 the:0.00037974119966694434 :0.05302227597594967 +the:0.535681373795256 us:0.17915115924093308 them:0.10843762894511406 me:0.09011119969729058 :0.08661863832140619 +and:0.20847239772807738 passed:0.1707205251322255 to:0.05456616329455853 where:0.05242483528090355 :0.5138160785642351 +read:0.03193880364605411 the:0.019302746927387433 him,:0.011056872109359238 them,:0.010004411408432425 :0.9276971659087668 +out:0.42957060261216323 line:0.08850475444741074 part:0.07060330032228845 back:0.05362876392405131 :0.35769257869408627 +to:0.2957893993426329 we:0.29172714371841835 I:0.18865664904814256 and:0.07698513510571237 :0.14684167278509383 +and:0.32178664949993446 that:0.11540409707037927 That:0.07701495777950192 then:0.05686298158468797 :0.4289313140654964 +or:0.6853159505444939 and:0.10732920278971218 even:0.06833060260253208 with:0.03105440267212319 :0.1079698413911386 +kept:0.026654751471586618 left:0.023268437216137795 turned:0.012136474229838854 cut:0.006991320468232916 :0.9309490166142038 +and:0.36490472085381137 or:0.14956733522591031 of:0.09959886612280108 in:0.07092651462799814 :0.31500256316947906 +its:0.5125821067173084 our:0.22725166834142912 her:0.05760547539453698 their:0.022201309018659184 :0.1803594405280663 +for:0.4659168978337007 to:0.4130948534911939 or:0.013699342942541048 in:0.009613644963368542 :0.09767526076919579 +o'clock:0.6971284129090936 miles:0.08762429491699168 per:0.06460332559226183 »:0.05377565670174887 :0.09686830987990404 +which:0.06069930701638377 reason:0.04189417122602876 giving:0.02464709824677157 taking:0.013700892600711986 :0.859058530910104 +town:0.03385951435977488 firm:0.007071024596395436 giving:0.006484515114625601 in:0.005301493485649426 :0.9472834524435547 +of:0.09453174127024733 standard:0.038499597600536124 in:0.03799872011714617 from:0.03710937989304452 :0.7918605611190258 +stands:0.9816786722157448 the:0.0045971682037958496 and:0.0028679871853463028 is:0.0009080240810592057 :0.009948148314053894 +out:0.11881397366290845 was:0.07957979517030322 had:0.07212094118730668 can:0.06049991454511937 :0.6689853754343622 +and:0.3843244819944748 had:0.105163390376957 I:0.06710399712433789 he:0.06629865529526954 :0.3771094752089607 +find:0.24518370516110824 have:0.174683545155476 made:0.1729315705056926 makes:0.13437073456895435 :0.2728304446087688 +prepared:0.7074525044120014 conveyed:0.002425207515618979 and:0.000974739442888961 to:0.0008367371980843325 :0.28831081143140624 +ing:0.9389125685242532 to:0.00031893682180928693 for:0.00018892617305499382 on:5.0982413762493764e-05 :0.060528586067120166 +have:0.13044684946415963 was:0.11089439323290967 will:0.07683179272882026 am:0.06759010043683644 :0.6142368641372742 +attempted:0.4808991265418356 enough:0.057279732122939055 sought:0.03632386449594058 given:0.02804661078224176 :0.39745066605704293 +the:0.6631433771533676 a:0.044904641222419626 tho:0.030706198953779008 tbe:0.022845759960201124 :0.23840002271023247 +the:0.6047965304595725 a:0.05202619504020739 tho:0.03296173751863082 said:0.019195208252289285 :0.29102032872930017 +and:0.13805260794952673 the:0.10122207676413107 of:0.05924229535075717 to:0.053833837479051155 :0.6476491824565338 +story:0.1754340859394356 large:0.07673398898153465 new:0.0534934716472378 fine:0.04441462633203886 :0.6499238270997532 +and:0.23539637867946345 but:0.14787964289018884 because:0.13565463539162115 that:0.1031263322260589 :0.3779430108126676 +All:0.9785368865153055 all:0.01972383070169334 In:0.0002553399874786688 On:9.53524864573649e-05 :0.0013885903090649376 +people:0.10253418856214956 report:0.04521847822918323 words:0.04112166713248376 lands:0.028217130076079698 :0.7829085360001038 +his:0.23722983311510354 your:0.07786853877050447 of:0.07490583850094779 a:0.0656139219211348 :0.5443818676923096 +and:0.9523551677053864 ,:0.02617175470565269 to:0.008581718501187637 vs.:0.004998104519875087 :0.00789325456789814 +up:0.10199698854729361 road:0.08435561659846925 and:0.06382553645801085 line:0.04516819334592236 :0.7046536650503039 +ho:0.2724208584373108 as:0.23709765735070779 hat:0.10475444847548974 inch:0.03579415699297357 :0.3499328787435181 +and:0.10644028886130422 the:0.10112507744830887 a:0.033675290692076344 The:0.03214912743731375 :0.726610215560997 +lo:0.28165277300940916 into:0.1731206015701832 to:0.11930135747277903 any:0.1073995466760672 :0.31852572127156153 +years:0.7358275223232426 days:0.17435196631315242 minutes:0.04268899754081918 months:0.01418354649776834 :0.03294796732501745 +is:0.1463050638547502 showed:0.09533778427862888 was:0.06555622527634329 holds:0.039878642904096956 :0.6529222836861808 +who:0.40034608562380186 the:0.037636928523687 be,:0.03746289040428135 them:0.01962683100629666 :0.5049272644419333 +results:0.0012535423631403538 come:0.001247805943677923 follow:0.0011656935137739973 enough:0.0008993063642191065 :0.9954336518151886 +it:0.3049667112592957 books:0.12729226541433444 It:0.041852735900956825 which:0.03344539506990415 :0.49244289235550903 +and:0.40435411876885163 that:0.09499238434225488 ed,:0.049737381729490895 when:0.04527674267410832 :0.4056393724852943 +of:0.19258362308742838 and:0.13357863155583455 the:0.05223346174366997 The:0.037653173563324246 :0.583951110049743 +necessary:0.631013301043512 proper:0.03628475853175462 best:0.02287925331567675 sufficient:0.012613433880404938 :0.2972092532286516 +it.:0.49682261055107074 K:0.06998547437752856 J:0.05449981654285962 and:0.02396856241311023 :0.3547235361154307 +of:0.1465875258056889 No.:0.1097269529900971 the:0.05779175361017116 and:0.051531767323846484 :0.6343620002701963 +the:0.11724560628705553 of:0.07418857548368626 and:0.07339758201755545 a:0.04801474592123707 :0.6871534902904657 +matter:0.26563606582230953 remedy:0.19513425211333643 result:0.08983349787900237 advantage:0.037830888194114176 :0.41156529599123765 +you:0.1304354323861172 I:0.07344208908399628 will:0.05834424579672743 to:0.052777725866236865 :0.6850005068669222 +his:0.21444708917082927 the:0.17073488722903526 England:0.0740559378427098 other:0.015440532820038497 :0.5253215529373872 +by:0.578976648191484 j:0.12320408938502825 in:0.06627530165230372 and:0.06281367800486946 :0.16873028276631447 +The:0.24850378968457024 the:0.17874322507411106 and:0.14249742442812896 ever:0.10587590631131337 :0.3243796545018764 +which:0.45160773404363497 whom:0.29557158006315093 the:0.07197426812107802 what:0.02644863516226051 :0.1543977826098756 +States:0.05090753321154404 coast:0.04980066128551206 States,:0.015404557460959534 ready:0.006319981112462328 :0.8775672669295218 +largest:0.27019226109195055 con¬:0.04578168393683037 papers:0.03943990688427178 several:0.021422782398347356 :0.6231633656886001 +to:0.2695024157944408 the:0.09405326807044445 and:0.07185446543438766 in:0.05124660999168575 :0.5133432407090414 +to:0.5375638675009025 war:0.12081010615746707 field:0.030527046360149083 now:0.020918609100252242 :0.2901803708812291 +church:0.012508537617663724 nations:0.005020954994034863 man:0.002388293406717499 hopes:0.0014678086904792325 :0.9786144052911047 +use:0.07564413384704828 read:0.07139308402970872 remove:0.06367102486523002 ring:0.05526596718007636 :0.7340257900779368 +they:0.2935608669583805 we:0.2547321141294949 I:0.21546700786906897 wo:0.09700298748704615 :0.1392370235560096 +by:0.20842692477079464 if:0.15939976500661282 whether:0.12611769609373633 everything:0.07160397938594457 :0.43445163474291154 +power:0.09264391005204568 failure:0.03256399058069849 a:0.030209257122509017 work:0.02345861057872867 :0.821124231666018 +even:0.04650778333078126 refuse:0.032310898905341445 attempt:0.0296323858961534 two:0.028323975665024856 :0.8632249562026991 +and:0.09882116898135454 of:0.07950973224306791 the:0.06870582079794245 dollars:0.046424195066388264 :0.7065390829112468 +to:0.8543789191791458 in:0.0655488565240989 may:0.023583194168031767 would:0.0226436612766006 :0.0338453688521231 +at:0.8691867817707135 to:0.04956282519541823 and:0.024290224740001996 until:0.022307889986491757 :0.034652278307374614 +time:0.04044059709554303 that:0.031926726226587425 day:0.02757680881713605 and:0.02489525829197362 :0.87516060956876 +and:0.4754538121756272 It:0.1230767064581152 in:0.045851024084009435 which:0.04007464848761671 :0.31554380879463145 +the:0.2512245028068654 of:0.21203748500103797 The:0.09232684611819032 in:0.07325840384655953 :0.37115276222734667 +and:0.8135134837112704 of:0.030527619250553965 with:0.0172406638045305 by:0.015864376081764272 :0.12285385715188102 +on:0.29678371546816623 at:0.28298672935849234 and:0.17062335153100192 On:0.1417853174938119 while:0.10782088614852754 +for:0.9902175251404748 and:0.002838110460259237 of:0.00279005146350642 till:0.002290642124557627 :0.001863670811201782 +the:0.7758337012728737 tho:0.10149889032815475 (he:0.017028147250458408 a:0.012555852453895896 :0.09308340869461729 +beginning:0.3277098156354599 the:0.09907704086258058 begin:0.032394423284625974 a:0.016137177532949368 :0.5246815426843844 +and:0.6611321539497474 of:0.13790461193073747 it:0.09853105319583497 was:0.04309080769115941 :0.05934137323252073 +as:0.1659142765976775 is:0.1317224658506199 in:0.09638890862379312 of:0.09110088337478947 :0.51487346555312 +in:0.6416187462127472 In:0.2129722851311556 and:0.04455257163388031 not:0.031384133911223674 :0.06947226311099337 +the:0.5613165312287703 The:0.18674592667367812 a:0.05920082084919945 this:0.05683258689120819 :0.13590413435714388 +it,:0.14000914798976097 improvement:0.11045671648374997 and:0.09908383593937994 And:0.019880888798237017 :0.630569410788872 +I:0.2803719855087995 and:0.25317402847515913 both:0.2149429111229908 however,:0.14428183461061048 ing:0.10722924028243998 +did:0.3757502708566468 has:0.2346858435064626 could:0.15703994480815756 was:0.04809000231748133 :0.18443393851125178 +the:0.10406263721707004 is:0.07818935968226283 north:0.04739952023485956 presence:0.043806290848537474 :0.72654219201727 +which:0.14404583394538364 year:0.13063911594317917 and:0.03646462118300209 of:0.034568076872436175 :0.6542823520559988 +that:0.0005091170096592346 done.:0.0004984603247315524 upon:0.0004883083883333851 as:0.00014973793257534282 :0.9983543763447004 +day:0.003839029162667333 -:0.002596347044719581 pressed:0.0014600490180498996 for:0.000548142221814015 :0.9915564325527491 +late:0.40025224143147065 the:0.014255146888971445 side.:0.008435652268247846 in:0.008024662653558385 :0.5690322967577518 +J.:0.09828458353443263 B.:0.05558215211279938 .:0.031027546102504532 E.:0.025431685070146266 :0.7896740331801172 +with:0.27585762367759903 and:0.16210845908381485 was:0.08405367336667634 or:0.07547438666964312 :0.4025058572022666 +trying:0.16163173615823212 determined:0.12047736949448512 came:0.09106192089561996 like:0.07713375658393606 :0.5496952168677266 +the:0.41793529739275875 be:0.12391238143558199 his:0.09494057293556922 a:0.08202734982298131 :0.2811843984131088 +United:0.9919716542984088 several:0.0004836834137615655 Southern:0.00045856392469068816 Northern:0.00016930982001766762 :0.00691678854312123 +he:0.35230239728811347 it:0.28619502711364836 she:0.06788511904217083 there:0.05740784752994271 :0.23620960902612465 +us:0.323856790321382 as:0.3111180059954673 tbat:0.15376067916649805 from:0.08339455800438744 :0.1278699665122653 +and:0.09321699101797137 ::0.05123187586463123 bound:0.03843324379308403 placed:0.03612002241397433 :0.780997866910339 +the:0.6492980644328296 their:0.2962016256840026 his:0.042633717305217256 tbe:0.007777398306493792 good:0.004089194271456717 +the:0.23480362496091897 be:0.20780388800346902 a:0.05139109686050356 and:0.029861611312208186 :0.4761397788629002 +the:0.32509037105342203 and:0.10151745385200092 cutting:0.06792848100284515 blow:0.06596351918152549 :0.4395001749102064 +been:0.3641629177161423 become:0.06795110529451918 its:0.021439722111661744 a:0.014659300951219725 :0.531786953926457 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +if:0.0874847650945784 provided:0.08040943409416496 recorded:0.05448653020461283 well:0.04387581153143903 :0.733743459075205 +of:0.26682666326428356 and:0.1739406218491507 the:0.07624834664465162 to:0.03634743320208531 :0.4466369350398287 +are,:0.008831155950890865 satisfied:0.007728337592281047 own:0.006076907634076646 much:0.0024642784736491293 :0.9748993203491023 +There:0.3777357997526197 shall:0.27568580756840677 and:0.1252371282607114 to:0.09837905897872146 :0.12296220543954064 +it:0.059827460259863394 him:0.036866199927363 which:0.032056270761151175 the:0.028509589191003194 :0.8427404798606193 +words,:0.2851069186609652 words:0.08750154448878751 the:0.05598754293520499 a:0.02489694522440899 :0.5465070486906333 +of:0.6659664053082872 on:0.09223656761279961 in:0.08077600778767563 to:0.07164064199256359 :0.08938037729867394 +or:0.19565688110964002 training:0.06573092812265059 and:0.042851530240145895 condition:0.03225900728143461 :0.6635016532461289 +of:0.9894712830712736 ot:0.00163868178878228 of.:0.0004153316537726854 ef:0.0003160699556448728 :0.008158633530526387 +to:0.3426375683160534 will:0.15504484253780107 not:0.10379344875775554 then:0.0942375528284498 :0.30428658755994015 +his:0.5781492813043982 my:0.23959683571956417 that:0.09048953290176585 the:0.04897340690699153 this:0.04279094316728007 +There:0.34182412579872956 It:0.203429004825242 This:0.19828360669545197 He:0.08284916280477493 :0.17361409987580156 +society:0.013108243798486423 exchange:0.006474112040072731 the:0.005319806382116398 affairs:0.004613843068494909 :0.9704839947108297 +he:0.7912775973997237 and:0.09017068959496671 it:0.027380579829388914 past:0.019961119553909605 :0.07121001362201103 +whole:0.061271784516751186 Democratic:0.05065687323196346 law,:0.042675872942919836 true:0.03811188992881771 :0.807283579379548 +is:0.7121299319541311 being:0.16359963219565407 was:0.09812307246494929 be:0.015009083931235146 ia:0.011138279454030488 +and:0.324447696549856 or:0.12295219144971477 ed:0.04009098966332354 ought:0.030479651674226158 :0.48202947066287943 +said:0.09468484849896193 this:0.03424602413253508 of:0.030374674628444953 to:0.027441518454305713 :0.8132529342857525 +more:0.10664455577647226 better:0.048396070218991734 larger:0.026938731532721017 er:0.014568934404345675 :0.8034517080674692 +cured:0.3995184134654003 taken:0.07281140417011568 covered:0.0490770301718206 won:0.006162367776678683 :0.47243078441598474 +degree:0.1033018575219521 and:0.100253428127827 of:0.06302377314440841 the:0.05989671529407767 :0.673524225911735 +as:0.32650432872131924 which:0.19343407718490965 that:0.06677687788367256 there:0.04379695791736123 :0.3694877582927372 +Miss:0.20846255379194956 of:0.11422015142202863 and:0.080601846919687 the:0.05325252978474895 :0.543462918081586 +brought:0.08072941505707065 taken:0.05547466624517973 due:0.05093758997156194 referred:0.042330971483562754 :0.7705273572426249 +connection:0.2133573234342554 w:0.20248425603833703 t:0.10167396704688439 W:0.06511926477907125 :0.41736518870145184 +is:0.13817204097687674 and:0.11885472534980597 season:0.10684164077727892 of:0.0725164422582931 :0.5636151506377454 +the:0.7562466565620994 various:0.10908466637399968 her:0.03179496378071379 his:0.02954774692728073 :0.07332596635590652 +of:0.8461099266410028 ot:0.0984559883789069 to:0.02178409377848437 or:0.01844051267637857 :0.015209478525227407 +the:0.5394575975627206 these:0.2581287711140123 tho:0.04563609175593469 our:0.037898893483632304 :0.11887864608370018 +people:0.13605515295968396 young:0.11563972405889102 own:0.014545313414373722 best:0.010629034148658538 :0.7231307754183931 +of:0.9595315381943124 ot:0.04045612635260483 iu:4.762135956967537e-06 the:4.378465628310485e-06 :3.194851497452869e-06 +devoted:0.19589710603709548 opposition:0.16211946827366316 as:0.06525033773703308 itself:0.03789517697879369 :0.5388379109734148 +that:0.47123254681030863 the:0.09795921267958915 W.:0.07065918392037124 as:0.0693838279788637 :0.29076522861086723 +and:0.3709643048718173 which:0.10014753380250976 that:0.06797117894221297 one:0.05506138373658007 :0.4058555986468797 +Democratic:0.22004179216765649 vice:0.10948691812675207 Republican:0.05590488541216233 republican:0.048913297417307336 :0.5656531068761218 +and:0.0849741677848747 of:0.06146648142869556 the:0.05983069733976848 to:0.028834044301126092 :0.7648946091455351 +the:0.6566481532153611 these:0.09766253896297498 all:0.05409983448420095 its:0.04122568811189522 :0.15036378522556776 +the:0.8794717778528939 Congress:0.028104201045062695 Jackson:0.005030485733215879 tho:0.001906207147883628 :0.08548732822094401 +chief:0.15475006204171438 largest:0.06023744218683905 disease:0.04409659811009638 native:0.038552600223715365 :0.7023632974376346 +such:0.07241558279102113 commercial:0.04006043462226357 the:0.03923077538156904 other:0.033643042890217585 :0.8146501643149286 +one:0.16339597977925882 nine:0.10012100120495514 11:0.08454143825353579 2:0.07761861861213375 :0.5743229621501165 +more:0.016735155532497093 and:0.009121289883749602 of:0.006301582775948591 to:0.005955406879961824 :0.9618865649278429 +died:0.9227252008389496 raised:0.03272974704194615 returned:0.0273265913998157 suffered:0.012145461678313983 :0.0050729990409745475 +for:0.011933192589174147 coun-:0.004450787901924722 to:0.0030674292726393724 let:0.0025964011338036924 :0.9779521891024581 +cents:0.12047775767031361 25:0.06538275108916407 cash,:0.05386554585932596 cash:0.05275545459259488 :0.7075184907886014 +him:0.22052575054906542 him.:0.21500105942666053 herself:0.16581684973827282 information:0.07889570880936782 :0.3197606314766336 +the:0.4741726099237675 my:0.18776181018211793 their:0.13503686090217998 his:0.09013457536193435 :0.11289414363000018 +the:0.6063531880857752 extra:0.054622704209510875 of:0.03822876015937581 their:0.027546236851885696 :0.2732491106934523 +find:0.9837707753365242 draw:0.002281867260221844 look:0.002144460115668829 go:0.001246172371588655 :0.010556724915996496 +of:0.0775276271609519 began:0.07485918590169784 and:0.0711196297120323 came:0.04674821332080778 :0.7297453439045102 +to:0.2735552392568814 hand:0.15326030155108006 upon:0.025664879819341454 -:0.025416606773741655 :0.5221029725989553 +than:0.22503396560449865 or:0.06400995290688813 nearly:0.033883443267867915 tha:0.030016797288528418 :0.6470558409322169 +the:0.4178628724706756 this:0.11215492615968173 a:0.10774110399703708 their:0.10368632400939523 :0.2585547733632103 +Texas:0.012610362125369071 all:0.010178046026663369 government:0.007792022515797334 old,:0.00545531532841728 :0.9639642540037531 +said:0.01658193321857149 most:0.01360204975786512 the:0.011050082706013065 following:0.009681510890742014 :0.9490844234268084 +the:0.29980491672824805 a:0.11677303489035287 being:0.0849158951172145 his:0.05926271811820368 :0.43924343514598113 +and:0.11234630794382228 the:0.10523287458778058 of:0.07240286326490925 to:0.0435032290978732 :0.6665147251056148 +name:0.7616054191316448 sell:0.09585362540756759 party:0.016312591106931486 brother:0.011277747678984026 :0.11495061667487194 +no:0.9836999965133992 a:0.004471024665432888 some:0.003301132154422702 many:0.003205380301817076 :0.005322466364928029 +that:0.15595804479455405 but:0.09406661583614137 to:0.0931014477772329 and:0.08261745602252511 :0.5742564355695464 +to:0.7419423064655757 lo:0.22520099779446004 by:0.020307557483292778 at:0.006416989388477612 which:0.006132148868193976 +corner:0.14670241224008013 I:0.06378277494874636 con-:0.0353515590093542 to:0.023897942878653773 :0.7302653109231655 +the:0.3573349739370322 Dr.:0.18033102935034906 a:0.10062765560092284 Colonel:0.06433499946181584 :0.2973713416498802 +for:0.43247149042760263 with:0.1686030758940363 on:0.09649878053657422 to:0.0960659309167066 :0.20636072222508026 +to:0.8339463285013041 will:0.04446629788982789 should:0.037574137424704286 can:0.023870854379709802 :0.06014238180445399 +or:0.9407004924112845 nor:0.03576629893389309 ot:0.013385952348090337 in:0.0027580385527601206 :0.007389217753972111 +the:0.36101901397027836 many:0.09167676119019126 three:0.08269374951358549 several:0.056444921321035006 :0.40816555400491 +the:0.6337586187030124 a:0.08026856694886454 in:0.047268520607410325 by:0.032093190554290746 :0.20661110318642203 +to:0.4515492857824874 a:0.20529510536893752 and:0.05242028871430017 the:0.05079273856404966 :0.23994258157022524 +situation:0.3599657405477169 power:0.057222098706306936 world:0.05269279710441701 campaign:0.0385332996002597 :0.49158606404129956 +were:0.11832126519997456 papers:0.04590276794342189 near:0.035728647744973294 the:0.02107669876398691 :0.7789706203476433 +three:0.4428738358311603 two:0.25731154748588925 five:0.11885340231416229 one:0.052263273302971584 :0.12869794106581642 +lies:0.22527215198142433 not:0.21063027711228846 of:0.2025068751025351 is:0.09954971976796807 :0.26204097603578386 +of:0.9998557362844324 the:9.893501224323136e-05 and:4.245762207304167e-06 ot:1.48388977918164e-06 :3.9599051337752346e-05 +There:0.00019751190143998064 there:0.000174967393208779 brought:0.00011904269447544189 pressed:0.0001002559680024525 :0.9994082220428734 +the:0.3881400835488736 pay:0.07676635134940905 be:0.06315583064686844 drawn:0.045250520340078766 :0.42668721411477006 +claims:0.6004916111592864 g:0.1208566356867449 the:0.023488175474212943 and:0.018480202302399502 :0.23668337537735623 +the:0.26071195245384665 all:0.17336441641390157 a:0.1127275262639831 its:0.06968090547805443 :0.3835151993902143 +ac-:0.016399136540841797 mo:0.0002151854093602669 new:0.00014470770250785505 at:0.0001300298028614516 :0.9831109405444287 +if:0.3439039236681064 as:0.30646729254802413 too,:0.10966060033355896 when:0.1020093601297036 :0.13795882332060702 +It:0.014258064298042621 the:0.014142301409166228 and:0.01280870503764119 The:0.008991130355383988 :0.949799798899766 +and:0.11762850662594104 in:0.08072681963698816 but:0.07466178470622532 for:0.012462531276584343 :0.7145203577542611 +going:0.1200846977263848 now:0.08177220682835536 the:0.06385660606072367 over,:0.04986492225275753 :0.6844215671317785 +the:0.5184196960833797 The:0.2597981510527067 His:0.03792156076979413 whose:0.019452382891121958 :0.16440820920299742 +mortgage:0.04704609004164164 written:0.04190595343590496 own:0.037059747133598046 duly:0.01824112014201681 :0.8557470892468386 +and:0.1345183895369897 for:0.10706280349867478 lie:0.07388873143187057 pre-:0.07048877110270148 :0.6140413044297636 +of:0.2364109266783599 and:0.12463843728310867 the:0.05116784425044161 The:0.03665306730402562 :0.5511297244840643 +the:0.12081048386284764 an:0.009225306953846074 tho:0.008791984801321892 mon:0.005841499015751896 :0.8553307253662324 +of:0.1574161499062754 and:0.12819736723965722 The:0.05025303011113089 the:0.04015863416618589 :0.6239748185767505 +of:0.30778074331647187 as:0.07612424587802012 its:0.047216324475399925 and:0.02105019910847206 :0.5478284872216361 +benefit:0.037740624174284546 appearance:0.036157874881290984 loss:0.018335182287015882 experience:0.015139025892980744 :0.8926272927644279 +of:0.6477740933843432 that:0.22792184167849847 upon:0.04200499134790863 only:0.035002898562854 :0.047296175026395645 +great:0.20395589222806149 poor:0.1729137723488359 eat:0.06498604330277236 few:0.06132519168181239 :0.4968191004385179 +see:0.4496746163225512 know:0.04357629687374636 do:0.036229219497404284 be:0.03526855822020773 :0.43525130908609055 +member:0.40176701540432536 means:0.03002063492755325 effect:0.02120216302545334 law:0.019548640892585737 :0.5274615457500821 +place:0.02087170962283641 city,:0.01600008524641543 country:0.013381024396868042 ward:0.009846830562668565 :0.9399003501712115 +and:0.14726810113062147 of:0.08388526105975314 the:0.0745865795690992 to:0.03625223119068892 :0.6580078270498374 +of:0.008301906425475703 words:0.00771777084364361 ;:0.006790573774392195 than:0.004527887420266861 :0.9726618615362216 +report:0.14102800013177033 influence:0.0636186855909927 reports:0.024002389235104622 charge:0.021408249921694152 :0.7499426751204382 +and:0.09960266075835342 Mrs.:0.051764994628128176 boy.:0.021339467484333376 of:0.01986033261787581 :0.8074325445113093 +on:0.328467461008486 of:0.12469007979889879 around:0.02442200403870723 in:0.017214950223859184 :0.5052055049300488 +now:0.532249741702436 first:0.4509309037905744 not:0.006244124885257232 needs:0.0013293166368878067 :0.00924591298484461 +the:0.18910692062245188 this:0.04538411316787203 Columbia,:0.04384146265663839 Columbia:0.03696395089931474 :0.684703552653723 +sell:0.7096816176395134 meet:0.14831608362086582 understand:0.08041109798232865 know:0.028675156647557983 :0.032916044109734095 +and:0.11396095835819653 in:0.11204878013354629 to:0.10131266564769037 of:0.08585064701208948 :0.5868269488484773 +of:0.6024479959273942 for:0.10535819318745347 and:0.09887387935330888 to:0.04566036542000935 :0.14765956611183415 +tho:0.7196646981739072 II:0.09289581751838265 It.:0.07857367887778248 the:0.03531002595119717 :0.07355577947873067 +to:0.14967274082824666 and:0.09709580107696852 of:0.042393378746532685 the:0.03942893756627096 :0.671409141781981 +the:0.8034122784331025 tho:0.05062614793296988 this:0.026274521062720026 said:0.020135759257893668 :0.09955129331331394 +The:0.07042318015091048 and:0.031931125762438756 and,:0.0038403871902687662 that:0.002205174383220105 :0.8916001325131621 +left:0.12300213666234071 made:0.09389199414360483 had:0.09008668229223254 for:0.048125273719305244 :0.6448939131825167 +tin:0.06232299901694939 little:0.043466854230023 feed:0.03601103043672425 paper:0.02521351684799747 :0.8329855994683057 +and:0.42745643362887675 with:0.11197562422495384 under:0.11010276029437469 on:0.10695460403752328 :0.24351057781427138 +to:0.41680251799776635 still:0.15008845753780495 fields:0.1476938575439586 will:0.10026172502388629 :0.18515344189658378 +of:0.25838080601770796 and:0.07037662563346667 the:0.03897301302708069 to:0.03597015663088914 :0.5962993986908556 +enable:0.22681442548514127 allow:0.0729450016074614 bring:0.04607688984874306 permit:0.04437398795451477 :0.6097896951041394 +previous:0.8523091173572589 long:0.06427233236442971 ihe:0.03176110666033129 the:0.023970448112518732 :0.027686995505461387 +and:0.2894760068128123 the:0.16499400190086647 which:0.12772010757603564 to:0.06813126950636986 :0.34967861420391566 +bonds:0.1619769888163722 State:0.14613541188306384 city:0.06558098829649428 fact:0.03706467804536917 :0.5892419329587006 +come:0.42624186186409474 given:0.055306682576486695 been:0.05453884478540135 used:0.025486331397284023 :0.4384262793767331 +in:0.3321279948441361 on:0.22071386163846096 to:0.21355488134043143 and:0.11758769043687838 from:0.11601557174009318 +twenty:0.1590027195674686 and:0.09259338506195784 goods:0.03206213082296964 year:0.023149731651657117 :0.6931920328959469 +events:0.5332335367606034 life:0.2847313849749933 to:0.05443980667249655 order:0.04934480492169347 :0.07825046667021339 +an:0.833055700519982 no:0.1416451428064124 nn:0.003523171733902835 very:0.0030372250379879892 :0.018738759901714783 +it:0.11763643621375565 It:0.11743779283860128 side:0.05498226989070543 there:0.04021176127842348 :0.6697317397785141 +to:0.41093138105940524 are:0.14137510638655146 but:0.11602399076865898 have:0.08460129148814675 :0.2470682302972376 +hundred:0.6465684788431059 dollars:0.3170117034030546 dred:0.012309024598191776 thousand:0.0052243541883242196 :0.01888643896732344 +of:0.56587957626503 his:0.2409984517580149 in:0.057663836318756476 bis:0.04264442532887956 :0.09281371032931914 +and:0.15222411082694054 of:0.11000220811513425 the:0.06983058374996037 The:0.046699704137760034 :0.6212433931702048 +the:0.026404179508512895 and:0.02093287969805962 to:0.018693861046998845 great:0.015240235729754841 :0.9187288440166739 +The:0.20257749977685882 the:0.05974266618650222 in:0.05651976202871021 Tho:0.050054871489415606 :0.6311052005185132 +been:0.49357936953950665 to:0.08628169547971688 no:0.0700120787542436 become:0.05983626276769171 :0.2902905934588413 +first:0.21882817471086316 summer:0.06049323754153693 last:0.051646204937123574 entire:0.040997646248607106 :0.6280347365618693 +the:0.4497633847473905 a:0.20048917208187494 and:0.08452486563791581 their:0.07125843831867334 :0.19396413921414538 +on:0.22601340059520944 for:0.21519793187613742 to:0.213657478849957 of:0.10438202670112781 :0.2407491619775683 +another:0.22112971889273228 more:0.11688486054501733 in:0.10980059916277682 of:0.09633536828615011 :0.45584945311332337 +that:0.1871678447922348 they:0.12220370849623566 who:0.08271144514302119 and:0.063150292182962 :0.5447667093855463 +to:0.2486856347437119 and:0.17471624523603282 by:0.1625519358689328 in:0.16137194204920677 :0.2526742421021156 +in:0.314260381060573 of:0.1732254916881778 on:0.14444810047422843 by:0.042930842159743056 :0.3251351846172777 +i:0.054767538210152664 j:0.010323131784076971 a:0.008335899795409949 in:0.004562143412775597 :0.9220112867975848 +numbered:0.1446026423430205 connected:0.05802894217588735 made:0.047048850969982 filed:0.029647144005602442 :0.7206724205055077 +after:0.2707449989014655 On:0.22755764870239203 Upon:0.1848405925910274 before:0.16397247836748444 :0.15288428143763064 +be:0.24084361177336808 offer:0.08224115424036754 vote:0.05951528427619458 leave:0.051362208483551705 :0.5660377412265182 +and:0.2616136278796225 the:0.09189614699597813 aud:0.08318609751845732 in:0.07259049084493302 :0.4907136367610091 +to:0.025802090293576194 trade:0.02151062839191083 agreement:0.013461152920791268 consideration:0.001677175268215757 :0.937548953125506 +presence:0.09429395153208335 truth:0.06010750962533567 absence:0.032294685968727276 character:0.03032494131096631 :0.7829789115628873 +to:0.1196000289339778 and:0.09189232744495221 of:0.08442625572523706 the:0.03899254372554392 :0.665088844170289 +is:0.38440647947029366 was:0.17481871042732128 as:0.08329233164557043 will:0.07405701218030734 :0.2834254662765073 +The:0.18911524737398414 the:0.170118585273809 and:0.1591769668578488 Their:0.11073919830745609 :0.37085000218690184 +the:0.8166877552900347 any:0.05050920161918671 my:0.03270586335865169 his:0.01895964713982574 :0.08113753259230115 +same,:0.020354287617149153 ;:0.003478584294136408 mine:0.0022210488796184204 church:0.0019664848335771384 :0.9719795943755191 +the:0.31775522193603917 General:0.10457800215229973 his:0.037814643546489356 be:0.03486530979663921 :0.5049868225685326 +11:0.23557623269324332 S.:0.025772016589811104 D.:0.01355200013594771 J.:0.009547772213048212 :0.7155519783679496 +and:0.12732982498116124 the:0.09977232650030211 from:0.07669663568812272 or:0.07579066706252773 :0.6204105457678862 +day:0.7114397501093888 side:0.027818299002782498 line:0.014003194219288773 tion:0.007107525392178044 :0.239631231276362 +the:0.9563326360871603 this:0.026724343438060457 a:0.011569111693306482 that:0.0019297365144404104 :0.003444172267032151 +and:0.18557104231841576 the:0.09186841144719844 of:0.06896156909773433 to:0.04945817410496265 :0.6041408030316888 +notified:0.994292845755833 ordered:9.658314728473509e-05 informed:8.099293019888538e-05 noticed:3.6446690241334564e-05 :0.005493131476441997 +man:0.23228180959015352 paper:0.1472554994004547 house:0.07047316133129453 step:0.051893822965700206 :0.498095706712397 +of:0.2989723689630398 as:0.23424743288431157 for:0.2173053731036661 and:0.1570616768686268 :0.09241314818035569 +that:0.2539044499606772 and:0.2412552757677783 as:0.09276280741342965 re:0.08529903619467351 :0.3267784306634414 +of:0.3619703419961708 and:0.15981251958605333 or:0.0717578338147221 in:0.05968297879506776 :0.346776325807986 +was:0.2790416158631601 be:0.048299760555883496 cities:0.04236862554880232 and:0.03962587801514817 :0.590664120017006 +of:0.09823493477889261 to:0.08309923158855721 and:0.07635590373601686 that:0.05528599123378546 :0.687023938662748 +and:0.23076503070379223 is:0.17660871744353318 ;:0.1309447267413407 it:0.10676411838981036 :0.35491740672152366 +the:0.8517858503108411 he:0.06811910270812777 tbe:0.02723807860421618 tho:0.02264786087793144 :0.030209107498883354 +and:0.34152022291763434 has:0.3171114204702988 of:0.145418428290305 is:0.08021956969420102 :0.11573035862756097 +a:0.4414091964960609 b:0.1414633245945058 be:0.036271162913426684 er:0.019625453563685634 :0.361230862432321 +the:0.5262898265612568 National:0.0406001681363825 said:0.028285651446144252 State:0.025143460679246294 :0.3796808931769702 +the:0.296203463495875 a:0.14052493375994904 his:0.06157613333807028 their:0.04922113316299152 :0.45247433624311406 +State:0.03557537906827515 one:0.016431930028129337 the:0.014958505479360252 that:0.012278097408151174 :0.920756088016084 +and:0.10022138692421678 by:0.06848265233098247 rich:0.025673628692525527 passed:0.007525607986921436 :0.7980967240653537 +we:0.7291003591358661 tn:0.09017115101510136 to:0.022581122187746345 and:0.006500452456795876 :0.1516469152044902 +for:0.3176946131632666 to:0.26265298488303945 over:0.13656537814305847 on:0.10993037190661668 :0.1731566519040188 +of:0.12162093869605335 in:0.07829283886201549 to:0.07760823924776789 and:0.07009474999316136 :0.6523832332010019 +the:0.4256783380801041 a:0.0676248597923901 tho:0.01877140842932935 other:0.016895804422281818 :0.4710295892758948 +of:0.16986269457253628 and:0.10194594879715622 to:0.05361177820701789 He:0.04812970382516644 :0.6264498745981232 +by:0.027370943523816207 for:0.01623392727221271 round:0.006797467414240172 not:0.004939642945258228 :0.9446580188444728 +that:0.8227033000019702 by:0.08729770288620674 at:0.03495951201192871 to:0.030513770486189626 in:0.024525714613704622 +each:0.9784462229288267 the:0.019919754269485942 an:0.0006189607034705758 any:0.0006018513808763479 every:0.0004132107173405001 +and:0.16508721612527327 the:0.09677839785617394 The:0.04384653537566258 of:0.042595092488726956 :0.651692758154163 +of:0.6256781734397092 on:0.09656367242716869 in:0.08662093752524416 upon:0.067254486880666 :0.12388272972721193 +of:0.8965652866217327 in:0.10141869467394819 at:0.0009266042071430292 ol:0.0005580061978679343 :0.0005314082993081052 +nnd:0.5992988600132126 and:0.07597945481070768 people,:0.009402220146330919 people:0.006911389893836826 :0.3084080751359122 +and:0.16516728294722227 but:0.11920312582207172 that,:0.08735563923290257 that:0.08233642961471432 :0.545937522383089 +time:0.3368348262142849 the:0.27295453375516376 my:0.07499554735963333 day:0.01960619032096646 :0.29560890234995163 +the:0.8998121587640334 old:0.044965761663484774 this:0.020948933550677472 tho:0.01871866456355746 :0.0155544814582469 +by:0.26267056008927253 of:0.2217320473230919 to:0.1953972370450359 in:0.10890954127767248 :0.21129061426492698 +the:0.012127160265855294 ordered:0.008225125201799197 others,:0.0045166411821112975 known:0.003093690767807467 :0.9720373825824264 +and:0.17832915906467076 not:0.12716843423624508 are:0.0695629522207933 is:0.05189860870288878 :0.5730408457754018 +R:0.22182312749730712 .:0.184772444006006 A:0.07289584685060416 00:0.056250064248389534 :0.4642585173976932 +and:0.19123936162975588 or:0.07112165900370142 of:0.06832775430829123 to:0.05003578492878945 :0.619275440129462 +dead:0.41128208375168795 lying:0.12832611847026465 sitting:0.03257802273495759 that:0.019727808692627375 :0.40808596635046257 +it.:0.008507124955320692 the:0.00706549054134282 .:0.004533767798642319 him.:0.004072721286563047 :0.9758208954181311 +been:0.9891134280006543 caused:0.006629506282930374 one:0.0007408863806421937 always:0.0005140967638184503 :0.0030020825719547866 +they:0.12392023313900768 They:0.12175319166465558 and:0.07974950818468526 There:0.052693713263735155 :0.6218833537479163 +of:0.43275757185232816 her:0.17993023425073976 their:0.16783258785628105 and:0.08989679345286133 :0.12958281258778975 +the:0.6168804392440734 to:0.11632424907494546 for:0.09135304077265662 his:0.08497910300409355 :0.09046316790423091 +can:0.4073906270043563 will:0.26305152101571067 your:0.14487052137776874 can't:0.09901765274478501 the:0.0856696778573793 +and:0.19959486417969993 She:0.18902661004902443 that:0.06246446809275638 to:0.061003141057697205 :0.4879109166208221 +to:0.8690291876189717 will:0.013342257501567619 they:0.010222923394852066 can:0.00940081229410028 :0.09800481919050827 +he:0.35555951179693346 It:0.1539474929254277 she:0.147030294304393 be:0.07469909333509588 :0.26876360763814977 +who:0.3996539870914692 It:0.07186136695009261 he:0.06649656690048342 and:0.05166699006960715 :0.41032108898834757 +and:0.09080939605824849 was:0.04688950232280006 of:0.028946952231866566 which:0.020812957165054363 :0.8125411922220304 +tho:0.8196787431514315 the:0.17958070240063626 a:0.0004821168074624133 railroad:2.5121909611608233e-05 :0.00023331573085825087 +and:0.3126232127397997 I:0.16012378242444528 he:0.13549234697076287 He:0.09396153078730805 :0.29779912707768413 +The:0.4542943636923583 and:0.10662922914767776 the:0.07092838751686031 to:0.06754511949544516 :0.30060290014765845 +of:0.061933458033432885 and:0.06035479396780612 the:0.05586077376440515 a:0.03302504064878485 :0.7888259335855711 +in:0.7415553020814791 of:0.10256471266408616 In:0.07440183378793178 throughout:0.05965886627894721 which:0.02181928518755562 +order:0.10752662963590263 the:0.04914593896235354 proportion:0.025179927331536067 counties:0.009854347678434894 :0.8082931563917729 +of:0.6685896036011937 against:0.09688056875547076 ;:0.036927457207917805 by:0.031702111182834676 :0.16590025925258298 +in:0.7063773024857831 so:0.107319784092256 of:0.04883112506405411 until:0.03932282998200849 :0.09814895837589817 +is:0.443373875973695 and:0.19673421204775665 are:0.14641912043855207 so:0.09668693423390326 :0.11678585730609295 +first:0.04668273010173748 whole:0.041565018985920216 following:0.0203909699898055 second:0.017228268890903273 :0.8741330120316335 +method:0.06432568375247448 state:0.05717172088624321 system:0.05534410075279227 form:0.034768836530968475 :0.7883896580775215 +a:0.3094292134287797 this:0.24751808078095439 the:0.13647539313305893 tne:0.07798126508701643 :0.22859604757019053 +about:0.4119132133530807 only:0.30275590452284584 selling:0.06852668877145776 within:0.05592113100231805 :0.16088306235029767 +all:0.18604956098333508 of:0.05366636987379114 which:0.02030684478956259 upon:0.01930471351679675 :0.7206725108365143 +the:0.22660438529063748 not:0.14584592239227262 he:0.09340072874831146 it:0.05744834372485867 :0.4767006198439198 +City:0.42456911880800097 city:0.4107793397042848 town:0.07089259116022928 village:0.043175036537542 :0.05058391378994305 +it:0.8546091206122618 home:0.13953494182311987 that:0.002247812134895943 If:0.0002282870479202249 :0.0033798383818020744 +the:0.6747773299337242 any:0.054802267999395166 a:0.0470100082411323 uot:0.006917515842345273 :0.2164928779834032 +into:0.04277905580415145 did:0.014459586169087093 the:0.009058338978445843 good:0.008348938174270864 :0.9253540808740447 +the:0.13757421557743066 and:0.09606406553944176 a:0.08232386300964854 to:0.06770559865151227 :0.6163322572219669 +kept:0.4294089886038982 running:0.0417190602893721 sold:0.022820351636835084 steamer:0.02262456323526521 :0.4834270362346294 +not:0.9780531836931653 you:0.005780954183669388 not.:0.0032139100894401883 uot:0.002162127067513569 :0.010789824966211576 +the:0.21059220353790223 their:0.10913177371835407 less:0.09020956651926222 his:0.08388409685332766 :0.5061823593711537 +be:0.49863182697414066 he:0.2446308865447587 exactly:0.13085800287439417 now:0.07168772971043122 :0.05419155389627531 +own:0.13674578521882155 national:0.03446969472096975 public:0.022459624612330933 present:0.02030199669414001 :0.7860228987537379 +not:0.388385638893888 claim:0.2933349962342379 it.:0.10214304420331624 therefore:0.06939166420583434 :0.14674465646272353 +as:0.04598952258478575 State:0.02414871538629285 selling:0.010469420174285583 state:0.0076822216028403995 :0.9117101202517955 +and:0.2700345341797119 It:0.12390481836198257 it:0.10209702993160759 which:0.06290456130198346 :0.4410590562247145 +one:0.3562593805226312 nine:0.2245977221412764 five:0.1602099200519592 two:0.11762757443670614 :0.14130540284742701 +along:0.267393923488506 through:0.1360042592304727 across:0.09976012682862025 to:0.08583740151703753 :0.41100428893536334 +to:0.22004534323159974 would:0.04589563985883836 will:0.03226038945294121 could:0.0229797422188251 :0.6788188852377955 +used:0.049575804282048434 shown:0.038069752355196704 engaged:0.03199393775041011 now:0.01774869958878785 :0.8626118060235568 +wife,:0.10033850514366513 con-:0.08555428600906817 case:0.04566401946778973 d:0.03443756866625622 :0.734005620713221 +her:0.23102580802452308 me:0.14736190184039746 them:0.11741610662413675 it:0.06608214234280364 :0.4381140411681391 +also:0.11851678047752737 now:0.0783875045962757 hereby:0.0719116075456275 already:0.06670039570359464 :0.6644837116769748 +be:0.4087655456838881 come:0.1934815585712144 see:0.060708611301255884 the:0.06068875866001362 :0.276355525783628 +and:0.06961578866982472 tion:0.039188296787379395 as:0.022153701228784503 ing:0.02117808147552011 :0.8478641318384912 +up:0.17634241834103356 down:0.10038627632863151 out:0.09851628773821501 if:0.0565925527164529 :0.5681624648756669 +follows::0.9952296679744725 follows:7.041974963928931e-05 feet:6.0669670519539534e-05 In:2.8051879353898687e-05 :0.004611190726014776 +to:0.31032081037246034 at:0.2679504184782561 from:0.2617171072591298 during:0.09189930356106395 :0.06811236032908967 +could:0.21184405535434792 had:0.09559273623879247 was:0.0906602853239934 is:0.0687175789756169 :0.5331853441072495 +the:0.7415066483131911 a:0.1924623544661639 being:0.031751757443415234 her:0.017131464786213222 :0.01714777499101643 +will:0.22438434845977473 would:0.21339438917519543 and:0.13802875201179812 the:0.11650426224334336 :0.3076882481098885 +is:0.3042257577379395 must:0.19492576489580093 has:0.09255634794967539 may:0.07636849919578423 :0.3319236302207999 +to:0.1437119212613322 and:0.1239620944154833 of:0.0874796269278547 the:0.08399838103761781 :0.560847976357712 +man.:0.007337847723262307 him.:0.006499937092856967 you.:0.006433176456029775 it.:0.006047736334683783 :0.9736813023931672 +for:0.9976923393117949 in:0.0013672230616727685 at:0.0002474302130114835 with:0.00015090489379551987 :0.00054210251972525 +open:0.45797417386474176 be:0.23256127359418163 the:0.08893614070441 bo:0.013987567084075433 :0.2065408447525913 +if:0.27260879254944426 as:0.24141262156457582 because:0.17185162119426392 and:0.1671257804230709 finding:0.14700118426864514 +of:0.47132319024751834 in:0.27573581184361723 by:0.10611259864101896 to:0.08729819670274987 throughout:0.05953020256509567 +and:0.5296970864639818 when:0.19660362342231066 she:0.05480101405816375 by:0.015484343441100381 :0.20341393261444327 +and:0.18515158459424674 the:0.08009919384691828 of:0.059810716548861956 for:0.05326243534877344 :0.6216760696611998 +the:0.6956733108724437 a:0.13964373081020287 distant:0.029415774163398967 our:0.02835126083414582 :0.10691592331980874 +sides:0.30684931950146016 feet,:0.005681536112695207 houses:0.0008984862367807238 sections:0.000620190289236528 :0.6859504678598275 +so:0.2856879312375101 and:0.15186916371735362 is:0.07950898549975231 at:0.06435214913378232 :0.4185817704116017 +so:0.6726822656112418 the:0.1605315413641984 and:0.06792334941042392 its:0.04336642192460174 :0.055496421689534066 +money:0.13320458171472088 money,:0.06570675872443145 that:0.025630176719126905 other:0.022170637032947943 :0.7532878458087727 +the:0.9881854041616319 a:0.004187237828624931 district:0.00310049526259297 made:0.0011513791865176498 :0.003375483560632435 +to:0.13526649724461146 and:0.12153558419128252 of:0.0784028596669496 the:0.06820851953113685 :0.5965865393660195 +(:0.023470414587546114 by:0.019397484922247923 of:0.01811053495921001 into:0.014792811386077765 :0.9242287541449182 +only:0.139583985173908 regarded:0.09065679633992862 taken:0.06457554727418528 known:0.05187900687650729 :0.6533046643354707 +to:0.9936234267824151 in:0.004484315070252062 of:0.0009242018391946178 for:0.0002741218964116829 :0.000693934411726574 +That:0.10725228527710357 the:0.09762232231666967 and:0.08290894458897217 of:0.045131376211608294 :0.6670850716056465 +and:0.1942976689490484 the:0.15696390754810138 he:0.09861909793633658 to:0.09429892188222697 :0.45582040368428656 +from:0.9819581363766091 of:0.008655830785268787 in:0.006378316554055074 to:0.001881655305694411 :0.0011260609783724685 +the:0.529998867824267 our:0.10961550556698661 his:0.05039871732794012 that:0.03811120348022014 :0.2718757058005862 +tion:0.020351707126799425 for:0.01974943021577672 out:0.018231884429230405 and:0.017441485094461043 :0.9242254931337325 +on:0.5016482676856898 in:0.35606663437177616 In:0.039332374723052684 m:0.03325981471948884 :0.06969290849999256 +is:0.49940952327591204 was:0.26004619179125327 Is:0.1695040443402138 for:0.046540543147590735 :0.0244996974450302 +of:0.6939026381745174 was:0.10067064495503582 about:0.06873526666175979 in:0.06382418170634338 :0.07286726850234357 +the:0.1833667173576301 and:0.1390467484673516 of:0.11876821853282067 The:0.11355117872542762 :0.44526713691677 +is:0.23136786192139933 <:0.07020753220318184 has:0.0641128716552232 it:0.05451668839785474 :0.5797950458223409 +the:0.7442178957613494 this:0.13185929031172297 a:0.008185944417006121 so:0.007756784460702114 :0.10798008504921934 +The:0.2586327555766803 that:0.2528966134036016 and:0.2343361383652172 of:0.10757937367206445 :0.14655511898243653 +a:0.48789305364701907 to:0.34941882091590964 and:0.06829979037094946 the:0.013020532982009492 :0.08136780208411246 +the:0.5443333646102434 Mr.:0.11562347276433976 a:0.07434229613081633 tho:0.06607060617090145 :0.1996302603236989 +and:0.4096229332415525 ner:0.004694956421761889 he:0.0019550805615351267 who:0.001950396650250179 :0.5817766331249002 +day.:0.017444533817775054 land.:0.0072184426299093905 people.:0.006102401462879616 city.:0.004947963416905852 :0.9642866586725302 +settlement:0.07312484335744869 government:0.06948743537716733 consideration:0.06753468451368362 President:0.05509587030034741 :0.7347571664513528 +Treasury:0.35500300890421205 War:0.20772558309211508 State:0.07396652651962317 Indian:0.01964730748261278 :0.343657574001437 +and:0.10926987107022855 of:0.0794167553491918 to:0.039048097118402694 met:0.022110564940283742 :0.7501547115218932 +with:0.9901242079577081 organized:0.005549442214456486 for:0.00025658972668401173 to:0.00020870519798419585 :0.0038610549031671505 +miles:0.1250837413880705 men:0.0858407011887269 years:0.058429320276757964 feet,:0.053083784233183745 :0.6775624529132609 +out:0.021534730908692234 up:0.002933557385338178 the:0.0015063581895119525 them:0.0014635236257706588 :0.9725618298906871 +said:0.020104855594588814 most:0.01651267582722198 the:0.014815375468305242 same:0.010606876476933093 :0.9379602166329509 +the:0.18805053050247691 kind:0.05357741620684979 value:0.044186264915104696 quality:0.03910324011632113 :0.6750825482592476 +of:0.016673773885684317 tion:0.009153342613431403 party.:0.007706345217038261 .:0.006371638388818726 :0.9600948998950273 +is:0.7218665088271129 Is:0.11728020080936889 ia:0.07711980450389748 s:0.07520827822102268 was:0.008525207638597918 +sense:0.8763512487328358 all:0.045377304932615416 life:0.01712239086945142 salt:0.004448817845859466 :0.05670023761923801 +be:0.2970667407495291 the:0.12209652592740453 give:0.04627924303102658 make:0.03406777695172851 :0.5004897133403112 +com-:0.06507626044975268 most:0.0283572944938767 the:0.025290915135932363 defendant:0.015341527993307708 :0.8659340019271304 +in:0.4208062261317304 which:0.13807981683852408 It:0.0506562554222068 church:0.04610526051132838 :0.3443524410962104 +the:0.7477878169178459 those:0.08640723883292768 its:0.03690651944777419 a:0.03631525374970106 :0.09258317105175105 +D.:0.1355739409311224 D:0.047148735371464835 M:0.029962533541907792 J.:0.02197818578049545 :0.7653366043750095 +the:0.3441954392324626 Joseph:0.038995552875581374 John:0.030543300435658165 without:0.016285386081359782 :0.5699803213749381 +office,:0.19552729131991664 room:0.015851133651000007 house:0.014571124068486636 house,:0.010560064476429239 :0.7634903864841674 +a:0.6529978951957625 the:0.17390840686904074 two:0.06604968079593714 six:0.03265133349782753 :0.07439268364143221 +the:0.2644654402231034 much:0.1905282850845904 in:0.1430285676675205 to:0.14222259841183713 :0.2597551086129485 +of:0.8228868266344603 and:0.06047640978795929 at:0.02523903704832963 paid:0.022583303272028902 :0.06881442325722176 +had:0.6127222659852254 has:0.296977092383633 lias:0.046606856857960254 having:0.015050032580941263 :0.028643752192240083 +of:0.9517807314095176 ol:0.009742202798934748 ot:0.009325825459675297 to:0.007332687725710275 :0.021818552606162053 +in:0.3190213797508099 that:0.16202036487450222 but:0.14312892919340828 of:0.14132601444736184 :0.23450331173391759 +are:0.2971463290479628 be:0.21048166091932513 is:0.2000430920173737 and:0.09077178059129619 :0.2015571374240422 +as:0.036810074779161116 and:0.035815643464418005 according:0.03026874801341494 feet:0.028704868253259144 :0.8684006654897467 +and:0.22173706662651393 of:0.12248942612886728 the:0.04633969311088235 to:0.04188599091691554 :0.5675478232168208 +I:0.14007315612455937 he:0.11507708791638428 and:0.07144251827353063 they:0.06608420544380325 :0.6073230322417226 +and:0.11959224184546907 the:0.11048499433339308 of:0.09716324119747198 The:0.043699469778260266 :0.6290600528454058 +the:0.4291348356758586 his:0.09574365961547045 a:0.09226153854933848 any:0.06612077583895937 :0.3167391903203732 +relief:0.1738485101325275 sale:0.13794284283757668 food:0.09698738613800352 aside:0.0820205982047709 :0.5092006626871214 +the:0.6654332463577854 a:0.13939238859693373 had:0.06253177257538783 enough:0.05955892437369537 :0.07308366809619747 +and:0.27963647756807347 when:0.2647212468826947 but:0.182997374082101 that:0.12908068034034254 :0.14356422112678835 +make:0.277796175924129 give:0.1365185584952484 be:0.06945463329889563 have:0.06715345877838381 :0.44907717350334314 +that:0.7251483856142307 to:0.026027802335998926 to,:0.007729479759517409 as:0.006131650724213406 :0.23496268156603975 +necessary:0.11778651943462698 possible:0.041621303486587734 the:0.002468458334898648 published:0.00022096098084716496 :0.8379027577630394 +and:0.9933755242494012 aud:0.006485844172449381 nnd:4.895149191512434e-05 or:4.6727075561203285e-05 :4.2953010672951814e-05 +with:0.7619666527942488 on:0.06994583844682732 if:0.04116505648319348 in:0.03989308097183069 :0.08702937130389973 +prove:0.24064345611297738 they:0.20280900275688155 be:0.12921409852020616 I:0.11404785968447784 :0.31328558292545705 +to:0.23594154729244507 by:0.22705325872785317 in:0.14093226957862226 on:0.12942210308587276 :0.26665082131520673 +the:0.02435723413963009 -:0.01818864211583993 in:0.013316503402433988 (:0.01280024158475082 :0.9313373787573452 +distant:0.299515656442801 difficult:0.13002207326951223 important:0.08372980610407098 interesting:0.02130188156769038 :0.4654305826159253 +the:0.028930742945329473 began:0.01694929696026744 those:0.016388258243466694 this:0.007599876506963273 :0.9301318253439732 +latter:0.12377061476700785 rooms:0.0388234472718268 trees:0.03748860419399092 cars:0.01192119036959338 :0.7879961433975811 +his:0.3192488670725741 their:0.24396379165145593 our:0.211365228581502 my:0.09872808387132652 :0.12669402882314143 +months,:0.11900871276481434 of:0.03614274347790028 points:0.02736450197177153 tn:0.022154178752462415 :0.7953298630330515 +all:0.20115396553997586 of:0.06258003553001928 the:0.03240714845376821 which:0.029011561947782094 :0.6748472885284545 +of:0.5439519156623243 by:0.0980313812359283 in:0.05256680386541864 to:0.04928342068436325 :0.25616647855196567 +on:0.9224078847428439 below:0.045589655362353904 in:0.018907199847739392 upon:0.005649643214472836 :0.007445616832589922 +The:0.45125780731290827 and:0.13803139568689285 Both:0.063959249709629 Several:0.05604211618944269 :0.2907094311011272 +United:0.8805038583369517 Southern:0.015126425813496424 Pacific:0.006593920665473864 old:0.005291565252132352 :0.09248422993194552 +the:0.3297673377440627 a:0.058742374449773066 be:0.054324044398431894 tho:0.022253149884120135 :0.5349130935236123 +and:0.13662053609209507 the:0.11047202541458312 of:0.07630827253022514 to:0.04431232753870561 :0.632286838424391 +the:0.6069281978643022 bis:0.12427261363504502 this:0.059160419655911 o:0.027345045412778823 :0.18229372343196293 +up:0.37096631139430253 second:0.009125429524548211 with:0.0033037975549098935 the:0.00207553947722022 :0.614528922049019 +in:0.1902506820719869 to:0.10567680666169413 for:0.054831519417811364 of:0.043656914385415434 :0.605584077463092 +heart:0.1411270691577995 world:0.06274041109187124 city:0.0461620991886339 right:0.04215710897725686 :0.7078133115844385 +aforesaid,:0.19090912214193667 well:0.03841341234355186 now:0.037835907917672155 it:0.019402481950058493 :0.7134390756467808 +from:0.7596311017894108 in:0.005901640465328473 of:0.0002781126001987874 would:0.0001324674905495088 :0.23405667765451224 +strength:0.09359136130157684 of:0.04277645686640525 ness:0.01883200836733645 interest:0.014296086501519464 :0.8305040869631619 +of:0.8187203660342339 a:0.16649629760584195 the:0.005363432143014481 his:0.005326071748734363 :0.0040938324681753305 +been:0.3871494903999592 yet:0.13434467000714537 only:0.06301520786702292 had:0.039446942593137274 :0.3760436891327352 +and:0.20257250094269266 the:0.07187758389138511 of:0.06131099024201984 or:0.04159930150070094 :0.6226396234232014 +very:0.15752647857741806 not:0.15043355742393472 the:0.07732021647371008 quite:0.07388593213059473 :0.5408338153943424 +made:0.1254661651215686 felt:0.0650540124444462 given:0.0645565899109628 pleased:0.04967745074700923 :0.6952457817760133 +not:0.22344949684372953 sure:0.18425068402080277 told:0.18216817147322803 informed:0.13362259009123875 :0.27650905757100097 +went:0.07851211953370145 served:0.07436857115068947 applied:0.05749078038180585 took:0.03158581536023063 :0.7580427135735726 +each:0.6702122523011161 and:0.09273172297245975 not:0.08347501484286476 capital:0.053720069514306724 :0.09986094036925261 +to:0.44216732100497846 in:0.3465667653099244 on:0.142272938115199 In:0.052996341608337126 instead:0.015996633961560845 +the:0.13890068585981952 of:0.07914849689097692 and:0.050046591989983326 Mr.:0.04548293095745451 :0.6864212943017656 +and:0.1210750124132113 the:0.056536157532897396 a:0.04747803732748985 of:0.04350543222440185 :0.7314053605019994 +100:0.08021000276718512 cent:0.030065664435966158 year.:0.026815771605039368 the:0.02278507259503117 :0.8401234885967782 +a:0.5132827798655994 the:0.34970719464444316 my:0.06274553108456347 that:0.028137592681105335 :0.04612690172428839 +my:0.13685693507256438 our:0.10381819558074593 was:0.08093230527542072 her:0.07464256319069246 :0.6037500008805764 +that:0.377208278940883 this:0.09339461389033234 it.:0.03284420621558826 slowly:0.030892585444700606 :0.4656603155084959 +of:0.5242130610297376 and:0.10537630371386224 in:0.06895825723574803 to:0.06435066452999488 :0.23710171349065728 +of:0.9658700068934587 ot:0.010505314064285405 in:0.005890222832929715 ol:0.0053446493342978445 :0.012389806875028062 +of:0.9432013121970326 cf:0.040547504509445664 of.:0.006996011072887413 that:0.005828370648511203 in:0.0034268015721230856 +bo:0.8171245866875482 be:0.1450301316255892 have:0.027584400426534487 he:0.005553613689131653 :0.00470726757119646 +salary:0.07854332308531137 was:0.047914143426392414 that:0.03714835736579316 is:0.03596395118242498 :0.8004302249400782 +he:0.4315401225390526 she:0.15076206307120013 it:0.1304619003897948 they:0.1301893569153738 :0.1570465570845787 +and:0.31015657822503767 that:0.12237407398132534 af:0.11279819700932878 but:0.10213923777290061 :0.3525319130114075 +the:0.28040201150974353 a:0.07369021942310165 actual:0.03460819617784803 process:0.034434447198526764 :0.5768651256907801 +with:0.028931057681924333 said:0.01835714635230492 it:0.017892360412582162 re-:0.0176771305501717 :0.917142305003017 +C:0.15224486159570144 Mrs.:0.13332101207723943 The:0.06907119747274418 in:0.04092343101771957 :0.6044394978365955 +in:0.3581478210093685 some:0.14907637310406566 the:0.1359070303398467 at:0.12739539971299246 :0.22947337583372662 +of:0.8202182211612744 among:0.10486767004105337 to:0.005613230644281329 with:0.00326437358200517 :0.06603650457138563 +was:0.24755121874454833 is:0.23625915021665977 and:0.13765220289534297 been:0.10530055353684406 :0.27323687460660484 +and:0.034760213090640965 people:0.008426834574879393 farmer:0.005801945668145696 man.:0.005357291875600746 :0.9456537147907332 +work:0.10199451246391687 power:0.07038767977999824 One:0.06702945099516552 side:0.06551613386919004 :0.6950722228917293 +and:0.30568315623629494 or:0.11279542837688296 taken:0.0722722636810482 free:0.05994888231451666 :0.44930026939125717 +the:0.09172025866487026 not:0.08956953043203636 in:0.07515015232899025 a:0.07257966406824681 :0.6709803945058562 +to:0.06498085397228127 that:0.06439906019873823 His:0.052263354144451074 for:0.035902609406196995 :0.7824541222783324 +of:0.9680194818678819 ol:0.011602438600750846 or:0.009986642665887141 ot:0.008771167016937123 :0.0016202698485431994 +and:0.13781996600352264 work,:0.0012221350837989114 is:0.0008554064917117186 works:0.0007664126899567849 :0.8593360797310099 +be:0.914516065447625 bo:0.07220294129419091 he:0.004262550416109724 lie:0.0022907670659716496 :0.006727675776102711 +of:0.8761242462361019 on:0.04755601666751304 to:0.026598594236864077 for:0.024794424040428444 :0.02492671881909252 +closed:0.0564807301709905 made:0.018841405507430152 followed:0.018044076012285713 accompanied:0.01711735287022839 :0.8895164354390653 +had:0.33133664426016146 baa:0.18272309350859117 has:0.13745592640029322 haa:0.08210542362259679 :0.26637891220835747 +the:0.38510020249404603 It,:0.24818451560457233 fact:0.19418666261225606 an:0.06188213897296569 :0.1106464803161599 +the:0.6464607155542108 this:0.06424311037191806 in:0.04920373746885445 its:0.049103954912196074 :0.19098848169282068 +closing:0.16039071682956443 raising:0.14370903410241942 making:0.07494662329651647 keeping:0.03972419174159185 :0.5812294340299079 +thousand:0.3006145555602341 hundred:0.13321322384458184 million:0.025102543326919302 .:0.0009858103279084397 :0.5400838669403565 +as:0.3752148034549234 life.:0.14394991763933251 up.:0.053776178659681 ns:0.006920607389841166 :0.42013849285622185 +the:0.8712725250005977 our:0.06087552897609149 The:0.02650118678720765 and:0.016597530465918636 :0.024753228770184554 +the:0.9085295458308675 a:0.024819516565638886 to:0.02192234249592668 by:0.013116976407942271 :0.03161161869962455 +He:0.3282229090989416 and:0.10346147473790278 who:0.08944859720021549 he:0.06986763893500546 :0.4089993800279346 +J:0.3048185052343109 W:0.1402680086357985 thence:0.12463801052335137 H:0.07927060602621147 :0.3510048695803277 +at:0.8921806554073072 about:0.05510024255463917 to:0.025044248462793548 as:0.011085644102915545 :0.01658920947234468 +government.:0.09244198482632004 people.:0.0031669078076111755 and:0.0012685448104696147 home.:0.0007888325268043584 :0.9023337300287948 +and:0.1508624660345935 with:0.07858993344536605 a:0.07843357405549717 to:0.07515672170457488 :0.6169573047599684 +to:0.9996834724799226 will:8.169189309200428e-05 shall:6.47526464682874e-05 which:5.774386239342246e-05 :0.00011233911812352974 +and:0.08429875540719309 were:0.03987090497091834 was:0.038765282690925364 are:0.0316699938182721 :0.8053950631126912 +known:0.1668915781851371 that:0.07602368358103727 as:0.028055689281061984 before:0.024401450312363293 :0.7046275986404004 +It:0.24588786252072348 it:0.10841340320178355 a:0.08343713375074441 that:0.078990491620374 :0.48327110890637454 +he:0.17245277752666002 He:0.16319216431789632 It:0.10008089101341154 and:0.0928904059573776 :0.47138376118465464 +go:0.432990603526932 fear:0.07342085439153168 get:0.06567355459473066 come:0.01810826082270945 :0.40980672666409623 +the:0.5291894386372441 their:0.26272206300426154 these:0.09594703369638348 his:0.04066137072487538 :0.07148009393723552 +in:0.4810560298285265 and:0.16928697640268092 the:0.0685436491291679 In:0.05172876845487894 :0.22938457618474578 +character:0.09952641543152581 efforts:0.08955273375755708 time:0.08269162087947199 request:0.07655532786589314 :0.651673902065552 +times,:0.03202035755880277 times:0.01623327975217106 use:0.011070271002492546 prices:0.01057508158623297 :0.9301010101003006 +is:0.7048076944268235 was:0.16543199680956872 13:0.06346020590824165 Is:0.04251505490214307 shall:0.023785047953223212 +of:0.5838973553635428 in:0.41174921404974685 here:0.0019062959246158402 or:0.0010110308204805375 :0.0014361038416140395 +and:0.041118124799363984 or:0.009704880026388366 water,:0.00959028382688491 districts:0.005853271302396709 :0.9337334400449661 +spirit:0.20592073178903722 morning:0.041248542975259886 North:0.040909943013338966 arrest:0.039094778863130335 :0.6728260033592335 +important:0.5219173173249768 good:0.0846050389129345 valuable:0.04519278212780809 interesting:0.04051905374851075 :0.3077658078857698 +made:0.014265614790056865 is:0.011087355695232465 of:0.005214257044295479 was:0.00460831999497398 :0.964824452475441 +little:0.01795453368752588 If:0.006520894822691735 glad:0.00596110730132242 weak:0.005098417723117588 :0.9644650464653425 +to:0.9459939867877554 and:0.022146826835166264 a:0.006028150217368076 te:0.0021796997373372175 :0.023651336422372892 +purpose:0.22574815603302298 sale:0.04800790952119613 sum:0.04691386235016106 hearing:0.024783395011297976 :0.654546677084322 +has:0.21344465380522035 was:0.1826414147793524 waa:0.07262058722028317 had:0.0681671604289912 :0.4631261837661529 +in:0.2653806988293994 In:0.2053216899126733 see:0.10297134589553386 along:0.09716222321038787 :0.3291640421520056 +and:0.0890780647888918 is:0.05617669979931337 was:0.04394377310140895 are:0.04131962898228999 :0.7694818333280958 +a:0.23121009327814104 the:0.13993050755290368 in:0.11006008316270821 above:0.07834056772969969 :0.4404587482765474 +the:0.22547240574536995 his:0.041513410130405166 other:0.03990508434142469 tho:0.026275495517006104 :0.666833604265794 +be:0.8683837322265471 bo:0.07799899121193535 he:0.020248641085126976 lie:0.019374804522016696 le:0.013993830954373683 +and:0.12662103912954678 of:0.11525510316129414 within:0.11198118024090957 the:0.0851500385391739 :0.5609926389290755 +peo-:0.6011652844070025 the:0.033580906284181394 ap-:0.018589560391440812 B:0.015434589383379273 :0.331229659533996 +will:0.7643651788174435 would:0.0703531891566805 can:0.0653020329607798 may:0.04178636205456987 :0.05819323701052644 +He:0.40009636328490056 It:0.38235883569384227 She:0.05201205033197091 They:0.02911355219273982 :0.13641919849654652 +meet:0.1820165730506694 look:0.1551037612011304 read:0.06247488314909911 be:0.04986150008767906 :0.5505432825114219 +United:0.7414683763034423 U.:0.113904359763227 Pacific:0.06447118845189759 Western:0.02508197590383091 :0.05507409957760226 +the:0.7038386228953964 his:0.10489354443645127 that:0.07528930543251988 a:0.05591243191303379 :0.06006609532259879 +of:0.3084863628473859 to:0.13059835594991978 in:0.12315617231010381 and:0.08876497253716445 :0.348994136355426 +least:0.02173220091563725 medical:0.012745900101839982 present:0.010176814787950057 i:0.007090436062978403 :0.9482546481315943 +of:0.5767624625301933 and:0.09427439313801655 in:0.049181058652979566 with:0.03846414172418673 :0.24131794395462397 +the:0.9998443206432374 tho:4.7815101903214954e-05 no:2.6141544696874013e-05 thi:1.202542692219949e-05 :6.969728324022945e-05 +its:0.7377701519577858 the:0.07201208064483487 Its:0.03376343845803686 their:0.024876397532464286 :0.13157793140687818 +the:0.35958722246196856 take:0.16464044849177428 be:0.08722392130704014 his:0.055348144705910866 :0.3332002630333062 +of:0.5876549456978093 and:0.09757375174487139 in:0.0691633726328054 with:0.04958320680041595 :0.196024723124098 +we:0.14354779751076163 There:0.13599005094274952 and:0.11275464410551389 We:0.0939037901908886 :0.5138037172500864 +made:0.2058317860397426 paid:0.1517985140824496 held:0.05967489155102159 urged:0.055557100471946605 :0.5271377078548396 +done,:0.02169063642334759 ;:0.020777094371695375 done:0.020351167215888175 made,:0.006017108273202234 :0.9311639937158667 +with:0.5241032210062985 in:0.24699441706118536 by:0.1173615521605368 on:0.042985254944862133 :0.06855555482711725 +posed:0.029822267662640713 pressed:0.007426304246847495 ample:0.004591589887292265 port:0.003728714476900206 :0.9544311237263193 +of:0.25246451331407155 and:0.1760515685076107 Land:0.06007402713331515 the:0.046948894876847766 :0.46446099616815484 +one:0.21879339490476957 some:0.1108551616391756 out:0.09100224255523442 part:0.08564476015590872 :0.49370444074491177 +hand:0.41882140034608933 it:0.15187013310003378 put:0.036856873104334824 nut:0.03311040304977846 :0.35934119039976353 +of:0.9356741038014893 ol:0.01890662952645277 to:0.014706062607732141 ot:0.011203205598397993 :0.0195099984659277 +a:0.3749937006227949 the:0.1367815580544507 an:0.08561339198798372 not:0.06876726858222106 :0.3338440807525497 +Judge:0.6388662608143167 the:0.11370345702556747 lor:0.10070014938440565 in:0.07563344503683295 :0.07109668773887706 +old:0.003709371777950483 and:0.001833390928789384 so,:0.001253850882965263 I:0.0012229437528305782 :0.9919804426574641 +way.:0.016465153629619266 party.:0.005615142991601046 home.:0.002531301656482663 country.:0.0022418927020015295 :0.9731465090202955 +at:0.07853056300631868 country.:0.0506067720676197 of:0.04449260223584484 country:0.03894755194711651 :0.7874225107431002 +more:0.2053543877941502 is:0.053900784194475006 questions:0.035508617880757334 thing:0.03100718704472202 :0.6742290230858954 +the:0.1880869728689964 payable:0.08358859831696872 a:0.034313614397682136 other:0.03120260508617022 :0.6628082093301826 +that:0.3047832121343091 and:0.15108374549796014 which:0.1455873288352534 where:0.06598315868460788 :0.3325625548478694 +way:0.003757281008953727 failed:0.0029473620053393546 its:0.0018431980612583225 and:0.001551338075378976 :0.9899008208490696 +have:0.493771975026954 would:0.12246466925290915 and:0.02398695903650504 with:0.019661685834573107 :0.34011471084905864 +the:0.23869633261664736 other:0.09640512538124973 persons:0.0874172588079064 that:0.056712317336033706 :0.5207689658581628 +found:0.6041378086202005 and:0.1874065896238403 so:0.04421957650850446 I:0.01772939986001355 :0.1465066253874411 +by:0.021142033824767117 was:0.015244677853899043 when:0.014578864537851143 of:0.012311777039381772 :0.936722646744101 +the:0.35985330338247074 a:0.09513479874846699 their:0.07233011567732153 least:0.06698128689711963 :0.4057004952946212 +the:0.6405203318448907 a:0.0960546836615802 tho:0.040343322448621426 some:0.03688831437057739 :0.18619334767433038 +and:0.1340941172641457 corn:0.11058581111008615 sold:0.03402922787016872 bushels:0.03329562904141671 :0.6879952147141828 +came:0.13028678901927204 in:0.05538273736554861 the:0.030841152091006765 that:0.024612290143768555 :0.758877031380404 +French:0.0574256807290401 unknown:0.03017343323366936 famous:0.018996587012581473 the:0.01467974169225363 :0.8787245573324554 +time:0.5619924295751868 moment:0.10488774670804833 late:0.02525135315539853 beginning:0.018468458815830258 :0.2894000117455359 +the:0.28117822207235094 a:0.2465149486992448 an:0.040206990979415276 his:0.03982802539585173 :0.3922718128531373 +own:0.16513621243648888 new:0.03980974082161583 natural:0.025084675355286315 mind:0.024151598153818545 :0.7458177732327904 +the:0.2795383371422827 you,:0.21790330241914618 be:0.13391678451357228 present:0.11160910490525702 :0.2570324710197418 +and:0.43469377487228195 be:0.07420730486080512 interest:0.051369985060696594 is:0.03830989744585366 :0.4014190377603627 +J:0.1775819370085241 W:0.12867981072240386 A:0.12659247287605854 M:0.06779731877849397 :0.4993484606145196 +pressed:0.28949409050259445 of:0.00010390556528604931 to:8.800136002780862e-05 and:5.4408874763232436e-05 :0.7102595936973285 +it:0.4803484201395181 him:0.10725235952529212 you:0.08065976936343139 himself:0.03669647427005704 :0.29504297670170126 +of:0.9529643746575871 ot:0.012347994095660775 to:0.00952497385041263 with:0.0058039937784833615 :0.019358663617856122 +and:0.12655102366062168 the:0.07842435468450401 of:0.0734328068240988 to:0.04504498506205993 :0.6765468297687155 +May:0.23224745110452627 they:0.2241205937830821 we:0.058826829638325785 there:0.03814229130797009 :0.4466628341660957 +It:0.14521903461860403 which:0.125891671284939 it:0.12351111339978148 that:0.07897679314381159 :0.5264013875528639 +of:0.820002462635007 the:0.0644471353379632 in:0.058535082681012034 iu:0.027987338331901975 :0.02902798101411581 +of:0.3159554583672612 in:0.22442444778967924 on:0.11209207879575031 and:0.09126506990922206 :0.25626294513808734 +and:0.16523677055497318 the:0.08715707504530182 of:0.0789302983113745 to:0.04960778174812739 :0.6190680743402233 +is:0.3161152143270995 was:0.15965806857712128 has:0.0956037539832735 may:0.04765505657898397 :0.38096790653352175 +the:0.6189806989832413 legal:0.0330613112415049 w:0.03102622877371539 our:0.01943606571456443 :0.2974956952869741 +of:0.9596135339151701 ef:0.01334339825709964 or:0.010360576299674658 oi:0.00819708957902714 :0.00848540194902835 +a:0.5040065646380593 an:0.29027800829853145 not:0.07475264530216132 one:0.05188817122155433 :0.07907461053969381 +be:0.9700641316728958 bo:0.017968463008519942 he:0.007839034218826401 was:0.002626549033398866 :0.0015018220663589239 +has:0.9395947646253718 was:0.035809935205258894 spoke:0.0024602789115136248 had:0.0008440677612812576 :0.02129095349657433 +who:0.5367517508944835 and:0.2083542932525586 to:0.0795229246852643 not:0.05106786246391552 :0.12430316870377804 +ever:0.6822040304713672 done:0.1242621559583907 been:0.07222278375615156 never:0.03484258618923789 :0.08646844362485255 +in:0.991039212458051 In:0.008741785655318631 and:7.035772355547555e-05 from:2.9103314109966857e-05 :0.00011954084896488983 +and:0.29794586612916735 where:0.14535575260008574 or:0.1233258124073105 with:0.11356353447232231 :0.3198090343911141 +States:0.5306919105785571 States,:0.012947697962401163 States.:0.01253671041416785 was:0.00856841826852977 :0.4352552627763441 +the:0.671026714408409 Gen.:0.0965450821554081 General:0.08215059562436808 tho:0.052257307286910616 :0.09802030052490422 +that:0.5432779741523932 which:0.128578469179475 she:0.12626455094822062 calls:0.08332597177290348 :0.11855303394700778 +of:0.11029060755380517 the:0.07504775625864556 and:0.06472111951205284 to:0.03926323916827564 :0.7106772775072209 +a:0.05120328920806539 Mr.:0.03456373280520034 taken:0.03263881367996806 the:0.030059556495914085 :0.8515346078108521 +seem:0.9754579109427207 mean:0.006559273619876787 appear:0.004025908199241856 be:0.0008929624814621962 :0.013063944756698531 +upon:0.5205799364409337 in:0.11721533961010881 by:0.07999152301116837 after:0.0710162607416529 :0.2111969401961362 +in:0.43075321721643256 by:0.19847805960294995 to:0.1188818969071942 at:0.08236869183167296 :0.16951813444175046 +has:0.23001465264899737 had:0.18437875023550732 was:0.13126660744088223 found:0.12036514660581948 :0.33397484306879366 +I:0.2509691737923533 he:0.10269790103583372 she:0.06563881211351431 we:0.06543464824435102 :0.5152594648139476 +price:0.08725034610657088 race:0.028568433099186868 order:0.01626844457563879 sum:0.016104435442097186 :0.8518083407765064 +and:0.1261165281409242 which:0.11453639942709931 But:0.07277909805748559 that:0.051023080687839936 :0.6355448936866509 +a:0.22397163488219943 the:0.09927360641916988 an:0.08043482687145223 to:0.05540097468864726 :0.5409189571385312 +make:0.10974526989766001 let:0.08149443279212333 perform:0.0675906176809047 forget:0.06750340298420321 :0.6736662766451088 +with:0.8381287847556725 of:0.06140141721594712 and:0.02717232112106543 had:0.026367169603874294 :0.046930307303440506 +lime:0.8304567702199666 time:0.16304597937636572 times:0.0027338635744491753 five:0.000855126101857427 :0.002908260727361092 +the:0.18902729804121327 that:0.036760029629763866 Third:0.017737511935402947 B:0.014594916267779421 :0.7418802441258406 +though:0.4456605864392799 if:0.3615369838927541 it:0.10016807035453487 If:0.03899104102573518 :0.05364331828769592 +It:0.2622360327536006 it:0.18548681961376084 he:0.10061925756978152 who:0.09528573962188737 :0.3563721504409698 +healthy:0.20720744298090565 the:0.0362621634190276 future:0.027608428847781783 re-:0.025914683414168277 :0.7030072813381167 +and:0.26834077403104784 of:0.11663846909170121 Yet:0.047554149085102956 in:0.046987678321036216 :0.5204789294711119 +and:0.3084212388320362 taxes:0.07481025342249258 tion:0.07374896779206729 be:0.05378232503724812 :0.48923721491615574 +made:0.7313458965387821 made,:0.012851274084154044 commenced:0.011458349080104922 not:0.01138255279725348 :0.2329619274997054 +In:0.5250624230444557 in:0.4235460544885205 have:0.0074769756136450665 took:0.005351582262562027 :0.03856296459081683 +situation:0.06826430757667162 land:0.061620057264473796 should:0.0336436763512154 government:0.031975042799993726 :0.8044969160076455 +physical:0.09971960371584782 natural:0.060757744981856376 social:0.03685014907952804 three:0.03354265545218156 :0.7691298467705863 +a:0.9869470935011323 very:0.005614522153392345 a.:0.004619640510233706 somewhat:0.0014565262777269782 rather:0.0013622175575147303 +who:0.25859930643193935 which:0.13539900890799744 I:0.10649924232901005 We:0.08191412859044686 :0.4175883137406063 +and:0.04338520190523831 the:0.041343956487498966 of:0.018526698549255323 his:0.015020893551801924 :0.8817232495062055 +and:0.27536347241922476 in:0.1510393722933363 of:0.1013122096650937 with:0.08511531773838521 :0.38716962788396 +an:0.45898200530869526 one:0.3325249709377332 the:0.10120466598777816 considered:0.06457140389302082 more:0.04271695387277261 +sat:0.366406468950503 was:0.3562021891945223 Is:0.1247658051139541 is:0.05380326913993188 :0.09882226760108857 +yet:0.8682969402982449 since:0.030015380700067564 this:0.026279812221905275 actually:0.015067033200666454 :0.0603408335791159 +pro-:0.7324529681950249 pro¬:0.10634431148285504 pro­:0.013449572334635698 pro:0.01044430183783244 :0.13730884614965197 +man:0.05065153507824904 offer:0.030045751033452493 officer:0.010754530361028984 enemy:0.0059276796569994825 :0.9026205038702699 +great:0.01539177878988922 large:0.015319851048011748 making:0.006118311133147783 the:0.006081613945907396 :0.9570884450830438 +few:0.04363547647650084 great:0.03538692875686164 very:0.026711664460954004 large:0.023880283848330318 :0.8703856464573533 +the:0.9781957903737661 his:0.010500163786293721 your:0.003881595964128155 an:0.002966541624322637 :0.004455908251489293 +profit:0.05420147996113473 strength:0.050723875711624795 amount:0.03463087424832235 survey:0.030262217480694867 :0.830181552598223 +the:0.15108388899904795 and:0.10716240692340327 of:0.09006626096324619 The:0.06817808511845008 :0.5835093579958525 +of:0.0859107880535042 and:0.07435807501347205 the:0.06878131146652038 to:0.036115988586666606 :0.7348338368798367 +more:0.0008740357256509675 the:0.0007869748315360839 so:0.00042285880478344043 connected:0.0002593840750788743 :0.9976567465629507 +November:0.041994139691286875 and:0.03296770281072541 at:0.025888222759463234 the:0.01862089747379823 :0.8805290372647262 +the:0.6742622033133014 building:0.07198241985571538 cold:0.031119921704303173 all:0.024586674534793598 :0.19804878059188638 +.:0.8741467429254651 C.:0.00842104408365188 S.:0.0063704001852038705 K.:0.004998391985669118 :0.10606342082001007 +to:0.30164858150098744 him:0.12917622125916978 her:0.12438222063758989 one:0.08634170076434745 :0.35845127583790565 +hold:0.47500292363270896 make:0.048677560583434636 of:0.004329528640812542 to:0.0024305223993054464 :0.46955946474373833 +the:0.2726214841953692 to:0.13365783560089006 a:0.08943646788114648 his:0.06996428745111499 :0.43431992487147936 +find:0.22243366564729772 get:0.21473928502477638 pay:0.1723700449020454 carry:0.1695247188821516 :0.22093228554372885 +of:0.6833819119950605 in:0.145486415428744 and:0.12344637826732156 the:0.0072596760254682825 :0.04042561828340584 +and:0.2385442478131043 of:0.12784943169709212 to:0.12340359826804408 which:0.038659391204144994 :0.4715433310176144 +West:0.12096273084363768 petition:0.11991796380053223 tax:0.08611324066531963 is:0.08437343964595287 :0.5886326250445576 +form:0.14940299844229685 number:0.09793718374146282 possession:0.05512539171362098 hands:0.04677746341306441 :0.6507569626895551 +dollar:0.3914819521668079 hundred:0.14936117613043232 for:0.05408370235674266 thousand:0.0472734655485603 :0.357799703797457 +game:0.2436217967977183 warm:0.015056842722118116 out:0.013784136769198155 help:0.010696380420484944 :0.7168408432904804 +is:0.17359217942590707 sister:0.1646976085943577 of:0.14665416825204003 wore:0.14130431471927515 :0.37375172900841996 +such:0.03331086577750393 vast:0.030943903766243307 vote:0.022350807884253674 people:0.01727483162373602 :0.8961195909482631 +of:0.8142144070699416 to:0.03211277970200977 and:0.01968644589708453 that:0.017023823953978157 :0.11696254337698596 +and:0.24300631312442053 to:0.11061219949355237 of:0.09960713655930832 which:0.05335330477366295 :0.4934210460490559 +and:0.7183521023265543 to:0.06637792097006529 he:0.056539862679145965 the:0.02169887082542267 :0.13703124319881174 +me:0.4338134326537575 directed:0.15286318913978034 license:0.042944622437066475 and:0.03428386832878932 :0.3360948874406064 +tba:0.01511547393583057 square:0.004489320801715598 the:0.003944369883328874 ar:0.0004797181725154255 :0.9759711172066097 +and:0.06172564803904069 of:0.041675840475225046 .:0.03877156090387093 the:0.03501245618852226 :0.8228144943933412 +deed:0.16863907784047616 fact,:0.08959071298029825 the:0.05662925956963429 such:0.02436793347003607 :0.6607730161395553 +Miss:0.09118818189621772 of:0.06312682098616863 Mrs.:0.05786250074320709 and:0.05727313618227807 :0.7305493601921283 +where:0.41442634660710204 of:0.03934502983255625 decree:0.03253295586938088 general:0.030034903614794755 :0.48366076407616604 +the:0.4039312518254483 The:0.2417835401573222 and:0.11558218902876106 at:0.07351514092247044 :0.16518787806599783 +on:0.3306418424134365 that:0.11604885596347478 and:0.09191322432219927 but:0.07542428518923544 :0.38597179211165417 +and:0.08996761329412849 they:0.07796348965145466 live:0.04974071946292742 years:0.03964664542501416 :0.7426815321664753 +it:0.3969655522067876 why:0.3865549329558083 she:0.10466434419199012 and:0.07577404607621807 1:0.036041124569196024 +and:0.05867403829091638 the:0.05033394076026936 on:0.04544529541249833 now:0.04459620883496153 :0.8009505167013545 +in:0.04587098206296818 to:0.010611334110753632 regarded:0.009374261321749688 re­:0.008666839954914862 :0.9254765825496136 +the:0.5692642646330774 if:0.05091630607527759 our:0.026748602963697736 interest:0.02218747310481119 :0.3308833532231361 +of:0.9436628072983035 ol:0.023716407648368323 ot:0.01394531714797771 or:0.002825442532899279 :0.015850025372451094 +will:0.4117523895479558 may:0.16635690138568468 appeared:0.09005171676071973 is:0.08012386070759482 :0.25171513159804504 +accepted:0.12327520754426734 only:0.08833308239454281 probably:0.07092492966595411 not:0.06730927375322536 :0.6501575066420103 +it,:0.5736727992559661 it.:0.32610282683906755 it:0.045715113428786536 him,:0.0020423446302317515 :0.05246691584594808 +law.:0.04893874016515373 time.:0.008156200477257323 trade:0.008081343328623355 state.:0.0063737727304731115 :0.9284499432984925 +sent:0.1258774305355946 new:0.08973931178045266 sold:0.07152756314590293 carried:0.06914811112939799 :0.6437075834086519 +thence:0.5172366679719136 street.:0.05570197036466879 at:0.04783767553647853 J:0.020743811299743297 :0.35847987482719584 +the:0.9212531432685094 tie:0.027665962612523593 tho:0.023507500984254113 its:0.012442554386608263 :0.015130838748104605 +say:0.24370638780174764 know:0.21588470427660827 believe:0.1727857083155752 learn:0.10544971374933591 :0.2621734858567329 +in:8.69609335880532e-05 ;:8.039372820952005e-06 old,:5.977763524105678e-06 George:5.379869107729996e-06 :0.9998936420609591 +an:0.9390148211038393 without:0.013234402975767093 and:0.009035414092494337 every:0.008364938582883308 :0.030350423245015915 +and:0.2891484134745446 the:0.11222268603171422 to:0.09656507268726688 with:0.08403420633826814 :0.41802962146820616 +sea:0.1554002558594375 or:0.09986208063952146 thousand:0.06002071024438725 days:0.0337088429539466 :0.6510081103027071 +be:0.7393821965262184 the:0.08780458856645347 bo:0.04941678632137687 this:0.019308188646490546 :0.10408823993946062 +of:0.8639744773750073 If:0.02587866402156837 without:0.02450027498111452 to:0.02279696617741243 :0.06284961744489716 +office,:0.27394108777670567 coat:0.08681711342431285 party,:0.07405172707030655 house:0.04707388658404464 :0.5181161851446303 +ty:0.15409090827549815 ties:0.09211462697279232 pose:0.03265207078242413 took:0.025971952539467866 :0.6951704414298175 +a:0.3876714265767492 the:0.20155469140730384 an:0.15961143751042042 not:0.02203051881102002 :0.22913192569450644 +and:0.0730437925602813 of:0.024339455513645664 office:0.019160004537284163 river:0.01858882655006011 :0.8648679208387289 +times:0.48588008827997486 is:0.03442532693227516 except:0.02521903594902232 due:0.02118129926836655 :0.433294249570361 +not:0.9315887448972126 never:0.06217277667414656 all:0.004299032225988886 uot:0.0014419061408205173 again:0.0004975400618312835 +extent:0.08152875585232977 further:0.07470737965072906 at-:0.06789660801467677 ex-:0.05145136320933666 :0.7244158932729278 +the:0.2254356035444798 which:0.1281728549223981 it:0.10171818758596489 them,:0.019732274863633156 :0.5249410790835239 +One:0.23560107594153173 yards:0.2065406946852943 in:0.12227303884248607 one:0.09486974024739107 :0.34071545028329686 +the:0.16390920239774753 district:0.12152205131957151 supreme:0.08709520150180157 in:0.07558224838023074 :0.5518912964006488 +State.:0.011019829506286034 city.:0.004712257528327736 country.:0.0013606374556459789 war:0.0002902366090289954 :0.9826170389007111 +the:0.15266260760222575 of:0.14439481787373296 large:0.0566277132281372 have:0.03615227896992327 :0.610162582325981 +of:0.7750210111665705 in:0.06475342880245169 about:0.026837033538056373 through:0.020275918262501323 :0.11311260823042008 +the:0.4563744805044369 this:0.08087584201832625 his:0.04801018871488265 one:0.04453356059256271 :0.3702059281697917 +of:0.7986556122929266 ol:0.05497434632678032 af:0.03038341217370916 and:0.023918883730626325 :0.09206774547595761 +city:0.14987463646070137 town:0.08472897891969253 town,:0.04971977263042277 country,:0.023607562074835154 :0.6920690499143483 +eat:0.420805322894379 played:0.06626545390195382 was:0.06526953141730395 were:0.03820139011276386 :0.40945830167359926 +of:0.23044853779558058 and:0.06919851879955322 is:0.04292929348233106 was:0.04206304271361718 :0.615360607208918 +and:0.2022609225352276 ment,:0.12037314412881642 The:0.10515249122305048 that:0.08003573121003679 :0.4921777109028687 +worked:0.14973262581204433 to:0.08645979435185294 used:0.07281865128032197 made:0.0623956054449669 :0.6285933231108138 +and:0.20253768897204127 jury:0.17829815470291016 who:0.11829415514451587 they:0.056344169282553334 :0.44452583189797945 +think:0.18776035691661777 see:0.09957468443609174 ;:0.03341157519406284 0:0.008211269340500253 :0.6710421141127274 +and:0.17881406669996436 the:0.08594870537644207 of:0.05539558541433639 to:0.03571279106339417 :0.6441288514458631 +one:0.7086589099940419 out:0.026980454098835205 president:0.026179847055489727 chairman:0.01718110241704016 :0.22099968643459314 +the:0.9449209153385472 this:0.025858807113330225 a:0.013540084108326467 tho:0.012840054094994236 every:0.0028401393448020404 +other:0.4290986237398684 particular:0.025544378347363027 one:0.016456944663012157 American:0.004149135269177487 :0.5247509179805789 +not:0.6122528796098791 be:0.0462400691586638 have:0.01283368974552607 no:0.008982805905896323 :0.3196905555800348 +each:0.3220796817270714 the:0.21509525665499393 this:0.07480594445319606 east:0.07284985506937393 :0.31516926209536483 +of:0.288945650239577 and:0.15997051515361996 to:0.06469932168137181 aud:0.046588936525047246 :0.4397955764003841 +the:0.15568899602137176 a:0.12079301642623409 interest:0.06344044374726968 find:0.04203135399884532 :0.6180461898062792 +the:0.5666442510606149 tho:0.07950033907987984 a:0.07649605974334756 official:0.06709006897554644 :0.21026928114061127 +at:0.4902354091757498 At:0.17710159707390197 about:0.1686362581840363 until:0.08879579971096667 :0.0752309358553452 +is:0.8367790168731867 was:0.06502192704010318 became:0.05833260996367464 becomes:0.028632175027838234 Is:0.011234271095197333 +matter:0.8020079280604383 husband:0.012475734005593693 word:0.010042334738080465 men:0.009987509429277572 :0.16548649376660998 +to:0.8773074674443312 and:0.002426290252260867 a:0.002064181033864276 lo:0.001601203623592121 :0.1166008576459516 +more:0.1309253973310685 and:0.008661262705157389 street:0.005940865564308416 without:0.0036927904364690792 :0.8507796839629965 +of:0.9531095231823059 ot:0.016064514679035136 ol:0.012903881051872575 the:0.008613045489305991 :0.00930903559748034 +That:0.8199083355608037 for:0.06327033815057691 that:0.03842127164764285 to:0.024999435916215874 :0.053400618724760526 +and:0.2532441483862012 the:0.226906182126329 of:0.058404202834967264 we:0.0548957588266803 :0.40654970782582234 +manner:0.3855618380337846 way:0.20813416654653744 policy:0.04141131247605197 route:0.038202513203896546 :0.32669016973972953 +to:0.8827378362823693 only:0.04029465636151436 will:0.02644030254924605 now:0.0066298380142262485 :0.04389736679264383 +the:0.8168807036467757 a:0.14563686925213618 of:0.013131152322258486 and:0.007367733999999551 :0.016983540778830256 +on:0.6802965492806209 off:0.31681650664562655 ou:0.0012406936379197992 in:0.001007474439256985 upon:0.0006387759965757078 +have:0.16052748029545763 are:0.1447011187755473 were:0.07119027168387555 had:0.06941761731443269 :0.5541635119306869 +ness:0.051071419147875 and:0.014058382102532954 company,:0.012868231722258806 ing:0.008775326533540038 :0.9132266404937933 +forces:0.03738079260699939 votes:0.014269102446978566 States:0.011349613819197501 is:0.0038234549549664857 :0.933177036171858 +the:0.14319699302982172 of:0.14117246751740165 and:0.0633924620263276 to:0.05030490743263493 :0.601933169993814 +years:0.3782643398052364 months:0.32546101156836155 days:0.1214647346284593 weeks:0.049132214669085225 :0.1256776993288575 +matter:0.14745768039244067 difficulty:0.09268908073632044 box:0.09019652333510492 law:0.08731577681161479 :0.5823409387245193 +to:0.35579932430744143 with:0.27864655629035723 of:0.06649833815368765 out:0.05223191181680127 :0.24682386943171242 +did:0.3913811002922357 would:0.36756441417133445 can:0.0845287302714494 will:0.05199272395978623 :0.1045330313051942 +When:0.6252839412742739 The:0.17956655524643023 These:0.027649854992113195 Our:0.014943953947317408 :0.15255569453986526 +same:0.31814244963773675 water:0.21166439827053138 war:0.0582273847920857 case:0.01739241211117153 :0.39457335518847464 +in:0.25232644032081886 of:0.23591636655891948 to:0.16423922614632003 by:0.13943231638538067 :0.20808565058856107 +of:0.7786043456472628 for:0.14348712408612685 to:0.02647857800295756 iu:0.003907148557207393 :0.047522803706445585 +six:0.29027666604131164 12:0.1991495111900986 ten:0.17596071091303506 twelve:0.17534222510890288 one:0.15927088674665196 +ment:0.036888491849493596 had:0.01298723196708696 cent:0.003320045771133589 and:0.002026273778057697 :0.9447779566342281 +as:0.3324665919933181 to:0.15838211870488805 stopped:0.1266393273531355 the:0.12498772827376627 :0.25752423367489224 +on:0.0833902906685318 cent,:0.07366550282575254 day,:0.025857747224855655 day:0.0243597357304521 :0.7927267235504081 +method:0.28855844815875015 sight:0.09972078077743789 report:0.08187076599059982 rate:0.027094890045481042 :0.5027551150277311 +simply:0.08247640247592973 and:0.051243426852185706 men,:0.04360629782563897 heavy:0.03787084177377814 :0.7848030310724674 +large:0.42317540639776363 certain:0.19877975174630147 considerable:0.1434355383696059 greater:0.08320172217547286 :0.15140758131085613 +and:0.33895708091412513 but:0.12741351776199678 was:0.10193742855651246 is:0.07047520732532879 :0.3612167654420368 +road:0.177530943850788 river:0.09693252606505663 street:0.0181882084652072 back:0.01711708929608224 :0.690231232322866 +the:0.2537712006216895 a:0.05312851550937802 that:0.035669063644807146 his:0.02656055748660684 :0.6308706627375185 +a:0.7553103385892609 some:0.07721512646509716 great:0.07512126084480315 considerable:0.059444076559925015 general:0.03290919754091387 +and:0.10567886226464278 the:0.08721746495355134 a:0.07346793034215415 or:0.07329162103886087 :0.6603441214007907 +known:0.7987921440556666 dressed:0.006469384140594014 fixed:0.005230089477139376 again,:0.00204168572589997 :0.18746669660070023 +campaign:0.05071425000695507 member:0.030933578346456537 portion:0.026957239409071597 out:0.02611839707038371 :0.865276535167133 +of:0.8165355377395854 con-:0.08969487256646905 to:0.009544889255578873 in:0.008158893581587145 :0.0760658068567794 +i:0.012871784758861023 ing:0.008115774488674062 come:0.0027244054032719484 comes:0.0026627208355631646 :0.9736253145136298 +be:0.3693917497508604 ::0.224200260030784 and:0.07052757367812357 or:0.05444752604951814 :0.2814328904907138 +that:0.6403824933638138 with:0.07493256484376325 is:0.0649762573332158 and:0.05159024202278153 :0.1681184424364256 +and:0.1808656417168127 of:0.067526842119429 to:0.05471290062694681 the:0.04338644373783331 :0.6535081717989782 +him.:0.31960717374276987 it:0.1124632591459034 the:0.10832451532780417 it.:0.06326350838508497 :0.39634154339843763 +the:0.7521541932528854 tbe:0.1465500314283565 tho:0.05786328862077293 The:0.033624205805690255 tlio:0.009808280892294867 +and:0.10030443952786905 the:0.06710818196029973 of:0.06573284982476428 The:0.05401711297961126 :0.7128374157074557 +the:0.9254888625691697 a:0.015910175621111557 that:0.015448594452973044 his:0.004976458255249198 :0.038175909101496305 +do:0.07847926829309758 did:0.053501832838649885 will:0.04615945274502631 shall:0.04168781707371093 :0.7801716290495152 +in:0.9013928410072044 In:0.08966902144835208 iu:0.006244271511199759 shown:0.0010630866420157487 :0.0016307793912280315 +the:0.8453731363724798 th:0.04374291460445338 his:0.039529043980322774 their:0.03804756971616947 :0.03330733532657488 +and:0.13572655862539373 of:0.1026012042573223 the:0.07192754762875307 a:0.05365415387197071 :0.6360905356165601 +they:0.44887234085976074 he:0.20706687888230907 she:0.13541769280440333 that:0.10458786444807594 :0.10405522300545086 +not:0.1987893652481382 now:0.08019993933531742 being:0.0739487288955276 a:0.05191567778572662 :0.5951462887352902 +of:0.5978589743749652 in:0.15775893416499584 for:0.11892862748636501 In:0.06258823458108918 :0.06286522939258476 +which:0.600522694668399 It:0.08951846636210303 the:0.062299657085560886 street:0.05812569374500351 :0.18953348813893353 +to:0.768157266709592 In:0.061975013643063195 not:0.04700797866445835 may:0.007949016604686167 :0.1149107243782003 +company:0.1916196531405443 life:0.08993317178628928 place:0.03519310818393674 power:0.02367727721231686 :0.6595767896769128 +and:0.0947631220234795 I:0.09332537314897792 we:0.07606453524348077 who:0.07039236399333518 :0.6654546055907266 +the:0.25417251027153215 to:0.16778583129362298 in:0.14909075271003305 by:0.13357950911184172 :0.29537139661297007 +Lee:0.09275750039858041 hands:0.023521276056548766 water:0.022391952715281466 did:0.014974333845605136 :0.8463549369839841 +of:0.015038849295079787 and:0.012899248340483869 in:0.0061151067022942075 to:0.006031487845876026 :0.9599153078162661 +ing:0.04043643318838671 evening:0.025096824001498944 speak:0.011184624778883904 one:0.009396156597424063 :0.9138859614338064 +in:0.1824613844862759 and:0.17442549461058 to:0.12647505286091343 of:0.11073492522194943 :0.4059031428202812 +of:0.3219222167208004 the:0.21501980663822184 Colonel:0.06263307447992876 Mr.:0.045435217411196945 :0.35498968474985215 +the:0.3062430222823773 him.:0.11150155959668612 a:0.10734082788598762 him:0.10033221501767893 :0.37458237521727006 +voted:0.06290740627308912 signed:0.024238430950277848 sign:0.009821683863036761 scribed:0.009091887824374822 :0.8939405910892215 +the:0.6934754237432433 tho:0.24086639980556096 tiie:0.061367157850899336 tbo:0.002676622737396442 :0.0016143958628998965 +given:0.3616042854309453 paid:0.2830360786705552 even:0.08582735947787226 been:0.08553085821301107 :0.18400141820761615 +is:0.2584084233572415 the:0.22247061927241243 was:0.16680801427636288 he:0.15568252539477917 :0.19663041769920397 +they:0.40820911242767427 we:0.324657727786772 I:0.12596862215749793 soon:0.03164468354939276 :0.10951985407866292 +and:0.25822539927546084 of:0.1990443765951463 in:0.09135897128777327 are:0.05867618721970123 :0.3926950656219184 +speak:0.06319682450097261 when:0.0612118489924161 are:0.058743116580280516 may:0.05318942576273013 :0.7636587841636006 +all:0.5328789685549595 All:0.08627864211151627 two:0.05267017616123562 and:0.020344665237669098 :0.30782754793461947 +final:0.06641843983784977 General:0.04506393128163827 very:0.044547617901903605 next:0.043836249192023 :0.8001337617865854 +in:0.22349212346233535 the:0.1073148976953658 of:0.03695282409661006 constitutional:0.034069138841586605 :0.5981710159041022 +of:0.339978478203392 to:0.1755133252117121 on:0.11930657914915059 about:0.07462905303650971 :0.2905725643992357 +been:0.5292228258979782 a:0.1315629278789641 made:0.04574460580623502 felt:0.03776875922009202 :0.2557008811967306 +it:0.8747306494392808 aad:0.022754485729835582 I:0.01749235595905263 and:0.009713572735704045 :0.07530893613612681 +to:0.2540845958697844 we:0.13620885434642335 and:0.0747217469293014 the:0.04630995365467643 :0.4886748491998144 +of:0.17674076591009638 and:0.11079755201572458 to:0.05835979475471722 has:0.054357007603735304 :0.5997448797157265 +a:0.9332710354067868 per:0.058346634453429 ter:0.006401706251611498 the:0.0013000819570773302 each:0.0006805419310952422 +two:0.5461730236229554 twenty:0.22714641548394857 three:0.1657855107630733 five:0.04110865774706147 ten:0.019786392382961322 +far:0.3780500981040231 much:0.14325458898235402 soft:0.0962612153292972 hot:0.040268334479062376 :0.34216576310526337 +the:0.8907934940295894 of:0.07199638531876151 a:0.011391489526023972 was:0.007808294362585728 :0.01801033676303938 +view:0.7512393993090335 desire:0.013647880253086124 supply:0.007219025852266952 right:0.006104708776847939 :0.22178898580876538 +quarter:0.6418106242205521 corner:0.08200104925089224 i:0.006995374055398563 I:0.005745482055536424 :0.26344747041762057 +of:0.4538296479314934 among:0.14647763675751307 to:0.13980830669757488 for:0.05920001168962544 :0.20068439692379322 +the:0.6564510549878986 many:0.17801283453952738 recent:0.09174343596077683 three:0.021668820383212932 :0.05212385412858422 +be:0.14589063217982684 he:0.08180801422631906 ho:0.059089428866366166 tbey:0.03543608366529326 :0.6777758410621947 +the:0.3371440662184428 a:0.2299597097775474 our:0.1040058023232339 in:0.04205551864179894 :0.2868349030389771 +daughter:0.5062009804717212 middle:0.028302943736973122 sister:0.005479327728278168 girl:0.004107587422637853 :0.4559091606403897 +favor:0.2650975372728029 view:0.12294545259275155 the:0.06981609926504151 times:0.05224063887215475 :0.48990027199724934 +of:0.007595658507071439 pound:0.0033114433612997404 pounds:0.0029978574998460977 acres:0.001460629584687036 :0.9846344110470958 +in:0.5097603126421604 the:0.15355349260129617 ihe:0.15151183370082255 having:0.05073507767098367 :0.13443928338473712 +that:0.09582401694676984 one:0.08409954073439846 chief:0.06882638982322298 a:0.06273444252118594 :0.688515609974423 +of:0.3545769245316285 and:0.17298787669172735 in:0.14866469646114355 on:0.1354944454117473 :0.1882760569037533 +Washington:0.05198309422067872 Virginia,:0.014838425275171426 two:0.014653879798010042 his:0.010128551284014275 :0.9083960494221255 +great:0.020544670821141656 the:0.019679158119451513 most:0.016639342677585038 old:0.014476603251404447 :0.9286602251304172 +years,:0.0572360901235303 free:0.014793887452074578 and:0.014667256139874517 bushels:0.01438498140829568 :0.8989177848762249 +as:0.2510067066130518 to:0.23471020230708642 and:0.11603072001280902 ought:0.0859452104725467 :0.31230716059450603 +carry:0.2902484564332894 sell:0.003908856824755969 com-:0.003589074541484147 find:0.003217917730056463 :0.699035694470414 +in:0.47465047561194396 In:0.20154801430554098 to:0.13071192943463553 by:0.06733666155261613 :0.12575291909526332 +be:0.13675344687652752 for:0.1292237864181523 next:0.09802243310426702 and:0.05556349227513487 :0.5804368413259183 +use:0.14181397761594342 aid:0.13972427092337722 consent:0.08351705058224608 necessity:0.05741782128413354 :0.5775268795942998 +as:0.10840080752382536 money:0.10142974199736729 chance:0.09378206088875422 right:0.07905595632114161 :0.6173314332689116 +process:0.06925262715434927 name:0.06758007667114335 production:0.0578125336032715 District:0.057463252465062876 :0.747891510106173 +was:0.04498423748611632 as:0.024605880170116907 he:0.005634383584458039 of:0.0035566364831794524 :0.9212188622761293 +in:0.21334250612427658 by:0.1793566664085571 with:0.15281107251028667 to:0.13182020456028845 :0.3226695503965912 +the:0.7005735682356019 a:0.12515926355684492 tbe:0.11861182976586114 one:0.029503473630654857 this:0.026151864811036915 +with:0.23591186010572782 be:0.21283267197396993 the:0.1839498174103799 a:0.01843212392353985 :0.34887352658638265 +is:0.19164399126205417 do:0.15504157964656118 are:0.14041813064950728 does:0.11057322509185698 :0.4023230733500204 +with:0.27536058963571775 already:0.030108661793190602 weather:0.028605889106211535 the:0.02633157732610408 :0.639593282138776 +the:0.19132889193488764 and:0.11668874300894307 our:0.0722206812392742 a:0.05914597852968831 :0.5606157052872067 +we:0.9999966418402848 I:9.523698155539186e-07 he:8.095245124313779e-07 they:5.658330756489885e-07 :1.0304323114454708e-06 +It:0.16968735022172013 I:0.10382624515709256 He:0.09981987499311885 and:0.09410392989934081 :0.5325625997287275 +your:0.3007316467756736 the:0.26286391972278006 me:0.07035180112715565 Gen.:0.057353988797597975 :0.3086986435767927 +ance:0.09878035921313134 years.:0.037677081298667384 him.:0.026573139510221364 them.:0.02291509216348211 :0.8140543278144977 +Pennsylvania:0.04463574045792086 the:0.04152743420232616 this:0.009960666150644858 another:0.008504106199798493 :0.8953720529893097 +secretary:0.27385174546868774 car:0.012540626573628094 office:0.010186257547077571 capital:0.009849013740318976 :0.6935723566702875 +and:0.2772324554991712 so:0.15125912018760204 than:0.13538694465017584 strong:0.09787032617030841 :0.3382511534927426 +the:0.6641809715792503 each:0.08991028357279782 his:0.07915102714548694 a:0.046528597320795693 :0.1202291203816692 +he:0.34335916093956065 and,:0.22201557298990063 but:0.20811042045513992 and:0.09971852265579426 :0.12679632295960452 +the:0.6425927852900569 a:0.1639954016085289 its:0.07198766364820162 tho:0.06372337038772456 The:0.05770077906548797 +In:0.9836505699947349 of:0.0105854910720706 ot:0.0012965324642012497 in:0.0012642797336009002 :0.0032031267353923205 +second:3.3992467404972646e-05 fourth:1.3364020993717279e-05 the:3.956873930270879e-06 line:3.5648032980202505e-06 :0.999945121834373 +move:0.04989017620685815 cover:0.04629875938949822 turn:0.045707668359753865 open:0.04298281647587439 :0.8151205795680154 +In:0.3050842649590856 it.:0.03946886036353865 it:0.03862720633214981 fed:0.027345803819880176 :0.5894738645253457 +and:0.14160783940012672 of:0.06680818448047492 the:0.06666041166017778 from:0.05335398292550755 :0.6715695815337129 +the:0.9225350407342832 tho:0.04020964753089508 this:0.010732210895580295 a:0.0016026927864636995 :0.024920408052777752 +necessary:0.03316554385191065 new:0.02206533510818186 of:0.015913856162231194 great:0.015619272717419287 :0.9132359921602569 +all:0.4034441992470844 and:0.08574246648579562 that:0.07108923275233216 while:0.06465407148778672 :0.37507003002700096 +house:0.16592554325981632 company,:0.03835370812984273 jury:0.018683778360642327 leaves:0.015433294102037969 :0.7616036761476608 +the:0.50797458543549 tho:0.42054820184219066 a:0.02913118912859842 their:0.02509629263076752 he:0.017249730962953323 +as:0.24724845194882233 a:0.2363383077392284 and:0.10832930564973271 the:0.10015034520877453 :0.3079335894534419 +good.:0.03311480406291033 Is:0.016118440182243152 others.:0.008527120586345886 it.:0.0041203586864829375 :0.9381192764820175 +day:0.5842104866532913 It:0.10509296885134012 who:0.049392647991081076 which:0.03508317656885768 :0.22622071993542975 +few:0.3693578079779594 many:0.30100777227299086 published:0.17515920288896372 the:0.0028050270942832074 :0.15167018976580288 +good:0.6610021406406037 choice:0.02924169417296526 the:0.004790924019076539 his:0.00298350846310244 :0.30198173270425205 +of:0.40017667480859986 the:0.22201759373994173 this:0.13805304136999882 and:0.11609207681092476 :0.1236606132705349 +the:0.4665502584943402 peo-:0.09457062831849035 a:0.08628773395926503 day:0.08085325748577266 :0.2717381217421317 +on:0.195777968949727 seized:0.08297426925354211 upon:0.08118023583193201 ed:0.06001090574176868 :0.5800566202230303 +were:0.2683709144723118 daily:0.16749252516147864 was:0.09175685587557537 while:0.08814002485218943 :0.3842396796384448 +the:0.5647812822671905 a:0.04626331040110065 their:0.044475405591959935 his:0.036135462302055506 :0.30834453943769347 +many:0.31567002441963365 few:0.25017620981025857 little:0.04577682075256819 much:0.030692494033360256 :0.3576844509841792 +proper:0.6591695944099165 a:0.10547868475428206 the:0.08468593047694271 some:0.08268577105972826 :0.06798001929913032 +declared:0.9997093906162761 at:0.00013654567062660063 of:7.570465006178453e-05 in:4.36213925654991e-05 all:3.473767046991813e-05 +at:0.6422733229143499 the:0.1512021601934442 it:0.14701095008502368 a:0.011786055532195866 :0.0477275112749863 +citizen:0.040937445911245526 election:0.03545006442737664 rights:0.03151364819364783 man:0.0224385757479817 :0.8696602657197483 +seem:0.597864759260933 stop:0.11253406950662725 want:0.05123849124035606 need:0.02609649292622253 :0.21226618706586137 +to:0.18129219302527688 and:0.12585098667846276 the:0.09978938259323027 her:0.0645505568267478 :0.5285168808762822 +every:0.11441244701153326 proper:0.09519024316123988 another:0.08994064682432718 noble:0.06915415048817929 :0.6313025125147205 +the:0.6967680302476327 that:0.14853688741969864 a:0.10027327096916025 tbe:0.03279447177443439 :0.02162733958907401 +on:0.2966607971345872 North:0.10216425543195376 West:0.09410701675259389 South:0.09361765297984254 :0.4134502777010226 +points:0.051344624824472614 and:0.05005595256284044 feet:0.04858141081847604 looking:0.02630668038759543 :0.8237113314066153 +caused:0.2820756586525559 in:0.2601000514086569 of:0.07524638540099217 over:0.06570121756646846 :0.31687668697132654 +and:0.1441783419017721 known:0.04592559397558662 j:0.041086756249809855 such:0.028999414438508807 :0.7398098934343227 +he:0.5912065113287555 be:0.056913662414163534 she:0.039117487649887324 is:0.02856936365688223 :0.2841929749503115 +to:0.052395351306357 own:0.03198570981046015 a:0.022880339140808136 the:0.020925460328034832 :0.8718131394143399 +of:0.5351213571443152 tract:0.3946577218693987 to:0.016295449964232912 ot:0.009596410600114154 :0.04432906042193903 +meeting:0.06865053534669541 plant:0.044006559241910846 front:0.042910403872267584 people:0.03141180716236311 :0.813020694376763 +that:0.5477536197875033 or:0.33798209107034377 recorded:0.002974150738882361 and:0.001415156674509902 :0.10987498172876085 +of:0.17899577487073953 and:0.14564755448056982 in:0.13704147513162085 on:0.1073284768565783 :0.43098671866049154 +at:0.3065254444408327 By:0.20280296674500656 At:0.17853433503931054 of:0.10915625946055531 :0.20298099431429484 +to:0.2004234838828823 and:0.1983250093820351 in:0.16801206401753546 of:0.1251342387714733 :0.3081052039460739 +been:0.6050857509348119 about:0.12196407232711906 was:0.016516016639698327 already:0.005276761093227129 :0.25115739900514367 +in:0.38065019496998476 to:0.3186744356827008 by:0.09845480407449325 of:0.09262227312293995 :0.1095982921498814 +party.:0.13865091234047208 money.:0.09865268120428913 opinion:0.03891911316488248 hand.:0.03625853664690796 :0.6875187566434484 +the:0.3938665588036694 a:0.04004447672460646 his:0.028717589242170632 this:0.026170759613196194 :0.5112006156163573 +most:0.9942453831905409 the:0.0014340268868042343 his:0.0011314058638610674 much:0.0010018592084950052 :0.0021873248502985287 +the:0.2364004417191553 at:0.1542633053951918 a:0.14920078350628094 another:0.06543651571535831 :0.3946989536640136 +or:0.52876540006129 by:0.07818923093619723 the:0.04409515238100751 for:0.028388716990700124 :0.32056149963080516 +of:0.14227926235504812 and:0.12372156163246448 the:0.09101744132219348 a:0.043779800547909406 :0.5992019341423844 +and:0.13264562373360236 to:0.0864317852512418 the:0.07727610385242915 of:0.04969120318123105 :0.6539552839814956 +and:0.08684969015181757 really:0.07716756427594251 can:0.06952752115048205 the:0.06195691306344623 :0.7044983113583116 +of:0.29811458573583327 No.:0.08563998838278018 and:0.05953624173545522 No:0.021698778346576332 :0.5350104057993549 +the:0.8089746168775943 his:0.10849370774009076 their:0.05068834913443806 her:0.018748696197286936 a:0.013094630050589952 +city,:0.28616009771969636 place.:0.0963648875038885 city.:0.08972235827858126 city:0.0821762490322959 :0.4455764074655381 +on:0.23735597951546314 is:0.20185143194992258 of:0.16905650703104408 was:0.12775118189029327 :0.2639848996132768 +M:0.5124445800254209 going:0.00360795737338147 and:0.00208268745072449 as:0.0014803663460994476 :0.48038440880437366 +be:0.32013641550056376 have:0.04460527919334369 follow:0.03390829301630473 take:0.030896862032512802 :0.570453150257275 +of:0.33049033853863913 to:0.22140777372851267 and:0.13894476211547846 is:0.08756948291126594 :0.2215876427061039 +the:0.21789130750742355 and:0.18698198428572052 The:0.09250960783085058 in:0.04773520826435108 :0.45488189211165436 +of:0.27125541385455304 upon:0.13228564508569055 on:0.11649522202404178 to:0.08713863415115503 :0.3928250848845598 +be:0.9852863790785273 bo:0.009628086457668397 he:0.0006882965498611603 the:0.0005265615497179653 :0.0038706763642251635 +the:0.023684969022208544 present:0.019354726837119328 of:0.018574542618723548 state:0.017610171639654105 :0.9207755898822944 +gave:0.21472235601873288 with:0.15260423094169534 ed:0.12637494772826194 to:0.11555433833991738 :0.39074412697139255 +to:0.31002821071576503 of:0.07191872433877075 and:0.057551544396217624 iu:0.052638218722462035 :0.5078633018267846 +burned:0.14869347356096246 severe:0.13181959643932772 slight:0.11689020374787995 broken:0.10762689341801128 :0.4949698328338185 +and:0.08399076812841454 as:0.034041626460463145 or:0.03326662609849388 .:0.018916494041783933 :0.8297844852708444 +and:0.3853179747510082 of:0.20204200508736084 out:0.1065479764722934 had:0.05113450441023091 :0.25495753927910664 +purposes:0.3731182437364041 said:0.05906165923009257 was:0.04869640548727654 im-:0.04828541742597386 :0.470838274120253 +to:0.9809949915613522 lo:0.003434760087205021 o:1.9637858247953153e-05 io:1.6056401728471947e-05 :0.015534554091466361 +ture:0.3012653931411906 and:0.08136751391556334 or:0.07645913402152088 of:0.07416382651382213 :0.4667441324079029 +the:0.22285775312324532 v:0.14457387062857702 to:0.04333081270203804 and:0.037526492902691 :0.5517110706434484 +finest:0.043780635474273924 most:0.030137086077719494 world,:0.01929793805938703 largest:0.018965372745777618 :0.887818967642842 +not:0.39031012390338965 worth:0.23819389412388925 always:0.15586456569629425 Is:0.13105067622270583 :0.08458074005372103 +who:0.04860614785576581 States:0.03737986967468778 homes:0.03472732176365847 days:0.033684354382462804 :0.8456023063234253 +narrow:0.06940362693245786 rapid:0.013717901560729726 difficult:0.009781239746601798 severe:0.009035496840103938 :0.8980617349201068 +condition:0.035569979508882466 position:0.027101280055293834 wages:0.014054766006986444 blood:0.006038036911781496 :0.9172359375170558 +was:0.25066248369616567 is:0.14824130336268462 had:0.12329303924014094 has:0.07777895703685149 :0.40002421666415733 +asked:0.0435546743660182 and:0.03805525204777493 only:0.029080541643468866 body.:0.021187090276652158 :0.8681224416660859 +the:0.023176647945614023 went:0.022069810930957907 began:0.01829284383089789 wife:0.01686174078297641 :0.9195989565095538 +;:0.07284530153198146 aforesaid,:0.045891267971404116 in:0.03819877380576308 township:0.03312304713417729 :0.8099416095566739 +up:0.0067707435230603625 !:0.005895207547385697 to:0.004718653187465773 people.:0.004232805819122169 :0.9783825899229659 +The:0.23855871571710685 the:0.2358191161125973 and:0.09574141738785431 of:0.05287491140603062 :0.37700583937641086 +saved:0.8613612193639127 cured:0.025858061206407778 another:0.016159705138342313 found:0.012722293156061633 :0.08389872113527552 +such:0.810035308730793 the:0.08004684522814123 this:0.01400360087934654 any:0.005352172996481547 :0.09056207216523779 +and:0.051961402417629976 the:0.01653051942870853 but:0.01645986868650438 white:0.014981601516497547 :0.9000666079506595 +hot:0.1099866758359056 living:0.05828810314228669 and:0.033193545629964946 come:0.02712735777435784 :0.771404317617485 +March:0.2739156291042507 and:0.11751511939620331 D.:0.11294235260992329 George:0.0544195941098417 :0.441207304779781 +sum:0.07148591974289902 business:0.0339230713409146 amount:0.02454222053246231 change:0.02219046312991789 :0.8478583252538062 +the:0.5708889815809407 Senator:0.25836386347125206 this:0.13289823995600578 a:0.015743085694198185 :0.022105829297603144 +and:0.054704930077943116 Book:0.015569326205846029 was:0.013897234417092815 Committee:0.013245420818040636 :0.9025830884810775 +the:0.40455929896443044 a:0.10432222161751742 tho:0.024625509333316146 an:0.013094610068019256 :0.4533983600167167 +had:0.736786939322678 are:0.1553749017745779 ought:0.04489665035782462 have:0.0183744184571143 :0.04456709008780527 +of:0.012679523782752073 or:0.010595476282667072 and:0.009957624656647722 for:0.005559079753959795 :0.9612082955239735 +what:0.1683462330013211 the:0.09788639059544896 that:0.08230699752029978 to:0.029326927216788656 :0.6221334516661416 +ment.:0.07102040452092218 morning.:0.011003725246679589 and:0.0020848349584705415 .:0.0019715794106581557 :0.9139194558632696 +and:0.16642128572237416 of:0.14844897304612018 the:0.08153148548035581 to:0.05332800518443746 :0.5502702505667122 +I:0.50870330681919 to:0.14126168038821932 Some:0.0646344950651912 would:0.05822918875873202 :0.22717132896866749 +tion:0.05676978102720723 day:0.03638549034276336 ment:0.025948785748480366 of:0.02312660722922797 :0.8577693356523209 +of:0.6531469543623583 the:0.13765506332657523 which:0.07870302172130322 and:0.05592415644960286 :0.07457080414016048 +press:0.019808597837327985 change:0.01771686076309786 port:0.011928710697190347 pressed:0.004389486239318141 :0.9461563444630657 +has:0.32315648378925443 is:0.2908467448517413 will:0.1342499900637795 and:0.08685084770795047 :0.16489593358727422 +to:0.7340250663184673 and:0.23402829591797988 on:0.009957870913548193 that:0.007025134052086496 :0.014963632797918031 +the:0.49158014102800995 other:0.05527345070368344 our:0.04834957035334015 tho:0.0421697105790464 :0.36262712733592006 +acts:0.036056268386451186 lives:0.027819739345607077 rights:0.025750705750230737 object:0.02478987739869164 :0.8855834091190192 +in:0.17631254565455903 by:0.09200320825825015 be:0.08013984178076271 at:0.04610155503045449 :0.6054428492759736 +man:0.6263139952533461 woman:0.10436959538892072 witness:0.03525281967720787 husband:0.02823233227435273 :0.20583125740617256 +general:0.052532162229061256 public:0.04025316112935309 legislation:0.04019581866246762 city:0.037247259593542754 :0.8297715983855753 +and:0.2588602780709771 of:0.08525602535536003 But:0.0709526326687084 ter:0.06433550524978462 :0.5205955586551699 +and:0.0640290801066827 called:0.035358558206559025 of:0.03384595570522683 came:0.032985872435614086 :0.8337805335459174 +and:0.15922728613639717 thereon:0.13056127684192076 only:0.11345495545059114 that:0.06752764613412053 :0.5292288354369703 +bridge:0.06937184809820045 house:0.05110710207635222 district:0.04095708686099311 fire:0.029061811454537383 :0.809502151509917 +sent:0.21575724198827223 got:0.19284423821874092 went:0.11413779205135503 noticed:0.07741142302530227 :0.3998493047163295 +was:0.29028073788253517 who:0.2495890088049327 and:0.059484336760277416 had:0.04128921582047064 :0.35935670073178405 +in:0.26726381060251914 smaller:0.20738767816433049 higher:0.13571983575635907 best:0.1290505593714835 :0.26057811610530773 +up:0.8411649070905837 in:0.04911384874675953 and:0.03743338564160531 In:0.03519807127997358 :0.03708978724107787 +on:0.13988507745146062 ing:0.051849345300797836 and:0.04917533710360045 engaged:0.04450757525991338 :0.7145826648842277 +of:0.20308140424778542 in:0.15592177108009603 and:0.11567602867859691 from:0.09965481216945248 :0.42566598382406917 +issued:0.22868314360784384 argument:0.11982863746315671 charges:0.028168083548069666 space:0.028128957726486714 :0.5951911776544431 +and:0.344478137766317 this:0.3404026628858993 und:0.15691373579831308 a:0.15331477528196863 the:0.004890688267501967 +matters:0.361689433130831 question:0.09907728936893073 and:0.053537306600413295 some:0.04315272807072386 :0.442543242829101 +to:0.30699145868106453 and:0.14749625184991103 in:0.07999161568764929 all:0.06536365517931644 :0.4001570186020587 +a:0.8207098819996312 the:0.07474350023657325 at:0.04281953844328621 n:0.014523142650390536 :0.04720393667011892 +the:0.6013175907151342 a:0.07982643754423956 from:0.061113828505150326 their:0.04618845301606209 :0.21155369021941395 +war.:0.0037152888641328596 life.:0.0027119007741721753 them.:0.0016968882258553103 us.:0.0009436652559612882 :0.9909322568798783 +law:0.1962502781589821 treaty:0.04598544321597132 City:0.04403270670157952 Secretary:0.03998429245507931 :0.6737472794683877 +bonds:0.004079593629133916 and:0.0036791366274123364 States,:0.0022953990466441604 tion:0.0020282666702120112 :0.9879176040265977 +the:0.3116084534386561 a:0.17069381492667382 it:0.09591209256211776 him:0.06824756704996969 :0.3535380720225826 +and:0.4788987896399106 money:0.027134618872649337 until:0.02328770307110937 ed:0.020403608852366452 :0.4502752795639642 +English:0.27810073323051215 bills:0.17654230503754142 places:0.04806231688188828 matters:0.02948109455359535 :0.46781355029646277 +turn:0.0641321106709474 port:0.042301850840212256 organization:0.01424692135325691 call:0.010601431743398936 :0.8687176853921845 +much:0.09247276824783592 far:0.05378755537755001 he:0.049712510928036746 it:0.04315277393725507 :0.7608743915093221 +and:0.5141623264909448 but:0.2304961280869824 as:0.1009888062896404 that:0.08298208159023976 because:0.07137065754219256 +of:0.29949987033156794 for:0.20849854727676642 to:0.16685782393427434 and:0.14084715500447836 :0.18429660345291307 +to:0.7674018661527051 would:0.10145226833195824 will:0.09898142046889974 they:0.013172607448486756 :0.01899183759795021 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +the:0.46153792378042485 his:0.1771096510133348 a:0.0556666722243357 Mr.:0.02517875049174958 :0.2805070024901549 +increase:0.03260994965730571 drop:0.03085922794352203 break:0.030012044844095424 effect:0.026310052442093005 :0.8802087251129839 +and:0.7191887450380637 The:0.049147991718886244 an:0.02634179564974737 aud:0.02360091833459256 :0.1817205492587101 +the:0.7252272077801195 tho:0.13121617684820866 that:0.08732187544126255 their:0.02041420076501589 :0.03582053916539331 +is:0.4906399666277161 was:0.2588693398478025 are:0.10143164043781519 Is:0.06556565893672117 :0.0834933941499451 +ho:0.17096345237717475 am:0.1269180253526823 to:0.0664458099632276 the:0.0344589081133832 :0.6012138041935322 +hit:0.837135311570132 come:0.04761480433632825 notice:0.028986476926176175 decided:0.02054911474430682 :0.06571429242305686 +a:0.2523056161689948 the:0.20047541948623054 my:0.07611748159057387 your:0.054787194286921415 :0.4163142884672795 +the:0.5050407154413874 a:0.056810946782953536 his:0.028224322165065378 tho:0.021751027166967713 :0.388172988443626 +on:0.8097261267988611 of:0.04128157462070845 to:0.03712016401070306 by:0.03006554431991335 :0.081806590249814 +his:0.5260087011829112 my:0.22639238480616664 her:0.07270440443213474 active:0.03329710854994669 :0.14159740102884077 +before:0.5296531114794574 from:0.2421024740624174 was:0.06300284158909616 and:0.03862584984033869 :0.12661572302869037 +say:0.1573495346342754 see:0.06326856765617278 show:0.04549609402589871 find:0.043972836634191936 :0.6899129670494611 +of:0.09763017718062547 Mrs.:0.09761513203040445 1st:0.09640585622969906 John:0.07871289850801465 :0.6296359360512563 +own:0.07937281791353162 very:0.04348053121431016 and:0.010057711713959907 a:0.009643000722369736 :0.8574459384358285 +10:0.1289576942082391 40:0.060122928447374845 20:0.03840979328716922 of:0.03741283115749926 :0.7350967528997177 +a:0.3663633785295707 the:0.17326824869588928 an:0.054747282868092655 to:0.038860341334838934 :0.36676074857160856 +hot:0.5544749401072455 you:0.3547261996562715 not:0.0840220097570359 I:0.0040376445475362515 :0.002739205931910846 +in:0.9460054253047571 In:0.03310465978889841 of:0.011795312415265907 iu:0.004462201114396404 :0.004632401376682294 +the:0.3603429345949551 The:0.3104224480468094 this:0.09468805822350367 in:0.05702810145214201 :0.17751845768258992 +the:0.4235230869937998 a:0.14146588857722672 any:0.051108993753043744 its:0.03992037497872023 :0.3439816556972095 +and:0.25667718485167784 but:0.05463162715508408 But:0.04495141546854955 Then:0.034831480075878746 :0.6089082924488098 +the:0.13539350691065477 an:0.03953355680984167 in:0.030570692018381442 bill:0.018514324801036035 :0.7759879194600862 +to:0.9641183440168979 lo:0.019085340115806267 cannot:0.008567270808723432 and:0.001987258103823313 :0.006241786954749181 +ments:0.3329989094294551 and:0.10444254115402403 ready:0.04604919927866112 who:0.027284988876840163 :0.48922436126101965 +man.:0.028990437678547795 not:0.02039365165407183 was:0.017469509507236622 there.:0.004494514601424547 :0.9286518865587192 +and:0.49749498827757094 while:0.1720589164600041 till:0.1074807177546987 but:0.08768912526266212 :0.13527625224506432 +of:0.7370511951182527 is:0.06156668358396921 and:0.03627753063424611 or:0.03588225609392406 :0.12922233456960786 +the:0.4734725995156205 this:0.06574814715944251 a:0.056934306265572616 tho:0.052851305314090685 :0.35099364174527364 +other:0.047571012366415685 Brown,:0.009748380177592022 Louis:0.007937766327704132 General:0.0074253017234866565 :0.9273175394048014 +the:0.5019477364784345 a:0.2141342860787407 any:0.07978453221858972 some:0.06849677734468806 :0.135636667879547 +son:0.5133919287569942 brother:0.13378970894268982 member:0.10558152494218567 daughter:0.045066059186221946 :0.2021707781719085 +of:0.3842150512797543 and:0.14001682592039952 to:0.10985201483207802 in:0.1009688113730764 :0.2649472965946919 +of:0.895042873945684 at:0.036383028038523536 will:0.011479152663203564 from:0.007041170270431718 :0.050053775082157095 +of:0.8286847182346909 ot:0.0971438551045495 and:0.03114074875326365 I:0.02227403745649885 :0.020756640450997045 +the:0.29672476178425167 our:0.04180764671306148 make:0.034421061729421595 their:0.033990292903157235 :0.5930562368701082 +the:0.00324333103111132 In:0.0018946498621021136 2.:0.0012568610955891357 a:0.0010557417614191773 :0.9925494162497783 +proceeds:0.9997893312321916 costs:2.2506488964829385e-05 result:1.6751878243214196e-05 court:1.1857586931648557e-05 :0.0001595528136685776 +under:0.5293968892206194 the:0.13345164920766114 Under:0.08577454146995415 to:0.07186364821632962 :0.17951327188543567 +the:0.46269606980531414 Mr.:0.1095600896110879 his:0.06220378091919032 a:0.04637159054189708 :0.3191684691225106 +between:0.21619400569781935 of:0.1470599083870378 or:0.06591554369920297 I:0.06298843181710335 :0.5078421103988365 +a:0.14801757777669527 the:0.11060816428739065 been:0.06792625213666925 in:0.02929402809077993 :0.6441539777084649 +and:0.8616286633347607 but:0.027004143898504106 so:0.02530762945606557 as:0.02439000529252038 :0.06166955801814909 +com¬:0.2603032094349577 par-:0.23110472459190234 com-:0.11476119808797283 ac-:0.003074306385260189 :0.3907565614999068 +and:0.047296563276893445 crop:0.02816534300224797 or:0.01652357471315499 grown:0.009921990432040447 :0.8980925285756634 +a:0.7199597945495252 but:0.07955686497290596 the:0.05145010554940827 A:0.048463395737522015 :0.10056983919063861 +was:0.45904950642960596 is:0.10042049558637445 and:0.08110489995048319 as:0.06335527506841696 :0.2960698229651195 +be:0.9099857647812146 ta:0.03695627755164864 have:0.026129913488023824 see:0.010696032656791995 :0.016232011522320986 +and:0.1606653642926933 says:0.07066332809353311 so:0.051534720587947405 is:0.036676921125206985 :0.6804596659006193 +of:0.09297749935087918 the:0.08345019095101391 and:0.06693492188465591 or:0.05930113234042992 :0.697336255473021 +on:0.3072432305458966 from:0.20217563860686913 to:0.17625327315573283 by:0.15163525642926443 :0.16269260126223709 +why:0.2611454772602295 I:0.22952025520016572 they:0.19501834858301367 we:0.1589268213011382 it:0.15538909765545292 +of:0.2679165528386332 and:0.17735246462987783 The:0.05109606690766328 the:0.048722435318860245 :0.4549124803049656 +the:0.46641653698805957 a:0.17366103037910038 tho:0.030932407280720012 bearing:0.025360704886306665 :0.3036293204658133 +the:0.14111519254622587 private:0.01830490844825846 and:0.018095456592312015 ing:0.015825496404330733 :0.8066589460088728 +wise:0.17169925573337486 published:0.011214400965020044 bought:0.010865992512332763 increased:0.010783795232337946 :0.7954365555569343 +am:0.05279599264579787 fur:0.0499701752716358 protect:0.036739099237701404 prevent:0.023232076931420608 :0.8372626559134443 +been:0.09703275274361853 not:0.06546882051827026 given:0.026649143396457558 ,:0.018308496234192666 :0.7925407871074611 +in:0.35207374811115955 In:0.1508524318845771 such:0.09248481413637404 holding:0.0562274054101738 :0.34836160045771575 +account:0.06503527742974156 answer:0.04769540145775743 order:0.02272452103060045 address:0.02166275954610959 :0.842882040535791 +out:0.607874867195114 by:0.04686414537342025 because:0.030896976114922554 and:0.01995660372776742 :0.29440740758877587 +life.:0.001540933223488608 life:0.0012384482253178883 bodies:0.00013618412784162235 a:8.982856212936215e-05 :0.9969946058612226 +e:0.16759530834671788 and:0.13403470825878258 to:0.05386746624062854 was:0.04619032334267421 :0.5983121938111969 +the:0.09176285674380409 America:0.03234081688374188 that:0.0034269187003575638 war.:0.002179997456152945 :0.8702894102159435 +poor:0.012739993692724667 visit:0.010378167158445325 age,:0.00861974909549441 right:0.006766948171331923 :0.9614951418820038 +who:0.7927085021417583 he:0.07454182666129612 have:0.028889473001282147 had:0.026895582416631175 :0.07696461577903232 +men,:0.2901702330374444 and:0.06093086064190644 that:0.02091510661199256 And:0.011114330933096075 :0.6168694687755605 +small:0.4514097799919599 power,:0.17021383942359716 way,:0.0033870180169549855 hearts:0.0032662848886380693 :0.3717230776788499 +to:0.6511845333999402 from:0.13441914914386188 of:0.10243391845194134 for:0.05994127195662111 In:0.052021127047635514 +of:0.3039863708103591 and:0.1141409133844051 the:0.06102229553678705 in:0.02501242315369028 :0.4958379971147584 +more:0.45226080053958234 two:0.44402391912931144 so:0.06901322308102555 years:0.0015090209732700303 :0.033193036276810785 +war:0.3398694531612416 way:0.2803772098290819 view:0.07475182638784125 shape:0.040725225349498524 :0.26427628527233676 +have:0.38743590827239277 always:0.16665009803126432 never:0.13850455234251804 really:0.07728603920866367 :0.23012340214516128 +same:0.1023347826198121 the:0.04042716592747945 time:0.039085889860141915 great:0.019855360386519305 :0.7982968012060472 +ready:0.5814244241147372 good:0.05914502241631953 writing:0.03918110247624205 prepared:0.03765336610608002 :0.2825960848866212 +purposes:0.1643159121739342 and:0.06952230371875627 use:0.06454148912609461 used:0.04635725020795259 :0.6552630447732622 +this:0.406325562328774 that:0.31144575767974403 our:0.13381145729792177 its:0.023300329953654948 :0.12511689273990512 +mouth:0.034385732688439995 might:0.02322738865413846 voice:0.02317679203923279 arms:0.02011409402604277 :0.8990959925921459 +down:0.23056180374339103 it:0.09655402065028258 and:0.06823573171574573 known:0.0636579899921892 :0.5409904538983913 +and:0.1280706802117026 to:0.10523176042900072 the:0.037358080768693014 of:0.03151605124005047 :0.6978234273505532 +it;:0.3086299202080365 the:0.19343916738617348 what:0.15473835248439416 it:0.14618301536422237 :0.1970095445571735 +and:0.4261848335265005 to:0.16482822374958633 or:0.08595478285867462 on:0.06566813715155194 :0.25736402271368686 +man:0.42672753128192653 woman:0.33916320029022917 person:0.018523588537963518 ship:0.013409604472143044 :0.2021760754177377 +carried:0.35849836567086685 acted:0.14019233560069289 applied:0.04369872779849563 thrown:0.026309576458345665 :0.43130099447159886 +and:0.1349066046902045 of:0.09062126678405413 the:0.07077749717329587 to:0.04595685453192262 :0.6577377768205229 +On:0.18288452011267592 r:0.11421650568924598 ir:0.1093396746299716 the:0.05131147210192823 :0.5422478274661784 +to:0.37709447284804176 of:0.2687967036525125 from:0.07048559884118343 and:0.04578677226306599 :0.2378364523951963 +No.:0.25459177210301803 County:0.11023727896292801 to:0.06527431068125994 Book:0.042452241568520864 :0.5274443966842732 +upon:0.9187129373354328 in:0.02940957616206977 to:0.022022893050420142 about:0.01782817196465414 by:0.012026421487423205 +to:0.9261381841532166 to,:0.004699227332453851 arms:0.004476894936390453 upon:0.004294608327616838 :0.06039108525032235 +this:0.30580091671833837 a:0.24047725390978913 last:0.19371014932853553 the:0.0892613281149371 :0.17075035192839996 +great:0.0772721839425661 valuable:0.038216934757654426 success:0.038176664919687714 serious:0.029798979276238466 :0.8165352371038533 +the:0.20004279186543603 getting:0.14330051696775678 they:0.07320165176119348 failed:0.06159867484339353 :0.5218563645622202 +to:0.1928896531882178 the:0.03638168598280881 and:0.028801819240114792 be:0.022572007055554264 :0.7193548345333044 +where:0.2293075520362191 Is:0.10401896083324715 against:0.06432440036337159 and:0.060307200376822155 :0.54204188639034 +ed:0.37519803146772907 en:0.044873097014960124 and:0.041063537389564045 upon:0.03295409553213555 :0.5059112385956112 +estate:0.8609095711708747 property:0.04958243917103862 property,:0.027457951563867627 estate,:0.022034243732313795 :0.04001579436190502 +escape:0.029987837614368563 get:0.013357116896238903 pass:0.01064419281325395 obtain:0.009216954582156515 :0.9367938980939821 +the:0.24314580235890454 who:0.1579635798711754 A:0.03509298659577014 other:0.025668127545332698 :0.5381295036288172 +own:0.1074680086320468 most:0.015924769700457142 of:0.015387206849831416 great:0.009214817626464969 :0.8520051971911997 +George:0.014658304677166 King:0.009752891142036866 Brown:0.003588302538782522 Johnson:0.003327566026972166 :0.9686729356150423 +in:0.8144525399685091 In:0.15710627513648304 after:0.01006006295109658 and:0.006481733349782288 :0.011899388594128956 +and:0.3752688046749876 of:0.18615252217691658 he:0.12304356709255516 which:0.09853688878766328 :0.2169982172678775 +he:0.9995137524854543 they:0.00015475477149876445 she:0.00012538495071974165 be:4.00241648384698e-05 :0.00016608362748871746 +interest:0.32142348021492073 service:0.2890270298112277 schools:0.10257463674397578 that:0.07317774861322533 :0.21379710461665052 +the:0.21038402931162112 and:0.12840764505032462 The:0.0585486869616493 a:0.05653471355379952 :0.5461249251226055 +and:0.17727876151545002 that:0.14969887877135163 as:0.13662135309108264 in:0.11390361185988915 :0.4224973947622266 +each:0.922433621710966 every:0.07743361826163066 a:7.650923603698465e-06 one:2.4972427920284707e-06 :0.00012261186100775626 +himself:0.38598858888698145 themselves:0.35643759841689726 him:0.1388046134035301 it:0.07744253767739917 :0.041326661615191884 +out:0.2643177929820463 any:0.11746792687166747 some:0.0648271646434083 back:0.03898276314354997 :0.5144043523593279 +the:0.3269865089047919 in:0.15408607484895562 at:0.1404567001889573 The:0.10833940798959896 :0.27013130806769625 +and:0.06277694565194555 office,:0.0337598744623763 office:0.025364844562807933 affairs:0.009469478041258288 :0.8686288572816119 +State:0.09087171772033992 city:0.052477753645848474 great:0.0315876744193529 big:0.030466154524527327 :0.7945966996899314 +duty:0.044999826230577536 life:0.04378153362393755 position:0.04010019035947287 wife,:0.027593446837559658 :0.8435250029484523 +I:0.1279918546439094 he:0.11186505782126846 and:0.10538411988237686 which:0.09222494543421203 :0.5625340222182331 +it:0.19796281927159418 and:0.10851549866643002 which:0.03532554235414664 that:0.03491343414160259 :0.6232827055662266 +the:0.3112519950449482 any:0.22569844416028692 all:0.13607028795941226 this:0.09766863024018842 :0.22931064259516418 +to:0.4932726561013348 shall:0.28303419406959507 will:0.10743714247489439 must:0.019008284183401877 :0.09724772317077367 +of:0.1383575568930557 the:0.11999846207184447 or:0.08484915807507035 to:0.08461201123194584 :0.5721828117280836 +eyes:0.31194258851028883 eye:0.1444074941845585 feet:0.039168128721385954 heart:0.029474935201982768 :0.4750068533817839 +services:0.07929717299865117 friends:0.041526228122348734 eyes:0.038219477257080255 work:0.009054658700695209 :0.8319024629212246 +is:0.30483946656339195 was:0.2298869903335345 had:0.1802713707834619 has:0.15382952317756327 :0.13117264914204854 +is:0.22758370894107827 and:0.20127739342484746 upon:0.15614539909938088 in:0.11799380759674861 :0.29699969093794476 +act:0.18191377914501194 class:0.00703491332897211 rate:0.0027007660228652 power:0.0018984039523338911 :0.8064521375508168 +the:0.9998890266914573 tne:6.260363247732875e-05 tho:9.741178933043606e-06 a:8.409926531560283e-06 :3.021857060066307e-05 +the:0.37167818165080824 and:0.11329222602486884 of:0.07941633491503888 a:0.0651154806461735 :0.3704977767631104 +and:0.43547791049513324 State:0.0392752416367245 son,:0.016032218274747635 made:0.012035021474587543 :0.49717960811880696 +time:0.1812254211995331 and:0.15707586468555118 but:0.1308187948134925 that:0.11593814245537461 :0.4149417768460485 +of:0.16528153448761482 in:0.10312428086866669 to:0.07338658695624646 on:0.06860510778183616 :0.5896024899056359 +room:0.11941756691318271 taken:0.07161289416740424 to:0.00923844202527117 prosperity:0.009169567740770245 :0.7905615291533716 +allowed:0.3181162973751607 permitted:0.13172318310242856 suffered:0.05552518048449404 applied:0.041410289878587955 :0.45322504915932876 +and:0.19054712463317472 with:0.13736080557602162 the:0.12400104067314563 to:0.12200593925307063 :0.42608508986458743 +is:0.8185702023244983 was:0.08788274465765322 Is:0.020397121072557985 he:0.001957562309003075 :0.07119236963628739 +more:0.9077802262558733 one:0.006465984329541684 right:0.006260597764123075 reason:0.00530135024917827 :0.07419184140128367 +suffering:0.46472621509850487 ing:0.22067231293264206 her:0.041738088317839345 free:0.012643960068618272 :0.2602194235823954 +we:0.32672042342045204 they:0.26118772274447977 I:0.2101314131764216 1:0.03808132507278654 :0.16387911558586 +the:0.06455948158904466 a:0.044146484386034204 .:0.04090655197510832 of:0.037110388168228814 :0.8132770938815841 +into:0.18714265809998723 and:0.18492530817594316 in:0.16924483614303207 of:0.1358899006742963 :0.3227972969067412 +the:0.4865600497408244 a:0.0840067156933188 our:0.05865701591482112 this:0.03428223909209174 :0.3364939795589438 +making:0.17415801850390072 execution:0.15099954938466287 sale:0.08641389637114733 failure:0.07142321229465562 :0.5170053234456334 +payment:0.07261449338118786 issue:0.05988553925789319 attention:0.04497022721605678 opening:0.03750385897383147 :0.7850258811710306 +of:0.5544078825215738 and:0.11365238987049667 in:0.058223628584660264 to:0.051827165357695416 :0.22188893366557383 +.:0.05584591309366596 street:0.032317255380296714 B:0.026412350589511604 nnd:0.023409293790512667 :0.862015187146013 +his:0.29212650564999443 that:0.23968215340091972 tho:0.17300211934247026 the:0.15594582749836802 an:0.13924339410824765 +and:0.46842341437693324 of:0.3641371936825976 the:0.0180332269747547 mentioned:0.01774552807023208 :0.13166063689548238 +they:0.19087908877799248 There:0.1422867371941314 we:0.09668499814391941 They:0.07705040492453423 :0.4930987709594225 +city:0.1438791100464308 part:0.120519628058662 section:0.07112769437386245 state:0.06303593348483463 :0.60143763403621 +and:0.13809871721597283 the:0.09071984980052815 of:0.07619061513923503 to:0.06906914803608988 :0.625921669808174 +over:0.16283013953181716 who:0.10872894063380385 the:0.03553977803573165 they:0.028729225728000934 :0.6641719160706464 +could:0.9983661667374418 would:0.00023104861217989765 didn't:0.00013202469212384216 will:1.857521789340758e-05 :0.0012521847403611384 +days:0.4232225345329739 no:0.15598720619798667 for:0.10696806673260632 by:0.05977546912539956 :0.2540467234110336 +impossible:0.5708965545462014 elected:0.06236997004777949 done:0.04413647946231057 possible:0.03655987040624343 :0.28603712553746513 +price:0.7086425979025532 was:0.029570212814200802 is:0.02332045766880895 for:0.01432414376623451 :0.2241425878482025 +by:0.4544647508504111 a:0.13740512759558646 the:0.12306434572027007 this:0.06782963335124496 :0.21723614248248738 +than:0.051382004727594306 of:0.01180694710926493 terrible:0.010195908587606245 interesting:0.007117829478716861 :0.9194973100968175 +are:0.856414227544826 were:0.12910783537568266 aro:0.001995962813722526 arc:0.001772177398404525 :0.0107097968673643 +that:0.09611047612149426 of:0.0934475759574362 not:0.07893956630945527 in:0.0730181408752313 :0.658484240736383 +which:0.5112729009924737 the:0.09896938842116167 time:0.09332952456141154 him,:0.023491038642974506 :0.2729371473819785 +was:0.20814691759687107 is:0.18078676443110725 Is:0.07041740141767701 had:0.0474853582252731 :0.49316355832907155 +year:0.27177557075965697 week:0.2631267334370438 they:0.08663361119598978 night:0.0744390012185837 :0.3040250833887258 +C.:0.1750304349060697 E.:0.10778891755509369 T.:0.07501436461496959 W:0.07223890904026596 :0.569927373883601 +were:0.18682867657221264 thus:0.10621028161055757 had:0.09200050697617208 has:0.08186248386401997 :0.5330980509770378 +as:0.2516320426474216 protection:0.0599575706519294 and:0.05804329302247511 to:0.03518393995582069 :0.5951831537223531 +than:0.10976354061169248 in-:0.04822945422172983 object:0.046179436544756786 and:0.03171783590103157 :0.7641097327207895 +State:0.14420814069960933 Government:0.12641126880641856 Spanish:0.11283668047997307 district:0.03688221885353732 :0.5796616911604617 +number:0.0984346533063502 appearance:0.09323877757958303 rights:0.03642802835463743 use:0.03338421443272254 :0.738514326326707 +same:0.03919751801729182 year:0.02535244214149339 county:0.022420469102577514 city:0.016069074025438963 :0.8969604967131983 +this:0.6969415940899908 a:0.14986219705751339 the:0.133769380993855 that:0.013884410221870827 two:0.005542417636769829 +to:0.8843446741088254 lo:0.020595544649486677 or:0.019706895420160745 and:0.012399006562162604 :0.06295387925936463 +is:0.3507875728681884 was:0.0966909399957639 goes:0.06480363505857074 as:0.037744284529195295 :0.44997356754828155 +is:0.612916064636203 was:0.15794726534572961 has:0.069517149122585 would:0.04293222413875358 :0.11668729675672894 +of:0.10712078921615736 that:0.016988355558556885 found:0.014404453935348902 with:0.01322337850312276 :0.8482630227868142 +be:0.7116854638390527 bo:0.12770389056536474 like:0.016238733465264398 have:0.007506748148576149 :0.13686516398174192 +the:0.34177816463742544 tho:0.08621867528074224 a:0.0787817120927841 his:0.034818774522193556 :0.4584026734668546 +and:0.19818646032159182 he:0.13518322099189609 has:0.10957056579349476 He:0.08825212258072875 :0.46880763031228856 +tire:0.39281936926563626 of:0.02044438464778208 -:0.008020589599140046 the:0.006449346184176189 :0.5722663103032656 +the:0.39651852418241573 their:0.323696099211359 aid:0.0726811861997553 two:0.048085724560382924 :0.15901846584608706 +and:0.13587809539635828 of:0.09849799268392492 the:0.05128811772328803 in:0.0355770885694921 :0.6787587056269366 +thorough:0.19231846544666062 permanent:0.10641060916159986 proper:0.09409332390578726 complete:0.09079428816283408 :0.5163833133231182 +to:0.7413260637809929 from:0.2544143532610826 The:0.00037740076588018887 bearing:0.00029544534137901016 :0.0035867368506653967 +Tho:0.0559212018871008 Mr.:0.05508717270157154 The:0.036624258956874586 In:0.0338319879321736 :0.8185353785222794 +and:0.16117414150136194 the:0.07215855809186643 of:0.07206121505357732 duly:0.05477458516967388 :0.6398315001835205 +and:0.0849134798100883 of:0.06570622361789029 the:0.05713354760432556 for:0.03610029468058537 :0.7561464542871106 +to:0.9135156107168639 over:0.05189564724003831 on:0.01342398591179286 into:0.010253723073529569 :0.010911033057775396 +lie:0.16277915257093012 from:0.12703013517912454 long:0.053487312379586746 wide:0.05159803591974872 :0.60510536395061 +of:0.1811753547137467 and:0.14236611132883517 the:0.07562481400652822 is:0.0449991950925269 :0.555834524858363 +and:0.2963735834820944 to:0.08545095308395922 But:0.014959554508968348 but:0.013185017866782278 :0.5900308910581956 +look:0.21962395785773775 me:0.09824471641083823 feel:0.060520758188362354 almost:0.03002939179485929 :0.5915811757482022 +which:0.2990286043120003 and:0.20563409994049628 nor:0.01755881623674033 for:0.01088654936322121 :0.46689193014754193 +the:0.8372303036390923 his:0.10981729769503615 tho:0.010454286746229014 this:0.003593306673664548 :0.038904805245977864 +and:0.23559656481336316 The:0.08799804759299326 the:0.08777892519055501 with:0.07375606040345004 :0.5148704019996386 +a:0.1546999260513735 the:0.11354622562312243 very:0.04479992647718499 in:0.04432529865095577 :0.6426286231973635 +and:0.08010836908289196 ing:0.02266158296894025 heavy:0.02203548882703969 address:0.01973722932528262 :0.8554573297958455 +of:0.8134186711520847 to:0.03095074522813567 o:0.025485713530521537 in:0.02282952673951587 :0.10731534334974235 +air:0.03420685107235557 it,:0.034163968938080415 this:0.023723926076207394 others,:0.015154936423460802 :0.8927503174898958 +which:0.1467892991944254 and:0.038378050341947245 and.:0.018624754854850677 it:0.01707407099577215 :0.7791338246130044 +not:0.7547898688199406 never:0.09200555130814965 also:0.03698878439001834 out:0.0361832393718837 :0.08003255611000787 +I:0.12388949103137797 we:0.10475827234585927 which:0.09664468083325764 they:0.06673610780697926 :0.6079714479825259 +part:0.17951158296320519 degree:0.07397843932457179 petition:0.05161291230123842 farm:0.040655235037805604 :0.654241830373179 +most:0.5157244479326194 soft:0.07317330326592608 first:0.032362110561000364 best:0.02310915108564174 :0.3556309871548123 +of:0.5055584695908089 and:0.10538302006968144 about:0.09951292320955939 hundred:0.06674838075650512 :0.22279720637344516 +far:0.8561400141881913 it:0.006246784496360452 made:0.004589694672766641 It:0.004174555516115698 :0.12884895112656583 +time:0.553182196118116 space:0.2442146392214479 while:0.02128676153407036 lime:0.0023472713178837065 :0.17896913180848198 +to:0.997382211196417 lo:0.0017892936915698365 of:0.00040753691423119613 that:3.1506267586711875e-05 :0.00038945193019529587 +gain:0.178647768999744 touch:0.07511239727461896 man:0.0661845957604958 matter:0.04935673012424378 :0.6306985078408974 +of:0.28177867464586226 and:0.14943812555562322 in:0.14403374447297015 to:0.05871136569135553 :0.36603808963418893 +The:0.4072517651804707 the:0.1301464922175485 A:0.10742086315455042 and:0.059624596438357415 :0.2955562830090729 +thousand:0.7213150025195773 hundred:0.2078567623356151 million:0.032839570228447815 millions:0.0021923677847165437 :0.035796297131643375 +such:0.12251363359323182 the:0.08792784302114096 service:0.018165515667142428 sale:0.014000748762524514 :0.7573922589559603 +dollars:0.4311438333840332 people:0.1911170642531217 dollars,:0.07229070828208106 money:0.06867405944794801 :0.23677433463281608 +of:0.5577413818628094 for:0.09054689268623652 with:0.07680582370099914 or:0.06899591490366246 :0.20590998684629247 +White:0.0019680908381345583 and:0.0011298211266977246 Johnson:0.0005989755991774427 Smith:0.00029581953632446873 :0.9960072928996659 +foot:0.36904107486601156 mile:0.2764766222155872 year:0.05937619900292729 block:0.03474304775647981 :0.2603630561589941 +and:0.15313961823732927 world,:0.050173408892490036 Department:0.048042849267624324 which:0.042657904918784254 :0.7059862186837719 +real:0.23276255379358962 principal:0.09196391476411235 direct:0.08828003704569859 chief:0.08582881992755392 :0.5011646744690454 +must:0.4671112158247806 should:0.3678030073428601 can:0.0768843575592775 might:0.05397990947059868 will:0.03422150980248327 +of:0.17003270527534728 and:0.1334216708766104 the:0.04886754156501341 The:0.032140534760767836 :0.6155375475222611 +a:0.21084474632599873 the:0.16078185356592922 not:0.14278934938879675 an:0.043470407485686195 :0.4421136432335891 +back:0.06623298218538537 and:0.06382097664679566 arm:0.05046126104024006 about:0.041162586578439894 :0.7783221935491389 +the:0.9902327518076751 which:0.0011925720346732658 a:0.0004258061621460548 tbe:0.0003171791860261503 :0.00783169080947944 +debt:0.24784369199733117 call:0.1474538066457379 Government:0.10244222227372585 matter:0.0772503508036579 :0.4250099282795471 +the:0.9124794473452773 tbe:0.05784377500352278 your:0.01146253652468367 tho:0.004031433200369239 :0.014182807926147074 +to:0.15877942432849698 of:0.12276019587491234 against:0.046205475844245 from:0.034899304569916724 :0.6373555993824289 +old:0.18179998414323062 of:0.021032233703015348 do:0.018310573346348877 his:0.018218389755263763 :0.7606388190521413 +of:0.1296404048220352 was:0.08410153027601296 and:0.053397164453844216 to:0.029925907899671502 :0.7029349925484359 +other:0.32009745206993084 the:0.20465113752343406 are:0.1315811393598472 who:0.12405267167102058 :0.21961759937576736 +to:0.17106742174613043 they:0.10762167731115174 would:0.10395105493294646 not:0.08847928706347867 :0.5288805589462926 +face:0.1404171422998622 strength:0.12560526690836268 edge:0.1002761606917501 other:0.07066385793170452 :0.5630375721683204 +seen:0.6428780744711888 been:0.06467834548188918 heard:0.021990248845409382 found:0.02190338692623293 :0.24854994427527966 +and:0.20859321019036445 was:0.16800921849508924 were:0.13911188117943774 I:0.08555911316048015 :0.39872657697462854 +let:0.002362235278469714 give:0.0021645954398146995 stop:0.0019366128636098346 keep:0.0009061961072370552 :0.9926303603108688 +and:0.22525116978638415 to:0.11534653996020622 for:0.1039435221784865 are:0.09401731640947705 :0.4614414516654461 +many:0.13390869531267613 no:0.10016548160370548 ail:0.07475100531292578 two:0.054176561068708544 :0.6369982567019842 +his:0.9431652449812516 a:0.024265650862797465 our:0.013121634605209332 the:0.010028116091280686 :0.009419353459460876 +from:0.33219298194758257 having:0.19677507052331322 being:0.09409900292109356 was:0.05900602558244299 :0.31792691902556763 +of:0.17046708692183354 in:0.15566510261325608 to:0.15303703609611324 with:0.10570188768600332 :0.41512888668279385 +a:0.20483543130440446 the:0.11994381348637297 not:0.11985700300763813 too:0.0901357410681824 :0.46522801113340206 +time:0.5630143190319369 day:0.22054709141013357 city:0.06003379883168809 committee:0.036570214153432874 :0.11983457657280862 +the:0.09269326606637979 tho:0.014607294403271005 Congress:0.010607154124663613 water:0.009659701444117917 :0.8724325839615676 +at:0.5008333702530926 and:0.11637510358960261 to:0.07310372551197501 in:0.04874706968108375 :0.26094073096424597 +do:0.058279149362507734 people:0.01388156883065064 ex-:0.004650199235265405 contract:0.004466313482405166 :0.9187227690891712 +of:0.07934456379669327 Mrs.:0.06414235890141061 and:0.062160058226015696 gold:0.05538065878649578 :0.7389723602893847 +freight:0.09816005469077319 miles:0.019639025069953336 the:0.014634908088295456 herself:0.0062207348446113924 :0.8613452773063668 +started:0.24600871175641364 asked:0.09240851632982312 rest:0.0397143828607821 village:0.023325478956482782 :0.5985429100964983 +to:0.7979617544812979 in:0.1234943185549682 at:0.043464061948043524 and:0.014145464867859373 :0.020934400147830844 +July:0.9777550136371472 February:0.020701465239377104 May:0.0011924629168443724 September:0.00020148226969904376 June:0.00014957593693228153 +in:0.04126520946941969 and:0.03947660480923394 of:0.03147935298276777 to:0.02887740044741746 :0.8589014322911611 +the:0.4928020595391096 to:0.11663752023202985 between:0.09456316315895297 in:0.07148120863236211 :0.2245160484375454 +fact:0.8028657687770472 wonder:0.036532162120523924 probable:0.008173721821996306 truth:0.00771696540351747 :0.1447113818769153 +in:0.27349359810145724 by:0.25180249839666385 to:0.1688484276522436 and:0.10224391614017306 :0.20361155970946218 +with:0.9760182752520619 With:0.001751848389434634 of:0.0013986214544281603 between:0.0012454175235277894 :0.019585837380547453 +and:0.6859578256452138 Well,:0.03602250207734703 not.:0.02662956830601634 here,:0.025198551484397553 :0.22619155248702533 +until:0.22586667557686174 that:0.17163023387017673 and:0.0656996633155465 but:0.029955257779970056 :0.506848169457445 +the:0.43009197456124365 his:0.07247873877964088 a:0.0700957820825188 full:0.06314058788045435 :0.3641929166961423 +thing:0.1520976472699331 man:0.12658375118429732 and:0.05585242612174385 man's:0.04465241916792068 :0.6208137562561051 +the:0.2969221075817599 tbe:0.05775339886365236 two:0.03006625695330622 his:0.014268526161128288 :0.6009897104401533 +ago,:0.8761213423177416 ago:0.025692189650502593 ago.:0.016733510211972637 since:0.009828006539898439 :0.07162495127988477 +again:0.03839013596598279 j:0.03769230489095414 meat:0.032636772228301095 me:0.03021025752711182 :0.8610705293876502 +saw:0.14918851212136125 fire:0.08507316163468062 house:0.053117055135326205 residence:0.04214997830303975 :0.670471292805592 +New:0.15647534711328565 @:0.11839836376672262 per:0.050948887340183095 do:0.03244948578566509 :0.6417279159941435 +the:0.1564412581419436 of:0.15504411078494026 and:0.12022461233223213 The:0.07181690753978799 :0.49647311120109594 +a:0.9987811235067198 an:0.0003947727557058467 bright:0.00029104167567976384 to:0.0001418545252108729 :0.0003912075366837597 +as:0.07432376982351432 according:0.058959454755589516 and:0.049597243143558824 them:0.029475081787244933 :0.7876444504900925 +may:0.4959184926211351 will:0.1888144828132261 to:0.1417440281923127 should:0.09059373812921859 :0.08292925824410746 +or:0.34709383785363784 and:0.14999624140335877 them:0.09271852514584668 him:0.05430392254793343 :0.3558874730492233 +at:0.0925108153670934 the:0.04138286998105436 ::0.03699013348912559 of:0.030765500099895902 :0.7983506810628308 +has:0.6974113969182426 to:0.20833645190018232 and:0.023718779555580306 had:0.018410808172024326 :0.052122563453970615 +that:0.8072707575917358 said:0.18376543253388591 which:0.0026198948939186724 the:0.0021161453454158125 :0.004227769635043798 +small:0.06521793918694063 natural:0.05557238108763846 great:0.04873173991852249 beautiful:0.037672776357435565 :0.7928051634494628 +that:0.1711308881764667 when:0.026627669318642605 day:0.025234183015298863 State:0.021958061011622815 :0.7550491984779689 +THE:0.217015835758611 A:0.051267675668125914 OF:0.03244853863911225 and:0.015328336530314778 :0.6839396134038359 +raised:0.25706959340401825 to:0.08294175880736722 or:0.0658466899154766 \\:0.06534669940006606 :0.528795258473072 +will:0.21478780640533612 is:0.17609211625678972 were:0.16759439925917083 have:0.13167882606305423 :0.30984685201564904 +doing:0.011130221281843135 it,:0.007234978908394844 securing:0.005617977067039002 building:0.005235891207364567 :0.9707809315353583 +in:0.3495356767156471 of:0.3025503926548676 In:0.09781062607583799 found:0.032803535556387035 :0.2172997689972602 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +It:0.12166222572087541 say:0.11325057100003996 year:0.10542310520295603 that:0.06336415747925768 :0.5962999405968709 +must:0.028894246841302422 upon:0.023493143642111015 can:0.020853246764911165 is:0.01356476133009123 :0.9131946014215842 +conditions:0.3180909519048615 here:0.28086387920424516 years:0.017839430244504715 year:0.016804244703829515 :0.3664014939425593 +It:0.7306168688618958 it:0.17016519476793646 this:0.06796496240739058 he:0.015503454830249525 :0.015749519132527735 +of:0.8649084833145481 to:0.02108993623980667 in:0.019048489795237572 are:0.015394501562901572 :0.07955858908750597 +how:0.5767112685329663 what:0.1297825056522476 him:0.11651852396747249 nothing:0.09574288003842361 :0.08124482180889003 +and:0.15492847795352271 the:0.05826169367039168 The:0.05167806493572296 of:0.046280270794654126 :0.6888514926457084 +of:0.13109200668385074 and:0.12084080370413425 the:0.07357640701650253 to:0.03738366320214894 :0.6371071193933636 +the:0.17235113161855553 and:0.094934670915311 of:0.06159864263655678 The:0.04522246294217874 :0.6258930918873981 +and:0.1711240340201348 but:0.14097338287066466 yet:0.02403411730504319 for:0.0236613142529297 :0.6402071515512275 +in:0.3824269097099092 of:0.2762229803092628 the:0.2490019091182961 to:0.0510042035990197 :0.04134399726351227 +of:0.6795421389232096 01:0.09280237455564137 oi:0.08822333888996384 ot:0.0860407187133407 :0.05339142891784457 +Our:0.26705808888760796 our:0.17053395462434087 The:0.04234158691044967 the:0.03263746099767583 :0.4874289085799257 +and:0.21915224864053073 to:0.08261519723043252 the:0.07777061648367957 of:0.07606093939869575 :0.5444009982466613 +heart:0.09008874737559261 husband:0.06087416953864002 father:0.0343563097897442 death:0.03338390883444366 :0.7812968644615794 +proper:0.18397965705419428 greatest:0.04076350460491794 same:0.039195800256626466 special:0.01418152476848664 :0.7218795133157746 +the:0.3905021626770249 our:0.16657458363151728 their:0.1571728455397319 his:0.13408698499083788 :0.151663423160888 +went:0.4920722201394477 got:0.24440713097765096 had:0.07499030401738388 made:0.023090525467657216 :0.16543981939786032 +the:0.41745705579564074 a:0.26648434852696784 his:0.12605302640074179 an:0.03887558503127678 :0.15112998424537277 +to:0.05120667018874909 here,:0.029320853427157532 required:0.027999483241722575 offered:0.008553224747482106 :0.8829197683948888 +a:0.8706632222516207 the:0.11194571820827537 tho:0.005187072322736153 our:0.004243711116687431 :0.007960276100680388 +John:0.00830628946339589 W.:0.006751298690245859 George:0.006601166362598423 and:0.006336357832013454 :0.9720048876517463 +begin:0.9587139292554305 sell:0.002173346665445183 call:0.0014826764022983039 see:0.0010012217609056322 :0.036628825915920475 +of:0.23953911236291725 and:0.11576029925634884 the:0.045625342628030086 The:0.026863596401230802 :0.572211649351473 +young:0.4195389329286569 dead:0.12209458284445526 old:0.11640398982199206 same:0.08557131172306469 :0.25639118268183103 +with:0.9760182752520619 With:0.001751848389434634 of:0.0013986214544281603 between:0.0012454175235277894 :0.019585837380547453 +been:0.2445983313631185 things:0.05752139277531079 the:0.042689526391240996 turned:0.03651362857381182 :0.618677120896518 +same:0.01270768425235896 blood:0.007011528944291335 or:0.006495862832561228 most:0.0038574092514652974 :0.969927514719323 +the:0.32307476165206733 all:0.16775026647365207 many:0.08899072451339163 a:0.07661372661555678 :0.3435705207453321 +and:0.11072078051391862 of:0.07651025008669059 to:0.06085588778593752 the:0.05371534828083965 :0.6981977333326137 +the:0.505384944863039 a:0.07754419358199255 tho:0.02603868466038583 his:0.020021520628092017 :0.37101065626649055 +::0.35140114847451637 before:0.2901645083822996 be:0.10913084500622806 been:0.08279871318340258 :0.16650478495355334 +is:0.14309341003984438 us:0.13056372956453574 by:0.10753215022907782 represent:0.10440103343084332 :0.5144096767356989 +country:0.13417385399136977 is:0.12395026391841804 season:0.057656190084135334 will:0.04873888458792184 :0.635480807418155 +and:0.2578490578462146 to:0.20207754584853896 Block:0.0749740627593565 from:0.04509471659145495 :0.420004616954435 +the:0.11656784320339446 January,:0.09310264310245611 June,:0.06244191429912867 April,:0.06151947933381181 :0.666368120061209 +letter:0.022649972005941394 business:0.022617368061013943 weeks:0.01624718822027038 day:0.007320638899032424 :0.9311648328137415 +years:0.8714415904907586 or:0.025206743287431187 days:0.02101528856397155 months:0.0154860397364026 :0.06685033792143606 +of:0.3094076596897606 in:0.14315106850294582 for:0.12529448697142834 to:0.11910877592374743 :0.3030380089121179 +other:0.047054993849914885 same:0.025291546418364556 people:0.01671034960406555 the:0.016260673060172245 :0.8946824370674828 +works:0.04443814882326908 use:0.040787714351932215 work:0.03649977655907296 board:0.030620990951694717 :0.847653369314031 +be:0.6774888426082615 be,:0.2291912175747627 be.:0.016050566530277956 are,:0.007781294679055536 :0.06948807860764245 +to:0.916718794111823 for:0.017292244270847655 lo:0.010051457631000156 and:0.007485120774925252 :0.04845238321140397 +visit:0.5376596354406695 profit:0.04815380626346639 dollar:0.0359153783936171 note:0.014926712950431657 :0.3633444669518153 +the:0.5814106342498034 a:0.06689511567913164 April:0.061483408794001625 March:0.029931090938259436 :0.26027975033880385 +done,:0.8989874363479534 done:0.023651086497435823 seen:0.005508159524843874 hoped:0.004150638251914274 :0.06770267937785285 +the:0.507018245962928 his:0.05281208119310604 human:0.044812871697910886 tho:0.0307342509846666 :0.3646225501613885 +and:0.1620388544591834 that:0.027862410286596164 are:0.02622582135771219 was:0.02584229010524841 :0.7580306237912597 +most:0.02697878754088361 said:0.01700399440497773 the:0.015534871061795463 United:0.014038219876569322 :0.9264441271157741 +for:0.10093833244225633 that:0.09399025111972815 in:0.08177491220256103 of:0.07375836108219 :0.6495381431532645 +New:0.9029173576885882 Now:0.045123280069182904 few:0.025337716523546022 as:0.002038714299541547 :0.024582931419141273 +of:0.35485992419467893 into:0.2218451571756176 for:0.15582876740682727 Into:0.040203864435261596 :0.22726228678761454 +cut:0.9969088709922154 be:0.0010002097050486876 never:0.0006362443811696949 run:0.00041484451316906154 :0.0010398304083972518 +described:0.10138838717172532 an:0.08205133373645712 named:0.07170835702040351 all:0.042620640901750224 :0.7022312811696638 +people:0.9272496259094478 ladies:0.016500419728868634 citizens:0.006869552702011295 order:0.004436215336176574 :0.04494418632349571 +a:0.18099823497103645 not:0.17360036165237058 almost:0.11584567485213852 quite:0.11508224020898628 :0.41447348831546815 +the:0.17295177306863735 of:0.1540359537643508 and:0.1074639444041705 to:0.025690115611513326 :0.539858213151328 +people:0.6974213430503498 must:0.056047884426078526 that:0.04845493013491403 and:0.024841968555054644 :0.17323387383360317 +and:0.05640607177488109 together:0.026188569486642964 it:0.013229771477825709 covered:0.012653653087380213 :0.8915219341732699 +notice:0.5595121319858761 corner:0.38572038195240016 copy:0.013300640639991696 school:0.0009218895534479992 :0.04054495586828419 +and:0.06456703850676074 of:0.0629922871665274 to:0.04290845452924559 the:0.03603125445214404 :0.7935009653453223 +times,:0.07003686705868649 states:0.05819729238730499 places:0.02458738239580259 ways:0.007451740822434015 :0.839726717335772 +her,:0.13810534670587796 before,:0.10057293574847691 it,:0.08632634283612849 himself,:0.0698075337543889 :0.6051878409551277 +him:0.19027632613710266 into:0.18067374293049246 it:0.15061865878293051 with:0.12840666292753772 :0.3500246092219367 +and:0.20931484237105916 of:0.16432654774084582 was:0.14957706568635862 in:0.08783060437018658 :0.38895093983155 +Federal:0.16028692965452795 General:0.12628769315855096 British:0.10551809168666523 French:0.09461675708711233 :0.5132905284131434 +deemed:0.47254072365392275 in-:0.23965898094099297 ,:0.048693439468919276 not:0.021281113719571546 :0.21782574221659348 +100:0.008779656425009554 200:0.0029293446760537936 30:0.0018413137187394013 000:0.0008209479218871378 :0.9856287372583101 +of:0.41946649393148266 in:0.1636117183518218 for:0.14373494315042426 to:0.12967745460721683 :0.14350938995905446 +for:0.1251163591513176 of:0.10821839808723721 in:0.08894918875428533 and:0.08386355568983495 :0.5938524983173249 +payment:0.09446523311986843 chairman:0.08143220009821243 clerk:0.04810572222153392 credit:0.036656251082723336 :0.7393405934776619 +act:0.14824757661039634 citizen:0.14088130420427278 it:0.09954979129574047 which:0.0851942210768629 :0.5261271068127276 +to:0.9621180120141499 for:0.00807390334579327 of:0.007185991977956574 that:0.003734152667008716 :0.01888793999509152 +the:0.6368229148297334 and:0.062409716345423534 of:0.040625829614093306 The:0.025625547615799684 :0.2345159915949501 +the:0.4399565205762444 this:0.09086728020955359 a:0.06848455409134309 his:0.068132706557156 :0.33255893856570284 +on:0.2737921514402895 in:0.23562584933344186 of:0.18515094177712726 and:0.07790946691673767 :0.22752159053240373 +to:0.9876660052902156 you:0.0022779096123018466 it:0.0017352424466144062 them:0.0008495509078907949 :0.007471291742977178 +made:0.08375886237413344 covered:0.010445610602951428 for:0.0018455288762152207 received:0.0013753890829018454 :0.902574609063798 +the:0.3898807521983433 and:0.07276459008280332 a:0.044762132989853695 The:0.03605232556885487 :0.4565401991601447 +ready:0.19840014958579327 better:0.030437791166613076 more:0.016929932988148634 larger:0.01590727370149878 :0.7383248525579463 +and:0.16282537407069425 of:0.08575418762570021 to:0.058309384098374176 by:0.04957623300265267 :0.6435348212025787 +And:0.3886698121445653 and:0.2984997833117069 for:0.026998747055401697 since:0.018379797643052097 :0.2674518598452741 +necessary:0.004368033023535366 .:0.0032047669337662084 required:0.0023608522213634966 and:0.0017753999798086585 :0.9882909478415262 +of:0.042026626585372366 and:0.03528098298739226 the:0.030625709280909637 to:0.017504871503578188 :0.8745618096427477 +woman:0.8087580077715734 which:0.039761656327629014 be:0.0313032220674491 us:0.013415663407639675 :0.10676145042570895 +as:0.2867819457327108 ac-:0.18922802383285015 in:0.15706913541719014 a:0.13654686529400142 :0.23037402972324747 +Germany:0.041540085723352695 up:0.03806493987905495 and:0.028001577982094517 er:0.018474229665655532 :0.8739191667498424 +to:0.335842345256734 native:0.22054625078407156 the:0.16108386482092885 this:0.05734854674118369 :0.22517899239708186 +on:0.900305343938675 of:0.04670427799455091 in:0.018556561633076507 upon:0.00426624659122927 :0.030167569842468153 +found:0.16735084385421378 posed:0.1100013511243201 the:0.008085080158855397 and:0.004104235540933924 :0.7104584893216767 +room:0.3332308323250888 that:0.1927904517754036 out:0.05827575208909754 in:0.027479658470733116 :0.3882233053396768 +that:0.5413441646608742 as:0.0862937600974352 and:0.03488688613124872 now:0.014692047367897561 :0.3227831417425443 +said:0.2098322156042728 which:0.14350345153673053 of:0.12682322670083368 The:0.12321641847115268 :0.3966246876870103 +the:0.9746650796339907 a:0.013957558499767323 tho:0.004383265296080901 tne:0.002032105626339252 :0.004961990943821803 +the:0.23059182529129005 table:0.08122446653484838 these:0.05347159278494232 window:0.05340203106761395 :0.5813100843213053 +party:0.6853082008722265 and:0.02722880735593961 ar-:0.012317147090924064 State:0.009073001988767346 :0.2660728426921422 +to:0.19889541978268765 of:0.09972193105603111 and:0.08993152579785477 the:0.07395488826211231 :0.5374962351013142 +tain:0.0014194681214173583 scene:0.00048321842673846194 -:0.00037087377933427016 the:0.00029828097261107463 :0.9974281586998988 +the:0.5565665180234437 a:0.14802161373911363 Great:0.12214282321875697 that:0.03486803095022092 :0.138401014068465 +of:0.33211330768682484 and:0.12375516056747207 to:0.12179979915121388 in:0.10916338934772839 :0.31316834324676074 +by:0.4751864097560185 and:0.4253347470242711 as:0.03670005773454852 that:0.034798998209167584 :0.027979787275994233 +part:0.28429143582242444 side:0.039528191289843286 night:0.035431229043014954 morning:0.01676434453097078 :0.6239847993137464 +the:0.6813155700001787 tho:0.044828611647825416 a:0.041994094467290986 his:0.02925469543456185 :0.20260702845014297 +they:0.3633777336806867 he:0.20680916964212956 she:0.1842732202145787 it:0.17358528791990985 I:0.0719545885426952 +was:0.2143835328659603 is:0.11815177604540993 he:0.10622309882471077 the:0.08189568834153685 :0.4793459039223822 +and:0.5132325197661348 but:0.24572132507272693 that:0.10455564863638293 for:0.06244206256433153 :0.07404844396042386 +was:0.2744924235384218 had:0.11828454300483703 is:0.0717807811432365 the:0.064346777155986 :0.4710954751575187 +existence:0.1171350172524215 cause:0.09495490071738526 spirit:0.07574951879139949 love:0.06938920593989606 :0.6427713572988977 +friends:0.03539993923682292 State:0.034013422368722325 Board:0.028460904322896635 state:0.027105341916390815 :0.8750203921551672 +of:0.9059339247711601 or:0.06088327876787874 oi:0.006529193264243199 Of:0.005838067785454115 :0.020815535411263904 +from:0.19759474400926694 past:0.17468729859364573 last:0.11934945065131854 next:0.09617511273414425 :0.41219339401162447 +to:0.5132679098862662 at:0.2149473074365336 from:0.15525139980948005 in:0.09052905548115088 of:0.02600432738656922 +the:0.4293968325185981 our:0.4096500354259982 its:0.028120404281427074 her:0.02071560332226123 :0.11211712445171547 +A:0.21618281885695403 and:0.11815622369409345 Mining:0.09347498979584312 &:0.0463814254245553 :0.5258045422285542 +per:0.1624965748507043 years:0.10297027035257483 er:0.05963327316132949 as:0.05439982601124836 :0.620500055624143 +the:0.7016262014245499 a:0.12216023660579561 tho:0.029121234293887105 an:0.020081173079875933 :0.1270111545958915 +further:0.6880601222690199 more:0.17893369465540793 particular:0.1289045164549932 attention:0.0012046226961739796 :0.002897043924405125 +German:0.27073690467230155 men:0.17357081225042234 is:0.032327172502744604 though:0.026151982146794185 :0.4972131284277373 +of:0.1863556594506466 and:0.14467618219728598 in:0.0977197764502189 to:0.09009471048156516 :0.4811536714202833 +and:0.5807301556767565 for:0.2783831805384125 since:0.027816573741001688 aud:0.016709430420993796 :0.0963606596228356 +J.:0.23779102919781242 win:0.09420967082273636 W.:0.09066782019799911 Joseph:0.07709554924404831 :0.5002359305374039 +Louis:0.5742790486868572 Charles:0.030503642721303743 Paul:0.025936894536461867 James:0.010151184285697263 :0.3591292297696799 +that:0.45688984317219655 of:0.15310082975784084 to:0.12967580957881275 ls:0.08317362840909097 :0.17715988908205887 +the:0.15797919472061975 of:0.137282618998722 and:0.11732489138561629 The:0.09155073920340098 :0.49586255569164095 +determined:0.22752568525536354 that:0.08999296818670316 was:0.06606742371122988 which:0.05695256490888982 :0.5594613579378138 +citizens:0.058119373837087734 note:0.0188641852089156 money:0.015384531830170694 vessels:0.014876666483413185 :0.8927552426404128 +be:0.22806202632622546 have:0.18162953761219297 here:0.1531952230127516 not:0.10434023812260225 :0.33277297492622776 +purpose:0.10355778243228166 sum:0.034582817877108915 County:0.021707058449371208 relief:0.01910256656907205 :0.8210497746721662 +the:0.4296616880606578 a:0.07578931778777805 their:0.047781508383199084 water,:0.03460165213144778 :0.41216583363691733 +est:0.023005008756885634 of:0.014601940602603218 S:0.010835801699199303 i:0.01073143365178877 :0.9408258152895231 +as:0.2087815196565613 the:0.11575561017392996 more:0.10502060300436557 from:0.10385169613208355 :0.4665905710330596 +the:0.6452900977680234 The:0.09253990037876451 and:0.04631878068262006 for:0.03161804708752298 :0.1842331740830689 +1:0.0008064609284269637 last:0.0005579486250806666 last,:0.00044946480349107446 and:0.0003054316690287036 :0.9978806939739726 +and:0.12304917771381586 that:0.12239719286587748 when:0.08751174601288476 which:0.07721802029163176 :0.5898238631157902 +old:0.03971445942316027 late:0.0392799497634102 most:0.029963039791403596 Attorney:0.026930051536637065 :0.8641124994853889 +those:0.17579458001645262 Those:0.08875434576128366 men:0.07915779016451688 and:0.0790970824190907 :0.5771962016386561 +and:0.1698433523273304 as:0.12016824272688166 the:0.09920503618172238 in:0.09205589009931686 :0.5187274786647487 +and:0.12310633450465894 the:0.06647621437267942 of:0.06643928857998958 to:0.046904910829213484 :0.6970732517134587 +and:0.06111123251679658 Court:0.04182093599478575 of:0.03390611908959229 or:0.01195529685929016 :0.8512064155395354 +country:0.10849004389632827 history:0.07064153755801904 city:0.05849862837310754 State:0.0495980458487026 :0.7127717443238424 +the:0.90337446231936 tho:0.03586762483720351 his:0.019261412217907347 my:0.017784088127326264 :0.023712412498202853 +shall:0.6954591305834632 should:0.160215695795307 may:0.05748384174417057 will:0.03687818677876609 :0.049963145098293214 +letters:0.052292076935045395 as:0.03751792616656882 ore:0.03490899273995373 were:0.014808210408023603 :0.8604727937504083 +for:0.35138436060402023 of:0.3137434089873468 before:0.12986081473643732 in:0.10722454947436996 from:0.09778686619782571 +It:0.8571864873192293 she:0.06062647656670309 it:0.024083493449101195 now:0.012210398343615588 :0.0458931443213509 +that:0.19699717442501458 the:0.0712506736526495 much:0.057012045451988784 ths:0.05007190638395812 :0.6246682000863889 +power:0.12392526988982176 con­:0.012586670171938276 influence:0.007980604340267107 and:0.007496926146786582 :0.8480105294511863 +United:0.8727053500908833 the:0.04691231636936052 to:0.0008921733260061924 a:0.0006535035852796113 :0.07883665662847042 +have:0.6308820177360188 had:0.1634924345910088 never:0.07585849494601082 and:0.07059787226419914 :0.05916918046276252 +settled:0.09305389431889412 long:0.03537605847886631 made:0.007990685609597821 rapidly:0.005813720800600628 :0.8577656407920411 +the:0.5141052569278101 those:0.04919206994014952 these:0.044557382987224704 other:0.04219004764999064 :0.3499552424948252 +the:0.8720706497891204 said:0.0760355501174751 tbe:0.019181215455383534 tho:0.016001955341925986 :0.016710629296094934 +Of:0.4997439620989697 of:0.2158711791677471 the:0.008987595563957597 ol:0.00528468489171007 :0.2701125782776156 +there:0.01102874773402185 which:0.0026716701244094672 they:0.0018439978641154868 and:0.0014644663912838519 :0.9829911178861694 +and:0.6935768496036887 to:0.20493927355286254 the:0.03990173857580759 of:0.020803733104295535 :0.040778405163345674 +am:0.15817448356847258 was:0.15309596354129376 would:0.13484415565087626 have:0.09253676774448916 :0.46134862949486816 +the:0.31591633085497184 a:0.3082431705186388 some:0.18882707795347567 all:0.018195541174507477 :0.1688178794984062 +of:0.9852777313178386 in:0.013190057193017897 In:0.0009057136494484614 ot:7.749643871574738e-05 :0.0005490014009794219 +The:0.11108504829615698 I:0.06853975536847247 the:0.05807748674556359 In:0.0522811705128332 :0.7100165390769738 +the:0.4146398206733091 a:0.1591611983453523 its:0.15607183120299645 that:0.10000045166516162 :0.17012669811318057 +Court:0.5008519084649997 county:0.0657680744240928 County:0.05381279310763831 death:0.020599670630702994 :0.3589675533725662 +tion:0.04542435077486872 part:0.027384317079283207 of:0.02122543389881338 object:0.018530191234243105 :0.8874357070127917 +at:0.5698881519645093 and:0.09486228306930272 from:0.08971582604115916 on:0.07423962988406721 :0.17129410904096148 +hundreds:0.020849235641451042 that:0.016317355151465793 those:0.015622072338199535 thousands:0.008461382596494333 :0.9387499542723893 +and:0.15151907844304183 of:0.1357007471554893 the:0.06268231582859725 Frank:0.06130201758094604 :0.5887958409919255 +therein:0.9984492698423074 and:0.0005299716460847845 by:0.00032611663602469937 be­:0.00024520211684220185 :0.0004494397587408885 +capital:0.1099786667340038 them:0.10902552854856072 got:0.09848864166001406 becomes:0.06751784755356048 :0.6149893155038609 +made.:0.12501837700321652 Is:0.0381385337239647 felt:0.007631947316155407 a:0.004722789013144568 :0.824488352943519 +of:0.06796706778651743 and:0.0629661384909371 the:0.05616390124138305 to:0.022883794881915148 :0.7900190975992473 +the:0.9202628469480203 tho:0.039526108382887844 tbe:0.01735208731471365 that:0.006086077205923405 :0.01677288014845472 +upon:0.2999234800417144 on:0.210057488358296 from:0.1852515394751759 around:0.14599870025648606 :0.15876879186832768 +to:0.9836251656921954 or:0.009453124761868652 tn:0.0020365564183478617 lo:0.00048580271196147103 :0.004399350415626564 +his:0.2187979472218857 in:0.19311234268039887 of:0.10596781987157931 all:0.08704178227936299 :0.39508010794677323 +fat:0.171500504078884 salt:0.1269441454026162 milk:0.04776209609309008 two:0.037531094592654565 :0.6162621598327551 +not:0.13994032541601692 found:0.12991625112447897 still:0.08859867108094362 now:0.0683246794026864 :0.5732200729758742 +with:0.10301609246707816 it,:0.019430636802946995 the:0.0159386070006784 to:0.013351531893931434 :0.8482631318353651 +years:0.17919904422637534 not:0.09729616376529689 in:0.06471323574457075 the:0.06375492659703016 :0.5950366296667268 +of:0.5039861570594539 Of:0.029374608874112133 and:0.017685881458290476 the:0.007567732993021545 :0.441385619615122 +try:0.045345746532433666 avenue:0.03782125728744725 one:0.03774066723733135 people:0.033699985066625034 :0.8453923438761628 +the:0.0174661034744296 more:0.012232364373474813 next:0.00859887276129175 first:0.008038116220813298 :0.9536645431699906 +and:0.14202329066501262 was:0.10953041122117323 of:0.08232436294279681 is:0.05260883357171074 :0.6135131015993066 +the:0.9111921359305412 his:0.05323760088620101 my:0.0069797200095459725 its:0.006914327489312948 :0.021676215684398804 +¬:0.01659129250750639 of:0.010643953811708996 and:0.007041821731118009 what:0.00668142338272254 :0.959041508566944 +of:0.13895070156520656 the:0.08754458745224962 and:0.08059819508825644 to:0.03477690241208723 :0.6581296134822001 +the:0.23135793944652663 a:0.09536721812535459 and:0.09307724508686546 called:0.04868186442764198 :0.5315157329136114 +of:0.128481538784826 in:0.09916559725705981 and:0.06583299782820197 the:0.04951745998342576 :0.6570024061464864 +with:0.9073821177402279 a:0.02807074013219211 tho:0.025668814322203456 no:0.022434017568746537 some:0.016444310236629976 +in:0.6045077321393858 the:0.08457450626036016 have:0.07506448403360559 In:0.03191766839293125 :0.20393560917371714 +the:0.6014937542708367 a:0.16294626882825217 each:0.0412629253428593 Mr.:0.034580700257478704 :0.1597163513005732 +of:0.3321750530141012 ;:0.04035536928812739 afternoon:0.029178820365096184 means:0.02879011029069194 :0.5695006470419831 +was:0.26355637959973705 see:0.20160528182782028 saw:0.1384553764619836 had:0.10984550606611757 :0.2865374560443416 +that:0.25034474701268766 then:0.14063832298800621 as:0.11389894819311873 if:0.07536887382422779 :0.4197491079819596 +after:0.2969586971761797 of:0.10597716937435776 to:0.08401592787577371 upon:0.07491653931118462 :0.4381316662625042 +increase:0.29128275960425204 extend:0.040408389449096076 exceed:0.022987998086177425 to:0.009117151417788011 :0.6362037014426866 +food:0.08923242211286692 tobacco:0.0397059612141573 wheat:0.02363400270584028 cases:0.01661895948109789 :0.8308086544860375 +before:0.2679702145234249 sure:0.11623129591951673 where:0.10813451844911269 told:0.10525651288418214 :0.40240745822376367 +due:0.5170946046950281 they:0.015237889559926837 the:0.009205129272130005 he:0.005685266974552729 :0.4527771094983624 +would:0.39748347053359134 will:0.24574369111672226 should:0.13372294261189324 may:0.1259774477284385 shall:0.09707244800935477 +W:0.2517939383187612 feet:0.2280446887543706 E:0.11155334998217598 F:0.05399128430577449 :0.35461673863891774 +of:0.9205301803444721 the:0.016181089729374785 ot:0.01388929392124863 or:0.011487893860977004 :0.03791154214392749 +and:0.7427163150685095 no:0.12364138357626994 of:0.08550612811298026 who,:0.022856892834474476 :0.025279280407765635 +new:0.06546641760856856 good:0.06355547985554817 few:0.06270753832657236 com-:0.05298763438332997 :0.7552829298259811 +to:0.5208676754661001 on:0.34236720445109037 from:0.07371129901842294 thereon:0.03207664184115005 of:0.030977179223236416 +an:0.3306470940736553 and:0.18653958577031474 they:0.08672415579512222 who:0.08664142684933922 :0.30944773751156845 +the:0.8011471302793106 tho:0.09371958669581446 their:0.03348913493641926 tne:0.026651799484702456 :0.0449923486037531 +republican:0.5587860928079463 democratic:0.10529706527881062 Republican:0.09076968502622453 Democratic:0.01498413060792693 :0.23016302627909171 +of:0.6379516565506268 owing:0.11543955719269337 to:0.08122298086724639 Let:0.024535450246484212 :0.1408503551429492 +the:0.5349087860651852 a:0.1970577945486917 public:0.06511658206479391 their:0.042554421668521 :0.16036241565280826 +I:0.6312469069650998 He:0.2191146642883772 We:0.053288020616769106 and:0.04142976340986533 :0.054920644719888716 +nervous:0.03838182008154581 the:0.033695938631382934 a:0.023912303725666256 act,:0.023812811264243963 :0.8801971262971612 +court:0.722363241041698 attorney:0.2703811976232311 judge:0.001763716696324584 court,:2.7472454106693584e-05 :0.005464372184639468 +to:0.16011936184353162 ness:0.08572025665034723 and:0.06781335889831279 or:0.06117528368278751 :0.625171738925021 +of:0.13411407883342322 A:0.06451092466813461 the:0.057645145824378456 and:0.054086981273052094 :0.6896428694010116 +should:0.3348828295276264 to:0.25001675038864907 and:0.06318553235436256 will:0.011264747384687555 :0.34065014034467445 +added:0.41113342235165556 too:0.2122340580514661 and:0.07188994245479967 So:0.058598930422800795 :0.24614364671927774 +and:0.07575168986520066 do:0.012531928060091405 to:0.012384427393957969 of:0.011634766166367893 :0.8876971885143822 +him:0.09209185220525808 and:0.07273426793701925 as:0.026626399655183045 enough:0.025181518338778436 :0.7833659618637611 +course:0.13039049375911868 middle:0.10299464422640846 office:0.05130353522385238 case:0.045914159228638375 :0.669397167561982 +white:0.051242877436612426 himself:0.03919204530552805 husband:0.03487638378264027 the:0.028902707238236135 :0.8457859862369831 +the:0.15503861617858358 or:0.1371787002715146 and:0.12244306025948981 a:0.1198663702493001 :0.46547325304111187 +where:0.34415599072610836 But:0.17174794997648893 that:0.13749825160288345 and:0.12460906537410611 :0.22198874232041327 +on:0.9919826139830635 upon:0.004524940254131824 of:0.0018258993740913668 to:0.0015405234928337814 :0.0001260228958795223 +of:0.2916597839250668 to:0.24449716294248744 in:0.168276961254677 and:0.07354319326764028 :0.22202289861012844 +as:0.05331951688793343 and:0.053073224330016565 efforts:0.03010769272203325 effort:0.029640827292866545 :0.8338587387671501 +of:0.27576892798028235 to:0.11011563096002176 in:0.1074787782589152 and:0.08662218850286643 :0.4200144742979143 +coming:0.20554181414530695 come:0.1446674981167654 pointed:0.04781605460248731 not:0.03817226337451435 :0.5638023697609261 +to:0.18214204286614272 and:0.12628853167574935 or:0.11996290282067851 which:0.09354003937492772 :0.4780664832625016 +of:0.14945829534761565 any:0.13430835371631739 For:0.11709345871589086 had:0.06656720369773549 :0.5325726885224406 +contract:0.12070339516199688 be:0.04911043448223478 She:0.033607794594570306 agree:0.03117511061231134 :0.7654032651488868 +good.:0.008333624914542783 matter:0.006251091509930846 longer:0.0031372337366725447 more.:0.001720509554574792 :0.9805575402842792 +miles:0.18212528245713894 an:0.1026562112279645 was:0.09905544977738667 is:0.07144252390996259 :0.5447205326275473 +to:0.6662682651250801 the:0.12611773099584353 from:0.10143209543566797 into:0.03698505449276433 :0.06919685395064407 +the:0.38291299801872214 mere:0.22040780616786323 a:0.18790269469011306 in:0.07487799584971329 :0.1338985052735883 +of:0.267769760857239 and:0.161278487687524 is:0.09206919667109772 was:0.08303557799067202 :0.3958469767934672 +These:0.27839667061794937 and:0.2501069696982069 of:0.10450143177474236 the:0.0966519352683524 :0.2703429926407489 +the:0.39411436635834085 a:0.048752681145381754 tho:0.026097996972180217 his:0.019346955304851848 :0.5116880002192452 +party:0.03679896918445324 rank:0.03549002052757396 man:0.008903110645372402 hat:0.006501189830073391 :0.912306709812527 +now:0.24780694751434001 a:0.1647828742834559 not:0.08540644540896743 the:0.06527049199306258 :0.4367332408001741 +finest:0.5627339073221176 American:0.17272727269057914 largest:0.12116368030324878 great:0.07289240395222613 :0.07048273573182824 +Mary:0.021741057698472954 Brown,:0.017713094077847734 Smith,:0.01174045806823357 French:0.005545886646051348 :0.9432595035093944 +by:0.38387910715098206 in:0.08204439766378928 the:0.029259721123432617 of:0.016831341951417993 :0.48798543211037804 +the:0.345893263935813 his:0.21565017501534287 be:0.11209615028511832 a:0.0956576239537803 :0.23070278680994546 +the:0.03980895282913306 of:0.02342269551314779 to:0.022433784330493173 .:0.02242502199903819 :0.8919095453281878 +of:0.28085814823107497 to:0.12746578911210538 in:0.07976417169041526 and:0.054634481321606344 :0.457277409644798 +house,:0.3607787335832524 first:0.09509500697600586 lime:0.08603401924688366 house:0.04708535887269714 :0.41100688132116103 +of:0.5500063949185701 in:0.09350330618520665 and:0.07237675569910389 ordered:0.0603940888763608 :0.22371945432075838 +and:0.1822639042633558 ing:0.14587874349330765 to:0.1252972727141821 of:0.11055466337290165 :0.43600541615625277 +the:0.22950303438251854 present:0.17620813492980741 once:0.09653243384754673 first:0.06595416558993134 :0.43180223125019596 +the:0.26273298973074066 North:0.15014959081232526 old:0.05388739260909777 same:0.02516347526968762 :0.5080665515781486 +@:0.11132247605247331 and:0.08676771291412302 the:0.05332797854004132 of:0.04907088237544427 :0.699510950117918 +line:0.06507375485016405 street,:0.03827579156167507 ;:0.03590409297001011 feet;:0.03337530062373549 :0.8273710599944152 +w:0.12713670143070602 must:0.06735211126685514 and:0.05176190647282258 of:0.03209115366252227 :0.721658127167094 +Public:0.3686136433692957 and:0.10305459304943777 from:0.06405991475158457 which,:0.015742512377930607 :0.44852933645175125 +that:0.8787729357287032 was:0.06758334383348817 the:0.012842881040323328 are:0.0065147578534519865 :0.034286081544033314 +the:0.43984236434654533 this:0.04329213393940797 a:0.035455715349767394 our:0.029567480222733273 :0.451842306141546 +that,:0.4809440205357399 that:0.1343874045312191 and:0.021746209461241815 not:0.017196040174699428 :0.3457263252970997 +useful:0.09743907536428795 express:0.04562207063125974 good:0.032955864876484414 grand:0.025329497238286054 :0.798653491889682 +Mr.:0.2826935698210674 S:0.22668491114586123 Mrs.:0.17935708355661345 Gen.:0.0971178183405846 :0.21414661713587324 +who:0.9086425422314296 that:0.04425567952540333 which:0.004317991673181481 one:0.0028132436206900584 :0.03997054294929558 +the:0.596816187808468 said:0.07587857970954097 any:0.0705317760235801 all:0.05523542527376766 :0.20153803118464306 +of:0.955961369835497 or:0.029678564067566617 by:0.003613315834517264 ol:0.0032588766654898767 :0.0074878735969290365 +started:0.007343634209307659 were:0.002609109478889309 are:0.00250413538577848 took:0.0012775983444366186 :0.9862655225815881 +and:0.14894627713781558 of:0.10108884887359909 as:0.08794308870493489 or:0.06965177009855264 :0.5923700151850978 +a:0.4039988272493132 the:0.22399597195354265 his:0.10744773763008136 A:0.0799086005414599 :0.18464886262560287 +and:0.1710171972230428 or:0.11915889474446371 but:0.05951604731362711 formed:0.04881469783236649 :0.6014931628865 +deal:0.6300783848667832 variety:0.07460741126277635 number:0.04954203214055095 amount:0.03909371385376758 :0.20667845787612196 +from:0.3972411457416631 to:0.29928780005127487 in:0.24036649044204952 at:0.03902377281857032 by:0.02408079094644207 +in:0.3909322827009515 and:0.17001063352159274 of:0.07244151166044363 between:0.04669893356775843 :0.3199166385492536 +the:0.7656506258248281 an:0.123552670265909 tho:0.04324203930128069 tbe:0.032307949354624776 :0.03524671525335738 +about:0.24732736486052573 at:0.24337506701451234 on:0.21534680058229025 from:0.1956851579360276 in:0.09826560960664427 +and:0.2385768775505632 that:0.13453670477794047 but:0.09477861612829334 as:0.05707466874363299 :0.47503313279956993 +power:0.005005595790774399 -:0.0018862183426612328 press:0.0007919077332620298 will:0.0003085846294278961 :0.9920076935038745 +are:0.9712130116268904 were:0.02123141535240362 ar:0.0030197662895001757 not:0.0014129770794573703 :0.0031228296517483356 +and:0.16919889384368247 are:0.09624339547379107 1:0.07485124174423252 is:0.06868289762942131 :0.5910235713088726 +like:0.516456921136356 as:0.1279162559770224 in:0.08089489656586239 into:0.07221185599770792 :0.20252007032305133 +of:0.9865039879634234 is:0.0037678175286526157 ol:0.0032867798140664255 ot:0.0012644642216706574 :0.00517695047218696 +the:0.5473591899374457 a:0.29186033543521933 its:0.08347603578524733 their:0.028483853094997413 :0.048820585747090084 +became:0.1252332633999258 of:0.09604773804294613 the:0.06561422773525971 his:0.05680550940693634 :0.6562992614149319 +as:0.714075843377835 the:0.08154699452134272 their:0.07362015567375302 in:0.07031178984162964 and:0.060445216585439526 +large:0.6276638539754748 small:0.010123595039185309 more:0.010005035491339766 the:0.009104137293946496 :0.3431033782000536 +the:0.1689980744587898 his:0.15860013293002076 to:0.10769193049986082 upon:0.08993329416143879 :0.4747765679498898 +so:0.7352080850171425 been:0.087384489631883 a:0.08098908519434853 not:0.04768377641878779 :0.04873456373783821 +is:0.420386799313971 was:0.21277052471535657 Is:0.12878797306790665 from:0.04675111225478666 :0.19130359064797925 +signed:0.05056535111023667 especially:0.029214087334061247 approved:0.02799735588732795 even:0.011676202107303824 :0.8805470035610703 +and:0.2175258209490289 I:0.17412771654263523 he:0.11387374114647168 He:0.06447347878000854 :0.42999924258185557 +of:0.19105183790344754 and:0.12117525133395242 The:0.09864130638488978 the:0.05916619443992635 :0.5299654099377838 +likely:0.16736145420021054 probable:0.1660289093641953 ever:0.054938988282742664 this,:0.03136056567236194 :0.5803100824804895 +?:0.3556024175739835 be-:0.022533145730797136 be¬:0.021749496218597862 -:0.02077841277218851 :0.5793365277044331 +acres:0.14050667858453839 hundred:0.138129679080685 years:0.13057300247320067 or:0.12124890557097918 :0.46954173429059687 +feel:0.6494530035808366 consider:0.06111644377259712 held:0.0443353817094785 found:0.015642231247719702 :0.22945293968936814 +home.:0.017519942955212624 States.:0.004673876317051686 city.:0.0013768000807889145 state.:0.0006947189161427868 :0.9757346617308039 +of:0.43638987677345553 in:0.13918749683267875 and:0.06801763821002112 or:0.05381456524003879 :0.3025904229438057 +of:0.4774999887588588 in:0.1044988160995799 to:0.09356919240738316 for:0.06235318567990544 :0.2620788170542727 +the:0.9618933453260907 tho:0.015218406631408263 our:0.01077236802871893 tbe:0.008557575671593222 this:0.0035583043421888263 +what:0.5500094849196294 of:0.13634365217465555 order,:0.12569778852080096 to:0.04292195438325146 :0.14502712000166265 +character:0.5092814353756632 County,:0.023189244709643418 country,:0.008054157427113224 body,:0.007102115698720013 :0.45237304678886014 +7:0.10892505374588614 in:0.023411793930062912 1:0.011715699683641945 again.:0.011582965848807083 :0.8443644867916018 +and:0.441448380787388 of:0.23717936621629812 that:0.1374118711393872 the:0.09320907244305494 :0.09075130941387181 +long:0.036586241602060816 fine:0.03216739422920052 reading:0.02981843863755921 them,:0.01984006707300316 :0.8815878584581763 +kept:0.04808550641859784 did:0.04414569651553323 followed:0.028136410990005387 purchased:0.02652436069374059 :0.8531080253821229 +the:0.683539758505287 Ihe:0.25600999134512936 much:0.02677452110811659 tho:0.017786655858912835 :0.01588907318255418 +to:0.48407027726771423 and:0.23601281837557495 will:0.11798573580634616 We:0.09390663064398033 :0.0680245379063843 +to:0.9948636598274749 In:0.0014234991203001997 shall:0.0006622944687257039 will:0.0005486638771704822 :0.0025018827063286093 +which:0.2937522090514388 the:0.1257649035627021 again,:0.07138317694096172 when:0.058488241117089716 :0.4506114693278076 +One:0.05584505645407104 and:0.048980711690161945 one:0.03532578483596558 out:0.028678886593236103 :0.8311695604265654 +of:0.929967206256071 ol:0.011786232412115816 to:0.010023636921822406 stated:0.008352602578268087 :0.03987032183172261 +two:0.8029173618212258 four:0.00919055420655622 ten:0.008642405888057668 few:0.007496993294831793 :0.17175268478932854 +m:0.5872415133646667 the:0.0127936098984655 of:0.008038025395243141 a:0.006629331383170248 :0.38529751995845446 +of:0.2066384819246631 and:0.09327658664244072 the:0.044091199169675105 is:0.03311352396956931 :0.6228802082936518 +being:0.21193221989774846 not:0.16457684674887096 down:0.1405502340192324 in:0.10523026836629298 :0.37771043096785517 +have:0.7546713022801549 had:0.10070828787547083 bad:0.07825091172701862 were:0.056890877263459164 hare:0.00947862085389645 +be:0.29296554966177163 require:0.1414344243304137 take:0.05500726788621979 last:0.04651758248760525 :0.46407517563398964 +and:0.675747186266118 to:0.3179148718509263 will:0.0014698163513851776 the:0.0009026729908124778 :0.003965452540758073 +of:0.04988493502181814 and:0.04464108538855639 the:0.042148037026765214 Capt.:0.02895376195225685 :0.8343721806106035 +shall:0.22520726283949064 have,:0.030154636482431604 are,:0.029226595599347656 would:0.007364862935892164 :0.7080466421428381 +line:0.3044678889668059 train:0.18900243873104822 evening:0.012792825735493483 feature:0.009405115417006013 :0.48433173114964645 +the:0.30218333525471575 in:0.23942917285063725 do:0.1892166947873504 well:0.06972274801486165 :0.1994480490924349 +duty:0.2900810422851616 state:0.0547628945550434 body:0.044190377056031314 business:0.04057175115558522 :0.5703939349481782 +a:0.21929203066235498 in:0.16659633365787788 at:0.11971067431141007 two:0.07445398727637706 :0.41994697409198 +the:0.9260858717583422 certain:0.052610051526924315 our:0.004981681616644694 two:0.0009896694163893378 :0.015332725681699532 +from:0.7248448039269852 who:0.07129052296028722 at:0.03704595568096862 in:0.03096700022445312 :0.13585171720730577 +the:0.39683684981076134 a:0.10428297795384238 tho:0.025940185379643838 an:0.02575982122235977 :0.4471801656333927 +about:0.2897250886150268 For:0.2895588299813381 and:0.20818033406382502 in:0.04772996861678479 :0.16480577872302532 +to:0.7554030611143286 that:0.16505997574339304 the:0.06254947111225247 a:0.009171144445382869 :0.007816347584642891 +of:0.6419588835805157 and:0.06720023376835929 in:0.05929171790715436 to:0.05016555771266416 :0.18138360703130663 +on:0.37807097709035525 of:0.15644145909819548 at:0.07358536967456003 that:0.055394517013635014 :0.33650767712325425 +the:0.39164504926794824 a:0.22072279763779723 be:0.05349522490585962 his:0.04069908462103719 :0.29343784356735786 +meet:0.2741446386118901 be:0.18100544345835112 stay:0.07017500706465066 place:0.024365528481885827 :0.45030938238322227 +often:0.009919583123646759 r:0.00845613723236582 -:0.00478761326170898 c:0.0016948736617380872 :0.9751417927205404 +and:0.20869512561793477 of:0.16753357690675036 the:0.05490570593177086 was:0.04485131018119901 :0.5240142813623448 +the:0.5142297439256246 their:0.10707616173433337 a:0.06076907458652005 any:0.02801272553862306 :0.28991229421489895 +for:0.5082723868162053 to:0.08002080063732955 as:0.061285241691285144 a:0.01680859924284384 :0.333612971612336 +land.:0.061377880651988626 them.:0.02006401638885871 the:0.01647956325454672 others.:0.00409578008280569 :0.8979827596218004 +common:0.6020478107789843 a:0.26786238137577967 the:0.0702798494431866 with:0.01838384392260169 :0.041426114479447836 +the:0.30916671930762357 one:0.07316542066931019 either:0.05285143425398547 a:0.04710858260895492 :0.5177078431601259 +recorded:0.08244576567137463 is:0.03677910979185311 are:0.03604122737860061 also:0.024487246306862793 :0.8202466508513087 +figures:0.08355395240758828 will:0.0796331634290966 July:0.044081612254055526 table:0.03824036498828657 :0.754490906920973 +he:0.11827256338671113 plan:0.06414786843034233 country:0.06254200593330086 alone:0.06074801803773891 :0.6942895442119068 +love:0.02409989076193129 three:0.011314190411389802 2:0.007690504761343685 3:0.00755899162249551 :0.9493364224428397 +names:0.04157458715834128 proceeds:0.03014501408791784 opinion:0.03009019702587435 heads:0.027111374099353696 :0.871078827628513 +and:0.057475552934013595 but:0.0402280573305864 looking:0.02819981072544547 ing:0.026636550038155047 :0.8474600289717995 +that:0.28923187484642543 which:0.13464121538109156 As:0.041475762416416984 whether:0.03620065164308977 :0.49845049571297617 +and:0.13319789304226912 W.:0.08379722735027623 J.:0.06119974788192438 F.:0.05716175869467295 :0.6646433730308573 +the:0.42890187837271193 tho:0.1511746905442989 tbe:0.1263616636796445 this,:0.023465407346515463 :0.2700963600568292 +that:0.254896035697933 as:0.09430450646185005 in:0.06999732522834215 with:0.06912780014077202 :0.5116743324711028 +in:0.3420211315515571 of:0.26118144146061667 when:0.10395206201227865 before:0.05504972030368109 :0.2377956446718665 +obliged:0.47612871217081965 well:0.15187866425214946 ready:0.0923454912215579 safe:0.04560485927642542 :0.23404227307904757 +of:0.2960171000215666 in:0.18727892839025995 to:0.08176128320878079 In:0.0670225016440045 :0.3679201867353882 +was:0.19778824806970183 were:0.1821193336548403 wns:0.13577012456513565 was,:0.05483826892009145 :0.4294840247902308 +is:0.17512931764183925 has:0.15239766297677715 proposed:0.14934040732424178 will:0.14373627756518817 :0.37939633449195365 +back,:0.09433056036740513 top:0.07412168127254384 at:0.03137692048232659 two:0.01407703567072333 :0.786093802207001 +a:0.5156803986260353 the:0.44912956892662625 vast:0.014386879715007546 tho:0.004649137424157332 :0.016154015308173453 +of:0.303447290994409 and:0.2752097888406511 or:0.16603239002865397 The:0.021937061026559103 :0.23337346910972676 +and:0.0928152781296139 of:0.06178223820744786 ::0.04268258102002197 the:0.03268477630887103 :0.7700351263340453 +to:0.3160751294599259 would:0.19235476148758804 should:0.0988763115403084 will:0.06542994852439749 :0.32726384898778016 +the:0.5359012431096823 those:0.26229445028700293 these:0.10720655970072064 that:0.028752552234806838 :0.06584519466778717 +will:0.1418204470839811 hereby:0.10558927621868915 are:0.1044757228377876 have:0.06534351365416977 :0.5827710402053725 +and:0.11436833487541073 to:0.09607923094992218 of:0.07441042609111886 the:0.07041720418706528 :0.6447248038964829 +and:0.22890323200626547 the:0.1609344222237033 in:0.12018587544574867 So:0.07910276403857411 :0.4108737062857084 +description:0.17494217907124662 part:0.05861639526558257 numbers:0.04770520628138304 day:0.035757343767276795 :0.6829788756145111 +of:0.17974293914505227 and:0.12710100116135975 The:0.10172508775819647 the:0.07747274539185137 :0.5139582265435401 +the:0.353653086519079 and:0.11065105356040733 a:0.09465779033184053 to:0.036070238844378925 :0.40496783074429404 +back,:0.42396491127095787 people:0.08781754211187283 affairs:0.06111163239226922 land:0.00995864419251477 :0.4171472700323853 +but:0.6398644759013847 and:0.24799263307631625 although:0.01665676720242135 is:0.007597068829806844 :0.08788905499007084 +that:0.28287634868555955 and:0.17189782661213363 as:0.1044225389747566 but:0.045389124786804486 :0.39541416094074566 +line:0.3768723594292985 side:0.2948815472455748 member:0.08532885990523399 part:0.025704462437888962 :0.21721277098200362 +the:0.9297157186890422 tho:0.0142269245251742 tbe:0.011424944588730196 both:0.010595417799174393 :0.03403699439787894 +that:0.8970748136994864 what:0.02234812055851649 thai:0.011841364714241107 and:0.008226754884998168 :0.060508946142757786 +for:0.7215758892245089 at:0.10460793470280044 and:0.03668262137929607 of:0.03334233034814828 :0.10379122434524642 +for:0.3242349437156085 on:0.2889613672871111 of:0.15924220485458615 as:0.08186456336486019 :0.14569692077783403 +the:0.8000086220088167 a:0.1877583060328339 to:0.0013459892302059848 tho:0.001139449434317543 :0.0097476332938257 +little:0.3607812943258517 own:0.03890316141010088 distant:0.012607105703412363 his:0.005350591250992436 :0.5823578473096426 +constant:0.1298482471336802 head,:0.08061440126181242 reason:0.06878086277568067 own:0.01756623808357683 :0.7031902507452498 +remove:0.14844172907436437 meet:0.12194481081472155 see:0.05988632862579749 make:0.05815683574642678 :0.6115702957386898 +page:0.07245078893485726 took:0.037633497709944355 taken:0.03476892468941626 read:0.031089914419837127 :0.8240568742459452 +it.:0.0922461307839261 them.:0.004888036120814343 life.:0.0034676090134817803 the:0.0021380592677529156 :0.8972601648140248 +to:0.5284310206959805 from:0.32344351604842037 at:0.12495560929315674 and:0.009840719821861188 :0.01332913414058145 +d:0.23065343937025193 the:0.10563455938542506 a:0.06037004299956088 to:0.018274503872454384 :0.5850674543723078 +this:1.2852290040287692e-06 within:1.2424901170875135e-06 touch:1.2154588950204536e-06 in:1.1969787266362414e-06 :0.9999950598432572 +to:0.7012021551172276 the:0.09489031961534267 in:0.08659978630793683 In:0.06327758667164735 :0.054030152287845565 +d:0.4552026939868288 twice:0.27533533837849267 ed:0.21461777929072315 in:0.006860334456271051 :0.0479838538876845 +the:0.41336986342152915 a:0.35377471570984537 an:0.12030816282561856 his:0.020735606401636648 :0.09181165164137038 +the:0.16504996198713653 .:0.04801677952834475 a:0.03406977956228359 i:0.020004260918029353 :0.7328592180042058 +re-:0.20200270102046566 the:0.18375267597628062 just:0.160479815145401 a:0.14878714140586813 :0.30497766645198454 +through:0.4516978311766387 on:0.38787111253720674 in:0.11180575960531379 the:0.021965945779702744 :0.02665935090113806 +time:0.43242483663844805 death:0.0730603916067803 effect:0.032639812646181605 result:0.013559815138113345 :0.44831514397047645 +an:0.4673435736021949 the:0.4225750264651894 one:0.07839567621908829 tho:0.013912594181406047 :0.017773129532121335 +house:0.16093684740798223 city:0.0334201910385884 door:0.024351146114737494 walls:0.02424225495677728 :0.7570495604819144 +that:0.7443486578587436 however,:0.08736696426788672 ":0.048283940496022394 a:0.0376788018164517 :0.08232163556089561 +The:0.40212468323983924 Mr.:0.05315800937145356 A:0.045189893423897884 He:0.03499902475736507 :0.46452838920744416 +old:0.0441275351566281 social:0.029766982346081203 best:0.023642577411133472 young:0.01812815378246125 :0.884334751303696 +of:0.8591426382605423 the:0.02759317222537829 ot:0.018842794768524164 ol:0.01290883074157579 :0.08151256400397949 +said:0.5798019801459187 thought:0.36494612270789606 saw:0.00980635196854434 says:0.008931416517941264 :0.03651412865969967 +time:0.0829884115648392 and:0.05003313790747614 taken:0.0300054972158971 turning:0.023617884290964453 :0.8133550690208231 +the:0.7807992820818668 a:0.09950091026994677 their:0.0466351994621234 its:0.035101529010694514 :0.03796307917536867 +run:0.3322851568253056 came:0.29350271711905535 carried:0.05660621000405274 got:0.054152322597373605 :0.26345359345421254 +so:0.7483615299030142 lost:0.01308442949788139 declared:0.00829448596256926 been:0.007871074250659596 :0.2223884803858755 +York,:0.6839336235346222 England,:0.06496466221604581 York:0.030151582068701402 in:0.005244338462963896 :0.21570579371766663 +the:0.7353163655429337 tho:0.028450358545842873 this:0.026588949044306864 said:0.01512922065890746 :0.19451510620800902 +houses:0.027333358459614966 life,:0.015644054258223468 parties:0.007796674433679315 property:0.003176206385220637 :0.9460497064632616 +sent:0.02349560376663117 distinguished:0.01681934066887961 ready:0.016541361266514745 made:0.008977999163455501 :0.9341656951345191 +not:0.09548478272024206 the:0.05294648502639619 a:0.05077326585386161 made:0.04619768211665335 :0.7545977842828466 +and:0.1134673880565215 of:0.07628734750475502 the:0.06798805534412757 to:0.03624201242921643 :0.7060151966653796 +;:0.009627000357293743 the:0.008263117706695477 Company:0.0049679998889710815 .:0.00397197351623961 :0.9731699085308 +three:0.03583388488693104 fine:0.031443808257133374 special:0.02819746103869319 laws:0.027054085159554788 :0.8774707606576877 +is:0.26281287088354655 are:0.15888547565246894 of:0.13921468790587316 was:0.09021427483859576 :0.34887269071951565 +court:0.12472992746285386 same:0.09328280900867725 justice:0.08524790132005518 Board:0.042965587067155586 :0.6537737751412581 +one:0.037821646046570956 out:0.024662896513132856 and:0.024100681918256227 tion:0.01257016019905129 :0.9008446153229888 +year,:0.026457177808093247 complete:0.0210690338687986 better:0.019172746148193066 filled:0.01258584963835417 :0.920715192536561 +of:0.9507974300065443 ol:0.003430237332597357 the:0.0033528651800052494 from:0.0032622516588004086 :0.039157215822052546 +a:0.4203003173004214 their:0.29057623599822674 his:0.2768634227197556 my:0.005508880650151252 :0.006751143331445084 +holds:0.22259547532814583 said:0.15098686931097877 says:0.08296269678092673 saw:0.057543137686964535 :0.4859118208929841 +It:0.15941745982591038 to:0.14282075894251728 that:0.1398414233850949 it:0.11194467190751116 :0.4459756859389662 +trust:0.21535304957794818 bow:0.04692448306523665 which:0.03520881849927466 whom:0.025586901176104484 :0.6769267476814361 +date:0.9860012985685003 late:0.0009643457652057538 out:4.3334389081818054e-06 depth:1.5697316861036181e-06 :0.013028452495699545 +on:0.5711241993834532 was:0.10675167402860539 all:0.08483281374506753 to:0.050429919091847304 :0.18686139375102676 +before:0.016992181367481197 train:0.00926846757929398 that:0.007901458660969056 before.:0.00731779684042456 :0.9585200955518313 +and:0.17564882448301503 to:0.10325401100117321 of:0.08903033653791202 at:0.04444385662753724 :0.5876229713503626 +of:0.20101793074317958 in:0.1828641340051869 by:0.1714839888752795 to:0.16399763528279526 :0.28063631109355874 +French:0.05977334418130591 people:0.041005568014421484 must:0.04081155602168835 it:0.031717303098870685 :0.8266922286837136 +day:0.23776996176402054 church:0.100828533175963 the:0.09895720473387876 other:0.05840251078132229 :0.5040417895448154 +plans:0.011091241924038245 Register:0.01026097223997971 costs:0.010249811406397883 buildings:0.010194767487190639 :0.9582032069423934 +into:0.10632281207563177 prices:0.06148435608422958 of:0.055798930432647914 time:0.04469652135303056 :0.7316973800544602 +in:0.9882252472991335 he:0.0038037999055771875 be:0.001635117521892643 with:0.0012099013568709998 :0.005125933916525721 +it:0.6053817999588047 this:0.12925582705161875 he:0.08279762288499844 there:0.0758423588473808 :0.10672239125719725 +and:0.1407513414779092 ing:0.10791150206883222 that:0.06670402825028161 back:0.04905674203723142 :0.6355763861657457 +to:0.2427574731736821 to.:0.1268387230849733 ::0.0083829907465071 it.:0.004855135925969529 :0.6171656770688679 +electric:0.21430853355712243 arc:0.019179270943322706 up:0.01583051740095658 interesting:0.010233336059007564 :0.7404483420395908 +his:0.4853073710585135 their:0.11479226619694206 further:0.0685195337957767 the:0.0668908980252124 :0.2644899309235553 +the:0.4346673482033764 a:0.09865262078738544 its:0.07716292268208143 his:0.05830900148830383 :0.33120810683885277 +years.:0.13140412611644012 yards:0.09085402524864071 and:0.04749932707015793 feet.:0.025403361310720036 :0.7048391602540413 +quite:0.17339209445084527 be:0.15565220272529443 nearly:0.12565185594044698 then:0.034334358221968474 :0.5109694886614448 +and:0.25572912061442954 is:0.10595251183948734 was:0.0965863143653725 by:0.0692839961514355 :0.47244805702927517 +the:0.25008980085454124 water:0.13513170367257477 other:0.06849283742134439 a:0.06707487302998347 :0.47921078502155606 +a:0.258045535235198 to:0.15289150195714224 in:0.10381265627809463 the:0.0918390122967124 :0.39341129423285265 +the:0.1744877512500318 these:0.1513316937790595 a:0.13034440614354542 that:0.04629596689903274 :0.4975401819283305 +he:0.5270822857227412 I:0.35088288712291044 and:0.05451402236766318 but:0.040816263691340206 :0.02670454109534499 +interested:0.09200892251664962 pleased:0.017299648985929166 increased:0.017181280845685112 increase:0.001475300393013352 :0.8720348472587228 +it:0.4500267480416873 nothing:0.3396266789076633 which:0.0814910713388908 he:0.06518931519848777 who:0.06366618651327094 +the:0.5618177208529375 Mr.:0.09570885535269712 said:0.063151458592582 a:0.06095581900278925 :0.2183661461989941 +to:0.38639976721736363 in:0.20844220060069776 from:0.16531247981835498 with:0.1164958307931254 :0.12334972157045823 +the:0.5484202826554845 considerable:0.18189018036168667 some:0.10425418810584712 a:0.08832951341184161 she:0.0771058354651401 +ber:0.1445411519212351 vote:0.10045382026212381 tion:0.08476703387751584 ity:0.06520442007268765 :0.6050335738664376 +interest,:0.020859786103182357 house:0.0014590287503942504 opinion:0.0009425257634632657 good,:0.0008229590613291994 :0.9759157003216309 +tbo:0.4235542292935052 the:0.38727959925789585 of:0.028480165372706343 their:0.024362650522496688 :0.136323355553396 +A:0.32233751981785075 is:0.24060786697983294 two:0.1548189011914211 three:0.1460409804768293 extending:0.13619473153406594 +good:0.46860696608616353 future:0.13299042130815142 proper:0.09032053309173389 Mexican:0.07809838420740574 :0.22998369530654542 +human:0.02915853817881195 said:0.02278494899279053 most:0.018490191880722536 the:0.017419972251696246 :0.9121463486959788 +coast:0.2661576334134249 road,:0.020942531113684267 States:0.01513252032262948 road:0.007839574050759102 :0.6899277410995024 +and:0.31322282192530937 followed:0.06754605851234576 that:0.05182076596569101 largely:0.04428649361102177 :0.5231238599856323 +and:0.19073786084036817 the:0.0840215063530806 of:0.04693662080467411 or:0.039409049280278004 :0.6388949627215991 +a:0.4836049105743692 the:0.42034649984483674 n:0.03331211988196659 our:0.032522360515485266 my:0.030214109183342143 +the:0.3401054607133228 their:0.20091281125170513 a:0.1615464688515995 long:0.09897347317287258 :0.19846178601049996 +to:0.16101801299036056 with:0.09723876466599769 on:0.08330337998978354 them:0.08233116686948803 :0.5761086754843702 +and:0.3068236365514398 the:0.08165828373233153 to:0.06332978154852745 you:0.045458550317755926 :0.5027297478499454 +greatest:0.47957447956669014 old:0.05311028895935079 little:0.0381610970315902 wonderful:0.016194467168026323 :0.4129596672743424 +mortgage:0.1524811912716245 office:0.01567648669294896 mortgage,:0.004810692873001727 in:0.003888868560040317 :0.8231427606023844 +ot:0.5994820643110078 of:0.3885650624613569 in:0.008830600467424328 as:0.0016633487873301495 lor:0.0014589239728808794 +and:0.0754967701341002 him:0.043497023066771646 them:0.03794590743083927 as:0.030846867618694002 :0.8122134317495949 +as:0.00015770154947151123 got:1.7516450228819e-05 arranged:4.611874888096342e-06 fed:2.8277772391334077e-06 :0.9998173423481724 +and:0.19522778041286634 so:0.05876494835354195 stated:0.04375508953481511 says:0.04372403710236931 :0.6585281445964072 +hours:0.6558806204899548 part:0.2186106449749066 hour:0.03811060149077169 days:0.024186457266480433 :0.06321167577788642 +than:0.9047074248853865 thin:0.009594859397359368 thai:0.008535870982030045 then:0.004535749861402787 :0.07262609487382138 +of:0.8580652666822541 and:0.05733780633235412 in:0.044263212228143355 into:0.032185122868474386 :0.008148591888773891 +of:0.1919318751273846 and:0.16447721098032345 the:0.0435599053567045 to:0.03082866288430161 :0.5692023456512858 +would:0.48493187439987007 will:0.23062294889801807 must:0.156258076448642 may:0.06825706537571324 :0.05993003487775655 +the:0.18078131613530923 and:0.08346268014512201 at:0.03455432548968162 few:0.02837935320190159 :0.6728223250279854 +the:0.5962369026959491 things:0.3104093143299464 ways:0.01937531595314034 those:0.0035902088036735354 :0.0703882582172907 +the:0.3901649335890594 a:0.2099037443947703 an:0.18109465490706406 superior:0.02641626828140196 :0.19242039882770415 +south:0.14123608578908595 firm:0.13556529379535825 farmers:0.1148768417121069 company:0.11066320936118008 :0.49765856934226865 +This:0.5327969269868913 In:0.15455766829250733 The:0.12466923893950833 One:0.026922727107267005 :0.161053438673826 +and:0.17542610728908528 saying:0.07660625059824751 him:0.07478682967505135 her:0.07230332294758134 :0.6008774894900346 +will:0.22416062251661661 are:0.1237594247158294 have:0.10254608907443404 may:0.06358196930378322 :0.48595189438933656 +that:0.11062234088602713 put:0.09210975811287181 for:0.04389334838631397 of:0.03335598731894038 :0.7200185652958467 +advance:0.9310397857433788 black:0.005332957050375874 him:0.0033408978415047437 cash:0.0023286061509875423 :0.05795775321375294 +bill,:0.313036439476661 Hill:0.07864839439982961 city,:0.06079106517226668 He:0.051109880647821564 :0.4964142203034212 +gives:0.28235559625706685 will:0.17779327865553066 he:0.1240963311386006 is:0.12125287629336848 :0.2945019176554333 +and:0.3068236365514398 the:0.08165828373233153 to:0.06332978154852745 you:0.045458550317755926 :0.5027297478499454 +the:0.010152520329836082 them.:0.003185093221118626 favor:0.003057353563163397 pay:0.0018585052111808815 :0.981746527674701 +and:0.1744664382541522 to:0.11566537002217071 by:0.09731806576718699 the:0.09273862445950193 :0.5198115014969883 +which:0.3425993136177451 it:0.31954137003758176 she:0.04859732829081792 I:0.04820638195427962 :0.24105560609957558 +tbe:0.06571436411672477 place.:0.023225327014541868 the:0.02049015882468116 town.:0.016137002981374104 :0.8744331470626782 +though:0.05048168383004847 ways:0.0308300465281636 most:0.016022199565923597 ready:0.006971105860433848 :0.8956949642154304 +done:0.09586379228192149 made:0.033081593598311546 killed:0.03093650233414482 accompanied:0.024429795406116218 :0.8156883163795061 +on:0.40866608012699873 where:0.11103514289599799 in:0.07575096341854455 of:0.06592698790773321 :0.33862082565072543 +the:0.8335241014857587 them:0.04916499904657302 tho:0.022273165793128425 other:0.019984013517623512 :0.07505372015691625 +situation:0.07490022628390046 question:0.07136402515994845 same:0.05871892071979994 conditions:0.04912404789668953 :0.7458927799396615 +commission:0.24394775288018117 use:0.037464964782800404 progress:0.03232005641766549 Washington:0.02420084644924854 :0.6620663794701045 +exercise:0.8709323871598944 soil:3.483144940056072e-05 and:3.101589164209758e-05 Government:2.502229222463531e-05 :0.12897674320683825 +I:0.4474527468267609 they:0.30060853518281433 he:0.13042424916166026 she:0.08456206055991626 we:0.0369524082688483 +of:0.9230665902227021 in:0.02115831874808068 .:0.021077761785018356 it:0.009838129596356389 :0.02485919964784258 +what:0.7075687925494779 that:0.12049523273045512 if:0.10517854423991277 whether:0.038140452748443306 :0.028616977731710916 +the:0.653209933527785 both:0.04746344240422439 many:0.027062946691712865 most:0.013322244819618242 :0.25894143255665947 +It:0.12612516615264882 Who:0.09163213405810035 We:0.07866673611729125 I:0.052145674605111075 :0.6514302890668485 +the:0.42989677299348666 a:0.08588116665484624 his:0.04343175224747027 our:0.035969713152695516 :0.40482059495150136 +whole:0.2476080417538588 greatest:0.19606261216584175 great:0.1692179812583697 highest:0.10806341610165904 :0.27904794872027094 +during:0.48743232644350576 in:0.2799635396805073 when:0.07769634818553073 for:0.04511235215851243 :0.10979543353194365 +in:0.38609962522769414 on:0.171562606846256 race:0.07965601023912816 at:0.07003081582983099 :0.2926509418570908 +the:0.7155030944284735 a:0.10931754984672723 some:0.09208873502155289 tbe:0.022981502613088574 :0.06010911809015775 +and:0.18108956082276526 they:0.10790583150816829 rooms:0.09135734075808523 it:0.05924469710938304 :0.5604025698015981 +a:0.15476297390382643 the:0.08035069658496104 an:0.030124535117216338 Miss:0.02915357581067677 :0.7056082185833193 +and:0.019915689757100934 day:0.015121017266857283 Bank:0.009534841032338088 one:0.009287825586605692 :0.946140626357098 +which:0.170389995177329 he:0.08785792697673264 paid:0.07296211472239134 claimed:0.06324975343567851 :0.6055402096878685 +the:0.2661416343689499 live:0.1986087278998567 come:0.10294394813992366 be:0.08952201069186375 :0.342783678899406 +the:0.11235227078115174 and:0.08566884344028794 of:0.0757378579292029 to:0.04483261965370448 :0.6814084081956528 +attempt:0.03533370563562041 and:0.03362313819853741 thing:0.025095104527245424 tion:0.02153205174699222 :0.8844159998916045 +it:0.9285025541882224 he:0.012261245161525706 off:0.006374472218655474 by:0.001955092179191501 :0.05090663625240476 +use:0.2966150291368632 value:0.12709153510169688 advantage:0.040002983687345776 account:0.03519020687816342 :0.5011002451959307 +the:0.9057323250852178 at:0.03251996084974601 At:0.002944072914535449 and:0.0009607474357800553 :0.05784289371472075 +for:0.5319355419758847 with:0.3259005209160623 and:0.04203256642026641 to:0.024849621248663 :0.07528174943912368 +was:0.2380312305241534 to:0.18712066263295665 is:0.18603230988616265 for:0.12643990427683588 :0.2623758926798916 +a:0.007267497479359545 answer:0.004958670626467539 this:0.0017792158280020836 tion.:0.0009972579895806486 :0.9849973580765902 +these:0.16927946976709965 Committee:0.1457429499515976 the:0.076408638328861 their:0.06335337214299888 :0.5452155698094429 +upon:0.2880817144379923 get:0.13835523745083494 to:0.12014050304785254 gives:0.07121973695801158 :0.38220280810530866 +policy:0.0679702715013202 one:0.040209420810908184 e:0.03301975457505181 number:0.024246015197114255 :0.8345545379156054 +in:0.3323528714495653 with:0.2682690420134585 for:0.18138058778937055 through:0.11639791262666924 as:0.10159958612093625 +and:0.22941699919154557 were:0.08590530084428616 there:0.05987359522899378 used:0.05941954324726791 :0.5653845614879065 +without:0.6593120392540385 with:0.15987621620439993 making:0.12234073638102733 in:0.037198372196115825 :0.021272635964418474 +be:0.8157911414117645 prove:0.04162071742114586 have:0.040679881992417836 take:0.0251841011357477 :0.07672415803892417 +by:0.3958078260558947 at:0.2623290320462631 within:0.10703711984283573 on:0.091288856931019 :0.14353716512398754 +just:0.25440955643446184 and:0.18240580527272532 for:0.15569971778078626 in:0.1083079726172477 :0.2991769478947789 +at:0.40254836551665196 to:0.12806129646951275 in:0.0773289464001196 quite:0.07295661018738367 :0.31910478142633186 +and:0.09357074750574365 but:0.02198052027310004 man:0.021696087140590986 one:0.01967792897082257 :0.8430747161097427 +approved:0.22368909806873266 to:0.12795879470228974 the:0.08602436047509764 shall:0.06420873156947175 :0.4981190151844083 +2:0.008906547153550395 1:0.0022044380707053226 15:0.002025018972874878 I:0.000584665122424056 :0.9862793306804455 +most:0.010737188900932823 ways:0.0034893937319666066 lies:0.002390042612922242 though:0.0005616145229561826 :0.9828217602312221 +continued:0.07720555432771017 present:0.04746786329494991 felt:0.034845835187798525 good:0.03379658833435487 :0.8066841588551865 +the:0.39192208104913984 will:0.18109113752592523 so:0.16122267109334582 and:0.14362941663432147 it:0.12213469369726775 +to:0.9441524832074776 we:0.03848762490911034 you:0.012347923923442502 matters:0.001518240933687807 :0.003493727026281804 +made:0.03818873703248835 or:0.028941467028502112 of:0.02590307148950344 and:0.023067857462846772 :0.8838988669866594 +to:0.9976965790104068 lo:0.0007777934042097918 more:0.0003692847126105322 and:0.00010466170935569165 :0.0010516811634172668 +the:0.2522205440220561 The:0.17672926867936004 of:0.03720866338479949 are:0.0227868564143365 :0.5110546674994478 +will:0.45155870643392115 may:0.26799314366410093 to:0.16363966085856999 would:0.06734794281826065 should:0.049460546225147416 +the:0.368675431379333 other:0.09253239723537264 its:0.032731916022158275 his:0.031551475861234975 :0.47450877950190135 +of:0.09035235607734679 and:0.07987098391471971 the:0.07507444376615427 to:0.03280748853043819 :0.7218947277113411 +to:0.5642726096706986 in:0.13041198777752835 be:0.10682111851650587 by:0.0993947188918962 from:0.09909956514337093 +and:0.22947259538588324 The:0.13423118183796115 the:0.08606000234322625 of:0.03793294452438037 :0.512303275908549 +on:0.18576395510749186 and:0.16542296583167537 in:0.1588987338383135 of:0.14704740829820678 :0.34286693692431247 +In:0.3456860439752222 in:0.3250133140002035 of:0.08925773679650151 to:0.0740389270380306 :0.16600397819004237 +on:0.7138307184128714 in:0.07097754463044188 to:0.06341439235043744 and:0.03571536323848037 :0.11606198136776885 +fact:0.17145048312260336 knowledge:0.06002981097384731 disease:0.03787020337392847 demand:0.02867350657086336 :0.7019759959587575 +appearance:0.03072495696793942 name:0.026050382840217674 man:0.025764119349280388 and:0.011076373933511081 :0.9063841669090513 +and:0.19375781955329588 to:0.08965688371224363 the:0.04289730904612131 of:0.034804117565620414 :0.6388838701227187 +and:0.18490327143600283 The:0.06833584417380727 the:0.0674919790426476 of:0.0637176356621173 :0.6155512696854251 +a:0.9956818030562584 next:0.0012297309892941477 s:0.0010692310779737164 some:0.0008321788991334759 :0.0011870559773403124 +city:0.11299263760939565 matter:0.05001004910196885 County:0.04994338855973705 way:0.044677318807566965 :0.7423766059213317 +members:0.06893183005437287 chairman:0.04363149215462302 report:0.039845695220598755 people:0.02257965556026359 :0.8250113270101417 +bring:0.5966606998728672 give:0.19994948846423102 proceed:0.0243240094415819 go:0.019304088430960296 :0.15976171379035975 +a:0.5374995039471046 the:0.1692335473966735 and:0.0579890015377712 this:0.04977325917290474 :0.18550468794554595 +back:0.4272983504567266 to:0.2206754969823167 in:0.14492830110756322 by:0.11413846533974197 :0.0929593861136515 +most:0.03546985134712325 same:0.024180005217187668 the:0.01649321760948736 greatest:0.01096672693597185 :0.9128901988902298 +period:0.06182086993215942 management:0.04981866454875612 story:0.04255235593856166 lines:0.042193007257401306 :0.8036151023231215 +equal:0.07387362344835346 superior:0.05475508062516667 entitled:0.034698583468521955 opposed:0.022993466418959954 :0.813679246038998 +when:0.00355115313988443 making:0.0015794175930414825 which:0.0007586337972819145 getting:0.0007127171840734172 :0.993398078285719 +like:0.516456921136356 as:0.1279162559770224 in:0.08089489656586239 into:0.07221185599770792 :0.20252007032305133 +and:0.19130906609441534 was:0.07849184632288687 und:0.07528105990791781 Friday:0.06562193258712011 :0.5892960950876598 +a:0.38931660796780704 himself:0.23269599939839725 the:0.04279903380753511 he:0.021860015367161922 :0.31332834345909866 +aid:0.30316562078405773 show:0.17936390289682813 the:0.12648408655813503 be:0.031514776924545185 :0.35947161283643403 +I:0.9720686125937764 that:0.007090447736566564 He:0.006948246454883229 to:0.0038328025429393694 :0.010059890671834349 +day:0.1404460579461283 tion:0.10750067970056805 ment:0.0626410586675294 Court:0.03553126216420463 :0.6538809415215696 +fear:0.14449644057497485 that:0.08757261049735239 death:0.03503902307135767 the:0.026701117168584254 :0.7061908086877309 +owner:0.045797831814725895 owners:0.04108235593104054 balance:0.03321373766248152 proceeds:0.03002808001805525 :0.8498779945736967 +containing:0.31005019185587096 land:0.10779865354941735 and:0.03555254879588951 ing:0.0249119643929963 :0.521686641405826 +to:0.18105124791430777 and:0.12472948997123398 by:0.08417036675765376 the:0.07160400416313693 :0.5384448911936676 +power:0.016930614657900522 Washington,:0.0010754000228488715 exercise:0.0008097993549283053 Washington:0.0007791366617770547 :0.9804050493025452 +years:0.01288646174975942 months:0.01148005035558091 hours:0.011345898406233294 cities:0.008366862177078542 :0.9559207273113479 +be:0.8809185133889933 bo:0.04389816720673476 have:0.028615580566198964 lie:0.018562632989568315 :0.028005105848504706 +fifty:0.5343335442996673 4:0.12168921942629894 twenty:0.04597993209989319 3:0.043293613408254925 :0.2547036907658856 +the:0.3620598545778441 a:0.05469975542607877 which:0.04472531232997119 his:0.03733807699524855 :0.5011770006708575 +regard:0.09484263207030207 a:0.058592621905035516 one:0.042531086325773904 debt:0.037390884576593814 :0.7666427751222947 +and:0.2029831282183665 of:0.05389048799791907 do:0.0485263483527022 the:0.045822586678407 :0.6487774487526053 +and:0.11380903916806621 of:0.08941983069112595 the:0.08844158088477892 to:0.04919471622897651 :0.6591348330270523 +body:0.31280450925956216 bill:0.25111980422362146 medicine:0.009908164056381305 man:0.0074549012329177 :0.4187126212275174 +estate:0.8911454959431594 estate,:0.08244365528932301 property,:0.01752992827965244 property:0.0045658505824826 :0.004315069905382407 +the:0.4103558915900982 that:0.26316974537424664 a:0.13362555395791284 tho:0.007087208947005546 :0.18576160013073675 +an:0.3083592917465438 and:0.2667297462579411 the:0.24985987423763334 it:0.1164564143257305 :0.058594673432151106 +first:0.03698462423625316 great:0.02746443907408031 general:0.017721797111042426 the:0.015940223302476894 :0.9018889162761472 +in:0.2783558675312222 of:0.17682283800711165 and:0.14246994487479273 above:0.10460686481373473 :0.2977444847731387 +o'clock:0.9937208407944375 o'clock,:0.004415137390813102 A.:1.6507993152712723e-06 and:1.3960376550990933e-06 :0.0018609749777790754 +the:0.43168122386312113 a:0.3857740858128584 your:0.1359729429709442 our:0.028029887563702845 his:0.01854185978937332 +such:0.3057022360837541 him:0.25234653863922585 it:0.16252976151393983 me:0.09994983694796851 :0.1794716268151119 +Here:0.32902493911813047 likely:0.1634652898004693 hero:0.12365582336029715 ;:0.08559322078929028 :0.29826072693181277 +been:0.8950573987169395 I:0.007571145279475268 now:0.007490303808751611 not:0.007093438765447781 :0.082787713429386 +and:0.19376924378982557 natural:0.14100299508023792 are:0.09888583433042981 is:0.08962692362723745 :0.47671500317226934 +tbe:0.2256693183567116 the:0.21080801926809672 The:0.13434575951397362 a:0.07065511609394495 :0.3585217867672731 +the:0.1526194217748809 so:0.06025779277919456 a:0.03133082172299307 its:0.022210821671863036 :0.7335811420510686 +of:0.31653400833597584 best:0.22045110051567937 only:0.06425977666315931 this:0.05553266911399951 :0.34322244537118585 +have:0.2532749500062418 now:0.14517383134244746 be:0.10201758551506333 all:0.09914003487236595 :0.4003935982638815 +A.:0.4478380991491926 J.:0.09315013711209136 R.:0.06433889494879715 E:0.03211518151228594 :0.362557687277633 +the:0.5246768224324236 Mr.:0.09442890944278258 his:0.08076241008023735 tho:0.061163651338837624 :0.2389682067057189 +and:0.12205221173410369 of:0.10473569280016584 to:0.08719987222403916 the:0.043432315147307644 :0.6425799080943838 +yesterday:0.597753828161702 in:0.2018358860736194 last:0.053557771025219615 spring:0.04808169827725126 :0.0987708164622077 +House:0.1224553048615426 house:0.05616346182723407 and:0.020386219167836245 part:0.01900214642565457 :0.7819928677177324 +to:0.4499393129715593 of:0.43040887216020474 and:0.010658161861280208 hand:0.007047554204952662 :0.10194609880200316 +White:0.10122706461608082 and:0.01649978215820664 und:0.00984130584023558 Court:0.003712297022583589 :0.8687195503628933 +The:0.5485780678810545 the:0.07778983603559904 out:0.07003646423515139 a:0.048539499678495975 :0.25505613216969897 +look:0.15526683261644456 looked:0.10744983580748674 and:0.10040423776119502 looking:0.09473632410923762 :0.542142769705636 +and:0.21481480407144551 the:0.1970555126407672 county,:0.18336334489708375 a:0.10671843759410922 :0.2980479007965944 +dinner:0.21416361458361677 a:0.1868276825715557 the:0.16102694181915744 something:0.04584376433853677 :0.3921379966871333 +K.:0.1420926407704796 W.:0.14113872996061705 Robert:0.12623409855436732 Charles:0.12596969055691268 :0.46456484015762345 +other:0.9878761722873701 better:0.010203212571219358 small:0.00012936154698473337 possible:1.6469992452503498e-05 :0.0017747836019731766 +suggested:0.2904119366010154 of:0.19779015435191358 on:0.18893881296339649 when:0.11207669715842097 :0.21078239892525358 +honor:0.05952624300765259 as:0.05014013198854438 tried:0.021119857743757173 range:0.02099373563379964 :0.848220031626246 +at-:0.09190371474680367 greatly:0.08171997782897647 not:0.05803865517171848 also:0.04540838640686943 :0.7229292658456318 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +legal:0.17581834902444846 most:0.14637914691718434 more:0.010640590542731563 up:0.010603294285258606 :0.6565586192303771 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +3:0.006738064136465653 feet.:0.004574611254466402 the:0.002381907379906236 3.:0.0005767929841869967 :0.9857286242449748 +them.:0.13233834585230844 house.:0.038622498968993633 home.:0.030072064417675168 him.:0.020664632871279738 :0.7783024578897432 +entire:0.15213692555735442 full:0.13082753751357276 principal:0.08582420082939278 whole:0.0692988373500899 :0.5619124987495902 +body,:0.07239890799137949 private:0.0655413404070187 greatest:0.05734338877878645 several:0.04573457161241626 :0.7589817912103991 +at:0.8619339562404281 At:0.11233613129477969 The:0.007833550569699834 This:0.007075593191834408 :0.010820768703257905 +shall:0.4211696539564232 may:0.3535367063038799 will:0.08659030342181785 should:0.06873671866883116 :0.06996661764904785 +the:0.027781031183853607 out:0.027294442660871672 and:0.025110967279946425 day:0.018710944219511083 :0.9011026146558173 +hundred:0.22623923106777566 and:0.05099669533349173 or:0.04494984718093822 miles:0.03151394480737397 :0.6463002816104202 +of:0.454480502752918 for:0.22155350259912196 as:0.057703076075123816 in:0.049573046215747 :0.21668987235708925 +keep:0.32643172634147954 let:0.1648569650699045 allow:0.12659048963927128 sell:0.07504279689649992 :0.30707802205284485 +of:0.35141537600218586 has:0.29050767176904657 had:0.073327453431471 have:0.003940617401014841 :0.28080888139628185 +he:0.14030953445379854 they:0.07472667569546954 and:0.06911326953284581 she:0.04406153887973478 :0.6717889814381512 +them:0.5931767017752985 on:0.24868665455876487 him:0.04781095155581551 us:0.044705675695591064 :0.06562001641453018 +and:0.33530476624447453 who:0.17976310180397428 He:0.056314561001675194 he:0.0207545939420788 :0.4078629770077974 +the:0.7161528992746081 his:0.0708067820928607 a:0.026860556027131086 last:0.023258786841742405 :0.1629209757636576 +who:0.7677561242048345 it:0.0011449156821236096 whatever:0.0007571694443785909 there:0.0006306292772357496 :0.22971116139142758 +events:0.17693696717895688 boy.:0.10376231565330857 occurred:0.03377497999801246 times:0.028846097774981184 :0.656679639394741 +and:0.10456333065064043 the:0.09096214714422003 of:0.08384236895636683 to:0.06436299331422383 :0.6562691599345489 +to:0.30453125592194746 will:0.16866213161660376 and:0.12542493882747408 may:0.1149099033698329 :0.2864717702641418 +the:0.006723410361476633 dangerous:0.0025218109386380104 short:0.0021424567532844756 his:0.0017274990447215903 :0.9868848229018793 +in:0.265428178130434 for:0.10092248193757206 with:0.07114436655352184 when:0.0597482036101487 :0.5027567697683235 +be:0.5233965727822851 have:0.046240486647493736 bo:0.03639770446083804 a:0.03602379886994895 :0.3579414372394343 +and:0.22458175860490553 of:0.12883462247026864 years:0.02963230752142066 feet:0.028425553011430058 :0.588525758391975 +acts:0.29573197161233516 powers:0.15282558305132318 was:0.012212401729468204 the:0.011243285607516283 :0.5279867579993571 +the:0.16576734405311028 a:0.12333236136876888 seven:0.08450272811942924 i:0.056859748747827746 :0.5695378177108639 +in:0.6581877466297409 are:0.13436924188795699 but:0.057685382257803106 In:0.04135368964858854 :0.1084039395759106 +and:0.06679333552327467 he:0.03338472840810586 He:0.030078165754392452 who:0.026650993424481573 :0.8430927768897456 +tho:0.9978742889505288 the:0.002107580254477648 to:1.1187898062545526e-05 top:3.2023792940811475e-06 :3.740517636869963e-06 +same:0.034314844763739194 time:0.0178193014028012 west:0.012934343943742285 most:0.011817298110103572 :0.9231142117796137 +in:0.33403196477382924 that:0.057164351805929256 not:0.04684685020945552 made:0.04627054025252259 :0.5156862929582635 +to:0.5824782850442101 not:0.12096097327846142 We:0.10252339455356399 they:0.0200182416538537 :0.17401910546991087 +of:0.9184875246534723 that:0.015929085169999822 leaving:0.014223118626490026 to:0.013021285945202375 :0.03833898560483543 +with:0.5337262876734933 before:0.13724810568633314 of:0.1135743308396459 Supreme:0.0893056915353223 :0.12614558426520533 +It:0.2070523272805392 it:0.160789885688805 which:0.06817175634572707 and:0.06008374210427609 :0.5039022885806526 +but:0.33219414206844555 I:0.15389311823966273 They:0.14475614387978028 and:0.09073647798664305 :0.2784201178254684 +would:0.08592626707006015 brought:0.038983521084211874 deemed:0.03181765083476461 compelled:0.030526631473511933 :0.8127459295374514 +center:0.22611330617232325 German:0.097323080745613 main:0.06770632800166966 first:0.054322340717066576 :0.5545349443633275 +shown:0.03799817481896951 bound:0.02417379710782848 suffered:0.011817031627370514 help:0.00750654001153176 :0.9185044564342999 +left:0.3655056732096735 at:0.11976836198938764 for:0.060744910789068456 of:0.04523842413995376 :0.4087426298719167 +which:0.16304304712019116 that:0.1334488241497061 the:0.13214528263686348 course:0.03226318600732624 :0.539099660085913 +were:0.4076482386562092 was:0.2620012438030229 are:0.10539130636390039 is:0.008416360699225708 :0.21654285047764157 +the:0.5552654801510662 a:0.061753341101664895 tho:0.05989174674178944 his:0.0339237167967167 :0.2891657152087628 +but:0.17653257515703769 and:0.14981563551098284 B:0.12991073668405767 As:0.11000463560432282 :0.43373641704359905 +the:0.5489665381360649 a:0.30707310265985394 this:0.059185559265070124 his:0.01796993631219516 :0.06680486362681584 +and:0.12293258129725228 to:0.1119194016424902 of:0.060894733423486135 the:0.060099994695920596 :0.6441532889408508 +result:0.07733718900878594 woman:0.023604463056893198 man:0.021648778778964067 other:0.02149870614384631 :0.8559108630115105 +opposite:0.34111112513383857 other:0.31604885928229326 port:0.06161276412992729 south:0.054681811761524805 :0.2265454396924163 +took:0.14331934750464487 left:0.1163945269409405 find:0.10587453250156831 leave:0.10133370536590673 :0.5330778876869396 +say:0.3909961547379223 think:0.25204710020195675 see:0.2334324841252769 you:0.01581221233758957 :0.10771204859725445 +him:0.3389230807340564 me:0.1372010927184226 you:0.12407633458161092 them:0.06421808324109513 :0.335581408724815 +same:0.08426259039473237 further:0.04993509311067705 favorable:0.03907848664413002 former:0.024902632369913618 :0.8018211974805468 +first:0.6135484890227061 second:0.10301830528172778 next:0.04583626609614715 latter:0.03077831027458148 :0.20681862932483755 +is:0.16165621615368908 of:0.1548786740949372 in:0.14709665487642337 and:0.12396261446592839 :0.41240584040902195 +by:0.3750258509393565 with:0.33081496401392607 to:0.07372334272541034 and:0.06682796696532183 :0.1536078753559854 +freight:0.11016087256444317 railroad:0.05606968571334541 recent:0.03741398037150514 center:0.03588553700763815 :0.760469924343068 +first:0.1496273478050024 last:0.053294982225545434 only:0.048991067153339916 most:0.040561144810793655 :0.7075254580053186 +whole:0.8384916966599212 the:0.10532458333946444 this:0.021583696352508463 The:0.012062400029600103 :0.02253762361850586 +the:0.053513648125996315 considered:0.012294058485081069 offered:0.010304065509690756 received:0.010293628796952921 :0.9135945990822788 +one:0.5359107386887638 money:0.19082612017134107 men:0.08012790402389632 friend:0.05621609290831499 :0.1369191442076839 +to:0.271516442435583 the:0.26949324829989385 your:0.11119967571183553 a:0.02984382255779649 :0.31794681099489114 +others:0.038845751217655856 the:0.02622785455967228 water:0.025308277913558243 wealth:0.018242671670190645 :0.8913754446389232 +full:0.4300049025755269 clear:0.12803203991513448 post:0.0959333972549346 strong:0.033840477098540205 :0.31218918315586375 +the:0.5752470923165913 The:0.08360052974209775 of:0.0590750486160098 to:0.038754246233223315 :0.24332308309207784 +the:0.2314693040788747 to:0.12868996026593488 and:0.09132506559966362 that:0.0596123968978939 :0.488903273157633 +the:0.8884269081017051 an:0.09102025542570383 his:0.007805001849784957 tho:0.00780186513514618 :0.004945969487659962 +by:0.2632732979433019 in:0.23918953643038282 on:0.1884368119775441 to:0.18588513824263148 for:0.12321521540613978 +every:0.5565970684174816 ry:0.1453544755038216 on:0.019068634448136522 city:0.014248955591708145 :0.26473086603885193 +looked:0.18649329404450882 rose:0.15655021668917685 took:0.08210527656451495 came:0.0802121094634035 :0.49463910323839594 +of:0.9933631719936202 the:0.0013835820490127788 which:0.0012535817308874707 ot:0.0012267581107837638 :0.002772906115695976 +brought:0.6481462694773752 went:0.18370970852667592 came:0.05480001641374968 promptly:0.028133177051682477 :0.08521082853051663 +So:0.49623285382444926 ate:0.07395816181702912 is:0.06973054454104027 and:0.009128746165253956 :0.3509496936522273 +left:0.5005571771668109 more:0.10363021482915098 else:0.068105290979367 necessary:0.04384873255224264 :0.28385858447242857 +few:0.03513894652028395 large:0.024494350272177896 very:0.022298728764934585 new:0.020940646653786713 :0.8971273277888169 +degrees:0.8033218465612524 feet:0.0004695524321812486 minutes:0.0003759192468178506 chains:0.0003062599043926899 :0.19552642185535565 +is:0.5433562628720434 has:0.08160589344269303 was:0.07530682203749559 work:0.07160603620856713 :0.2281249854392007 +be:0.2863941460434924 see:0.07722816704944484 State:0.04551684460016209 result:0.03642209054237246 :0.5544387517645283 +and:0.10673329628396434 the:0.08450785153860134 of:0.08430540333029235 to:0.04051429961568507 :0.6839391492314568 +commercial:0.5601713617522027 small:0.3463777887316382 right:0.005717316612979737 general:0.0036549815828978358 :0.08407855132028161 +he:0.20092399989605148 it:0.19616869914437465 they:0.17563019259803683 you:0.07689441043144882 :0.3503826979300882 +old:0.040243150161881146 1:0.03629415391028965 I:0.026348586286218056 the:0.022438187030743087 :0.874675922610868 +line:0.11687371667453456 part:0.07327618037313255 north:0.0462117860748421 south:0.04077876229949061 :0.7228595545780002 +by:0.14654237207303009 T.:0.00931138188817323 C.:0.007601038057046911 &:0.006733706998424808 :0.8298115009833249 +the:0.09564759613976433 to:0.0636094606367337 and:0.06082193912915655 of:0.05076079159879086 :0.7291602124955545 +costs:0.030235510979282416 advice:0.01359066335248136 intention:0.012665257130377264 West:0.012391410115463252 :0.9311171584223956 +said:0.6167819354369697 the:0.1538337325105407 each:0.044124223040976435 this:0.03303621707514564 :0.1522238919363675 +in:0.46700652026614714 from:0.3856926083410446 though:0.07759697192418853 at:0.051809955043910984 :0.017893944424708617 +his:0.4364383119706366 in:0.23433804091974172 two:0.06859834142229773 lost:0.028182049330585678 :0.23244325635673832 +time:0.9471523579191664 period:0.009975577663200823 lime:0.00894081782226468 meeting:0.004839739359779201 :0.029091507235588874 +the:0.9230234349282878 tl:0.05413334902599567 our:0.014960071134670804 tho:0.006096737037313995 :0.001786407873731877 +of:0.1549273323103287 is:0.14978441718784974 was:0.13174636733362882 the:0.05937190749736834 :0.5041699756708243 +and:0.149733330423571 is:0.04852945847266044 as:0.033748587514527084 enough:0.03205773847110846 :0.7359308851181329 +The:0.5141616971267443 the:0.10155075559142593 ot:0.07609680706471975 and:0.06638565630557845 :0.24180508391153144 +a:0.2756947848362431 its:0.1235044150090037 the:0.07326646859993696 deep:0.05832606709104704 :0.4692082644637693 +about:0.2559138702153269 eight:0.15690376429563954 four:0.147351398987781 ten:0.14623154627035245 :0.2935994202309 +of:0.19783474671915183 and:0.14403152034727432 the:0.06598195546243368 to:0.046705236542508514 :0.5454465409286317 +a:0.16150842090612552 the:0.13109794487126783 not:0.06866570679431695 in:0.038836700753884325 :0.5998912266744053 +is:0.6007228785042052 in:0.0962079152513082 has:0.09102882100701125 had:0.08317912659893781 :0.1288612586385374 +is:0.15210849451510491 and:0.1099748370037688 was:0.10084745743270225 are:0.08416629731019752 :0.5529029137382264 +this:0.34691222377477227 and:0.2567744819052311 its:0.132993304667493 a:0.09389963679640873 :0.16942035285609497 +In:0.5728639868362423 in:0.24056182731376324 A:0.05967534260698794 the:0.015201543525005377 :0.11169729971800116 +to:0.6096008043340871 a:0.1440519885897267 the:0.10272105519804924 an:0.02769546644747281 :0.11593068543066397 +people:0.7637869885878141 amount:0.008806329380532475 system:0.0024251478467916484 record:0.001279702792391129 :0.2237018313924707 +W:0.7270579765800562 A:0.10946623173733414 J:0.044191757473695775 F:0.015907362447205666 :0.10337667176170819 +to:0.999110271798596 not:0.0002815793821740486 first:0.00014236430080835115 a:9.691239598407667e-05 :0.00036887212243748936 +the:0.38704855732530447 of:0.08210693271984096 his:0.03647556116811257 in:0.03518143059069955 :0.4591875181960423 +gave:0.10195050125254214 carrying:0.0968168524316963 drew:0.07440095633712002 gives:0.06687648670496373 :0.6599552032736778 +members:0.403032165035866 legislation:0.058628723782766755 power:0.0405424232339134 act:0.023027774612792935 :0.4747689133346611 +of:0.3047168192246298 to:0.03936614141170549 from:0.014106447268699354 one:0.011030196313146142 :0.6307803957818192 +which:0.4190761176822924 and:0.26350795492528994 it:0.16952117900415437 he:0.08219716128308846 :0.06569758710517476 +re-:0.6760435191356071 re:0.114068831591174 to:0.03144908499116623 a:0.030085124773043127 :0.1483534395090095 +of:0.18939515077327485 and:0.08131406399453052 by:0.08014432718768098 to:0.07836732898745875 :0.570779129057055 +order:0.013152985938265704 addition:0.004904599511740371 or:0.0041404078331085375 which:0.003128984422573049 :0.9746730222943124 +was:0.39125295245847863 were:0.3158687454816942 are:0.08484594174773398 is:0.08255105241034552 :0.1254813079017477 +a:0.7442432757526118 the:0.17987726816901503 ono:0.02695086575935935 his:0.02682116303039015 of:0.022107427288623565 +c:0.15473008029878407 tie:0.14656243518572262 s:0.02256574367861746 l:0.01889419510751915 :0.6572475457293567 +and:0.6546627737466234 when:0.15465622309106483 but:0.08355891866822486 with:0.06339939358335932 :0.04372269091072755 +the:0.23523926173112433 its:0.08921865212210861 that:0.06840201734190905 his:0.024385293046497145 :0.5827547757583609 +of:0.12018348012860582 before:0.10839500589655211 aid:0.09651615696121009 having:0.07916331770984206 :0.5957420393037898 +the:0.3301110007324678 said:0.22303748495034104 any:0.2027201300866751 his:0.07634728190740156 :0.16778410232311453 +are:0.11404276846295378 and:0.11066362968337243 clearly:0.05012204719263853 others:0.02867654030357188 :0.6964950143574634 +have:0.6807210487250286 had:0.1751083234769855 only:0.05474214716048375 then:0.05051224262504736 always:0.03891623801245482 +the:0.19927041924739486 City:0.12347876634214436 favor:0.08937641485545084 behalf:0.030867874870767538 :0.5570065246842425 +with:0.303346620075895 as:0.17588854516340494 and:0.12500706468328363 of:0.12082901934780052 :0.2749287507296159 +in:0.9349295539378618 of:0.03533844797718364 was:0.004015576221691424 to:0.0005557060736192838 :0.025160715789643785 +would:0.6755533622203672 could:0.13634925675453607 did:0.11319382571899568 do:0.062430552705337324 was:0.012473002600763798 +ment:0.06696032594754021 satisfaction:0.04496940602101635 as:0.0399964783478412 time:0.03667237029304354 :0.8114014193905588 +bonds:0.38300043642016557 money:0.1565290082308335 debt:0.11867583574550589 cost:0.027163798387891576 :0.31463092121560343 +at:0.9986139341460903 of:0.0005881276639294698 about:7.837401283295298e-05 the:6.205401661139504e-05 :0.00065751016053581 +and:0.1421651937885721 of:0.061126718328993246 the:0.05001818808902446 to:0.04036936794912699 :0.7063205318442832 +of:0.26891156010871037 and:0.1517953419830919 the:0.07579839168636085 The:0.04804565921092437 :0.45544904701091254 +tion:0.029580164128736392 day:0.02476519100331536 act:0.018896168952330976 virtue:0.018322955797643165 :0.9084355201179741 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +men:0.031075942147903296 friends:0.01927411863224871 officers:0.011942638315574912 county:0.009907730674098081 :0.927799570230175 +The:0.39165290660457847 the:0.2843923914539787 I:0.05152962926541257 a:0.039198597819162254 :0.233226474856868 +said:0.6081484548535401 such:0.15386682496738335 the:0.1009835753890291 and:0.05255230413041153 :0.08444884065963594 +the:0.5111367286912615 a:0.09439247528756006 his:0.08435127472237801 this:0.03085826444945102 :0.2792612568493494 +satisfaction:0.9040338726356059 better:0.005538810971894299 interested:0.005169469084204275 that:0.003615240537735225 :0.08164260677056029 +found:0.1983694638033338 made:0.060463540838433354 held:0.05945235576194297 used:0.048144578504175785 :0.633570061092114 +deceased,:0.06337038822171633 J.:0.03857118814216953 L.:0.03131403391466866 Mr.:0.026214481033505745 :0.8405299086879398 +but:0.3380597053727654 in:0.14693724673107697 of:0.060127515833675586 States,:0.01846268553394518 :0.43641284652853685 +and:0.17775015303894426 U:0.14625090959932038 but:0.1318200340516709 is:0.08285984907474717 :0.46131905423531716 +club:0.000348245833321548 law:0.0002783876271483866 rights:0.0002337486652552474 organization:0.00011683145888565051 :0.9990227864153891 +in:0.1914254793005838 after:0.16704919794903145 of:0.12932781402144217 all:0.09661188269253117 :0.41558562603641136 +and:0.07150427078502881 ed:0.07144871714792485 together:0.04319348223900788 up:0.040898658294454895 :0.7729548715335836 +the:0.17460728507945997 six:0.09487859947657938 one:0.07703827386191847 a:0.0588307854768811 :0.5946450561051612 +first:0.06661397166599041 wheat:0.037791766924670976 judge:0.03466272127154608 bank:0.029580191943749303 :0.8313513481940434 +a:0.10044993939915646 the:0.09812102403423485 to:0.07953026544666732 so:0.06708750581033404 :0.6548112653096073 +and:0.022743794510942678 this:0.014790700572707023 for:0.013542879334629552 .:0.00977266345727945 :0.9391499621244415 +work.:0.0231446261308191 hand.:0.0042569016673366265 home.:0.0038416269476443314 life.:0.003152452800659877 :0.9656043924535399 +Atlantic:0.2407966022219014 north:0.18472704032506823 distance:0.06884021199978005 of:0.06494630158539695 :0.4406898438678534 +lack:0.2889241522275723 knowledge:0.09337794827286175 majority:0.06433396836032979 depth:0.05969034138547975 :0.49367358975375647 +the:0.18677225990886198 and:0.10603057463742063 my:0.07752548114714071 a:0.06674301597921374 :0.562928668327363 +to:0.8518376867456987 that:0.13449946822285605 would:0.00228721551836513 is:0.001670892720044306 :0.009704736793035807 +and:0.13798338463797383 of:0.10724523629999332 the:0.05954523479407168 to:0.055769463516149996 :0.6394566807518112 +best:0.16528645692926988 young:0.1301678745483646 whole:0.1072419802171438 life:0.07916553001322209 :0.5181381582919995 +of:0.21994876259298057 and:0.11640434607336499 the:0.07957498570458804 The:0.04635424423889184 :0.5377176613901744 +the:0.9437085332519314 tho:0.04268751546713199 this:0.013550422103844027 tbe:3.125767230258903e-05 :2.2271504789831792e-05 +and:0.18413829034893286 that:0.047607111496213265 and,:0.038417621602993994 him,:0.029668783915594053 :0.700168192636266 +boy.:0.9877659128329039 judgment:0.00010433211589793443 country.:6.580244838425411e-05 ment.:4.898270518670876e-05 :0.012014969897627228 +the:0.4157267773113294 th:0.2449494472024869 that:0.07776898149605674 tho:0.06847138330243863 :0.19308341068768822 +heart:0.04089679690765055 friends:0.03009338961864839 !:0.009884160772650507 mind:0.00683383169289584 :0.9122918210081546 +will:0.2969046914952123 would:0.1763998151074537 all:0.12469286586323719 to:0.03296271979095338 :0.36903990774314355 +operations:0.0018270204668309918 cold:0.0011412148649468659 train:0.0004559064386078615 dinner:0.00037877225479020725 :0.9961970859748241 +then:0.01596895398590531 and:0.015849812588910713 Here:0.010956058817219338 here:0.009948546737363041 :0.9472766278706016 +and:0.1739223879004363 of:0.16785923198614122 the:0.060829566441908005 to:0.03544456726205255 :0.5619442464094621 +of:0.5789376169710267 ot:0.0888196844179675 and:0.05818170849604318 to:0.04856024508316772 :0.22550074503179487 +same:0.09669745039261636 law:0.09658759154719757 danger:0.0907154278176222 floor:0.059574476989296805 :0.656425053253267 +a:0.9665840846559087 the:0.028681754971953438 his:0.0035914401509286884 this:0.0005286679683353306 :0.0006140522528737044 +to:0.7062057031114518 and:0.10330461883096048 shall:0.02289540332661289 will:0.013085031909218722 :0.15450924282175602 +of:0.3011557820506417 from:0.1824907058855577 with:0.1360946778259876 by:0.13304454753096773 :0.24721428670684525 +follow:0.08372394947935148 have:0.05124381672069308 use:0.04760945457373572 accept:0.044845993919006885 :0.7725767853072129 +gone:0.3237738219236793 returned:0.13532061365492032 led:0.09291907963192517 moved:0.08838410140225873 :0.3596023833872165 +Hut:0.29390263489973417 and:0.1439331715627686 for:0.09257174208818925 at:0.05577859151866909 :0.413813859930639 +one:0.2695632986852134 One:0.08006696434778904 some:0.07901741451146219 are:0.02818733549648813 :0.5431649869590472 +the:0.45940916953598915 his:0.18046243305147405 an:0.06822638372342502 a:0.06770495387368959 :0.22419705981542226 +of:0.3401161653630951 in:0.1807597973139018 at:0.12663657199678807 and:0.08981209802998812 :0.2626753672962269 +of:0.11141109741663675 and:0.054062536541314155 J:0.025308384515526264 W:0.021977166868821486 :0.7872408146577015 +a:0.30415406643872644 but:0.2218866624692065 so:0.1917625161876363 very:0.17029160434016083 :0.11190515056427001 +the:0.18641927717889464 a:0.08553250748619107 and:0.0671434513100499 of:0.051823717631761475 :0.6090810463931029 +see:0.609583304911396 be:0.16445038582676783 get:0.09824344947817121 have:0.09320637952250507 :0.03451648026115992 +was:0.5776773623696497 Is:0.2803812571393147 is:0.10593376428141424 were:0.011751486621302347 :0.024256129588318843 +the:0.48387475892995513 a:0.1264822195325207 any:0.0485149653616369 an:0.03436332058856511 :0.30676473558732226 +proceed:0.707492637744443 sell:0.24735453519415337 go:0.010893850611449658 grant:0.003785031479773935 :0.0304739449701799 +many:0.9553879778995096 of:0.022942286484281028 in:0.01163292769677906 and:0.0039023018873880957 :0.006134506032042187 +.:0.9515618544730656 .,:0.0047860676016245 the:0.0016832908471923873 of:0.0012390631428799532 :0.04072972393523749 +best:0.01571640759090376 good:0.00858532472564126 now:0.0067511973796449045 doing:0.00674972406002639 :0.9621973462437837 +beginning:0.04349311276294752 time:0.026243988578080562 top:0.022626941903581704 first:0.018273178092893038 :0.8893627786624971 +the:0.2970850883007925 tho:0.08258957564260873 this:0.05693439796684438 a:0.04176005657374488 :0.5216308815160093 +that:0.7133995696553411 was,:0.19409657191364715 thai:0.04917673304875117 is,:0.023215430334006068 :0.020111695048254496 +service:0.1196430923115174 company:0.06887816955957812 first:0.05698658255889707 are:0.05038282286027667 :0.7041093327097305 +receipts:0.018930661519338095 the:0.007880499372656504 canal:0.007636432075715769 figures:0.0065454980077036175 :0.959006909024586 +the:0.37172416553365023 and:0.11887143619499513 The:0.10447842403354393 a:0.08011588027596207 :0.3248100939618486 +the:0.28600754137099743 a:0.04379183331062548 his:0.02345647871499851 and:0.018072645080968223 :0.6286715015224102 +County:0.2321204200440144 County,:0.10146059824552656 county,:0.09597618250731005 county:0.06853245998334616 :0.501910339219803 +will:0.4109467100415845 may:0.3396837848939137 to:0.1491061182412444 might:0.08588030632792264 can:0.01438308049533486 +who:0.24608759201218805 which:0.1752675770641648 that:0.1482731840404518 as:0.13441200015863805 :0.2959596467245572 +the:0.33879613257051133 a:0.11743444160946624 tho:0.049600407462433355 his:0.03489290930702606 :0.459276109050563 +be:0.32333510578121444 have:0.2281098465806675 the:0.10068021198536278 a:0.027983634670349432 :0.3198912009824058 +a:0.13280765366353073 the:0.07952032600460032 every:0.040919949235966015 one:0.0183805017541357 :0.7283715693417673 +one:0.03613309101664109 why:0.0319773590672581 mind:0.02581070901457164 where:0.024655580411717615 :0.8814232604898116 +and:0.9016655071815796 by:0.012413677298303526 when:0.008399401569633775 until:0.007383788393788958 :0.07013762555669394 +Frank:0.08672021180820325 of:0.07475353391266197 Rev.:0.05460264780044477 .:0.040971983683505325 :0.7429516227951847 +any:0.2691234722591698 the:0.21365325005176575 cure:0.16089603834687236 be:0.03869402664991988 :0.3176332126922722 +about:0.37562953759820134 over:0.3624337643706962 only:0.04455240643399104 but:0.03777311828206186 :0.17961117331504964 +of:0.2607072721636602 and:0.160686379623815 He:0.08726176678502656 which:0.05623858762480186 :0.43510599380269616 +the:0.0790325891603442 him:0.07562011570782043 going:0.0753992852970395 them:0.06088867379463488 :0.709059336040161 +and:0.12211845141889173 the:0.10167069452851472 or:0.09336866141144745 of:0.07011664430594267 :0.6127255483352034 +of:0.9590313502620585 to:0.026646258928267767 on:0.004524637212082909 at:0.004363002484424835 :0.005434751113166086 +unless:0.9905176007052887 and:0.008738583181608783 though:0.0003778728337871588 if:0.00022340406089391515 :0.00014253921842147566 +and:0.15962056104634334 of:0.11919283592491269 the:0.11758791659060219 in:0.05992789770477353 :0.5436707887333683 +port:0.003129281371747579 per:0.0006880666569311775 pose:0.0003467672093053399 pressed:0.00029906859584925637 :0.9955368161661667 +by:0.25597875653558444 the:0.22444260572790198 a:0.1349115756241699 to:0.13380811451120367 :0.25085894760114014 +and:0.10450417469580404 friends:0.04397161224126636 one.:0.02722068799796893 enough:0.02256936324541912 :0.8017341618195415 +remedy:0.0017439523606553689 the:0.0013962374788613267 give:0.0012866444482105292 be:0.001115374903311304 :0.9944577908089614 +the:0.7096473285328652 tho:0.037062373363183326 his:0.022059789431970518 this:0.02138534948793001 :0.209845159184051 +and:0.26396013741933594 also:0.007723832979918878 for:0.0042701765878546665 or:0.002635041261684478 :0.721410811751206 +that:0.19784500559456591 all:0.13893787098096097 signed:0.12894499314502852 in:0.11879172786016433 :0.41548040241928036 +has:0.3050841531979704 and:0.2764199153794604 city,:0.15446297055551816 but:0.13061572253215076 :0.13341723833490032 +a:0.951663506068842 suitable:0.02322960252195095 the:0.010352265161727608 many:0.0075479217255148634 :0.007206704521964585 +of:0.11665972870775798 and:0.1102307399368042 the:0.10762322512653663 a:0.07090020960526965 :0.5945860966236317 +took:0.745234974733418 last:0.00432876635411664 visited:0.004317863226344856 before:0.0032177866715360566 :0.24290060901458427 +and:0.15529787069272477 of:0.15459131340132595 The:0.127044074152775 the:0.0750199461132249 :0.4880467956399493 +the:0.14471667482742212 a:0.05679341066736418 to:0.045761543911478214 their:0.039374102689172207 :0.7133542679045632 +to:0.6280943787135655 not:0.19002477596453576 .:0.03221851349841196 a:0.021330478545699888 :0.12833185327778698 +principal:0.45821047957895655 operation:0.11402106367431962 payment:0.06894480727734946 location:0.04723329236283262 :0.3115903571065418 +were:0.10779103310031057 *:0.08416418120777176 ing:0.07775223395255602 themselves:0.07197017553657512 :0.6583223762027867 +ed:0.023055791334521028 and:0.017097758817390164 ;:0.0156717723689776 out:0.014497657187332598 :0.9296770202917787 +to:0.48041583474630406 of:0.12714855946775694 and:0.10816357212625885 in:0.052323752733109505 :0.23194828092657044 +of:0.774726964251452 to:0.0641447665980645 through:0.04293260109655601 on:0.03621198190158708 :0.0819836861523404 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +Mexico:0.9861552386161613 Fort:0.000582241429606044 Baltimore:0.00030020637300802157 old:4.9562741875485846e-05 :0.012912750839349344 +at:0.5408326760511978 of:0.12132337034331367 and:0.06633750994070427 between:0.06376131825143977 :0.20774512541334464 +to:0.46310462619487786 in:0.190977569489158 on:0.12446657941646556 of:0.1066609469717105 :0.11479027792778815 +for:0.6913079112034456 to:0.17669768514842332 at:0.04221104094578893 off:0.03780450456488965 :0.051978858137452476 +the:0.38112565478037275 and:0.08814694990092263 a:0.06625305296609156 The:0.06542748527003109 :0.399046857082582 +their:0.7834393924075777 a:0.12755036859350813 her:0.04398506282740568 the:0.038521738632354106 :0.00650343753915434 +would:0.37948470213570096 may:0.22428200505682627 not:0.15293335487116363 to:0.1181897551094207 :0.12511018282688854 +were:0.2725086971543469 and:0.03304731754046649 of:0.02759873696526462 for:0.020213746288809762 :0.6466315020511123 +well:0.195579575800487 point:0.044183111621552175 company:0.029313924707804202 place:0.02520770450994286 :0.705715683360214 +located:0.15602170115454 a:0.15598022980407827 constantly:0.12269411744461488 the:0.09934950458139619 :0.4659544470153706 +who:0.1984841198102993 I:0.149882759427837 which:0.12586044041946168 you:0.08838378228515543 :0.4373888980572467 +of:0.30118456765951573 and:0.17993000353024158 in:0.1194872468103123 that:0.1019962777238619 :0.2974019042760686 +the:0.2695803186138959 congress:0.05457084226100166 Congress:0.05233250264384374 officers:0.03783884314004285 :0.5856774933412158 +matter:0.2992573525496782 wealth:0.09467832274183992 in:0.09398521628776171 of:0.09269793805698846 :0.4193811703637318 +found:0.017626218306727778 will:0.014433775853711358 threw:0.013037501658248584 knew:0.009687908992469255 :0.9452145951888431 +which:0.41900530580518547 the:0.19634833181044137 and:0.03321539825402355 a:0.030137833884321785 :0.3212931302460279 +to:0.7910421121820432 with:0.07404079296156675 by:0.06618456974392974 over:0.036630615119172545 at:0.03210190999328776 +quarter:0.5196515699380378 first:0.03763673328887544 completed:0.024814998160651584 original:0.019150557781660412 :0.3987461408307747 +manner:0.38076902744199104 case:0.10180004297972635 most:0.07726863348092405 way,:0.029809765085385742 :0.4103525310119729 +live:0.2313669987055813 the:0.16983922630178375 be:0.0975985772899904 England:0.029990403884417545 :0.471204793818227 +city.:0.2012914045040784 country.:0.03959769608751644 way.:0.03643370241187524 world.:0.03148644177928892 :0.691190755217241 +that:0.31217081572879746 and:0.19367838563263326 with:0.09917968645683127 it:0.09601803720545819 :0.2989530749762799 +They:0.2786108042676374 who:0.27382934896458905 I:0.22114884961846193 We:0.12844547157137454 :0.09796552557793693 +the:0.9645542178600873 tho:0.018410149008736935 tbe:0.009032627432195005 th:0.005222341494114219 his:0.002780664204866578 +of:0.02209335197218104 whole:0.017917676404909252 sun:0.016257222990912073 above:0.013416415411173025 :0.9303153332208246 +of:0.2992827783916375 a:0.0048165192741984495 In:0.004778663103937549 in:0.004766473129143313 :0.6863555661010831 +not:0.3392666112810256 otherwise:0.2057045815450964 always:0.07770542779569316 certainly:0.05460565062711913 :0.32271772875106586 +roads:0.3042878599182627 states:0.0570716661177151 members:0.03931048907176473 wheat:0.01837372991333112 :0.5809562549789262 +the:0.7166337322058224 our:0.1273944285810266 his:0.07133268315009324 their:0.04006829815196174 :0.04457085791109601 +to:0.7462556763969755 as:0.12106877551490933 by:0.08140296401011544 in:0.02618506441938224 :0.025087519658617483 +and:0.11086819315296353 the:0.08306266449532962 of:0.059080549109315206 to:0.056011720119335945 :0.6909768731230558 +to:0.6161204054913254 To:0.08808800403327705 I:0.0848722519175183 and:0.05645424311453386 :0.15446509544334525 +Board:0.0560476565621408 use:0.053375758470072594 name:0.030171576487394675 board:0.02621642163438293 :0.8341885868460088 +as:0.2632432832705083 in¬:0.06915174133419937 the:0.03931293838720374 a:0.028497059886339767 :0.599794977121749 +the:0.7855891523970067 her:0.1433844887751955 his:0.017153249934962735 a:0.013648523676380774 :0.040224585216454244 +failure:0.04449197972850045 power:0.03444980752355386 right:0.032754643476079585 said:0.022765937411555612 :0.8655376318603106 +and:0.11975792937690927 which:0.06971413826742526 it:0.05402091777975788 however,:0.04935621277274459 :0.7071508018031631 +the:0.6316565892263849 another:0.2616622937847486 with:0.032697093780411 a:0.004430028271925056 :0.06955399493653049 +the:0.36410654708254475 its:0.26679980991248836 an:0.07632545383221734 road:0.047788324700060204 :0.24497986447268932 +result:0.04999514847526915 case:0.02275543487593836 other:0.022364167800501975 body:0.018688727846792572 :0.8861965210014979 +not:0.23930361118529686 a:0.14779338737295397 the:0.13799978676449373 completely:0.07074002486224595 :0.4041631898150095 +the:0.438115117076147 a:0.0633792682607442 his:0.05410919233865608 their:0.04514144308653348 :0.39925497923791925 +and:0.4735856887709765 while:0.2693538655410737 that:0.11795071107053225 but:0.04560849791981318 :0.09350123669760418 +money:0.25900945842243467 upon:0.23280243368694226 stock:0.0913999047835155 general:0.048505536660164196 :0.36828266644694324 +the:0.23310780502082684 daily:0.16479102991475122 a:0.14929222197160869 an:0.08105661975884905 :0.37175232333396424 +aid:0.1362645396421048 visit:0.1007080077516447 went:0.08876213716279069 came:0.0735962321649582 :0.6006690832785015 +of:0.9638801277799537 on:0.007332977259234599 to:0.004856113388911843 or:0.003472184171427005 :0.020458597400472966 +which:0.17046414755826023 that:0.10762436083620977 the:0.07821853708645043 all:0.06974125467530626 :0.5739516998437734 +m.:0.2966406802687581 M.:0.0003407034407982152 I:0.0001688841156637849 was:0.00012992614623286866 :0.702719806028547 +three:0.3996338281170454 the:0.25997097656931095 that:0.04103828709494122 of:0.027348524751821 :0.2720083834668815 +under:0.5862605609533155 on:0.1301454287323015 until:0.12484804812224577 and:0.09426962887345558 you:0.06447633331868158 +the:0.3515727249988034 their:0.11778817327081874 this:0.08787146298763224 a:0.07737185537870013 :0.3653957833640456 +the:0.45186633835790957 a:0.05488102460898128 tho:0.02730025029688778 his:0.025187653591670744 :0.4407647331445506 +and:0.07233091811468798 of:0.06330931562687048 the:0.04486758355768095 N.:0.042695314371125954 :0.7767968683296347 +the:0.23918803302041322 has:0.23024157479737967 of:0.21133159692437006 was:0.026840045194824823 :0.2923987500630122 +ii:0.5445284396442904 f:0.2551647281917001 I:0.03608934475661782 the:0.03100398289370321 :0.13321350451368824 +tween:0.9971559047539332 fore:0.0003053197157261589 ing:8.433619272729888e-05 cause:7.661764450838601e-05 :0.0023778216931047945 +of:0.21033951966118153 and:0.18828998199973243 before:0.1437859365786376 in:0.06392206625154674 :0.39366249550890176 +of:0.03693863202668123 I:0.021011217703781976 and:0.019570349199502807 she:0.006972588252124393 :0.9155072128179096 +ought:0.12031159544600027 is:0.10830943866904671 would:0.059460117518266374 -:0.05067424715776129 :0.6612446012089255 +Court:0.9742442876811076 White:0.005813984862883871 court:0.00472311159400541 next:0.00018937251332042581 :0.015029243348682943 +one:0.011237524708745115 longer:0.010135187195869408 mother:0.00834271445244591 more:0.004203361697863487 :0.9660812119450761 +fact,:0.3131149140076295 money,:0.024273454482897427 America,:0.015156494037795164 the:0.012385320128138165 :0.6350698173435397 +y:0.050788970547390906 the:0.014606801529046568 re:0.009421875134904343 and:0.008675505195898412 :0.9165068475927599 +persons:0.30306626966329336 an:0.22362605209649927 the:0.1778614273708599 those:0.10649334247940777 :0.1889529083899397 +to:0.9597625503983611 that:0.03363838883050135 by:0.004001857546068317 before:0.00025247155008573325 :0.002344731674983545 +party:0.5033380825373186 party,:0.005989695349013335 Senate:0.004384891775335261 administration:0.0031577748271272832 :0.4831295555112057 +South:0.16279355267969942 E.:0.08006223178449988 for:0.06886257751304346 S.:0.05248755095362667 :0.6357940870691307 +min.:0.8919914833820173 minutes:0.05405406041400926 U:0.0008598022804094219 from:0.00023881730793928198 :0.052855836615624784 +there:0.7677358202146959 buildings:0.0810095373177771 There:0.02128338366227043 State,:0.015719227192372166 :0.11425203161288437 +action:0.40068557750861 proof:0.11931906517827891 decision:0.048853461838946066 judgment:0.03990377981318499 :0.39123811566098016 +known:0.0512325774290419 and:0.04413010785650392 generally:0.0436443292097317 it:0.03364844957939276 :0.8273445359253297 +of:0.21171070283707835 to:0.20391321583436364 in:0.11462819957016916 that:0.09581308997308942 :0.3739347917852994 +and:0.30215390572725315 has:0.1455985581225712 have:0.09532173948235609 he:0.08975034750169746 :0.3671754491661221 +known:0.6812144391339768 as:0.06193915959691578 and:0.005021422678090953 bow:0.0030260637232822816 :0.24879891486773417 +meeting:0.9882406951195316 of:0.001989802136488423 to:0.001960745448302926 are:0.0010988585082699056 :0.006709898787406995 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +The:0.006564646903900441 North:0.0013026993042503175 It:0.0004961950003694443 the:0.00044287762920902684 :0.9911935811622709 +they:0.8587715168946801 we:0.02930642179558879 there:0.019783402620760355 all:0.006870144468551365 :0.08526851422041942 +of:0.3393794187083326 to:0.13269742800162065 in:0.12454451629450079 and:0.08126730833231646 :0.3221113286632295 +close:0.2085547699610149 as:0.18253782856871573 continued:0.13839812309545002 on:0.09451570123782403 :0.37599357713699544 +the:0.5855507134925537 which:0.09953649998219077 such:0.07236785376348294 his:0.04748474279136266 :0.19506018997040997 +the:0.8276727760335673 tho:0.16003939907442494 these:0.01052418564295521 tbe:0.0005018304707751493 :0.0012618087782773888 +been:0.43994348334855204 grown:0.11747055045052165 made:0.10008675047110448 acted:0.0677680948336268 :0.2747311208961949 +south:0.15499946333042455 company:0.13387035475301537 department:0.0597611718293148 to:0.007716000350100511 :0.6436530097371447 +a:0.32188676400391236 the:0.28943584548223317 an:0.046450128313258884 to:0.03385224028686135 :0.3083750219137342 +be:0.3723412837417045 were:0.3679355547152733 is:0.1688689293305471 was:0.044805866968543495 :0.04604836524393171 +we:0.5291081018968251 I:0.16715091656996278 and:0.0838933286951859 special:0.06722865365911922 :0.15261899917890692 +the:0.5042634798665735 at:0.09566272804859353 a:0.08795850788432952 his:0.035868227955409886 :0.27624705624509366 +the:0.1698926044782488 a:0.14222381430354894 not:0.11867957794986354 but:0.11740247366412274 :0.4518015296042161 +authorized:0.24114397960306744 and:0.068705525073991 or:0.06513304081207186 As:0.03238268514090687 :0.5926347693699627 +him.:0.2130385287269461 it.:0.1208712316694764 them.:0.0725325184415077 tain:0.06506899315227306 :0.5284887280097967 +A.:0.3238243537335046 J.:0.06306661871976124 John:0.048194485451032464 N.:0.033222393819466074 :0.5316921482762356 +President:0.036545068280791425 table:0.034958128898735064 laws:0.029691842497126992 court:0.028419931685696214 :0.8703850286376502 +single:0.07349495112930035 large:0.06155500965887034 largo:0.045871992569124706 heavy:0.04041094043550214 :0.7786671062072025 +and:0.15510566700872952 ly:0.04479505156732731 of:0.03797092031788039 to:0.03035926217915456 :0.7317690989269081 +the:0.5814616683666903 a:0.08390416448210039 his:0.05936348951979347 this:0.04301160049276545 :0.23225907713865032 +the:0.20818067944104574 In:0.06459499164062292 in:0.049629372712741864 Missouri:0.04402263763103347 :0.633572318574556 +and:0.11786709853725262 as:0.03405259347889374 diseases:0.033568117303850585 tions:0.027508643100877386 :0.7870035475791258 +of:0.18595164935672354 and:0.14685896921485886 the:0.08873266067063047 The:0.08227172588357512 :0.4961849948742121 +@:0.027223913336175434 and:0.016013762419024545 No.:0.012416800138727436 at:0.006870759787677226 :0.9374747643183954 +views:0.0832291188880803 suffering:0.04418202404348986 feeling:0.04412942553286998 union:0.03433514241989138 :0.7941242891156686 +had:0.7407962133181516 has:0.166038339982118 until:0.042270801607056395 as:0.011929346903250959 :0.03896529818942326 +as:0.832373879047089 m:0.0426124164125688 us:0.023707589088792613 ns:0.022647834864443255 :0.07865828058710625 +the:0.0036285279310394316 it.:0.002738654273556128 which:0.002692700883808148 us.:0.00203149489956798 :0.9889086220120281 +But:0.6187496633282367 These:0.2770819662621999 His:0.01543364269300496 The:0.013590488201284086 :0.07514423951527462 +and:0.1651437351404747 in:0.159596007272305 to:0.12839448798780703 of:0.12116312241800621 :0.4257026471814071 +such:0.3010423764089024 the:0.18308447862441185 this:0.1436619135017447 a:0.12992597327178465 :0.2422852581931564 +and:0.14153616125707305 of:0.03134610237650073 that:0.019315246361757014 from:0.0188820451251148 :0.7889204448795544 +of:0.9996561045903433 ot:5.990257547138538e-05 which:5.741227803089064e-05 or:4.9448210800081334e-05 :0.00017713234535452992 +of:0.27886215530201136 was:0.16651664615328737 and:0.0808488279269347 the:0.06154309175800057 :0.412229278859766 +in:0.5010017864304033 and:0.2210759495801875 for:0.11642550557950335 to:0.08565599970010297 upon:0.07584075870980303 +of:0.2844946501355354 in:0.2519262583580514 to:0.14859015956746915 and:0.11901025609949681 :0.19597867583944723 +and:0.10124699071037277 away:0.07162917453127018 was:0.029511715453676497 those:0.01972697944446413 :0.7778851398602165 +no:0.49568104526686185 an:0.34702278718149876 do:0.04677561522197635 any:0.046402369551662645 :0.06411818277800041 +and:0.03911997283915885 manner:0.01666647743906694 way:0.011480694704259822 county,:0.008286448936317952 :0.9244464060811963 +the:0.7299402305871572 th:0.26972870435270685 In:0.0002542337901506583 immediate:5.556788790844867e-05 of:2.126338207696669e-05 +they:0.4056126280449084 ever:0.1331162957651502 time:0.11739487177662168 he:0.11398915967529302 :0.22988704473802657 +he:0.34629573769275224 she:0.25762874369800093 I:0.234163465163881 had:0.11723760716795999 have:0.04467444627740594 +be:0.5366183346296504 go:0.05500463721080978 bo:0.049967433074710375 vote:0.024835111881220555 :0.333574483203609 +to:0.795549721053682 in:0.05619878989112224 and:0.05149559928071003 w:0.04977819416746597 :0.04697769560701957 +down.:0.0960894445959566 said,:0.06895921952061035 ":0.022603973748378813 y:0.016002483835413386 :0.796344878299641 +lots:0.9777937778056678 and:0.00043128564641392076 lot:0.00031266772092062363 of:0.00013024064946128233 :0.021332028177536332 +while:0.4996133658559265 the:0.20287625947295845 and:0.12312051619484839 but:0.11365938323728972 :0.06073047523897692 +engaged:0.28212989381303355 green:0.026713139407894607 done:0.026495597523264722 recorded:0.02649122654881501 :0.638170142706992 +and:0.1418134250064253 of:0.06955658325127433 the:0.06757436483943265 to:0.03646574101465695 :0.6845898858882108 +of:0.7388150508729507 and:0.043427172017620544 in:0.03715219315151819 to:0.029034437206212974 :0.15157114675169756 +away:0.6633544478522772 home:0.11162955813134151 to:0.10384849805578952 on:0.037569258468582466 :0.08359823749200937 +the:0.08225369541754024 and:0.0802810202244711 of:0.0782285020368913 to:0.0336360397884568 :0.7256007425326406 +pass:0.5896827783976325 sat:0.06328676804761198 walk:0.021931790856176414 came:0.01645829842462197 :0.3086403642739571 +a:0.08712251911003087 the:0.05248645270111581 ihe:0.011510947963829293 these:0.010689646181608304 :0.8381904340434159 +made:0.08899603735626455 able:0.08327310190638314 necessary:0.07811801541818932 carried:0.057275185758608134 :0.6923376595605549 +of:0.2595320804724789 and:0.079468080341705 in:0.04557691510144627 bidder:0.030242440624327675 :0.585180483460042 +decided:0.46373289220251196 the:0.16826753447594833 come:0.03490880504051017 as:0.014880038551293594 :0.31821072972973585 +of:0.2767384265372746 to:0.2029293463386174 in:0.1410820791642227 by:0.08800322580509849 :0.29124692215478687 +He:0.49753590732616293 his:0.13694571739296246 or:0.1295193068948318 and:0.04646722418863617 :0.18953184419740665 +be:0.729222050378481 bo:0.2373028500026656 he:0.01450634570376327 lie:0.00680882218450537 :0.012159931730584845 +was:0.23876568644993293 of:0.2327203328217737 on:0.16441626527307454 to:0.09430025719936697 :0.26979745825585194 +the:0.9551242578269026 a:0.022425477382318863 tbe:0.009242968258872606 tho:0.006632393110968965 :0.006574903420936948 +past:0.42320098007905455 he:0.16211235239871946 it:0.11543085423934402 and:0.064313902761774 :0.23494191052110794 +have:0.43493533355636466 has:0.2756305330991349 had:0.21955090070542263 lias:0.01564774142748956 :0.0542354912115882 +of:0.9485297349262578 of,:0.026102051617380138 to:0.010425700112878255 the:0.010299166816124113 in:0.004643346527359708 +of:0.26531633233708696 and:0.10481700378425375 discovered:0.06962270696156482 the:0.060269784010283003 :0.4999741729068115 +The:0.5688416085505217 the:0.08203070908490553 .:0.016717533431885645 a:0.011328119004923773 :0.3210820299277635 +was:0.9919992551781965 duly:0.00022184457485448797 has:1.9689419583934895e-05 and:8.609093417143551e-06 :0.007750601733947884 +money:0.3024372019237689 the:0.059603432379554996 sale:0.038212039550342435 political:0.028273346663693286 :0.5714739794826404 +the:0.5476427431850106 any:0.1835379960073101 this:0.09580790634401759 a:0.06895723565604878 :0.10405411880761294 +first:0.42539438467104834 day:0.044432054032510784 end:0.02085059625731586 people:0.020701076456006228 :0.48862188858311895 +large:0.03015201640743666 few:0.027433312025412503 little:0.023526448602661003 the:0.021344325409286945 :0.8975438975552029 +shown:0.04738611346682584 knows:0.03518361048156145 desire:0.03144575490685357 determined:0.03052141060430676 :0.8554631105404523 +very:0.37877220042747 an:0.20538346940448474 the:0.10788980170480746 years:0.09685842639374985 :0.21109610206948792 +York,:0.17869627180240544 York.:0.16599793696479592 York:0.018100445356321052 England,:0.001619375583164629 :0.6355859702933129 +was:0.15622171301611915 and:0.10172717052611482 were:0.0982252985205312 is:0.08306932707518008 :0.5607564908620549 +but:0.34782269890972317 and:0.24539501138789283 thence:0.12427412932568925 title:0.045109514646409374 :0.23739864573028557 +about:0.09556464224644724 to:0.0849179242755934 found:0.0834653885339707 and:0.05934970136723617 :0.6767023435767524 +contest:0.7289864277201541 said,:0.04189750934012043 fairly:0.02664983175410283 said:0.010652787559517674 :0.1918134436261052 +of:0.12133747982623941 and:0.11520960745691838 the:0.08501979329636182 to:0.04220327967931025 :0.6362298397411702 +names:0.06524759435145215 name:0.04001364816993388 cost:0.03279670524528583 owner:0.029582238566212303 :0.8323598136671159 +and:0.293293879318462 up:0.08234175826189988 that:0.08108183809515938 President:0.07451310912028325 :0.4687694152041955 +and:0.17039190125707307 the:0.07655936232879458 of:0.0599456657095373 in:0.04220783742300211 :0.6508952332815929 +be:0.32167825475659256 have:0.11078728040947351 not:0.0903510118091852 remain:0.028407610300927637 :0.4487758427238212 +was:0.7579515828413051 is:0.22111325122502454 Is:0.012891823461152703 ia:0.001265139966737005 :0.006778202505780696 +a:0.10506207994584398 the:0.08116886271277685 in:0.03753413241688528 so:0.024163224581397094 :0.7520717003430967 +other.:0.203842861029531 world.:0.12203912642076964 law.:0.03600858845742828 government.:0.017051951956988567 :0.6210574721352826 +and:0.09426803494653953 the:0.07195367936946005 of:0.06902210939551484 to:0.03483664604368988 :0.7299195302447956 +situation:0.09216525637688905 out.:0.02971280570739905 it.:0.016064347040868888 years.:0.014898068575995396 :0.8471595222988475 +point:0.042993676878892266 tion:0.040010941421180085 condition:0.0331143553156508 view:0.02540135605653237 :0.8584796703277445 +of:0.349944306970422 to:0.13996837063717965 in:0.1304848176294964 and:0.07242227447470757 :0.30718023028819447 +has:0.2635328060978725 is:0.2063261446750722 was:0.1886757963683818 money:0.020646882732825493 :0.3208183701258479 +O:0.6146604124745048 B:0.22982925282617114 J:0.03599453677216522 a:0.026413548228157748 :0.09310224969900108 +one:0.09317585986507351 out:0.05222748502853979 report:0.008461432979449193 W.:0.007870256657117049 :0.8382649654698207 +a:0.9529892796889586 yellow:0.03279308830080132 the:0.007209860241292957 with:0.0018646849363802807 :0.0051430868325667446 +is:0.448157313844583 not:0.2226000390053987 .:0.11989061783109474 largely:0.08004617253109791 :0.12930585678782555 +made:0.3927725087140843 make:0.11758535803468007 the:0.09476986811664541 in:0.07535717750129323 :0.31951508763329706 +of:0.27689352544001544 to:0.1650990550530592 in:0.1359336244281183 and:0.10142303687928536 :0.32065075819952155 +at:0.7844317558730055 for:0.21456910926975176 of:0.0005345169110288163 and:0.0002471467390292615 :0.00021747120718464984 +of:0.19861356689503806 and:0.1516108615227877 the:0.06186758413556395 to:0.028072795631591912 :0.5598351918150185 +they:0.22745868190708698 immediately:0.10388008256352105 had:0.04400089292190847 I:0.03762213655982855 :0.5870382060476549 +the:0.5155328967773827 a:0.033852231300840384 said:0.031227167255120897 his:0.029289706368167568 :0.3900979982984884 +change:0.3540256084228631 lead:0.050851124127196265 result:0.03530696140706065 be:0.03503636228334282 :0.5247799437595371 +it:0.4504320311056029 possibly:0.2031593327670637 they:0.14110662930496237 he:0.13422572843812064 :0.07107627838425044 +the:0.6916374022421237 my:0.24594466352751546 their:0.007212489071356763 learned:0.0064217103826173854 :0.04878373477638666 +and:0.10243559385587857 the:0.07326006092606635 of:0.06583021679904097 to:0.032739611529676985 :0.725734516889337 +»:0.7833347664077132 the:0.017826229808694208 length:0.0021602822577556826 .:0.0010402474206037831 :0.1956384741052331 +become:0.49725622477942727 lead:0.08975402316857546 go:0.07129217378741554 be:0.06427247880594728 :0.27742509945863436 +the:0.7635523654124442 a:0.03877167380851304 in:0.03603644376983671 tho:0.027761237843372994 :0.13387827916583311 +have:0.6623435011390008 would:0.23525698839519854 might:0.05487168025918877 had:0.03846005822421297 new:0.009067771982398998 +have:0.2763342856573878 direct:0.2039318377586917 give:0.10476954549839645 get:0.09734592505575053 :0.31761840602977354 +the:0.2557977959825547 be:0.20554584597253375 the.:0.05529316739963451 a:0.053331051900595845 :0.4300321387446811 +of:0.45681327484565015 in:0.18470468976713147 to:0.0671285067060775 on:0.055328235703193826 :0.23602529297794725 +the:0.09301101248151275 to:0.009917543358114083 these:0.008238848769479038 his:0.008219139190185812 :0.8806134562007083 +p:0.9157189734567213 p.:0.06979745691438975 a.:0.004109176918389336 40:0.0024783673259675455 :0.0078960253845322 +of:0.9986391354026123 grown:0.0008316656776039677 and:9.590623094040046e-05 the:4.4488289365326546e-05 :0.00038880439947788195 +of:0.010955556504912266 and:0.010129405751950862 Mr.:0.005798119937085128 the:0.005114057825002136 :0.9680028599810496 +The:0.46603771375373626 These:0.19631918883451518 Their:0.07928792302132265 He:0.06241916053528472 :0.19593601385514117 +of:0.5528329853150945 have:0.41893807418406387 that:0.008597855002183961 pay:0.007677576120309068 :0.011953509378348647 +to:0.9581823584723413 and:0.020778650841893023 would:0.0027626682500477544 who:0.002344421835042534 :0.015931900600675432 +direction:0.08571477850682527 and:0.03917654772566081 thence:0.033328798071199456 acres:0.026074521718675154 :0.8157053539776392 +night:0.21131848210552726 last:0.1966146647215892 times:0.17275595672300162 which:0.10799148788897565 :0.3113194085609061 +the:0.0689988593231453 th*:0.03644587170187012 war,:0.03282771391566795 this,:0.032436198416898356 :0.8292913566424182 +the:0.48931410389080293 a:0.1427487555497139 these:0.09082984287186267 their:0.08367879405476958 :0.19342850363285086 +upon:0.47955949732635567 are:0.2603521198248398 the:0.09986671755893423 with:0.04790912169479872 :0.11231254359507158 +nearly:0.7964453716064736 governor:0.12031265617694933 to:0.025420912429320618 for:0.014555621517605583 :0.04326543826965101 +a:0.6860767961337132 on:0.24393978079007717 A:0.005906924478172409 with:0.005620064289976447 :0.058456434308060835 +top:0.05970227976244334 sides:0.03288944789553554 water:0.031613596093729025 coun-:0.02879459253621931 :0.8470000837120727 +and:0.0799121893458007 in:0.060151690525943956 for:0.05344629972480878 tion:0.035122340632079314 :0.7713674797713672 +and:0.11092289015304162 The:0.056950966366489386 but:0.049510062418553526 the:0.040670216764512955 :0.7419458642974026 +making:0.1837960572565807 now:0.11193109715352581 in:0.08892566155015265 of:0.044761286819786465 :0.5705858972199545 +election:0.19504398282532118 contract:0.08774931914012613 vote:0.03638193379339205 provisions:0.03202698761691586 :0.6487977766242448 +and:0.8066756194776775 until:0.09271215352123326 of:0.05567962323910518 noon:0.0163942595471161 :0.028538344214867957 +to:0.004663551408289114 fancy:0.004383528170055969 deed:0.0030908906284622013 formed:0.001964501174157386 :0.9858975286190353 +last:0.2417630174968092 following:0.07558568323379267 same:0.0572086724844062 new:0.023290837083734944 :0.602151789701257 +feet:0.7043600112069378 ft:0.07039201238793207 foot:0.054561555251372844 chains:0.012854528149192496 :0.15783189300456482 +those:0.5310237927423475 seven:0.2604094707648066 these:0.09252119574640703 eight:0.05961406313966514 fifteen:0.056431477606773674 +front:0.40975483734351503 head:0.11830805984741075 is:0.019394973074481528 receiving:0.011720663025712947 :0.4408214667088798 +had:0.2988545259769 have:0.22340923171731714 is:0.07227092916833881 makes:0.06293601861049095 :0.34252929452695313 +the:0.9582317680843271 each:0.027619443335085796 any:0.004661109068793815 tho:0.0028582868248610703 :0.006629392686932193 +in:0.2802284533344914 to:0.09375642537766658 at:0.0916217638471563 when:0.08249784880667609 :0.4518955086340096 +!:0.014995557820059595 him.:0.0020123810676885455 pointed:0.0016505382368559411 proved:0.0013491786480981497 :0.9799923442272976 +to:0.46690988946682926 by:0.31717996246429464 for:0.08703364532318762 in:0.028273385679275488 :0.10060311706641313 +the:0.34113678502366834 a:0.24878230154208383 Mr.:0.08741061061098729 two:0.03464001616634846 :0.28803028665691194 +his:0.2466701732714588 along:0.16777832709457183 the:0.05295649150098964 one:0.009722415797558646 :0.522872592335421 +tween:0.3138986707621726 fore:0.24426660845342238 cause:0.09603160118444473 ing:0.05737545040146848 :0.28842766919849167 +face:0.19319171272693023 Washington:0.17958855744957872 him,:0.09428149113728425 me:0.0076235843722080995 :0.5253146543139985 +have:0.41261145420354844 make:0.2280334484688184 had:0.17575005451564688 saw:0.10858223814035312 did:0.07502280467163314 +of:0.26963862484521384 and:0.19511434281906156 but:0.1187993083573092 But:0.09108254019823657 :0.3253651837801789 +enter:0.4228531793758554 he:0.19746415472523957 found:0.034704105895227426 the:0.031689999043646416 :0.3132885609600312 +years.:0.3066126920226139 and:0.12394134656637745 hundred:0.045889753181550946 per:0.03777160601845934 :0.4857846022109983 +of:0.906493678638902 on:0.022913503685325663 in:0.016540091217104428 the:0.014797226679376933 :0.039255499779291055 +to:0.9053633951092973 will:0.05640482143333118 they:0.007642129450839274 which:0.00718871425737235 :0.02340093974915992 +of:0.20412530642839347 and:0.08625998010275403 was:0.0530558237373196 the:0.04388344336499507 :0.6126754463665379 +on:0.9104269829515018 in:0.06952922979713436 On:0.008008810613154001 n:0.007794347035922305 In:0.004240629602287336 +get:0.3612851264933508 secure:0.3035116800067913 draw:0.11980012604499907 obtain:0.11234430949768631 :0.1030587579571725 +and:0.3378458836540023 to:0.19284543367033533 should:0.10671144062126137 that:0.07276272873747568 :0.2898345133169253 +was:0.7386647262580023 ever:0.19597797327209074 is:0.06138368551977684 knew:0.002090993565038855 Is:0.001882621385091508 +are:0.8829108739838551 is:0.0696608075344839 was:0.013834695633025898 Is:0.006610330239874355 :0.026983292608760825 +and:0.2565066679682708 is:0.13161425854625783 which:0.07489746847781167 too:0.054275413359015805 :0.4827061916486439 +been:0.43409636128666446 all:0.0035468430607608027 have:0.0034080431018583073 always:0.0028355244448582764 :0.5561132281058583 +health:0.040948256783622315 France:0.032535558838699276 body:0.025659892512426185 methods:0.02463895644617353 :0.8762173354190788 +tion:0.038204145095409696 features:0.02738349969163021 ing:0.025754158230077335 day:0.02572293528928113 :0.8829352616936017 +to:0.3809956835894854 I:0.14382626711624258 and:0.12397130843710535 we:0.08957381130538558 :0.2616329295517811 +most:0.5532212585290485 one:0.1255343903084872 guilty:0.09665361877779266 members:0.03004811953469135 :0.1945426128499804 +thrown:0.25327235651712066 found:0.22983601136511417 laid:0.07131311195420315 grown:0.05585503471865245 :0.3897234854449095 +Robert:0.0584398196201815 and:0.0547044354585813 John:0.05418144586028713 J.:0.04675939830751747 :0.7859149007534325 +the:0.4771724121066822 he:0.1087251702803209 this:0.03745085069735246 it:0.02128399816127742 :0.35536756875436704 +such:0.4331343906177119 state:0.1511744712859542 when:0.03920607920299166 time:0.03741042007925256 :0.3390746388140895 +by:0.8231290037575885 to:0.09354889355010865 the:0.042198863265438286 along:0.023296568944367314 :0.01782667048249722 +to:0.26838732153362843 and:0.09261569661186098 by:0.08825900770786309 of:0.051487676669390116 :0.4992502974772574 +machine:0.15720512061546724 new:0.11390054398455986 land:0.06554579458303866 window:0.06170508654633686 :0.6016434542705976 +of:0.14309087208120666 and:0.11725205793101023 the:0.09448752909653182 The:0.04629894724198778 :0.5988705936492634 +and:0.1804474547686345 by:0.05016926547641238 Mr.:0.04522288038251795 of:0.036883100399673345 :0.6872772989727618 +myself:0.04273165154719447 Washington:0.03820393482498849 especially:0.031074413224098367 laws:0.01865485134583477 :0.8693351490578839 +case:0.27478934507243585 from:0.03949816252924678 and:0.012837039474191686 in:0.0127047654034345 :0.6601706875206913 +right:0.3849339859741718 power:0.19869206754762264 opportunity:0.08403189305841324 honor:0.08337922477045216 :0.24896282864934025 +from:0.3192291668516677 future:0.096000049102765 the:0.09549924981363007 their:0.062322665888062866 :0.42694886834387435 +representative:0.07992109425083148 lot:0.05858345324595605 and:0.0469736884454026 to:0.043536746774300646 :0.7709850172835093 +out:0.02739602863209156 and:0.026616287003503235 that:0.016003230930338164 virtue:0.0153542654873707 :0.9146301879466963 +hope:0.1032154584059538 believe:0.09958594965188444 know:0.073276975156058 understand:0.06350917996787012 :0.6604124368182337 +other:0.026539915578704228 said:0.020446055505450804 the:0.018009142611677745 most:0.016581293643828716 :0.9184235926603386 +this:0.5906851090458786 any:0.2517602341333344 that:0.04529129240950323 the:0.04375308950523322 :0.06851027490605052 +having:0.3468019705908423 the:0.07085716757330132 and:0.049854348242292845 a:0.046584997379049246 :0.48590151621451433 +the:0.5591780742800618 a:0.06265701601032239 this:0.04334509792194085 an:0.03507333943394183 :0.29974647235373314 +to:0.301127218134352 in:0.19783528293654726 of:0.14100546227587285 and:0.07580339644665544 :0.2842286402065725 +article:0.19749793790374875 gentleman:0.15298422119582225 man:0.06789941339318005 duty:0.05818950297345343 :0.5234289245337954 +the:0.5615795937116698 a:0.06671924571673081 tbe:0.04504841890218614 tho:0.04411927690804328 :0.28253346476137 +ot:0.12460616242343074 make:0.10377795076057693 forget:0.06532079695294819 all:0.06152491264389332 :0.6447701772191509 +thence:0.07413026413382429 and:0.06404333545376617 to:0.05925170899655477 weight:0.05573948577036714 :0.7468352056454877 +which:0.4065835973365974 They:0.0363371076020038 and:0.031597244883674706 ry:0.02947629603415971 :0.49600575414356446 +the:0.35312907513341696 and:0.07580354818965297 a:0.05747820027346198 The:0.03791858630637809 :0.47567059009709006 +late:0.6848193232898785 most:0.007973526186418502 the:0.005756172932202219 said:0.004035407181808799 :0.297415570409692 +small:0.32387093012033963 the:0.17981417319867607 square:0.08491264750413487 such:0.07139045682584502 :0.34001179235100437 +and:0.13507843793751348 the:0.11520731448256659 of:0.11078649835639236 is:0.0817958931844602 :0.5571318560390673 +has:0.2983820738097381 have:0.16814536890735182 have,:0.060969105330474144 had:0.03552500434738235 :0.43697844760505355 +1:0.5701822190919694 u:0.016709891147840703 the:0.016238898789213186 ?:0.014835576888421553 :0.3820334140825555 +work.:0.13796770213185872 and:0.09421405956436128 commission:0.011565592767781897 way.:0.009228455023366968 :0.7470241905126311 +to:0.8638890588904526 of:0.06337750685077259 the:0.010727530189049896 and:0.005349582006304102 :0.056656322063420694 +minutes:0.4219557917077848 days:0.3715065478491286 months:0.15307862501682024 hours:0.02211521224347764 :0.031343823182788895 +them,:0.08209490953072611 of:0.01707250877844157 said:0.016732149795119826 paper,:0.005028019162645102 :0.8790724127330674 +of:0.5167832318904861 in:0.4594921420799745 ol:0.007081929084354819 ot:0.0019059103287387494 :0.014736786616445773 +away:0.13031156304925073 forth:0.0990128290663655 out:0.06912711812740971 another:0.06746695362600783 :0.6340815361309663 +of:0.7823342268122618 in:0.060001497619979784 who:0.01524887954406466 at:0.008916219111874334 :0.13349917691181928 +way:0.012627797052525515 church:0.012114765921992544 manner:0.012068734701928487 years:0.008613507606549418 :0.954575194717004 +by:0.28570476947445617 to:0.22285831037266704 in:0.16763480441946474 of:0.12729282390705296 :0.1965092918263591 +Prof.:0.5949768262043411 the:0.13637453835393468 a:0.09379801790952023 Mr.:0.03916402995757247 :0.1356865875746316 +course,:0.49759269663804717 the:0.06511933409546877 course:0.04368633070751259 all:0.027927036404051076 :0.36567460215492037 +right:0.4816929036088247 turning:0.06008233929128466 looking:0.0515912105887628 to:0.03000544477803808 :0.37662810173308975 +it:0.31125392518256245 the:0.09948645798562483 demands:0.05701080551849044 and:0.05074330475376305 :0.48150550655955926 +places:0.7775599812662042 years,:0.0063723485461638875 way,:0.004186051176379849 sudden:0.0038733254711496683 :0.20800829354010228 +It:0.05336408633322637 mission:0.047858372078066674 This:0.01901815587321948 ner:0.00855554646465061 :0.8712038392508369 +of:0.2383346006751988 and:0.12987346515373227 the:0.044155284208230276 The:0.034887189876343865 :0.5527494600864945 +to:0.23878368017969895 by:0.08583488732938817 and:0.05103498518674699 for:0.03358928506828775 :0.5907571622358782 +view:0.27487546664736145 reason:0.12201086271072617 any:0.05255727943020093 speak:0.026540450476013853 :0.5240159407356977 +Mrs.:0.9690485612682375 Mr.:0.0021429627558262254 Mrs:0.00014179089600566995 L.:9.291970421943363e-05 :0.028573765375711158 +in:0.23122818499372527 of:0.2292711207633048 with:0.12221669028850572 to:0.06796741200429202 :0.34931659195017223 +be:0.44010734367680954 have:0.09363422250725935 not:0.05964626995061052 he:0.03408692353755089 :0.37252524032776957 +same:0.04932243262757465 most:0.031817989633313074 next:0.030134492431856987 present:0.027480692480430405 :0.8612443928268251 +of:0.6460947901541777 and:0.06687235297429363 in:0.05774080639920994 to:0.05392661775914611 :0.17536543271317262 +here:0.3579483501147965 is:0.21181386659311213 be:0.1919409813287327 and:0.17708509111175302 Is:0.06121171085160556 +entitled:0.15095129109350466 ed:0.11162273358971024 and:0.057183472134209 as:0.025626040682490022 :0.6546164625000861 +by:0.6101236918311717 the:0.31614893697256335 and:0.0236625081860299 greater:0.018792398779312196 :0.0312724642309228 +first:0.08255634278945262 naval:0.046367648514034854 tariff:0.037629316472858755 the:0.012410250107786704 :0.821036442115867 +the:0.5558151496452355 streets:0.045262815313904706 a:0.042792091951501646 tho:0.02299076810642032 :0.33313917498293777 +most:0.02001228850982045 the:0.013158983349651007 United:0.011536352411917828 said:0.011316416994973613 :0.9439759587336372 +increasing:0.07692132398320706 arrived:0.057878391846673524 looked:0.03868815637188353 not:0.029512008893514394 :0.7970001189047216 +going:0.19577302119098533 unable:0.09714086317203835 able:0.08361705723382075 about:0.08284467734934728 :0.5406243810538083 +them:0.07872582533711334 rate:0.05876768315175076 ship:0.055102100619132455 and:0.03924548641282777 :0.7681589044791757 +completed:0.12738520617502322 adopted:0.03576245130521818 done:0.030032346378039223 here:0.028845995841328093 :0.7779740003003913 +to:0.2925997221272471 only:0.16448104653138673 be:0.047382310638086254 the:0.03996682495259659 :0.45557009575068347 +itself:0.007017749928584671 this:0.00466023403154416 themselves:0.0033768396881929024 each:0.001551229836850695 :0.9833939465148275 +action:0.7789805915453629 for,:0.0827612088027888 it:0.021704404303263144 one:0.006069200949911963 :0.11048459439867318 +80:0.0359774462400497 the:0.03370866107844849 First:0.031800667963613326 Second:0.02782136762749559 :0.8706918570903931 +people,:0.024988915556207553 country,:0.024347348734935277 world,:0.016386134651545134 war,:0.01471023002897994 :0.919567371028332 +the:0.5668688495466149 a:0.1384783833392319 The:0.06407119803506277 of:0.06096215014856378 :0.16961941893052654 +his:0.5604859755225429 its:0.2084459031554316 your:0.16868065677659455 their:0.024986035287062412 :0.03740142925836849 +J.:0.35500460549903146 J:0.22645480087627365 A.:0.037909637842425806 E.:0.034076629115094806 :0.3465543266671743 +best:0.12018006626874064 recent:0.05408269040040061 said:0.05362224798680359 home:0.038355495049805385 :0.73375950029425 +is:0.20054514585892053 was:0.07733847567881381 to:0.06697868085081803 time:0.05391653428994303 :0.6012211633215044 +and:0.8213390266208342 ,:0.08837130681622242 were:0.008895928716878254 that:0.005115039957319283 :0.0762786978887458 +of:0.09176673981798997 for:0.06600350673701823 having:0.03611018700628987 to:0.0310952284174389 :0.7750243380212628 +and:0.3659301324693757 did:0.20026563092845634 is:0.12108361971245533 was:0.11370631854675745 :0.19901429834295506 +due:0.9925611021048686 suffering:0.0004791545410230418 owing:0.0001287986081313773 taken:0.00010775032497931005 :0.006723194420997695 +et:0.07022451621953461 and:0.037521490672054854 be:0.0247824027066496 of:0.019813040793330256 :0.8476585496084307 +shall:0.6000635468205692 to:0.20432044747137854 I:0.08110849979533492 and:0.007070149109052047 :0.10743735680366528 +The:0.2556566728079719 Mr.:0.19619858133574128 It:0.09685951350747896 This:0.030199301863546302 :0.4210859304852617 +and:0.08810025515094722 the:0.04364580501241288 of:0.03874172560489305 his:0.031067563271469666 :0.7984446509602773 +night.:0.23825314073405682 it.:0.013087230366499012 It.:0.009517208292381788 this:0.006446851104224603 :0.7326955695028377 +12:0.3004150998808668 two:0.21897406375785383 16:0.16332006768803842 4:0.10182869123885593 :0.21546207743438492 +to:0.9908719784409911 would:0.0031485142574146073 and:0.0019998690725800375 could:0.0008531913861109853 :0.0031264468429033653 +be:0.3896774344293957 of:0.19042817934315315 a:0.1552254301123964 the:0.11768994831911365 :0.14697900779594109 +is:0.39599414253625353 are:0.22091410881631646 was:0.13355129721366046 were:0.09808418477662956 :0.15145626665714004 +to:0.4666464473669493 from:0.28956101104679205 of:0.07608144727592579 the:0.03968110933456125 :0.1280299849757715 +signed:0.04260372415383968 and:0.001633722183349913 scribed:0.0008309768655747216 is:0.0005007723221700693 :0.9544308044750656 +the:0.1999070922480219 his:0.14656255743501637 and:0.12393918911909008 their:0.08035907674727732 :0.4492320844505945 +good,:0.0013465228688867347 more:0.0005578746923454534 finally:0.00016417330513431797 so:2.5344060935380067e-05 :0.9979060850726981 +the:0.28476515704350924 be:0.12438575390605293 any:0.11458036453568649 a:0.05592626351285387 :0.4203424610018974 +executed:0.06677182493503755 and:0.04756514929315963 bonds:0.04419699735317029 providing:0.0312674701030463 :0.8101985583155863 +by:0.04977231868566582 about:0.022879976489416257 feet,:0.020818926442279624 for:0.019606666159003715 :0.8869221122236346 +are:0.2635988039918035 were:0.12865368982972952 have:0.09811026668529603 may:0.08253276876727438 :0.4271044707258966 +We:0.8499932074379197 we:0.037191860324921264 who:0.009844285273237724 You:0.009473301879703707 :0.09349734508421777 +provide:0.8261640729451394 pay:0.0028003375620298744 vote:0.0019302492126053617 care:0.0018006396566048212 :0.16730470062362043 +the:0.4655846737442088 a:0.06862535607811963 his:0.033504367271097645 this:0.029567197582889206 :0.40271840532368475 +a:0.38509196148791136 the:0.17472930532637326 an:0.05144892597771169 his:0.02468912521402718 :0.3640406819939766 +to:0.6079136445858243 should:0.14792015414675957 will:0.10626107866986419 can:0.018475705095890964 :0.11942941750166104 +is:0.29199305817505383 engine:0.1713485383059252 cars:0.0934537076051562 being:0.016306493609396476 :0.4268982023044682 +of:0.6135636063656522 into:0.10309668180532425 in:0.08997062987039038 by:0.08844938934449348 :0.10491969261413957 +down:0.03449903914898113 up:0.0169156890667043 was:0.013047440099649496 did:0.010730663562052179 :0.9248071681226129 +to:0.3075841924144576 they:0.17873376999761229 and:0.1055240748480828 of:0.06328657660290264 :0.34487138613694457 +had:0.31805920368311297 the:0.10422777889196999 au:0.04742093033483528 a:0.04236224550567134 :0.4879298415844102 +the:0.5353728673171303 other:0.08052361621678034 tbe:0.08034763673161872 him:0.07726123805593026 :0.22649464167854036 +of:0.5980758374745545 to:0.10449960247046022 and:0.08692323543679857 in:0.07882451012495857 :0.13167681449322818 +the:0.36908625419220353 a:0.06364761400420041 their:0.037689584955096285 his:0.02256415810796085 :0.5070123887405389 +appearance:0.13944239855583154 authority:0.0363370573647082 value:0.03458092017512779 length:0.025961122689782817 :0.7636785012145496 +Smith:0.006802428201210831 M.:0.002994610625742502 Wilson:0.0007731814158369019 father:0.0005094541130489317 :0.9889203256441609 +that:0.4733426956265444 of:0.4599533797611964 in:0.03152526379162593 ot:0.010179829126380983 :0.024998831694252384 +in:0.8744230736660655 to:0.06273928640067988 the:0.013840760994349593 for:0.010470798745959924 :0.03852608019294499 +up:0.23561988000582504 secret:0.08487525315165564 far:0.06985789842795508 under:0.0396000736786607 :0.5700468947359036 +equally:0.6887174416500768 of:0.06990019189363146 distinguished:0.035503769328374235 the:0.0243199861623158 :0.18155861096560183 +piece:0.042113604040325076 and:0.026996855608046523 are:0.02346634186387009 worth:0.021326968135415583 :0.8860962303523428 +and:0.22911509439275113 so:0.09825248426486026 at:0.0922610522790548 play:0.055945063297839596 :0.5244263057654942 +were:0.44454854463967586 who:0.3020861205728894 are:0.11747679462691094 had:0.0416929191643724 :0.0941956209961514 +and:0.011607811968440527 to:0.008424987467252006 of:0.00757696691435692 quiet:0.0063167212262059 :0.9660735124237446 +not:0.41048220680590397 the:0.06289550227898091 inter-:0.02234144079285142 ad-:0.019935955997865483 :0.4843448941243982 +hundred:0.17058141959176465 gentlemen:0.07097246864472055 children:0.025973256784987134 rich:0.018385203350425098 :0.7140876516281027 +ton:0.21722609317601874 to:0.10000775534237154 and:0.06665227953968432 of:0.020061905146226647 :0.5960519667956988 +support:0.6645503390576941 the:0.14249863433193152 their:0.13222155426279772 get:0.03032688004816322 :0.030402592299413268 +interest:0.25705492203616365 benefit:0.11410713477335004 line:0.055556648126965785 control:0.033460015117583175 :0.5398212799459374 +first:0.22387453451994227 second:0.16591660908139647 United:0.020989720334570194 State:0.01475694383295108 :0.5744621922311398 +not:0.08258039037677962 to:0.06233698059251761 in:0.03423648231315545 the:0.03284076632624048 :0.7880053803913069 +of:0.6217765741585393 and:0.10142395355579772 where:0.045529134735296 on:0.044451294294594684 :0.1868190432557723 +privilege:0.46046075695998734 ones:0.03315278677592292 s:0.01370605235696469 number:0.010231559047544603 :0.48244884485958045 +keeping:0.24172061572066555 and:0.050625351009074095 body,:0.026107170197803557 or:0.021762301122870965 :0.6597845619495858 +the:0.7229845531630964 you:0.10188240457022701 him:0.05692912624856324 going:0.0491916022230934 :0.0690123137950201 +against:0.917716898335638 on:0.029947963070511122 with:0.01987326874463596 of:0.01947500227303268 in:0.012986867576182101 +is:0.13017698580924558 are:0.08015754450176124 and:0.0588456380768225 seemed:0.05869298925821799 :0.6721268423539527 +of:0.04152802635009046 spite:0.013177473053370392 scribed:0.00950053463853639 fight:0.007517251168653021 :0.9282767147893498 +officials:0.3137350928827522 for:0.1707346975156583 hand:0.11270615275685512 day:0.09102282114698146 :0.3118012356977528 +and:0.03313031797184716 according:0.022709334182001016 want:0.020071776936853806 as:0.019333396519703266 :0.9047551743895946 +business:0.1357644467881843 entirely:0.10242689205940114 only:0.04499985829141212 as:0.015403471256389564 :0.7014053316046128 +law:0.022968485000169802 party:0.015646226574835845 laws:0.010315656273314029 spirit:0.009510809428499913 :0.9415588227231806 +and:0.252390909962275 so:0.18693084770649526 was:0.08231535119696196 say:0.06648178919240301 :0.41188110194186467 +are:0.544742972485879 is:0.26042423134052284 were:0.02271272726533765 has:0.007804340590582883 :0.16431572831767768 +Some:0.35214366746362513 The:0.14855812464046245 I:0.08933445475423321 It:0.05526592373596013 :0.35469782940571903 +or:0.5121718598681603 like:0.10002553960702697 to:0.09971245819814768 is:0.08473323574979846 :0.2033569065768665 +by:0.5681330776082092 upon:0.1460293103023137 for:0.10106474926338546 of:0.08741555123129187 :0.09735731159479978 +long:0.48404855050232976 short:0.08451472307859732 new:0.0794642036637512 ,:0.06052580497000351 :0.29144671778531833 +would:0.42104998935475746 did:0.3563146526148827 must:0.07681377186626219 could:0.07680920381686909 will:0.0690123823472285 +and:0.23879195225037647 in:0.1518275670525323 for:0.10924225137806717 aud:0.08109250630219336 :0.4190457230168307 +and:0.28579952251202273 but:0.06358880552792526 said:0.03549766152413671 so:0.032815596741368885 :0.5822984136945464 +of:0.2754286499875141 Among:0.09361264377747414 In:0.06774650865155193 to:0.012647789821204066 :0.5505644077622558 +of:0.3831936408493812 the:0.1078048033934327 ernment:0.08006635053981136 and:0.066686156505788 :0.3622490487115867 +distance:0.0682886438630158 by:0.05791871136191778 year,:0.007079744564712924 river,:0.006068079227483131 :0.8606448209828703 +the:0.6630631108386983 day,:0.034488090197223875 this:0.024176212768452644 tho:0.023966842373934642 :0.2543057438216905 +said:0.11501556865120972 the:0.04601645186804089 of:0.04593785461379617 and:0.03712383008503933 :0.7559062947819137 +to:0.5213216430998933 on:0.20078336731480004 in:0.11047700663899983 for:0.10677454847214456 and:0.06064343447416232 +far:0.6773736673017544 long:0.15633133326742304 soon:0.06011742086454863 much:0.011289237784514931 :0.0948883407817591 +wish:0.10424307947892539 belief:0.05488168419104202 desire:0.02980396678979624 opinion:0.025006550638024944 :0.7860647189022114 +Court,:0.13082990824698124 is:0.09952645428428791 office:0.07401435191827983 period:0.06981955847954553 :0.6258097270709054 +most:0.3952857583367562 best:0.0927047625076442 largest:0.09005720179169775 greater:0.04212460436416897 :0.37982767299973286 +and:0.24193998205648695 so:0.07832255482252261 is:0.04248699065338183 but:0.034000263523184845 :0.6032502089444237 +to:0.4574818125487715 of:0.2286535060014593 like:0.06382399111822383 in:0.05280423834400413 :0.19723645198754122 +interest:0.38723996886014417 and:0.09253021187513445 made:0.06943357147557203 aud:0.06680238371887803 :0.3839938640702713 +and:0.12782748439663214 of:0.0764859813559878 from:0.06693155967974534 the:0.058789330921574526 :0.6699656436460601 +the:0.017851396682058557 power,:0.005887533884093373 it.:0.005643449090110757 motion:0.005524855382589058 :0.9650927649611483 +It:0.2902606213435504 it:0.2516204234590865 he:0.18002912366063406 this:0.026437970317404375 :0.25165186121932454 +home.:0.016735066666380263 life.:0.016548562058955715 people.:0.0037173491580356106 homes:0.003096274825462478 :0.959902747291166 +or:0.9876978339202176 much:0.0018949691347288514 nor:0.0012384059930140485 and:0.0012027825260980398 :0.007966008425941426 +day,:0.0793756814692746 crowd:0.05963029701529182 tree:0.023069015351750467 half:0.006923738018047767 :0.8310012681456352 +like:0.5869560972609323 of:0.20398312608769845 thought:0.09199915422027521 believe:0.06056795473342473 :0.056493667697669385 +world:0.14781696817177647 business:0.11889021353761252 time:0.07372609338368812 money:0.07336043243580193 :0.586206292471121 +as:0.9678497315773931 and:0.005799241829184691 at:0.00402065433580636 us:0.0033329600460093446 :0.018997412211606644 +do:0.7969772977658292 a:0.11866998728007054 the:0.03927010070980601 with:0.019821230466872612 :0.025261383777421657 +the:0.27546973337299285 is:0.10238246841724549 was:0.09333409216848026 are:0.07129854153152212 :0.45751516450975915 +of:0.24522233341183322 and:0.13937696621584103 in:0.12209179259820713 to:0.11484204297971061 :0.37846686479440816 +the:0.6256832156581232 a:0.13001586172681534 tho:0.03083458584725073 any:0.01941204882693151 :0.19405428794087912 +we:0.17164961563101125 but:0.09016538962358005 and:0.06018709239745146 I:0.05471418502491819 :0.623283717323039 +am:0.17147939220902422 this:0.11859156462204742 the:0.06349268212314611 that:0.03405589038813501 :0.6123804706576472 +purpose:0.06723186635162615 sum:0.05128680410202418 County:0.043383496520754246 city:0.0206023871118193 :0.8174954459137762 +those:0.31904633175508634 all:0.06800514637924168 men:0.0488566477142649 the:0.01914066110699161 :0.5449512130444153 +few:0.13036501797209776 worse:0.09134211310104756 great:0.08801047028834713 little:0.029908564998634132 :0.6603738336398737 +be:0.2953207830169287 what:0.22822879957224082 he:0.08287307725559319 follow:0.06555562159391293 :0.32802171856132434 +they:0.25434958470302754 it:0.2198595781023826 there:0.14223102539461693 she:0.12701533705548215 :0.2565444747444908 +into:0.26400912516017716 with:0.20236222691343372 off:0.18942174808615264 through:0.17526422460023705 :0.16894267523999953 +Register:0.11850579122396375 passage:0.08333051113704812 coming:0.07097898764246499 claims:0.04891063384030134 :0.6782740761562218 +of:0.051592420970644474 from:0.030075371170195674 10:0.02401279017983469 100:0.020233824052853237 :0.8740855936264718 +department:0.07440473424086815 the:0.02026143172051218 old:0.019857111236733168 commission:0.015600501644812605 :0.869876221157074 +sort:0.11360378404730441 change:0.09268552641533642 series:0.0763964516054175 feeling:0.06232385112612802 :0.6549903868058138 +division:0.035246824482379334 estate:0.00841899027741792 most:0.006031808575393163 that:0.00478290739159434 :0.9455194692732154 +reason:0.816795643044265 reasons:0.03622681254676846 cause:0.0014185567094808244 time,:0.0007805713908055749 :0.14477841630868024 +the:0.8132694320965765 tho:0.036755497361413356 we:0.017858370028983883 his:0.015184234797109949 :0.11693246571591617 +months:0.5174606954339299 years:0.4815973574209904 days:0.0005608343451021598 weeks:8.078076225016525e-05 :0.00030033203772729394 +other:0.15197253895520035 only:0.07008810135903819 eyes:0.015750352007527734 and:0.011234569541771338 :0.7509544381364623 +have:0.872231587274342 had:0.06627370684990722 thought:0.012043597576127161 havo:0.008361670974607062 :0.04108943732501645 +own:0.24047050381222268 national:0.053409974649897746 public:0.05123753267611874 present:0.044074911511037124 :0.6108070773507235 +the:0.6455000939044088 a:0.0706385778470973 tho:0.04434146314379366 physical:0.03161458989037978 :0.20790527521432045 +upon:0.4059786878835477 on,:0.15787268321681108 that:0.07419867192823142 to:0.06632326646910752 :0.2956266905023023 +the:0.853954160241385 tho:0.13500130070223776 them:0.005179890508827148 these:0.003020841095588231 his:0.0028438074519619057 +and:0.12631238456462102 it:0.08099592975427415 which:0.06044804670708289 It:0.049408841172450826 :0.6828347978015712 +the:0.9417149439249657 tho:0.009990332974259435 tha:0.006250796548190666 new:0.004064224543859821 :0.037979702008724484 +that:0.4896200723997939 of:0.148891463150012 can:0.08964324980437563 and:0.06019334808166583 :0.21165186656415277 +indeed:0.12902394267944614 What:0.08435420091367632 or:0.06636469066077974 Why:0.056054444274592184 :0.6642027214715056 +principles:0.9400715489599407 by:0.02589571168025001 the:0.010426007142228388 as:0.00932701997508677 :0.014279712242494143 +is:0.5454476721052217 was:0.3047071654527461 be:0.039188718313052213 Is:0.035016905099982704 :0.0756395390289972 +our:0.26482965324014124 Its:0.26404476779845326 their:0.20099200939986345 the:0.15905538229055627 :0.11107818727098578 +In:0.5711376831445517 in:0.4135391779896033 on:0.01505743413669792 iu:8.337722612374455e-05 :0.0001823275030231115 +bonds:0.2568174788539014 are:0.10896480383893806 were:0.04073242833214221 seem:0.02366393362121392 :0.5698213553538044 +city,:0.47939605570432536 for:0.16750362416779313 land:0.13007164007015265 view:0.029902554703723754 :0.1931261253540051 +He:0.30923803003379 She:0.18186465695720583 I:0.18104689329929252 and:0.11874845807557259 :0.20910196163413908 +other:0.16636761962158012 re:0.0730030965794335 next:0.04868438963574659 second:0.048414053486898104 :0.6635308406763417 +the:0.5755754159663341 this:0.22251606672735463 a:0.08821883770850292 his:0.08380998366870407 bis:0.029879695929104312 +come:0.12875992465440708 gone:0.09996924299591382 failed:0.08965807179822631 extended:0.07633808801562972 :0.6052746725358229 +calling:0.15009453961182903 close:0.10256801510029136 up:0.08172369343568409 down:0.0673797996137724 :0.5982339522384231 +of:0.18909394916254005 T:0.14123534295298482 f:0.09241412276777711 that:0.07147025902164848 :0.5057863260950495 +and:0.8982809700824811 who:0.025463426355477728 which:0.025267391478005854 they:0.01312552270573455 :0.03786268937830095 +eastern:0.21448102482753884 the:0.16178483032563332 a:0.08425410416557998 de-:0.049775040936927924 :0.4897049997443199 +and:0.21636143323726603 They:0.09850479738501619 who:0.08952568286375884 which:0.08859966689900009 :0.5070084196149589 +step:0.6485344113093092 go:0.18122303122043723 turn:0.0336978800777462 take:0.024180689180522123 :0.11236398821198512 +of:0.2248617663376506 and:0.15255662915296 but:0.08332773887636623 was:0.06234153820204058 :0.47691232743098255 +of:0.8079073919134367 in:0.0363804430888234 for:0.03382919597675495 to:0.022098553256765633 :0.09978441576421933 +seen:0.13070950352661084 met:0.0966655376488192 married:0.045079971751700754 lived:0.03741564043029976 :0.6901293466425694 +was:0.47194055461773926 it:0.3598249886652339 them:0.09744542814250806 It:0.04113102803206293 :0.02965800054245593 +beginning:0.4107276259354859 entitled:0.2899507270921465 run:0.01643230406791314 said:0.011113688313910429 :0.27177565459054404 +an:0.24386169520525236 by:0.23960636120902556 a:0.2313335017397756 to:0.1771940410017312 :0.10800440084421538 +of:0.6675297677917189 and:0.039041021970945 as:0.03718822000593659 in:0.03713560184806904 :0.21910538838333038 +more:0.06823902232514696 of:0.028846552733934428 and:0.027709006554239413 pounds:0.0196715345378942 :0.855533883848785 +its:0.6612729588663936 the:0.16524255889716144 th:0.02825154684114855 his:0.024953633101191874 :0.12027930229410448 +100:0.0997301000327249 six:0.08061643462093114 four:0.07909663572380539 many:0.07894774419506485 :0.6616090854274735 +evening:0.14897417862447687 meet:0.08294421493119325 arrived:0.07218808932329747 hands:0.03769337956608299 :0.6582001375549495 +the:0.8746607525190132 tho:0.012226922062265656 its:0.009163385267875962 tbe:0.007522313639733451 :0.09642662651111177 +Pennsylvania:0.05958685949193367 the:0.05317544687246971 this:0.03185246521777225 many:0.02761510840901028 :0.8277701200088141 +;:0.2280310353897559 this:0.07928968591641475 I:0.05849748471761526 and:0.03400051216223525 :0.6001812818139791 +ing:0.02840076853800897 coming:0.027859820715308032 in:0.015407282883630333 from:0.013557642627977288 :0.9147744852350754 +grown:0.05097417082782993 and:0.038871123633650834 T:0.033262572625156195 women:0.021329504568636047 :0.8555626283447271 +to:0.18480822320038695 as:0.18212673849032815 In:0.1566889492149176 with:0.15539264704288439 :0.32098344205148294 +to:0.5036340072566289 and:0.20602162622749834 boy:0.01881097207835115 10:0.0024877419024223295 :0.26904565253509916 +long:0.2289196731127131 money:0.19469938751696345 have:0.07152880204021725 is:0.05824386285691536 :0.4466082744731908 +and:0.05295162521244408 as:0.019714322917464024 feet:0.016045419681661215 is:0.014448665475997215 :0.8968399667124334 +of:0.1704107304479291 and:0.0981464164921174 the:0.08554472381583669 a:0.051227074718154755 :0.5946710545259621 +dressed:0.20677417067875337 but:0.0026630077138265246 with:0.0011623846092085912 of:0.0005123013243894011 :0.7888881356738221 +will:0.22039198504998259 would:0.12594214021014064 shall:0.10744461863670815 has:0.09974222577336231 :0.44647903032980624 +over:0.3415022595117866 ed:0.10287551121631222 with:0.09305547257839362 him:0.07578742417771064 :0.38677933251579694 +thought:0.5430066487854116 think:0.16359415286225215 know:0.040490086316664696 suppose:0.013483445386882278 :0.23942566664878925 +the:0.2624011347562856 a:0.13640093565042508 and:0.08431373943518641 an:0.0472967005455412 :0.4695874896125617 +and:0.14529982025333943 of:0.12125318624742903 has:0.11429014255577 the:0.10578725636349649 :0.5133695945799651 +to:0.9936414624169011 or:0.0011113383147792928 and:0.0010794143253440068 have:0.0008945173313089226 :0.0032732676116666855 +the:0.5411711373081043 double:0.04281818070470411 tho:0.033142574195556995 (:0.02469069630853686 :0.35817741148309773 +in:0.46604207855584584 at:0.17204228749666514 iu:0.16880271149418974 on:0.1384142306418154 that:0.05469869181148396 +that:0.3681314381287176 the:0.10268092467164117 much:0.04659873599058025 many:0.04559193168918747 :0.43699696951987343 +state:0.4142477773396373 condition:0.029489552830367236 sort:0.02840713245747338 number:0.027139158166249334 :0.5007163792062729 +of:0.6236960379132994 to:0.13184340345083068 in:0.056644071153383956 on:0.04268397294954404 :0.14513251453294196 +V:0.05265732833725987 r:0.017855732377486052 ::0.0023364511195640755 ":0.0019289525706568712 :0.9252215355950332 +or:0.39520727813697787 of:0.13232721180171714 and:0.05691136185095794 to:0.04475078060488599 :0.37080336760546107 +is:0.9689571575928393 was:0.013672499203758837 the:0.0074141044345096335 may:0.006606336648352747 :0.003349902120539433 +the:0.38785407608490646 any:0.15138181952867205 his:0.14366553021103004 a:0.11930028069944255 :0.1977982934759488 +is:0.338488755391891 was:0.24376122977156772 can:0.14933680106040345 ap-:0.08005485297573456 :0.18835836080040322 +the:0.4213273728944062 another:0.305446834756858 tho:0.13285931613028082 a:0.09003487962624505 :0.050331596592209885 +in:0.5236924850861991 In:0.3965809891868706 iu:0.014773108177663072 la:0.007396385377747694 :0.05755703217151961 +everything:0.07776001048378978 had:0.02847261168707273 ;:0.019970572509620584 tion:0.01894201232730095 :0.8548547929922159 +the:0.1268513705763129 it.:0.062046083380190555 government.:0.004891355749749521 which:0.002909505508852057 :0.8033016847848949 +it:0.3230927212049985 not:0.2999800958866645 Lot:0.10580725835017504 simply:0.0602955343094733 :0.21082439024868868 +of:0.3296001087804606 and:0.14994308943643514 to:0.11081058950082534 in:0.09002912275104705 :0.31961708953123197 +be:0.6715797822241327 not:0.07327357571590337 bo:0.0593037880796325 prove:0.0510394596892572 :0.14480339429107428 +the:0.41899734523946564 a:0.06181107747641922 in:0.035334822799160996 his:0.0351268895933507 :0.4487298648916035 +to:0.5260762498600798 in:0.1955909444320391 degree:0.01990745861798563 in­:0.0070637218463121924 :0.2513616252435834 +and:0.03267663462306987 or:0.02269130493114159 caused:0.008574792348443775 power:0.007389701370559511 :0.9286675667267853 +other:0.35679618985545 the:0.23598490456675417 a:0.03151538064463751 that:0.024213669135305985 :0.35148985579785236 +of:0.4483974520767218 with:0.15219745536776894 and:0.08808443376725886 in:0.04989367658940651 :0.26142698219884397 +home.:0.009933392452876876 body.:0.00819822812784624 house.:0.007492962162656809 wife:0.0038338418945395953 :0.9705415753620805 +One:0.46814105763896935 That:0.14897214866952355 Last:0.12572408737321245 last:0.10988121640228901 :0.14728148991600565 +men:0.2386097090746683 hair:0.07420638594425183 men,:0.07153072469148275 people:0.051076446423425584 :0.5645767338661715 +them:0.4404332834544547 me,:0.18675848466310338 her:0.11046599696935808 us:0.09063482526433746 :0.17170740964874626 +w:0.2929209537750847 city:0.11999826143551262 whole:0.011056454683787399 to:0.010910019879205202 :0.5651143102264102 +to:0.998736099720169 of:0.0009679493795427365 tn:0.00013226969433689897 or:9.899069239484248e-05 :6.469051355667472e-05 +to:0.14000874665630345 the:0.05384970191732007 of:0.04085681512847597 with:0.024862215824472834 :0.7404225204734276 +the:0.187009694905498 of:0.12470069351293925 a:0.07327521095421559 and:0.06675079903684121 :0.548263601590506 +and:0.43733077233086876 to:0.11966740254959582 I:0.04236491875019188 of:0.035820070005196006 :0.36481683636414747 +the:0.4996451204039474 our:0.11551444937851535 Fort:0.05502564132507284 be:0.05368841912234959 :0.2761263697701147 +be:0.8711859678445726 bo:0.04711290111277487 he:0.024211513227314355 lie:0.013473144646201541 :0.04401647316913661 +of:0.33983707695970866 and:0.1385981153195834 the:0.055492983462056354 to:0.03108660171166454 :0.43498522254698685 +and:0.3082528566073877 of:0.19492159802298542 is:0.07276129251298667 are:0.05877791579797266 :0.3652863370586674 +the:0.2633901561025936 Congress,:0.14867667647072483 Congress:0.10330323030812956 February:0.07438009451267288 :0.41024984260587904 +to:0.991235339978975 by:0.008107699327168243 present:0.00031196319444819177 on:0.000107125309129248 :0.0002378721902792785 +men.:0.009006161984015939 .:0.006001842931292527 and:0.004560247062423035 point:0.004317046516557095 :0.9761147015057114 +have:0.3428884067525095 offer:0.23016518820069212 do:0.12468434406179459 be:0.09909739350456027 :0.2031646674804435 +and:0.09150562420983616 but:0.051740435529759835 occurred:0.03712979360564632 that:0.024892713281611027 :0.7947314333731468 +by:0.6076906133723887 that:0.18498223107127407 in:0.1132044653917805 at:0.04882547189313131 to:0.045297218271425466 +A:0.004599280020860503 the:0.0025590183509261485 one.:0.0016935539251216349 made.:0.0014676453765015544 :0.9896805023265902 +complete:0.12141948622880412 per-:0.06751453606375415 the:0.05332896842456169 faithful:0.050996482324165426 :0.7067405269587146 +done:0.11514139597769582 seen:0.0822586145827873 been:0.07257672286081315 said:0.04217234635844686 :0.687850920220257 +1:0.08332903789034138 of:0.06778764949300205 and:0.051468822353735615 the:0.035526284091755164 :0.7618882061711659 +set:0.30203162835124403 placed:0.1472858934232859 thence:0.06720970208234286 and:0.03278714955141608 :0.4506856265917112 +T:0.1057601852647662 the:0.002508544357903655 V.:0.0022040705250333976 John:0.001996055736435539 :0.8875311441158613 +their:0.0938681168087877 the:0.09337141816130066 an:0.08359311111996195 a:0.08031117006928931 :0.6488561838406602 +the:0.16482811145195844 health:0.0404975010998883 tho:0.033964280355858474 granted:0.014357280886992514 :0.7463528262053022 +of:0.4995335334756232 in:0.1542866282767883 if:0.12290057796212651 England,:0.04180887578592087 :0.18147038449954128 +North:0.37401370798984834 South:0.3708995885152823 the:0.23407499643970492 tho:0.0051269639325777 :0.01588474312258663 +part:0.028514442572258394 other:0.019733510536608483 first:0.01766127233721961 to:0.016584489382211895 :0.9175062851717015 +at:0.41269827034015805 from:0.23266683144121253 of:0.07305697354340909 By:0.06983254686703126 :0.21174537780818892 +and:0.16454823823364653 so:0.06300914548026115 of:0.0300297354019652 is:0.027638270409764732 :0.7147746104743623 +of:0.9479025208735092 four:0.01160753306981712 forty:0.004688177218872781 and:0.0027319612182687423 :0.03306980761953211 +with:0.2597339407243666 and:0.2265572602329167 but:0.15825046470008725 for:0.08078897795625052 :0.274669356386379 +his:0.3962900963959554 a:0.3578944258549623 your:0.13768990251368207 the:0.05767808443888263 their:0.05044749079651761 +to:0.5153143214292507 the:0.09797001688657196 of:0.041992899110123244 The:0.034774987184152534 :0.3099477753899016 +annual:0.4354710155374202 free:0.1142240976589009 immediate:0.079811364416738 such:0.04681658782489641 :0.3236769345620444 +to:0.28852536101062826 by:0.19837601036391006 of:0.15071695586028921 for:0.12161173678161195 :0.24076993598356047 +market:0.20217139205046594 basis:0.0823529960944695 place:0.0377774498411757 passage:0.033405284785242 :0.6442928772286468 +meeting:0.9153324057603491 one,:0.013475268914681687 family:0.008994288151359055 home:0.006438378190635422 :0.05575965898297468 +the:0.7012014138602868 this:0.1480255479712303 our:0.07278488335649935 tbe:0.024983548824975138 :0.05300460598700856 +the:0.6337714208574313 his:0.0764109617378582 every:0.06723376721394526 their:0.0660027106533096 :0.1565811395374555 +member:0.7141302471801445 and:0.09192632098192743 or:0.03528284495386222 act:0.01987915845348565 :0.1387814284305802 +not:0.9732131130863108 never:0.0032013072365141833 hut:0.0029421697199437653 but:0.0027460901604325176 :0.017897319796798653 +to:0.48442278131235705 of:0.14184261704070245 into:0.08470047792386412 the:0.049475046836450015 :0.23955907688662642 +it.:0.019258988122865684 the:0.010555659795640748 him.:0.007841057809119208 us.:0.005778139796758269 :0.9565661544756161 +to:0.22637594741685835 and:0.21933655874760277 of:0.20525654105905883 with:0.16890115818195814 :0.1801297945945219 +strong:0.11266326330049374 rich:0.03052571830032992 same:0.024443735992362634 lower:0.008301073322499396 :0.8240662090843143 +of:0.6994051770193335 In:0.16293340161263287 but:0.043246903312727826 in:0.02856305559054304 :0.06585146246476288 +r:0.2959627948310308 ou:0.29119919967950403 was:0.06664810997466222 of:0.013302429520364792 :0.33288746599443814 +and:0.2025610505472955 by:0.14251098517258207 all:0.12566300955155174 is:0.058125350501636926 :0.47113960422693385 +facts:0.4925201942898764 manner:0.164660827393132 price:0.1046141877876427 reasons:0.08915324717033896 :0.14905154335900989 +of:0.5585294188029444 and:0.08206480898632953 with:0.054411205552885054 from:0.03585974345625475 :0.2691348232015862 +have:0.38579491745862055 make:0.2947569629666122 be:0.11502983578514536 spend:0.07357331472594576 :0.13084496906367601 +the:0.9693021151173347 our:0.022121628277387985 her:0.004294405010170844 my:0.0014166841756911002 :0.0028651674194153055 +the:0.6118855438686661 that:0.11532307948368026 this:0.03404799009079012 tho:0.0034351838186386092 :0.2353082027382248 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +when:0.6554889741010297 which:0.22030999745273153 are:0.04975203928476959 and:0.03780260761098117 until:0.036646381550487946 +said,:0.046531224086417945 is:0.029333020658696456 He:0.021869369177025203 It:0.01791753178682547 :0.8843488542910348 +they:0.42412635603201326 who:0.2909341742421092 and:0.09587946578352807 .:0.08625910007917058 :0.1028009038631789 +from:0.8697123751502502 some:0.023428182585035807 about:0.018658735093923844 but:0.012962101606282894 :0.07523860556450711 +been:0.8048716745377276 made:0.01507444916428051 a:0.011499041991832113 the:0.00825442057176651 :0.16030041373439333 +the:0.846011202707828 our:0.06137366310435301 this:0.03859838670856363 about:0.02398334331591334 :0.030033404163342117 +and:0.12740214233414696 of:0.1081960818803553 the:0.08744218128125253 to:0.04450714966980377 :0.6324524448344415 +the:0.6306747627862195 tho:0.17832977152529958 my:0.0803986047766968 simple:0.05598741913795624 this:0.05460944177382796 +it:0.40528288715384747 he:0.24960314914385337 this:0.0841234769833799 reference:0.07279691905268872 :0.1881935676662306 +him,:0.018227708102690476 them,:0.018076068086953154 us,:0.01598163367245423 it,:0.005692141666924433 :0.9420224484709777 +had:0.06572865954713829 city:0.028234394874371235 world:0.01970844949115416 rear:0.019534819064224267 :0.866793677023112 +days.:0.007332664124421202 States.:0.0019210321111577458 matters:0.001307536925186513 years.:0.0012925489414594422 :0.9881462178977752 +the:0.7530848105015002 tlie:0.1389526224930125 this:0.05621275658067792 a:0.027451537387792664 :0.024298273037016448 +and:0.044460863160732625 made:0.030813191924730244 labor:0.019851138174947963 soil:0.013944464535177201 :0.890930342204412 +the:0.4762566005535151 a:0.08913271293417721 Mrs.:0.03240655100070391 following:0.02202690357691449 :0.3801772319346892 +he:0.42132088179497784 it:0.39964255502626106 they:0.05547751696386232 I:0.05132331617230019 :0.07223573004259855 +able:0.13676791014031428 permitted:0.06893446075265876 made:0.019613631348987606 obliged:0.012042002437576183 :0.7626419953204633 +be:0.26658679301236554 keep:0.20493236220470137 avoid:0.07024252970794198 get:0.061244752690038304 :0.3969935623849527 +it:0.32452399285581146 in:0.27616839778501245 the:0.1652959159125257 that,:0.11905175380811316 :0.11495993963853722 +the:0.30722097886476996 a:0.27988743569996427 it:0.08366075166556916 their:0.0831064061553322 :0.24612442761436432 +given:0.278677737107219 burned:0.03267375124981733 shot:0.03215116469104986 carried:0.021584911768582894 :0.6349124351833308 +Hill:0.11362814826568629 and:0.09858610395626528 A.:0.08777932380365534 of:0.07035107785644991 :0.6296553461179433 +right:0.29288791398753994 other:0.1483695636241102 east:0.12713317031371432 west:0.10397358324530173 :0.3276357688293338 +re-:0.35006097870555974 being:0.23340080460113333 getting:0.08302009194401067 increasing:0.017608992235700772 :0.3159091325135955 +and:0.20906843587708987 began:0.14002098426378845 unable:0.056629345845513226 is:0.05541504191799364 :0.5388661920956149 +works:0.027293505842582017 interests:0.009033768904871271 schools:0.006643891470566581 roads:0.006414567135268317 :0.9506142666467119 +way:0.2403695470672523 book:0.025921490059112665 votes:0.010401605939992212 money:0.009990384331546335 :0.7133169726020965 +river:0.05331320203131437 and:0.04264370420245468 tain:0.042629317827165024 of:0.02793084067044177 :0.8334829352686243 +that:0.022163097837400208 advantages:0.01679774120509569 course:0.01663090751135195 is:0.015910095959335586 :0.9284981574868164 +the:0.18148750141490644 seem:0.17189630546256315 night:0.1703406800169952 were:0.08855673597619333 :0.38771877712934183 +given:0.4189329923159514 treated:0.31668263581370143 left:0.07314577039396068 written:0.04945853855282321 :0.14178006292356327 +the:0.4265904737554623 and:0.10745159615481203 his:0.10115548115637778 of:0.08744875469713759 :0.27735369423621026 +the:0.07183591083861644 one:0.048007883525044655 spirit:0.028923174145714062 judge:0.01760630369511706 :0.8336267277955078 +to:0.36842613873882674 or:0.33978855926648355 any:0.16860387269888436 a:0.06751359383556868 fair:0.05566783546023669 +and:0.22354811828095753 of:0.19251583776897715 with:0.1334598959929508 for:0.11214065637101318 :0.3383354915861013 +handsome:0.2709918287418483 for:0.24082068728609135 more:0.22605989922164574 to:0.16288173272210563 among:0.09924585202830909 +in:0.1357114387975017 made:0.10378364247263194 and:0.09285069629676565 on:0.05346627346625238 :0.6141879489668485 +a:0.8004876868910286 the:0.18330015665558144 n:0.007432685990055929 public:0.0034639158481053773 :0.005315554615228826 +it:0.27566131614804756 I:0.1176122216852377 the:0.11451493772491173 to:0.0798413124816668 :0.41237021196013623 +which:0.21673010390276076 all:0.12028749758465121 of:0.0373343617927647 it:0.0260290737052338 :0.5996189630145897 +passage:0.042673111419096944 people:0.025752594736657666 right:0.025110093989553 number:0.022434190337515463 :0.884030009517177 +I:0.17812320786742394 he:0.13608068798779696 He:0.13201097462139785 and:0.09038242143888564 :0.4634027080844956 +United:0.018995933748566535 public:0.014175348026607977 the:0.013191366523595526 State:0.010354771476266606 :0.9432825802249633 +came:0.24216144268788248 it:0.2052491856445692 is:0.17938245631795835 and:0.044360162581729354 :0.32884675276786046 +to:0.15090585048319446 the:0.1203490662919433 twelve:0.09154440568483277 but:0.0770202951370826 :0.5601803824029468 +that:0.41209656462667515 had:0.24500804322829473 when:0.09708001500512337 so:0.04443164530346245 :0.20138373183644434 +sympathy:0.22649126501718841 date:0.19117671808775946 value:0.060222553792268874 cost:0.055412831575302864 :0.4666966315274804 +petition:0.6617966196807168 bridge:0.039945806710733146 suit:0.03173657402417075 company:0.02699234658460936 :0.23952865299976994 +this:0.6270537013516775 which:0.10987577886521156 it:0.05395358600271155 who:0.027965912937970062 :0.18115102084242943 +is:0.5649052475295973 are:0.34413750286332656 and:0.027840335886219175 of:0.022991982011823266 :0.04012493170903375 +and:0.11235668121277666 the:0.06453132310695002 of:0.05454836659973296 with:0.025024907578551945 :0.7435387215019885 +belief:0.040359479169663995 the:0.019610040913590556 demands:0.014494564875142215 me:0.013504750235127221 :0.912031164806476 +the:0.5857078501252834 a:0.038768936944393304 tho:0.029640175916359427 tbe:0.01118219072084983 :0.33470084629311425 +horse:0.07277453511928844 the:0.029791768354190888 en-:0.02158074976840337 ice:0.020864835135660804 :0.8549881116224566 +of:0.21272265195845058 and:0.11135845681658425 the:0.0425899321690583 The:0.02947817606717574 :0.6038507829887311 +he:0.4366371351081166 the:0.2345036045320385 The:0.07048726513979632 his:0.06820703320592843 :0.1901649620141202 +for:0.21605005583628245 unless:0.21058452032300298 and:0.15374676395123876 Then:0.12843130200147515 :0.2911873578880007 +around:0.61313154453669 from:0.17641681698691108 into:0.10123535486592532 to:0.06549349167434484 :0.0437227919361288 +southeast:0.4156070248241952 southwest:0.04797309109088079 that:0.021548889130574757 greater:0.013336473887222238 :0.501534521067127 +their:0.8208116575975256 who:0.03923844513982192 of:0.018436635643889022 our:0.01823690547004861 :0.10327635614871485 +of:0.11185152311749935 and:0.09399298762774341 the:0.05309575902708834 to:0.029796151105644632 :0.7112635791220243 +Baltimore:0.1258057946938801 more:0.08689455093237873 street:0.01686361623311268 tho:0.006378729042631072 :0.7640573090979973 +':0.3277959366148502 ::0.06962725579811087 it.:0.017243598992436035 could:0.013608265282331274 :0.5717249433122715 +a:0.1526633648273641 but:0.05287283637052128 the:0.04810907182767615 of:0.04780192881199117 :0.6985527981624472 +William:0.3393269317159595 W.:0.02208953935154563 the:0.015445993682535774 and:0.012447281566820319 :0.6106902536831389 +city,:0.008809043900817836 country,:0.0064611045229694755 same,:0.005679753317218848 matter,:0.005197514057119574 :0.9738525842018743 +of:0.6388239515029945 and:0.08529917351047793 in:0.041527412158250274 to:0.03884721069324839 :0.1955022521350288 +a:0.42396325247362254 the:0.333835121341685 this:0.12028606765752922 our:0.08296489014591396 :0.03895066838124933 +afternoon:0.1254413165425519 or:0.08011560691214281 of:0.04762690553791131 horses:0.021007088859605713 :0.7258090821477884 +the:0.03644098392929215 great:0.014480666618736636 It:0.012081003016518604 said:0.011257852839292724 :0.9257394935961599 +the:0.21161149193954615 is:0.14764485651810294 a:0.11224370124921977 was:0.07465633522642236 :0.4538436150667087 +in:0.499102649782817 to:0.11223035775464466 of:0.09627374510142847 In:0.0713645360214347 :0.2210287113396753 +the:0.8021191826379025 tho:0.04025869547076827 be:0.016933502708444324 tbe:0.013822986035970262 :0.12686563314691446 +were:0.0858192989487847 able:0.07659677317484441 and:0.07113566110670536 he:0.0561457176440439 :0.7103025491256216 +make:0.06772792134672795 of:0.049982808544153226 be:0.04266049697915586 do:0.04032282634299499 :0.7993059467869679 +building:0.040721208106840934 country:0.03629026777175436 county,:0.03114528987126005 country,:0.021623827818144013 :0.8702194064320007 +of:0.15498133048040494 and:0.053684056069347695 the:0.03397980697266141 from:0.031345729662472135 :0.7260090768151138 +of:0.24980784533285533 and:0.06302678119476594 the:0.044810026174904156 to:0.021669369654518038 :0.6206859776429566 +a:0.4276226036615364 the:0.3147261015140817 highly:0.06183614489663368 their:0.058105920375697784 :0.13770922955205037 +the:0.8678899607390661 tho:0.08003344832740125 tbe:0.005468580590697996 similar:0.0028186040183187646 :0.04378940632451603 +the:0.37514373980331994 a:0.2349113398680519 tho:0.1203085006555149 an:0.051853231454342834 :0.21778318821877013 +der:0.13469610421573214 and:0.05631735239917899 confidence:0.04603339795737775 ing:0.033573534972685996 :0.7293796104550252 +tho:0.7077505646489947 the:0.12604285142616406 his:0.11639906197134323 your:0.02689919965249757 her:0.02290832230100071 +and:0.11363159398852324 showing:0.029568020733374636 said:0.01275879983415585 however,:0.011575830739311593 :0.8324657547046346 +state:0.050821123406566936 on:0.04041889543594831 State:0.029524791689169615 Ohio:0.015173649201391201 :0.8640615402669242 +to:0.6383695001316545 shall:0.2932139966559632 will:0.0378972443607552 may:0.00808759831776604 :0.0224316605338611 +were:0.37626300937902846 guests:0.06606134486026333 men:0.05734009320616815 members:0.05398073927693059 :0.44635481327760956 +at:0.4417899158272916 reached:0.38480948188935704 left:0.03949970279021818 yet:0.03089605743352458 :0.10300484205960858 +on:0.6044448147959183 from:0.1219595294011056 at:0.11665233960647434 all:0.08361197579185865 and:0.07333134040464326 +no:0.016035853846395255 consider:0.009799260827814823 l:0.008857011678908434 ta:0.00040973150046280725 :0.9648981421464188 +one:0.3261627423311604 ordered:0.02748808760655427 the:0.018197814954643593 some:0.01803623699871539 :0.6101151181089264 +the:0.43629792717060173 that:0.050715189806490785 in:0.04574124689729179 one:0.04485051611755767 :0.42239512000805796 +rest:0.05636726686727535 doors:0.035734050470730284 friends:0.035577182708272266 control:0.02857690807731282 :0.8437445918764094 +of:0.24223118021894005 man,:0.19952708685042692 on:0.09427417722773525 was:0.06751351264056633 :0.3964540430623314 +to:0.7768975015584529 will:0.11517674600889469 ly:0.025788507001279406 would:0.02115009910883345 :0.06098714632253948 +answer:0.16957367353872216 be:0.09176087219467718 cover:0.08198232034756206 at:0.033769810515403904 :0.6229133234036347 +should:0.3000005018422527 will:0.2302397211769934 could:0.1950347570513767 would:0.04803603733235597 :0.22668898259702142 +has:0.5262518082144236 have:0.2168922517010499 had:0.13787547183196602 having:0.023741210599880318 :0.09523925765268013 +fast:0.7743903436315924 high:0.08475250661908731 far:0.07163663115645295 well:0.03658916294857665 :0.03263135564429051 +this:0.1315057373366812 silver:0.1166346733788225 that:0.1152161797443008 water:0.03420105986521488 :0.6024423496749809 +bridge:0.021684459374918065 decision:0.010973594834112064 steady:0.00986183262379253 Ohio:0.0062189614878033 :0.9512611516793739 +t:0.09459024127400666 i:0.0898371567656757 there:0.07620616097284127 the:0.05427900295204668 :0.6850874380354297 +not:0.28501104055682325 be:0.03934232300776655 never:0.032516188041629354 was:0.027249285331565367 :0.6158811630622154 +the:0.2538287891958255 a:0.04895092057378313 to:0.02978956892971439 in:0.02380822272783355 :0.6436224985728433 +about:0.629160123671932 around:0.21468100057129474 for:0.12188605625157024 of:0.02710028023616083 :0.007172539269042144 +if:0.4054819044166736 and:0.3916841911188805 by:0.09677174732778605 now:0.015557977587471402 :0.09050417954918841 +and:0.28641940965428664 to:0.08931959717530825 the:0.07629714043623059 most:0.0674764935069736 :0.48048735922720104 +of:0.10148940987272483 the:0.06817482522422635 and:0.05104657807287582 or:0.050684530225478044 :0.7286046566046949 +of:0.10851412882734704 in:0.10040387558757725 gone:0.09380019174634552 been:0.05971958702493953 :0.6375622168137907 +today:0.5785767058321101 difference:0.3641551717245761 to:0.003640346453110769 as:0.0034518809131838953 :0.050175895077019174 +whole:0.2656230293216263 extreme:0.1800351483112533 the:0.029615114612497804 Indian:0.026480764254163004 :0.49824594350045964 +It:0.5161629590430258 There:0.30937170727164864 it:0.04000093314966017 This:0.022717807342413306 :0.11174659319325204 +brought:0.13035682571797932 not:0.10163595884412331 been:0.09169860503810744 made:0.0688775688552752 :0.6074310415445148 +hand:0.07296460635576267 and:0.05272414554312068 that:0.027589179499893077 of:0.011764015483771187 :0.8349580531174523 +hours:0.11984507426717031 to:0.0648591759724789 five:0.02973032256644936 I:0.019127671478409887 :0.7664377557154917 +office:0.41294384898121567 line:0.09655518433246721 way:0.05552245344233542 the:0.032624377354593385 :0.4023541358893883 +of:0.7441550517992483 to:0.07855035475024551 entitled:0.07063526781188083 ot:0.03405173514822587 :0.07260759049039939 +plaintiff:0.2252910707175108 purpose:0.04606769407765466 said:0.022983202683228874 majority:0.01853025509672522 :0.6871277774248803 +was:0.16284539026754813 spoke:0.03360548563125689 lived:0.032039267845200115 is:0.030353998385838583 :0.7411558578701559 +very:0.12880490920643403 ac-:0.04230734862464357 re-:0.035516885448295905 dis-:0.023284092325815905 :0.7700867643948107 +the:0.46319063211298966 all:0.30666000753923256 any:0.10190672169186538 in:0.08060718666321852 :0.0476354519926939 +do:0.21859872053586174 every:0.19888710864720802 the:0.17332730104390792 is:0.14176556834732137 :0.2674213014257008 +Great:0.3425636648264153 A:0.1391384156101944 I:0.0464653493372811 1:0.03816378405018305 :0.4336687861759262 +no:0.4159826679915371 much:0.09370220804101627 nothing:0.08672012337495795 what:0.07546602495800327 :0.3281289756344854 +ample:0.9916226142265135 good:0.004654998735469054 the:0.0012884165210320067 his:0.0004554660228302273 :0.0019785044941550934 +of:0.20805408843216353 week:0.14364960221516218 place,:0.12165370022555042 place:0.07873636882002084 :0.4479062403071029 +office:0.07026856732629799 hands:0.057553424386678625 way:0.025692514744886895 reach:0.02465116777671519 :0.8218343257654211 +to:0.008787725601958382 and:0.007617046266638192 the:0.006909329645148705 of:0.004859558765522821 :0.9718263397207317 +which:0.9985065296646651 the:0.0003585086729500158 whom:0.00020711399465785004 .:7.144947293972857e-05 :0.0008563981947872 +day.:0.26002674555787725 t:0.18956518080675935 I:0.07741024203913674 which:0.07106173990161883 :0.4019360916946079 +same:0.06060444522288531 second:0.03933650707723185 first:0.0029706624165509285 latter:0.002913412690233108 :0.8941749725930987 +is:0.5022737542469449 was:0.15015253445671614 Is:0.05856394805474055 and:0.023289667909424137 :0.26572009533217444 +of:0.30231326742713915 and:0.1104220234805091 the:0.052522515390012195 in:0.025845221870383628 :0.5088969718319558 +ed:0.07642075890294855 to:0.06688896119311567 with:0.056351180373566935 about:0.05332928809356768 :0.7470098114368011 +admitted:0.1866361126966662 and:0.09887719265092226 is:0.06347000418904693 ing:0.04341235413401975 :0.6076043363293447 +individual:0.014993172848426018 and:0.012338695633419989 the:0.010878487208743461 personal:0.010430131875328154 :0.9513595124340825 +college:0.0002244453308197369 men:0.00017678593604508915 papers:0.00015164016434273463 service:0.00012326028034472062 :0.9993238682884477 +country:0.10160609058830655 people:0.04433999225932894 time:0.015663738048366887 one:0.012457716170677625 :0.8259324629333201 +to:0.23033498071386546 in:0.1742242326908369 of:0.13010969136612138 from:0.09797959665702877 :0.3673514985721475 +i:0.05429404380803419 work:0.03514237672558935 life:0.02714341053563515 ball:0.019409877174393634 :0.8640102917563477 +of:0.3604916324405185 in:0.12390240127355301 and:0.1147045406134064 to:0.10990150516408041 :0.2909999205084417 +pay:0.25703187921771226 secure:0.1271272642090598 exceed:0.12170841734599026 produce:0.07329781500337483 :0.42083462422386286 +.:0.4869171155593727 that:0.06430731821275855 and:0.02884618006547156 which:0.027455495956911453 :0.3924738902054858 +and:0.0706233025116408 was:0.016620338378481356 that:0.015494499058698624 is:0.011077237770961493 :0.8861846222802177 +very:0.46515843848193233 of:0.17195353373144093 as:0.1182498732317513 so:0.11116649209193358 :0.13347166246294193 +prove:0.08705747056882529 test:0.04325796501544291 find:0.028646359039451293 study:0.027125281281863083 :0.8139129240944175 +a:0.9870355144426644 the:0.008226062720557415 his:0.004527537209209449 their:9.501590979253403e-05 :0.00011586971777622394 +duty:0.33090849536789974 murder:0.2281200466112564 crime:0.05000413703505062 cost:0.03189466811645927 :0.3590726528693338 +of:0.6710757194445772 in:0.05343149723777444 it:0.05049922175022201 over:0.031543961950983655 :0.19344959961644245 +treaty:0.10607539171355056 tions:0.08897294945606873 good:0.054579313357923376 which:0.0487975045813117 :0.7015748408911457 +material:0.04438803019379096 interest:0.025905316903848563 Christ:0.017960233838256186 time,:0.014359566150546574 :0.8973868529135577 +not:0.5799256016959514 as:0.36548051398733267 never:0.028167500936312033 ever:0.008671060010181758 :0.01775532337022228 +office:0.04795072715645658 hands:0.03696921354164686 history:0.03238706173174562 middle:0.021212500788827894 :0.8614804967813231 +two:0.529610740689465 eight:0.33483195360161183 four:0.06487547878065214 a:0.05164912740638194 one:0.01903269952188915 +the:0.4953194858427918 a:0.13849646891099843 this:0.03413480493845652 tho:0.01801160426046829 :0.3140376360472848 +church:0.5839853219832709 other:0.06158423769488628 club:0.021000119763334133 new:0.015113863022135889 :0.31831645753637283 +you:0.2735744107467331 he:0.2410321617257947 they:0.2367294556142076 it:0.0526760545021024 :0.19598791741116206 +report:0.06688849801128727 not:0.03980933119064432 are:0.035726547309194626 return:0.006717885595179763 :0.8508577378936939 +make:0.07675138698773966 do:0.07521144330325172 render:0.06210893647266925 have:0.05791770310564524 :0.7280105301306941 +largest:0.0425615994114996 greatest:0.028410762687961916 world,:0.023808620684615277 sale,:0.01796277899825462 :0.8872562382176686 +of:0.9917662687329662 for:0.0014560985816304088 and:0.0011865105745681832 between:0.0011623868234444245 :0.004428735287390657 +not:0.33362256319217254 it:0.057725529215202624 do:0.048010059179804054 he:0.042585534231273627 :0.5180563141815472 +to:0.857277735944451 and:0.0043424901512447685 In:0.003737407702457121 very:0.0026705251001204874 :0.13197184110172652 +not:0.9969838784502109 never:0.0018740272887404496 always:0.0004002804992890551 either:0.0002667858817738782 :0.0004750278799856593 +It:0.2716076413721246 it:0.16892784673859496 and:0.07699314041391755 which:0.0611008191471032 :0.42137055232825965 +home.:0.9999758779042524 day.:1.9031191798334093e-06 at:3.028103045738145e-07 time.:2.3775426495019442e-07 :2.1678411998191183e-05 +Mexican:0.02871530348621536 age:0.01327906748037343 station:0.011035806777732613 eastern:0.008406485587640976 :0.9385633366680377 +come:0.0121479365224494 ought:0.008369565934485648 seem:0.007907496389306283 began:0.0037503405045661783 :0.9678246606491925 +we:0.3818444803410642 I:0.2504253993311878 he:0.10051451718952698 that:0.09475400978785314 :0.1724615933503679 +t:0.44373512748388483 a:0.3040549077962688 and:0.02559634730551323 Congress:0.01987651740472895 :0.2067371000096043 +that:0.6105340045929069 what:0.20929532452041877 whether:0.1328375452915757 when:0.028408413808561267 how:0.018924711786537436 +other:0.5076017753798272 all:0.1115209392509137 most:0.041756164482360816 50:0.023272232164725775 :0.3158488887221724 +sometimes:0.1985252440712192 are:0.15958790632368078 were:0.12592622073251825 have:0.0782711688863289 :0.4376894599862528 +1:0.8376875673560528 time.:0.0015676660381160642 day.:0.0015359143318671826 to:0.0013520725322555506 :0.15785677974170856 +in:0.3073365815572451 to:0.20418649759188884 of:0.1993795652127405 on:0.07606284294250705 :0.21303451269561852 +act:0.5778094482181899 order:0.23881049970893162 amendment:0.00882473741218448 Act:0.001984255112671583 :0.17257105954802252 +the:0.9663706246985211 a:0.02758285322242568 on:0.002606876302759279 this:0.0017165848566600733 :0.0017230609196337088 +in:0.2281756996209624 was:0.22223049778207163 of:0.18719535978301793 What:0.11152502400408384 :0.2508734188098641 +regard:0.9431650181996964 use:0.02724453333916204 used:0.019537983679862175 fed:0.0030111889946144825 :0.0070412757866647885 +present,:0.06351782476947403 cut:0.03589576606124123 that:0.018522140657519316 a:0.01772146977855026 :0.8643427987332151 +said:0.04955312185600261 L.:0.024661819059337946 Sheriff:0.013221938518851945 on:0.0068018407267300875 :0.9057612798390773 +run:0.04507442381466326 woman:0.04038478625964008 one:0.03872412662291171 and:0.02819004976989969 :0.847626613532885 +here:0.09612784669292505 his:0.06749718362933257 hat:0.04913185029127043 therefore:0.034563233284021735 :0.7526798861024503 +the:0.5650035089424926 his:0.054654214595491475 those:0.048001135906783426 said:0.03339307324298098 :0.29894806731225154 +all:0.9997512223270812 the:7.629659771879918e-05 of:1.3953049065428529e-05 to:7.004485848686704e-06 :0.00015152354028588708 +the:0.8041096568937296 a:0.13655447019333164 their:0.007219377619304729 our:0.002645091810639929 :0.04947140348299406 +the:0.9639596844983583 tbe:0.01357236959251641 tho:0.012094114721547911 he:0.004002073133860599 :0.006371758053716715 +and:0.17109576930029277 of:0.07669991489535943 the:0.07326519234944948 so:0.06707704336539758 :0.6118620800895007 +chance:0.30277259686333285 not:0.26160217679362335 begin:0.17829371406064157 be:0.15290616594996187 :0.10442534633244042 +the:0.9948214842902624 in:0.0014891091194423585 tho:0.001140974653111241 myself:0.0008317503724891091 :0.001716681564694882 +the:0.6299548275962802 In:0.08985974682355896 to:0.04261292851076161 again:0.031025952355935867 :0.20654654471346343 +opportunity:0.1406340834040044 seek:0.04490982220966142 seemed:0.0446467483562941 opposition:0.03361850114458859 :0.7361908448854515 +Minnesota,:0.5766283995057275 Virginia,:0.009484849107444503 Ohio,:0.004224241731837516 Washington,:0.0005635172681748278 :0.4090989923868156 +and:0.16163309751371466 the:0.13268012798892218 of:0.08079113976481178 to:0.0522246325568799 :0.5726710021756715 +course,:0.34273715634561625 which:0.14793780202113968 course:0.1299263279534821 of:0.06809982714538965 :0.3112988865343724 +E:0.7389269026428179 J:0.06406738272900792 .:0.04951639635787701 D:0.0071871336849844035 :0.14030218458531293 +then:0.37968836550554264 therefore:0.21601315969056553 soon:0.05356880188976402 had:0.04851347165077699 :0.3022162012633508 +the:0.5380052216833565 a:0.10790164015589837 said:0.05086929675118625 certain:0.04990461167769996 :0.25331922973185894 +discharge:0.16349988070399044 little:0.028789774012650773 execution:0.019954672246292878 tion:0.018529945188309922 :0.769225727848756 +It:0.24121423866768624 and:0.17535108427819718 He:0.14527445627238006 it:0.13920734769983076 :0.2989528730819059 +the:0.6246329554719512 their:0.08111605117468709 a:0.06217334896393298 this:0.038659088743719046 :0.1934185556457097 +have:0.3555184144670315 will:0.19323718779978677 are:0.08253629577192194 must:0.034852039281750596 :0.33385606267950907 +Mrs.:0.11780795429520372 and:0.058646313255833686 of:0.04722870515725134 J.:0.04054517562402019 :0.7357718516676911 +est:0.19352293254174172 highest:0.11673821032589533 the:0.008242797124336766 largest:0.007657250655842851 :0.6738388093521832 +church:0.10479015519707707 health:0.019999075463316935 body:0.011384302574821826 wife:0.010894640173644192 :0.8529318265911401 +to:0.13632662948258886 by:0.11126867284409671 and:0.10618044154485239 the:0.07408337080441244 :0.5721408853240496 +fact,:0.2003424758182298 reading:0.10388474840499876 evidence:0.031355529229155646 which:0.022848448670014978 :0.6415687978776009 +will:0.20438613175332285 were:0.03965198570105476 haa:0.037607988797294115 had:0.03197881146297298 :0.6863750822853553 +to:0.9316094483517336 and:0.055977456983925165 will:0.005475301695304846 may:0.0034416835654233003 :0.0034961094036128834 +the:0.9846032258037402 .:0.00637667593388674 tho:0.003103914881073548 said:0.0008774301159712595 :0.005038753265328265 +who:0.01480619854119659 she:0.006288755298742102 of:0.004730513874350447 I:0.0037172131544410012 :0.9704573191312699 +hold:0.1483977286811542 of:0.11117743669001105 in:0.09156848183789751 that:0.07798675863251597 :0.5708695941584213 +of:0.7761671257526856 to:0.09741982113599595 and:0.032350790978989574 prices:0.005807626191375961 :0.08825463594095286 +he:0.2803152114538076 He:0.21872163279519236 who:0.18522140274115065 and:0.14289960138548188 :0.17284215162436734 +such:0.11275659145883574 and:0.08331819351611748 just:0.0733344120605489 tion:0.032551342100255974 :0.698039460864242 +the:0.0939785900099684 legislation:0.023987161571813506 of:0.011753331052289026 way:0.0058001209515612705 :0.8644807964143678 +Co.:0.3436066154624666 the:0.020565626522215802 Co.,:0.008666084220174803 Ohio:0.004652422226173814 :0.6225092515689691 +Will:0.11726748685731131 Davis:0.004474718973723993 King:0.004325260240819493 Smith:0.002608179101719567 :0.8713243548264257 +been:0.5211511065665883 become:0.16791119002577862 proved:0.11575681878231488 not:0.026566302078987462 :0.16861458254633072 +with:0.37441438845391484 to:0.32177448787129087 of:0.2616459345898507 in:0.013291161174241731 :0.028874027910701903 +the:0.26064225165833554 so:0.18548104879240898 his:0.07979651075529598 or:0.07183488634308507 :0.4022453024508745 +so:0.025920003477229933 and:0.025540174277897912 you:0.01671993362500251 it.:0.008172635874515114 :0.9236472527453545 +of:0.6132521379761875 in:0.05998773616407659 and:0.058189697274706326 to:0.035167535353285526 :0.23340289323174396 +of:0.355268277907111 when:0.1474475545707805 since:0.12434415644854674 If:0.1163180602204789 :0.25662195085308287 +war:0.007606749611536029 that:0.006931219960590289 him:0.006706340553397845 it:0.00663864850979509 :0.9721170413646807 +the:0.990023082268882 his:0.0034169663947858806 tho:0.00237983543408063 its:0.0010493322569918196 :0.0031307836452597517 +a:0.20556442209374337 the:0.17564418690283476 from:0.12975578425657122 through:0.10850390946049338 :0.3805316972863574 +it:0.32050974872474786 he:0.1572434574318493 peace:0.1153446453934988 return:0.04930314349669669 :0.35759900495320734 +office,:0.02566529353246213 and:0.0228771484843513 side:0.013304445182043422 ;:0.01192713798261577 :0.9262259748185272 +and:0.3598559164016613 nd:0.017866756276237253 enough:0.016361940512393845 in:0.009588741058918514 :0.5963266457507891 +of:0.30589512439364785 ;:0.13015008629298566 York,:0.05172584825821866 o:0.04846101087595733 :0.46376793017919044 +work,:0.08755323285168809 himself,:0.0444482888139639 own:0.007360412970587786 him,:0.006499184415192473 :0.8541388809485677 +Smith:0.0010331584479687573 to:0.0006080277484962004 and:0.0002525375087459651 It.:0.00015568643624692914 :0.9979505898585422 +tion:0.052332870056092606 power:0.0312062087445316 men:0.028220830431034207 life:0.026960293788120742 :0.861279796980221 +afford:0.36616263327454546 fail:0.17131323627480663 hope:0.08669742602140745 refuse:0.04692652528727659 :0.3289001791419638 +famous:0.2918166276753123 to:0.13655196223161473 the:0.02127084888297778 own:0.01764588375042297 :0.5327146774596723 +the:0.27976644217550967 a:0.20836899459426386 been:0.1935056344575143 no:0.04181488057505542 :0.27654404819765693 +tion,:0.03826122701434628 ,:0.01766956482590624 ;:0.017411717187466858 yet:0.01569686226089133 :0.9109606287113893 +had:0.9854535192902366 has:0.006462375421002393 bad:0.0026613502274815196 was:0.0011341619201708697 :0.004288593141108626 +cent:0.7737534966876571 cent,:0.15400063847717904 cent.:0.004377822655569051 ton:0.00014810766505317803 :0.06771993451454161 +be:0.17886192300964907 reach:0.06620585947208439 escape:0.052045402008853534 stand:0.03417275826701426 :0.6687140572423987 +your:0.3929574526142135 But:0.06862140853349939 a:0.045252164228189666 then:0.042912936583153115 :0.45025603804094433 +note:0.29854689566552955 matter:0.2917432979602686 subject:0.16754924466462282 action:0.08133744101800859 :0.16082312069157048 +carried:0.22486206336094097 merely:0.09626881739001202 just:0.09464221993460539 built:0.07431203836828648 :0.5099148609461551 +me:0.40733892508914665 him:0.25217445729853777 her:0.16120493052078466 us:0.03522053570383463 :0.14406115138769632 +hearts:0.7925720972633978 eyes:0.1732116953538931 county,:0.0032314704907086328 spring:0.0010921869387997584 :0.02989254995320076 +that:0.7302262412623484 Saturday:0.17519466158830604 the:0.05420322751346401 last:0.02785756063581181 :0.012518309000069821 +was:0.34741068037318495 in:0.2903293139974686 is:0.22174228851477587 being:0.11180382649950812 :0.028713890615062437 +i:0.07550894934913115 per:0.028687312361636255 p:0.018360843782165258 dent:0.015280877036994715 :0.8621620174700726 +ever:0.19105651031015924 not:0.0371805937516946 done:0.03621018747677444 long:0.029252439310090812 :0.7063002691512809 +a:0.35273568228827634 the:0.3025771982089684 by:0.054786087057231224 his:0.03578081449495664 :0.25412021795056744 +It:0.3258882125930638 he:0.1181088890576889 we:0.03282106235159581 it:0.02844613198980158 :0.49473570400784966 +and:0.09090537883242716 be:0.08789042111445367 was:0.06617686348078232 is:0.045956281066578016 :0.7090710555057587 +before:0.2887544690901092 on:0.1590909528657395 took:0.14392787178212885 by:0.12831308180832784 :0.27991362445369455 +chance:0.154155696741071 man:0.046395338805911776 right:0.03253075937973794 bill:0.03076084615742834 :0.7361573589158511 +the:0.6617499114085388 tho:0.33362365579027226 great:0.00241154637743514 tbe:0.0013338032895974094 least:0.0008810831341564257 +black:0.7416184597359418 sharp:0.0923895878254887 choice:0.04322086640402065 clear:0.03957882082196345 :0.08319226521258553 +get:0.1663863800740965 the:0.1569388788209111 our:0.04474127788803764 his:0.04082426707673771 :0.591109196140217 +who:0.6241581272369405 things:0.044382479371320775 not:0.035329248301926075 per-:0.013679683667050089 :0.2824504614227626 +the:0.33588791986778904 he:0.2819761261734064 pro-:0.04925821625388728 she:0.04582563951419165 :0.2870520981907256 +and:0.23021325318254682 of:0.1839572098454377 in:0.15131405476700371 at:0.0714357794798017 :0.3630797027252101 +color:0.06566901808955496 energy:0.04591134941724824 return:0.04359143898672462 protection:0.04291948937148606 :0.801908704134986 +a:0.978649931132679 some:0.014479076988328211 the:0.002549643126104248 n:0.00245396842357926 t:0.0018673803293092922 +be:0.6885791034837663 bo:0.04261689679366728 the:0.03889721282595529 V:0.025210208409431105 :0.20469657848718012 +on:0.37698182039099126 in:0.34725702915451895 under:0.1009672402445901 of:0.09172687919046325 :0.08306703101943645 +other:0.06030066869332116 the:0.025383959829875753 great:0.021803010829303793 real:0.02026422974214759 :0.8722481309053516 +on:0.6849316874706333 within:0.15454148201387008 at:0.09554109028996491 in:0.022573543968981667 :0.04241219625654996 +plant:0.02631359381993723 turn:0.012865899771402442 a:0.010413495018257805 feel:0.009755646387232291 :0.9406513650031703 +it:0.04268800428459147 also:0.018570479165519436 approved:0.017032236410522084 signed:0.015325958934789692 :0.9063833212045773 +them:0.5974659263037955 him:0.07949218807183527 be:0.046940801221401464 me:0.021729921415484948 :0.25437116298748286 +He:0.3552303823121297 and:0.2675226075207786 he:0.09825162554036349 had:0.008019928441607349 :0.27097545618512087 +wounded:0.316134390794626 poor:0.029514856816217072 the:0.02740476039885218 wild:0.012055627379047524 :0.6148903646112571 +but:0.47387682542999915 and:0.2007962391825558 on:0.1005342928862443 New:0.0379491372258967 :0.18684350527530416 +the:0.18927054358125636 and:0.17017644722530878 to:0.1684890622886879 in:0.12839632416613259 :0.34366762273861445 +rate:0.8640927313336497 growth:0.014805022529626483 advance:0.001878094150874509 night,:0.001514359697151579 :0.1177097922886976 +the:0.4270016138752871 a:0.1982616126284371 an:0.05999312464449176 his:0.0508610195090061 :0.26388262934277795 +of:0.616552716399336 to:0.12130264465739944 he:0.08668910387638613 it:0.0488166005412691 :0.1266389345256094 +and:0.08729914241057715 them:0.0235565674859317 it:0.01995630440501108 that:0.01934417822451493 :0.849843807473965 +in:0.745994860263215 to:0.07199014674050415 with:0.053334124835774196 to.:0.04580503070645003 :0.08287583745405663 +difficult:0.2146007049163655 liable:0.1120044071848162 voting:0.0844492132859242 matter:0.08016872231982404 :0.5087769522930702 +and:0.22230049471626798 of:0.136158294236593 the:0.07145233140002924 The:0.06533227996539774 :0.5047565996817119 +the:0.6396297988121216 a:0.0912052584500131 his:0.06967523113555993 their:0.03868456407974328 :0.1608051475225622 +and:0.20340301359980043 man:0.15409730163863677 her:0.12594842657161312 He:0.12252591047749888 :0.3940253477124507 +four:0.36146367784162775 the:0.3149239325587537 their:0.0717913184228826 both:0.0336191364010518 :0.21820193477568411 +have:0.21306196637057023 are:0.18237036734212983 the:0.07910618238896758 were:0.06540085344131395 :0.4600606304570184 +at:0.36948015249456667 in:0.3384082780755017 to:0.13804855434818827 from:0.03411509212466475 :0.11994792295707853 +own:0.14552730514252255 national:0.04339210346424038 hearts:0.02492887554049187 present:0.020067432551169703 :0.7660842833015754 +air:0.12430683572727899 It:0.11200928555778664 which:0.0996099387717209 it:0.09578068652578028 :0.5682932534174332 +boat:0.16670589407211162 than:0.0735770494148404 where:0.057025757919867845 if:0.056156441056415325 :0.6465348575367648 +out:0.47642019705141037 it:0.010845549638057795 It:0.007293846278735304 up:0.006731419482580006 :0.4987089875492166 +of:0.0324800621303235 with:0.031508173385101146 that:0.022397094464374916 and:0.017653399724776305 :0.8959612702954243 +they:0.12955192689700215 county:0.07427680086991847 work:0.06828052728887139 that:0.06720610781948458 :0.6606846371247235 +make:0.6396226305818329 find:0.13438266956415346 think:0.07836282114197689 regard:0.048536537968000025 :0.0990953407440368 +the:0.32851219486809796 be:0.09309670253477981 pay:0.046459015625673554 take:0.024134811348013267 :0.5077972756234356 +a:0.2694133604017653 doing:0.26812063843892014 got:0.05017664428331322 as:0.020669161185483346 :0.39162019569051787 +good:0.4533870225039845 the:0.2743394972251443 he:0.029489258911735074 united:0.019511178848341193 :0.22327304251079508 +in:0.30216875483810796 of:0.16692973845871142 to:0.11591009403551192 before:0.11282833430779758 :0.30216307835987105 +of:0.13365971425616305 and:0.13098978341294293 to:0.10755350151328981 or:0.03099646958255827 :0.5968005312350458 +the:0.0284976832973814 against:0.011939236127752904 when:0.008132904229791698 so:0.0067909863309818675 :0.9446391900140921 +in:0.02628697132235647 and:0.025665671231491695 or:0.008730195010805731 her:0.00818097719719444 :0.9311361852381516 +have:0.6687767349244004 de-:0.12102033812689711 will:0.0394570539201602 hereby:0.032505107182809474 :0.1382407658457328 +was:0.8838517352920559 being:0.0366232062555076 had:0.030680388915397525 should:0.026558234170034178 has:0.022286435367004892 +of:0.2081750627237355 the:0.011987890643403274 Washington:0.011780879088886137 here:0.009969827197804827 :0.7580863403461703 +a:0.4293238908525755 A:0.1396221143015686 with:0.09796757239683726 the:0.06910800126745284 :0.2639784211815658 +no:0.4045212667300933 to:0.043203738149425436 the:0.02067704612373056 In:0.013415935066777348 :0.5181820139299737 +and:0.36898737433916146 which:0.2875510652765303 ho:0.13211868563075171 |:0.09503863445639212 :0.11630424029716441 +the:0.5448032733950967 tho:0.3882815701397192 a:0.020217915457702993 tbe:0.00657244235862912 :0.04012479864885212 +see:0.7298074687082762 have:0.13802401053774777 are:0.020193328998077836 saw:0.009936237567491376 :0.10203895418840694 +the:0.9242560490880973 tho:0.02254963710474454 a:0.020923560165721226 tha:0.017633920505486716 :0.014636833135950046 +the:0.7737047788237034 no:0.06925907347713134 an-:0.056991056196161224 each:0.051944215306814305 any:0.04810087619618992 +j:0.23558683642048664 in:0.11284092575948439 though:0.10288369921819462 he:0.09749890100325519 :0.4511896375985793 +as:0.9678497315773931 and:0.005799241829184691 at:0.00402065433580636 us:0.0033329600460093446 :0.018997412211606644 +next:0.15552640426669226 has:0.1499104370317523 would:0.11568393241097803 shall:0.09045157862403938 :0.4884276476665381 +per:0.6591015101566579 ad:0.11091943597866255 of:0.06790717754058341 and:0.04867380048619335 :0.11339807583790265 +a:0.3447514648273648 building:0.08734783595368319 contained:0.0401280222734443 plant:0.03863345668603721 :0.48913922025947043 +the:0.3453665114801662 a:0.09147076558901208 Mr.:0.035898799584508416 his:0.03402243543147497 :0.4932414879148383 +been:0.11848603213905158 failed:0.10307119022386356 come:0.0898834933515861 gone:0.07454951919231541 :0.6140097650931834 +and:0.014489602807528316 of:0.013676730648260676 way.:0.01040896307351499 one.:0.005991937716925078 :0.9554327657537709 +The:0.7523131893324528 bis:0.17730738045547104 the:0.03409120612548004 then:0.009468359273521201 :0.026819864813074825 +The:0.9058818025217605 as:0.024244374721766267 the:0.013905935025691658 whose:0.005083403191231713 :0.050884484539549704 +east:0.5963709277294394 below:0.08290419573728308 18:0.051189202599144605 of:0.03356449159426303 :0.23597118233987 +of:0.4386705631991447 and:0.1330285805697804 with:0.09075365309833977 that:0.0873561418783805 :0.25019106125435464 +the:0.9125400230728425 tbe:0.02978745593996915 tho:0.022942531445570912 tlie:0.02049907886758046 a:0.014230910674036836 +for:0.5052742756238751 of:0.15090254927524976 a:0.13760269560251 all:0.10839365768978325 :0.09782682180858195 +in:0.9477052996829047 In:0.024773014834801703 iu:0.01289178416747614 and:0.0035005363711440927 :0.01112936494367342 +in:0.2718000000852782 to:0.12658480120104307 the:0.10018935686701677 of:0.08498214118527062 :0.41644370066139136 +the:0.2078967757068869 a:0.10421883576089874 .:0.04703640709956587 happy:0.02639350635880526 :0.6144544750738432 +simply:0.2030146237255864 so:0.1003459014044253 the:0.09323666398366788 his:0.08713067463373314 :0.5162721362525873 +out:0.15953254412200993 it:0.13296041711946346 up:0.11110670942403421 low:0.08190395932767268 :0.5144963700068198 +con:0.1529551010770577 only:0.13972140535668737 republican:0.039778799707522176 same:0.037789325125629304 :0.6297553687331033 +and:0.10424534018371566 engaged:0.03122899379612504 ed:0.027493553373453074 up:0.026754062583047394 :0.8102780500636589 +a:0.448426712127046 that:0.1923736553421791 any:0.132899540335414 this:0.09579871580659642 :0.13050137638876455 +I:0.4356671253146192 and:0.21194950263544043 we:0.1259061476235068 They:0.031293174428990794 :0.19518404999744263 +of:0.11494372569912484 and:0.06939552970536426 New:0.054833535920120274 M:0.0377455896677742 :0.7230816190076164 +all:0.26897535298514486 street:0.10747525944285453 certain:0.1031871874805768 the:0.10124381149196254 :0.41911838859946143 +loss:0.09244499238622075 quality:0.061691959418756784 especially:0.029554363555855983 those:0.018684017478278848 :0.7976246671608876 +next:0.0904007094166219 first:0.04411423190237127 week:0.043034039374855636 year:0.04163547323151066 :0.7808155460746404 +to:0.9693980036763727 lu:0.0008811621105672735 will:0.00037106381855573153 not:0.0003450714823010484 :0.029004698912203045 +Grant:0.000672869400405699 Washington:0.00014074477268384504 and:0.00011456665871631946 Washington,:9.599760504190501e-05 :0.9989758215631522 +the:0.34013622117481035 a:0.17999248932445142 and:0.04064054091695722 Capt.:0.026380953956372726 :0.4128497946274082 +ai:0.052829416945014716 should:0.035904716006800404 i:0.03042666989971678 to:0.028863273281686655 :0.8519759238667816 +by:0.7365367825222501 as:0.1945919353876355 in:0.02148911288869817 that:0.01621874992607226 :0.03116341927534417 +running:0.9269829732816531 entered:0.007535198479341002 being:0.00639411567920442 run:0.006114427449515274 :0.05297328511028612 +the:0.7657941453753877 a:0.09680565026849464 his:0.05220968763741616 that:0.034367825916728004 :0.05082269080197346 +acting:0.046952084733022835 and:0.04319417642973565 dollars:0.01496263824478166 the:0.013518143621632606 :0.8813729569708272 +about:0.23090782000554405 willing:0.13879892056700224 obliged:0.12100660052582574 ready:0.09416449336112774 :0.4151221655405003 +the:0.24657399123270585 to:0.15334470604784006 from:0.08420741209052694 and:0.07854012237578761 :0.4373337682531396 +and:0.2785847264681688 was:0.20826967368644794 of:0.17736823436046495 after:0.1378890769807738 :0.1978882885041445 +broke:0.5209038355582225 the:0.1466928787435356 no:0.012671993131893215 any:0.012359471344502706 :0.30737182122184603 +and:0.26711592647000093 that:0.1224611382276013 but:0.08040269123310746 as:0.0391186635229251 :0.49090158054636523 +in:0.7750379011249552 In:0.15284207096754004 of:0.03456838077327906 is:0.021270328348110094 on:0.01628131878611553 +A:0.20135268452128421 and:0.13741320156644693 the:0.12438426438308318 a:0.11504548911753743 :0.42180436041164815 +OF:0.07087619992593949 and:0.057701327605853635 of:0.05032230027512677 the:0.04836572244304651 :0.7727344497500335 +the:0.6060477312957631 a:0.06021718566858377 no:0.05874379761706407 his:0.047991069688504535 :0.22700021573008466 +at:0.24251837282212854 the:0.125554476293286 to:0.10709171060562192 from:0.0664728760882935 :0.45836256419067 +which:0.3007369054341714 the:0.07209604456283417 making:0.05732290823523363 fact,:0.024271645452919648 :0.5455724963148412 +was:0.588410277127239 had:0.24196671488570776 has:0.10891054294848235 have:0.01379717277453473 :0.046915292264036054 +of:0.012287203423654164 and:0.008374123224979194 quiet:0.004651204026319298 to:0.00453061012104682 :0.9701568592040005 +a:0.34109844192841426 the:0.31127948533832867 some:0.19680842055899728 tbe:0.04842055123279982 :0.10239310094145988 +the:0.07502860677763395 The:0.031841269404467035 public:0.02119612057207384 of:0.01908740481716721 :0.8528465984286581 +of:0.29757599482037 and:0.09822471844190434 to:0.07251399184580673 for:0.06159136040290117 :0.4700939344890177 +At:0.4380382856383995 by:0.2904503437970042 at:0.12436591980818856 aid:0.04034171176490987 :0.1068037389914978 +progress:0.30113013993570603 age:0.09680903364662524 memory:0.09575866541966033 end:0.05202342771473407 :0.45427873328327434 +to:0.9671642242078257 the:0.006089551044087039 nearly:0.0033966769699472397 on:0.0018143946096236213 :0.021535153168516327 +promise:0.09915707246920762 ture:0.08638403424645645 ence:0.04871407307774421 because:0.036598497445139 :0.7291463227614525 +almost:0.7313092770173957 for:0.14555644761229306 yet:0.03887280777621475 of:0.03357505524342987 :0.050686412350666704 +by:0.2723706667549906 and:0.180565873908141 the:0.061993093478930845 tha:0.03555111669921409 :0.4495192491587233 +the:0.7930692313356846 these:0.034776403485272445 tho:0.032046471312188914 his:0.02726518725909724 :0.1128427066077569 +of:0.5537314306624062 and:0.08766468596507958 in:0.07421832278658515 to:0.06044241266272182 :0.2239431479232075 +dis-:0.33094184474747707 time:0.25914459164576203 distance:0.23820341388544744 time,:0.013411264176777146 :0.15829888554453625 +keep:0.9931059623189343 you,:0.0008989750684412853 give:0.0004907125923612801 this:0.0004077955049954192 :0.0050965545152677795 +more:0.025603261486153463 two:0.01419728733615704 the:0.014132858313354051 other,:0.013062065853986239 :0.9330045270103493 +of:0.20034908789595893 and:0.17493162465603496 will:0.1496457580031131 but:0.12554379530260568 :0.3495297341422873 +father:0.07533259093496746 danger:0.05368640833994099 If:0.021351737215480403 duties:0.02081506946916036 :0.8288141940404509 +City,:0.31076383345327757 District:0.06495458595821531 corporation:0.03360851645524139 town:0.033104328107649926 :0.5575687360256159 +money.:0.038466683018325676 made.:0.00048499679248214297 and:0.00028569381902523224 in:0.00028259767096619736 :0.9604800286992008 +the:0.43944556567472 about:0.10007742342956004 a:0.07285545009170256 to:0.06518010439943497 :0.3224414564045827 +no:0.6694578849811678 a:0.192606339883446 the:0.09720907197263547 not:0.03111740964609658 :0.009609293516654132 +I:0.3688956791328036 and:0.05774453298717262 In-:0.04084546737220627 ad-:0.012305167789114023 :0.5202091527187036 +the:0.4292570732939015 their:0.2512787006193834 our:0.14030999370074645 his:0.07751248505243008 :0.1016417473335386 +is:0.5730680661596348 are:0.16839451747327244 was:0.12673843707726543 Is:0.08706712506169842 :0.04473185422812889 +but:0.1365617167456298 h:0.11950033305634697 w:0.08053985252081469 and:0.07921459759228151 :0.584183500084927 +small:0.15590340435507835 sudden:0.14381170777073643 t:0.09139914495801575 new:0.049590775810476516 :0.5592949671056929 +I:0.19131474909476728 not:0.13832959175645235 the:0.09549566679379147 to:0.06451652334131486 :0.510343469013674 +the:0.46621644681094854 a:0.04731266012814871 his:0.022787843682105915 said:0.02092602326277724 :0.4427570261160196 +and:0.2952698200801523 that:0.1956211810209759 as:0.10172270851148778 but:0.10136251524383046 :0.3060237751435537 +school:0.11924513400243429 public:0.05430454029840379 of:0.04992292927162422 individual:0.04209318299788906 :0.7344342134296485 +and:0.2225749035633626 the:0.05692188397729299 of:0.050749824025755945 to:0.05056672770021945 :0.619186660733369 +to:0.13185617509858558 and:0.10009474989765488 of:0.060408707932855236 the:0.051118558741901625 :0.6565218083290025 +is:0.7091919319722807 of:0.18363066834594075 and:0.05961386039515654 seems:0.013747893665305487 :0.03381564562131652 +six:0.44696073997545843 7:0.20567073463771182 ten:0.15926508562322786 eight:0.10436498783755738 seven:0.0837384519260444 +to:0.23280730938655012 with:0.22164007301687608 and:0.14269132966505152 in:0.11221922651512184 :0.2906420614164005 +part:0.0703153678455593 faith:0.05804654521933919 for:0.05534333310878269 up:0.03741866541812167 :0.7788760884081971 +are:0.637403837064744 were:0.1551200016707328 seem:0.10977927895362892 reason:0.04821438589333366 :0.049482496417560605 +and:0.16104366825801372 of:0.15413811841213954 to:0.15116407373346924 the:0.10790457966660448 :0.42574955992977287 +old:0.06787905942791903 ordinary:0.04130031807304197 inch:0.017554771148962 American:0.01716294212276771 :0.8561029092273093 +whose:0.6919847733421949 his:0.2900459073026488 of:0.0067129855947493005 or:0.004793131063630959 :0.006463202696776124 +a:0.658521430017638 fifty:0.10998086684345768 one:0.02501006739869841 three:0.014439304031180617 :0.19204833170902547 +found:0.11165195346941637 opened:0.05424168907260678 le:0.04217080037079678 a:0.03558852861448748 :0.7563470284726926 +I:0.1405557290993164 to:0.1109076500915373 who:0.09294447939991492 would:0.07448874717546398 :0.5811033942337674 +and:0.7246978868917331 but:0.06181316166160643 In:0.030345586500928872 is:0.03021186563670977 :0.15293149930902186 +of:0.2524595642232183 the:0.14189753527327129 to:0.11373314388497202 me:0.06881237088026636 :0.423097385738272 +of:0.32065937293910085 and:0.09308136093356759 or:0.09072423511302039 in:0.043014390687924134 :0.4525206403263871 +last:0.03622147677075966 took:0.017234213602078784 first:0.011122647841327849 the:0.005084435497655281 :0.9303372262881785 +of:0.3670152616080901 in:0.08606928911866724 to:0.08538831367405886 and:0.06505714096796823 :0.3964699946312156 +of:0.15227140391189525 and:0.1273841183272853 The:0.09690326422149358 the:0.07098076822705116 :0.5524604453122747 +12:0.8836439305628816 20:0.00043591654257667934 one:0.0004009783629104798 10:0.0003367701430698685 :0.11518240438856141 +have:0.7230159351495433 had:0.10644358211017478 are:0.06967670794982106 were:0.05846890357666419 :0.04239487121379667 +the:0.010935348554295862 Congress:0.008957534589007964 Congress,:0.0060282502349939026 said:0.005360649572335267 :0.968718217049367 +and:0.17499277576256253 He:0.16667962311846657 he:0.1025986359532287 who:0.08417078564263522 :0.47155817952310697 +principle:0.10969807229957994 power,:0.021340886426742835 is:0.009061528468871798 fact:0.006501014210898416 :0.8533984985939069 +a:0.1795693257822925 the:0.15270543299101724 not:0.05902220689138372 in:0.040527284011281965 :0.5681757503240246 +and:0.4225774551665788 I:0.10107360849426278 and,:0.040609642216061316 but:0.037753282197738026 :0.397986011925359 +very:0.9428229787966905 so:0.006953632549707602 as:0.00547790362103925 bo:0.0011570215809332516 :0.04358846345162943 +a:0.9218540766954886 n:0.06945105803350592 getting:0.004791092647497878 some:0.0010093024590859978 :0.0028944701644214835 +of:0.41975280412186017 in:0.1502274166593933 and:0.09307565651988615 by:0.06171141631709316 :0.2752327063817672 +anything:0.335942090999846 the:0.27116760970335935 not:0.042801194835072685 a:0.0424454676450008 :0.3076436368167211 +go:0.18066762018357646 on:0.12483450203299275 In:0.11452008800226943 him:0.06830222093470026 :0.511675568846461 +the:0.8630702677767611 tho:0.034493878862602426 his:0.016920542463022287 these:0.016660894594715252 :0.06885441630289903 +facts:0.07995420111547279 same:0.07046818987206468 act:0.06294277399083653 fact,:0.02925018332467156 :0.7573846516969545 +has:0.25338141952246646 had:0.2504753586825206 a:0.09714031476632821 said:0.08830013550727735 :0.31070277152140746 +not:0.40757383359256544 being:0.3806476377250153 now:0.021722381499436522 all:0.011209171530018339 :0.17884697565296423 +in:0.17257175715151346 as:0.1465429166778482 to:0.13507814437129784 of:0.13227116570133543 :0.4135360160980049 +cost:0.5660170128028614 price:0.09261654143884002 court:0.04351432177279721 rate:0.036453788852170564 :0.26139833513333066 +to:0.33492793676946936 charge:0.14414090636928886 of:0.0477871272989887 even:0.028374955176457866 :0.4447690743857952 +knows:0.15275956688886813 it:0.09067717290608772 boy:0.08288541171243705 he:0.052566359504320544 :0.6211114889882865 +be:0.8416651285824015 bo:0.042872379298643244 he:0.02150596322230943 not:0.016387467646796067 :0.07756906124984966 +by:0.35474041468332135 in:0.18612242098230525 to:0.18252799167905315 of:0.10491622711472964 :0.17169294554059064 +most:0.11141615064464128 following:0.03766337215927174 recent:0.013857710860400147 ad-:0.013142167490955042 :0.8239205988447319 +state:0.0010966560036946877 law.:0.0008279097471026167 act:0.00039418890979864334 State.:0.00023609287743928112 :0.9974451524619647 +of:0.7569720376109929 about:0.10422742333535878 on:0.049915597755328285 that:0.034390732495070964 :0.05449420880324918 +move:0.18644252890592392 come:0.14027421202095208 run:0.09286181461188568 have:0.0675312831245647 :0.5128901613366736 +but:0.288194170721436 that:0.16097047423148664 and:0.1496528918439525 as:0.13268891628232177 :0.2684935469208031 +most:0.019227333903306842 other:0.017737454047211682 the:0.01705542604801324 and:0.0162870433232667 :0.9296927426782016 +if:0.23320703419241903 that:0.155528925124868 for:0.13537380220383563 note:0.1153518662445055 :0.3605383722343719 +of:0.08968890530210333 and:0.08217559231125288 the:0.07989374547586843 to:0.039287672885076855 :0.7089540840256986 +the:0.05908146785172577 of.:0.04722118819187291 this:0.011629434830423642 tne:0.010301693046004857 :0.871766216079973 +of:0.5079796460783519 with:0.17085270707636369 in:0.10134506917800236 on:0.09647033800345438 :0.12335223966382763 +act:0.47453769517410366 decree:0.21223699573080101 amendment:0.09053173009884716 section:0.07556775778654351 :0.14712582120970474 +On:0.23758294801346408 If:0.21885190605918248 But:0.024525128323604612 For:0.020720612076886257 :0.4983194055268623 +gone:0.298393197902919 entered:0.1517628634294296 fallen:0.1080126786241097 got:0.10037611905543799 :0.3414551409881037 +of:0.3022115387285692 in:0.15071575053997682 to:0.13997819950621618 and:0.10304107381045143 :0.3040534374147863 +.:0.03342541560282893 n:0.010543800396832904 ac-:0.008973946523684426 -:0.008034366067674104 :0.9390224714089797 +of:0.2238198491655392 in:0.12672128784681952 to:0.12664261657875897 and:0.11945318759474176 :0.40336305881414053 +in:0.002479696492065845 and:0.0019250982724476969 j:0.00117891698877569 to:0.0011491568769688247 :0.993267131369742 +most:0.1718033935988346 high:0.0337802852026623 average:0.015736658105605192 human:0.01490968009333512 :0.7637699829995627 +and:0.11551187815790971 double:0.08816392639629872 part:0.052319170131099005 house,:0.03611754555494506 :0.7078874797597475 +and:0.1067013518506757 to:0.08836831490875673 of:0.05692537226762261 the:0.039921685363554366 :0.7080832756093907 +make:0.04451674639791225 take:0.018117809974569788 have:0.016049618613446923 prevent:0.014557560547953268 :0.9067582644661176 +the:0.5072097226165897 The:0.27471901982800817 their:0.0347202555779667 a:0.03466315250918274 :0.14868784946825292 +of:0.5614229629899113 and:0.14480652754050255 with:0.08883288920323316 against:0.0767628629802957 :0.12817475728605704 +tell:0.16959171748522825 give:0.14052610155493167 say:0.11328599639904086 how:0.09867502217087983 :0.47792116238991944 +to:0.328212049290339 that:0.3217532952460083 unless:0.05668151299328147 and:0.05139732279151075 :0.24195581967886057 +that:0.4151866766806015 In:0.1944246743515983 thai:0.14638499698348093 to:0.12665083463047164 :0.11735281735384767 +made:0.09737865758449926 caused:0.05090127733186283 given:0.032694021323601635 followed:0.020744937253646116 :0.7982811065063902 +not:0.8289135565411434 never:0.08871587371426466 as:0.05575716428078139 ever:0.003384579265661796 :0.023228826198148627 +white:0.2433237356755439 are:0.21571886876742596 miles:0.1064695861584068 thousand:0.056397293401534675 :0.3780905159970886 +the:0.8637443099632375 tho:0.011853322995333917 tbe:0.008473270300979587 New:0.0003251656236299813 :0.115603931116819 +the:0.4527973433795927 other:0.11921122578137622 all:0.02891714350011525 executive:0.01711111024517145 :0.3819631770937445 +a:0.5295693807886681 the:0.3515246835670217 no:0.05776016754714774 about:0.0219828792002173 :0.0391628888969451 +named:0.5758297293278719 in:0.2414359183793961 of:0.04772954074811134 over:0.02830631892860318 :0.10669849261601749 +and:0.1520993275153894 which:0.12119853649268639 It:0.10386186722371302 that:0.06021327984878526 :0.5626269889194261 +and:0.23518083912042367 that:0.22654222224753315 for:0.1661774198766856 but:0.15590768334583305 :0.21619183540952447 +city:0.28493157897182375 cases:0.1308519487711862 four:0.08773195199848699 sixteen:0.06484116568570628 :0.43164335457279673 +great:0.07758736817935345 long:0.057316660387719105 certain:0.04212407668715456 good:0.030277202452240037 :0.7926946922935328 +that:0.564700425748207 which:0.053712086280903654 when:0.041727148110875065 if:0.037826450280832286 :0.302033889579182 +and:0.08607603855215601 of:0.07266361703008462 the:0.06862251021021712 to:0.030210711426811546 :0.7424271227807308 +the:0.13177955760159793 a:0.035457549951235706 to:0.018187116430167623 other:0.01581456577603645 :0.7987612102409625 +where:0.3068500407061856 and:0.20707663993825431 that:0.17127159982551982 when:0.11404495106123566 :0.2007567684688046 +went:0.1827832481623549 ran:0.14311361893478622 walked:0.07330842510071589 fell:0.026298439401845775 :0.5744962684002972 +from:0.37113923591554937 soldiers:0.05568927376083356 water:0.04880017288175943 last:0.03566387890263065 :0.4887074385392268 +therefore,:0.1172763227257259 it:0.11238323593408778 what:0.0648885627167967 as:0.04578290616596367 :0.6596689724574261 +three:0.17348346928084155 to:0.008179885734122838 of:0.007192251965738743 sixteen:0.007053946805420874 :0.8040904462138759 +for:0.8190897246601021 in:0.01848779820688267 to:0.013892931508237328 at:0.013473453381195728 :0.13505609224358214 +and:0.23160282035776045 that:0.06815997287887653 but:0.06559771727211708 But:0.022158324723868476 :0.6124811647673774 +to:0.9967419039905699 a:0.0008753869115811792 them:0.0007609021934974097 in:0.0007168677851059743 :0.0009049391192455499 +the:0.36083595715729344 and:0.08232916999622587 a:0.06526873542815094 The:0.04045011138120863 :0.45111602603712114 +the:0.39709665468991606 be:0.17062775896217747 a:0.11888953130118934 take:0.07242390275133503 :0.24096215229538212 +representatives:0.04612462160693562 own:0.025735638196429374 families:0.018147531475875694 counsel:0.015517921126573242 :0.894474287594186 +a:0.06866530811059571 claims:0.024088457148667624 was:0.021101292293488092 had:0.017100868971326195 :0.8690440734759225 +find:0.7795399159631632 show:0.020351784255171097 state:0.015168021736998976 see:0.012555947175087531 :0.17238433086957924 +and:0.0941828391928836 the:0.06753916365533542 of:0.06746012509692509 a:0.04731132553160786 :0.7235065465232481 +the:0.5054951386349279 be:0.1427717397638028 has:0.13337184856700846 they:0.09384495792923067 :0.12451631510503024 +The:0.2699134486146907 the:0.0709094693050203 He:0.052417791307216445 Mr.:0.04554797211802253 :0.5612113186550501 +,:0.09253165599857098 ment.:0.05367305964689335 .:0.006516591334219796 him.:0.006358570892610413 :0.8409201221277056 +those:0.4323246088555284 five:0.1277267029200517 it:0.039564039182901294 the:0.03417894476423641 :0.3662057042772821 +der:0.034804050272314487 usually:0.01185756267324312 usual:0.010609650959591033 of:0.00985375821189623 :0.9328749778829551 +of:0.3002742207256188 at:0.2314667050799435 to:0.14100845672060658 and:0.105839172286932 :0.22141144518689918 +and:0.45262797975492697 you:0.10325417727372754 was:0.08657981461858272 a:0.08159574407431089 :0.2759422842784518 +said:0.14981725911249766 county:0.062395946046534916 district:0.05778161437201501 County:0.046687212145785244 :0.683317968323167 +covered:0.042914939099469696 filled:0.022380052675743743 parallel:0.013100713480385709 then:0.010745407248335581 :0.9108588874960654 +and:0.27499745100201994 the:0.23295462829237043 but:0.16652226706439344 which:0.10963280305986042 :0.21589285058135566 +the:0.3382632545779991 a:0.20031861764687667 any:0.13127207333838511 tho:0.06723235935758477 :0.2629136950791543 +of:0.7845870808514281 by:0.11048741361330217 ot:0.06897740463090267 to:0.019658081207134078 for:0.01629001969723297 +and:0.14973777972321212 who:0.13664331942504654 which:0.13489352318235132 There:0.0986698852865056 :0.48005549238288453 +the:0.6136142381745625 said:0.34438862265066095 tho:0.013400805064674353 she:0.012790172238653023 :0.01580616187144918 +he:0.18930119870089485 than:0.12421198238740949 it:0.11325590811241569 It:0.10055297011851723 :0.47267794068076274 +plaintiff:0.0645508784177069 road:0.035379701375259275 sum:0.03410952677222499 bonds:0.02630569454576603 :0.8396541988890427 +and:0.27246615934077884 to:0.15827941706994808 I:0.13997954675744062 is:0.11185227490933704 :0.31742260192249544 +for:0.7243034592803934 in:0.07545802666586038 without:0.04899699738393442 In:0.033786213071105846 :0.11745530359870592 +one:0.6130279721397435 person:0.057329793804748175 and:0.004819567826269418 1:0.0005180277860252098 :0.3243046384432138 +good.:0.025941431814048795 to:0.009445123144045615 so.:0.003922621390858788 death.:0.0033357913768607304 :0.9573550322741861 +not:0.93468631044704 not.:0.030647418217525597 know,:0.007966723344997382 the:0.003276892559728146 :0.02342265543070885 +the:0.4851172705781987 our:0.12621137752594808 their:0.06731400353330368 be:0.06192867781430648 :0.2594286705482431 +closing:0.38933296712977006 opened:0.33276225240874086 closed:0.1533922171750049 took:0.031170763532108445 :0.09334179975437568 +in:0.7227587652881191 In:0.23856353390963062 on:0.02278295682209607 m:0.008072404048466904 iu:0.0078223399316873 +friends:0.30666860266898 die:0.08048861103769236 tive:0.05764522300071645 ed:0.0379930272483118 :0.5172045360442994 +and:0.30380218122788044 but:0.027544960907346185 hands:0.021571767706137866 not:0.016409308347751526 :0.6306717818108839 +of:0.6909493656289183 the:0.12265804851933863 in:0.029729279499515773 are:0.029247406126899234 :0.12741590022532798 +all:0.37545599974297195 for:0.2292742177196416 the:0.111537439290816 a:0.01462154555894318 :0.2691107976876274 +are:0.16292392634848862 is:0.129164020954724 were:0.1177617977750818 was:0.09575865802610006 :0.49439159689560563 +men:0.12681106463652048 more:0.08950417021761632 duties:0.0791411320992011 are:0.051479839835765984 :0.6530637932108961 +the:0.32612923225291474 a:0.27858048686816095 him.:0.10161653526814934 an:0.08909733300369788 :0.20457641260707699 +it:0.39762140397733736 there:0.07614754574719183 that:0.05677968373522746 he:0.05625507593676167 :0.4131962906034818 +men:0.03020999201730923 farmers:0.028449377667316363 persons:0.013005704084681097 or:0.0022215740991413727 :0.926113352131552 +themselves:0.23771198661566342 deeds:0.23584585498792146 it.:0.19524686294431554 they:0.08365200548278633 :0.2475432899693134 +and:0.1105634502927917 the:0.09542649119210155 is:0.08998773561556234 to:0.06626734305045744 :0.6377549798490869 +Is:0.19687304574425268 come:0.12191470519809106 con:0.10851401510919202 exactly:0.10798621318828341 :0.46471202076018087 +of:0.20527981663130118 with:0.1640117163114225 by:0.09881297927068383 and:0.08719027708536592 :0.4447052107012264 +of:0.1903943848080239 and:0.16022147974910192 or:0.09375984603771648 to:0.08149140112304336 :0.4741328882821145 +the:0.2605007023906977 a:0.25735318870795576 that:0.08001278167256902 out:0.07318952641319774 :0.32894380081557983 +far:0.33389527417078474 himself:0.17779624070005504 come:0.08273176607164207 going:0.0770830291683407 :0.32849368988917743 +family,:0.2770210423600645 office,:0.004679153036807538 case,:0.00430970396697289 country,:0.0009261779445625685 :0.7130639226915926 +country:0.06381409362023936 nations:0.029841275285236793 world:0.029051130853165776 South:0.027567215908994722 :0.8497262843323632 +the:0.6354922985997995 that:0.24964394654335154 they:0.04367237496354298 tbe:0.038238731197975974 an:0.03295264869533007 +of:0.20199558289223504 met:0.0697716966704139 and:0.05138612556269463 announced:0.04538259634473489 :0.6314639985299215 +to:0.2464042499259899 by:0.20570086690174202 and:0.17220479590132123 that:0.14781846151943737 :0.22787162575150952 +of:0.2732944518544143 in:0.1564703454068732 and:0.1536407023181162 to:0.10890880221348946 :0.30768569820710673 +in:0.3024152754281285 by:0.2466038420072032 from:0.17552346528277746 of:0.16738472336213567 on:0.1080726939197552 +of:0.48725109775747 to:0.43594920272793286 the:0.009895865530884881 and:0.00970427151496189 :0.05719956246875039 +own:0.10631548814685081 heart:0.030664184103667926 sister:0.025634717018734786 his:0.013215799175236085 :0.8241698115555104 +that:0.4465391268548553 very:0.30283857366148825 an:0.18091498213850174 it:0.04572237422501469 such:0.0239849431201399 +disposition:0.9971701002212742 use:0.002750406278243586 proof:4.3342823638574835e-06 return:4.065117615781086e-06 :7.10941005025676e-05 +and:0.17010277016960365 in:0.03834709290672157 the:0.028861325376221457 of:0.026732760006925288 :0.735956051540528 +the:0.40812506203455823 and:0.04640293174623613 a:0.041267402811588486 special:0.03184464182690483 :0.47235996158071225 +the:0.5544555616705445 tho:0.2562822177038823 which:0.08181367215176202 th*:0.009894908319939909 :0.09755364015387129 +was:0.31692957935006993 is:0.310019618256967 be:0.12392962409759088 Is:0.03135669053069066 :0.21776448776468146 +tion:0.06162444119904685 ment:0.03165076369015339 corner:0.02793079457515084 side:0.024875556337318968 :0.8539184441983297 +the:0.6062289401345757 our:0.11798000286876688 American:0.03799350180728852 tho:0.037163160574687944 :0.200634394614681 +been:0.640755607636659 a:0.05029912544884052 the:0.040651281028847304 to:0.022994685421986506 :0.24529930046366674 +composed:0.3252570642831019 satisfied:0.058502679682759656 that:0.05107433014530651 one:0.044518727080189696 :0.5206471988086423 +the:0.1447886291583704 and:0.10175357642535385 to:0.09237008499963666 a:0.06102572742830952 :0.6000619819883296 +of:0.5748687338335337 and:0.2180402830995781 or:0.06369779342661139 at:0.03803905355664269 :0.10535413608363411 +of:0.1807524353420017 and:0.17368087530478524 that:0.14787058122448418 to:0.11379889071446488 :0.3838972174142639 +general:0.41904166950017585 the:0.361781731034308 The:0.09115253170541578 year.:0.03056554898858727 :0.09745851877151301 +raised:0.011897156591814392 found:0.011352957574611522 taken:0.011257904087601614 the:0.0024064046203896012 :0.9630855771255827 +the:0.6014937591724037 this:0.18417500964623537 a:0.04202310141027662 tbe:0.009875840789036893 :0.16243228898204745 +much:0.047515511353831835 think:0.021938873097599454 to:0.004089363148587195 and:0.0037479277908281775 :0.9227083246091534 +to:0.3857274293554578 their:0.17148115266954533 a:0.0789033202034588 an:0.06375904930223895 :0.3001290484692991 +the:0.22575765978675147 and:0.17263281581155596 The:0.1668764684518666 or:0.11292232130580622 :0.32181073464401977 +a:0.6301154358243499 the:0.1447923419521254 first:0.01858473785498624 The:0.01528410781472337 :0.1912233765538151 +placed:0.04216334199511014 the:0.04039074913484751 those:0.039826009889077425 is:0.03328651655547874 :0.8443333824254862 +north,:0.03422634604777284 and:0.02875948947380146 of:0.027821062984818908 N.:0.020206740084735036 :0.8889863614088719 +excellent:0.010870039993251066 advanced:0.006789593254451624 American:0.004572863136757075 active:0.0019617215137969174 :0.9758057821017434 +the:0.09336157824700837 and:0.06406127781627174 of:0.044830103343540734 to:0.02871799684680787 :0.7690290437463713 +the:0.1263801398917694 to:0.12368012098302586 and:0.08217527112037278 I:0.05382717445987886 :0.6139372935449532 +the:0.24756463896716224 a:0.11946034081143399 and:0.10390633523210706 of:0.041960981246160996 :0.4871077037431357 +law:0.0073236285365611675 words,:0.0024164894922983336 article:0.001880812751065325 man,:0.0014582241759952656 :0.9869208450440798 +in:0.684211102740945 10:0.13632123002424354 to:0.07386704448837789 they:0.05050968906816894 :0.05509093367826475 +nnd:0.014706486633941829 of:0.002016340406524222 an:0.0012389905593297931 was:0.0010938516493894613 :0.9809443307508146 +of:0.29025867429699254 in:0.11425505517992868 that:0.11141659879306864 by:0.0782097031933575 :0.4058599685366527 +and:0.09032907299998463 has:0.08793839299647395 had:0.06958918678676829 was:0.04674053937944641 :0.7054028078373268 +now:0.20670588891302835 it:0.20350604389554647 just:0.2016233851998837 not:0.15409344739827652 :0.23407123459326498 +and:0.10759206923042144 the:0.06791112561919005 or:0.059032145247886185 at:0.04810562510443196 :0.7173590347980703 +sure:0.380119000775888 likely:0.09501631096521615 in:0.08934878553382114 one:0.03623304952124768 :0.399282853203827 +and:0.6078538006954716 house,:0.05245195091134623 mills:0.018962620015644055 tree:0.015585457038611028 :0.30514617133892713 +the:0.31188346881252316 of:0.16926049161212928 and:0.1037109897225212 The:0.07945746035841206 :0.3356875894944144 +and:0.05216093053013952 end:0.02216108019011951 ':0.020986320244374003 but:0.017696670396120082 :0.8869949986392467 +and:0.43771412269893484 of:0.18289568897418754 or:0.043133390191824716 is:0.029074540649988833 :0.30718225748506406 +firm:0.5878060841349567 mill:0.07173326526062763 house:0.06876776922770729 style:0.05432493676684466 :0.21736794460986375 +far:0.5128948574000006 long:0.42526569484679067 soon:0.010771447057021115 much:0.010687241770088854 :0.040380758926098784 +and:0.2551223853186978 to:0.10419462252141512 the:0.07839673838195821 The:0.041630803173010114 :0.5206554506049189 +and:0.10429612658431228 of:0.05881427851605872 the:0.04094289759162949 to:0.03249052955890134 :0.7634561677490982 +charged:0.015425710660559998 received:0.012225342241667068 covered:0.00783225711379933 filled:0.00649118852439283 :0.9580255014595808 +and:0.11039060593388773 of:0.06834282805280398 the:0.05768056058302116 to:0.0367211773811373 :0.72686482804915 +the:0.1848789361549955 to:0.11941527753809693 a:0.09518553333230866 or:0.09232821555404545 :0.5081920374205535 +voice:0.008742601346349839 form:0.0008323227667194754 ning:0.00044538860356343855 once:0.00029980396939051026 :0.9896798833139767 +an:0.6500499958640359 .:0.02480123112040346 the:0.004826091237267407 of:0.0028755464202224203 :0.3174471353580708 +has:0.47559939597462586 can:0.41775441499079286 had:0.046258328518002934 could:0.029217606722669934 :0.031170253793908472 +by:0.45882089804424503 of:0.36082075855730195 to:0.06120170661273933 shall:0.03728825851464851 :0.08186837827106526 +work:0.1130662414210057 practice:0.08905284662454832 thought:0.05396660395216166 time:0.04654260071532337 :0.697371707286961 +be:0.9113245054373016 bo:0.055166175356976245 he:0.022548619359550125 lie:0.007877019557074483 le:0.0030836802890976023 +as:0.8361213908911292 a:0.06960585017041317 so:0.02605244911302854 the:0.012232718628691276 :0.0559875911967378 +broken:0.07245402209354744 man:0.045132271957374334 and:0.022047517755416052 mere:0.01800358945969466 :0.8423625987339675 +they:0.527796477448023 y:0.22527800944004212 which:0.02815390267317537 and:0.02432292161862689 :0.1944486888201326 +permitted:0.30637511108626536 going:0.2886205787932111 confined:0.03650338581861216 in:0.020268651425070647 :0.34823227287684066 +re-:0.5668169721049904 on:0.13523989667250405 was:0.12147713104984136 of:0.09140623107422934 being:0.08505976909843488 +said:0.22771307726719822 besides:0.22742783323987562 that:0.20677021164366108 when:0.17937539044260015 :0.158713487406665 +the:0.6092319705315169 his:0.1497950957623757 a:0.07134296338297164 such:0.03135700943016453 :0.1382729608929714 +the:0.61199998292965 a:0.049119396162729055 tho:0.03290240139334706 his:0.029687789834971806 :0.27629042967930223 +time:0.05095963328953851 as:0.02957012672341739 to:0.028897605887498127 in:0.025628150467245047 :0.864944483632301 +the:0.6342109255433438 a:0.11041740608682643 block:0.028651054566662 tho:0.028464681006003682 :0.19825593279716405 +to:0.0705540444446073 of:0.05927596737545463 After:0.05620738525625885 on:0.042472689472360395 :0.7714899134513188 +young:0.22426667657542315 great:0.05312965884938863 wero:0.046202338308514626 my:0.04024983907501869 :0.6361514871916549 +in:0.9594886263445679 near:0.013149192450262637 In:0.010762173359582504 on:0.010540034759578334 at:0.006059973086008707 +second:0.26710174254121444 first:0.10560655113189363 hay:0.03128361460075395 whole:0.015378246634874642 :0.5806298450912634 +if:0.5950927770282998 an:0.09009108049207193 that:0.05776263156498538 when:0.04165551753304383 :0.21539799338159893 +con-:0.26543748496553604 a:0.06982889779991508 the:0.06728148820726212 his:0.022305435184345242 :0.5751466938429417 +the:0.22681500170008329 which:0.06388556085546396 as:0.01538779546893045 eight:0.007206430714608318 :0.6867052112609141 +simple:0.09956469386363363 common:0.0743288785242172 good:0.05915481393574027 pretty:0.0501748427883431 :0.7167767708880658 +S:0.44969015023641074 12:0.2986410718762015 10:0.16552553139217016 3:0.06333635586889289 8:0.02280689062632462 +out:0.9274983857873144 name:0.01057836853518685 you:0.0032090799269481017 goes:0.0029318267170008877 :0.05578233903354985 +The:0.13068211569041396 the:0.11496614432949057 and:0.10885642677507633 when:0.08681399832198299 :0.5586813148830361 +as:0.8198554175970862 of:0.12828858219540726 for:0.00726001652943604 accepted:0.005178290358347797 :0.03941769331972265 +to:0.9140492318770599 will:0.028263755576367094 and:0.0148094076654908 who:0.010601055610305355 :0.032276549270776674 +I:0.19468719682652572 and:0.15225212112398026 to:0.14206189015428264 He:0.06356613005349282 :0.44743266184171865 +show:0.006383980285420969 all.:0.006382497458206949 come:0.002300201856112472 it.:0.001737786949278107 :0.9831955334509814 +with:0.9556663820524032 in:0.04266247217093127 of:0.00023761043309816573 In:0.00013598837566321768 :0.0012975469679042005 +the:0.027559662198286813 them:0.010821906578146983 head:0.00512431245700503 it:0.00426650300570019 :0.9522276157608611 +city:0.48762956434360766 town:0.11613984478173872 City:0.05916623420111764 county:0.055105089084706835 :0.2819592675888292 +the:0.8911002301439294 those:0.04028086596997981 these:0.03321428318285171 said:0.013751272396001862 :0.021653348307237346 +be:0.9981202567463568 the:0.0008904843967713361 not:0.00032113380261533176 at:0.0002218519215801598 :0.000446273132676293 +blood:0.0752407530124257 group:0.07392774043619459 butter:0.07248919002336954 crowd:0.0696318496769661 :0.708710466851044 +not:0.9874487646286251 it:0.0020546211444189464 he:0.001578220365369964 hereby:0.001214209601808562 :0.007704184259777517 +in:0.3067027213690364 the:0.1610843838575155 The:0.1332312386676451 of:0.12077530873710043 :0.2782063473687026 +whether:0.0381503951423792 If:0.03592773113924773 and:0.03502861348798292 service:0.03331378327439208 :0.8575794769559981 +not:0.6347028088102451 be:0.19928116631963816 have:0.035384232439209205 eat:0.019413932540047474 :0.11121785989086018 +for:0.716052716338244 lor:0.05004070626428264 the:0.03557480127678979 tor:0.03201100532727741 :0.1663207707934063 +the:0.4417978423910682 a:0.0691133748321555 be:0.06344274998758896 his:0.05518772790251389 :0.3704583048866736 +and:0.12448744768353397 we:0.08436011631997643 who:0.07764779251339034 I:0.07555742170336004 :0.6379472217797393 +regarded:0.1276022758343569 not:0.07681381219694347 just:0.06885602912965873 used:0.05065094412028614 :0.6760769387187547 +thirty:0.2943461188872979 sixty:0.280490880649165 eight:0.18394132047929287 fifty:0.08327779077583045 :0.15794388920841376 +of:0.1332134046983724 only:0.09472970925684292 place:0.08986466735379764 government:0.05532999645431194 :0.6268622222366751 +they:0.5431890456355768 you:0.23410926873457025 I:0.0903679596899855 people:0.07826018031016324 we:0.054073545629704296 +force:0.004086920221036113 closed:0.002071841389677926 tire:0.0010809649336580142 ter:0.0008662907813766632 :0.9918939826742513 +owners:0.08638873230114939 county:0.02254811555485345 people:0.010318826198848292 body:0.004373636592516723 :0.8763706893526322 +will:0.6211843917333485 should:0.2171209018624934 would:0.11280213659792503 may:0.04186457912781734 :0.007027990678415919 +to:0.17718297243348488 and:0.17197423907026854 of:0.1618349578749526 by:0.12331141636680383 :0.36569641425449 +is:0.7922277068233847 to:0.05787373264175105 was:0.053932337368595935 has:0.017603637570866325 :0.0783625855954019 +&:0.12270799529678263 has:0.11485733347246378 and:0.06185774927206407 of:0.0463402436831766 :0.6542366782755129 +The:0.33998942353394596 the:0.11690971781923189 of:0.08620770319619989 and:0.08569473853315981 :0.37119841691746236 +and:0.2703900858774131 to:0.18277282708768514 of:0.0833324207285645 or:0.02768202460905887 :0.4358226416972784 +property:0.08394730583667233 bonds:0.048596578505341576 lots:0.03514670207086783 lot:0.008375751185997066 :0.8239336624011212 +to:0.45834436486112384 that:0.2584444519183191 by:0.17978926167461737 in:0.08092907644394262 bv:0.022492845101997033 +the:0.9886070439798642 one:0.0023354696390220087 each:0.0016119552633049232 that:0.0005723431475487135 :0.006873187970260126 +hand:0.08794040985093282 duty:0.03731796007504965 business:0.028520445199351013 own:0.02209504297904844 :0.8241261418956181 +or:0.17005092490354887 and:0.13885473875130952 which:0.11439458880834516 in:0.10373494350129674 :0.4729648040354996 +city.:0.10900644117266102 country.:0.0018438175101417713 day.:0.0008613982226221524 time.:0.0008556722930188748 :0.8874326708015563 +a:0.23059964139818054 is:0.2239251105119332 has:0.1866145759278408 somewhat:0.0716516948289578 :0.28720897733308753 +than:0.0002885064351950719 M:0.0001399885192054028 G.:0.00012364769289014392 and:8.344936802386336e-05 :0.9993644079846856 +I:0.2908658061742271 it:0.24188545869869738 and:0.13278393510833011 You:0.07100665706285268 :0.2634581429558927 +which:0.16514727709975646 the:0.07727117753201859 Congress:0.035203184644993675 it:0.015354296444024999 :0.7070240642792063 +the:0.9418998250526803 an:0.03601958906306057 tho:0.006416478586444409 of:0.0035507200950825424 :0.012113387202732256 +people:0.3901301282132791 bonds:0.05725977351597875 opening:0.030567180464509847 best:0.029693124757921463 :0.4923497930483109 +its:0.34839933507430565 the:0.2964670000721229 this:0.1639745644802935 his:0.09693922595192858 :0.0942198744213493 +this:0.23007834844273933 other:0.17289273135538608 prior:0.15226994233207575 one:0.035520498831682464 :0.4092384790381164 +and:0.25856053873468876 that:0.13272266811620678 but:0.0993854915537699 where:0.059922459461044165 :0.4494088421342903 +J.:0.09218111185052492 W.:0.09045810993336781 John:0.06735093736180155 A.:0.049804710725629954 :0.7002051301286756 +and:0.11149307838794946 or:0.1013375806772933 of:0.08705837502730476 is:0.07213081127675339 :0.6279801546306991 +blood:0.0140312903227268 same,:0.012312440029100782 stomach:0.007603288262969904 people:0.006626321501474393 :0.9594266598837283 +the:0.38906287783553156 a:0.08335141753696229 he:0.05180662912678851 of:0.04434869984790931 :0.43143037565280845 +same:0.03256327582608333 ad-:0.019459267474809385 con-:0.016519106269346627 great:0.013597782899049084 :0.9178605675307117 +of:0.5337754205280142 oi:0.46283519268140844 in:0.0012849116511650467 and:0.0010729223907056174 is:0.0010315527487068507 +him:0.46567839022913965 it:0.13806224703994943 them:0.05727005634924389 up:0.05681053913354749 :0.28217876724811963 +defeat:0.11389397712870904 by:0.042596853836006934 of:0.03657257903596705 that:0.031133610201732807 :0.7758029797975841 +and:0.08810323529774776 streets,:0.08169398602747464 that:0.030554449253632644 sleep:0.02621659379124449 :0.7734317356299006 +view:0.13101070805359386 bit:0.10112463057154443 crop:0.05199685181056977 lot:0.04184752281232839 :0.6740202867519636 +the:0.9711675710532094 tbe:0.00769058020810848 tl:0.00439463720034952 tiie:0.0024388039051927847 :0.014308407633139914 +of:0.028755954691929177 on:0.020821973940409223 and:0.019363239306431017 in:0.011429425168938485 :0.9196294068922921 +to:0.8849542690360809 would:0.05961562049424379 will:0.023453503731441203 not:0.018395698321545674 :0.013580908416688617 +of:0.6827011222355689 and:0.1813166838704786 she:0.029698264632066255 from:0.025518210276578225 :0.08076571898530786 +and:0.10329008608005712 of:0.05498472210225812 the:0.05215566568125955 to:0.0367596916107226 :0.7528098345257026 +to:0.19096238025589551 and:0.1481644673626706 the:0.05000385545076349 of:0.044945400587337925 :0.5659238963433325 +with:0.3812370389286966 to:0.2312023036152925 at:0.10747647075184352 sent:0.07230820753825745 :0.20777597916591 +proceedings:0.43914334682677036 called:0.06867385788004526 themselves:0.06504264315478574 yesterday:0.03939464216197976 :0.38774550997641893 +body:0.19298655623717056 office:0.10130712147328419 question:0.03191932552068473 and:0.019189965081691976 :0.6545970316871688 +but:0.2858044651392842 even:0.14671565464784211 and:0.07301145877015859 is,:0.07055364564570522 :0.42391477579700987 +to:0.7649388587428891 of:0.10374288187867176 hand:0.024815666166998197 and:0.014698631537151967 :0.09180396167428885 +rich:0.010469309438086034 growth:0.009170288037695682 laws:0.008176972966249666 rights:0.008087025354181881 :0.9640964042037867 +two:0.026446073542490033 one:0.0197356535666059 four:0.016946300738661903 three:0.012263619406569212 :0.924608352745673 +They:0.06913495899059958 There:0.061474894645346854 which:0.05960976932078112 there:0.05460578025279068 :0.7551745967904819 +the:0.3191241125027681 a:0.29573048012935665 very:0.2110793415878938 of:0.05405623365832939 :0.12000983212165196 +without:0.9994783648092757 with:0.0002550639574635231 by:6.527122759311419e-05 college:4.766173228122031e-05 :0.00015363827338654525 +of:0.01130447033106128 and:0.008308088442377948 dollars:0.005142564691252126 to:0.004465790673982323 :0.9707790858613262 +be:0.6081473651396785 have:0.055909300594835905 subject:0.05541700853145292 he:0.03795031859755598 :0.24257600713647673 +they:0.3668691603281041 it:0.12627090269214203 tbey:0.065485096383771 we:0.049093689346942984 :0.3922811512490399 +the:0.1494456639420264 of:0.13303757824228746 and:0.07376397566158525 by:0.05751556234771062 :0.5862372198063904 +of:0.028220211859423697 doubt:0.028164623392440497 tion:0.012350045756550757 agent:0.010543701733293517 :0.9207214172582916 +the:0.2341692522851229 to:0.12799259455841527 splendid:0.11053557180666207 larger:0.05046801056136241 :0.4768345707884373 +army:0.08831749800801364 act:0.05577835939842999 officer:0.05256914898815528 order:0.04360839394310539 :0.7597265996622957 +pay:0.7841291552632004 run:0.07422901880033514 make:0.049531392049043756 meet:0.026451476578928285 :0.0656589573084926 +in:0.0811566916386294 are:0.07504387145173994 American:0.045229207469594614 the:0.04511197374138383 :0.7534582556986522 +of:0.225493369342205 how:0.12005880081075714 paid:0.05652954963135575 charged:0.034544662028046555 :0.5633736181876354 +the:0.5860286986299471 ami:0.11302791790908161 them:0.06793740096707138 whom:0.04900203789990012 :0.18400394459399988 +of:0.558814578355831 the:0.24951752878324113 or:0.13026741341616727 are:0.031639130210567905 :0.02976134923419268 +are:0.12603501692682081 is:0.10930104095792958 and:0.04722448846658443 ought:0.041447060051406207 :0.6759923935972588 +the:0.6206247621764857 a:0.09035036547504006 all:0.08143057899218972 personal:0.06201682887219326 :0.14557746448409123 +of:0.2321114313980715 and:0.17456884609438175 in:0.15438114707747672 which:0.11760307397550526 :0.32133550145456474 +vast:0.1639958163011458 large:0.14899444340681828 paid:0.08885034236662138 far:0.08642905562353737 :0.5117303423018773 +the:0.46090518200650316 being:0.0323359143014361 Mr.:0.02415644614619929 an:0.020458553607313006 :0.46214390393854843 +were:0.4138957904045787 are:0.2615012242608454 and:0.11872722526399647 was:0.08526347203997342 :0.12061228803060609 +and:0.21965095589719538 but:0.06416089212545445 that:0.04244909086059148 But:0.032638060943601284 :0.6411010001731576 +I:0.26979479566803016 we:0.23553114466407657 and:0.12104091543870533 They:0.0970086186945886 :0.2766245255345993 +the:0.8901963668849412 this:0.035788704468190324 tho:0.031645930878135525 his:0.021960113735682442 said:0.02040888403305051 +as:0.12230790422303082 because:0.06171722459145451 interested:0.057549360738184056 those:0.03764477212759764 :0.7207807383197329 +thereon:0.053398297311130064 the:0.02690903605626382 was:0.02132557284719131 movement:0.021125565496182247 :0.8772415282892325 +is:0.5120888947815871 was:0.19108909690772302 are:0.11942342709437745 were:0.10516358870403981 Is:0.0722349925122726 +and:0.3129830807904568 the:0.19522879523139616 a:0.05227698237420002 He:0.04965052944504659 :0.3898606121589005 +the:0.9015338132320619 tho:0.03523450448814588 tbe:0.012704496627226192 ihe:0.0024971095326437676 :0.048030076119922126 +it:0.21213425733914418 It:0.14913632743759705 there:0.12349519802303435 and:0.09563633039524543 :0.41959788680497895 +never:0.25486228957402696 then:0.11719309698158889 has:0.09874971678355977 once:0.08816291636731431 :0.44103198029350993 +and:0.4434091842316725 the:0.10887748996521963 It:0.07457903890606847 for:0.06126636206883654 :0.3118679248282028 +delivered:0.26597002339336234 ed:0.15649104499113958 owing:0.08562371302010006 prior:0.06262456935191567 :0.4292906492434824 +the:0.37162336172712773 it.:0.12203638487015146 himself.:0.029402597531597532 them.:0.028873013563422967 :0.4480646423077003 +sixty:0.4183809962064177 fifty:0.18177699939274009 twenty:0.09629426967526018 forty:0.09497019560837036 :0.2085775391172116 +city:0.00661491348922116 State:0.005452310414525004 country:0.005062668432104141 country,:0.004879921899445195 :0.9779901857647045 +said:0.015472989876403003 highest:0.014193239474050556 most:0.012781410950505391 of:0.008645785510670294 :0.9489065741883709 +platform:0.32042419163275526 and:0.18264668333655648 It:0.016359753975856 it:0.016135209733193108 :0.4644341613216389 +the:0.16173600049257184 and:0.0770560426749651 a:0.05011040030701458 tho:0.028993977595546287 :0.6821035789299024 +the:0.9446157178461485 tbe:0.013737883059045825 tho:0.01293759935776763 the.:0.006496781528595585 :0.022212018208442336 +and:0.008874097791294198 it:0.007520116910103737 to:0.006726759000689317 hair:0.006404190260715692 :0.9704748360371971 +the:0.488932842774588 a:0.06816321047248881 his:0.02692178401603305 this:0.025106396316419987 :0.39087576642047034 +of:0.45184396247844244 in:0.10542539335277028 is,:0.08993185800069747 and:0.07612409449529534 :0.27667469167279446 +to:0.7529668074007918 of:0.1601054641681702 the:0.018841096177525902 is:0.011180162433824642 :0.05690646981968744 +the:0.4058549153433219 a:0.11652018889798121 and:0.0660075632203015 The:0.04369040068325967 :0.3679269318551359 +of:0.1796143768546994 was:0.13236836033933388 is:0.099649031792146 and:0.08964900524932584 :0.4987192257644949 +is:0.4293921528409092 are:0.40011615771452275 day:0.026691038989288936 and:0.022216603880760424 :0.12158404657451871 +be:0.32360493176375366 de-:0.16919974698731144 not:0.13958207154619973 he:0.0514935665418771 :0.3161196831608581 +of:0.09035235607734679 and:0.07987098391471971 the:0.07507444376615427 to:0.03280748853043819 :0.7218947277113411 +and:0.09400866430251723 fell:0.04868117986262469 influence:0.03328441498373979 effect:0.027139331990411516 :0.7968864088607068 +this:0.3497950011960463 things:0.23972630863043418 the:0.17575033929107248 a:0.11733206074484802 :0.117396290137599 +of:0.13053496473799073 and:0.12018433725713576 the:0.09663396090510758 a:0.06880356939477424 :0.5838431677049919 +that:0.2574485189858797 to:0.15068696173444027 of:0.10730399830605648 in:0.08888947622628873 :0.39567104474733483 +and:0.23369632256612793 of:0.15370479280278532 is:0.14821851125248195 the:0.07642268589043129 :0.3879576874881734 +best:0.20091416253755906 greatest:0.1809107125595679 least:0.07634368288085383 highest:0.05011185211244175 :0.49171958990957754 +years:0.10760499123898941 words:0.09745402089673347 days:0.07473589976074707 minutes:0.06407252521256411 :0.656132562890966 +and:0.037492322089315376 paper,:0.03268117333508061 the:0.030759396152182317 press:0.024976001193986148 :0.8740911072294355 +when:0.25389477054069626 believe:0.23459703515432917 that:0.1970692956357099 .:0.12242416038765483 :0.19201473828160984 +he:0.3395042615166412 I:0.3107736365727988 they:0.25644948299025216 we:0.03982639972312082 :0.05344621919718715 +up.:0.004382319920296344 on.:0.0004296932516679728 —:0.00030070103542145413 a:0.00011245224834078605 :0.9947748335442734 +two:0.05432894707240578 are:0.033408206131583365 the:0.022130881642861835 and:0.012984861786767537 :0.8771471033663815 +and:0.29338767748884004 of:0.1734672954869231 is:0.07725300778126426 to:0.0712942591981263 :0.38459776004484636 +Three:0.245300132100017 said:0.21157751240891445 the:0.06710749862421994 Two:0.046952721900920744 :0.42906213496592793 +At:0.21228123362799947 and:0.026930502346860383 of:0.026238755036023065 the:0.012150240756509433 :0.7223992682326076 +to:0.08253111617474741 in:0.06831179459930305 up:0.06024160977604376 ted:0.05063555405700368 :0.738279925392902 +ment:0.0962644773864448 evidence:0.052401248172340625 day:0.04175591939041596 tions:0.02673310043476012 :0.7828452546160384 +man:0.10802014702111022 above:0.09391887072170467 was:0.053707568673356784 is:0.04936325372782769 :0.6949901598560007 +the:0.6253232222082816 a:0.06176585745251593 his:0.04422356909825619 this:0.044169537442008334 :0.22451781379893795 +will:0.6150124997599239 would:0.09612613568228132 you:0.07929117404479404 they:0.06964824069427984 :0.13992194981872083 +and:0.2863816905606001 in:0.2662325582436189 In:0.25076759316634434 to:0.11102489041959761 :0.08559326760983899 +made:0.3506022167525879 free:0.11524702328211721 out:0.028710368102634276 placed:0.02674060651128891 :0.47869978535137186 +been:0.34421483256295415 a:0.14659065803759205 no:0.09213614467994294 the:0.07662108416477349 :0.3404372805547373 +own:0.12271704556660742 last:0.049214738966526346 first:0.04861129333597785 greatest:0.03317112422682291 :0.7462857979040654 +the:0.6681627374999325 a:0.05604644430587191 tho:0.0457142354569977 his:0.03290026786002291 :0.19717631487717494 +the:0.7779712151262772 his:0.04530565252552009 that:0.041335543585322695 this:0.04057533230247104 :0.094812256460409 +that:0.3223220063744703 a:0.31666380580196213 the:0.19989472589518525 their:0.0454068895359221 :0.11571257239246029 +if:0.455205576480045 yet:0.18922739381906578 and:0.05953121212919979 If:0.04177159328082096 :0.2542642242908683 +ting:0.17656111142736508 ing:0.12887787972897363 carry:0.03630215301195822 that:0.0352666667237327 :0.6229921891079704 +this,:0.1419393589593211 possible:0.1300849704432648 any:0.11614665927011603 well:0.11278577998461237 :0.4990432313426857 +acted:0.08317960597036951 death:0.06484549837647341 important:0.03562920443219686 own:0.028224123559120295 :0.78812156766184 +figures:0.813335415305001 facts:0.025212983683257976 people:0.007497743287534838 men:0.006536136607416397 :0.14741772111678988 +request:0.1531437540922257 hands:0.0838917220326589 hour:0.07631050378136969 expense:0.056290249109654536 :0.630363770984091 +and:0.0949741485975024 the:0.09408432163764326 of:0.09065199338840498 The:0.053658927915007364 :0.6666306084614421 +of:0.20028117228745626 and:0.13590823326715787 the:0.1304108017561138 a:0.09889547780134525 :0.43450431488792673 +the:0.7716863449633149 6:0.05589694526400639 a:0.04432308908036779 he:0.035439547012501106 :0.09265407367980971 +and:0.636354260972863 are:0.11610118578879312 were:0.10319717756894148 was:0.0908927845079264 being:0.05345459116147603 +free:0.3361791529396252 and:0.18249904925014707 up:0.14593790219601172 -:0.08412002368271307 :0.2512638719315029 +payment:0.020650617616022673 value:0.020634328629917827 action:0.016834937889299677 expenses:0.016594544501350526 :0.9252855713634092 +in:0.13032306092495774 was:0.05323567450145925 years:0.05089383472263109 pain:0.05085564088855963 :0.7146917889623922 +the:0.006078934360733962 here.:0.0032959063886069144 it.:0.001688985831531134 a:0.0015431420413167223 :0.987393031377811 +may:0.9396568134750651 might:0.02673498738717589 to:0.01863223406348605 have:0.008554246376211515 are:0.0064217186980614896 +the:0.8307687570134985 a:0.025239285712404056 their:0.02177974923997216 this:0.01051237744595486 :0.1116998305881706 +the:0.7213723199975424 several:0.11226343885555448 certain:0.07539129027920331 these:0.04772722773579522 some:0.043245723131904494 +they:0.16300563348341235 the:0.1203000876140664 and:0.10334834927299878 of:0.05383891050055847 :0.559507019128964 +that:0.457887620938913 which:0.27793352819888417 but:0.0473919739891183 we:0.020712454927606053 :0.19607442194547842 +a:0.9990426976315032 not:0.00024824318492322597 the:0.0001998855626455379 one:0.00016477593866880133 :0.00034439768225935375 +in:0.02190745783924739 and:0.009434253213888709 ing:0.007662842142958134 street:0.006340850732508847 :0.9546545960713969 +the:0.9885615330693416 this:0.00474764713277326 tho:0.0022106215583197705 tbe:0.0021418779119385593 :0.002338320327626913 +the:0.6527166386361813 a:0.15629929948603444 an:0.027892837414820282 his:0.02777359035775552 :0.1353176341052085 +days.:0.10611576224674674 cents:0.05780833114569953 days:0.0016377024411157917 years.:0.0011766705840818594 :0.833261533582356 +the:0.4349122044508178 a:0.06376946481400365 his:0.025140397177408465 tho:0.02217537332006258 :0.4540025602377074 +without:0.7315611448441697 where:0.20204571387090137 and:0.014517835117487334 than:0.013374862887188367 :0.038500443280253385 +The:0.3089782983909669 the:0.12653891232066938 and:0.06298272415096698 First:0.018136330630735713 :0.483363734506661 +and:0.13584771718176458 of:0.06445519226968069 evidence:0.04636141058351371 him:0.04429586030976846 :0.7090398196552725 +has:0.4298888575343648 had:0.29834147141671735 always:0.20598756648524993 was:0.02133048684923822 :0.04445161771442962 +of:0.9093498068959673 to:0.014912826003083161 that:0.006409166295843111 ot:0.003309102601397329 :0.06601909820370923 +form:0.06421602707659485 and:0.04327995663607085 City,:0.03833982559084138 river,:0.02264100998900893 :0.831523180707484 +of:0.3694405932982412 were:0.15770941320504533 aro:0.08964466346705965 are:0.07435982646069003 :0.30884550356896384 +and:0.05687601324222915 one:0.05221637887379597 tion:0.042152082751563756 out:0.0417409006829659 :0.8070146244494452 +and:0.008957241418189939 which:0.006483935774987394 ing:0.0060246340453747995 houses:0.005557761889414666 :0.9729764268720332 +eleven:0.19742592243909157 people:0.09495023434824572 plan:0.09445898147479599 thing:0.04011377943520488 :0.573051082302662 +stone:0.38326179330310195 time:0.2083261657262884 date:0.06378014659169418 point:0.02793739221601177 :0.3166945021629035 +by:0.827427998620229 the:0.06285072412922153 that:0.04902853946221499 is:0.02974522160906544 :0.030947516179269014 +country:0.04520452485167839 action:0.04233972596047748 city:0.03662332046259785 contract:0.03308965571055335 :0.8427427730146929 +to:0.2618072061526068 by:0.16643524818598934 the:0.13669686221962585 though:0.11144630683568472 :0.3236143766060933 +history:0.15238946236209683 operation:0.11182718264870643 nature:0.0828554992732838 way:0.07509475841053047 :0.5778330973053823 +was:0.1314415208729528 die:0.062184028626871266 because:0.051948461558385214 all,:0.047188032693715604 :0.7072379562480753 +did:0.2965256871962278 could:0.25374069635537866 would:0.1910461757269709 does:0.16513366818542433 will:0.09355377253599832 +W.:0.029667511159875877 Smith,:0.020479352021149637 A.:0.018686080232939564 T.:0.016261041751205504 :0.9149060148348295 +of:0.8006446735319853 and:0.0334480377131803 the:0.014313998720140123 .:0.012013923089708065 :0.13957936694498604 +those:0.19809848710069833 on:0.1351043941178645 them:0.11893265412998949 as:0.11476809028710147 :0.4330963743643463 +to:0.47292268350864763 may:0.22260839696340393 and:0.14266831310709058 will:0.04038049739680356 :0.12142010902405426 +and:0.3822511235030589 or:0.2522611728960454 office:0.022777414214783725 serve:0.01926270561655777 :0.3234475837695543 +annual:0.2624996586357848 recent:0.12923487853541457 next:0.1055368101838963 regular:0.07619047358224677 :0.4265381790626576 +the:0.18574805690908336 suddenly:0.11036063218293109 being:0.10778645556344778 a:0.076260922467563 :0.5198439328769748 +than:0.7686149947758978 or:0.020390894542118843 the:0.007100252059903914 and:0.006907493613598774 :0.19698636500848077 +of:0.3635974337252146 in:0.13135273272469697 to:0.11389198032919519 and:0.10432947424452457 :0.28682837897636865 +u:0.8323608884183299 and:0.0857847999951817 with:0.025818056626227458 while:0.006244305528978991 :0.049791949431281825 +north,:0.01989364282648361 on,:0.014709984721329892 move:0.013206956217124276 down:0.008719861674221485 :0.9434695545608407 +two:0.13896315303452805 time:0.06721738381828077 years:0.014263143125557778 cattle:0.012573233610207554 :0.7669830864114261 +of:0.5327380481248096 to:0.26778447194000193 is:0.0599822701187402 in:0.059950068107609944 :0.0795451417088383 +from:0.21960384247051987 up:0.06408949475753972 down:0.016473047968335392 in:0.015134542873985041 :0.6846990719296198 +and:0.3057805759318722 if:0.2581580652066883 although:0.18119824166047507 because:0.1497223302688345 as:0.10514078693212998 +an:0.7291025198705062 the:0.10982701451156796 no:0.021922302032876043 au:0.020162929705038506 :0.11898523388001127 +the:0.43782847305065203 a:0.08253265339836832 you:0.06256650288879834 he:0.05693737310788748 :0.36013499755429385 +news:0.1426708026332316 more:0.013808567111708862 and:0.007519990138326479 of:0.006726933111049809 :0.8292737070056833 +our:0.6139088960701635 the:0.19989195630613843 a:0.14447333743942695 self:0.021331236429473873 of:0.02039457375479728 +the:0.11548259287635325 and:0.09494774230279274 of:0.07644385141098381 to:0.06641909883848243 :0.6467067145713878 +to:0.47020045679174627 into:0.201565853331754 on:0.18440493666178973 for:0.055764639524648 :0.08806411369006205 +and:0.12818442199859997 the:0.09895954295237026 of:0.06777288967473524 The:0.04261909775858928 :0.6624640476157052 +first:0.055627782191697873 1st:0.04801614882862712 second:0.0067054385439850725 and:0.005906438051081698 :0.8837441923846082 +port:0.08143397808319709 appear:0.010119817561930942 action:0.009733370113234005 doubt:0.007644327384205729 :0.8910685068574323 +to:0.6609696607624934 not:0.09460440930467845 I:0.04488119199954333 who:0.029789171005804166 :0.16975556692748062 +the:0.41435182901761963 a:0.05590312926844053 his:0.05035387844683069 their:0.032927160726343024 :0.446464002540766 +make:0.41619643771847126 start:0.1917836085883961 be:0.11472504416510487 do:0.05666573353240847 :0.2206291759956193 +in:0.1623477043353754 suppose:0.08548252771616632 be:0.057938212328725494 now:0.05076280074522151 :0.6434687548745112 +in:0.059205668644596414 In:0.025770423809516003 the:0.019819750144426104 years,:0.0112377388849388 :0.8839664185165227 +of:0.07624214836250992 portion:0.01818227322835783 energy:0.014957625157263335 member:0.013677529327163969 :0.8769404239247048 +to:0.8330601372021087 not:0.05604926247808848 t:0.04581809799242917 a:0.013202228917906098 :0.05187027340946741 +of:0.32570105675070127 and:0.13660996668632194 to:0.11372427168402462 with:0.10150339367318331 :0.3224613112057687 +the:0.388958519375274 bonds:0.12579007105300036 this:0.09535777089020331 a:0.028736655992093504 :0.3611569826894288 +and:0.1178654684768071 the:0.06992579812628295 to:0.0632484587677047 of:0.04994507583408346 :0.6990151987951218 +section:0.9641725808835376 Section:0.008959833865954909 tion:0.006856004494920525 is:0.0065112620964346436 :0.01350031865915223 +for:0.4086447020127846 near:0.15727772939457602 through:0.07364878907277406 in:0.06710510946776355 :0.29332367005210175 +you:0.14134165369656276 and:0.14040297681337993 in:0.13420816439602853 For:0.12108994946090218 :0.4629572556331265 +the:0.2302288438707406 lots:0.07331755324281412 a:0.03651000337282359 an:0.020499285939464054 :0.6394443135741578 +together:0.13088985966636396 ed:0.1079051959186173 connected:0.07481542153638031 and:0.06807122618045319 :0.618318296698185 +nor:0.29728144684294305 How:0.2086994884021421 but:0.03772100330256863 Why:0.023869071284165946 :0.4324289901681803 +was:0.18772334333281815 are:0.18413086291871997 with:0.13353017842754594 in:0.11584124208749025 :0.3787743732334258 +and:0.043130043589555384 him:0.03529695410691845 ed:0.025295187971530127 filled:0.024297211058987505 :0.8719806032730086 +thousand:0.9528943362312221 to:0.0015251015618615862 and:0.0010710721583677434 the:0.00028264289852627877 :0.04422684715002244 +as:0.3107621754824768 and:0.15038566781537907 but:0.07688559818515193 because:0.07110427434193532 :0.39086228417505686 +committee:0.8573772377664612 yield:0.02101165501091986 fund:0.01621053015493853 force:0.01528250722697739 :0.09011806984070299 +distance:0.0031512191288082265 influence:0.0024667383125689638 expense:0.0012714529550794497 work:0.0008645176581430851 :0.9922460719454003 +for:0.5781834155041817 where:0.33705653687425813 during:0.045682664780504284 on:0.016801230313106617 :0.02227615252794936 +people:0.18209647026423778 a:0.04969577568673241 most:0.021881642907930345 ent:0.02164105663216119 :0.7246850545089384 +for:0.8696093184289454 of:0.03068434453826031 years:0.024913298608590106 have:0.005274212930083515 :0.06951882549412067 +to:0.16744393084095238 of:0.14560483599764526 the:0.10792108636639404 and:0.0737201758038551 :0.5053099709911532 +the:0.630464741594536 its:0.18019452900637534 three:0.10741902736892518 it:0.011688186824564593 :0.07023351520559878 +the:0.2326410905576191 a:0.15423446090328907 other:0.10002913652464097 another:0.07220306168507885 :0.44089225032937207 +of:0.21084797713676148 The:0.16334163393000434 Mr.:0.06164441495093511 and:0.06161601463339423 :0.5025499593489048 +days:0.296422819224799 years:0.17937686162898725 yards:0.12995418037167625 miles:0.05691143896726437 :0.33733469980727315 +and:0.08840599988893814 that:0.03633555035112085 but:0.022909410982948686 were:0.022676225136071187 :0.8296728136409212 +the:0.3451294764467354 whose:0.19717618186838515 The:0.1641158420295388 and:0.08360483236225756 :0.20997366729308306 +Smith,:0.024880271352503248 wife:0.014826411315114574 I:0.013554069481094626 All:0.012673227720286766 :0.9340660201310007 +the:0.7227852881235908 a:0.037196053960218134 tho:0.026914994445101648 tbe:0.025088588496203105 :0.18801507497488637 +in:0.2798505175840137 with:0.22674978708653987 In:0.10579955521065561 for:0.09849425295094397 :0.28910588716784685 +thought:0.7140501275651122 of:0.15485281032023313 should:0.04130117501487743 to:0.024763873653839644 :0.06503201344593769 +the:0.10773190357659489 three:0.04667737881607208 county:0.03026730726786994 five:0.024661923276926838 :0.7906614870625363 +the:0.09438773261456768 and:0.04940955005831048 of:0.03700433847851026 The:0.014706058795575969 :0.8044923200530358 +hundred:0.9610973077118785 thousand:0.025332258091997965 million:0.008659627866026373 dred:0.0008539058100166997 :0.004056900520080563 +the:0.6270239058515091 a:0.06844184369557633 tho:0.02944172798108687 an:0.018272731139036356 :0.25681979133279137 +and:0.054098158294463176 the:0.04403410926937827 in:0.01826458504096708 changes:0.018015371026505772 :0.8655877763686857 +on:0.6782273172768688 all:0.2291745165286485 voted:0.028386271525453737 oa:0.017991867069081686 :0.04622002759994726 +and:0.09194442334857912 the:0.0843546573287783 of:0.07784651080296019 Book:0.04780211239748289 :0.6980522961221997 +February:0.07567574856840927 all:0.03413659946252448 which:0.012022217611607327 it:0.007227715656938315 :0.8709377187005205 +Mrs.:0.35667915101090614 Judge:0.07678991100541649 Mr.:0.0548279475043248 A.:0.05133037225461808 :0.46037261822473463 +satisfied:0.11945879557689311 told:0.07592140150333408 informed:0.06392005099389043 sure:0.05361503157136517 :0.6870847203545172 +d:0.5239256582279344 as:0.1495675672171915 and:0.0164324177980978 represented:0.010428322516916005 :0.2996460342398603 +the:0.10314066641905853 sides:0.005735515033507179 a:0.0025590402061929406 of:0.0020349136008755817 :0.8865298647403658 +value:0.03100564052779195 best:0.018371111277062802 state:0.011152636009865836 same:0.009037056083582424 :0.9304335561016971 +a.:0.06221982601490511 appeared:0.033862324898489775 and:0.020610385706454667 call:0.02018817719150219 :0.8631192861886483 +Virginia,:0.20081784702411426 Virginia:0.12033886754502286 \\:0.019279481855721398 and:0.015261913476807306 :0.6443018900983344 +the:0.27683459292987417 that:0.2546758674034705 this:0.16239168047861982 next:0.06102183737906977 :0.24507602180896582 +shall:0.21497883860693803 escape:0.20668608553038254 make:0.1314606342959086 did:0.09301481561806815 :0.3538596259487027 +also:0.3564097491946741 not:0.2861994663246266 only:0.06274311913938363 again:0.05368327601580461 :0.24096438932551112 +the:0.2973434761566481 our:0.08512577525988682 his:0.06665953064325171 tbo:0.06168558196605036 :0.48918563597416304 +corporation:0.05135682912818077 side:0.020230638687426035 deed:0.01919039318056893 formed:0.005742808493708089 :0.9034793305101162 +for:0.12072959731606973 and:0.10229638156612478 heard:0.06152458603798449 or:0.06081446134032653 :0.6546349737394945 +the:0.02866343210915011 also:0.019799912828348386 one:0.01950536358243749 ready:0.0192131364255545 :0.9128181550545096 +a:0.8703357097025285 each:0.05641444765444308 the:0.036391821115211644 these:0.02298809238271897 three:0.013869929145097928 +the:0.41899863025085426 he:0.12407884664611644 a:0.09448267478093048 they:0.06905665261471282 :0.29338319570738586 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +world,:0.03170409385240979 Church:0.02785138032909883 people,:0.02700580407621045 State,:0.0254176644425462 :0.8880210572997347 +it,:0.12449697145759386 acting:0.10668700402388463 being:0.06487843424531402 and:0.02326784156552954 :0.6806697487076779 +second:0.17396075477239514 water:0.056562741348185466 executive:0.052823956140996664 man's:0.0512831974042003 :0.6653693503342224 +a:0.5808494270892581 the:0.2562959110935464 this:0.024802565066313065 said:0.018832006167644903 :0.11922009058323754 +the:0.5057957861415415 a:0.16297101543198136 an:0.04394855000696651 n:0.030285561549103484 :0.256999086870407 +premises:0.13427259860032925 and:0.05670586948852021 which:0.03406464540389265 I:0.027012977963595766 :0.7479439085436621 +tho:0.552814716956301 the:0.3851733779926674 The:0.012777920011186666 he:0.006704190370411746 :0.04252979466943322 +the:0.08057555693291339 and:0.0774398907378631 of:0.07627337835248359 to:0.034871773519565 :0.730839400457175 +when:0.22721317500126412 When:0.15654927217586984 This:0.07714148231117955 and:0.07448796796523773 :0.46460810254644896 +t:0.5157812108915425 held:0.047768190742934355 are,:0.035140324367518704 immediately:0.029724569284282527 :0.37158570471372204 +and:0.07541069592044423 boy.:0.05349626726799672 girl.:0.04445330478065188 Mrs.:0.029389796997549185 :0.797249935033358 +the:0.5202377739838178 which:0.15884521190373221 his:0.06728216169550716 a:0.06498043953622831 :0.18865441288071466 +the:0.2806567645083279 Book:0.04388869706195171 be:0.03999267742725135 his:0.03909171010483088 :0.5963701508976382 +of:0.6869338815492619 to:0.0963243557462435 by:0.06947936656874457 along:0.034081199974193864 :0.11318119616155617 +the:0.37751385715383995 a:0.13788750498038516 tho:0.085876500949098 in:0.04543930145460654 :0.3532828354620704 +and:0.10528725062920476 of:0.08683552117927351 the:0.08421460358924751 to:0.04247808447238007 :0.681184540129894 +with:0.37877394013944526 to:0.22253049573623976 for:0.16950758020801604 on:0.107797936924401 :0.12139004699189797 +merely:0.23108040409695557 in:0.20564320356562793 by:0.15857968028883992 of:0.09728123848243382 :0.3074154735661428 +two:0.8451417179963601 Two:0.048090972472749856 of:0.006489464209665871 I:0.0034098660799606823 :0.09686797924126359 +mortgage:0.7566971857406034 mortgage,:0.2320881383264909 city,:0.0005020956198230387 county,:0.00045795231426067566 :0.01025462799882213 +the:0.7315203486182247 a:0.044828892750923284 tho:0.02830626226485577 said:0.026885286739316356 :0.16845920962667987 +on:0.45505641758163606 in:0.3944662299278652 at:0.09666463857595889 by:0.021940327674505166 :0.03187238624003473 +me:0.9658609712420335 him:0.012260389074339224 them:0.0036167331978246234 it:0.002344297909785575 :0.01591760857601698 +part:0.30508570052693806 top:0.03675293095515258 side:0.03533652435314409 night:0.022361368685233522 :0.6004634754795318 +of:0.8898800954973736 to:0.10222662898829207 ot:0.003138658248674745 when:0.0025960292564131 in:0.002158588009246548 +the:0.7279767535551334 his:0.08175337355832543 The:0.07288123175651716 a:0.06424904723191265 :0.05313959389811157 +and:0.18959741548260034 The:0.17029058662307903 of:0.09849636844100658 were:0.0958238728027116 :0.44579175665060256 +and:0.04587539562586602 is:0.03570310214205861 was:0.020827199613429208 or:0.01915282957077604 :0.8784414730478701 +the:0.14578732829879115 bo:0.09520947384453761 be:0.06373464644773254 sometimes:0.0446607033002601 :0.6506078481086787 +tween:0.6593290035373306 fore:0.18858162050417626 ing:0.021863905695995275 the:0.01748187495845462 :0.1127435953040433 +the:0.2435026086983268 in:0.1626104357739581 th*:0.08789895024662399 are:0.07426415302829477 :0.4317238522527964 +with:0.32318581517715483 such:0.07401846335832128 had:0.059508502825514106 that:0.034184075388811165 :0.5091031432501986 +was:0.07877763122025237 came:0.07164481010325886 and:0.017179230195491262 largely:0.009769169545144495 :0.8226291589358532 +in:0.4510638421132151 and:0.06108324718403091 tax:0.03378338757298301 to:0.03028019609248166 :0.4237893270372894 +the:0.9792916466781024 an:0.016786258926698792 some:0.002542311578061395 tho:0.00070228789215922 :0.0006774949249781989 +ho:0.09163640510918672 the:0.03456843243654903 of:0.02217647465435436 moving:0.018177848737567108 :0.8334408390623427 +business:0.11866060232177754 man:0.05126553337321476 morning:0.04557426260845457 city,:0.02511821918321578 :0.7593813825133373 +the:0.6133541037713993 a:0.1580033297802822 that:0.07247583935545493 every:0.01949746836114804 :0.1366692587317154 +is:0.34273034102280353 and:0.17332961767525326 of:0.008550552489423512 a:0.006749853330077873 :0.4686396354824418 +of:0.9928327242061267 said:0.004454609049906424 ot:0.0015853471884988586 ol:0.0007941057611505157 oi:0.0003332137943174249 +let:0.44314230445973796 for:0.1809004629227487 save:0.09958176131326828 to:0.08072867301409636 :0.1956467982901488 +filed:0.481918901898528 and:0.12145004518126014 in:0.10728046580411935 to:0.07717602754034683 :0.21217455957574566 +think:0.4398642246888356 said:0.3229200977713439 hope:0.05534977030031616 found:0.053041050100489824 :0.12882485713901454 +be:0.8639982251591576 have:0.030521183526247147 he:0.010440828182773849 cause:0.0065235882736157744 :0.08851617485820551 +April:0.9238591705947687 December:0.03830368492333462 March:0.021420073618338215 and:0.004005952127167579 :0.012411118736390876 +be:0.8640153406486141 have:0.027115289572189786 the:0.01632746620579159 bo:0.015323796042015597 :0.07721810753138893 +not:0.36739586963433707 But:0.23580755046019175 that:0.13901238404352045 and:0.1163949669952104 :0.1413892288667404 +with:0.3263092661640731 and:0.06598579815034482 against:0.016589412181951268 the:0.014533701263763776 :0.576581822239867 +Congress,:0.568348982966143 of:0.022300542909055275 the:0.009185888092431342 building:0.0072919592345399705 :0.39287262679783036 +William:0.20198285626655388 James:0.0525142161882019 John:0.04404322727781661 Wm.:0.030418684810046257 :0.6710410154573814 +that:0.596672085377297 That:0.19927284243696247 men:0.011977942784177265 James:0.009121387172789042 :0.18295574222877423 +and:0.07830949477856022 year:0.03200953942944834 the:0.025222674470234505 to:0.02197277114807086 :0.8424855201736863 +it:0.18946205684768896 in:0.11347366720850108 ed:0.07999891235828306 only:0.06852248941920701 :0.5485428741663197 +are:0.21980456715205046 death:0.1566222657986438 men:0.06552669756341212 and:0.060988614218036155 :0.4970578552678573 +American:0.11477563735490155 people:0.05067374150148295 people.:0.047831930765456804 most:0.028350072460262322 :0.7583686179178963 +soft:0.21805311310393868 strong:0.0306973826983095 high:0.006321448159975032 rapid:0.002792831019703217 :0.7421352250180735 +Congress:0.015101170749478855 whom:0.008994519751366134 the:0.00683904531335739 congress:0.0036758833878207183 :0.9653893807979768 +a:0.1760823346743396 official:0.040074175697368986 on:0.03587418772016661 attempt:0.022027982199914087 :0.7259413197082107 +in:0.4261003783109747 none:0.2812889318219139 the:0.09814617253634908 a:0.057116475810011516 :0.1373480415207509 +of:0.6892609370269992 by:0.10539182808010607 to:0.06189849036225141 on:0.05736190409445797 :0.0860868404361853 +the:0.508464011084727 a:0.03367335853374634 tbe:0.024538422324820862 tho:0.02387453327633245 :0.4094496747803733 +it:0.6453720475574821 he:0.050571710254908725 any:0.0427099325574593 there:0.03444472742551862 :0.22690158220463127 +United:0.915547602770085 Southern:0.01047334069943056 Northern:0.004065623414050501 several:0.0037936941296307786 :0.0661197389868034 +the:0.22559576507278045 tbe:0.09367234225131943 North:0.06950024653595124 Central:0.06688502196409342 :0.5443466241758554 +of:0.33912162510302685 by:0.13307617808674252 aud:0.07515680865758141 the:0.07010749957945148 :0.3825378885731978 +Union:0.2472268407899557 old:0.04920396893235468 re-:0.00823556170232241 the:0.006844652857553033 :0.6884889757178141 +and:0.22679463996592644 at:0.02371452399829734 up:0.021318054705556352 in:0.010839509631401357 :0.7173332716988186 +California:0.5929130358787754 Mexico:0.012553114640682338 Baltimore:0.009734740181744956 two:0.00808396586442725 :0.37671514343436996 +as:0.7993677497623839 the:0.02999904688522219 from:0.026979632446836613 superior:0.017083461628015845 :0.12657010927754153 +It:0.38671240033665477 it:0.20102627332384204 This:0.053505507112733185 which:0.04501803503260255 :0.31373778419416737 +ed:0.2081041014248134 that:0.1301050000699827 he:0.12048785470386897 this:0.10443925394922152 :0.4368637898521134 +Mrs.:0.240028147568277 Capt.:0.01638535041160687 from:0.01604049143674627 W.:0.014494757023597054 :0.7130512535597727 +and:0.9775462703424992 dry:0.010732673200801826 the:0.0034858551044646973 faithful:0.0024178789832348174 :0.005817322368999548 +fair:0.14293143064133648 large:0.06994371941193449 cheap:0.0690299189242675 tender:0.06636871858362328 :0.6517262124388381 +at:0.8807676439622842 for:0.04038887523741008 in:0.02417540268990847 to:0.011676896258072798 :0.0429911818523245 +pre-:0.36138083332694787 not:0.14024334880670836 the:0.13628505442632435 for:0.07573960898943742 :0.2863511544505819 +which:0.36927148830358014 of:0.08504008413622671 nature:0.07703566035560445 by:0.03093361980906265 :0.4377191473955262 +the:0.8335733770081092 a:0.0605722078348886 tho:0.03137632392333958 tbe:0.02833773772324995 :0.04614035351041262 +and:0.23759760975068717 without:0.1631536146250687 Mr.:0.105524468597551 to:0.08512360530495398 :0.4086007017217391 +the:0.31508453349540216 12:0.16313642569887052 a:0.015262479320329066 all:0.01460900185937278 :0.49190755962602545 +and:0.08326058041734413 12:0.04786428908163026 14:0.03308218350389396 one:0.02230453819607211 :0.8134884088010594 +time:0.4500598694976762 service:0.11777644490452112 address:0.10073876739042652 distance:0.044241672262768615 :0.28718324594460753 +cor-:0.19795489477093367 claim:0.11120054996237838 and:0.055770701523856644 district:0.02472462252234367 :0.6103492312204877 +and:0.043613015601242824 State:0.03465308801807638 ing:0.025705008628017483 train:0.012228218592570186 :0.883800669160093 +wo:0.8867936440532059 they:0.07257150393393182 we:0.00469532006032753 the:0.0022543302339156196 :0.03368520171861906 +besides:0.3241666073850887 and:0.17612908375482925 of:0.16509315331370872 yet:0.12923896329713846 :0.20537219224923503 +right:0.3428695974849467 desire:0.13249669777383993 reason:0.10005230094439671 power:0.08527555087986355 :0.33930585291695314 +enough:0.09682632019622033 necessary:0.058055281574562786 as:0.045852309138498325 able:0.04511826460059871 :0.7541478244901199 +building:0.04953971069635312 Is:0.03932417622263304 home,:0.03409811858802085 country:0.02902719233309874 :0.8480108021598942 +family:0.056761604920148194 Prince:0.039519447684993034 people:0.03260681570116803 there:0.01998748594297823 :0.8511246457507124 +pany:0.012800659919236235 ing:0.011505184278101646 mission:0.011170500602658522 petition:0.0044793348500036445 :0.9600443203500002 +house:0.8606166170469374 that:0.06481536510366445 which:0.019176311703694538 3:0.018780489405970654 :0.03661121673973307 +and:0.042184680902808885 which:0.03657974482013235 that:0.029704136809114125 It:0.02520681203829596 :0.8663246254296486 +probable:0.04025079728354623 the:0.03356314365229666 best:0.030341793073888765 proper:0.029921749144538917 :0.8659225168457296 +one:0.015203745373790559 mail:0.00940575543064015 got:0.008866147661877597 received:0.00812433885254039 :0.9584000126811513 +his:0.5906128574095875 a:0.11261759263000445 the:0.09158887966098901 their:0.07653626205667931 :0.12864440824273973 +refused:0.14170413056800935 seemed:0.11585012756459806 him:0.11532930622050756 not:0.0744559821253468 :0.5526604535215381 +of:0.5649862782208783 in:0.1060172817571533 to:0.06498720949257875 and:0.03910446173064028 :0.22490476879874935 +with:0.6638515030895255 in:0.21454729350140817 about:0.03905063204325186 of:0.027821353818249798 :0.05472921754756474 +to:0.8442800650914847 up:0.05825343094892751 that:0.04132907501688439 and:0.034854670781906474 :0.02128275816079698 +committee:0.1100584942254849 horses:0.07492538806831418 moment:0.056821380904283264 forces:0.027864762537177568 :0.73032997426474 +back:0.3814520376856288 down:0.15252516093832655 long:0.1308869378519429 out:0.07264516203250028 :0.2624907014916015 +Mr.:0.938644189557589 The:0.01017220862315521 Judge:0.008600111819783787 Senator:0.00598299823382023 :0.036600491765651985 +In:0.4689118869232046 that:0.2561550626252045 to:0.05687214304026847 in:0.05679127417514845 :0.1612696332361741 +in:0.12475421118630715 of:0.0735017178829504 or:0.05928878107906564 ter:0.05907846784320986 :0.683376822008467 +of:0.2842180149917382 and:0.09985742507466443 the:0.056863731246207076 The:0.028087937866721223 :0.530972890820669 +right:0.06037359069891704 consent:0.04751824577058781 use:0.02871778936258691 information:0.01284175311586424 :0.8505486210520439 +will:0.9169006532352958 may:0.03374556237728101 would:0.030371975775925836 shall:0.013765376811525277 did:0.005216431799972233 +own:0.14809657665900763 distinguished:0.06538340138383855 constant:0.06394208450309408 mind:0.02353634211321604 :0.6990415953408438 +of:0.8545319052865193 on:0.03989527245046926 ot:0.034117468058572575 and:0.025074362617190787 :0.04638099158724793 +make:0.21180570763572654 be:0.15406786411795015 get:0.07072877966089867 have:0.03776587611535564 :0.525631772470069 +It:0.285259012321637 it:0.18827392692887923 This:0.11272377265785112 which:0.07355200271082123 :0.34019128538081145 +is:0.16188800581421373 Although:0.14801148570053566 are:0.1271733704620495 and:0.11032622061750923 :0.45260091740569186 +do:0.4101549806181251 get:0.11930411981586621 be:0.0888776902051281 know:0.05853116081737279 :0.3231320485435078 +as:0.08449124730986447 a:0.06694339683793153 things:0.04004590105724752 work.:0.03164600352276398 :0.7768734512721925 +of:0.969339750824837 and:0.009779844188502165 or:0.004857854187897037 ol:0.0013051038071215135 :0.01471744699164222 +is:0.406230702366743 when:0.27601903069780775 with:0.09995914840229966 of:0.09674705309392723 :0.12104406543922236 +The:0.06702084193143606 .:0.03551768128434067 -:0.03176380503288018 I:0.030202344278882083 :0.835495327472461 +of:0.48710491603149403 around:0.36038513571892716 in:0.00034205097185917185 between:0.00021418277292180467 :0.15195371450479783 +British:0.081837407116345 most:0.06493437397082491 present:0.05937125717512009 said:0.055824906560233 :0.7380320551774772 +the:0.1968912835621874 and:0.09665214465566625 a:0.05458663954350615 The:0.0428635739205077 :0.6090063583181324 +be:0.5325944456220721 further:0.07038663327192271 remain:0.06252591225228263 the:0.04844021103493027 :0.2860527978187922 +the:0.5851496967278027 The:0.09611661986482024 with:0.053816688770674505 of:0.03165525824445497 :0.2332617363922478 +difference:0.4362471271824983 condition:0.3379342593274554 provision:0.020922830229771008 trouble:0.01885069345150382 :0.18604508980877138 +the:0.17829748611810625 from:0.14293085570457895 give:0.09301549376176568 leave:0.09082330390243261 :0.49493286051311663 +say:0.19732637177206697 extend:0.17515383819395486 help:0.13189233972998646 reply:0.05181617764677127 :0.4438112726572205 +Mr.:0.5273521208768985 George:0.14489331781569614 the:0.13944603802496952 a:0.06923672261672961 :0.11907180066570607 +or:0.8745620596192947 courts:0.009152640466467587 them:0.008556429976387758 and:0.008319523501598475 :0.09940934643625157 +per:0.21614221282733675 of:0.15043267140333083 in:0.08223923554789826 The:0.07573568571904306 :0.47545019450239107 +in:0.23837976788566317 of:0.13502217216703893 and:0.09997861162046097 on:0.08153644783323245 :0.4450830004936046 +should:0.427733235976063 can:0.27659755330870844 will:0.15469572420284777 would:0.08179808176750815 to:0.059175404744872574 +80:0.08029576207721797 60:0.07914960186363591 25:0.054113484696142494 ten:0.03736170668411791 :0.7490794446788858 +the:0.4740593269422142 tho:0.035928225964422515 a:0.029520237107374676 his:0.020138233084675633 :0.44035397690131306 +saw:0.8495107027179967 heard:0.10096719397768514 see:0.02657380506643155 let:0.0036898547465926594 :0.01925844349129404 +know:0.968492699917661 knowing:0.003529801328801004 think:0.0028676637607348227 know,:0.0015501493960920624 :0.023559685596711066 +for:0.2502513465178119 by:0.19024207917975786 to:0.13237181459348737 in:0.09975226286151327 :0.3273824968474295 +cases:0.3054459165162583 things:0.2957989380886796 men:0.030340769303665728 matters:0.029692844095294366 :0.338721531996102 +com-:0.12286393912705816 re-:0.048611204567242876 very:0.02025215128024033 really:0.015579784982060538 :0.7926929200433982 +have:0.6362879087875947 not:0.03769863823620711 be-:0.0337146255040268 be:0.029744377565935568 :0.2625544499062358 +the:0.2901485318169553 a:0.11633154501792048 his:0.04583609840420623 their:0.03924336132932338 :0.5084404634315945 +the:0.18853584761097097 and:0.15213117786330996 that:0.08758337857792638 his:0.07812641623548927 :0.4936231797123033 +now:0.30775067050065824 is:0.2517262685405152 was:0.10645973113146416 has:0.047242264676633755 :0.28682106515072864 +was:0.8646453053015137 is:0.052827398924400706 that:0.023866477564682506 not:0.015290456148507171 :0.043370362060895985 +have:0.7637182730616265 had:0.17013276299947028 havo:0.023173232820025504 not:0.0187147845493288 :0.024260946569548993 +be:0.5483290959612375 get:0.24095658720339033 properly:0.1936433091441826 bo:0.002462356696514171 :0.01460865099467529 +the:0.01085025067948318 and:0.008389661325670518 of:0.005061537798679623 quiet:0.004674818714655523 :0.9710237314815112 +found:0.08996356317399358 brought:0.028742359271207493 carried:0.028642347570390702 worked:0.01509936392012559 :0.8375523660642825 +was:0.3507549588689861 would:0.16893505872909947 had:0.13918060073146077 could:0.07886529510932211 :0.2622640865611316 +the:0.9744444492632609 tho:0.005116223949408215 tbe:0.004331500258364293 on:0.0023098220266798684 :0.013798004502286854 +of:0.6874643024572535 ot:0.2265163646279172 the:0.015796957134236473 by:0.010436195456945171 :0.059786180323647735 +me:0.8856768538349034 ber:0.048861223884260056 him:0.03706108391508255 us:0.008633573496912112 :0.01976726486884198 +the:0.5321624274198984 this:0.05636958542415369 a:0.041385222248195186 tho:0.025492228000715652 :0.3445905369070371 +the:0.5331851193412678 tho:0.3207781950394799 any:0.11244023354425914 a:0.020691506597286982 no:0.012904945477706056 +be:0.20011098487465076 allow:0.15049777525596172 give:0.05527288133557944 visit:0.05494120674884664 :0.5391771517849615 +them:0.05691828928054875 and:0.04722293031073464 up:0.04682313706768026 ought:0.04190044188737229 :0.807135201453664 +to:0.7759269246100597 then:0.03584489844109212 not:0.031710178883841374 ready:0.030560871016528296 :0.1259571270484783 +the:0.410688928478667 &:0.13129978045929808 be:0.08533518473545401 its:0.06210957234158382 :0.3105665339849971 +to:0.6576689992710384 from:0.32665312385328416 being:0.007104831705415452 on:0.006360865633465233 in:0.0022121795367968642 +within:0.11911865204789476 towards:0.09294378282891416 of:0.07807977868528995 at:0.018247883617250618 :0.6916099028206506 +to:0.3185923445914591 in:0.2321314990998888 by:0.215101972009398 into:0.09765476790036473 :0.13651941639888926 +places:0.14221617286344654 condition:0.027946780135632943 property,:0.01665907024783745 dress:0.015384037422181973 :0.797793939330901 +with:0.9552495057749739 great:0.00023327592057882432 the:0.00019111598953818309 no:0.00018094973770853864 :0.04414515257720059 +and:0.1458964365935999 of:0.1090233108039681 the:0.06915198945401219 Now,:0.048061300743966355 :0.6278669624044535 +the:0.7721200963544051 one:0.11291189900126829 his:0.05697605320666203 a:0.03136300259908859 tho:0.026628948838575965 +the:0.24629951535207026 be:0.18738829968484544 his:0.04940019747081376 their:0.03997147309241799 :0.47694051439985236 +be­:0.1868126963936821 acre:0.09970109430650673 is:0.06360221123413486 be-:0.05831896307155548 :0.5915650349941208 +a:0.49429856269242867 the:0.15558320503756443 no:0.12914000554702784 to:0.1182423407536284 due:0.10273588596935054 +education:0.06368662484198645 music:0.03979431369744316 life:0.01916056679280296 the:0.01730411702784563 :0.8600543776399218 +it:0.10434384187108355 them:0.07036717358795623 was:0.05377064500710109 him:0.05190019729474151 :0.7196181422391177 +and:0.11333412570457446 of:0.08332365537427235 the:0.07223825298761197 to:0.03988877041541385 :0.6912151955181274 +and:0.25357189433102617 of:0.17036777681713636 within:0.1412422749304447 for:0.07402983617744015 :0.36078821774395264 +for:0.29703512499344686 no:0.16731164144681265 and:0.07655252978937306 ing:0.04332373934791765 :0.41577696442244966 +equal:0.8774273228063602 pure:0.01845361836847688 it:0.00848547507652933 money:0.007500470692967887 :0.08813311305566568 +and:0.3206242540375684 |:0.13898110885094137 head,:0.09639847737797204 on:0.09148239471283005 :0.35251376502068804 +the:0.24025218592374523 was:0.13087759141682725 he:0.10042135768110441 an:0.0731838542818795 :0.45526501069644365 +old:0.40438003822767205 the:0.022549938888144886 usual:0.011175744617351626 mixed:0.008085251312155445 :0.553809026954676 +in:0.3934750809756536 under:0.12770721568391538 In:0.1189505478820231 gave:0.10877730523801946 :0.2510898502203885 +that.:0.7937021519244748 not:0.0799997254552856 so:0.024620803940946515 the:0.022451209767001976 :0.07922610891229123 +large:0.7418679625433139 largo:0.1342008732692326 great:0.05057558260657919 considerable:0.016694494434981513 :0.05666108714589271 +the:0.21310727324372986 deemed:0.08637970295847383 and:0.08436340574026568 to:0.07342847044359957 :0.542721147613931 +or:0.04292674497662613 two:0.02360730833733122 said:0.019737057791078812 several:0.018968693597337008 :0.8947601952976268 +county:0.03607268681165577 county,:0.03558078841948788 known:0.01408153079636606 County,:0.011548127764015778 :0.9027168662084745 +and:0.06217345559829059 nnd:0.042462889215937376 could:0.037462341570672304 began:0.03601698300791348 :0.8218843306071861 +will:0.00235594560996627 street.:0.0018361276574154818 a:0.0008274518738600895 side.:0.0008191953961347214 :0.9941612794626234 +and:0.26639666734337275 the:0.10199642073757495 of:0.10098798011948623 to:0.040878753959108 :0.4897401778404581 +the:0.2527513757156709 a:0.140151374344444 and:0.08527801996658946 to:0.06327378190481782 :0.4585454480684778 +who:0.35717830723259003 has:0.17831542317870258 and:0.11708330416025593 was:0.04817001016336812 :0.2992529552650832 +be:0.6839072642537407 he:0.27621099322624937 bo:0.02187657729465164 have:0.004493064551274948 :0.013512100674083392 +hoped:0.23400972541783746 desired:0.16883624192592916 said:0.018272103959712068 true,:0.012881836083136278 :0.566000092613385 +course:0.27082391791421295 name:0.13202951217585082 event:0.09582727566742305 presence:0.06710638078668472 :0.4342129134558285 +and:0.1195288975212847 of:0.0946085383758154 was:0.06294311394889755 the:0.05888899355149172 :0.6640304566025107 +to:0.7882601080353601 by:0.11180555609485202 the:0.031297214559164475 on:0.016985236859513104 :0.051651884451110415 +tie:0.2107026058176908 the:0.055320148096794426 chains:0.05395937802985376 and:0.021251752169444783 :0.6587661158862163 +is:0.7337483073624848 was:0.17857582563306582 Is:0.036339991726493444 ia:0.014050556863474284 :0.0372853184144817 +dis-:0.1513157036614765 a:0.08929368866951957 record:0.05819818555392075 vessels:0.026266523746052397 :0.6749258983690307 +to:0.18085117796685635 for:0.09746051403375099 by:0.0889997368283055 of:0.058883966726592074 :0.5738046044444951 +entirely:0.5857174740569194 more:0.06734577446620572 very:0.04402020877644041 perfectly:0.03500657052823827 :0.26790997217219625 +do,:0.1981341328700746 refuse:0.1431813578687666 learn:0.13193307139787047 be:0.12180003568298378 :0.40495140218030456 +of:0.5550900403308692 In:0.12457913487569593 was:0.09213250972499938 in:0.07569570580480346 :0.15250260926363213 +that:0.3226253098584335 when:0.20297347804560917 as:0.1468231405353802 and:0.053349791177904116 :0.27422828038267305 +the:0.1556642968145108 say:0.11469722251266648 which:0.10048797994070495 one:0.08466007633007568 :0.5444904244020421 +tween:0.42857224020047474 cause:0.15951604029825092 fore:0.13079332403667526 ing:0.027797932034711377 :0.25332046342988784 +b:0.17439332586108391 forms:0.03797862389174332 such:0.027487616661874978 country:0.01924671695668658 :0.7408937166286111 +fifty:0.014129757185283304 twenty:0.0068930377059380045 200:0.0011154024472589212 100:0.0010852475841173525 :0.9767765550774025 +and:0.18823879106888206 he:0.15548301431005596 I:0.1545156870726798 He:0.10829002937712207 :0.39347247817126013 +and:0.3366541387333086 he:0.20885074375910564 and,:0.16966686239758816 ex:0.1634369476739678 :0.12139130743602972 +In:0.01597388364200555 ground.:0.007892672553009883 city.:0.007333589580569124 country.:0.004090557966396186 :0.9647092962580193 +He:0.40459192846456443 he:0.18431902080673537 It:0.12957948595698782 and:0.0785162282309532 :0.20299333654075918 +and:0.29779540715295333 of:0.1022370501519414 were:0.06661673798683074 thence:0.0643118745754831 :0.4690389301327913 +survey:0.13945351159112723 a:0.11683995837889238 the:0.10069855868315075 northern:0.1006442960587994 :0.5423636752880302 +the:0.1305607856798786 election:0.08247228862254048 very:0.0664285722975007 year:0.05195059107499695 :0.6685877623250833 +interests:0.1279938226093194 plaintiff:0.06085613433564525 President:0.03615872467651346 wise:0.03408666054338914 :0.7409046578351329 +person:0.09163734079698863 meeting:0.03736476387153348 convention:0.026903606957820552 special:0.02455635985973799 :0.8195379285139193 +At:0.5197602260112376 at:0.27957035246956885 of:0.11326662318389775 in:0.024695236568424636 :0.06270756176687124 +the:0.030389715018411007 field:0.006220841339156402 laws:0.004337032041613131 money.:0.0032165904514930197 :0.9558358211493265 +a:0.35936925724748825 the:0.08568197715618484 individual:0.04934624954648782 dis-:0.04396368074165511 :0.4616388353081839 +out:0.19987020858877003 aside:0.1372106920188274 off:0.07236520096118368 up:0.05072150323741975 :0.539832395193799 +is:0.04097334927983688 and:0.03874886640106867 was:0.031744430208374856 of:0.031200099563409803 :0.8573332545473099 +If:0.20809079269196323 now:0.06233880534321115 more:0.06012138987823044 that:0.02064583877340432 :0.6488031733131908 +and:0.4131748713375245 that:0.19979316836660527 by:0.17726005664698735 will:0.09866252338503528 :0.11110938026384752 +tbe:0.2598388920103027 to:0.17712620865988132 at:0.1197572230439874 the:0.07948165638447609 :0.36379601990135235 +and:0.10902082491899832 the:0.09036354678933409 of:0.08889906046249861 to:0.043355137401107274 :0.6683614304280617 +a:0.09821203209787502 equally:0.08447118315779575 as:0.0838845796352246 the:0.054285154155379295 :0.6791470509537253 +shall:0.20566362376757824 power:0.03035137765658957 !:0.016500846332501692 child:0.01306152140380463 :0.7344226308395259 +of:0.18845218561967342 with:0.12013973615251468 to:0.09934085385534215 in:0.09916309184252345 :0.4929041325299463 +and:0.28138531769647185 in:0.06064766492115401 the:0.057947808074778805 of:0.045961629044953864 :0.5540575802626414 +and:0.4309837732840216 of:0.12426305677616178 showed:0.07800778103993287 shows:0.05218031327680851 :0.31456507562307523 +the:0.7378276608646117 our:0.06470060669210341 tho:0.06136754788287379 a:0.05698381442793458 :0.07912037013247665 +.:0.09992488029118501 F.:0.07944161615545454 Mrs.:0.0420209847464162 -:0.031334514477643564 :0.7472780043293008 +of:0.3436603843864836 the:0.20604322587997723 as:0.11893781524372411 and:0.06521088661978738 :0.26614768787002774 +Young:0.09867996642088873 Johnson:0.010150338745746666 J.:0.0015300332719396417 M.:0.0014867214735728989 :0.8881529400878521 +the:0.48706663200660183 ns:0.08512036982196225 one:0.022473582008054712 Mr.:0.00624933122013656 :0.3990900849432446 +effect:0.9285160161717204 fact:0.03413256129523429 conclusion:0.0036452733239451087 end:0.002491223861137297 :0.031214925347962715 +and:0.16113253427474059 of:0.13120165638461967 the:0.06375032211946122 to:0.04747319941801567 :0.5964422878031628 +that:0.12873516604283936 and:0.1262592005255149 but:0.10227913987649412 as:0.1020808777374084 :0.5406456158177433 +These:0.5572450966042801 They:0.20203617466086218 which:0.0262232469465002 Here:0.022933273573751262 :0.19156220821460626 +to:0.3553007628352773 in:0.17929947780488012 by:0.16993583547166768 the:0.12430987984184627 :0.17115404404632864 +of:0.8582744502742494 ot:0.09415992646693339 ol:0.004896434950107837 or:7.767275589300093e-05 :0.042591515552816414 +the:0.029755696570637823 that:0.004672538166442019 their:0.0030757946728574236 j:0.0009862827995970515 :0.9615096877904658 +the:0.5192370661328886 a:0.057676229315959504 his:0.041491996401172744 be:0.03984634117173684 :0.34174836697824246 +In:0.15861975997530867 in:0.15205053581932537 down:0.10181797381204236 her:0.018054967844804953 :0.5694567625485186 +the:0.13171576174958857 growth:0.03176121299986486 interest:0.030239398653508016 it:0.025016779010954362 :0.7812668475860842 +and:0.2676218631570892 public:0.026964194936449807 the:0.026918741413088018 tho:0.011484544108501022 :0.667010656384872 +circumstances:0.30432534001292527 committee:0.19809293151219323 should:0.05655762107515871 to:0.04042142244908695 :0.40060268495063595 +there.:0.05310226796891048 in:0.0015394311495691238 of:0.0013581738397732037 by:0.0010211508076286287 :0.9429789762341185 +A.:0.9869795988211303 A:0.00830596921522287 a.:0.0011115366124355164 .:0.00021346381180487658 :0.0033894315394063343 +he:0.3111682815504524 tbey:0.10093071079663335 they:0.08156063395944034 I:0.08047347276169303 :0.4258669009317808 +with:0.22341516319595486 of:0.15246480124097314 time:0.030936516377746387 end:0.009500104586745401 :0.5836834145985803 +the:0.4074787539925874 you:0.13006418832948574 it:0.11445084067841815 him:0.10873666069892296 :0.23926955630058566 +war,:0.04348931924110012 man:0.02957399831026194 lot:0.016749388740238322 and:0.009092060173125242 :0.9010952335352743 +of:0.3110705216036788 and:0.1320248446544669 to:0.12291410205602417 in:0.10155927482159938 :0.3324312568642307 +serious:0.05503607516041041 much:0.023732993367840963 in-:0.012876338050874162 bad:0.007610773210056629 :0.9007438202108178 +the:0.012806419029122914 it.:0.011722711301194058 him.:0.0029424638853990095 good:0.002357468847091459 :0.9701709369371927 +the:0.09564759613976433 to:0.0636094606367337 and:0.06082193912915655 of:0.05076079159879086 :0.7291602124955545 +new:0.14105158882895763 public:0.03628476348478011 longer:0.02583393516902693 more:0.020589548383454087 :0.7762401641337814 +and:0.17753640426916223 H.:0.06807129116194179 A.:0.06396357895957759 W.:0.05303033797411892 :0.6373983876351994 +few:0.04580138985728502 little:0.04160333660977829 young:0.030045403326905355 large:0.01950382436415929 :0.863046045841872 +of:0.5847040735667539 that:0.11228870682965947 by:0.10700262506460725 with:0.10397060087461439 :0.09203399366436509 +opened:0.14020950803697754 a:0.03996678898087729 how:0.028710054504249093 feet:0.026392105600073535 :0.7647215428778225 +time:0.03128666220987697 result:0.019648715755723897 course:0.0172000375748051 death:0.017194003865142138 :0.9146705805944518 +certain:0.019743697102862775 true:0.016606186232557742 whenever:0.01190256532688777 time,:0.010867173292792494 :0.9408803780448992 +series:0.1510457875589371 line:0.11559923806979625 hours:0.1028116617956519 train:0.10245620130342124 :0.5280871112721934 +the:0.4461392245159986 a:0.10785788460103217 those:0.08056765414356358 General:0.055215756813540115 :0.3102194799258656 +government:0.04400937365746281 French:0.04177257690463479 South:0.034421292923439456 government,:0.03152927261455545 :0.8482674838999076 +the:0.8196000426331015 its:0.13077674468713224 a:0.014606728252396374 this:0.0075941511366697904 :0.0274223332907004 +people,:0.07895822171746802 States:0.042463467946159725 counties:0.032149506782188975 authorities:0.014871802360335093 :0.8315570011938481 +over:0.317313859504419 off:0.26405768835654975 out:0.11822421107292096 away:0.05942847857505833 :0.24097576249105196 +the:0.7307805075160178 The:0.1792440275616138 upon:0.026889487094263052 if:0.018913229096524316 :0.04417274873158103 +of:0.13509532264635726 and:0.08081432377344766 the:0.05784999247034758 Mrs.:0.037155099257141534 :0.6890852618527059 +set:0.21046680682634736 called:0.11716343755099591 looked:0.06398079155648588 made:0.005229721031585256 :0.6031592430345856 +young:0.6998455902225548 two:0.08234093789850926 liquor:0.016953129855608675 steel:0.011413404256643759 :0.18944693776668353 +the:0.48586531215775586 a:0.06274443461114419 his:0.05695352129629626 this:0.052296748066261584 :0.34213998386854205 +in:0.18784894066429875 to:0.16998781615199546 for:0.10192619611036086 from:0.09101486515006078 :0.4492221819232842 +of:0.43904053694169004 and:0.05554558876743403 containing:0.026659180556706897 numbered:0.019163547147207333 :0.45959114658696176 +the:0.6639910857223236 a:0.04395509118460213 tho:0.03263320873344793 be:0.025825068708494877 :0.23359554565113141 +was:0.16427297585054518 is:0.1640745220332431 the:0.154115420164087 are:0.09266107853457325 :0.42487600341755133 +placed:0.06394454547857509 put:0.041933990892101855 made:0.03287004962008433 due:0.023315966845216952 :0.8379354471640218 +people,:0.07394344306844977 President,:0.01943111739441014 demand:0.01651440707489813 North:0.01589228979865768 :0.8742187426635841 +and:0.2818604668046036 the:0.16960711428866426 n:0.13994284924247588 as:0.09663808936384516 :0.31195148030041114 +who:0.46244117973007975 them:0.13318137072085282 which:0.0807174774022523 what:0.05798702720482026 :0.26567294494199484 +he:0.406402186701161 you:0.17556924626117928 I:0.16493875713645645 it:0.12667801981599222 they:0.12641179008521108 +the:0.2674619755588683 In:0.18149581674886103 «:0.014731098126633249 H:0.008287294422774264 :0.5280238151428631 +feet:0.11576883673193583 chains:0.036912283591317846 and:0.023904592593537086 it:0.015442150069972477 :0.8079721370132368 +national:0.06681941174392564 most:0.06533793839625313 highly:0.05358670857466031 Washington:0.04300974105312988 :0.7712462002320309 +hall:0.015403710744900224 point:0.010351560226484414 city:0.007448286634255601 station:0.0058169112715465085 :0.9609795311228134 +a:0.251571815168955 on:0.08286301068691378 the:0.07708299662102898 I:0.03968360442939164 :0.5487985730937106 +been:0.46412285944609366 no:0.06931153737124106 a:0.061113099429756554 their:0.058421463329734656 :0.34703104042317395 +to:0.17088508648722056 and:0.13179993078920588 the:0.046280761646267654 of:0.0442264829931031 :0.6068077380842027 +that:0.32525809361200636 and:0.1690491241437292 since:0.09326090272769307 where:0.08610805812270671 :0.32632382139386473 +that:0.8518433796456721 and:0.052597743571738485 of:0.02201821715271666 or:0.01734303749875646 :0.05619762213111617 +in:0.1950844847113517 of:0.1898898305640078 by:0.10740123267460665 In:0.09078416326039324 :0.41684028878964063 +the:0.7734156977578271 this:0.04396614261708023 tho:0.03983907809362994 our:0.03299534573375241 :0.10978373579771032 +other:0.9989510858870454 the:0.0006460338248798982 their:4.075453105353679e-05 send:3.552609948551426e-05 :0.0003265996575356456 +the:0.9164475228893013 their:0.04224397962575926 a:0.04017109540167313 its:0.0006631681133864354 :0.0004742339698798172 +been:0.2942637463381091 the:0.17548832188473684 a:0.10280361367232625 no:0.04609101735159452 :0.38135330075323337 +any:0.6084405166816763 the:0.04936973102873396 her:0.038036024351710204 One:0.020332729088282802 :0.2838209988495968 +and:0.03245717991906604 tion:0.023584448748137914 County:0.02328896077818134 county:0.022549835128447434 :0.8981195754261672 +one-half:0.17694264669537904 a:0.023395967828846297 one:0.02292715068687432 the:0.021589612608639917 :0.7551446221802602 +that:0.836741859327605 if:0.03459798772113273 are:0.018139205635594426 above:0.0074669732199231665 :0.10305397409574468 +appear:0.3153503635064902 put:0.09106904030295437 be:0.042860048026879476 him:0.025110921345401892 :0.525609626818274 +of:0.7527587228080901 for:0.13216568263253275 was:0.03448269998899289 the:0.02741977176890521 :0.05317312280147927 +I:0.1864796661101851 it:0.17622516742764077 he:0.15492735779335193 which:0.08920658844124205 :0.3931612202275802 +so:0.16606921718334533 came:0.12164670507325005 the:0.1095872849964594 settled:0.05655105388114379 :0.5461457388658016 +and:0.09225606577111733 of:0.06576877658326725 mortgage:0.06524990688228172 the:0.06302367797357963 :0.7137015727897541 +his:0.39922151221804353 Mr.:0.22489307006166193 the:0.1194739238867059 Senator:0.03495551963111691 :0.22145597420247173 +of:0.09035235607734679 and:0.07987098391471971 the:0.07507444376615427 to:0.03280748853043819 :0.7218947277113411 +of:0.6257597119509214 in:0.0907614885621265 and:0.08301502665269726 to:0.043478071856976455 :0.15698570097727835 +lands:0.36023258974003697 rights:0.2534767489005454 license:0.07072380567757151 relief:0.006509360489019685 :0.3090574951928264 +and:0.36211191600716536 In:0.2203878356691605 the:0.12500897592917418 they:0.10393133778886471 :0.18855993460563522 +has:0.8165128733039501 from:0.10084007417800996 till:0.015438141263086371 or:0.011446838281637386 :0.05576207297331628 +of:0.16851473050322024 and:0.14445790127226713 or:0.047717074405336464 to:0.04284153891772934 :0.5964687549014469 +the:0.46970957328965185 any:0.1575447711011085 its:0.04070589259718932 a:0.03191727529975378 :0.3001224877122965 +know:0.04780769169619215 have:0.04153030441823436 had:0.028075107978050625 and:0.023368964076701405 :0.8592179318308214 +do:0.38446498337398904 of:0.10027545426330309 way:0.02654083575319735 century:0.020056480816814867 :0.4686622457926956 +and:0.28164559002238637 of:0.04328158150906735 any:0.04175675627983552 than:0.028055578241003003 :0.6052604939477079 +decided:0.46234063738436165 supposed:0.15803693915646566 necessary:0.11836411689978622 proposed:0.08406842601028153 :0.17718988054910498 +month:0.1531346738121573 mouth:0.004887593433977561 pound:0.001691155709136465 year:0.0013881901489131777 :0.8388983868958158 +of:0.4009911561743955 for:0.16588385428007554 lor:0.012533208861237296 Justice:0.012344661259408378 :0.4082471194248833 +and:0.27569775332299673 the:0.236618060172513 The:0.16671444871080218 a:0.052213555881538705 :0.26875618191214945 +.:0.037233676373745694 -:0.028429044580579238 i:0.026824322427896816 the:0.02588974388782588 :0.8816232127299524 +a:0.9775406309741531 any:0.00855126887795978 the:0.005988825829648373 for:0.003138773243298334 :0.004780501074940404 +or:0.9460226938741261 and:0.022835184358575872 to:0.01849735816700472 ol:0.0005183444087508881 :0.012126419191542363 +blood:0.006964086859831287 stomach:0.006788974197360625 peace:0.0063276249369617335 rules:0.005979151802138439 :0.9739401622037078 +1st:0.0468161358805213 place:0.041435656677588015 citizens:0.034582538548782335 people:0.02352972267166154 :0.8536359462214468 +and:0.2320177571407489 who:0.20204058066492733 has:0.14251011885536044 lias:0.12909306825537478 :0.2943384750835885 +It:0.07483799504106657 it:0.07451270234681794 and:0.05297970121432179 which:0.047200395757818404 :0.7504692056399755 +a:0.4420726664792229 an:0.22641272670422102 the:0.10117404450673566 and:0.033869558877321355 :0.19647100343249896 +her:0.39857134471171995 the:0.24729674419054018 a:0.06645294464887629 his:0.033512936028249375 :0.2541660304206142 +ten:0.3598933296895496 eight:0.3471425621766995 six:0.14198862778984175 five:0.08638844980467908 nine:0.06458703053922994 +the:0.5672163273485397 his:0.10873097707428533 one:0.039055394247752916 opposite:0.03854349443850909 :0.2464538068909131 +of:0.7910268952953697 door:0.06590299726912055 in:0.03287044021655593 and:0.02014272978998167 :0.0900569374289721 +of:0.11781707325782889 was:0.08501257431200406 theory:0.0716467438340936 had:0.06482835521748882 :0.6606952533785846 +the:0.8126548246685461 such:0.11299266952238651 said:0.03891418367417941 every:0.022001854781128913 a.:0.013436467353759092 +well.:0.3677097037002958 very:0.17079492553086012 pretty:0.07210114703410171 old:0.04033966373532526 :0.3490545599994171 +some:0.049623677432658594 in:0.0133202169534767 them:0.005220215678374444 all:0.0024232356304240074 :0.9294126543050665 +as:0.5015638857639593 in:0.22059210651315564 of:0.08178047981567031 for:0.07879317944771846 :0.11727034845949641 +the:0.1616642329414214 his:0.0893369859612165 and:0.06790424160113678 to:0.06706786092153554 :0.6140266785746898 +to:0.433394062076232 in:0.21374294017543063 In:0.10881310886170714 iu:0.043039952390570756 :0.2010099364960594 +same:0.05525060665703916 other:0.044442423122410334 first:0.012298428092495936 way:0.008666448256146476 :0.8793420938719081 +in:0.996705881899909 In:0.0028757961133723912 at:0.0001925620910295757 until:0.00012150595462750198 for:0.00010425394106156895 +the:0.24938168391200977 The:0.22409840436627376 a:0.1208257227366789 and:0.06348816661453294 :0.34220602237050474 +own:0.28292229208623465 various:0.07278143566371598 valuable:0.014974040216971778 remarkable:0.013249438352529107 :0.6160727936805485 +the:0.44432828306156835 my:0.08655572078079204 a:0.08029167798624844 this:0.053040017329517776 :0.33578430084187344 +It:0.22797112009884782 it:0.22325742139258237 there:0.11363665057439497 which:0.07242391066318853 :0.36271089727098627 +do:0.7399416735067449 It:0.016325221172724547 probably:0.01397310504130628 think:0.012769362378715584 :0.21699063790050857 +find:0.9024781255193348 have:0.040907342822613366 do:0.023356635064447084 be:0.015760077952988772 :0.017497818640616055 +become:0.16808056319574802 now:0.09564674858755569 is:0.0820824179930522 are:0.07235595457286464 :0.5818343156507795 +to:0.7382061124886472 the:0.18070845713997388 and:0.04785882197357421 of:0.014346358073441139 :0.01888025032436359 +home:0.1916334443630148 next:0.08030173876380364 regular:0.05522312204660977 last:0.040569388028809765 :0.632272306797762 +I:0.10456975597772017 and:0.07958211154130303 -:0.04919790609760749 the:0.0462540638127116 :0.7203961625706576 +and:0.44179295548141917 who:0.115078531041636 that:0.09827743919071077 are:0.0680436855885869 :0.27680738869764715 +familiar:0.07982683516809394 lived:0.043859672845489445 it:0.03213338114820407 addition:0.02891118751346817 :0.8152689233247444 +the:0.22358150662060872 Congress:0.028104811791969598 said:0.013502795973435516 a:0.013427782074862487 :0.7213831035391237 +of:0.47950941840881656 the:0.07918930292639464 This:0.036141180153112455 The:0.029663929434050745 :0.37549616907762556 +manner:0.7166440588144487 committee:0.026511947313467846 week:0.02292123228193944 no:0.004509494689743979 :0.22941326690040004 +the:0.49224584248792685 to:0.09698581117391548 his:0.03279697155120904 six:0.026725740459784764 :0.3512456343271638 +right:0.44349542746957327 passed:0.08480988613962535 came:0.07920830588995278 took:0.052420518223070256 :0.3400658622777783 +and:0.43590934140280035 shows:0.13104089764617943 decree:0.03702571656728918 found:0.026691672296153015 :0.369332372087578 +done.:0.007918493079205054 familiar:0.003093199562555796 ob-:0.0020674054573104903 set:0.001973673461118391 :0.9849472284398102 +of:0.6161178138760028 on:0.14776147168732828 to:0.04943115999830695 and:0.028264868431673442 :0.15842468600668833 +is:0.5484424945151725 was:0.335197111748429 would:0.017335212898293813 does:0.011934834078263571 :0.08709034675984118 +The:0.8211873993989247 the:0.04923521968342266 snd:0.0050588948745480386 between:0.0017256304105658466 :0.12279285563253861 +the:0.492976404837926 a:0.0659100177103114 tho:0.056951768075387 these:0.040399623680844904 :0.3437621856955307 +the:0.13544409434487284 to:0.10136721997441278 and:0.05867978014109769 a:0.05815046478657239 :0.6463584407530442 +time:0.17514267254116628 days:0.1203945007287334 war,:0.058405661499613626 year:0.027832745774210868 :0.6182244194562758 +of:0.34321467368104885 in:0.3320547245984556 the:0.20282620843779875 and:0.033230009189404365 :0.0886743840932924 +getting:0.24463365056276526 being:0.21659936423838644 the:0.2003992888303755 Hie:0.021428971732512583 :0.3169387246359602 +the:0.4190300880256831 a:0.08235903283847246 be:0.047722622617854364 his:0.03917660907074292 :0.41171164744724725 +a:0.45144032353837343 the:0.2962169530790316 an:0.07648114687664187 their:0.05956307439914002 :0.116298502106813 +of:0.45824184602477885 The:0.17136762267831526 to:0.10155119700948248 a:0.07524568155493039 :0.1935936527324929 +to:0.3488150060111342 will:0.2095026006137206 may:0.13088224112370236 shall:0.10584656677264426 :0.20495358547879852 +not:0.31940571321701344 fairly:0.08994780913774612 but:0.08227984520681299 tho:0.054010115671066096 :0.45435651676736133 +into:0.9256462213654789 in:0.035633714432629734 to:0.03143953920601759 up:0.005779788782059554 all:0.0015007362138142006 +bond:0.04463960222710704 and:0.04315806860240622 each:0.042596753912306516 bonds:0.03555137336649297 :0.8340542018916872 +he:0.5984430017818329 she:0.05849176067159814 it:0.05354369137344602 ho:0.04049059865786054 :0.24903094751526245 +side:0.5506209466066512 end:0.07935890561785687 members:0.07637022196739016 parts:0.02961214158588579 :0.26403778422221585 +first:0.02808585034233156 most:0.017998583346288004 the:0.017495366584367875 of:0.01542243166282806 :0.9209977680641844 +York:0.08174567030648801 the:0.01102113351153317 I:0.009987418664264239 England:0.0026150444024560585 :0.8946307331152584 +to:0.725615142302934 and:0.26816548157302 nd:0.0013174455860347283 cannot:0.0012641894002597338 :0.0036377411377515817 +was:0.8073316532504221 have:0.1763535634442978 can:0.008743082019433237 had:0.0023958980029809146 :0.005175803282865991 +the:0.7302919865696803 The:0.05692414410700065 and:0.050005151141893654 with:0.02841573745699146 :0.13436298072443392 +and:0.10243559385587857 the:0.07326006092606635 of:0.06583021679904097 to:0.032739611529676985 :0.725734516889337 +a:0.7052767728507061 the:0.09481245166893411 two:0.029960295724699382 n:0.019551496269899542 :0.15039898348576092 +I:0.4155886139684066 to:0.18836158294199234 and:0.05683764932394353 in:0.019420121305585236 :0.31979203246007226 +de¬:0.8655157111519544 and:0.03776007449178193 are:0.027536594084218928 never:0.02221036469735484 :0.04697725557468997 +the:0.9267641976944193 tbe:0.008767642874940269 this:0.006608433272391538 tlie:0.006601249501335954 :0.05125847665691311 +8:0.07604674784953978 the:0.021324748806620934 his:0.010946438273199183 of:0.003944265544932461 :0.8877377995257074 +floor:0.05010046980913586 people,:0.047697245059791706 army:0.03880428282467781 clerk:0.013117759636470343 :0.8502802426699242 +them.:0.007811664056218367 money:0.003965727633656047 do.:0.0033456426259477687 4:0.0025174164720725895 :0.9823595492121052 +there:0.7772239195343571 they:0.13408078448409286 we:0.02674035062275292 you:0.005027035110922509 :0.05692791024787467 +is:0.25787587349818114 a:0.20135252627475309 therefore,:0.14942839909444983 and:0.14180648466880014 :0.2495367164638158 +D:0.981329413260305 D.:0.006202433454451153 M:0.004831699293735483 J:0.003934567956410031 B:0.0037018860350983276 +every:0.3665215912520824 the:0.24213085305764023 a:0.20524701787203944 Any:0.10276137560214542 :0.08333916221609261 +of:0.07006301724184441 it:0.05434407979242714 there:0.05395162638382413 after:0.038154044731120655 :0.7834872318507837 +to:0.7078701150095993 shall:0.11328969858186279 te:0.04975038555042134 will:0.04665113774753878 :0.08243866311057778 +the:0.49461196456358814 a:0.07572052861377926 said:0.047924512139780155 their:0.0389640928410132 :0.34277890184183935 +city.:0.006563980132949334 world.:0.004162343824368924 exercise:0.0025103645039185854 people.:0.0024174589165909775 :0.9843458526221721 +and:0.09586631362333566 seed:0.09047332469766313 at:0.03331715468920851 are:0.029153949539074048 :0.7511892574507187 +and:0.16283810505588592 to:0.13240541033016118 the:0.05655143433853143 of:0.04671811970180696 :0.6014869305736145 +the:0.7000386432605008 of:0.05913807835660154 cold:0.029450573951159367 Its:0.0221611887017082 :0.18921151573003014 +of:0.5599171486721006 from:0.054159570789078564 by:0.003487955274107759 to:0.0031210326916895712 :0.37931429257302357 +want:0.5353396456070386 believe:0.05553823192015701 know:0.055309938714686153 took:0.02186481243223688 :0.33194737132588115 +in:0.8523579216713624 In:0.08611121299130567 to:0.017426635207301148 la:0.007032287247377309 :0.03707194288265336 +of:0.27282775184431474 to:0.18026724612801867 with:0.11959452453917548 for:0.10709409313471376 :0.32021638435377736 +to:0.1363198184543359 1,:0.11052476288598756 Mr:0.07805622137141055 Miss:0.07776469282974306 :0.597334504458523 +could:0.948674143846525 can:0.02182980729835113 should:0.014498177222210595 must:0.005711679931071727 :0.009286191701841596 +been:0.9313557206982168 for:0.03190223590130376 as:0.014322302865224441 and:0.01051124499010498 :0.011908495545150057 +the:0.13999866854279006 a:0.033361476737500964 other:0.027913149655302952 was:0.02773480099196856 :0.7709919040724373 +to:0.21201626977839955 by:0.11643926564893181 with:0.10867762079583532 President:0.08855965609481702 :0.4743071876820163 +When:0.3107814293717464 where:0.20462850099922128 when:0.11182791923220672 and:0.08162291853991109 :0.2911392318569145 +regard:0.5366827308102624 the:0.020877826499576993 proportion:0.0201940953469448 and:0.008337456684058357 :0.41390789065915756 +the:0.404595825578326 by:0.1220444301286138 a:0.09545085103678759 at:0.05425856803506045 :0.323650325221212 +the:0.413381899741033 a:0.07206719246930514 this:0.04588509208605455 tho:0.03540408637463947 :0.43326172932896795 +must:0.5119904233054275 is:0.31337405318386247 of:0.09579100937683137 to:0.041158777381932396 :0.037685736751946294 +the:0.2986540462400608 Dr.:0.25621141626112237 me.:0.07663835027596265 her:0.06244337908780394 :0.30605280813505015 +the:0.8888061013751686 tho:0.016929223079856174 satisfy:0.014736336832748944 order:0.004693510737862096 :0.07483482797436417 +do:0.12222798357555224 be:0.09449638063553978 make:0.05715618544581529 show:0.04254027904717283 :0.6835791712959198 +cars:0.04711386981437621 doors:0.011822850758429143 men:0.004359285557126385 which:0.0025558233232506294 :0.9341481705468176 +and:0.20942292507319255 at:0.057074497642820694 as:0.04151348538868933 up:0.02224801519336955 :0.6697410767019278 +them:0.13062042904952956 them,:0.08682422167650208 that:0.028301083892260836 the:0.0190216298191499 :0.7352326355625577 +the:0.9230044588085211 tho:0.010665365980931934 an:0.0045780323709872 off:0.002191067611904746 :0.0595610752276551 +and:0.19808858821169395 inter-:0.12384064935371503 district:0.07312892392282995 am:0.035071930701488216 :0.5698699078102728 +J:0.307902442861579 W:0.07246133206033308 A:0.062068019771446235 C:0.03714171919056787 :0.520426486116074 +trust:0.08352661843023672 appeared:0.010846160926776099 orders:0.010311401635338356 ease:0.00734874387167637 :0.8879670751359724 +and:0.12350495554510299 ot:0.03637748060344872 was:0.025508849675375856 that:0.019240576541075406 :0.795368137634997 +does:0.5449005368175316 did:0.25351484379627176 would:0.1421335603235012 will:0.024299833645363745 :0.03515122541733164 +are:0.8442038945131121 were:0.08468188302118866 aro:0.057261347473161625 and:0.0030304151733734504 :0.010822459819164326 +the:0.562305948383048 selling:0.07601313795740451 a:0.053235631053731775 his:0.05264949167998941 :0.2557957909258264 +and:0.0719609626258702 of:0.052086460567587485 the:0.04486681487073552 a:0.037510613405780074 :0.7935751485300266 +to:0.6751779599205319 on:0.0642779967304553 into:0.04845610161638989 on,:0.04091920597445969 :0.1711687357581632 +of:0.3353751485382538 and:0.1206551391907784 to:0.057802071059331175 in:0.056338467592986184 :0.4298291736186505 +me:0.09827617655340136 tne:0.06419512156186331 cured:0.058433282344495935 and:0.04207586866016771 :0.7370195508800715 +and:0.8986251234833748 but:0.05807005615690296 when:0.022505707627737258 that:0.010187504179859249 :0.010611608552125899 +the:0.48572009130916044 a:0.13255448946664505 said:0.09089209895545804 those:0.06333894254300294 :0.22749437772573342 +are:0.34254769912539523 were:0.25543230996670985 have:0.07801727386831178 will:0.05705891426797697 :0.26694380277160606 +who:0.31773893092821665 and:0.14300414513523543 General:0.05063134138272812 to:0.0370648788171778 :0.45156070373664203 +First:0.03438999426366279 said:0.028183060846314233 to:0.026203878581890605 the:0.017113041839953724 :0.8941100244681788 +laid:0.05834532956905329 It:0.056318896313847705 of:0.048142518891079226 them:0.03947867397622219 :0.7977145812497977 +are:0.19570489658932338 was:0.16860974628249684 is:0.1071558589676851 were:0.0934037708154494 :0.4351257273450453 +which:0.25573677395894884 and:0.18149743853497188 that:0.12226426176709675 below:0.11336320183217366 :0.3271383239068089 +amendment:0.6190391754916836 value:0.018914565110152628 protection:0.015965379826702583 interest:0.013748042969074815 :0.33233283660238633 +appointment:0.6054918112863141 re-:0.07217210141932005 Senate:0.026611771342477487 senate:0.02542634990325731 :0.2702979660486311 +have:0.32663538170010564 has:0.2205390866149026 had:0.08361371937876387 lias:0.06393192877625863 :0.30527988352996926 +bonds:0.044845733276395475 plans:0.04162371872349342 States:0.026423332375171922 facts:0.019178234088798974 :0.8679289815361402 +bring:0.1663133974247216 strike:0.08343165864483505 keep:0.05285293547711381 meet:0.04585175742192822 :0.6515502510314014 +many:0.029567839066703887 nothing:0.016382440149505746 account:0.00952479306595275 each:0.009281043952600128 :0.9352438837652374 +things:0.060093577070220915 friends:0.024844421217922127 private:0.013228148260343037 years:0.012883299118426497 :0.8889505543330875 +was:0.9600402207596537 as:0.020544216149630527 is:0.008758289620236798 had:0.0008442425868069153 :0.009813030883672233 +In:0.637842100424575 At:0.12871197051966604 After:0.1012719262128766 The:0.010205622681694414 :0.12196838016118797 +such:0.14877022532701945 and:0.12980116448482942 tions:0.09515271899723225 so:0.06853102647016113 :0.5577448647207576 +at:0.009217687726851807 year.:0.007905395715588882 day.:0.004852100253393544 time.:0.0035952262929423466 :0.9744295900112234 +a:0.9420534936829402 the:0.04644383533466283 when:0.0007650873131393996 tho:0.0007156495192049543 :0.010021934150052543 +most:0.26214272453149823 some:0.16753303279575266 powers:0.11113253739730224 the:0.07695629752095015 :0.38223540775449655 +that:0.43467638270467257 of:0.26878172851753496 whether:0.0985012601607156 what:0.07187172424954377 :0.12616890436753314 +and:0.2492870272447418 silk:0.07373164715681944 field:0.05949160784810995 white:0.02584682038437118 :0.5916428973659577 +of:0.40476820186752815 dated:0.30109625495167724 on:0.0505925919816534 day:0.03107022659454394 :0.2124727246045972 +portion:0.1588341921544283 posed:0.007324443393955163 motion:0.0019303755375121652 pose:0.0007751140974133254 :0.8311358748166909 +far:0.6546490106446026 much:0.11536017861805473 long:0.07967553224736569 fur:0.020040729792364827 :0.13027454869761224 +not:0.3388657460780406 a:0.12233043839445881 i:0.09007589066427395 going:0.04452455887911739 :0.40420336598410933 +the:0.4692483101586368 our:0.07255203042659983 open:0.07173025669057725 your:0.036403122223840054 :0.3500662805003461 +of:0.9205315319385629 or:0.0631155459398095 ot:0.007135269527962154 Of:0.0033118184994494282 :0.005905834094216153 +patient:0.1553844613936321 stream:0.0428916941764182 what:0.03779311999795023 case:0.028830768921521345 :0.7350999555104781 +a:0.18095925943126948 the:0.10775149746229559 more:0.08978446882877245 so:0.04945664446522091 :0.5720481298124417 +because:0.23246224813654093 with:0.10123880683677736 of:0.08338450302443845 if:0.06486875999255506 :0.5180456820096881 +of:0.09549050277129471 and:0.06202831866457094 in:0.03402601846476595 to:0.030719395727426626 :0.7777357643719418 +the:0.7517299172351881 bis:0.08413466724491253 a:0.0528741326528441 tlio:0.03151933698838419 :0.07974194587867094 +soon:0.943805421065817 then:0.013237050762684844 it:0.01265474558478671 also:0.00798443257879256 :0.022318350007919017 +a:0.04895459812085708 the:0.005796518144274768 average:0.0028111429155659473 of:0.002103234438585674 :0.9403345063807164 +has:0.8203114082087501 that:0.01739278379552051 by:0.015103321949252353 enable:0.012606429988901081 :0.1345860560575761 +more:0.13731808807274026 first:0.031740725908561356 most:0.030096359368451592 The:0.015725500340419776 :0.785119326309827 +the:0.2597487126856172 to:0.22640269363332424 a:0.08355344176091428 by:0.049495185050300504 :0.38079996686984374 +the:0.9889319725733946 tbe:0.004125649747826037 this:0.002878585199118224 tho:0.0007159446502583596 :0.0033478478294028512 +died:0.2326786551200966 all:0.17276184963493252 was:0.14997684073429526 out:0.10526325624902214 :0.33931939826165325 +himself:0.04893991956618892 Brown:0.0049485624085513795 words:0.004410465430343053 representatives:0.004171728624966492 :0.9375293239699503 +not:0.6128129059499239 you:0.29136828310072876 we:0.0705639179510472 I:0.004944847410493515 :0.020310045587806594 +to:0.43185653160878895 dollars:0.25050033277799366 dollars,:0.13759338101366658 or:0.02881228195910416 :0.15123747264044676 +of:0.9022052306640663 some:0.03413057841557584 by:0.014760041073473932 was:0.008165333242331181 :0.04073881660455273 +and:0.11963436893585429 to:0.10203011606305804 of:0.08531624934869989 the:0.05730254171760737 :0.6357167239347805 +the:0.20610366995800777 his:0.09614783101146053 to:0.07976796153392193 of:0.07428316123155547 :0.5436973762650543 +tract:0.0008514584151442944 form:0.00015029644153266176 test:0.00012665012331291144 -:5.9188554087041585e-05 :0.9988124064659231 +its:0.4116617629374747 the:0.12451728171198427 his:0.048946048680587405 their:0.03374022939194344 :0.38113467727801015 +first:0.9574606353517008 second:0.026923779432504874 third:0.012477180959517588 next:0.0006909668917741141 :0.00244743736450271 +the:0.19650915259298538 to:0.13271029348965263 a:0.13151087051349578 and:0.11623290878196474 :0.42303677462190165 +of:0.7950614301136355 and:0.07197213121685629 or:0.061518117663221086 more:0.02712399959334746 :0.04432432141293962 +of:0.2497398786408573 to:0.1678718846978335 on:0.1192710918133106 for:0.11113044378991505 :0.35198670105808366 +it:0.9594788742579662 It:0.031800545957997896 there:0.003688452006186877 he:0.001769589694504597 :0.003262538083344341 +It:0.24931943821848512 and:0.13336619740194172 which:0.10578391776343232 This:0.09307917271611067 :0.41845127390003 +public:0.03838006828854572 same:0.03711053030365576 E.:0.03433778460337341 American:0.032520023493279655 :0.8576515933111454 +an:0.879771176501775 the:0.0629721454716454 au:0.01836978370767824 his:0.012204322685171732 :0.02668257163372963 +the:0.715638129406915 tho:0.07319253720830961 tbe:0.06064580583868396 all:0.035636911958518994 :0.11488661558757238 +the:0.9383988249387042 other:0.02584411749336519 mining:0.024324625285524388 public:0.010899792811924195 said:0.0005326394704820058 +and:0.07025686593292467 of:0.0677821347229824 the:0.04280193917972365 to:0.029575403887750405 :0.7895836562766188 +The:0.7110231230813163 Our:0.1341441472830936 the:0.0652962875329938 and:0.029689759563142272 :0.059846682539453834 +the:0.45186633835790957 a:0.05488102460898128 tho:0.02730025029688778 his:0.025187653591670744 :0.4407647331445506 +in:0.24848436866024834 an:0.12498295973438708 the:0.11464446262523839 and:0.07976181740180283 :0.4321263915783232 +of:0.6796330942834279 and:0.07542048719788276 to:0.04422806077474985 in:0.04282706712587849 :0.15789129061806112 +not:0.23550007733459322 even:0.14319635437472325 sell:0.08685543416130782 or:0.04418779661968294 :0.4902603375096929 +posed:0.03524680620320379 ample:0.030848961115431853 port:0.011443652076719605 press:0.006740160906359674 :0.915720419698285 +that:0.999023035915506 as:0.0005126097368712599 to:0.00025440844810812235 in:0.00015925400182860525 from:5.069189768611461e-05 +to:0.30129731929127596 and:0.13689823865966547 the:0.12245608747911567 or:0.06499254808059328 :0.3743558064893496 +state:0.2399406689557275 say:0.03900628613670393 tell:0.03202427465759493 see:0.024167305944807857 :0.6648614643051657 +of:0.012082973177453077 In:0.009966129327947144 -:0.003504269308268012 u:0.0033642481938613695 :0.9710823799924704 +men:0.19043309903865593 State:0.1841961652372336 state:0.014840603285636765 county:0.0095036215190534 :0.6010265109194204 +strange:0.012932464799214094 their:0.009361157041353369 for:0.00922897767786879 not:0.00905812709850293 :0.9594192733830608 +is:0.0580346085671367 and:0.020691237442729975 have:0.013174433502801277 appears:0.011219470358355316 :0.8968802501289768 +other:0.05736881423731106 next:0.023640221836983718 two:0.020010605708062915 young:0.01525895909208967 :0.8837213991255527 +and:0.26337941410975674 but,:0.03315842815507099 which,:0.026934076705070753 from:0.024477794219762077 :0.6520502868103395 +the:0.39936014664782293 tbe:0.13044425138570157 be:0.0793398226729991 a:0.05114400544695152 :0.3397117738465249 +obliged:0.10974577265080021 sent:0.10047978817074767 given:0.07962307595998865 suggested:0.06628070014399609 :0.6438706630744673 +be:0.6302907232063281 not:0.10011939712866536 bo:0.031023387197244998 he:0.021858367947389056 :0.21670812452037255 +of:0.2797469586103572 to:0.16099561754910766 in:0.14131196641348864 by:0.12338739574478039 :0.2945580616822662 +on:0.0014024851641722845 out:0.0010596089034452558 with:0.00041116414443313564 them:0.0003613310963140842 :0.9967654106916354 +and:0.09453458981597382 ment.:0.02896983483874398 tion.:0.017470305254180828 that:0.008804849061201775 :0.8502204210298997 +the:0.8521004745324683 this:0.024391524340009664 tho:0.014149131440435529 good:0.00852297596923671 :0.10083589371784987 +of:0.15383849473232805 and:0.1114233276998929 the:0.04359270712749957 The:0.030642286669927854 :0.6605031837703516 +tbe:0.4840907288683521 the:0.3042670777727587 tho:0.1598718777322359 he:0.039805817288926536 :0.011964498337726802 +been:0.6331945305475352 never:0.01847139943467149 since:0.01835936939012728 a:0.013605812421096148 :0.31636888820657005 +New:0.8151105317084862 Now:0.002877225147535091 the:0.00011907639710907441 a:1.367330137397138e-05 :0.1818794934454956 +not:0.17925081202401555 be:0.043641890144137524 have:0.03524237674212424 had:0.026568850913354876 :0.7152960701763679 +and:0.15740016474238452 a:0.05181382026873126 the:0.050801126345975174 of:0.04871875242043937 :0.6912661362224696 +him:0.18077607671942142 them:0.13866193967614848 it:0.08999409436594127 us:0.05023335263544269 :0.5403345366030461 +be:0.056140926090789314 cut:0.04710279518568687 gain:0.026364431617305138 only:0.0230887259390382 :0.8473031211671804 +of:0.1634995556642278 and:0.12200246083457161 the:0.10150567949511881 that:0.09338705940743486 :0.5196052445986469 +D.:0.35293126028508426 M.:0.1138415464448492 H.:0.07788662785421223 J.:0.05211943550163021 :0.40322112991422415 +be:0.5658250756291167 have:0.17631061995510536 hold:0.07092763424721081 bo:0.051770242621130315 :0.13516642754743674 +the:0.9063689586346535 tho:0.04061913071841009 tbe:0.010694536459369082 tiie:0.010161764799080245 :0.032155609388487015 +for:0.5712203468297262 during:0.12744938449805937 within:0.10739853704604678 in:0.08920579712386725 :0.1047259345023004 +duty:0.7698127801353002 duly:0.024602760510102847 order:0.007090117967143679 owner:0.00578393330145301 :0.1927104080860002 +attention:0.3014683680886593 property,:0.013345702330266695 friends,:0.009306707485202698 interest,:0.004103024525608038 :0.6717761975702633 +or:0.4302053910234722 period:0.12762040952416487 time:0.05672175605099286 and:0.04707556985662566 :0.3383768735447444 +upon:0.876500203727906 on:0.08694304916694587 ou:0.013095058057295187 over:0.008290731921150384 :0.015170957126702543 +which:0.9870042175405536 the:3.9839273513270656e-05 said:8.454279126560279e-06 for:4.010305971999746e-06 :0.01294347860083439 +all:0.0932271880007006 and:0.0612023826488468 was:0.024337738752024645 bridge:0.015154172011561018 :0.8060785185868671 +be:0.5084554216956786 have:0.1360619113714943 not:0.07715633183880902 bo:0.027973534459898895 :0.2503528006341192 +The:0.18911524737398414 the:0.170118585273809 and:0.1591769668578488 Their:0.11073919830745609 :0.37085000218690184 +of:0.9973883608130553 ot:0.001355408075859139 in:0.0003580730371007302 to:0.00031762782322791684 :0.0005805302507569952 +never:0.8852639636075824 made:0.07084357167151485 not:0.03666300563563213 quite:0.0014843214457993014 :0.005745137639471236 +best:0.9341155056855217 was:0.01722558086737893 and:0.014624462877271078 am:0.010674617055277386 :0.023359833514551006 +an:0.4435357789118094 the:0.2644535862260393 of:0.08242022002288961 our:0.03300795572988725 :0.17658245910937445 +to:0.8254780164233114 the:0.16517158181439295 The:0.00894975489682996 Senate:0.00020870609313335302 :0.00019194077233216462 +but:0.03550741553332437 frequently:0.0322929200181044 moment:0.029653087828395194 day.:0.025577589485183905 :0.8769689871349923 +long:0.08185838914748873 long,:0.05657662638308971 a:0.04081711278233903 the:0.032893469176791 :0.7878544025102914 +world:0.28989916819206485 woman:0.07852789888586179 girl:0.06071540154642306 one:0.04981225886573946 :0.521045272509911 +of:0.21666845449914815 in:0.13338595100985554 to:0.11484161569047056 for:0.09278261802246995 :0.4423213607780557 +really:0.3297983602136987 a:0.0922688342395148 to:0.06972465649878065 an:0.03770949625143913 :0.47049865279656694 +done:0.9968667629472856 found:0.00010135469975417914 formed:9.411230894053733e-05 cut:4.546146620041815e-05 :0.002892308577819134 +in:0.9394371215938107 In:0.042589256199371615 of:0.007822251990478916 from:0.005245635157719221 to:0.004905735058619525 +and:0.11575523897908513 the:0.045537337999275916 of:0.03524524883070135 to:0.026222628434867647 :0.7772395457560701 +it:0.3713085519803309 this:0.2104239860762265 not:0.13397971207404397 never:0.11022128951296928 :0.17406646035642942 +proceedings:0.20537039441481092 company:0.09283718924084534 people:0.07506323678640799 Union:0.06968845898446244 :0.5570407205734734 +all:0.15159545640128078 of:0.07696263182862517 the:0.07542006883943723 which:0.06620911974124745 :0.6298127231894093 +and:0.17454610862908332 of:0.1314511935222999 the:0.10950967788505193 lu:0.07608342190793949 :0.5084095980556254 +he:0.0503023587785381 the:0.032325977153494515 plans:0.019768337883808676 each:0.015152618079858089 :0.8824507081043006 +it:0.4385956588844985 which:0.4000591752385106 there:0.038122958518098216 ana:0.015177457690224591 :0.10804474966866814 +and:0.08910539531415614 out:0.04039718497492769 ed:0.040121683484665854 up:0.031207613307770263 :0.7991681229184802 +of:0.5970094477005033 in:0.13056230440387015 for:0.09324327032213513 to:0.06021036851968822 :0.11897460905380315 +take:0.05522823275317158 It,:0.024254556260944072 it.:0.01662290245651564 give:0.016365571098471275 :0.8875287374308974 +ask:0.16224932453636656 are:0.13783259718250732 stand:0.1227566479005508 speak:0.12113868348646345 :0.456022746894112 +enable:0.021937694234155106 admit:0.01910736601102742 allow:0.016879861964781535 pay:0.01031755180345557 :0.9317575259865802 +had:0.2519706904305477 has:0.1131188892440136 was:0.0935508374563907 is:0.0629018676997905 :0.4784577151692574 +to:0.1867071881454643 in:0.1399205728335424 with:0.12414990558941297 on:0.11709731408715979 :0.43212501934442044 +be:0.9807808888639524 bo:0.011141340291452891 lie:0.006839796818232438 he:0.0009118382616853507 :0.0003261357646769238 +of:0.8931297536527902 way:0.012484914992344892 day:0.01144079318694689 years:0.011260469461002804 :0.07168406870691525 +and:0.48538713874219624 was:0.09165660048519608 He:0.0568712658441776 were:0.040985446626837285 :0.325099548301593 +of:0.01914976875255263 and:0.010146577873407505 tion:0.0061522772904545305 ing:0.005835167258300612 :0.9587162088252849 +the:0.7524963744652016 tho:0.06791123304922919 a:0.06358835964040532 every:0.03262503922866888 :0.08337899361649502 +premises:0.6236411624660245 premises,:0.07526451862911883 court:0.06498485830100285 Court:0.04255098465328739 :0.19355847595056636 +prevent:0.14924237465433973 all:0.09606736777883369 them:0.08161779274832563 continue:0.06550779361000876 :0.6075646712084922 +the:0.28520694534310476 one-half:0.079884340599614 four:0.06228840115706271 three:0.04712292963622988 :0.5254973832639885 +of:0.33807176089251 in:0.17222323564517808 and:0.12945557057403054 to:0.09701704291138341 :0.2632323899768979 +made:0.34102992470224924 engaged:0.17318583851793953 placed:0.03389352935248189 successful:0.02674129753288122 :0.4251494098944481 +the:0.8559351995722981 said:0.04525850635116064 tho:0.03945770929349643 this:0.01625601487257075 :0.04309256991047416 +A:0.2828959664676612 and:0.26609255200194865 a:0.13227605985527402 have:0.09761995892102379 :0.22111546275409233 +and:0.06604747906208079 hand:0.04156906285027205 strike:0.03432316194334191 is:0.030651453923224117 :0.8274088422210814 +and:0.09862755668672481 for:0.07987907218101215 to:0.04736015668762723 of:0.022643462076853048 :0.7514897523677828 +I:0.5579367959453266 and:0.06238412874837005 1:0.04789420804654776 "I:0.02368785564546412 :0.30809701161429154 +it.:0.2807052034403446 her.:0.21410398931638147 him.:0.04203195119970903 them.:0.024433107280438782 :0.43872574876312614 +in:0.2317085557836351 to:0.22204391991508898 of:0.20359353830117186 by:0.1463360313116364 :0.19631795468846774 +The:0.24546457839113944 the:0.012219669276466007 He:0.0026011905034308766 and:0.0012396187171558248 :0.7384749431118077 +any:0.1669106101325754 and:0.03343776739696293 in:0.03301359868853008 to:0.02687958607218883 :0.7397584377097426 +be:0.8065211997505345 bo:0.08063983433317834 he:0.032315820331500635 is:0.014970899413312998 :0.06555224617147343 +I:0.2134607315058527 to:0.21216644337283302 we:0.1467952926563403 they:0.07508207354274447 :0.35249545892222967 +to:0.3008936811308304 with:0.07946493412222289 at:0.06282954464816326 and:0.05860445399349904 :0.4982073861052844 +the:0.22476919109518803 to:0.10338451231032017 and:0.0800021877424211 of:0.05789712423253777 :0.5339469846195332 +was:0.21413308378608553 the:0.1722340526463104 is:0.1610918558291281 were:0.10194796923498804 :0.3505930385034879 +the:0.38937587348378455 and:0.08302085345734 a:0.0771432166745547 to:0.049750334372366645 :0.40070972201195404 +of:0.3811242469654774 and:0.21457786106460983 for:0.08916912186041019 with:0.048182446096977215 :0.26694632401252516 +and:0.1582570914179132 amount:0.05789200522163869 number:0.02797842324125243 mass:0.02022134692753133 :0.7356511331916643 +and:0.17104856319995526 she:0.1351629342226589 of:0.09532838607336315 to:0.04826705378637414 :0.5501930627176486 +their:0.8620516092142886 an:0.04360003099380963 the:0.029610294987089208 to:0.013034891927500274 :0.05170317287731219 +and:0.1198267223064954 it:0.11814927953233713 we:0.10316975825096705 It:0.09849916753828095 :0.5603550723719195 +the:0.39276451829082987 a:0.08582934907520573 Mr.:0.07494696837139106 Judge:0.055942049817851315 :0.39051711444472204 +the:0.34102439027716386 and:0.06844358886453684 a:0.06796319528833905 his:0.03008583093533674 :0.4924829946346234 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +Republican:0.27539234171389443 present:0.22022786874282635 small:0.04723621369133859 In:0.03328526157131433 :0.42385831428062626 +the:0.4350340390912227 a:0.061036715130033434 his:0.05497942994581708 two:0.03269229025605519 :0.4162575255768716 +or:0.16292158150806213 of:0.09505184147862349 and:0.08287371266617101 with:0.04644287934150057 :0.6127099850056428 +of:0.3462915362667859 in:0.18620171481985523 and:0.1228992949885692 to:0.10727212644589716 :0.23733532747889255 +record:0.02288768001746998 to:0.022754317044669778 County:0.01732441808681401 the:0.013843404639782394 :0.9231901802112638 +party:0.025288533110730704 party,:0.01481448751616448 and:0.009594689164803279 flag:0.0077455931613780865 :0.9425566970469236 +well:0.5932711065183823 soon:0.10903401043967506 far:0.04482398596952166 long:0.042017781883636376 :0.21085311518878458 +of:0.9569982386326431 in:0.012963016299753504 to:0.007509194584871006 from:0.005558226830140659 :0.01697132365259167 +of:0.26940287436428767 on:0.2144375672732146 until:0.07271507701231697 and:0.04470202029432734 :0.39874246105585337 +were:0.26373757700287764 and:0.2022038552149444 was:0.14781381971698065 are:0.09312309254690154 :0.29312165551829583 +leading:0.5924110264521818 many:0.02434824035263015 most:0.023587076278813263 people:0.009748403792440876 :0.3499052531239339 +which:0.3136723846544196 it:0.19773099884131545 like:0.09837484266977481 that:0.09294654753410281 :0.29727522630038733 +and:0.13969781474339793 shall:0.13934483833956735 the:0.09842057924354213 of:0.08703148593651922 :0.5355052817369734 +about:0.009423234334483142 ing,:0.006103582588410639 up:0.006039013832565034 sell:0.004757589189210694 :0.9736765800553303 +and:0.22038897894567952 or:0.09557945251273886 like:0.06309350179882785 of:0.05793598007302794 :0.5630020866697258 +1:0.1620168096412841 P.:0.14596221515474717 W.:0.024551609331675956 H.:0.020980437870522294 :0.6464889280017706 +be:0.5390375071380594 put:0.14250443809182128 not:0.08903344960117848 have:0.06263581512727495 :0.16678879004166589 +day:0.029818865682070404 out:0.024810048117900007 and:0.023898409340306157 tion:0.012813848501882153 :0.9086588283578414 +and:0.10188446978337713 together:0.030748571413972716 tion:0.02644584522177492 influence:0.02158445531603994 :0.8193366582648354 +Gen.:0.17862775320389068 Mr.:0.17292732598541619 of:0.15873283463658686 and:0.033847303560455684 :0.45586478261365065 +come:0.9262335145660778 coming:0.03103762245312261 comes:0.025656858252809726 of:0.0007999364005516717 :0.01627206832743789 +a:0.13575477488091758 so:0.07808118754346202 in:0.06883999383523953 the:0.05469770390403166 :0.6626263398363491 +of:0.19601914869838974 to:0.17542043601991142 and:0.1746020823998748 in:0.13383715301974888 :0.3201211798620751 +of:0.18186417999097504 and:0.14675913363322995 to:0.09075697344063463 the:0.03807081085856516 :0.5425489020765951 +and:0.21447563167615155 or:0.05557123237869274 the:0.03140422863723364 to:0.029265270696130573 :0.6692836366117914 +have:0.43035395919815017 had:0.2988377939936184 has:0.16988178565686432 having:0.011515874261331847 :0.08941058689003517 +In:0.4015537899243929 in:0.23868947834721635 to:0.23190721171644638 from:0.09349472373611499 against:0.03435479627582942 +Smith,:0.012732542265392971 James:0.0025121956183945427 May,:0.0014411447755581553 Johnson,:0.000829817873534272 :0.9824842994671205 +the:0.4326872116424759 a:0.06108635552170358 Mr.:0.048750141281253226 that:0.041511855803977475 :0.4159644357505897 +the:0.356122602694618 all:0.10806458383978042 interest:0.055820130929519436 those:0.038366894766318244 :0.44162578776976397 +up:0.46081166472891194 just:0.45207362688991226 through:0.038918422832699605 out:0.025928649469797994 :0.022267636078678196 +made:0.7405596651392592 made,:0.014362569023433847 given:0.007883418760448237 followed:0.006810045961754748 :0.2303843011151039 +add:0.286764194882027 to:0.1433407782584914 of:0.1284559837390171 and:0.10586294512626293 :0.3355760979942015 +dozen:0.1377754261708475 year:0.06748997135774674 week:0.044605417977710234 mile:0.04351555761795472 :0.7066136268757407 +the:0.4773783051664871 The:0.34218633977218094 a:0.019667531637687568 this:0.015872376104874943 :0.14489544731876944 +place:0.15396713087796854 the:0.036413330041083075 ed:0.02350846340626291 up,:0.015105488688504292 :0.7710055869861813 +provide:0.9046723612455189 the:0.010076273333572479 various:0.0010109851689472458 thu:0.0003124854003098259 :0.08392789485165161 +at:0.2905464171702552 e:0.12851380270031684 thence:0.10340488992255319 bears:0.04961363460920392 :0.42792125559767086 +be,:0.9890418072150513 are,:0.004786956938694867 to:0.0027574472088355007 and:0.0014834025202592955 :0.0019303861171590588 +north:0.9962201296041062 up:0.001088991942624035 west:0.0002995345116942265 and:0.0002503650176373363 :0.002140978923938152 +of:0.8187203660342339 a:0.16649629760584195 the:0.005363432143014481 his:0.005326071748734363 :0.0040938324681753305 +of:0.9161748833171358 ot:0.06704007167727803 ef:0.008645372922418914 01:0.004781727863895908 :0.0033579442192714663 +are:0.5945248836563461 to:0.15261119021808006 under:0.06980563078492964 n:0.06346083159841424 :0.11959746374222989 +would:0.3440326597896122 could:0.3374156487622444 can:0.22433060702231014 did:0.08368497226277832 :0.010536112163054839 +No.:0.11981718127205966 and:0.08500095041283647 of:0.05053868100406588 the:0.03836449405267306 :0.7062786932583649 +that:0.9298208931052583 thai:0.023421779693673348 tbat:0.00013156169950715615 to:8.051999785293187e-05 :0.046545245503708386 +before:0.9262722077361868 be-:0.044898199054975274 about:0.01109652830298173 after:0.007478250631007205 :0.010254814274848952 +army:0.09098162088673378 table:0.012508265687827744 voice:0.00997689356221018 funds:0.009748062302717103 :0.8767851575605112 +a:0.24104777813128297 the:0.19336954704561207 of:0.13293148014439163 in:0.08693938698046706 :0.3457118076982463 +of:0.6251422558317186 in:0.26308175388597 the:0.051687536613306044 he:0.02071483144138882 :0.039373622227616575 +all:0.2888870775546345 any:0.22180063589529508 those:0.16350111326584363 all,:0.12140817161580816 :0.20440300166841874 +fact:0.10300873803368481 want:0.039812701929464914 truth:0.03736086153159548 May:0.022283093282669565 :0.7975346052225851 +from:0.28183435812786145 at:0.08079197630376148 in:0.07307638127694867 through:0.0421450982994755 :0.5221521859919529 +shown:0.22335603377571614 found:0.09459812479179185 done:0.061527093098142756 used:0.06148148654512033 :0.5590372617892289 +the:0.08225369541754024 and:0.0802810202244711 of:0.0782285020368913 to:0.0336360397884568 :0.7256007425326406 +who:0.13375069702906883 w:0.08759406921410925 that:0.07521048347243217 whom:0.0634370558469403 :0.6400076944374495 +of:0.20807771264852798 and:0.14768608654181503 the:0.050638380898520415 for:0.045255838639125974 :0.5483419812720106 +of:0.39770832926160155 in:0.15305186213541397 to:0.12634321581652755 on:0.07956778964897311 :0.24332880313748378 +in:0.39913362712613365 at:0.2669073193578018 on:0.12903769918147187 and:0.11777528002210416 for:0.08714607431248851 +the:0.9229601952290781 tho:0.03203769316785298 this:0.018579599184285745 (he:0.013744018262065127 :0.012678494156718022 +was:0.1662081433933006 in:0.1334371642802817 of:0.06268408141009929 is:0.05386408670901657 :0.5838065242073018 +lots:0.05386135923210912 principles:0.05178712997000038 states:0.03296292586470936 officers:0.02746371603991094 :0.8339248688932702 +and:0.20464057205304256 to:0.14294646794258867 in:0.09003554614973873 the:0.08104161082304512 :0.48133580303158474 +made:0.08188250879634212 felt:0.07430024375321496 at:0.071833871049494 for:0.057102102436334116 :0.7148812739646148 +cents:0.013246134061105821 feet;:0.006915011175753244 o'clock,:0.0056622456099700074 points:0.004667566575404173 :0.9695090425777667 +It:0.22564947053660492 This:0.1274825892883105 it:0.08157476767097367 which:0.07979147282461899 :0.48550169967949186 +and:0.14293102404770136 to:0.09467916320163475 of:0.06501264025184585 the:0.03180556443857808 :0.66557160806024 +other.:0.01801167188272525 people.:0.009842157486515275 work.:0.009673744679839018 law.:0.008279547937428558 :0.9541928780134921 +law.:0.6896776033067926 act:0.0007918381337520523 law:0.0007450546502463118 the:0.0005535641282395959 :0.3082319397809694 +the:0.5711191603297934 any:0.06762918801059262 a:0.05761356893192827 of:0.04594665246585438 :0.25769143026183144 +in:0.9960915256958333 and:0.001125732303104862 from:0.0006463745049833334 ot:0.00059665697072396 :0.0015397105253546334 +have:0.2731331749491357 had:0.23705040632464913 are:0.20053851696743122 were:0.13318256814738033 :0.15609533361140357 +force:0.05189474386869715 the:0.03156483994126008 virtue:0.030639295590535517 as:0.029005352482157562 :0.8568957681173497 +Now,:0.5319858755741841 Now:0.3975266096587698 now,:0.02676763475410012 New:0.022832932912892758 :0.02088694710005324 +raise:0.23066851164811536 increase:0.19209030315564257 keep:0.109533069585988 lower:0.056894033845232624 :0.4108140817650215 +that:0.1696148718333998 the:0.166966227689027 and:0.15310058571671556 but:0.12947424099682492 :0.3808440737640328 +day:0.077132325347041 tion:0.04163754084629109 instead:0.02962650298599001 ment:0.01884003153646535 :0.8327635992842124 +the:0.646201235300553 a:0.04393430676197748 tho:0.04106300072364552 any:0.040791994695588925 :0.22800946251823498 +pay:0.06298140585870622 provide:0.054167184199002606 vote:0.04879196740390319 the:0.043505020429470465 :0.7905544221089175 +United:0.2067868231116508 State:0.02896483161092798 state:0.018454605055356295 said:0.018391711851709652 :0.7274020283703552 +he:0.9628845482385323 we:0.013161679713447049 It:0.010719328815517333 I:0.007120036453150017 you:0.006114406779353338 +place.:0.06676653627320824 and:0.005105912699131637 of:0.004513058609448637 mark:0.0035114251209686234 :0.920103067297243 +of:0.24193887615692838 and:0.10745660680444866 in:0.10345230800000439 to:0.07701834514032545 :0.4701338638982931 +pose:0.2336007793582122 claimed:0.14758038066637275 posed:0.009820853751834559 cured:0.006809195589955356 :0.6021887906336251 +of:0.33280099904651744 and:0.06268689861113447 the:0.028814148204694974 The:0.02748084818460762 :0.5482171059530455 +and:0.15728668056417672 of:0.0888105831515678 The:0.07094590253766182 to:0.04908614231873778 :0.6338706914278558 +and:0.14357054665697827 over:0.09142572271961132 in:0.08536676671336024 of:0.027155907225164828 :0.6524810566848853 +and:0.027226504444621342 John:0.01645874992130004 Davis:0.011690390957968488 as:0.01030789967245205 :0.9343164550036581 +done:0.12851996020698753 made:0.08672143572798927 working:0.05942503122514495 sold:0.053255344383827154 :0.672078228456051 +I:0.8117216246244152 he:0.06337492132120484 that:0.04395213353988583 they:0.034765003408667394 :0.04618631710582686 +less:0.1264489773469317 remain:0.08696597556002962 made:0.0805613443999821 their:0.023202221816111875 :0.6828214808769448 +the:0.44360351703399936 about:0.28038061009050846 in:0.15381769165413625 to:0.062287531279589206 together:0.05991064994176655 +are:0.402571482984878 have:0.3010532946896954 look:0.06660547832012544 can:0.0257480116458514 :0.2040217323594499 +of:0.7222205662865163 in:0.05060638335619404 on:0.03604747236240042 time:0.01808146290102767 :0.17304411509386158 +the:0.6150000970248108 our:0.23929459708796766 all:0.016918384506093273 its:0.01434950959283991 :0.11443741178828824 +of:0.5796223205153715 and:0.09936923931018318 in:0.05606802009955181 to:0.044657897571667354 :0.2202825225032261 +and:0.4869842822055396 according:0.2044856955097112 subject:0.06209535647612502 or:0.03503879268594033 :0.21139587312268387 +1st:0.04587851792533201 first:0.03315702383435403 second:0.0018487963936430316 Fourth:0.0013493567679550417 :0.9177663050787159 +has:0.5902543011181555 had:0.36852818965087986 lias:0.013495962619598359 did:0.006798485291811782 :0.02092306131955455 +United:0.04764425267804681 public:0.030701874275548883 present:0.02982823723473223 original:0.02451745266600811 :0.867308183145664 +to:0.4124492639533029 and:0.1968863549294291 which:0.044046097665203905 of:0.039211016440732105 :0.30740726701133203 +the:0.3803732796879212 of:0.24075425286604565 a:0.10946474824301537 and:0.05209967250752996 :0.21730804669548784 +are:0.06852218665996558 two:0.04592514299333664 men:0.022761610933161557 were:0.02093849827808503 :0.8418525611354513 +the:0.5923858021513118 his:0.043606102966633795 a:0.038529946454708204 this:0.02284225182562374 :0.3026358966017225 +the:0.4467015510300487 his:0.08788218675895422 a:0.0612644026657127 this:0.04797908527743765 :0.3561727742678467 +more:0.025193307005986345 evidence:0.01066013619940298 fruit:0.005366932881472838 intention:0.0027809260805263646 :0.9559986978326115 +ing,:0.1917482159922381 street,:0.10947239880163516 about:0.08273395930451713 or:0.05483849183213741 :0.5612069340694722 +and:0.14094370704028156 of:0.06576411807327154 the:0.05576760676804947 to:0.028947488946232596 :0.7085770791721648 +other:0.017673289349009462 the:0.015203753530698982 first:0.013087681107533085 same:0.012770034560233871 :0.9412652414525248 +made:0.2641672949789527 up:0.08404538314208415 going:0.04128540164790042 over:0.031027474330791123 :0.5794744459002716 +best:0.1470176232716219 first:0.03462432166822141 much:0.022513858964227224 heavy:0.019733990028507738 :0.7761102060674218 +the:0.31537568723228426 regular:0.0029075266698415786 of:0.0011525308324306825 to:0.0007931302100777091 :0.6797711250553659 +will:0.306505823240858 can:0.2735531415780388 could:0.1556931121170648 must:0.15406847020146228 may:0.11017945286257615 +premises:0.9991182281801959 property:0.000493745374093537 statute:0.00011407988958287486 described:7.830912482270783e-05 :0.00019563743130500096 +sense:0.2348293019886904 spirit:0.2107215731140035 state:0.06850354804931541 order:0.05221771169917918 :0.43372786514881145 +giving:0.22962809949960653 and:0.16990983227152692 with:0.16100106764529218 in:0.10234860916135365 :0.3371123914222209 +him:0.015482856522302392 them:0.01089417452734759 Germany:0.010240050133657003 capital:0.010051108137101944 :0.9533318106795909 +of:0.20371080986606166 and:0.10024974105322625 is:0.049599938900174424 the:0.046242392903835576 :0.6001971172767021 +if:0.3535542898635759 on:0.1350530271173994 with:0.06744680349974888 and:0.06215469603012652 :0.3817911834891494 +about:0.32176104634935426 longer:0.18961638515227977 more:0.07447436044525316 pain:0.03355347840660813 :0.38059472964650454 +legislation:0.08643588968182418 for:0.0420975221644994 by:0.03820983993244095 provisions:0.031806981821491394 :0.8014497663997441 +of:0.19302493322434816 and:0.09801006271332338 the:0.046512943941711314 to:0.026960939162222586 :0.6354911209583947 +and:0.5058142629277718 from:0.37319406408750394 to:0.05545830289482191 aud:0.02773285891474893 :0.03780051117515353 +South:0.3669061889520686 country:0.23521184420795657 bottom:0.04791207303947998 state:0.029670119952684634 :0.3202997738478103 +in:0.23204312718666065 fired:0.0788912792436061 a:0.07102599248162851 ever:0.06536006044188049 :0.5526795406462243 +own:0.05338572949476318 great:0.02158172353343438 national:0.021211007627539816 most:0.019898457067580474 :0.8839230822766824 +nine:0.2521866783355104 six:0.21382976931650874 8:0.21357309057406523 10:0.18730131514162096 D:0.13310914663229453 +was:0.20154555250954445 is:0.13821375084162033 had:0.06862218139530012 has:0.06162524473785427 :0.5299932705156808 +and:0.3490183258594828 it:0.2179970305120564 what:0.11008577525504694 he:0.06737033726645804 :0.2555285311069558 +the:0.34642487951106615 this:0.03820750326784191 said:0.03282751827962223 a:0.03211233989592174 :0.5504277590455481 +at:0.9015592698502947 in:0.029967285820429793 until:0.01601104790730078 of:0.01406992394565363 :0.03839247247632099 +old:0.041355027656453575 same:0.040566701315656116 water:0.033880032569976404 government:0.031220379236933535 :0.8529778592209805 +serious:0.21851107440446405 highest:0.2058366326826122 now:0.19120038431705405 near:0.03767342007477174 :0.34677848852109794 +and:0.09721108533630757 accompanied:0.06348392989117593 who:0.02372280221999372 received:0.018899339836021014 :0.7966828427165017 +and:0.1015431092164995 it:0.07537731550811125 she:0.05487591861075506 which:0.02876726583354645 :0.7394363908310876 +of:0.32997247258418566 and:0.123733848689227 to:0.12144352639521974 with:0.11057490337385062 :0.314275248957517 +order:0.0591186834398913 cut:0.05703416350454215 sell:0.04038546543981988 buy:0.02243048825654254 :0.8210311993592041 +man:0.0663611778834224 one:0.05751507854760995 amount:0.02543496747000784 whom:0.02157067562485309 :0.8291181004741067 +do:0.05880647994153304 and:0.05043142983948298 the:0.043831481223769946 of:0.03231139945036215 :0.8146192095448519 +are:0.3483180833556949 can:0.10548671276467739 fail:0.07465803551574389 could:0.07090878906197473 :0.4006283793019089 +and:0.09389516748031901 of:0.07681941508574784 the:0.05970788105788491 to:0.022558664920221988 :0.7470188714558262 +made:0.13506986971506313 took:0.11491278262270045 bears:0.09042444003705398 ran:0.06934273290953476 :0.5902501747156477 +and:0.1194192865911129 the:0.1104282280884601 The:0.0814719376910316 to:0.0628656590892299 :0.6258148885401655 +John:0.11984814198263302 and:0.10900995083266242 C.:0.09392365764248782 J.:0.09066708475063365 :0.5865511647915831 +giving:0.20230822200050025 rendered:0.08499893253515485 brought:0.08164525515008243 far:0.015213931435850604 :0.6158336588784121 +a:0.12140570240225551 farm:0.021450153763415428 political:0.015192961510946333 train:0.010920936979577802 :0.8310302453438049 +decision:0.3997569937092367 order:0.22453579909343438 petition:0.10725791669430744 sale:0.09362970605930937 :0.17481958444371223 +be:0.6477832731655061 cast:0.1320240099519015 live:0.09027142692431167 become:0.030261949018888665 :0.09965934093939212 +due:0.1409003362958995 and:0.08167268765627007 one:0.010022169251751962 from:0.009046586123631295 :0.7583582206724472 +and:0.02627566139114866 that:0.011880875016496166 but:0.009169304214343798 .:0.009155253882688643 :0.9435189054953227 +at:0.2557930434861504 were:0.2487727965040467 are:0.14171084712548218 without:0.11566249119782898 :0.23806082168649176 +is:0.3084975661875507 was:0.22857509461687858 and:0.05813907727889481 were:0.04107965411112067 :0.3637086078055553 +bonds:0.2882861654423996 same:0.17938958461469445 stock:0.061319192136955185 property:0.037510520748752635 :0.43349453705719815 +whose:0.19914618959577582 and:0.13059255238513118 the:0.10473880993017483 of:0.05677514609432499 :0.5087473019945932 +spent:0.19318256839606898 made:0.05288629932530121 engaged:0.0406630250935526 given:0.03900029962802384 :0.6742678075570533 +a:0.3727350896169209 the:0.29045009034771435 an:0.058648788339065165 in:0.016062964274704532 :0.262103067421595 +and:0.022850083245898302 H:0.014880025638218617 J.:0.01364505495811563 Brown:0.010351094730950153 :0.9382737414268173 +is:0.036107398184784575 of:0.035147293294639614 a:0.020853742285607754 the:0.017190553159893977 :0.8907010130750741 +is:0.48634615929554686 was:0.15443213227084313 would:0.052886909196953685 will:0.04416633234045294 :0.26216846689620327 +of:0.5348519505751615 in:0.1565024417645822 to:0.13532857768545734 into:0.05894345640349885 :0.11437357357130026 +the:0.18909539493816171 and:0.15705643833799554 of:0.0672231624543095 to:0.06425486173399123 :0.5223701425355419 +and:0.0763145833827678 seems:0.04584575111035853 she:0.042288186677910344 ble:0.026514297171006826 :0.8090371816579566 +the:0.41932797185306264 a:0.08062353892345235 their:0.06907004569125703 this:0.026683912338915334 :0.40429453119331266 +that:0.38250369113710764 and:0.17274521712327656 but:0.09536054876113766 because:0.03600032285851042 :0.3133902201199678 +he:0.44326658697000876 they:0.36501211895497493 she:0.06386875891182711 it:0.0570658750669676 :0.0707866600962215 +the:0.398537285223593 these:0.06536590883102247 a:0.045306212669397126 by:0.020571647051491164 :0.47021894622449606 +its:0.5623669590251374 the:0.3935694641791514 our:0.02133750576963553 tho:0.012426138871996204 :0.01029993215407942 +further:0.4419933058322968 said,:0.06603520100965685 is:0.037686055614127065 was:0.024448833488802564 :0.4298366040551168 +.:0.23963601715578484 on:0.10987914705114613 would:0.060875013631840766 must:0.04211556157424604 :0.5474942605869823 +made:0.06760272768506165 engaged:0.053192034468455184 held:0.04998197508648776 found:0.04272173225958226 :0.7865015305004132 +of:0.21393291112464402 the:0.15475315340632273 The:0.1098827525851768 and:0.08691855248142773 :0.43451263040242877 +is:0.7654968707880768 was:0.19379270044811697 Is:0.01683297336276061 are:0.011594709541232007 :0.012282745859813501 +sold:0.2030385364888862 plant:0.08266505731063344 seed:0.05440574613676981 field:0.053406999193461355 :0.6064836608702493 +be:0.4544404898360801 well:0.14016289208752028 not:0.08756624603651228 possibly:0.03331926333565637 :0.28451110870423096 +of:0.5026782754406863 and:0.07407416427336797 in:0.06612925281548201 to:0.06284377427590444 :0.29427453319455926 +N.:0.07366684515519428 and:0.06114507075437284 S.:0.05487817935956573 of:0.04160706423114954 :0.7687028404997176 +of:0.5548037188953915 in:0.17409007735826232 to:0.10407526275097366 and:0.05232593417249252 :0.1147050068228801 +the:0.5548470974241999 thc:0.04173185970582233 his:0.033402921802893684 a:0.03077686252440073 :0.33924125854268333 +limits:0.3255598763666479 power:0.005463653330618973 possession:0.0025158130571889337 control:0.0017644245395973376 :0.664696232705947 +Co.:0.014349477834598508 Johnson,:0.010281248779639934 Smith:0.0019152242082356135 Smith,:0.0005279432632145093 :0.9729261059143114 +of:0.4879337319072601 and:0.1429074126657487 that:0.042411436750522225 but:0.041719315284654335 :0.2850281033918146 +hole:0.05116641271080055 building:0.035577785546567285 moment:0.029748638441891816 gun:0.025937396866522085 :0.8575697664342183 +to:0.16171796272590316 a:0.14005359713869192 and:0.11678241992032004 the:0.06764989828365876 :0.5137961219314261 +would:0.2522842895586016 to:0.21308686382901945 may:0.1985430591361921 must:0.1889411532348384 :0.14714463424134858 +of:0.3516496410197661 the:0.10913857311823238 in:0.06718803590747309 In:0.03397265706752343 :0.43805109288700494 +come:0.8954141666390445 as:0.01670005135172255 n:0.011334070294476518 hold:0.007527325939057091 :0.06902438577569929 +now:0.09104469937346868 not:0.06106096737276599 found:0.04838538619863069 still:0.04362152229243403 :0.7558874247627005 +part:0.25077735088396 line:0.10131381109855116 portion:0.08623192262136797 boundary:0.06424970790512587 :0.497427207490995 +Treasury:0.09601890068935046 State:0.06245523998129558 War:0.05067606141149212 the:0.005914771991049865 :0.784935025926812 +She:0.34054064265763034 Ho:0.25110715119316457 It:0.13306041722561684 he:0.13272337489578756 :0.14256841402780057 +in:0.3899116622611695 and:0.1743986609658828 to:0.15307378356352297 of:0.041227779404868915 :0.2413881138045557 +a:0.14435288498786433 and:0.12529211149683098 to:0.08304379192593699 of:0.07456525732628369 :0.572745954263084 +all:0.8432989420069225 of:0.06307351853394814 nil:0.03400048784463209 to:0.026912976398834585 :0.03271407521566277 +.:0.1804388691640336 at:0.14268570789663526 now:0.08981288107133484 the:0.005183211651859133 :0.581879330216137 +the:0.15487155805336744 corner:0.14909335783031047 place:0.06958043967916382 center:0.04949936358459348 :0.5769552808525648 +the:0.30221185127854033 our:0.16553094661766007 when:0.133595557539562 if:0.12228177928089425 :0.27637986528334346 +knew:0.0012035345540699009 opened:0.0011189243840491457 knows:0.0007191220272287697 did:0.0006156275711533862 :0.9963427914634988 +was:0.0921335733364118 any:0.0895230223256572 iu:0.06811099963824929 the:0.0664821105730535 :0.6837502941266282 +By:0.14998258482042434 by:0.09635776660090994 through:0.08684615834549803 away.:0.06037246137597673 :0.606441028857191 +ought:0.391751474601734 a:0.10314476731630418 not:0.06078047647102013 position:0.052116780578184134 :0.3922065010327576 +week:0.3830562072467625 September:0.31841973024594283 night:0.24321340123322482 beginning:0.016072692980396777 :0.03923796829367302 +way.:0.001707869417714669 to:0.0013172472851307243 good.:0.0010806871559144889 protection:0.0008949002227762934 :0.9949992959184637 +total:0.16004994143999302 declared:0.11877238580944297 cost:0.06116968146535848 real:0.028886375325819988 :0.6311216159593855 +.:0.07724945515953022 M.:0.04367935853192223 Here:0.029533789497789936 then:0.013916082025600485 :0.8356213147851571 +In:0.5024610381450153 in:0.42969901101904623 into:0.057216230639925585 Into:0.0076927007230344355 a:0.002931019472978336 +Los:0.9671304888396124 San:0.007397778258174832 the:0.005039173511059942 York,:0.0016063654356425422 :0.018826193955510193 +o'clock:0.16703299186577564 The:0.049126266489877314 and:0.0449351539812231 a:0.03574472822756168 :0.7031608594355623 +the:0.10066508445274414 its:0.0026879258689767593 my:0.002135389245488019 tho:0.0015211332177764282 :0.8929904672150148 +him:0.08101748256675542 me:0.0802242447491809 them:0.034513302515753824 us:0.02476570432584246 :0.7794792658424673 +This:0.4612934639840142 It:0.2822774629655515 it:0.10058993074051169 tion:0.026675679285830183 :0.12916346302409246 +not:0.11272854100307646 a:0.11265714475317261 the:0.09375778094715834 in:0.09292003816289246 :0.5879364951337 +I:0.8741120529715729 We:0.056322063754742385 "I:0.02674790540500264 one:0.025218624826194917 1:0.017599353042487192 +A:1.1744842241876651e-06 it:6.715352104821588e-07 smaller:6.321939039455702e-07 of.:8.184350107714726e-08 :0.9999974399431604 +and:0.07965720153975844 that:0.03532884544038938 occurred:0.033178366711377694 of:0.027499191059023185 :0.8243363952494512 +the:0.558945310802989 his:0.24483152797814337 her:0.07495340558729321 my:0.0642891363653361 :0.056980619266238215 +I:0.08804821034853567 against:0.012256261954562924 heard:0.009454084835570455 House:0.005638849545646972 :0.884602593315684 +formed:0.0009895600827790178 -:0.0004788640330661699 and:0.0002703555644048092 to:0.00025745653441835 :0.9980037637853316 +of:0.3037937273465614 and:0.11780752921942461 the:0.0954475526922259 a:0.0803264052091537 :0.40262478553263426 +any:0.9717303260166995 the:0.010195044335706008 bis:0.00667646638427398 a:0.006501436998806186 :0.004896726264514307 +of:0.6198029347268071 in:0.19364799104280128 to:0.058131589813454954 In:0.05485657923291213 :0.07356090518402457 +that:0.7879811919199973 That:0.19770321824790363 that,:0.008606759563202646 thai:0.0043174743192794214 thnt:0.0013913559496169369 +be:0.5840815235335273 pro-:0.18559596491226169 bo:0.05851553320999895 have:0.054355329644259716 :0.11745164869995232 +John:0.04919134617158681 Frank:0.048532229887660934 Charles:0.0446963573419035 J.:0.04384633412585464 :0.8137337324729942 +to:0.7310054403756149 upon:0.1708236831003157 in:0.027494566315978738 with:0.02103807985814674 :0.04963823034994396 +people:0.0384541614170894 law:0.03389908289459099 military:0.031056188474789085 government:0.027575620489492293 :0.8690149467240382 +men:0.0335683601780977 natural:0.006531562875528934 than:0.005585132409871413 Western:0.004553713381054503 :0.9497612311554474 +fill:0.11801505692607775 same:0.04717831113141782 air:0.039268945374410315 sup-:0.03648463828660849 :0.7590530482814856 +in:0.3212075964669643 at:0.22520752981988348 of:0.2220912518230405 with:0.12424375223892882 and:0.10724986965118286 +day:0.03207241497834394 and:0.023296690621100725 out:0.016393045821956685 tion:0.013495989945301795 :0.9147418586332969 +and:0.08734967862483303 ed:0.07262221207553213 up:0.052815110161900936 but:0.02689273646718041 :0.7603202626705535 +worthy:0.036491018641672666 the:0.029331843623037358 interesting:0.01999944720935181 a:0.004850798113687931 :0.9093268924122504 +be:0.8889275512022269 he:0.051508428816441854 bo:0.034897821788861354 lie:0.010935718458574224 :0.013730479733895769 +to:0.9996141862152352 almost:3.6813220862606004e-05 you:2.1803553040745202e-05 only:2.1561842544450077e-05 :0.0003056351683169459 +he:0.6820963800306925 it:0.09256515946263849 had:0.004108418715386694 been:0.0037226842786985664 :0.21750735751258377 +have:0.41704443378076983 be:0.36006442458082744 had:0.05081580474103435 has:0.02887687957400182 :0.14319845732336653 +other:0.003312967218188073 skin:0.0020951164618867074 such:0.0012083541365716201 the:0.00022145061741750307 :0.9931621115659361 +set:0.14110984562118473 put:0.10142160469138604 come:0.016866298756036572 taken:0.01282857744411628 :0.7277736734872764 +of:0.28589338593695873 in:0.1721237857684351 and:0.1461039946792002 In:0.06042019036723318 :0.3354586432481728 +the:0.5338293687788137 this:0.056762234693489386 tho:0.02599889383158315 these:0.0200588267989303 :0.36335067589718356 +on:0.9893248451088327 ou:0.009522787076028431 oa:0.00105251374327428 by:7.216320617300222e-05 in:2.7690865691567125e-05 +battle:0.2248427674773716 fire:0.14556174593671004 crowd:0.0636780701121172 weather:0.0328478298580593 :0.5330695866157419 +regard:0.5314662478603192 order:0.10765654013564169 the:0.03831762264925115 and:0.019407866938713828 :0.303151722416074 +of:0.24920721503105764 and:0.07909179916306447 to:0.05362632658378196 or:0.04050608678356775 :0.5775685724385281 +days:0.6690829492631847 hours:0.10397541788384877 years:0.031812987164743275 months:0.02657551448153466 :0.16855313120668855 +a:0.004905849619506361 pressed:0.003653723568910994 of:0.003392650637543208 the:0.0022017840131116117 :0.9858459921609278 +I:0.10062348940368472 that:0.006354462328491988 as:0.005906735110077499 you:0.0029985920563736683 :0.8841167211013722 +the:0.9022914448866352 tho:0.03968193901232606 his:0.020313042525126834 after:0.01313593035605591 :0.02457764321985613 +and:0.20184864899149815 of:0.14868132109521265 in:0.10851010884071177 the:0.07710086463645237 :0.46385905643612513 +on:0.899841049837026 of:0.0524633746145397 near:0.023411959997847034 in:0.012778271925483406 at:0.011505343625103885 +men.:0.006526360015326697 one.:0.0028575936939945886 people.:0.0020765414032589513 work.:0.001973048874113789 :0.986566456013306 +public:0.055282933343765585 country:0.046870302085368534 community:0.034283457893783655 opportunity:0.033705398613058185 :0.829857908064024 +easy:0.2775941443548964 the:0.10309397519480354 able:0.0946803895753492 difficult:0.08950544056509768 :0.43512605030985335 +or:0.36444628074730495 in:0.3116894262960164 to:0.07724432308997581 and:0.06578724711870716 :0.1808327227479956 +I:0.2736187799769742 We:0.1126446389553578 we:0.11246540540262709 who:0.105671394375891 :0.39559978128914985 +part:0.3875909962456441 top:0.0534849775438049 back:0.04517364169547011 face:0.04379718883040926 :0.4699531956846716 +she:0.5383188511931695 he:0.33163866231555306 they:0.026364204833747976 I:0.024435523288949317 :0.07924275836858007 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +of:0.5038550056619148 As:0.22559416602886123 as:0.07994454389549767 and:0.05456876341755316 :0.13603752099617314 +of:0.4066237447581303 for:0.1879458113471033 at:0.12187943865503685 in:0.05817115519229715 :0.2253798500474323 +an:0.7596201377211752 the:0.09440352533486669 too:0.04858696624730613 very:0.01682913585892131 :0.08056023483773046 +of:0.6987453902690891 in:0.12987631406958303 to:0.08092362740454039 for:0.03211044976192192 :0.058344218494865666 +time:0.9926778510173324 moment:0.001386182105005658 period:0.0008708966013109187 season:0.000537876164358854 :0.004527194111991974 +a:0.9998238859092603 another:0.00010476458588096553 the:3.9488039812515906e-05 to:2.0837544989380245e-05 :1.1023920056630869e-05 +the:0.5428403464469392 tbe:0.28751523070955987 all:0.04549535146704864 his:0.0406621463283426 :0.08348692504810967 +by:0.5006975659152472 and:0.026436281821910837 S.:0.015222877330206651 N.:0.011736836902361264 :0.44590643803027413 +war.:0.44597196786179516 government.:0.020693472194746324 money.:0.005214105032059842 side.:0.002506688797954515 :0.5256137661134441 +Mr.:0.15053955926301915 of:0.11425570578566661 the:0.08738195066004069 The:0.06002338970847577 :0.5877993945827976 +No.:0.1299540452622011 to:0.11955234138583103 of:0.0780552819922153 and:0.07167818983982482 :0.6007601415199276 +county:0.35908710965306817 attention:0.06336028704285177 or:0.05847935265919811 amount:0.033180904872750466 :0.4858923457721316 +or:0.7354680536491609 the:0.030221446997846967 of:0.028931328070256807 in:0.021505765179398357 :0.18387340610333686 +heard:0.3449381219611646 seen:0.19121036698399788 saved:0.0576428637906164 followed:0.019200124271886634 :0.3870085229923345 +and:0.9938827139468911 at:0.004263201700916032 in:0.0004202896111259081 as:0.00032912979864996593 :0.0011046649424171653 +or:0.21463369530856202 of:0.11470698780478332 and:0.09495368466135043 the:0.048840877404852844 :0.5268647548204514 +and:0.2650284935623259 of:0.03169949720181466 ,:0.03013236846840295 by:0.02259052033691159 :0.6505491204305449 +of:0.22924277504947724 and:0.07457487295862504 was:0.06896239139119961 the:0.04793149320582455 :0.5792884673948735 +ot:0.7134433836929136 of:0.2610562926997735 and:0.011099139294436762 men:0.008321452026740088 with:0.0060797322861359145 +every:0.03402636166766796 full:0.03143938198210899 expressed:0.02667834644618556 one:0.020111598036390222 :0.8877443118676472 +Board:0.04546793475944047 State:0.03866709743560394 number:0.034683704892083105 board:0.026183177416602955 :0.8549980854962694 +success:0.19051130094420493 use:0.13730841329426036 building:0.08673475094680559 time:0.07022007308849514 :0.515225461726234 +is:0.0248323361948526 the:0.015125326725657532 was:0.014947520156744006 are:0.011338353278807592 :0.9337564636439382 +treated:0.14143961394881926 be:0.11516344737045325 to:0.09970837434083507 a:0.08986145197139543 :0.553827112368497 +labor:0.9741376394776771 information:0.007305763214840203 than:0.006387850345242056 heat:0.002294070425092746 :0.009874676537148025 +which:0.35954661502230023 it:0.07220145677378634 them:0.01473672462220123 the:0.012147651248490505 :0.5413675523332216 +the:0.8336897902314339 his:0.047119608546572433 its:0.028779332451557466 our:0.020356224090873985 :0.07005504467956229 +there:0.9383430093562317 it:0.04067757060664862 what:0.004420483470907041 he:0.003319008042058467 :0.013239928524154222 +the:0.47443582412852775 his:0.16950892865914644 a:0.08872095071386482 its:0.04725858330943196 :0.22007571318902902 +the:0.18424299840948702 was:0.08397986524830058 then:0.08309327118629964 they:0.05360497975226903 :0.5950788854036436 +eggs:0.049051816330620376 cities:0.04834572728601467 what:0.03422468493764287 I:0.024310084557697016 :0.8440676868880251 +and:0.2508784241368925 of:0.2379904704010018 be:0.18616402257949574 on:0.10239830297292137 :0.2225687799096887 +the:0.011545948852239984 a:0.0022731501771677083 12:0.0019373025826473944 bo:0.0015561468794781396 :0.9826874515084667 +to:0.3328489173553211 in:0.29079203739583126 at:0.09986769862767166 near:0.0766716604469073 :0.19981968617426873 +used:0.10072978869793675 found:0.08543117172380313 interested:0.07420677230477553 placed:0.052678389758706784 :0.6869538775147779 +vessel:0.14665597620189336 payment:0.11466677990592294 club:0.07720052655299975 milk:0.07311898915873744 :0.5883577281804465 +and:0.04710498920754488 companies:0.03980210020043047 are:0.030777034144935322 now:0.027758953803671042 :0.8545569226434183 +test:0.48922474682175576 with:0.2597308981604386 be:0.16128787939635203 mean:0.03249170711165803 :0.057264768509795776 +navy:0.04958141360604468 blood:0.025323816062560425 place:0.021428273986476443 work,:0.020373547925084855 :0.8832929484198335 +a:0.18414583193681422 who:0.18049204683387943 the:0.17878812626724094 and:0.13527808503821784 :0.3212959099238476 +while:0.08489332270233355 man:0.07045299122128788 people:0.0698681546213787 right:0.05890292306701991 :0.7158826083879798 +at:0.8194371801700383 in:0.0565382328076024 to:0.04384638011960216 nt:0.040831649738835046 :0.03934655716392212 +.:0.33104980928077404 R:0.04278424331393657 of:0.03375168401993785 B:0.0326252272951992 :0.5597890360901523 +the:2.4560653012374577e-05 said:7.407761291541733e-06 Co.:1.4981962646470221e-06 Mr.:1.357116472302305e-06 :0.9999651762729592 +.:0.0007897163838164927 ,:0.00033229251704215874 Company,:0.00011937145380190821 C:3.568371421752716e-05 :0.9987229359311218 +went:0.45693702216547216 tried:0.1650816458711933 decided:0.15019965145974906 proceeded:0.04285625166454902 :0.18492542883903645 +and:0.397384374668126 &:0.13394344993861304 of:0.055741301406350724 the:0.012722604570227938 :0.4002082694166822 +formed:0.13817886520803463 secured:0.049847936947881456 broken:0.04760526749613628 none:0.0150729349764583 :0.7492949953714891 +will:0.27022550785818816 to:0.2547504174737092 should:0.18562844269697504 may:0.15811787546958314 can:0.1312777565015445 +grand:0.022999755647416645 no:0.016131359438044737 means:0.010541188223976155 experience:0.00914557652300575 :0.9411821201675566 +any:0.38285882894071765 a:0.37644931794063163 the:0.19795327811698557 which:0.017525613706989712 :0.0252129612946755 +the:0.8489352475075642 down:0.054330940244453264 great:0.020475084012398316 of:0.015653864570297785 :0.060604863665286356 +the:0.43913532633038443 this:0.07099936025075618 its:0.06396199430050305 his:0.05229050248502357 :0.37361281663333284 +had:0.2823449954353027 was:0.09045326158949431 of:0.08903744426911502 department:0.08852186789834426 :0.4496424308077436 +the:0.06070064864523796 character:0.009203830676416567 it:0.008175940089030886 events:0.004179501697996131 :0.9177400788913185 +the:0.635820792730238 in:0.11981614859138426 my:0.04172014613509111 each:0.033673257982099476 :0.16896965456118732 +the:0.9235784360759923 our:0.03364225043499193 free:0.009080918070491805 conditions:0.00868835038498568 :0.025010045033538413 +to:0.7184141992025909 who:0.25740649730902615 would:0.011898884168043874 will:0.006646291482662241 shall:0.005634127837676971 +fallen:0.17582779913156749 up:0.08378307956717339 said,:0.05252966504563391 told:0.016358258073764037 :0.6715011981818613 +for:0.16957760318549042 profit:0.13810477967349327 and:0.08201788266360582 the:0.05805799913807129 :0.5522417353393392 +wonderful:0.048452907706772755 great:0.03398551970777458 the:0.02832253574596184 most:0.028131788491814372 :0.8611072483476764 +felt:0.05852644813750241 looked:0.05661186829114517 grew:0.031727088661858915 was:0.026874174118805685 :0.8262604207906878 +Southern:0.5123682188284965 United:0.3831025469547458 two:0.005892491394118553 U.:0.004289536893889319 :0.09434720592874976 +the:0.6647805838074414 to:0.13597240207852065 at:0.07596596986321202 with:0.06440640063045364 from:0.05887464362037202 +their:0.103312611550813 best:0.04855773107256432 sufficient:0.012347114677004742 that:0.010697175530047908 :0.8250853671695701 +followed:0.08371607526890797 accompanied:0.031155713847760717 made:0.015564148755489223 done:0.015130636551115477 :0.8544334255767269 +and:0.9274248942671731 that:0.016644943900769364 but:0.008947778867048966 him,:0.005194107896626528 :0.04178827506838199 +of:0.3720926998804748 that:0.13551093806524483 and:0.12615013871444317 etc.,:0.11128081103663358 :0.25496541230320363 +power:0.06488725341734425 which:0.05784919650243263 who:0.03213295031454036 Congress:0.021740264258042284 :0.8233903355076404 +records:0.0837686076925648 people:0.05682356322817543 facts:0.04053092482356541 parents:0.02452072915557024 :0.794356175100124 +a:0.37189761412021877 the:0.3034526127100816 that:0.1349338936948684 two:0.058326073779145074 :0.13138980569568612 +the:0.11044661684427129 he:0.06431286568206933 lie:0.04093583587881195 his:0.03169174536614356 :0.752612936228704 +the:0.3903090010431459 any:0.1041308924743484 said:0.08340881337579305 no:0.07233940734722964 :0.3498118857594831 +city:0.08593521847314235 town:0.06733389201510165 world,:0.026343049937323258 court:0.021550760987830247 :0.7988370785866024 +and:0.437898001401245 the:0.19352767018848416 of:0.10720630314791543 or:0.030031841143451327 :0.23133618411890414 +and:0.24944874527812771 or:0.09388246354967775 the:0.07449299105292959 of:0.07291787737502793 :0.5092579227442371 +official:0.10266209940741079 following:0.04910787201475134 the:0.015844131546087548 said:0.014080805998675462 :0.8183050910330749 +and:0.14548498503540475 of:0.10834420282574146 the:0.06542880436058636 to:0.050070480728976234 :0.6306715270492912 +weather:0.24582713826014518 grass:0.060691857358639724 there:0.02906079487684705 summer:0.025450615075157668 :0.6389695944292104 +In:0.8303973709841012 in:0.0677703428383177 of:0.058082581476046447 price:0.006695718845022195 :0.037053985856512366 +serious:0.6845299312950315 good:0.04613972306485543 similar:0.010609218351262007 labor:0.00466036779163052 :0.2540607594972206 +The:0.31969546367189505 the:0.3146858007403204 tho:0.10654809678620747 and:0.08664537622860036 :0.1724252625729767 +the:0.4379712160484728 a:0.03673970492495565 tho:0.02277844730437077 these:0.02109884180489878 :0.48141178991730205 +campaign:0.06672723649984823 hole:0.03216589032094838 living:0.02906278807339487 while:0.02331551757159272 :0.8487285675342158 +the:0.19727492951183773 and:0.10331284952704825 to:0.09418220287048222 was:0.08390684978705457 :0.5213231683035772 +and:0.19370951220770866 to:0.19205001177102105 that:0.1632581527250828 of:0.1238321519778864 :0.32715017131830104 +and:0.0753666167207227 of:0.06160396088706542 the:0.056055674410937034 to:0.0271976769945427 :0.7797760709867322 +to:0.9996581504027096 lo:0.00026929148699055087 u:6.278563262170794e-05 and:4.215339325180079e-06 :5.557138353039755e-06 +the:0.3893983051980095 their:0.11992644426133742 a:0.07376595527967746 her:0.06042863206449975 :0.3564806631964759 +and:0.010219866782791973 Lincoln:0.0031703559828145924 John:0.0028623289745168794 to:0.0015518140902270224 :0.9821956341696494 +the:0.4251290673364046 a:0.12766833011331724 and:0.0589819749850273 The:0.04527144109731697 :0.3429491864679339 +people:0.21839168937028114 the:0.15771305752513662 men:0.0696775870157937 these:0.05411870269658587 :0.5000989633922025 +there.:0.02939829441922254 treaty:0.003968257277415472 President,:0.003553057803092222 honor:0.0032741023548683917 :0.9598062881454014 +as:0.43848762501067773 that:0.11318278824561924 and:0.09320743001693163 when:0.05576125315022732 :0.299360903576544 +who:0.26166505882880725 a:0.18367584024520373 whose:0.07953279965738469 the:0.07677028272285738 :0.3983560185457469 +as:0.9305891124844208 a*:0.02163144991485572 aa:0.010312402341120066 from:0.009858017574834116 :0.02760901768476923 +said,:0.21221601823890632 said::0.13505481827277918 would:0.10500081978081044 may:0.025821786903224328 :0.5219065568042799 +in:0.6269372901716037 of:0.1475751147310769 In:0.09404073874134886 a:0.03690609389722168 :0.09454076245874873 +will:0.3665272190497553 to:0.2856747114717548 would:0.2813453171671524 of:0.04476359135144592 shall:0.02168916095989142 +out:0.14281752479168308 quite:0.0444536672645704 is:0.03442699597435219 to:0.027452670243371828 :0.7508491417260226 +dollar:0.44247749734546354 hundred:0.4391890355290885 thousand:0.02942008879703952 dollars:0.012460017105671697 :0.07645336122273672 +the:0.3620745484400965 a:0.08390145041963896 this:0.044136871734618464 such:0.039404118224018334 :0.47048301118162766 +by:0.07718120941361438 a:0.05164145730491646 the:0.05012491741254947 an:0.03541987120477246 :0.7856325446641471 +and:0.05254739225121086 day:0.015291004521772704 feet:0.012078717794185933 ed:0.011934117786324295 :0.9081487676465062 +the:0.3373868207933866 St.:0.1397454988372722 a:0.110349836315432 tho:0.0808640956886027 :0.3316537483653066 +of:0.5626883502998373 and:0.22829734637858476 in:0.015489622365168789 to:0.0103791865298219 :0.1831454944265871 +Now:0.12068502501147249 the:0.080761293215125 -:0.04809350955687205 W:0.03376631420826942 :0.716693858008261 +during:0.7851128225855364 in:0.07410730901987735 nearly:0.06297583514894357 by:0.035053911505686056 :0.04275012173995647 +the:0.0016346925345333489 being:0.0008835822356855958 be-:0.0003315072457337002 own:0.00027282669368654423 :0.996877391290361 +was:0.562142253146883 is:0.10640491146803852 I:0.04787927351467342 had:0.04781453953746131 :0.23575902233294369 +to:0.9982277400721944 and:0.0005043079337762018 rather:0.00011340414195755208 may:8.905932009647099e-05 :0.00106548853197546 +shall:0.5770563690655601 may:0.15239330847622048 to:0.12476678861310768 will:0.092913282998862 :0.05287025084624959 +the:0.0005756084129434492 A:0.0003847925130307925 a:0.00021573515549384831 The:0.0001962651503356602 :0.9986275987681962 +were:0.38324583384421773 are:0.1597958555269727 would:0.09281202264714856 will:0.08480333556444952 :0.27934295241721147 +from:0.25263117158318743 in:0.21062336659629363 George:0.017049119456459476 the:0.009759479366539849 :0.5099368629975198 +in:0.2182230391502352 a:0.1041424828994549 more:0.09352048186806694 very:0.08254597469560991 :0.5015680213866331 +of:0.08114582656692157 and:0.07019525633739224 the:0.06250928012631574 C:0.05515018554076633 :0.7309994514286042 +had:0.2412004006202313 can:0.0918445862266844 did:0.0824774724798273 was:0.0745917007631013 :0.5098858399101557 +that:0.26388630501346444 of:0.25384861521871294 the:0.2364058736983751 when:0.16435502765174273 :0.08150417841770478 +it:0.2884509480184816 them:0.25726983447880164 him:0.12502894703883122 back:0.10227050719995584 :0.2269797632639297 +make:0.04039259237326739 be:0.03900155516444696 the:0.02680027689814253 of:0.025218823648401296 :0.8685867519157421 +the:0.8630004658564024 a:0.0765130459520424 her:0.015593753473576562 whatever:0.011593385305032872 :0.033299349412945704 +the:0.17027874486263925 a:0.12135006628266656 personal:0.07626489775574152 proper:0.054163531809136696 :0.577942759289816 +to:0.23744753686521056 and:0.14812629726797394 the:0.06396841941845481 which:0.03704919380434277 :0.5134085526440179 +be:0.03511800161807737 have:0.006599846262327633 bo:0.002615142027451964 the:0.002484115122465748 :0.9531828949696773 +caused:0.7798356722076301 discovered:0.027375707250672475 taken:0.008539045541578156 built:0.0032914708280594065 :0.18095810417206 +make:0.2275439984804766 think:0.021624047637965094 turned:0.013162543954482494 wind:0.011602837689632104 :0.7260665722374439 +deceased,:0.16008278782312801 of:0.09260256928966691 by:0.08095636962528806 as:0.06989937771442296 :0.5964588955474941 +They:0.10847679223536595 who:0.07105751899405655 city,:0.01371331710491888 has:0.011011512022865478 :0.7957408596427932 +the:0.8100013070945206 a:0.06467791064099282 to:0.051976190744542246 In:0.0392390915972981 in:0.034105499922646276 +is:0.06905739819802273 w:0.03791477388531203 recognized:0.03504073801446383 said,:0.031867905483334645 :0.8261191844188668 +of:0.13009160089276944 was:0.08064901784563624 and:0.07561410855113611 the:0.06637671896971269 :0.6472685537407454 +of:0.18956221054581024 ?:0.10959275274908584 way.:0.09658560764139805 that:0.02157066409916335 :0.5826887649645425 +it:0.09365608442920013 set:0.061752391293393834 took:0.048333729842031756 put:0.04686430505092247 :0.7493934893844516 +of:0.5100930760924727 in:0.11147890936269673 that:0.0899186215714549 to:0.06756935779011518 :0.22094003518326052 +and:0.11156858902955481 the:0.10479205211704483 of:0.057690452892935846 to:0.03693068022386746 :0.689018225736597 +man:0.11275408503984098 woman:0.05419533221393034 crowd:0.03955558559269897 platform:0.029357996348875558 :0.7641370008046541 +the:0.7117310732233714 a:0.02313418942509201 his:0.022717333601786856 their:0.012669497036223184 :0.22974790671352646 +went:0.19840536632514236 vessels:0.0911021080383299 are:0.05129849196969965 were:0.0485887479300838 :0.6106052857367442 +be:0.2329672283420644 republican:0.15641688184289237 his:0.07372508161242029 the:0.04206223955272925 :0.4948285686498936 +failure:0.039057851877862815 expenses:0.03853555929141101 homes:0.030606111559002426 life:0.0267263349869007 :0.8650741422848229 +get:0.10433178403199371 secure:0.09070467164123189 go:0.0557412337071684 return:0.03488550553944892 :0.7143368050801571 +gold:0.8053518815096875 severe:0.004410073480611871 trouble:0.0027119015320626696 fear:0.002412875967440125 :0.1851132675101978 +entered:0.08687432443976863 notified:0.06412319114305022 filled:0.041369818866629736 closed:0.03612908897179572 :0.7715035765787557 +he:0.5070721984721547 they:0.3816027719471175 she:0.043824333344638755 we:0.03452350195099347 it:0.032977194285095664 +that:0.299552438245842 and:0.24170077757986538 but:0.1294725645584513 But:0.12665890292551374 :0.20261531669032776 +of:0.37877141623476657 in:0.32137208008824064 on:0.1022624614757891 sold:0.08087501716705955 :0.11671902503414405 +me:0.313122872112062 him:0.23656163479819295 it:0.11255547891893487 her:0.10223723887282601 :0.23552277529798424 +is:0.5206351958088093 was:0.09223462689024725 Is:0.06362679169834089 the:0.04675838133150821 :0.2767450042710943 +but:0.147054754327888 and:0.14162939004020098 that:0.1106357889773954 as:0.10486081727033687 :0.49581924938417876 +Court:0.8689440711880972 Attorney:0.07736971205242034 court:0.011900303214536279 Judge:0.01063372837727926 :0.031152185167666865 +he:0.4604012499043104 it:0.14861088609002743 mortgage:0.13721773288515116 she:0.03555904280127949 :0.2182110883192315 +the:0.2398638848678276 in:0.21947206094811916 of:0.18860627523423681 to:0.18482565380275162 :0.16723212514706493 +the:0.6779114069890484 tbe:0.2314878535137886 tho:0.07790578283241169 tlie:0.0069947692431138785 tiie:0.005700187421637302 +physical:0.2365068392154652 moral:0.0876118784274618 French:0.01913012163525114 natural:0.01623037873407052 :0.6405207819877513 +give:0.12578623878432676 afford:0.060003814355026684 be:0.007369322637522157 complete:0.006296584138039706 :0.8005440400850846 +beyond:0.8965751275591123 outside:0.07713429670919966 to:0.0046538504282738185 without:0.0022575306326256712 :0.019379194670788653 +he:0.13272317835355998 and:0.11539604772778954 I:0.11084511131689494 one:0.10109056808099444 :0.539945094520761 +the:0.4559947993283086 The:0.2820840202646927 and:0.1005817843552046 over:0.027140074643159054 :0.1341993214086352 +the:0.9483431372503066 said:0.037551864946433526 Hie:0.01383015572540184 tho:7.421802478230024e-05 :0.00020062405307573028 +They:0.09407831633770508 they:0.09253977357028093 and:0.08543041469478153 who:0.08342898280084228 :0.6445225125963902 +man:0.0641122013270534 child:0.0567890427886526 little:0.04041623799056504 spread:0.030513795518888887 :0.80816872237484 +and:0.6995299362978068 but:0.12242571754397433 one:0.06442040632858714 but,:0.019764529505727213 :0.09385941032390444 +just:0.36502207002074405 of:0.17324063415669566 and:0.09976224964371001 to:0.06032120026564729 :0.30165384591320316 +was,:0.017590276273279585 is,:0.009853863522202234 is:0.00792377988412414 was:0.005688674888094318 :0.9589434054322998 +had:0.1769904551485616 have:0.1674948260325508 has:0.12863654403903393 who:0.022731963402181844 :0.5041462113776719 +and:0.017864217478237455 employed:0.00601210117310844 was:0.005297201256569272 committee:0.0036342693058297195 :0.967192210786255 +living:0.10199950980092787 weight:0.04706076126213708 value:0.0366315568853897 life:0.018634085804663282 :0.7956740862468822 +a:0.3732162046734246 the:0.2618802999045826 his:0.19408153809398762 our:0.09177100412712083 that:0.07905095320088436 +in:0.12871533965217682 day,:0.05020720612736868 course:0.021363335454643168 friends,:0.020706479688635183 :0.7790076390771764 +a:0.4832210080063131 the:0.18502230663631244 in:0.07493310353648898 of:0.05425904288156765 :0.20256453893931783 +of:0.35590722034254235 to:0.11502399207777377 that:0.11189307893061311 on:0.08605580519124693 :0.3311199034578239 +is:0.9219561336198033 Is:0.02023319991532255 was:0.018150477327639757 ls:0.011843846434796012 :0.027816342702438466 +laws:0.02575610489294084 the:0.015865631262362203 people.:0.014914148644112894 to:0.014453523621017188 :0.9290105915795669 +render:0.3484971164076966 for:0.07949622395930331 that:0.048332986331651666 have:0.043269712035779215 :0.48040396126556917 +she:0.15800201699719246 shown:0.015458340497601341 sure:0.013994322209884991 result:0.010594266784559329 :0.8019510535107621 +desire:0.16460369523134968 want:0.0796509567386682 began:0.07417977620965083 have:0.06464819156650463 :0.6169173802538266 +see:0.6516839186562693 get:0.18774568452832027 save:0.11290619548573497 not:0.01343761754902298 :0.034226583780652416 +the:0.09313677862550107 a:0.07300640782874017 Black:0.06068809672342048 St.:0.05551477096814463 :0.7176539458541937 +submitted:0.20410818942503092 of:0.12271779502514818 about:0.10890847943625889 Into:0.0753151189925351 :0.4889504171210268 +building:0.5996811350418862 getting:0.17747336910070347 to:0.11170269401591085 making:0.02773732471727719 :0.08340547712422233 +at:0.5323489495801187 to:0.1603450951703168 by:0.1374718178416045 in:0.0834252708590629 :0.08640886654889697 +to:0.37177669085984644 and:0.06790745863802941 so:0.03688540257400868 Christ:0.03652601884187302 :0.4869044290862424 +the:0.9795291709851757 his:0.014271640689423219 one:0.001609976001227067 a:0.0015576114252698007 :0.0030316008989040586 +first:0.045368570308638285 last:0.030453868481850548 exceed:0.02633828742185018 time:0.022948985954218598 :0.8748902878334424 +is.:0.026910240304373095 dead:0.009335885439693251 body.:0.0010417360589276962 the:0.0007932896042024176 :0.9619188485928035 +well:0.5013138957829402 much:0.06565117793289997 soon:0.05970806771615173 large:0.029833232164618695 :0.3434936264033894 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +Those:0.18743554322650646 upon:0.1858457796104249 All:0.16433661401146682 and:0.041529270704470274 :0.42085279244713164 +made,:0.09803202517579418 given:0.03344190887223883 ;:0.02908914219032898 here,:0.010510157588817856 :0.8289267661728202 +days:0.7710438644646969 year:0.1101810079164581 years:0.028383210291970988 months:0.020688136812749853 :0.06970378051412408 +of:0.4816582827393887 at:0.2853428995195284 and:0.11580312861561276 the:0.03767886606120653 :0.07951682306426341 +per-:0.4991553747475322 per:0.1622848705105579 the:0.011963804208602173 and:0.005784047347518455 :0.32081190318578934 +be:0.07621549206336649 extend:0.03965962210604759 speed:0.02814022630510246 have:0.022604500745328954 :0.8333801587801546 +tax:0.1358162443075117 out:0.08087672577209257 placed:0.05105303964107642 back:0.047223012326912346 :0.6850309779524069 +and:0.27784872063263577 of:0.13022529818507633 the:0.03395847768646682 may:0.030697882004885713 :0.5272696214909356 +city:0.10761990200258256 County:0.05814987194579557 City:0.0566996657837249 county:0.049867036765823054 :0.7276635235020738 +in:0.266056770318567 that:0.2035991741761574 of:0.19583323277688006 who:0.044738206826918654 :0.28977261590147685 +the:0.4891201967686605 her:0.26613856155287174 his:0.10010590706538607 those:0.040044871194166824 :0.10459046341891487 +further:0.5837068077457815 be:0.18471322144235716 a:0.06916970807373794 see:0.03819855743903842 :0.12421170529908494 +from:0.9580486711328682 in:0.00952863543703662 for:0.00768661890774243 his:0.0036730874009869175 :0.021062987121365874 +the:0.7352487925867524 a:0.01859753083188862 any:0.013599928707342262 Ohio:0.007503547934445188 :0.22505019993957162 +of:0.7435634843560468 and:0.04811773795670741 in:0.03434244678080205 to:0.021658387718245124 :0.15231794318819855 +II.:0.21373007974791458 P.:0.19180046473827564 T:0.06279653482782081 C.:0.02909015570011157 :0.5025827649858773 +;:0.00254716553997753 tract:0.002228029924116828 tire:0.0010756664184044095 last,:0.000929197685048324 :0.9932199404324529 +to:0.25212806691694606 the:0.20645180544552194 and:0.11962065363305138 a:0.06275234010490596 :0.35904713389957466 +down:0.701483273140337 driven:0.025485826387542498 an:0.009214761437379338 proved:0.008807807351647014 :0.2550083316830943 +to:0.26097055897207416 will:0.17838889437650557 can:0.1765696584464284 must:0.15901342726360093 :0.22505746094139112 +the:0.5411226779269033 two:0.21150434699130655 as:0.0890965869174327 a:0.023248195739397782 :0.13502819242495978 +add:0.058356441943008465 go:0.05355323579630469 appeal:0.046912763390767324 yield:0.042556037708602196 :0.7986215211613172 +and:0.38698445608916915 is:0.17043156643109025 the:0.11667128888690693 containing:0.1141341012211893 :0.21177858737164443 +that:0.49018222305160986 to:0.2477257958638651 as:0.14174278356687445 and:0.03057626950871122 :0.08977292800893934 +or:0.30431069097468816 and:0.0972769166112417 such:0.08690641606537933 of:0.08386256699399279 :0.42764340935469797 +the:0.266640621854834 construction:0.13267149645779047 such:0.05097242939073831 con-:0.027478531372189252 :0.522236920924448 +prior:0.9258752257021187 previous:0.0687098424850892 ago:0.00047286167568325 in:0.00026486406449079553 :0.004677206072618048 +enter:0.8742234102406125 pay:0.028984863756686224 go:0.012289676626721912 was:0.004511657788617147 :0.07999039158736207 +the:0.7711830484834817 tho:0.13573041958285526 its:0.03280522807082635 his:0.015961507552808393 :0.04431979631002801 +man:0.7471240479403024 and:0.03422310298044904 girl:0.01528831285033907 woman:0.010479189091840337 :0.19288534713706917 +the:0.23562536132614098 that:0.16769478247783903 The:0.14700895683460605 I:0.1122390681177862 :0.3374318312436278 +property:0.09884281147167474 way:0.037294567026151824 wheat:0.025704310225557515 money:0.013119564940374365 :0.8250387463362415 +net:0.07386515705651647 other:0.046836043974908294 southern:0.04095669207123257 earth:0.03868676903855412 :0.7996553378587884 +of:0.6883329645625528 when:0.039204495415184525 or:0.03678733978251653 and:0.03465046321916234 :0.20102473702058382 +up:0.4772064633483729 the:0.1070685229462191 from:0.10409524026428411 and:0.04387256719188927 :0.2677572062492346 +as:0.6849340088644656 that:0.1909238985661068 of:0.029153695448306663 and:0.02123637563947732 :0.07375202148164352 +the:0.44243888341740256 an:0.14573918469492084 of:0.07047688718157372 I:0.03620445392668646 :0.3051405907794164 +man:0.09154041403426029 good:0.03900204244975325 theory:0.028418110708004044 deep:0.026150232067745336 :0.814889200740237 +at:0.734091903863557 until:0.09089671394358209 it:0.059558893659689485 for:0.04729927669001318 :0.06815321184315819 +and:0.14991213887166188 The:0.12575610338156157 s:0.1147639757502468 a:0.04716486327542631 :0.5624029187211034 +on:0.6550420407260409 On:0.11746593247077607 of:0.04964179700190866 and:0.03581112753748924 :0.14203910226378527 +of:0.7934528921017424 tho:0.15696569341342106 or:0.022026905092121803 ol:0.01224751300462389 :0.015306996388090698 +to:0.9956659091481075 his:0.002928853911400634 in:0.0005449860695063279 all:0.0002580781816162981 :0.0006021726893690657 +home:0.0021569647061784472 the:0.0005384225400459939 school:0.00050436102157618 Bank:0.00047143393729808143 :0.9963288177949012 +gone:0.3474863950451361 been:0.17571674434531726 grown:0.16812049153163164 looked:0.07840758013136365 :0.2302687889465513 +and:0.2541777121530023 about:0.1408356740393691 of:0.10916647760699744 or:0.08870952675901268 :0.4071106094416185 +cars:0.2540577660901352 charges:0.1602376819831739 taxes:0.0900254741238128 due:0.07552902801487558 :0.42015004978800274 +of:0.18315666245290801 upon:0.14501880087181296 is:0.10444883461247263 by:0.10089288017108579 :0.4664828218917206 +many:0.9430961592960042 not:0.05583261597337377 eight:0.00035931946103446975 a:0.0001094820938599053 :0.0006024231757276434 +can:0.7029447350400071 could:0.07683936326031211 would:0.07281712763833319 will:0.06781418583680199 :0.07958458822454564 +and:0.969127909406135 nnd:0.023735575626820188 am:0.00641132450271895 to:0.00011617692233629849 :0.0006090135419895026 +.:0.06233049001815114 A:0.012617130579435473 2:0.005838811720849105 I:0.0053898521394689855 :0.9138237155420952 +of:0.5898560814122451 in:0.32641852200030186 that:0.030267705967430218 to:0.02135220471292315 :0.03210548590709978 +two:0.3022897631450391 out:0.06849469156312327 parts:0.05629959677414967 those:0.04714083444478171 :0.5257751140729063 +same:0.14556527595629587 slight:0.09489112058172788 various:0.04470472651593386 good:0.043789079071206195 :0.671049797874836 +owner:0.05061939669988722 law:0.049992652727989265 value:0.04914053311778765 price:0.034707768443912 :0.8155396490104241 +not:0.23917339058315393 found:0.17071565520712972 obliged:0.07245624011695112 said:0.06133071742159095 :0.45632399667117424 +and:0.23580732054935427 to:0.04798032525432066 of:0.04298347110123995 The:0.03535220982369378 :0.6378766732713914 +character:0.02199987114099961 out:0.021566701904245082 not:0.02074540923318766 the:0.02033393512489127 :0.9153540825966765 +a:0.35521193190096256 the:0.16096858346298 life,:0.09686599922201053 any:0.06519672707332179 :0.32175675834072504 +when:0.45397621403763877 but:0.15762114295381688 as:0.1337451149586479 and:0.08148203366128266 :0.17317549438861368 +hear:0.22198057714374583 Just:0.1988499902754494 of:0.175194328927222 and:0.08229074520238532 :0.32168435845119747 +country.:0.025384177629309817 home.:0.009687601470324991 party.:0.009433525017366662 money.:0.008438116688198044 :0.9470565791948005 +the:0.453011256607675 to:0.07703580919556684 he:0.07259243729196752 they:0.0533133442716808 :0.3440471526331099 +to:0.5569777678617154 of:0.08593000632209054 .:0.05741822241348058 ing:0.027312404182641616 :0.2723615992200719 +in:0.2290368231278841 of:0.1429490958492855 on:0.10160683292119947 to:0.09084802677882453 :0.43555922132280644 +for:0.3245053552394136 of:0.22287105001207252 and:0.14413167434591184 party,:0.12513060550055266 :0.1833613149020494 +all:0.41257425702319334 should:0.24966461874153156 and:0.20805774395832233 he:0.061277036913007586 :0.06842634336394517 +will:0.33749005907503093 should:0.3108222905153574 to:0.18871908900103931 can:0.08833297672177849 :0.07463558468679368 +The:0.5635583370822117 the:0.1453449712316406 In:0.022949718885401642 Tho:0.022340229965635523 :0.24580674283511056 +consideration:0.08132392975378647 case:0.08068182236106733 favor:0.049490716240061045 view:0.042786631826591794 :0.7457168998184933 +is:0.6519833967139527 of:0.14334223428134013 in:0.06648375242334638 it:0.05947491445614911 :0.07871570212521171 +in:0.1422468326837946 to:0.1317707300165742 a:0.11554816659262289 as:0.0975176391182721 :0.5129166315887363 +of:0.9426222521823489 ot:0.014862593487451758 ol:0.013218520630451425 and:0.008107104812905476 :0.021189528886842567 +that:0.08242384025677577 and:0.07313320701570028 while:0.0601698961124887 which:0.039285799972788756 :0.7449872566422465 +he:0.7979360881105847 and:0.035973606977805654 part:0.030395692780417517 was:0.009445537835004516 :0.12624907429618742 +of:0.3592113084417128 believe:0.22263814292159706 knew:0.10450885868568757 know:0.05762240931831144 :0.25601928063269125 +be:0.4805612438269383 not:0.23194391856453675 have:0.19397250685856093 bo:0.014890001939187419 :0.07863232881077652 +and:0.0677508807202454 as:0.02904438793944317 began:0.0174252056328523 is:0.017003104251155712 :0.8687764214563034 +in:0.2744416131022137 by:0.2426205709924097 at:0.17350935223524133 to:0.09621947074157959 :0.21320899292855575 +only:0.1916960035581037 proceed:0.18377853858549864 sold:0.08028010335588828 honor:0.0207223868757445 :0.5235229676247649 +now.:0.03818898640246927 clear:0.03266249294673811 the:0.026921280477169254 open:0.011828646203497349 :0.890398593970126 +and:0.07973431795948131 ticket:0.048368718593421234 are:0.04629929884153119 described:0.03300700244988991 :0.7925906621556764 +its:0.5540181508246685 the:0.2722529818022464 this:0.038733035697646016 his:0.03488011219043335 :0.10011571948500568 +said:0.03322267190238626 found:0.01656840341556739 purchase:0.016140058736911312 perhaps:0.014296280438130382 :0.9197725855070048 +thoroughly:0.2722056099252539 not:0.11970079265265193 greatly:0.11005232734178659 en-:0.10513789106722604 :0.39290337901308175 +them.:0.8522790849249358 the:0.015945752888660764 us:0.01530202267080403 men.:0.012592102292712305 :0.10388103722288729 +to:0.7840182569472066 should:0.13582120405837633 will:0.026854233994645545 not:0.024045381989910696 :0.029260923009860756 +the:0.20126260504599144 of:0.11983872917031718 a:0.08884870342244525 to:0.07564561386155373 :0.5144043484996923 +point:0.04154077257933814 source:0.04011776316844386 causes:0.020902634813746133 State:0.019463012815476643 :0.8779758166229952 +quite:0.29075410893660614 like:0.22002358332824656 the:0.19418220902653024 as:0.179761961939126 pretty:0.1152781367694912 +hands:0.21406117224237178 ground:0.15284264359436983 bread:0.06805848188259689 house:0.06623790707806222 :0.4987997952025992 +most:0.05392852717742084 best:0.04198727283476358 world:0.04027496903134827 greatest:0.03242835691077235 :0.831380874045695 +and:0.18286238748363917 of:0.1697481649313379 to:0.09104999102405352 which:0.03669859065706584 :0.5196408659039036 +those:0.09609504746934039 that:0.06144911459693757 with:0.03964760079954069 made:0.03910188315093102 :0.7637063539832503 +of:0.24212498969506466 The:0.09726951140641112 the:0.09137699035003186 and:0.05196656073878941 :0.517261947809703 +and:0.20272172468843389 for:0.19120653311756755 or:0.14471265321901605 Dr.:0.1386556799201967 :0.32270340905478573 +of:0.022841772032370186 down.:0.007358003618943956 and:0.0070941421326471 to:0.006165349913831068 :0.9565407323022076 +the:0.7078701838166823 a:0.08241474685202707 tho:0.0527115031533605 this:0.029683158207971065 :0.12732040796995903 +the:0.6886742271198754 th:0.2532669030061269 a:0.0528587311787024 tho:0.0011564298182805508 :0.004043708877014765 +not:0.004115275691334052 v:0.0016271025596426992 to:0.0012882581802879116 elected:0.0011644345526068145 :0.9918049290161285 +ft:0.45328073178893163 feet:0.29960392325497653 chains:0.10110724560220459 feet,:0.07726768163117254 :0.06874041772271466 +a:0.29706387439948684 so:0.11841961730859601 not:0.06828037299285553 very:0.059263729599318804 :0.45697240569974257 +the:0.35528315288068824 a:0.06074043419487853 his:0.06054099850711626 be:0.05649936140695487 :0.466936053010362 +all:0.15587667737420327 children:0.0162368427827755 hands:0.0014326827253579209 party:0.0009630025741403687 :0.825490794543523 +not:0.09575108949395968 in:0.0956994919067618 felt:0.07656691085625154 something:0.05381097728062301 :0.6781715304624039 +true:0.049296970343227865 evening:0.035550809117812804 value:0.03501062613772075 to:0.028686477773358855 :0.8514551166278798 +all:0.9605866626270742 of:0.012695410005583382 and:0.007657557045568614 the:0.004060577239761835 :0.014999793082011907 +been:0.9803385012924188 had:0.0030753614645440065 made:0.0021598964963211813 tried:0.0012324363858797138 :0.013193804360836229 +a:0.2676491784297425 an:0.02741502257823432 other:0.010085195490775304 duty:0.007182062407353366 :0.6876685410938944 +that:0.3445473008393437 and:0.240686049070073 but:0.09485991013784854 as:0.05557212959094761 :0.26433461036178724 +and:0.09626402449912082 the:0.05586930483220927 of:0.04782291331906022 to:0.02553471729917194 :0.7745090400504377 +to:0.2300495276641713 that:0.15105002861633757 for:0.14458497713029062 of:0.1174790262452246 :0.35683644034397616 +-:0.5348483373274847 f:0.0026295862857694387 la:0.001660990379949502 of:0.0007914570481715246 :0.46006962895862497 +first:0.025684394323864487 only:0.01584301196947133 great:0.015701570943822594 other:0.0107379154726198 :0.9320331072902219 +to:0.6133913050011022 in:0.2422881968264506 for:0.06692708434807972 and:0.03836473725202753 :0.03902867657233998 +that:0.2855177693917152 a:0.2641658342920529 an:0.12266131760413099 as:0.08777709799167895 :0.23987798072042188 +of:0.47279864892328266 the:0.06787233619653325 and:0.043235333623765 little:0.03758577270408522 :0.3785079085523339 +it,:0.3310460941586816 which:0.1522040985359347 work:0.1195846182979751 whom:0.039965893636746894 :0.35719929537066175 +the:0.14804804602763558 a:0.04470604023028057 him:0.024199389035553406 them:0.022581676262140016 :0.7604648484443903 +make:0.17735931903025995 any:0.11000317573694338 which:0.06150770817310441 pay:0.04894989980263382 :0.6021798972570584 +such:0.5064597529957059 said:0.18279866757922417 the:0.09770359745977332 his:0.022125871238865395 :0.19091211072643127 +the:0.15573798759797391 a:0.06635077518821654 of:0.05048262297972508 to:0.037419074475890116 :0.6900095397581941 +of:0.4317944568548553 on:0.21587229419782847 in:0.1832850637216319 In:0.0901803320266394 at:0.07886785319904507 +loved:0.5944616074685551 and:0.07394407307419579 had:0.04347265082628938 was:0.030573670755122972 :0.25754799787583665 +and:0.07688442623189601 ,:0.07374854055010444 the:0.04400936184367387 of:0.04226261207566201 :0.7630950592986637 +so:0.545691637901171 nothing:0.09615587483756481 it:0.08724358032568752 this:0.06273917197732379 :0.20816973495825283 +and:0.11768463021409825 of:0.06253504247344342 the:0.05990015862566202 to:0.02991271755477966 :0.7299674511320168 +always:0.9288931058671475 not:0.01547043647217144 probably:0.006605867317900282 ever:0.00526273113002774 :0.04376785921275309 +lot:0.06967496306417895 ber:0.03140995062504092 number:0.027034096301047833 crowd:0.02006390292562418 :0.8518170870841081 +ble:0.2551953685982528 ted:0.12334207113439523 only:0.023735328635634458 them:0.022607333824400878 :0.5751198978073166 +on:0.5112653883068909 to:0.1357960256757624 by:0.11991820615270173 of:0.11375488665170294 :0.11926549321294197 +giving:0.6259007370640817 to:0.19239390870415904 all:0.015730532659230568 at:0.015307766163118417 :0.1506670554094105 +.:0.030635058713853885 of:0.018280346412893715 It.:0.007917730797709572 it.:0.00720834037235907 :0.9359585237031838 +and:0.2529638132393111 was:0.06654944836375541 which:0.05168280430944971 who:0.03454859844991089 :0.5942553356375729 +the:0.8552784930630908 tho:0.06821644433017911 my:0.0362518063525073 his:0.007666596180243562 :0.032586660073979305 +they:0.5866292866309621 we:0.09239646691222808 the:0.082420355296835 there:0.059049444271688074 :0.17950444688828662 +of:0.4687504305442854 F.:0.01746613084233985 M.:0.017237996814663484 S.:0.016674476964396702 :0.47987096483431463 +nature:0.09105762486987988 fact:0.06738204491846789 current:0.06362462804541563 home:0.05264755425022354 :0.7252881479160131 +the:0.3915997057310782 to:0.15928177560661788 his:0.12173475032770853 and:0.08586340225948035 :0.24152036607511504 +all:0.9750655249719696 five:0.003131440007825544 have:0.0014823427002667818 one:0.0013543650672171571 :0.018966327252720894 +first:0.07313648119570455 last:0.07311363339661685 1st:0.06933847964218806 fourth:0.009917692260201238 :0.7744937135052892 +in:0.25908959521404923 with:0.2372199436465738 by:0.12898329414974827 on:0.08735571257720552 :0.2873514544124234 +the:0.5902459749659875 a:0.13412758552980256 his:0.0957768973586043 tlie:0.011248675013555776 :0.16860086713204983 +the:0.005611605290184721 his:0.0004977988707917579 tho:0.000281532936542735 thc:0.0001342182700456178 :0.9934748446324353 +great:0.035841795410532125 few:0.032452418147383845 good:0.026890880910325342 large:0.026254162735382672 :0.8785607427963762 +nt:0.05993059132924577 received:0.01356352413813981 long:0.008127239191215236 and:0.007703536366666343 :0.9106751089747328 +and:0.11344338565162938 Why:0.036263880823642396 tion:0.03181552772146009 ready:0.025685693663115065 :0.7927915121401529 +that:0.42764884783677665 did:0.06867196760035361 in:0.040892467800820086 of:0.032450995241154676 :0.43033572152089483 +the:0.5940990586332002 this:0.05601487192297403 these:0.05218271300235074 his:0.04453692864722997 :0.253166427794245 +the:0.014727615500696178 to:0.01447775324325373 same:0.011378100657588328 and:0.011351850739307029 :0.9480646798591548 +and:0.14078398840869666 i:0.10948927642025108 Democratic:0.10347700435699574 to:0.09211192021833972 :0.5541378105957169 +the:0.4764414834388155 his:0.1524800960493925 a:0.04788859484060497 this:0.04067168978546417 :0.282518135885723 +in:0.9001510630995029 iu:0.045262565112878024 by:0.013960472404934457 the:0.01379928018458442 :0.02682661919810032 +of:0.43028766457847556 that:0.12341412980334489 to:0.09328614916892843 by:0.08781974363421995 :0.2651923128150312 +District,:0.37637403908745204 .,:0.03977886591718398 land:0.027251043231599985 street:0.02347429522680982 :0.5331217565369544 +to:0.22100379930236994 in:0.21365483930018164 of:0.20944764307968305 the:0.08858394187863423 :0.2673097764391311 +for:0.5840939552109771 to:0.15130790566907829 and:0.08810163835664656 Mr.:0.04633384203041723 :0.1301626587328808 +and:0.4763240302781044 And:0.08807733053543966 of:0.024146716822901284 is:0.021125167458398684 :0.390326754905156 +right:0.27922292360481366 heart:0.1498808491783056 mind:0.08967129882712378 chance:0.03573884162589296 :0.4454860867638638 +own:0.04531582249085849 old:0.017008215548978512 personal:0.013910302160732423 time:0.011238244195733245 :0.9125274156036972 +which:0.009465178058206732 in:0.007949355522762743 help:0.006344892402664143 permit:0.00558103733014187 :0.9706595366862246 +there:0.12315112460905887 it:0.08824914431507654 they:0.07494718458599753 and:0.07085713473657593 :0.642795411753291 +the:0.42884907220248447 their:0.0728726282349713 a:0.06613351019190492 his:0.060188452093373625 :0.3719563372772656 +of:0.9944383519817659 of,:0.005278083286376432 to:0.00012802831658713663 for:4.318980359711687e-05 :0.00011234661167335286 +of:0.9999215508216691 ol:4.006979708394365e-05 tbe:1.7859174815348432e-05 it:4.793548987020424e-06 :1.5726657444647742e-05 +able:0.09818294347507253 going:0.07179229198223959 unable:0.06237168224720466 obliged:0.055560797125962035 :0.7120922851695213 +closing:0.05778287241389692 and:0.03686370922390986 steady:0.01149473257410931 Western:0.010837845106099711 :0.8830208406819842 +it:0.19711259679252904 It:0.16069055060650017 he:0.13801345653908456 and:0.10319819482282765 :0.4009852012390586 +at:0.20127985229276504 year:0.20088799042356814 week:0.19938999369798063 for:0.1768164415672087 :0.22162572201847752 +and:0.052793163603628665 are:0.036828442364525364 were:0.02406793570162629 have:0.012914835324863908 :0.8733956230053558 +It:0.12665899322100918 which:0.1112442208721576 and:0.09959080628643066 He:0.07257635500907114 :0.5899296246113314 +and:0.4827415822417935 which:0.30427811019405815 who:0.15933251244674765 but:0.02942980934430446 :0.024217985773096296 +save:0.9383467250814896 pay:0.017514489656065238 of:0.0009035630264364267 mean:0.00012688908803247813 :0.043108333147976116 +to:0.6470176032909781 for:0.0733518880799633 themselves:0.07030632007166342 and:0.0414745000183982 :0.167849688538997 +so:0.9965140956668366 the:0.0007897869919253369 its:0.0005169243310342575 not:0.00011724506207204472 :0.002061947948131785 +they:0.9303888003470759 Congress:0.03288070564022455 it:0.022126060865565057 he:0.01102611749528991 lie:0.0035783156518447456 +the:0.2695392112197866 a:0.08142994662229694 we:0.072682184866818 to:0.06175672871733351 :0.5145919285737649 +of:0.09742676508420693 one:0.09738849004660918 and:0.08593640037416855 the:0.0616476542067868 :0.6576006902882285 +or:0.9991751913527827 o:0.00036524785771863865 for:5.954588319324429e-05 and:3.2433546832495896e-05 :0.0003675813594728131 +of:0.9260142577333969 ot:0.020569639571648066 or:0.011930016151720804 to:0.009168402992949827 :0.03231768355028463 +in:0.07724811419253157 on:0.04855432624567223 to:0.02480600451782576 is:0.014187709076019182 :0.8352038459679514 +city:0.10156115743031696 State:0.09461239077757334 County:0.07171690134911331 sum:0.06791024198916945 :0.6641993084538269 +a:0.06069595810137802 the:0.05067383641170189 made:0.04386740794461957 more:0.042460630469362264 :0.8023021670729382 +and:0.1702120130596492 out:0.11269504209486028 but:0.11028237817658436 ing:0.0684146051067228 :0.5383959615621834 +act:0.13092098208012867 to:0.06511728575961648 or:0.052274737877552074 just:0.039290435524344 :0.7123965587583589 +able:0.27856855764122074 earnest:0.1260196669058331 honest:0.08300037548023964 open:0.029558730296172862 :0.48285266967653384 +In:0.205991117121275 in:0.06267452342794425 for:0.05029025865553047 of:0.012135710210836599 :0.6689083905844135 +of:0.4984370467854803 to:0.29720899799251416 for:0.09555434312899577 that:0.023022649948476245 :0.08577696214453347 +United:0.8480639543258365 Southern:0.05036845189892804 free:0.02133721249007494 Atlantic:0.009390741708753628 :0.07083963957640695 +the:0.8398356755388933 a:0.03742869665971795 Section:0.02854076955496631 tho:0.02669252921995819 :0.06750232902646433 +an:0.38382136091135366 the:0.25895237554430356 such:0.19139395506811646 any:0.09608124525979543 in:0.06975106321643089 +any:0.3043969006168744 to:0.14388315969078552 in:0.13018693710936632 all:0.12603066449363914 :0.29550233808933457 +of:0.9190133906448431 this:0.07036040513280756 the:0.007544760338074038 in:0.0019520182530179861 :0.0011294256312572725 +the:0.37254442744826244 an:0.1511394442109028 a:0.09504364720661533 articles:0.007711113404896399 :0.3735613677293231 +He:0.23835629879234083 bill,:0.20761533097125354 measure:0.013338852492262276 bill:0.01088048578253448 :0.5298090319616089 +the:0.8768992797935395 tho:0.039624358542400887 a:0.022114355384188353 th:0.013311475400944434 :0.048050530878926793 +general:0.13067724199833522 practical:0.1004778612614042 final:0.06455955383656245 native:0.05502700535785392 :0.6492583375458443 +is:0.17314296266107865 and:0.12303925473645116 for:0.10937782203913504 was:0.10655097436114767 :0.4878889862021874 +all:0.5172355293625917 him:0.06999531454074455 in:0.031269492627083985 by:0.027240441372918624 :0.3542592220966613 +to:0.23631863093192276 were:0.2338433469773014 more:0.1738095331420983 of:0.16599760906302025 :0.1900308798856572 +the:0.04137904116055565 front:0.02861446000742336 very:0.02511071489953834 present:0.02400675349018203 :0.8808890304423006 +and:0.13514001468334416 ing:0.042251223435047364 Now,:0.03513575909999884 boy:0.03431445326293549 :0.7531585495186742 +efforts:0.06785704494071451 speech:0.06237383669409584 death:0.057248206738749176 election:0.047334687401962 :0.7651862242244786 +one:0.0771984139430009 and:0.0596694090338796 out:0.05741499988454407 because:0.05636742783035306 :0.7493497493082224 +of:0.9962757950272041 ot:0.0016199838821072082 among:0.000882988523690643 ol:0.0003889738918335716 :0.0008322586751646095 +York.:0.3514121030637094 York:0.008902083799000819 York,:0.007631066877327148 England:0.0014629964044307376 :0.6305917498555318 +in:0.5734206056549855 the:0.1720934112927389 a:0.11713012212956882 advantage:0.020350752665517866 :0.11700510825718892 +it:0.07121015599140434 which:0.05787376623561186 proper:0.026459332507264913 described:0.014768121960444773 :0.829688623305274 +treasury:0.08998742528942802 river:0.08982304158344222 city:0.06734444113749552 house:0.03549008276217565 :0.7173550092274585 +and:0.2009261396522865 of:0.06713258971686252 to:0.05710100204589984 west:0.04930842161140458 :0.6255318469735466 +and:0.29665924746902556 in:0.20924653957032308 of:0.11290857068279497 by:0.10972794062079398 :0.27145770165706246 +last:0.7509706102331525 on:0.06518457384164225 first:0.06117486969765107 o'clock:0.0264282043837836 :0.09624174184377057 +the:0.6546041716518889 by:0.09510174680280847 eleven:0.06686145050915668 no:0.04048659146296783 :0.1429460395731781 +it:0.21680349982936936 there:0.09473264473924307 we:0.0894392307575567 they:0.08187757668595892 :0.5171470479878719 +the:0.33113914247287846 such:0.2107408667167535 in:0.16497011316466956 your:0.12033125035544237 :0.17281862729025613 +day:0.05968679207550083 sum:0.012467872589308721 city:0.011490035830223571 number:0.011269075343845303 :0.9050862241611216 +of:0.43660887215968414 in:0.2491100500090899 to:0.07198747893099974 on:0.07059878091494405 :0.17169481798528208 +and:0.2824359605826264 car:0.07749732610343929 clothes:0.03515172367521092 corn:0.03253747112046122 :0.572377518518262 +to:0.21179288512482394 of:0.14467837010786783 with:0.1156785166398611 that:0.09444004160344753 :0.4334101865239995 +in:0.12586543181759488 a:0.11774994427630268 the:0.11670050211208643 being:0.09684670595657315 :0.5428374158374428 +action:0.08827587336638364 play:0.05183247625861503 court:0.05066245605439719 such:0.044527673730182626 :0.7647015205904216 +the:0.028468403566028512 red:0.021828356044245784 .:0.017118221073318028 a:0.01665054036137241 :0.9159344789550353 +air:0.21965710395184862 was:0.1303384226020952 water,:0.11246821339197181 water:0.023774313431118833 :0.5137619466229655 +said:0.819164561584569 a:0.05825343675598789 wild:0.045647329499400355 laid:0.03934914460428202 the:0.03758552755576082 +an:0.07456163781707562 men:0.034183467781335033 his:0.026134146618759072 been:0.01954835980159586 :0.8455723879812344 +the:0.6267698088815462 those:0.21512369654683594 brief:0.053852538335101334 tho:0.050475085270734105 :0.053778870965782336 +got:0.09595459729697671 doing:0.025032074843847132 was:0.010763262958587 is:0.009527691686235885 :0.8587223732143533 +there:0.5613343646793454 they:0.19290605309120512 we:0.09110436806466696 these:0.03812845307668356 :0.11652676108809899 +and:0.299696118858807 is:0.11967848920934492 was:0.09373225001294437 have:0.08071374575417398 :0.40617939616472976 +we:0.8623099032508472 and:0.038052668793291305 the:0.02780761372704015 be­:0.022819295591701698 :0.04901051863711954 +as:0.4278765422292318 not:0.3102528658254124 of:0.05768939156181519 for:0.03872517398126553 :0.16545602640227494 +of:0.2579435402686908 a:0.17336227441964916 the:0.16448676709767812 his:0.09660453851057396 :0.3076028797034079 +hold:0.5862971343144746 all:0.11546228181795067 clear:0.021687055135532592 own:0.01905948062153246 :0.25749404811050974 +of:0.9755469208551127 to:0.00395624848808208 of.:0.0037239881051704935 and:0.0020617932235245536 :0.01471104932811016 +period:0.21230339228288772 majority:0.11832745521385901 copy:0.07189089838656201 visit:0.05802504795212713 :0.5394532061645639 +and:0.3133902606825126 but:0.22073577700188518 that:0.0727085641179586 as:0.06772179682827245 :0.3254436013693711 +a:0.15764816215677993 the:0.09090957271572367 an:0.04304231666288488 some:0.030042573858314634 :0.6783573746062967 +in:0.44133475086136187 at:0.395668979469814 In:0.07189010319779937 on:0.05999086653198863 to:0.031115299939036042 +proposition:0.0803878629544499 return:0.06129626101513866 visit:0.06042001914949949 road:0.05486951200747608 :0.743026344873436 +It:0.1969464164689725 it:0.18703624700206134 and:0.07142906501168848 which:0.06640784389159314 :0.4781804276256843 +and:0.1365450554583531 the:0.09877254463246485 of:0.0648181211249907 The:0.029176394928848895 :0.6706878838553424 +of:0.636852670705081 and:0.08351422762806875 in:0.05356081785934482 to:0.048624321803768814 :0.17744796200373653 +Wilson:0.5729228431365179 and:0.006310754844954317 was:0.0006345883679520571 Smith:0.00028994037225404056 :0.4198418732783218 +of:0.29558275206899215 to:0.13226938416823822 in:0.1154036722247743 and:0.09991980611419476 :0.35682438542380057 +own:0.08210735359752963 eye:0.048891211186977236 left:0.04539284583703882 narrow:0.026801461959845015 :0.7968071274186093 +and:0.1355634406155033 of:0.05754193008482245 the:0.050876290389021646 George:0.044622630296009935 :0.7113957086146429 +the:0.779117427192405 The:0.07565318387807 Tbe:0.03414833148864711 elected:0.01653603779748367 :0.09454501964339423 +should:0.4586884600967193 would:0.13374075114365272 must:0.12066261483414492 cannot:0.11853373045788838 :0.16837444346759456 +told:0.29025219666314167 have:0.235977485220256 will:0.17988707057502057 can't:0.14140701168764452 :0.15247623585393724 +scene:0.28252753100071276 treaty:0.078485367676646 way:0.053195218942433585 agreement:0.03401120545288638 :0.5517806769273212 +the:0.42310913531560207 to:0.09090354739554157 and:0.0852785713524454 a:0.06880293655843919 :0.3319058093779717 +of:0.9858917013908458 was:0.00017598459876688833 that:0.00011775019842975925 is:5.222896381554074e-05 :0.01376233484814204 +more.:0.03671205158122392 and:0.023656271130192235 men,:0.023574568123867407 to:0.022942232574771307 :0.8931148765899452 +rest:0.18591525376615445 benefit:0.10375833925288613 purpose:0.030662029593064993 peace:0.020284494927476568 :0.6593798824604178 +and:0.54214943713559 as:0.10945078066757809 shall:0.053176842745572404 to:0.05183675751105672 :0.24338618194020276 +which:0.5358664951742912 there:0.20791084637694007 it:0.18675750638296773 is:0.031352918504722715 :0.03811223356107819 +Supreme:0.45404385100027767 the:0.04812594162706902 Clerk:0.03178669128366294 Land:0.02091537035580206 :0.4451281457331883 +a:0.4467583864631262 The:0.15387484273221622 the:0.11209143458982627 A:0.0695872538332995 :0.21768808238153173 +ask:0.25715890521755536 ac-:0.22279130876565773 have:0.1605605691749731 sup-:0.1036536155818344 :0.2558356012599793 +very:0.08061488333552179 secret:0.059268055243766715 lost:0.05121378081443385 good:0.04816439186726561 :0.7607388887390121 +arms:0.09644664992904854 refuse:0.08959169313055067 bonds:0.06595586596068008 goods:0.050809589250358 :0.6971962017293626 +made:0.4755135144790221 given:0.042107167352364666 done:0.028759013584186144 aid:0.02779447789574545 :0.42582582668868146 +She:0.20448211666085708 The:0.19596487113786668 In:0.19307730529832476 Such:0.06804222053147269 :0.3384334863714788 +and:0.15156951251219847 the:0.10697922572427512 to:0.0756138315385268 of:0.06729962270504378 :0.5985378075199558 +the:0.3714696731067226 his:0.23155510941495386 a:0.13005474712724982 any:0.016918811983598004 :0.2500016583674756 +miles:0.409949861176617 days:0.1726112950067381 five:0.16749924007638708 two:0.10088183093312149 :0.1490577728071364 +of:0.9427562686747444 ot:0.01634338371593576 in:0.008306904740089667 to:0.0073341077757898485 :0.0252593350934403 +from:0.11159849356074077 3:0.03912460121300456 8:0.03673346976136147 6:0.03543886787415524 :0.7771045675907381 +O.:0.1469304024872003 D.:0.13627703008300648 B.:0.10158777180481673 F.:0.08290335972559858 :0.5323014358993778 +and:0.0051028165842565976 based:0.00262955251547445 is:0.002492970700390149 acts:0.0022297036564085417 :0.9875449565434702 +the:0.5963656890008345 this:0.14243246689239833 their:0.10700986868190426 his:0.04832936737468229 :0.10586260805018058 +of:0.7760540120775778 in:0.028016340553114853 is:0.014199125229501812 ot:0.00821038872354947 :0.17352013341625613 +be:0.317647765196641 have:0.16699359284418888 know:0.145617579355187 call:0.10678390872726487 :0.26295715387671836 +The:0.30220633916052847 A:0.06358085819662254 the:0.046679436604828414 They:0.0378342492682728 :0.5496991167697479 +of:0.12650258762614952 and:0.12027929285089486 the:0.07201291720248848 to:0.03491570926587042 :0.6462894930545966 +a:0.9982340605588867 the:0.0010946413032755678 tho:0.00025443261147174424 tbo:0.00016783101439334807 :0.0002490345119726376 +of:0.2976880603907086 and:0.1178497560291296 to:0.10941862734191495 in:0.10881503534602627 :0.36622852089222047 +and:0.2455700023869877 into:0.14115704026168385 that:0.0491584356532217 mother:0.04064599015171987 :0.523468531546387 +stay:0.2636083878668625 remain:0.15779022661372982 it:0.1412478211126489 do:0.05113196057670518 :0.3862216038300535 +take:0.12946221763201754 accept:0.12378779813957447 pay:0.0784957024414114 give:0.06736669014643633 :0.6008875916405603 +numerous:0.228475682134633 weak:0.05457982870214745 poor:0.049175508820436135 small:0.04407195186875855 :0.6236970284740249 +only:0.09554426803868438 is:0.011998074829882518 were:0.005243685781669164 was:0.0043056855865795255 :0.8829082857631845 +a:0.4935039886712934 important:0.08170282724427934 is:0.08069036056820558 great:0.04085144630725864 :0.3032513772089631 +girl:0.3139631649324285 body:0.12366696540582668 de-:0.06643412825892601 wounded:0.04876864579004001 :0.44716709561277873 +which:0.9583946888417809 <:0.0030495416309809 of:0.002145286162114515 under:0.0010882671489943114 :0.03532221621612959 +of:0.8534966799914807 that:0.0580867097617118 ot:0.05397370385236024 for:0.013403347336537742 :0.021039559057909513 +of:0.5226922942627431 ot:0.22452802729199628 being:0.12878197807687464 Is:0.09219570131950683 was:0.03180199904887911 +the:0.31797425416881275 and:0.09000642111074604 The:0.07191338606154347 a:0.039696308487717595 :0.48040963017118005 +war.:0.26589688669050393 war,:0.14744901791580226 war:0.060866112056536484 peace:0.04375428263342265 :0.48203370070373475 +to:0.402637985718494 in:0.11265509709033705 and:0.10624131852800583 from:0.08375938496501303 :0.2947062136981499 +be:0.08377360731636611 and:0.06996097266868623 he:0.02997867108154224 to:0.018814086754128226 :0.7974726621792773 +and:0.12617359104087497 of:0.07782012132663467 to:0.07163287140573657 the:0.05826822141504164 :0.6661051948117122 +committee:0.7431338975346655 com-:0.044587640273483616 township:0.02318974025563182 second:0.007163513602238742 :0.18192520833398027 +shall:0.9960748170356465 to:2.5263236119207806e-05 or:1.0268588286696393e-05 thus:5.201489506628219e-06 :0.0038844496504408547 +and:0.05185606020371295 made:0.025599909156356102 or:0.02333032447098352 ed:0.016945290417985617 :0.8822684157509618 +is:0.05481444154850143 the:0.050978924014820216 was:0.023490336374625786 great:0.022736642837970552 :0.8479796552240819 +we:0.1893510960311777 We:0.16550089886661692 too,:0.11222711288939648 He:0.08913443457826936 :0.44378645763453956 +this:0.7096132639611848 the:0.06655164749519984 is:0.04735704810212703 a:0.002774889450867248 :0.17370315099062097 +be:0.888701779313597 bo:0.05368920659931664 he:0.048346347825486115 lie:0.003918152134902679 :0.005344514126697656 +shall:0.32952816166845394 Will:0.32086919915989187 to:0.2631101815487453 will:0.03150623632535873 :0.05498622129755 +it:0.548959106230533 will:0.24642210696496802 he:0.06086487855488259 balance:0.008143893743414824 :0.13561001450620147 +the:0.3155090787772629 a:0.05082807849051441 his:0.02764223071689472 and:0.022851151606371144 :0.5831694604089568 +business:0.15828372029422588 country:0.05888151250730776 matter:0.05862322235383538 road:0.028025369350413637 :0.6961861754942175 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +her:0.6652635452956231 he:0.217593986223504 they:0.0552190480984539 the:0.04667710797704312 others:0.015246312405375929 +would:0.6297184593034202 will:0.1702494391413945 should:0.10628152384918077 must:0.03663168387451139 :0.05711889383149307 +were:0.0010702502475750401 are:0.00033120285102985927 arrived:0.00025417288174616745 have:0.00014776934071728217 :0.9981966046789315 +a:0.11985575164294915 the:0.11445967353665798 no:0.0605768486933293 made:0.04445042937396185 :0.6606572967531018 +the:0.21995039602108274 and:0.11946695285768097 a:0.054622103763056935 in:0.03271615170380805 :0.5732443956543712 +and:0.1034728681147913 a:0.10305780685367741 the:0.08949821906179047 of:0.07885450339893174 :0.6251166025708091 +hair:0.4127580630776478 fact:0.04268692043236503 tree:0.04008382946603959 memory:0.02927809363811318 :0.4751930933858347 +same:0.06448854625420276 right:0.043759017773296875 said:0.017028068655772926 man:0.016930672713645352 :0.8577936946030821 +must:0.6081126556921013 of:0.12362734427414827 or:0.03314341405361232 hundred:0.020518207213121902 :0.21459837876701623 +a:0.9926258964657524 the:0.0033745302210040963 it:0.0026016363343347518 I:0.000812364981368612 :0.0005855719975402278 +on:0.6639998959322021 to:0.23260938315295854 near:0.06535546208783936 below:0.031682143248964796 of:0.006353115578035384 +one:0.18881566329271507 of:0.1486403948207277 and:0.08735992294175268 two:0.06270878967191292 :0.5124752292728916 +filled:0.05837726724587379 treated:0.05087622287326464 covered:0.048943504342576 received:0.027199997235106358 :0.8146030083031791 +same:0.04800121837370709 to:0.017317516679141484 city:0.01715446298848838 United:0.016102342673508067 :0.9014244592851549 +ing:0.26222950835502007 in:0.05558182647973687 of:0.05286366379911035 the:0.03627972047149237 :0.5930452808946403 +so:0.15138769375775135 called:0.11783964894020915 given:0.09400461280117735 appeared:0.07433111331145993 :0.5624369311894023 +able:0.15907656685082094 required:0.10541310537325715 made:0.08748840520922752 sold:0.06177161922345505 :0.5862503033432394 +and:0.31300821714832916 as:0.18221556322393598 with:0.118367166353708 is:0.08020396485661282 :0.30620508841741423 +in:0.441636665098571 the:0.17322011104822688 In:0.14486289399877766 to:0.10251358869316832 :0.13776674116125617 +of:0.10722499602493546 and:0.06404488760138781 in:0.028894854859664 that:0.02117602671643305 :0.7786592347975796 +of:0.1786398586474614 property:0.14243942461400166 or:0.11269664178223693 and:0.09827920644410479 :0.46794486851219536 +only:0.3767599238954498 first:0.12232581799028489 one:0.09555399973836488 same:0.07146467691895093 :0.33389558145694936 +.:0.0998777712923937 to:0.08120077579681906 W.:0.060368157071286156 C.:0.05765842213360653 :0.7008948737058946 +It:0.2760878282304295 it:0.12218307032821027 There:0.11469171600077162 there:0.07100605158718347 :0.416031333853405 +in:0.2636737863159558 per:0.2311635021559968 of:0.14403702954412087 on:0.13539029578944473 :0.22573538619448172 +two:0.5282536471596194 six:0.19658886177515955 three:0.18675201978694753 four:0.06964428350493011 :0.01876118777334322 +of:0.5348975094314375 in:0.19085494731869365 In:0.1060019067099264 and:0.05929243185225132 :0.10895320468769112 +the:0.39794943661511134 a:0.32258921767657933 its:0.11614100312081102 their:0.10301158776325979 :0.06030875482423847 +of:0.5505406237304848 to:0.2073015213924176 for:0.09289141748212187 among:0.050766491027360354 :0.09849994636761542 +value:0.09614360323993403 result:0.04761742316625362 nature:0.023513990596107197 effect:0.023442725324914888 :0.8092822576727903 +in:0.38363665621483956 under:0.1401982548904322 by:0.13576996774678654 .:0.07754261211885662 :0.26285250902908514 +the:0.21665763832916107 and:0.13625954757492503 The:0.10649349619701336 a:0.04136714501304735 :0.4992221728858532 +Lot:0.7852396096320781 city:0.1307771567437959 lot:0.04365460955808813 Joseph:0.016788706157397457 :0.023539917908640417 +the:0.051150371831831465 county:0.04863921205077569 aforesaid:0.044580682853881885 government:0.04248140922750858 :0.8131483240360025 +get:0.07903171477046594 cast:0.05958851031666369 see:0.046693003779707684 to:0.04412271546289826 :0.7705640556702643 +of:0.3111273626495841 and:0.1864473173349439 to:0.12548564196955048 is:0.05278101663071539 :0.324158661415206 +to:0.9693980036763727 lu:0.0008811621105672735 will:0.00037106381855573153 not:0.0003450714823010484 :0.029004698912203045 +the:0.43915496252692443 tho:0.4298741823840755 its:0.11699773839013762 these:0.01235254048513866 their:0.0016205762137237805 +domestic:0.03996284320996425 native:0.03887885398695919 American:0.028603412232386886 silver:0.02070586025943553 :0.8718490303112542 +they:0.32500783838796055 we:0.207615532241071 he:0.16440299484776 it:0.09699466984291491 :0.20597896468029364 +interest:0.3076783541101921 the:0.08591514436385604 in-:0.07939312692537033 in¬:0.04093278156205025 :0.4860805930385314 +said:0.050358939720822816 the:0.014793546690988165 only:0.01239797023561636 great:0.012046620842558198 :0.9104029225100143 +put:0.9963938079422269 brought:0.0008682096659297814 send:0.00042461979838735064 set:0.00016440894065207717 :0.0021489536528037905 +The:0.2590740374673815 much:0.17102194538225235 has:0.13445818731107384 and:0.06693802768905079 :0.3685078021502416 +of:0.15031816413815338 and:0.1410118624714079 the:0.048210385790498717 to:0.03744639386701126 :0.6230131937329287 +other:0.08780472581508873 certain:0.060753923685754066 more:0.02111251222968724 of:0.014431163667628559 :0.8158976746018413 +be:0.4833925209702631 do.:0.19358499435350032 have:0.10713174742008852 bo:0.046597570382875576 :0.16929316687327242 +damage:0.027297043020413945 loss:0.012168101762902934 election:0.01197597972456824 death:0.0015258456237385674 :0.9470330298683763 +a:0.3407378061814015 It:0.29163432639120235 the:0.2642691419310209 no:0.05484815022787177 :0.048510575268503484 +a:0.2940024311663285 the:0.12935000622273246 that:0.08044975270513047 to:0.06515785777854674 :0.43103995212726176 +let:0.3680295794698236 no:0.13917071907584258 as:0.10619752836335052 If:0.10498734042110563 :0.2816148326698777 +The:0.9123569371705883 the:0.021320288400385794 at:0.019618938706659098 that:0.01023664391517261 :0.036467191807194196 +they:0.3498416134430066 it:0.2939606652263837 he:0.1991765472150927 you:0.05519674274245298 :0.10182443137306389 +not:0.9048715173711727 60:0.04651939811186208 the:0.012259583963715067 out:0.002579231272989551 :0.03377026928026062 +of:0.11428666872663402 and:0.1003007598834072 the:0.06414567220479221 to:0.028780786094350783 :0.6924861130908158 +n:0.11250142652446997 the:0.07414383799895892 was:0.03760081691248 popular:0.0335240328386411 :0.74222988572545 +appearance:0.10808091501075606 of:0.08667924469759075 tion:0.03630309202992514 measure:0.02949498471756291 :0.7394417635441651 +the:0.865539968528637 this:0.09708900379679254 large:0.015508835223059646 tho:0.0037405380887595603 :0.01812165436275122 +they:0.2095200818130395 and:0.17964512694025514 the:0.06834753561808866 or:0.06026845079263604 :0.48221880483598073 +something:0.06408829842844854 one.:0.011403371477188033 home:0.009544414094889308 .:0.004477102632796514 :0.9104868133666776 +and:0.29605190964483713 more:0.09006624809476424 for:0.06684341306892799 began:0.05207225991448 :0.4949661692769908 +have:0.5327548055726227 are:0.11777641332799858 were:0.11640473651171715 may:0.046837609155589606 :0.1862264354320721 +on:0.2895500146020796 to:0.24148074169605557 of:0.23381280704576551 at:0.155253928548546 into:0.07990250810755335 +policy:0.007859783718428931 ia:0.0048828431657725775 scene:0.004621823937387567 and:0.0027513604448562634 :0.9798841887335548 +property,:0.2783799046001743 property:0.23609400302424444 estate,:0.04821736979571707 estate:0.03440279633098996 :0.4029059262488743 +the:0.08228599456238007 of:0.07212861729312404 The:0.06730653014512808 he:0.0485516707175119 :0.7297271872818559 +as:0.8380587495084357 an:0.07845928280093897 the:0.04028308517821745 The:0.01987276913420165 :0.023326113378206136 +W.:0.6877945444518542 H.:0.09626633065652858 E.:0.065340851729434 F.:0.0595891184697042 :0.09100915469247917 +of:0.7709906467601445 that:0.09235695983917694 to:0.05992066036240724 oi:0.026506731385303003 :0.05022500165296835 +whole:0.6230973981592282 entire:0.12415201240570999 the:0.10803884331151216 Southern:0.06805978966157827 :0.0766519564619714 +up:0.2620035864406258 a:0.07664966068270535 out:0.06951279131188948 use:0.0277033454182636 :0.5641306161465157 +the:0.35233468620097913 and:0.11654105286001108 The:0.08701583229753773 a:0.07308304043801653 :0.3710253882034556 +when:0.10224582349940527 then:0.0628023257187741 as:0.05471396292103366 that:0.05161670484527021 :0.7286211830155166 +of:0.46428661551533035 in:0.1274639398169403 to:0.09965105735509484 for:0.08269883975366557 :0.22589954755896896 +by:0.46547161924309793 to:0.2107577363683307 In:0.11671448485722057 in:0.11573603311512952 at:0.09132012641622125 +corner:0.4361862520069194 quarter:0.2903539701797026 part:0.07143688545705297 portion:0.026014867855468797 :0.17600802450085623 +of:0.03478797260734613 and:0.009540143587178602 ing:0.008348707855345925 tion:0.008284861104411083 :0.9390383148457183 +and:0.2655442120189692 to:0.1499497061375437 he:0.09084415013055454 Ho:0.06433299725929917 :0.42932893445363324 +by:0.1872225235799685 not:0.08940251472111356 on:0.08321337964798425 me:0.07763681751680405 :0.5625247645341296 +The:0.17050250705604594 Secretary:0.1035728955610599 the:0.09152373507615243 My:0.07235650121993074 :0.5620443610868111 +of:0.0691045221672882 the:0.007573009239951894 other:0.004078291398621748 time:0.003398340621769799 :0.9158458365723685 +of:0.08890828057760913 and:0.03667611705823649 on:0.03184550699343876 in:0.028493513820179783 :0.8140765815505357 +in:0.3239680657140115 of:0.19594692682952433 not:0.08240299247191793 for:0.05120427613464952 :0.3464777388498968 +large:0.22645378627242235 larger:0.19745074000751045 great:0.14450772630097844 principal:0.11675247971256018 :0.3148352677065287 +ready:0.6807464902818237 able:0.07255291537815307 heard:0.04248135177380268 willing:0.03870947733712637 :0.16550976522909439 +appearance:0.10602551335526736 advantage:0.02776438586484362 danger:0.022618142747084555 charge:0.019661069658545673 :0.823930888374259 +one-half:0.3304329584187627 half:0.2555902063090082 or:0.04506322396270649 of:0.04351742509801017 :0.3253961862115124 +N.:0.06058246597858752 point:0.020356547870211288 length:0.014780452700221476 county:0.012748280600215562 :0.891532252850764 +the:0.6753669748506043 his:0.04423547091195103 a:0.04208153986561662 their:0.040558006974849514 :0.19775800739697863 +by:0.8309435197652169 nor:0.13001331136680866 in:0.010884432060194071 and:0.008561157656841947 :0.01959757915093856 +you:0.24608630047572275 it:0.15062573635486667 this:0.12914111107859333 who:0.07333923647401266 :0.40080761561680456 +day,:0.821096483405337 and:0.03167741094826711 miles:0.025103756404826674 years,:0.012943412396985913 :0.10917893684458341 +from:0.3949829657499032 shown:0.3525401921134916 to:0.16832598060005577 in:0.04528936079848715 :0.03886150073806222 +of:0.09424446699631568 and:0.07193130338951681 the:0.05307610082147711 John:0.0411224311577501 :0.7396256976349405 +is:0.31588058197893737 was:0.15987516417991662 Is:0.06653306292935013 has:0.04013494674862567 :0.4175762441631704 +a:0.2667621301731047 the:0.24914371064886398 this:0.23310586179419546 that:0.18334307068434325 one:0.06764522669949262 +without:0.989521129570763 for:0.0047659738408894845 with:0.003511520990339436 as:0.0013807539507953556 by:0.000820621647212577 +in:0.6457395526771412 a:0.14441031649965752 A:0.06668308258770717 is:0.041184563756048606 :0.10198248447944544 +and:0.3767276147969702 but:0.10340633169169404 of:0.08481807008751922 hut:0.06749930926131173 :0.3675486741625047 +few:0.36905392645649016 ten:0.008154225126859212 of:0.0029674762468873193 many:0.0029552107875059873 :0.6168691613822574 +the:0.9697725887321484 both:0.0036537399629580913 large:0.0036389894976409033 George:0.0030113636606965734 :0.01992331814655604 +made:0.08939526921633287 the:0.037255886081986794 Indians:0.018861064212327916 us:0.012366790615975854 :0.8421209898733767 +received:0.10331326389921246 made:0.07157059511398697 done:0.0445099913789085 occupied:0.04215977403072751 :0.7384463755771645 +satisfied:0.14844428116602223 told:0.08247387637381058 glad:0.07986497847775118 informed:0.07483109660374572 :0.6143857673786702 +Kansas:0.2401467545596309 First:0.05925255752080184 Washington:0.05808834175782943 Central:0.03212188025343298 :0.6103904659083049 +or:0.3997028283698864 that:0.20748788721166964 and:0.06595722796081739 at:0.039141363001122656 :0.28771069345650396 +were:0.6807662351887931 iron:0.09262456929274444 being:0.013759129874421015 be:0.0033463044371627136 :0.2095037612068787 +will:0.37962494030036387 the:0.20679888274070354 must:0.15998649647630842 I:0.08352684865027481 :0.17006283183234924 +for:0.01623356950994119 very:0.0027349547669053074 words:0.00255547553945323 the:0.0012342399463904 :0.9772417602373099 +and:0.017864217478237455 employed:0.00601210117310844 was:0.005297201256569272 committee:0.0036342693058297195 :0.967192210786255 +H.:0.10802393120341751 A.:0.07079514906074924 W.:0.06793295419828949 J.:0.06170175099742318 :0.6915462145401204 +the:0.4621250679703602 be:0.06688665079081123 a:0.04549019601561469 tho:0.04004218655738283 :0.385455898665831 +of:0.18342948719209315 named:0.17427917849343463 and:0.08038730976307944 a:0.04353842757683432 :0.5183655969745584 +used:0.12099979808935449 regarded:0.11514638988335921 employed:0.09168590546172146 known:0.039918918251226114 :0.6322489883143387 +the:0.10760124352852954 not:0.06649450135280704 in:0.04558312990444584 a:0.026256654765288483 :0.7540644704489292 +the:0.2848151116191935 that:0.10147778958818163 and:0.08874686376405583 both:0.06547617042552965 :0.4594840646030396 +of:0.13747341017795384 favor:0.09416334220028982 ments:0.04584894437112947 and:0.04041418517346786 :0.6821001180771591 +the:0.359180909615629 his:0.2653707795926136 of:0.038961221819578194 a:0.03290402457648793 :0.30358306439569116 +made:0.11540325234668462 those:0.1002142075189592 not:0.04038675418541684 true:0.03529275839894579 :0.7087030275499936 +a:0.21783796026001453 the:0.1762663556301654 this:0.15989005413129168 and:0.07568717926921999 :0.3703184507093083 +the:0.46316601455351836 his:0.11020471868237078 tho:0.05331963266024937 a:0.036290177119672716 :0.33701945698418867 +then:0.38540171697603326 and:0.11466475407182491 nor:0.0593737532066889 a:0.05768100337098046 :0.3828787723744724 +attention:0.7742255762091785 minds:0.11060515040860518 number:0.009784836176130983 discharge:0.0054534551616672 :0.09993098204441819 +the:0.34167795858388894 a:0.07926634467801578 other:0.026471169775561798 tho:0.018634909171027413 :0.5339496177915061 +in:0.8012842424735559 of:0.05293908125410004 by:0.041462798608046046 to:0.03424609253131883 :0.07006778513297925 +it:0.03813761055742797 all:0.03585645635562689 one:0.03462889689128001 because:0.03321360923336154 :0.8581634269623036 +most:0.0653249311965925 public:0.03789341535754222 laws:0.0299589806783249 money:0.022712363766037972 :0.8441103090015024 +city:0.2512446365001676 seat:0.16843376818480968 City:0.0866480946139028 said:0.0840611460007188 :0.409612354700401 +of:0.9998324889610652 and:2.772975476831041e-05 in:2.2123157495567106e-05 from:1.2487558298654897e-05 :0.00010517056837212998 +in:0.47628480846946875 of:0.28700716264982784 from:0.09290695523102928 In:0.08588463452467811 :0.05791643912499594 +at:0.7225600570714383 mark:0.14990896556056535 other:0.07060676798151012 that:0.0347353643287129 :0.02218884505777321 +ft:0.12886289059929468 way:0.05514863870171483 the:0.050983498592543364 one:0.04911932841205325 :0.7158856436943939 +was:0.3703775435125533 had:0.1618102298159848 and:0.1575868114551463 is:0.050634981866365406 :0.2595904333499502 +day:0.1571678604012091 grounds:0.12267084558182566 principle:0.06455245686648112 effect:0.04742364869241107 :0.6081851884580732 +others,:0.24858454028229623 against:0.0014526761347179117 is:0.001315394718710152 parties:0.0008413652348327393 :0.7478060236294429 +for:0.8781161357746727 in:0.02468367047413083 of:0.01729860905222469 that:0.01185757362955257 :0.06804401106941922 +a:0.4065736040662567 the:0.15675565283385617 an:0.11422827517096433 to:0.06797453922256289 :0.25446792870635987 +the:0.3806295011000857 of:0.10012733860213549 a:0.09374894410934108 The:0.09180095041241677 :0.33369326577602093 +father:0.04828615086934338 the:0.019458711328384472 office,:0.016625256873713756 a:0.011275505685673167 :0.9043543752428851 +according:0.1255413648973111 interest:0.09874026547684168 and:0.08354972636176396 looking:0.053214540417580385 :0.6389541028465029 +in-:0.08350152316407333 same:0.053779405934493395 as:0.031159171860418375 education:0.027997496107714726 :0.8035624029333002 +and:0.12804035649784207 way:0.12178493126803402 as:0.08342511901376894 flag:0.04731147322817554 :0.6194381199921793 +Our:0.6013127086978997 The:0.06563384165079851 the:0.039062001379025844 of:0.038552712400083074 :0.2554387358721929 +sons:0.24919169877700853 son:0.12167914771764927 .:0.0743096525694048 form:0.004585480047232554 :0.5502340208887048 +a:0.5147041288647133 as:0.416357994271148 to:0.013675811653036033 and:0.013070520657268967 :0.042191544553833796 +In:0.9495968127152542 is:0.03401547972491899 in:0.005892584265191941 to:0.00327459999282165 :0.0072205233018131434 +and:0.24021347216293487 brought:0.19075978583653694 ::0.044676507826048664 opened:0.04292213026330731 :0.48142810391117236 +of:0.8717445114839045 to:0.029518170401062006 how:0.029446486369697294 which:0.011269246647752234 :0.05802158509758407 +of:0.7863800338465238 the:0.056483141238560526 and:0.039987697880229274 by:0.016685652000229752 :0.10046347503445671 +That:0.21484030411160263 The:0.19413479662375893 One:0.1402994235374245 last:0.1381179478371139 :0.3126075278900999 +did:0.2223802785031112 does:0.20721370136688616 do:0.15802098679698892 was:0.10488980263297529 :0.30749523070003854 +it:0.1098296331851446 I:0.09653848548080012 He:0.04919529783534947 something:0.03210081687122351 :0.7123357666274823 +now:0.1481910812388582 still:0.06384781095789069 all:0.05194552334333087 that:0.04900292908300083 :0.6870126553769194 +interest,:0.027758677943841133 you:0.012959367412871965 money,:0.01045270475409636 for:0.007090838708981137 :0.9417384111802095 +bridge:0.05515456701185317 of:0.03144385609634829 tie:0.022348860337948806 tire:0.018596647791620624 :0.872456068762229 +of:0.2436219521604574 in:0.19600761403943423 for:0.14745905685421493 to:0.10268434649750174 :0.3102270304483918 +the:0.6973636609261347 and:0.045049744174885276 of:0.036129500598119424 March,:0.027236524879385812 :0.19422056942147486 +power:0.26208026062572887 ing:0.06807075129528199 ure:0.04502093104688894 thing:0.04428346644744512 :0.5805445905846548 +to:0.6469178069454513 could:0.10764982804208816 or:0.049242570300648235 will:0.03320027626403666 :0.16298951844777565 +and:0.11823935839243169 of:0.07199810208328294 the:0.06105257143596187 as:0.05104026621943014 :0.6976697018688932 +to:0.604810750934305 lo:0.3665824903128283 and:0.020453882606924177 could:0.002286500047378119 :0.005866376098564356 +the:0.7468189367262897 a:0.05702466827557183 tho:0.036883300986388645 tbe:0.02005494951236113 :0.13921814449938857 +the:0.22405246367735923 and:0.09608543555582494 a:0.06324114127573834 of:0.044159559849225205 :0.5724613996418522 +matter:0.9932640634159234 work:0.004655660727791831 saying:0.0002673125079289493 telling:0.0002476011450504323 :0.0015653622033053177 +hour:0.06338779832052215 interesting:0.05363312671458848 upper:0.029447996880286292 idea:0.028167768795469394 :0.8253633092891337 +it:0.32028537921403816 he:0.29369336480246544 there:0.1401713175275801 one:0.1054926134905122 :0.14035732496540415 +the:0.9853630850264861 each:0.009623708809153822 tho:0.003923839658156909 both:0.0005518830277796545 either:0.0005374834784237813 +his:0.3840290097696587 my:0.2780663932822349 her:0.13227389561445296 and:0.08838258769580938 :0.11724811363784422 +the:0.13931218700372092 of:0.13234024632210176 police:0.10253900474450574 in:0.09159846580212781 :0.5342100961275438 +the:0.590328323786053 tho:0.050187854564984286 a:0.04165392233831451 give:0.030888286569392066 :0.2869416127412561 +the:0.5728955705284177 tho:0.24260496268185866 a:0.030411686360794322 tbe:0.014323678912731676 :0.13976410151619748 +of:0.26115419148298347 or:0.07837185592240811 and:0.03562853346717507 the:0.021166287896628996 :0.6036791312308044 +or:0.1779730269764265 were:0.12442076468322555 miles:0.08401570238619702 different:0.08242889626424799 :0.5311616096899029 +the:0.973272381493998 that:0.009778455767730076 one:0.005804554812413729 every:0.0054827517928893385 :0.00566185613296894 +has:0.3161293698526553 have:0.28365319436558983 had:0.16887512957319556 having:0.04547176950124059 :0.18587053670731873 +the:0.3116084534386561 a:0.17069381492667382 it:0.09591209256211776 him:0.06824756704996969 :0.3535380720225826 +people.:0.032110954373068115 trees:0.019526499296256224 time.:0.016958798392325464 State.:0.014120057344388953 :0.9172836905939614 +and:0.100979037617145 the:0.07611141321281166 of:0.06144788779792518 in:0.037521456143907686 :0.7239402052282106 +and:0.39053925047289006 I:0.10425064046289377 he:0.060896314044459006 she:0.049489709325526314 :0.3948240856942309 +the:0.7126652810663723 tho:0.11412558854623558 a:0.06197058087849318 my:0.027054666847911225 :0.0841838826609878 +me:0.12812665481278898 and:0.10027847919552232 as:0.06302807752465298 is:0.045459739196895346 :0.6631070492701404 +sons:0.021856387945843523 feet:0.01149372977728947 of:0.00845139897339036 son:0.007936557977419354 :0.9502619253260572 +labor:0.848887265843844 a:0.032748828151580485 yet:0.026821204971299188 be:0.01874547398679708 :0.07279722704647923 +to:0.6618228977014625 and:0.06986857207275436 in:0.0648718120691073 of:0.045776294174560105 :0.15766042398211583 +will:0.922012586350402 to:0.017728212290944036 should:0.011729937213718586 already:0.006296540716672058 :0.04223272342826327 +the:0.37170827067124507 cut:0.17526822173164328 a:0.06278948140832959 new:0.0464642478929972 :0.343769778295785 +is:0.172036377754979 came:0.16051503021230765 are:0.1201280423735375 was:0.11577383684372734 :0.4315467128154486 +are:0.6467393859101627 arc:0.32100060335319713 were:0.014804432237882548 ate:0.01366675005146171 :0.0037888284472959934 +to:0.9881061115303446 worth:0.0030701360972614513 not:0.0011222111609069131 the:0.0005812612493721245 :0.007120279962114925 +is:0.7543928469038013 Is:0.12072125125785473 was:0.10821233454970515 seems:0.006464628106860255 :0.010208939181778494 +the:0.21367712696555982 and:0.1486175234798148 The:0.12776101520758834 by:0.1096988641812384 :0.4002454701657986 +there:0.22389037779097576 which:0.11900587311904505 and:0.09974911492780941 it:0.09107791594375783 :0.466276718218412 +annual:0.030961587914289837 the:0.030892221261816365 grand:0.029128339089229897 permanent:0.028610478420151166 :0.8804073733145127 +to:0.012787664028553317 you:0.009974006425984058 cannot:0.009239237272464285 shall:0.007941300572590354 :0.9600577917004082 +fine:0.09808810360441984 heavy:0.09696296503381051 reasonable:0.05864030090663815 public:0.03375209336880488 :0.7125565370863266 +speak:0.3015329942327031 was:0.04718626841348295 kept:0.04413568077501692 reply:0.03209785632115383 :0.5750472002576432 +to:0.17487239530009843 the:0.1302952092369256 be:0.07948338134614613 not:0.07729729972752648 :0.5380517143893033 +the:0.28379964107544914 in:0.13320218334996922 a:0.07362328331116914 too:0.041188634424951985 :0.46818625783846035 +the:0.37183073240313 known:0.3043096846689049 organized:0.11556493530537239 dressed:0.05513134056590225 :0.1531633070566904 +that:0.8714250803068072 thai:0.028937232772249903 and:0.011377677117474934 or:0.005159420136702656 :0.0831005896667654 +a:0.6558122874899064 the:0.025362134930717966 one:0.011916371175225288 every:0.007563192019864429 :0.29934601438428593 +deal:0.062448239239206324 class:0.061130206545882616 thing:0.028679678469277405 and:0.024693118980736204 :0.8230487567648975 +where:0.25129410206173286 that:0.24343136545724908 when:0.02427033432265543 what:0.015124948846421309 :0.46587924931194136 +man:0.37418484662376456 men:0.08964543234386052 one:0.06299093821126878 gentleman:0.03955904407133083 :0.43361973874977544 +is:0.45259543718584166 was:0.27927787589384717 are:0.09712783298059163 he:0.04749247114487806 :0.12350638279484144 +are:0.17311529784336435 the:0.1392267718370425 all:0.1127106232502681 I:0.09796015782627591 :0.47698714924304925 +more:0.47988713755050255 of:0.27451457859290634 was:0.0349906708887745 found:0.025095078354596262 :0.1855125346132205 +himself:0.2927518922933314 well:0.08406906280795859 for:0.07268302668604561 him:0.05808388300954732 :0.4924121352031172 +which:0.2070576125382139 would:0.07344976289309385 to:0.07212656694110497 who:0.04992273547086106 :0.5974433221567264 +the:0.23774707056205216 I:0.22194092467757695 that:0.19955959023832182 her:0.16877160537077845 :0.1719808091512707 +the:0.2594650171779343 constant:0.07648163668737519 two:0.0702824188892169 in:0.05996856143114184 :0.5338023658143317 +and:0.113448608699756 of:0.06934299134966102 the:0.06715549646123344 to:0.03332960145035854 :0.7167233020389909 +of:0.09442741688240487 and:0.08549145326359418 that:0.07284699914540313 as:0.03655054507696549 :0.7106835856316324 +the:0.44626385008792674 a:0.0767009057353549 each:0.029883615066645823 and:0.02356784852497727 :0.4235837805850951 +bad:0.2567496490127149 sold:0.035855964071159 the:0.034735091671244105 a:0.025467656099436964 :0.6471916391454449 +be:0.9590522575799458 bo:0.01751009880245049 thing:0.0031414765464648745 been:0.002182472515964013 :0.018113694555174736 +time,:0.3857492304175536 year,:0.036328802364400545 methods:0.036156598284081895 day,:0.019343860948881093 :0.5224215079850828 +in:0.3266306140674089 of:0.19925444448889099 with:0.17150593132265807 are:0.16308711914455273 :0.13952189097648937 +that:0.0828548922383106 and:0.08231840389852951 situated:0.06456018426884182 That:0.030496126790746578 :0.7397703928035713 +been:0.057552130604872666 given:0.024054397918195823 no:0.017118886312585156 ta:0.014818779604454034 :0.8864558055598923 +and:0.5392344898342983 of:0.1253670908337171 in:0.09668982060529527 who:0.09539111745343709 :0.14331748127325222 +and:0.9999666607708064 of:2.02154040890761e-05 the:7.83956167834507e-06 care:2.0846341190274825e-06 :3.199629307215989e-06 +contract:0.007885959179996916 month:0.0072230188986411445 man,:0.004860023790612018 crime:0.0023702004343541558 :0.9776607976963957 +word:0.04972139566740352 words:0.03725266354759933 a*:0.021846774014789346 words,:0.017973146925251378 :0.8732060198449564 +accompanied:0.10433744836629953 done:0.07783260188816976 made:0.06097317701701676 paid:0.04076624286775935 :0.7160905298607546 +and:0.3291567730597213 which:0.2717554925197273 however,:0.10684516447966427 he:0.08823264804386614 :0.20400992189702116 +important:0.0984212203128414 prominent:0.03148905396449043 popular:0.029367183852972083 beautiful:0.02092607064809601 :0.8197964712215999 +other:0.21009333867240626 of:0.12301580609948189 the:0.10617970566889091 all:0.08143029301378767 :0.4792808565454333 +see:0.02094490965860125 of:0.015819673331266017 hold:0.015462355644526206 help:0.013499163469092443 :0.934273897896514 +not:0.1259160651102945 all:0.07222881374562522 the:0.0656569504653597 in:0.04136643187886988 :0.6948317387998507 +the:0.9744193855574926 tbe:0.018076461038270573 tho:0.003525179700451222 of:0.0022221055164709552 thc:0.0017568681873147154 +and:0.016452140506579182 de-:0.013515064665089841 of:0.008885888584605496 nature:0.008211312501071245 :0.9529355937426542 +c:0.13113646065425735 of:0.12480220162836712 has:0.09689767007500302 with:0.09056852524904144 :0.5565951423933312 +of:0.19423476618467275 and:0.17039814439801357 to:0.07451092232375853 the:0.03703386022668923 :0.523822306866866 +the:0.920271617210207 tho:0.03334818708973295 my:0.021115983529373127 it:0.012746913672341325 :0.012517298498345571 +He:0.7919280387431159 They:0.0765524122838091 and:0.050894113986098256 1:0.04286726447641096 She:0.03775817051056563 +the:0.588882660145669 your:0.34553079266917347 75:0.009007438022705552 to:0.0036576408040411325 :0.05292146835841093 +feet:0.8503647302334644 chains:0.08553488853701756 feet,:0.04222094396565457 feel:0.018785203058332912 :0.003094234205530649 +of:0.8364931936142217 with:0.07446476983763624 from:0.03889887576538299 for:0.03154671163545769 :0.018596449147301297 +of:0.07444738054209418 and:0.05562088520084237 the:0.04113728985159269 .:0.027572257476479733 :0.8012221869289909 +ing:0.172184564765325 kept:0.13299022994044243 is:0.09473734247482522 pay:0.061566244943480924 :0.5385216178759265 +which:0.14058080432241984 that:0.1267325850500397 would:0.12270213043821665 who:0.0993707244123481 :0.5106137557769757 +the:0.5671053216062927 a:0.42386225501023406 tho:0.002039529409804934 te:0.0019230147608455409 :0.005069879212822709 +more:0.29764681577950075 rather:0.16560520831722828 county:0.038615473557951786 strength:0.02973142014318627 :0.468401082202133 +as:0.6794086533133411 aa:0.051580326094369376 that:0.00045754967223759943 those:0.0002026665256682016 :0.26835080439438364 +that:0.6864264588756342 as:0.10203551594953063 like:0.0850278253212132 for:0.04190270220084038 :0.08460749765278155 +people,:0.1713291184577748 people:0.11135104672255099 vessels:0.07710831374866693 best:0.016951115618323773 :0.6232604054526835 +and:0.10811773766713186 attempted:0.06711745950898565 was:0.06132732937333169 attempt:0.057934636184578774 :0.7055028372659721 +was:0.2507378367753477 had:0.13426260899298847 is:0.11095015127697508 has:0.08114299213684943 :0.4229064108178394 +hoped:0.5044983191554333 thinks:0.13945017610879099 is:0.07429987633555128 kept:0.07295502227399021 :0.20879660612623416 +the:0.30657614657203336 a:0.2555727342949051 his:0.05140685279220846 an:0.04882338297651118 :0.33762088336434204 +which:0.7652666858139093 that:0.20915112005329406 as:0.012820294325319644 here:0.003241978098449221 :0.00951992170902779 +day:0.15704320921929782 make:0.01827057538542454 day,:0.018173532091800434 ward:0.00969624258152308 :0.7968164407219539 +to:0.8837136866973464 under:0.04834061919176262 on:0.027294392733182928 into:0.021288020450845744 all:0.019363280926862257 +see:0.25596839358137996 do.:0.1354594725735835 say:0.13208940306963687 know:0.1257414188143366 :0.350741311961063 +ought:0.6412495646024898 said:0.05965524022243366 never:0.03985000388148844 like:0.03185219808323331 :0.22739299321035497 +to:0.7486533533102532 in:0.04064597430976762 of:0.02491715636148848 that:0.009155943674199795 :0.17662757234429105 +he:0.6330835699343004 I:0.17865712755579152 it:0.08123236685185588 that:0.056464873621517496 they:0.05056206203653488 +well:0.563742672130985 soon:0.07869717506479333 dry:0.07087403641327154 far:0.048009973505887364 :0.23867614288506264 +who:0.6602972946953503 that:0.029871274056800352 that,:0.027238961993076627 what:0.020953930279503735 :0.2616385389752692 +and:0.1709260585727989 to:0.12302548350811209 of:0.0579015240567409 the:0.04407062158974712 :0.604076312272601 +United:0.020894291293943927 same:0.01898102564489874 great:0.015722929757090484 the:0.013117261036561212 :0.9312844922675056 +the:0.3006343037357972 or:0.24720396611746143 get:0.12532576632543832 her:0.06293734889235018 :0.263898614928953 +I:0.22385955951952832 they:0.15934107706056072 we:0.14082324154387804 who:0.07301864355677953 :0.40295747831925327 +to:0.382979044596219 and:0.06585629367912452 will:0.04242351624910411 it:0.04121817821807578 :0.46752296725747655 +way,:0.3968034234349695 line:0.09424831642878678 that:0.03102599863534516 and:0.027054485949215196 :0.4508677755516832 +notice:0.9880676556655348 out:0.007520425296531978 him:0.0006667672080618314 evidence:0.0006629006461571042 :0.003082251183714191 +taken:0.013034925541994986 seen:0.010155934564291508 found:0.008045954701857837 the:0.007980087243104983 :0.9607830979487508 +who:0.1698713404113582 and:0.12725376094750412 county:0.11164136077856396 has:0.0729113344202092 :0.5183222034423647 +and:0.8595911125781456 be:0.08390059250132037 had:0.02565975712900036 was:0.019288523106910618 is:0.01156001468462312 +was:0.3027669529287433 is:0.27371134827735266 lived:0.025440485661641015 used:0.02271169763674934 :0.37536951549551373 +no:0.43848284731848974 the:0.4009571175099041 full:0.07696744913425267 not:0.038899126304407 :0.0446934597329463 +only:0.469847377439672 been:0.23223485063774577 yet:0.08234443608804924 the:0.04005846977191957 :0.17551486606261352 +entitled:0.9347300563801509 and:0.04648371722659355 has:0.0013286998333258298 passed:0.0007973942783153587 :0.016660132281614344 +half:0.8166666610292771 quarter:0.17529500644347792 few:0.002583500819824442 hundred:0.0017268991052785518 :0.003727932602141909 +principle:0.09671399742182854 number:0.05253824023912869 throw:0.04059693503542932 tion:0.030760321714126987 :0.7793905055894863 +the:0.7409985399598489 tbe:0.04350498092755861 n:0.024420036300577888 tho:0.018313500231707427 :0.17276294258030722 +the:0.43650325471073137 a:0.054521566509447894 other:0.02412405413518378 tho:0.022140358332555572 :0.4627107663120813 +was:0.19087925775339334 is:0.13900922761095116 and:0.1011327048788988 are:0.09486354281976347 :0.47411526693699313 +B.:0.15867519650041073 A.:0.11515715139591484 P.:0.07147140551204709 I.:0.06987349712607703 :0.5848227494655502 +are:0.5945791046107357 ture:0.022987315729870728 Some:0.020997061273275473 One:0.014364660287232375 :0.3470718580988856 +who:0.1852074070356909 and:0.08606348788414993 refused:0.07587376964611689 election:0.06128098983331241 :0.5915743456007299 +the:0.08943197598456543 and:0.0731442401541349 page:0.06529547123295985 of:0.06054907369854949 :0.7115792389297904 +This:0.3280059999970921 a:0.06361352241108201 every:0.06263496578311972 of:0.03458046593066838 :0.5111650458780378 +and:0.02820370652111288 Brown,:0.009548676893164703 H.:0.007763214661149726 A:0.0058768782621315295 :0.948607523662441 +street,:0.0528550607350775 street:0.02677993604128578 degrees:0.016098916428968317 South:0.010259947795875336 :0.8940061389987932 +by:0.8379556008437844 in:0.06824914131435757 from:0.028573818629159333 of:0.02804244322047896 :0.03717899599221977 +States:0.03423535121567443 tion:0.02879427506527697 law:0.012687326545632815 of:0.011683499180260447 :0.9125995479931553 +the:0.091224650819487 was:0.06168470633562077 is:0.037860744614640236 a:0.028997758147505465 :0.7802321400827466 +and:0.22497318346203599 that:0.17909213412801817 as:0.1087140062570689 when:0.07069377039964661 :0.41652690575323037 +the:0.3658931109929563 his:0.06682953212368288 a:0.04115800705800435 tho:0.02816235871940401 :0.4979569911059524 +as:0.03281848203361009 in:0.025647654849877636 of:0.014832440200084389 et:0.01226697639288704 :0.9144344465235407 +have:0.6713982500604629 many:0.05046156447611349 the:0.04428734065741155 think:0.03341181987956453 :0.2004410249264475 +in:0.5837432551442185 to:0.19468088941451933 us:0.1083670164307077 on:0.027668021306586358 :0.08554081770396789 +disposed:0.0020602388038310554 habit:0.001389744987298848 compelled:0.0013195433917379603 frequently:0.0008984295888159777 :0.9943320432283161 +every:0.4998668285874177 the:0.2331189865589448 about:0.08092625068178956 each:0.061027681404882156 :0.1250602527669657 +by:0.034463133511970896 writer:0.03270586225175176 from:0.02884294903843768 but:0.02794255042440231 :0.8760455047734376 +the:0.09646501892095906 and:0.08667863010813152 of:0.03574563636570579 on:0.03554593145363431 :0.7455647831515695 +could:0.13963011232022102 that:0.01517611800162564 has:0.007890864932487961 can:0.006917609264826385 :0.830385295480839 +so:0.19620525808856842 as:0.1849198917170321 and:0.13286597434170003 How:0.11204538280351446 :0.3739634930491849 +and:0.1263587272621158 of:0.10696000971068015 the:0.09697765561766314 in:0.04590194742962522 :0.6238016599799157 +best:0.9814931019560011 only:0.004504429527161855 following:0.0041100665132408 same:0.0012841755425754082 :0.008608226461020689 +of:0.3500688061279251 to:0.2271833024549938 on:0.2199106464323722 in:0.06651937462340915 :0.13631787036129964 +was:0.23711738864086865 a:0.13903104994295015 and:0.061032764422536245 the:0.05619359410377439 :0.5066252028898705 +not:0.7638077659868396 hardly:0.034512112824123954 scarcely:0.010072604852170644 I:0.0025178372461272225 :0.1890896790907386 +make:0.8967375926109691 prevent:0.022853401074542586 maintain:0.0064261514120402 all:0.0008786449118948729 :0.07310420999055325 +it:0.17651848376161533 up:0.05056484642890341 this:0.02299890960892519 even:0.019927717620889233 :0.729990042579667 +take:0.8565726462644838 always:0.055499860772177154 not:0.03141980927342917 lake:0.0037320395244800383 :0.05277564416542993 +of:0.779023995173673 to:0.050306108692696576 ol:0.035029316678384576 the:0.02087691203530144 :0.11476366741994436 +the:0.8171143129379399 its:0.0577129383999227 their:0.05013765730609898 tho:0.028307624169460067 :0.046727467186578366 +When:0.26853354066869045 In:0.2563108242976145 Now:0.08517476150544974 Is:0.039332095050559825 :0.3506487784776855 +It:0.2197056563491752 This:0.13598596475446129 which:0.08797025096017108 it:0.08014551973184132 :0.47619260820435105 +them:0.13325847950053205 together:0.10660919111495623 away:0.046215987593378215 man:0.03651876973397279 :0.6773975720571607 +shall:0.20286305329310228 was:0.18478464720299023 has:0.12248943221530934 can:0.09961330068253325 :0.3902495666060648 +and:0.17485933699603298 of:0.12339021224761598 was:0.050499399141364136 the:0.04670309252724565 :0.6045479590877414 +children:0.9985540990105807 people:0.0002938022263564703 miles:0.00024857666548163185 weeks:0.0002465304757468226 :0.0006569916218344303 +to:0.5022059821768499 will:0.32046742481480944 not:0.089569587212013 would:0.0382686860389542 :0.049488319757373646 +ry:0.4573611380487358 try:0.19252295675174574 ty:0.05648338735000364 ties:0.011672070517775794 :0.281960447331739 +as:0.26822865910110505 a:0.23409704334666132 order:0.07904453623521875 con-:0.05399221788649831 :0.3646375434305165 +as:0.9505282378320606 from:0.02802021094249537 with:0.011719859272281087 summer:0.004781559958076873 :0.0049501319950859095 +me.:0.03679271948153917 men.:0.031804459982238 said::0.021068305574493434 or:0.014721516476667428 :0.8956129984850619 +and:0.16890470055002516 of:0.07557907653588092 the:0.056917781306190816 to:0.04868644665450947 :0.6499119949533936 +the:0.01816314054935656 here:0.014651814364848942 re:0.013628926476035466 un:0.013472467646904355 :0.9400836509628546 +the:0.38411955171462697 other:0.054576426341764274 of:0.04297749146896976 these:0.03157240776441953 :0.4867541227102196 +The:0.18448096537441053 and:0.17887759332002684 tne:0.12399936099400294 the:0.12067911972545176 :0.39196296058610786 +in:0.2777578446842769 to:0.2121834292081604 with:0.18782113455355895 by:0.04875927812917107 :0.27347831342483264 +a:0.0841734560497753 the:0.07167511029197941 their:0.03183520231873432 of:0.019520511802445097 :0.792795719537066 +and:0.12580470444464067 the:0.10357961650212347 of:0.07991742238769484 The:0.058163181685487175 :0.6325350749800537 +views:0.0254742894060073 fields:0.019451431890591293 constitution:0.015104779175608945 laws:0.011729094308785467 :0.928240405219007 +-:0.037399143575153115 to:0.031163133960683525 and:0.028590220838864703 .:0.023255855897131954 :0.8795916457281666 +ordered:0.030121472867877887 find:0.02100780057182641 place:0.012958727268612169 reports:0.012666872957196557 :0.923245126334487 +over:0.5898594092080421 of:0.3492462671413739 to:0.02990464432889622 with:0.014657256126380113 :0.016332423195307588 +which:0.690605573075043 this:0.07034134429950441 meeting:0.06114660481526059 it:0.04580896476489444 :0.13209751304529754 +.:0.3084493368763975 he:0.08542790716672982 I:0.05077281235487582 is:0.04794922435031665 :0.5074007192516803 +of:0.13704987755848105 and:0.1334431427797526 to:0.12680685080935633 He:0.08604227438634586 :0.5166578544660642 +The:0.29841426995037473 the:0.2771899479191818 tain:0.16102118640539687 and:0.152660155438475 :0.11071444028657162 +it:0.41727708577358286 which:0.2957752656375495 as:0.19795481949018381 this:0.038308170686158036 :0.05068465841252577 +whole:0.8057751489631992 complete:0.09999849800130613 other:0.059525161462085405 entire:0.007818661565501516 :0.026882530007907673 +and:0.1405514839478933 the:0.09737359516022602 of:0.06750360978147375 to:0.0561867654532795 :0.6383845456571273 +all:0.6376947429441118 in:0.1884468549155017 for:0.03218019914969273 to:0.02840499208754542 :0.11327321090314844 +and:0.09582924081855348 the:0.07248333123280884 of:0.058554725548764966 to:0.04352675536769814 :0.7296059470321746 +it:0.19543666507933782 the:0.10207697944024018 &:0.05702580062078798 they:0.05112485972695031 :0.5943356951326837 +as:0.03492956950615211 and:0.0333743038929356 But:0.02915229777895228 for:0.020947635804216082 :0.8815961930177438 +application:0.11312373634441136 cotton:0.06631011230176083 name:0.049700029315676734 ago:0.045005785759938306 :0.7258603362782129 +that:0.20377076780935802 to:0.1976601737616363 the:0.1124466586030235 and:0.11128163486928405 :0.37484076495669816 +been:0.12993393440487455 for:0.1289201815444033 had:0.0876668879016599 spent:0.03279893036602418 :0.6206800657830378 +the:0.4793345443950902 tha:0.08129513051078675 their:0.05762525106489998 this:0.05591238099684889 :0.32583269303237417 +his:0.35250147289140343 their:0.292154440679573 the:0.13261930151222895 her:0.12493015684193852 my:0.0977946280748562 +and:0.2841018195720316 is:0.12866088343154464 are:0.09427728006211532 was:0.08927985977606842 :0.40368015715824 +soldiers:0.29104175119844394 and:0.01745883877418145 church:0.01357195413160323 men:0.009367032951508418 :0.6685604229442629 +of:0.5815340605296356 or:0.10366636628840167 in:0.05480625565319163 for:0.03744893610931947 :0.2225443814194516 +and:0.44212504775602157 elected:0.08412438352466453 when:0.05166210858887287 in:0.04203904273848254 :0.3800494173919584 +to:0.2894997512282794 a:0.17107041895895592 and:0.152308319403308 of:0.08038963255349883 :0.3067318778559579 +Chinese:0.04317849329782937 people:0.03556624272701342 matter:0.01733526579784928 rest:0.013177526535474009 :0.890742471641834 +and:0.5763210920128448 to:0.1941997068457315 or:0.0319218529149824 the:0.018873476081092612 :0.17868387214534862 +of:0.7167109080876679 to:0.09068176437678763 the:0.009319156249485185 in:0.008270576821816703 :0.17501759446424245 +more:0.9049552070110459 less:0.010566723196743457 other:0.008148774637747798 practically:0.0074553314743703745 :0.0688739636800926 +which:0.45694255247961196 by:0.2544359730949408 the:0.04215416503609328 and:0.024530866782799896 :0.22193644260655412 +the:0.16330141596355316 his:0.07765366860487267 other:0.053735966569411896 Frank:0.044396422198114696 :0.6609125266640475 +and:0.11313589234079066 was:0.014354423700115288 or:0.014258699239747066 but:0.01422668489942761 :0.8440242998199196 +the:0.20754712487839044 of:0.20442386261164683 in:0.19804314692975908 The:0.16553966542455337 :0.22444620015565026 +and:0.9923147080779926 of:0.0050975016646646705 to:0.0005646455536480689 between:0.0002870979918055607 :0.001736046711888973 +in:0.23034971944291974 to:0.1508276518973464 with:0.10065851737245256 and:0.07757542198758245 :0.44058868929969885 +ion:0.6203625568944314 a:0.02078564847541405 -:0.010346832404563584 the:0.0029054821700642596 :0.3455994800555266 +;:0.03791433839533697 times,:0.012701308774743295 so:0.010889793044830452 have:0.010480160067980273 :0.9280143997171091 +a:0.9053069609110237 the:0.04632248665018718 tho:0.008326173341839023 Fort:0.008294549434663815 :0.0317498296622863 +thoroughly:0.1523719239470984 hard:0.018016170486610864 any:0.012734506881012847 well:0.01048721762931023 :0.8063901810559676 +the:0.27490427447185606 many:0.23977821832741988 a:0.09148892753996915 their:0.022401470161878313 :0.37142710949887653 +of:0.5237035821853363 in:0.16465786257886442 and:0.114849501385358 to:0.09323600689512375 :0.1035530469553175 +is:0.24987081699582872 was:0.18975285695536792 has:0.027247949397544113 will:0.02570717540118588 :0.5074212012500733 +a:0.2754201908184022 was:0.1658393249789763 of:0.0809109062718196 and:0.037837521255197425 :0.4399920566756045 +day:0.346907305828923 morning:0.31217824191542887 time:0.1258540265297398 March:0.10116466761297832 :0.11389575811293 +of:0.2502597755354423 by:0.17138246202256516 to:0.17128900502915356 in:0.15412946067479463 :0.25293929673804444 +and:0.04451885352687667 miles:0.01735451828001132 free:0.013607416447632895 of:0.010357313054311946 :0.9141618986911673 +l:0.09957303376216316 having:0.08683215241813946 material:0.08531889364885913 early:0.0797725908865646 :0.6485033292842737 +the:0.8741535486096496 tin:0.028514995717108693 all:0.021901262338494664 some:0.02017978021819802 :0.055250413116549255 +I:0.47032378171096184 the:0.33519072206084133 Mr.:0.06782449821601136 Col.:0.01906635408475651 :0.10759464392742897 +of:0.8590381345859847 and:0.03472636511785033 ot:0.020623093774058226 is:0.01900597249578508 :0.06660643402632145 +on:0.019027812930340202 and:0.007953680092966382 for:0.007224971818376526 it:0.0027352852530558567 :0.9630582499052611 +anil:0.12301793215085007 the:0.08203041515184205 England,:0.0712785464872727 and:0.02475502054687971 :0.6989180856631555 +the:0.893889890357323 his:0.019691839128615555 my:0.008846460883382206 a:0.006282680272693237 :0.07128912935798574 +the:0.2471563911540579 he:0.135251227622037 it:0.07594368858591698 they:0.06307011530004143 :0.4785785773379465 +that:0.9227197707304028 what:0.022379820997782796 whether:0.012049984802545549 as:0.007726326046567663 :0.03512409742270124 +of:0.3496076316584948 such:0.0968797035226428 and:0.07672347699882855 that:0.049777835347116973 :0.4270113524729169 +certain:0.24043766399504485 long:0.23608870120272232 suitable:0.1166785070812939 high:0.10606183929000014 :0.30073328843093877 +so:0.9894682619493773 as:0.005080555342152037 is:0.00030797451276220745 not:0.0001353127338955377 :0.005007895461813062 +man:0.1907545026954079 disposition:0.09037265679785855 view:0.08062837271387312 character:0.040900055670698404 :0.597344412122162 +in:0.1587070057359477 and:0.0475314094045734 at:0.040080271269646556 to:0.034452711967477366 :0.7192286016223549 +a:0.5888599120208374 of:0.25270463752394673 and:0.04255924945296332 the:0.03478298019445705 :0.08109322080779559 +and:0.5612718882101632 as:0.1880662373274456 snd:0.15736172416317995 to:0.02249139869551801 :0.07080875160369333 +the:0.14642780676403233 a:0.03707746254544266 other:0.02239039010489221 to:0.01461279458303093 :0.779491546002602 +him:0.07803136710092445 that:0.04989473458540583 himself:0.04449147297881147 themselves:0.04181919274663199 :0.7857632325882263 +the:0.5486722420769192 to:0.16955457595108903 an:0.14813990653465897 is:0.11630450004953882 they:0.01732877538779395 +up:0.13974390044636856 charged:0.10264096560242279 also,:0.09843688680561342 ;:0.06897950317284278 :0.5901987439727523 +ten:0.7538379759523582 eleven:0.2126644697694608 six:0.008811442906778015 eight:0.005704158693253902 :0.018981952678149127 +in:0.8800032188876771 In:0.05769140179111588 iu:0.055372996289137215 with:0.006814067001485128 :0.00011831603058467598 +that:0.07182240891278807 made,:0.026786971739628806 the:0.011080638478581857 tax:0.005374793571087576 :0.8849351872979138 +and:0.22172482217351125 as:0.17697553500020247 which:0.1186753928328097 If:0.11857055372205395 :0.36405369627142264 +then:0.9414678396168951 immediately:0.009241611860950261 and:0.00788857117290893 who:0.005349416263468465 :0.03605256108577724 +leaders:0.11150046124242664 members:0.05881932282963382 history:0.049836075192694874 sentiment:0.023060376963807493 :0.7567837637714373 +the:0.32577428894855615 a:0.1552839969861863 this:0.08952616638777953 that:0.07837395116362125 :0.35104159651385675 +drew:0.2380706322776952 commenced:0.1698412151978065 cut:0.1440395245609412 and:0.10444641879543905 :0.343602209168118 +Mrs.:0.1770237539345621 Miss:0.15898697789376146 the:0.13448419100457004 her:0.09487698481847581 :0.43462809234863053 +the:0.28260306159734727 a:0.04694303299028124 October:0.03226006311380779 being:0.023673526674306004 :0.6145203156242576 +the:0.4544713978670191 all:0.08120908661708201 a:0.05791574789489498 this:0.02769463872304014 :0.3787091288979638 +cured:0.06522466051123674 for:0.056740149356769305 to:0.04962738411947245 and:0.049050389772013814 :0.7793574162405077 +d:0.04096815879541517 entire:0.03576953329439837 dear:0.023579785508256974 own:0.021935374988536496 :0.8777471474133929 +who:0.2831487528876986 There:0.09847013345939204 and:0.0791831350773094 that:0.027347684515917826 :0.511850294059682 +must:0.2564020169630794 dog:0.17861465892376963 will:0.12492175974536929 may:0.09571070549533216 :0.3443508588724495 +men:0.07383212252015481 man:0.07361529828160264 party:0.0436401729442764 people:0.04176730961686587 :0.7671450966371002 +lie:0.1738122405872306 "The:0.09880511581761175 He:0.060241355253232265 she:0.023749651848403015 :0.6433916364935224 +in:0.2781008251473072 at:0.15275058111968923 With:0.14897909824749492 as:0.07216416334430806 :0.3480053321412008 +away:0.4647513332809069 It:0.05458334856859361 attention:0.04579519492633407 information:0.022310267887979317 :0.4125598553361861 +out:0.3614677278076314 over:0.22777817900523245 back:0.1076920689034624 in:0.07685932508180893 :0.22620269920186495 +was:0.4771916105448541 01:0.28346655744953275 and:0.007870483095868236 of:0.004656681876000592 :0.2268146670337444 +You:0.9990257346255922 we:0.0006337337366697353 We:0.00011040458928833977 It:9.820076652474201e-05 :0.00013192628192533468 +and:0.2607551328607426 when:0.22425504377288558 If:0.15725630358482828 for:0.04377178810368627 :0.3139617316778574 +of:0.9543125327896431 oi:0.01950547130460286 ot:0.017544755986476736 ol:0.0034408390225572436 :0.0051964008967199955 +a:0.9767892774403403 the:0.01124611668297718 to:0.006782322436531274 their:0.002918465694793811 :0.0022638177453575613 +lived:0.13211488771275673 was,:0.07206699221214523 visited:0.02869010891934358 walked:0.020664624211691643 :0.7464633869440628 +said:0.019875584034327484 most:0.018974774891138267 the:0.018052790748758554 same:0.01781855255828985 :0.9252782977674859 +and:0.130435209516406 the:0.09988382195455896 to:0.08922293532951546 of:0.08283511726100255 :0.5976229159385171 +get:0.1285638606802233 make:0.09848067292061173 force:0.09761865033667191 help:0.05380298252911054 :0.6215338335333824 +this:0.7295890360969219 the:0.24907061587191062 that:0.014550881673756845 our:0.004371075939858647 :0.002418390417551957 +the:0.5076941118584455 The:0.4140264444694202 Mr.:0.0068027417689932495 an:0.0022300273535745935 :0.06924667454956634 +the:0.8518088525081067 a:0.1267143376436948 his:0.008215015059140515 this:0.006632806553537741 their:0.006628988235520177 +must:0.33871200791714673 is:0.07993651057019804 will:0.07418903533643843 was:0.042848103415526834 :0.46431434276068984 +to:0.22349558643755987 will:0.19981165188288325 and:0.18128219072640697 that:0.13602570302178105 :0.25938486793136895 +place,:0.018201886632970076 other,:0.017957347825962637 not.:0.00519981480889124 another:0.00367380851477979 :0.9549671422173963 +and:0.9470319754531421 on:0.037422901085989814 at:0.011188796169758203 to:0.001915056468804305 :0.002441270822305641 +that:0.8856545958508505 out:0.024453617388274732 tbat:0.017312335887438475 ia:0.009187112870271191 :0.06339233800316509 +the:0.28506401296532186 others:0.19475830293280907 a:0.10033252981718346 other:0.07242650403822712 :0.3474186502464585 +people:0.04419388620452823 members:0.026555506728686354 majority:0.01569349986088829 action:0.015415093827005236 :0.898142013378892 +y:0.05601764589913866 water:0.02366412264323977 Mayor:0.02061417131423282 the:0.011568504762479599 :0.8881355553809093 +the:0.1916741738471747 price:0.03538662858046888 r:0.03179786301684415 agricultural:0.026786757255545236 :0.7143545772999671 +to:0.2140554846942938 has:0.10606264076139418 have:0.09915032541400022 and:0.04392341568575582 :0.536808133444556 +of:0.5299030204833207 with:0.14990236876783058 and:0.09689002828553606 in:0.07150425631215244 :0.15180032615116032 +at:0.3847266599831511 in:0.20703092062422607 of:0.17876441664307008 by:0.1334224889387293 to:0.09605551381082351 +is:0.22307976979841856 will:0.0528073024406859 was:0.051001311633169816 waa:0.0351413300262757 :0.63797028610145 +would:0.3843322437117705 will:0.2742122040822099 shall:0.13167547268067897 should:0.10634941775005842 may:0.10343066177528211 +has:0.6958999697309755 from:0.06527591886361908 about:0.03831711539807558 for:0.010911171667915514 :0.1895958243394144 +the:0.0909674816228643 that:0.06466976483426351 a:0.06186258973337277 w:0.03506135117575979 :0.7474388126337397 +fifty:0.7867376716574106 ten:0.044681509754834196 20:0.0292453709282183 the:0.014537747247982322 :0.1247977004115545 +of:0.19280237279582457 and:0.08062605932756287 to:0.06483620067607337 the:0.03685939195059745 :0.6248759752499418 +be:0.44017015608173654 have:0.1890891443138743 the:0.11837358139717122 which:0.0689816706969355 :0.18338544751028246 +to:0.6372921791311115 greatly:0.3017335354263539 an:0.023949212759124924 the:0.019691362336042455 :0.017333710347367096 +grand:0.12118429099725893 old:0.09481806265415008 party,:0.015807336444140604 body,:0.01490970420414458 :0.7532806057003059 +heavy:0.12964014511573832 two:0.0939131700073259 vote:0.08006993089078802 long,:0.06844137727117315 :0.6279353767149748 +d:0.3183698283035991 property:0.08422025217016789 bid:0.06704501388221071 action:0.06546382357363228 :0.46490108207039005 +of:0.22961424861188756 the:0.1849114374612822 and:0.17158742973118063 The:0.06758551884820295 :0.34630136534744677 +of:0.29726658218772956 in:0.1998202661571658 and:0.15210150377328133 for:0.13849502091279967 :0.21231662696902365 +and:0.12723351462407553 the:0.11978641751020923 of:0.09688851740459502 to:0.06974227238534346 :0.5863492780757769 +pounds:0.024706134675118372 ,:0.011670786726512544 rates:0.010714205942745978 to:0.0028615336776384058 :0.9500473389779847 +ing,:0.34672217189499116 and:0.2667569731989141 our:0.03769959447133762 and,:0.037316548361818275 :0.31150471207293895 +government:0.20886184511326522 justice:0.07519995642755486 parties:0.06473048130719379 the:0.06339710936920058 :0.5878106077827855 +the:0.18805377595485429 Miss:0.08197405601722159 Mr.:0.05571011100813628 John:0.052238290036095425 :0.6220237669836924 +elected:0.46307980663685583 in:0.3006625028795201 that:0.11788664810653696 a:0.03340995275188115 :0.08496108962520608 +himself:0.45446500640875614 that:0.16776183663510577 such:0.12017462110213604 to:0.08642782040529308 :0.17117071544870893 +fact:0.3203906572613898 ground:0.03608974130078583 idea:0.02894146568853852 opinion:0.028128331209264376 :0.5864498045400215 +and:0.31866793813647004 public:0.03761436917402328 people:0.02309020999726814 farmer:0.022695205910045306 :0.5979322767821931 +the:0.6073568947256869 ihe:0.16880856184347295 tho:0.16211329863746757 Hie:0.0313370193309236 thu:0.03038422546244906 +or:0.0293110620687118 working:0.019574441272364705 and:0.018064179143468525 ning:0.01726571086805829 :0.9157846066473965 +there:0.741252381829681 also:0.13810020621239338 clearly:0.01700899531305115 not:0.013934644228675738 :0.08970377241619854 +not:0.08427143555915838 begin:0.06107466255860455 only:0.04589559297768113 agree:0.04503919533441168 :0.7637191135701442 +the:0.05913644208781712 them.:0.03228087592541248 it.:0.018101734564134393 ':0.011651671440362835 :0.8788292759822732 +the:0.983305283240062 tho:0.004700272856711485 a:0.003772726955944713 great:0.0031195987695180837 :0.005102118177763662 +and:0.08262881617477266 of:0.059687498306989925 the:0.05538282745974315 de:0.04213025289038743 :0.7601706051681069 +little:0.22762313848349083 word:0.17841519079120147 party:0.09156938567090088 tree:0.025172327078018013 :0.4772199579763887 +make:0.33126243098352326 give:0.18011592037247434 add:0.11539720857193417 see:0.10378490861418098 :0.26943953145788724 +and:0.16033225432647946 of:0.1048261586661766 the:0.04733033758101107 to:0.03062724529400369 :0.6568840041323292 +of:0.3853493272989548 and:0.14465862102686286 from:0.09529449854228521 to:0.09061647597652828 :0.2840810771553689 +to:0.9999269932713104 in:9.998758387758063e-06 and:3.7346179144454027e-06 o:2.68003785528231e-06 :5.659331453202333e-05 +were:0.06987803846596562 rule:0.0476584694535096 numerous:0.026363918805851625 very:0.020003028286994292 :0.836096544987679 +daily:0.0399498023416962 to:0.034750743653656505 and:0.02676978320828434 The:0.019528805005935103 :0.8790008657904279 +by:0.33719723411900215 that:0.18714277689998238 but:0.16315005904364557 and:0.15675482806201602 until:0.155755101875354 +three:0.12631985251436073 four:0.10178300699469385 several:0.08983459604474638 100:0.05182391346500367 :0.6302386309811954 +o'clock:0.9609763196152458 o:0.0012163437470403525 1:0.000691617626016758 cent.:0.00019102700366024997 :0.03692469200803684 +with:0.7130641718650229 over:0.13273808724374092 for:0.07068190942637148 lake:0.026515294291029126 :0.05700053717383558 +and:0.25596315611406373 when:0.13827468653638691 the:0.12473123284571831 Mr:0.08077078780722866 :0.4002601366966025 +had:0.5549871713214417 has:0.1993748661388764 was:0.1399778682703543 is:0.05656737532886512 :0.04909271894046238 +name:0.2313957831802076 command:0.14932061099079066 laws:0.12671753991830312 direction:0.04267328127285225 :0.4498927846378463 +and:0.1443962906525582 due:0.10905519448832252 shall:0.05381559720449901 delivered:0.041580001558953715 :0.6511529160956665 +or:0.13979924915050512 and:0.05402345059713209 of:0.029731531094367023 ed:0.02529542917283569 :0.7511503399851599 +in:0.6734978489264348 io:0.25440302490389816 In:0.028122693273139654 lo:0.02332058621316744 the:0.020655846683359902 +to:0.2838450469187478 of:0.12532668791973 that:0.10773358602752972 for:0.034934048770674846 :0.44816063036331755 +and:0.28801503612850343 already:0.17872268550652454 above:0.1755286698602422 herein:0.10392446672817929 :0.25380914177655045 +on.:0.02516105660886631 them.:0.015269642850256766 it.:0.014211359059794171 to:0.0035135220093658283 :0.9418444194717169 +It:0.22717276681599255 it:0.10970610690327526 which:0.0786412070374293 and:0.0752080996614627 :0.5092718195818401 +It:0.21682491785319494 west:0.1603578569345824 He:0.14024800584801259 administration:0.09481434943987557 :0.3877548699243346 +the:0.6125310906487721 said:0.11468630287986499 a:0.06488575893365287 that:0.040821732061817 :0.1670751154758929 +For:0.7690448806616521 The:0.026387716641422653 of:0.005201467873489829 the:0.003809408763640802 :0.19555652605979454 +of:0.8262076884855346 that:0.06433009303389296 and:0.04898954273388611 to:0.025057049268071303 :0.03541562647861495 +line:0.49261525932831246 side:0.1828962333615067 end:0.022032113668623274 corner:0.01709025078798833 :0.2853661428535693 +lots:0.2264946712890987 1,:0.076921522423128 No.:0.05772026081482483 4,:0.04307881588871717 :0.5957847295842312 +in:0.8045861272557595 In:0.15606644521701984 iu:0.016803241645870336 m:0.014268239761091957 :0.008275946120258339 +the:0.8563922545351662 his:0.02844514051996933 tlie:0.013264656807007249 tie:0.00898450275362674 :0.09291344538423042 +Smith:0.11451877917767293 means:0.06055661492054749 tions:0.03322353813286201 .:0.017320078445270864 :0.7743809893236469 +etc.:0.03141715028371988 and:0.028030522386027705 -:0.02340232399293162 .:0.022994726842434837 :0.894155276494886 +such:0.6659163102535451 colored:0.23086748445062547 any:0.03196129911546736 a:0.029690537778105725 :0.04156436840225646 +and:0.06237430344002104 State:0.03546712852541636 party,:0.026727767441991044 people:0.02620310171465575 :0.8492276988779158 +decision:0.06614256764865316 action:0.06187774770593967 power:0.03569985854487769 authority:0.035502393094504765 :0.8007774330060248 +of:0.8995026309215722 in:0.023631087164249238 for:0.019342130580632895 ot:0.00930080841758682 :0.04822334291595866 +of:0.9861136548763244 in:0.00264955092454542 to:0.0020870975727882396 the:0.0019743158392963645 :0.007175380787045418 +and:0.2539333220869678 or:0.07049169698568634 iron:0.05701759332033227 the:0.0544662934918922 :0.5640910941151214 +the:0.1397247163011904 cor-:0.05384292402148721 a:0.03580415302412822 to:0.020423934741886644 :0.7502042719113072 +and:0.1546729370272836 without:0.07754389083753184 that:0.06936172832644326 is:0.04931048207983544 :0.6491109617289057 +degree:0.21972947736902265 party:0.12169852157345742 knowledge:0.11268592428182665 committee:0.08364528866345489 :0.4622407881122385 +at:0.3973846213935101 on:0.20902736780937678 only:0.18927135546900892 in:0.13267610527002538 :0.07164055005807897 +line:0.7583623573320861 of:0.010050344943514564 year:0.0074812738251724175 century:0.004289992443696803 :0.21981603145553008 +of:0.43879261790228724 or:0.09038870650828323 and:0.0751977760115777 to:0.07008427045286122 :0.3255366291249906 +be:0.6713388901872341 sell:0.09141874787229842 receive:0.06058532808040325 say:0.02141654465710682 :0.1552404892029574 +lots:0.5008575307393498 the:0.14231036909099828 No.:0.006622844543713865 lot:0.0049645493209679835 :0.34524470630496995 +the:0.2663350950061494 .:0.023106902111881985 a:0.021736420596405154 charge:0.008080450695278293 :0.6807411315902853 +this:0.2828295672044375 the:0.17541730561111624 you:0.056512746417785954 death.:0.03559281238365627 :0.44964756838300407 +arrival:0.20304794580422747 members:0.05344211910283379 bottom:0.0320381650488008 arrest:0.03051700856164725 :0.6809547614824907 +in:0.20780397031304854 by:0.19749731435985146 to:0.19321604866700007 from:0.16019046271356652 :0.24129220394653336 +half:0.4727919961590516 few:0.02812644056864562 quarter:0.02413540742887588 hall:0.020512044033294163 :0.4544341118101328 +is:0.22463300951624363 so:0.031110901996944045 be:0.02590492709423846 amount:0.021382946760045835 :0.696968214632528 +of:0.3424225481795091 and:0.1886004436124783 the:0.052011967578561975 to:0.031014269230082183 :0.3859507713993687 +most:0.09995904953956906 health:0.0852166244999744 least:0.02641943772646617 other:0.020240125235865294 :0.7681647629981252 +horses:0.10150316297637263 heads:0.0433887134888127 glass:0.034601187508976804 train:0.01980538586203107 :0.8007015501638068 +the:0.1255033434138613 to:0.04863477920590668 .:0.03380035494937633 a:0.032599358288858384 :0.7594621641419974 +gun:0.024471742194465018 there:0.022096056660200494 who:0.021727690077666423 It:0.02026155832528561 :0.9114429527423824 +as:0.1480075346546467 and:0.13167445781511844 the:0.08824046864935663 of:0.05662347282521062 :0.5754540660556675 +he:0.015430433169451412 close:0.004530711106366648 interesting:0.0038990992288914037 clean:0.0035452979831872506 :0.9725944585121034 +and:0.1292590131930863 corporation:0.056749274081851486 not.:0.015147438808698373 time,:0.012067409319834183 :0.7867768645965296 +of:0.21040069296152503 and:0.09572233164896904 the:0.04094222232894765 The:0.02731022277928995 :0.6256245302812684 +themselves:0.2504536960409363 compelled:0.15847348990298085 that:0.09305888359649646 disposed:0.06484663853727081 :0.43316729192231573 +man:0.5530182896838383 man,:0.2580865232409054 man.:0.1863912593790033 Mr.:8.262315279883649e-05 :0.0024213045434540855 +work,:0.014498456887499721 the:0.013996043634615577 most:0.01058301584381571 there:0.010485365753939402 :0.9504371178801295 +We:0.2675805732915691 I:0.18033263829776577 or:0.14214898844303586 may:0.08967481730884722 :0.320262982658782 +to:0.18132346513556447 a:0.16011734290457186 too:0.1314054126933627 her:0.10053712185211963 :0.4266166574143814 +that:0.4700508318622703 of:0.43944102456377937 for:0.05108181044722334 to:0.018000255440053688 :0.021426077686673328 +the:0.12671337191092508 a:0.03784604074080108 he:0.010418478942059096 Mary:0.01012080166099186 :0.814901306745223 +tho:0.28267354823020074 which:0.2303403285212587 the:0.14151961569101107 giving:0.0363317821762042 :0.3091347253813253 +only:0.29554292003633287 so:0.01736191011917855 going:0.014374378534912491 more:0.012820339544236191 :0.6599004517653398 +and:0.11524666374694872 where:0.04074194325090274 is:0.03394712464099878 sad:0.03066887516147509 :0.7793953931996747 +and:0.075512585136988 as:0.02636743562074508 is:0.01849186153575372 according:0.01635983794723152 :0.8632682797592818 +the:0.07405067251595199 once:0.05055834294131431 noon:0.04381444628960483 least:0.026519256438189427 :0.8050572818149394 +whole:0.502039781700659 present:0.12461288328224909 old:0.06104156020780927 district:0.05765103817272671 :0.25465473663655597 +the:0.006657965038625882 his:0.004366242206402431 body:0.0036448825158876376 air:0.0036052112080306306 :0.9817256990310534 +common:0.1696275117690235 only:0.087609209597046 the:0.06932776694997779 local:0.00711431616546284 :0.66632119551849 +be:0.0822215820026771 extend:0.06170142631427408 you,:0.050214813669118404 for:0.0228884976555335 :0.7829736803583969 +the:0.4049620973852307 his:0.1754294032018483 general:0.08279183698050926 an:0.07782751586301012 :0.2589891465694016 +of:0.21421451311928003 and:0.1014343039873195 the:0.042909033988465524 to:0.024182434563001752 :0.6172597143419329 +land.:0.01706125800804026 feet:0.0010967059199348084 works:0.001079304259973858 government.:0.0006508068186109932 :0.98011192499344 +the:0.4195555872667102 their:0.09867653194406951 a:0.033527832865641184 our:0.02656916131050435 :0.4216708866130747 +The:0.30533847128546865 of:0.24887095242945415 and:0.1323753984853722 as:0.10590182666173233 :0.20751335113797267 +duty:0.9665373606709862 honor:0.017649056852140115 duly:0.0011926844380965448 the:0.0005027444974032284 :0.014118153541373905 +could:0.4354446036999492 can:0.17681266894517816 should:0.11799078904268394 must:0.11698725913834648 :0.15276467917384218 +I:0.5212602232596378 he:0.1969598947178343 she:0.1311847030665234 they:0.0023502835920121506 :0.1482448953639923 +day:0.9980062053805809 dry:0.0003022816803930361 of:7.303840122921031e-05 number:5.9716030838105224e-05 :0.0015587585069587221 +land.:0.011114469336303383 street.:0.008417092212061335 bed:0.0052508332134032255 city.:0.005176259004861726 :0.9700413462333703 +and:0.8305330197554326 not:0.05679793564760536 was:0.022487220121846133 more:0.01708280274800014 :0.07309902172711584 +the:0.8598388679386164 tho:0.05950926921507314 these:0.052707880804744665 tile:0.009241370607769297 :0.018702611433796527 +seat:0.03993294355570994 to:0.03980304232871032 On:0.038764700097858824 body,:0.023046826848830023 :0.8584524871688909 +the:0.08290964899311161 will:0.047418713669336775 life:0.013389034510639018 peace:0.009906715564390194 :0.8463758872625224 +for:0.9988986312242988 of:0.000410672025341316 in:0.00019602402854826753 some:0.00013658348222947138 :0.00035808923958227234 +I:0.10178954397300238 the:0.1007471813390003 ed:0.0846844507184784 an:0.056264994579222564 :0.6565138293902963 +the:0.33118376555469625 similar:0.1681411046135446 their:0.14996971311337162 these:0.1126820376186179 :0.23802337909976978 +of:0.25398195822528025 old,:0.21674586223019937 to:0.10767302352386858 ago:0.10726809446290929 :0.3143310615577425 +call:0.043064132392582395 matter:0.02314407612726252 money:0.017924917931923186 question:0.016932703723051102 :0.8989341698251807 +are:0.23718705964569087 of:0.1939911147309075 to:0.14483825564857164 and:0.12176753240209227 :0.3022160375727379 +decree:0.1126409722879754 part:0.07208493176383844 portion:0.049353351449151296 majority:0.04411392486439164 :0.7218068196346432 +call:0.2860107332489865 look:0.12723373810469793 agree:0.11776055519999826 fall:0.11562426890782296 :0.3533707045384943 +Mr.:0.15583376773992394 U.:0.07073284671094983 line:0.07036262270411482 lot:0.0700693554043017 :0.6330014074407097 +to:0.40751702503112824 into:0.2703592981299978 on:0.16021791228044832 in:0.07047675413470299 :0.09142901042372271 +manner:0.5239953472624905 order:0.14694557453207324 state,:0.05848237861822202 States:0.0491362463567375 :0.22144045323047676 +the:0.45618006442349734 its:0.43262046569546647 a:0.04183119212144393 tho:0.008030188114232461 :0.06133808964535961 +the:0.591969203852591 a:0.03490944426377474 tbe:0.02457860428230306 tho:0.024184772738553635 :0.32435797486277773 +It:0.17385469092913902 which:0.16658503861440796 it:0.11636920398259575 there:0.08828462506069386 :0.4549064414131634 +of:0.5378256363493865 a:0.17821688803599617 the:0.10113145654086791 its:0.044514811145035596 :0.13831120792871382 +.:0.0939891357750263 ii:0.06840373003851216 i:0.051281237820642166 was:0.0433909992050704 :0.742934897160749 +first:0.03698462423625316 great:0.02746443907408031 general:0.017721797111042426 the:0.015940223302476894 :0.9018889162761472 +quiet:0.009095906167952778 dull:0.00809054489088035 and:0.007627038671376383 John:0.005045778867331849 :0.9701407314024586 +inches:0.7311504049903287 feet:0.07042875708786756 o'clock:0.014210361399375678 years:0.009186142548710597 :0.17502433397371758 +form:0.2823534571404417 six:0.07228225388321431 strength:0.06179780194177648 all:0.052402060086298025 :0.5311644269482694 +yield:0.6514606962959512 increase:0.0328875184867577 public:0.027264318276282208 cattle:0.010894985085431437 :0.2774924818555775 +of:0.3989666858632166 at:0.2912510645055904 that:0.15086202209997882 in:0.13543187295717518 :0.023488354574039014 +share:0.05192645688723497 vote:0.04203860461956172 use:0.03254187053292257 the:0.014214471652799276 :0.8592785963074815 +In:0.285088907591325 the:0.22039586395852864 our:0.17651225225390868 of:0.16640022220954517 :0.1516027539866925 +a:0.29946667175526326 an:0.2347589040737003 cor-:0.0772446599363906 things:0.024804435391991182 :0.3637253288426546 +and:0.12187357353696217 of:0.08790283962842928 the:0.08124171334158671 land,:0.03743088234616593 :0.6715509911468559 +be:0.4396065892864571 have:0.10939788808970981 bo:0.09573276115295815 not:0.04127127316404815 :0.313991488306827 +the:0.6961065380752143 tbe:0.10948747272040857 tho:0.06679439793553438 that:0.06060245764408127 :0.06700913362476167 +tho:0.547152933983338 the:0.2200224737400497 a:0.04625037651776732 The:0.034798236609488456 :0.15177597914935653 +of:0.27180274851813924 and:0.13862633974405064 character:0.11944911644371163 the:0.0837868824100955 :0.386334912884003 +in:0.4395573927249513 the:0.35380934964161737 them:0.07425201250631791 their:0.03538024217401976 :0.09700100295309363 +treatment:0.17331717598457064 year:0.07059732304111267 week:0.06736538768827416 contest:0.06510392986053758 :0.623616183425505 +to:0.2743754326110515 that:0.24502891605031302 of:0.10860041959218343 by:0.0944577989667277 :0.27753743277972437 +the:0.20007075758478787 Lake:0.04013659341023264 In:0.009040804714906966 of:0.008436892721976032 :0.7423149515680965 +if:0.5181470495042035 when:0.15113940540266185 them:0.13880045779511246 after:0.08656814812448387 :0.10534493917353834 +a:0.3877921406111281 the:0.22720637081037404 an:0.04903754431974456 to:0.015651936410060116 :0.32031200784869324 +which:0.023733990068332822 contained:0.021957601432701715 of:0.008728550024908249 or:0.00756225195435537 :0.9380176065197018 +left:0.11510926928123326 started:0.09428031084741134 do:0.08170967324484449 was:0.0788838444828674 :0.6300169021436435 +and:0.16771755622268372 of:0.052802064210379626 or:0.05279037271804518 the:0.05199680418657806 :0.6746932026623136 +He:0.9153483177181226 for:0.03742577067270359 this:0.01855588744570854 and:0.011638890337058052 :0.01703113382640705 +evil:0.05032571329963783 the:0.022756214742042778 same:0.020182333733256022 stomach:0.017741640356998618 :0.8889940978680646 +21:0.07312198000580153 20:0.058366960772258766 40:0.04372541256141001 30:0.040473339907677534 :0.7843123067528525 +when:0.3106047771909818 and:0.26573256106489135 When:0.07395991077901704 that:0.06724668017626957 :0.28245607078884033 +a:0.9955184589780439 tax:0.0010715783241937104 commerce:0.0005751860820766301 the:0.0004733912050429941 :0.0023613854106426533 +in:0.9493345639294892 In:0.027768124310664565 iu:0.010940920659367954 m:0.008628019046325902 :0.0033283720541522565 +of:0.30045912743495795 and:0.1417876058957192 the:0.06152435490379222 or:0.060530938713844344 :0.43569797305168634 +the:0.9473782430430795 tho:0.027743735535756344 tbe:0.0027979598697992613 tlie:0.0023417899276108683 :0.01973827162375402 +of:0.31108809240369373 to:0.129453118510694 in:0.10365727223403196 and:0.09433222111758043 :0.3614692957339999 +men:0.14830413827440875 was:0.11968206603622199 last:0.1020402964908525 above:0.051380116715212226 :0.5785933824833046 +be:0.8134202668627852 the:0.036809086158849945 bo:0.026779464634953697 he:0.025967016229653132 :0.09702416611375787 +This:0.3298850305412 and:0.09684865113942567 of:0.08464607647278592 or:0.08317432134414285 :0.4054459205024457 +kind:0.16901751223775707 sort:0.14609479662575744 amount:0.12546408902384618 right:0.12399325824599089 :0.4354303438666484 +It:0.12997979849096036 ami:0.08358437978631586 she:0.06166427164650947 All:0.057608814510696195 :0.667162735565518 +and:0.12164361528831916 of:0.10385513582901941 the:0.07294977340372717 The:0.05269492880246037 :0.6488565466764739 +later:0.10780535556492615 went:0.06996323338773197 so:0.06741370412216437 going:0.06261990643890507 :0.6921978004862726 +the:0.17434589568329573 and:0.08701187714144473 to:0.08193549456235286 a:0.06445633640401713 :0.5922503962088896 +the:0.392350441494033 force:0.1737204150587699 session:0.11297456239861134 their:0.07262835337590572 :0.24832622767268014 +and:0.18425415498878814 to:0.1679352311156424 of:0.08325605456622957 or:0.05934810669658659 :0.5052064526327533 +sale:0.15579497886804264 from:0.13898801620446147 about:0.12141371592490986 fully:0.11436888267204429 :0.4694344063305419 +now:0.4266906420673139 usually:0.12050652983177397 court:0.10119593782633068 duty:0.015146256105063446 :0.33646063416951816 +only:0.3199041449142836 said:0.06105622308554441 now:0.057951120297430124 I:0.04553048652489371 :0.515558025177848 +and:0.05630198582978807 to:0.0354076398758325 of:0.01867892557292532 The:0.00391679600007954 :0.8856946527213747 +nothing:0.3961596511078464 that:0.23239692189417982 anything:0.036861988947603466 little:0.03386707568928044 :0.3007143623610899 +of:0.4073089131314495 in:0.16606958960424262 to:0.09573132926983068 on:0.09198169458559177 :0.2389084734088853 +knows:0.35360829888495243 got:0.24847394266268377 has:0.22108553095197794 into:0.09275517106316034 of:0.08407705643722539 +down:0.41762024591648367 out:0.210003630711587 in:0.13312175226497133 over:0.11572942678931834 :0.12352494431763958 +large:0.12826423608502763 fine:0.06306798415730286 good:0.05913975056501608 great:0.056155997998782896 :0.6933720311938705 +Western:0.06432616199540703 great:0.04924878040609661 local:0.045240400775102864 National:0.042180680850762584 :0.7990039759726308 +a:0.8683590867261981 the:0.05861446576743499 to:0.02512862691311012 We:0.015762629209406395 :0.032135191383850514 +the:0.991572557962647 that:0.004487940652699783 in:0.0010787460593514402 any:0.0010705218607619167 :0.0017902334645398697 +long:0.28771372776033466 their:0.23096350579511934 the:0.15145015279141613 and:0.034500163429446694 :0.29537245022368314 +little:0.0005670773808630897 few:0.00042558606108713707 well.:0.00034811088683861307 sufficient:0.0002838650532861951 :0.998375360617925 +Henry:0.0781400721746132 L:0.05524893858281014 W:0.05247655011601163 chains:0.05221950935241369 :0.7619149297741513 +the:0.27375789310839904 duly:0.04223724909737953 pur-:0.030596234029348968 said:0.020645805549081117 :0.6327628182157913 +and:0.2545812191613288 the:0.0671397214278155 of:0.057955154370859414 to:0.05142286154166375 :0.5689010434983325 +it:0.38451376342626575 country:0.3834775186885654 he:0.03398328203083996 He:0.022279979476514073 :0.1757454563778148 +they:0.5277282314609506 there:0.18507828271786608 and:0.10406479533154443 we:0.09041716519398026 :0.09271152529565871 +and:0.24454046445770042 by:0.061009344937933675 country,:0.05569838290474348 away,:0.03367939806597736 :0.6050724096336451 +a:0.6002899889784946 the:0.0574525547478853 was:0.03485473361277124 of:0.02921909379980863 :0.2781836288610401 +that:0.24906774543957738 and:0.15370353736985068 when:0.13669904574905728 said:0.11808773425211297 :0.34244193718940186 +corner:0.961900306037968 T.:0.0004920449590566608 and:0.00024082866799813443 line:0.0001763082156196653 :0.03719051211935756 +Third:0.5704794461466405 Second:0.06157097512168656 West:0.05763056314325069 Arthur:0.04126959665308451 :0.26904941893533785 +the:0.48380392028629826 a:0.0987829515306484 he:0.07097414619161281 such:0.06651704751801327 :0.27992193447342717 +taken:0.7991860549856199 given:0.02538870315888946 made:0.019855210665163433 submitted:0.012700866070223055 :0.142869165120104 +water:0.13396004948807413 trust:0.06550562271022456 matter:0.04542636973913659 terms:0.045212313083060875 :0.7098956449795037 +or:0.21141342526427206 tion:0.16173586764156184 and:0.12011081735796153 on:0.027405596329132177 :0.47933429340707234 +the:0.47135702018269154 a:0.052868486029214436 The:0.04756550968235799 to:0.018638607576221416 :0.4095703765295145 +make:0.9040728443872247 enter:0.04794140272260763 visit:0.012165908644965188 cause:0.01015870516031974 :0.02566113908488281 +of:0.17515436856938543 and:0.07944416135381246 to:0.031386974342267865 the:0.02962073099994309 :0.6843937647345911 +A:0.34875783081578204 The:0.32999431199295814 a:0.1039630232883954 the:0.10296929691753004 :0.11431553698533428 +to:0.9981937763289418 lo:0.0004921591402685066 will:0.000477172490113699 shall:0.00045380404914647826 :0.0003830879915293806 +the:0.8339404593620436 her:0.049794016675554185 its:0.04061887735119544 other:0.03460956818672617 :0.04103707842448066 +in:0.653992162157434 the:0.19002587881348007 In:0.08936535000815604 a:0.01953995936491936 :0.04707664965601045 +they:0.7229832874425873 here:0.09468869299114929 and:0.04499072698010281 it:0.02686640729413748 :0.11047088529202306 +of:0.15105967929934536 and:0.11444059822799225 gun:0.036357310432014164 was:0.028068322361973312 :0.6700740896786749 +of:0.5310487153202423 to:0.06664325836487119 and:0.03223934588219522 that:0.014204681975678765 :0.35586399845701255 +year:0.19010304241855558 of:0.18191971611569793 and:0.05329012056421045 tion:0.03718286679679219 :0.5375042541047439 +of:0.09035235607734679 and:0.07987098391471971 the:0.07507444376615427 to:0.03280748853043819 :0.7218947277113411 +larger:0.43768934761404776 command:0.09599586153602548 bo:0.058394148027651784 be:0.04550284523299758 :0.3624177975892772 +full:0.5785272232730062 the:0.14107912863761046 final:0.10392577234373578 a:0.10261894552545914 :0.07384893022018833 +was:0.5098323084203961 The:0.16656284319515186 when:0.10906485671916728 had:0.05870895880488444 :0.1558310328604004 +the:0.5247377646250622 that:0.14251842604045098 his:0.1300857652884778 a:0.09037258215089185 :0.11228546189511719 +and:0.1413425047183207 P.:0.11306776774933851 ?:0.07215652705387642 C.:0.0616333719888323 :0.6117998284896321 +t:0.5797857110641966 be:0.013460746321725567 of:0.005450711423918935 l:0.005441100499847746 :0.395861730690311 +the:0.17439567747190773 possible:0.08745313895821397 first:0.0701005609956445 any:0.039167742515791484 :0.6288828800584424 +law:0.33706308904533366 bill:0.10971963611871823 good:0.04999977077633437 little:0.029805836077660956 :0.4734116679819529 +war,:0.8506684042218944 year:0.003775447781384668 day:0.0036513431875358736 third:0.002786750523466016 :0.13911805428571897 +tract:0.0017079472209145772 test:0.0003905411780436117 brought:0.00016505363864400676 the:0.00013817981479320976 :0.9975982781476046 +from:0.7943211624142071 the:0.033318512219014475 a:0.02432500695068787 From:0.015676758893410907 :0.13235855952267972 +has:0.34613595189504137 and:0.11905225788463479 is:0.08186270431467971 Henry:0.06081917976138353 :0.3921299061442607 +be:0.06298630186574536 come:0.010029099466989622 appear:0.009596826545627041 pass:0.008508320819111674 :0.9088794513025265 +served:0.28902432946011103 scribed:0.02035195763273469 and:0.015319945090581287 sent:0.01131347281150714 :0.6639902950050658 +places:0.0002687790297334656 place:6.108404551060814e-05 roads:5.9148824525278915e-05 lands:4.0933552091171034e-05 :0.9995700545481395 +be:0.995106663796294 bo:0.0030594879008386585 he:0.0005584976719653958 lie:0.00016925831567572692 :0.0011060923152261311 +and:0.202613061854669 has:0.12312780530752594 to:0.07706552474232839 It:0.07555988114520712 :0.5216337269502694 +and:0.43908645465287893 to:0.18377477604625161 with:0.12461081953270746 upon:0.1114265647408193 :0.14110138502734274 +of:0.10960548682398875 and:0.08918696588202656 the:0.05237722788327689 to:0.03345445455579216 :0.7153758648549157 +for:0.21966670836020732 in:0.20721859526937522 on:0.16618228158969223 of:0.1595631685143391 :0.2473692462663861 +work,:0.07351889657305996 cause,:0.031709983862563816 willing:0.003542313595697535 way,:0.002274112819160952 :0.8889546931495179 +for:0.3760553879133617 no:0.14978845996431922 No:0.13742718466855425 If:0.09595947219046032 :0.24076949526330454 +woman:0.48608602806006396 time:0.22362229378443824 ono:0.021789790235006618 girl:0.017978543138961595 :0.25052334478152966 +place:0.23908392925896027 time:0.16702353285827579 is:0.040824380964899334 moment:0.029576065466372353 :0.5234920914514922 +for:7.197157951854897e-05 the:6.765409921929853e-05 «:4.4314522831632334e-05 Company:3.579098017331255e-05 :0.9997802688182575 +necessity:0.03868055943488117 date:0.03750343099925226 time:0.029113968294158354 use:0.0178091286012535 :0.8768929126704547 +will:0.3236169988442188 is:0.3171302431608616 waa:0.17331037490497672 was:0.13166430906844503 :0.05427807402149784 +as:0.8831834078304099 an:0.060916908739598596 after:0.010354274324520536 ns:0.006907316957854974 :0.03863809214761599 +County,:0.4938037182433952 of:0.21362375975741912 county,:0.10905531441592271 county.:0.07153690928793847 :0.11198029829532448 +ns:0.24744615775678197 to:0.1504756989175167 will:0.14257037924060662 should:0.11028198177579622 :0.3492257823092985 +tax:0.11214745813840452 time:0.05681137375000284 man:0.04972072712997087 woman:0.03844693458093331 :0.7428735064006885 +district:0.0978961952373766 the:0.0661151298534849 supreme:0.0411128018338376 ty:0.03063383152032041 :0.7642420415549805 +who:0.18424036829513601 events:0.1414046968100067 of:0.09349925648427017 in:0.018462483936475548 :0.5623931944741118 +and:0.1811435894304423 said:0.04617971725493485 says:0.027901646619976683 so:0.02686808415715045 :0.7179069625374959 +just:0.3228256168934212 broad:0.13823751034707973 large:0.0948652850987143 fair:0.06459220698672918 :0.37947938067405546 +dent:0.032906154873878254 selling:0.019139011831817782 return:0.017833567910623415 ful:0.015746376801494287 :0.9143748885821862 +streets,:0.3777006524707441 men,:0.08445143982896644 persons:0.05773825473345507 that:0.017089805955076517 :0.4630198470117578 +as:0.19581679632417526 and:0.09021032847683731 out:0.03320584421608395 him:0.017245964946593983 :0.6635210660363094 +the:0.2674918259487243 a:0.03550369888729308 tbe:0.020717441611010474 tho:0.017969728614062045 :0.6583173049389099 +and:0.35332486479290537 covered:0.13808220514377045 who:0.12809674612146466 to:0.10172220447880527 :0.2787739794630542 +people:0.027363765969732775 clerk:0.02449482995561211 interests:0.01575009189958232 Council:0.01569241325346054 :0.9166988989216123 +they:0.8139134748786279 she:0.1582624654394981 be:0.01769356130783493 he:0.006694692658362607 ho:0.0034358057156764587 +so:0.4274774256872736 for:0.13031168779332267 in:0.12808953339434112 ao:0.047705691716542396 :0.2664156614085201 +by:0.5490206370664118 to:0.2675422665034901 on:0.08013021975001745 across:0.05420521916735313 :0.04910165751272761 +knowledge:0.1983559210015255 matter:0.09259068525749835 one:0.05578336175232365 means:0.02075142181668788 :0.6325186101719644 +or:0.8267430958415959 for:0.07037031732291428 and:0.06291633729842162 the:0.014587840835238107 :0.025382408701830284 +of:0.36026342229950337 in:0.2112495599386566 to:0.12791362113572252 and:0.10129294702624253 :0.199280449599875 +and:0.13071978439376655 the:0.10597569514083639 of:0.09493902939868742 to:0.0666307064949114 :0.6017347845717983 +could:0.45730311796715645 must:0.3106746154720843 would:0.06004510697897482 will:0.048938183970682954 :0.12303897561110151 +very:0.10649109865943862 complete:0.05580616095887212 earnest:0.04747306159764839 telling:0.04742331949668891 :0.742806359287352 +the:0.6751371963958175 said:0.08703285563638641 tbe:0.02047175674989239 tho:0.02031980548600164 :0.197038385731902 +of:0.6089895543992674 and:0.07993885314306357 with:0.03738825232744093 or:0.03650203962335062 :0.23718130050687755 +to:0.6333244633280241 would:0.14947879508564557 and:0.10507377963250004 Wo:0.06783303198221824 :0.04428992997161202 +God:0.4913691421367639 Smith:0.30100824924510355 what:0.11305520875215644 it:0.03614029864225443 :0.05842710122372148 +the:0.21009240346720276 to:0.036527300728346826 a:0.03528623497792279 its:0.0238929199308238 :0.6942011408957038 +and:0.09628221301958194 him:0.07257138568352973 them:0.05764975103329859 it:0.037501372674790395 :0.7359952775887993 +his:0.670285089766662 family:0.061256101545436065 one:0.02063548726492595 other:0.013548488010938851 :0.23427483341203714 +P:0.06121274314209957 B.:0.029877821663085568 N:0.023543001280197373 C.:0.0144787922475665 :0.8708876416670512 +Hut:0.21802468283369647 and:0.2136268948473687 business:0.1808406497473056 But:0.0981896775297594 :0.2893180950418699 +and:0.2799072919547949 the:0.2741974826801188 The:0.09969452350093247 of:0.024796103722018955 :0.3214045981421349 +and:0.1335699287908043 the:0.08092605730871813 of:0.07704747536168913 to:0.03582761713542092 :0.6726289214033675 +course:0.13423963192222915 this:0.03897447311669513 which:0.030678667113612258 education:0.020776561776858434 :0.7753306660706051 +who:0.44145179302098475 people:0.05628856192508995 Democrats:0.027776547032263975 They:0.02194303251025827 :0.45254006551140297 +of:0.21964775492293814 and:0.18585396157707854 the:0.08483338085065739 to:0.024558187258445916 :0.48510671539088007 +they:0.4224890210492829 he:0.26169180767913564 you:0.1642397919476924 it:0.045234633795926904 :0.10634474552796218 +It:0.11511054732995085 it:0.09977844548764034 and:0.09233938009140356 which:0.051720275720031475 :0.641051351370974 +and:0.3012936295852381 south:0.08268081646627957 owned:0.08147638690859645 accompanied:0.06796627734689746 :0.46658288969298845 +and:0.07297195853900516 west:0.07260657998381569 the:0.0697692277648544 of:0.049171282317962556 :0.7354809513943621 +day:0.11549543863857027 tion:0.022952084032500385 Court:0.021460671766769714 line:0.017024708181596255 :0.8230670973805633 +not:0.38700506915039423 me:0.10366194132566539 safe:0.06512262834465544 us:0.05884367377445146 :0.38536668740483343 +the:0.22974273112349092 her:0.17179231091296618 his:0.12147300163325385 and:0.07542286534017402 :0.40156909099011495 +and:0.22749139544653446 a:0.1754941172546874 the:0.16848604983567012 which:0.10235145337993314 :0.3261769840831749 +the:0.2552797701361813 a:0.09671782394997018 ac-:0.06880089632311968 con-:0.055968264137309175 :0.5232332454534196 +.:0.21930856832740198 v:0.16911388557226387 he:0.08998127393457907 been:0.06446939036339049 :0.45712688180236455 +He:0.21863689280383314 and:0.20260390236741294 but:0.15817243949624668 It:0.08908658456937858 :0.33150018076312865 +the:0.2229413133417271 to:0.1271545071882954 In:0.08084161034078975 with:0.06103025967597626 :0.5080323094532115 +attention:0.8133250438902349 wholly:0.026337045224594322 than:0.01322211794534012 time:0.010749177004230842 :0.1363666159355998 +of:0.4845430124860332 for:0.15231948171531887 in:0.06476631064115378 to:0.058818880073250514 :0.2395523150842436 +he:0.7953319943860008 she:0.016698460379179686 any:0.014707688426839656 I:0.013882092360148725 :0.15937976444783114 +likely:0.617802539466306 probably:0.056324508872818105 certainly:0.05582571645310849 naturally:0.011407010976603193 :0.2586402242311643 +and:0.20698774738052542 that:0.20317745834797193 but:0.15197661309816862 But:0.09835888846752341 :0.3394992927058105 +of:0.7955238537862551 on:0.09054408999847922 of,:0.0636213549650384 at:0.03291247777957181 to:0.01739822347065553 +one:0.30487300638797743 or:0.11434714093293524 some:0.09015591787945586 most:0.07360408223205449 :0.4170198525675771 +and:0.08370840629188953 of:0.06284970235053244 that:0.05961774684873851 by:0.03077069821433254 :0.7630534462945069 +the:0.943141425330538 said:0.02113078199139345 tho:0.01875100744808786 tiie:0.009282452194805684 :0.007694333035174825 +referred:0.27539099847836346 taken:0.12451414106030945 necessary:0.07386010022608627 proper:0.037939725644315546 :0.4882950345909252 +were:0.44874367861084635 had:0.14917886916514964 advanced:0.13803223200880343 began:0.11784789041747629 :0.14619732979772432 +the:0.2674456640222622 of:0.1912681711785939 and:0.13570196741755547 more:0.04292172755642412 :0.3626624698251643 +in:0.44887464448389736 of:0.23632927652406188 to:0.16307791996878931 for:0.0617326989364711 :0.08998546008678034 +execution:0.10909570138464728 condition:0.05876530088724699 raising:0.055172905935775805 making:0.044457190315150094 :0.7325089014771798 +and:0.2213302847161837 of:0.16781998115890245 in:0.10201184148324041 In:0.05168715954515654 :0.45715073309651677 +taken:0.262746390199331 ing:0.09175836953468598 take:0.08658707917154333 to:0.07126832822232415 :0.48763983287211543 +of:0.8215278272604393 day,:0.0969276693412641 in:0.028613421544893082 on:0.005606956076215561 :0.04732412577718788 +day.:0.054744585340648716 other.:0.02798469839413645 town.:0.023250964860248732 ground.:0.005565747994258899 :0.8884540034107072 +are:0.16504809156488326 and:0.11827547793335638 is:0.08941178731347865 were:0.07896202323067447 :0.5483026199576073 +and:0.11006485459201773 of:0.07674741384909586 the:0.060594038061742704 to:0.038250981240330474 :0.7143427122568132 +served:0.8079021676608954 found:0.05873503568239946 committed:0.04722003972803551 paid:0.029630283013170333 :0.056512473915499434 +the:0.2695364700279183 as:0.11423760219723934 and:0.09183107346637878 The:0.08716621256038173 :0.4372286417480818 +and:0.08853160469227501 of:0.07379950711994306 the:0.06431958701311466 or:0.04297250979448525 :0.7303767913801821 +to:0.22236514986420097 and:0.18802597938942064 per:0.12576897420678904 for:0.04319670510575412 :0.42064319143383533 +price:0.17017272119560653 Mayor:0.1322150547918768 value:0.08584773561865289 purpose:0.03577666584909991 :0.5759878225447638 +of:0.4596797195625543 is:0.10409967465312844 before:0.08623151232259665 and:0.06980004478017318 :0.2801890486815476 +paper:0.03964883782810285 light:0.035501664150633584 and:0.03525443830862003 steel:0.03193605815006661 :0.857659001562577 +proceedings:0.33699466011985 home:0.16734613818892238 liquor:0.1432474162179956 to:0.04982833165630813 :0.3025834538169238 +of:0.03481272114174737 ;:0.017379988014538342 and:0.015126688754494143 is:0.014467031848688278 :0.9182135702405319 +the:0.32406710168373515 a:0.04029168678058136 and:0.032178630094782765 her:0.030182793845760413 :0.5732797875951403 +It:0.18065745181698084 There:0.1356725603300585 it:0.09442219502991878 which:0.08943374259964287 :0.4998140502233989 +the:0.21038402931162112 and:0.12840764505032462 The:0.0585486869616493 a:0.05653471355379952 :0.5461249251226055 +a:0.2765329512128824 the:0.08805327536942516 not:0.08377879906448976 in:0.07389916353664852 :0.4777358108165542 +such:0.8772621486017477 said:0.07233399726584491 the:2.094089638815097e-06 a:8.749623272305697e-07 :0.05040088508044136 +of:0.9694494407215705 ot:0.009451065176860106 ol:0.007418993868323246 and:0.006696243264713464 :0.006984256968532723 +to:0.5630139690084972 down:0.08264271994254903 ahead:0.051304752715798735 on:0.050520940694333265 :0.25251761763882175 +made:0.17489604025858993 note:0.06656419993351353 year,:0.04020926202760159 and:0.03551805765506174 :0.6828124401252332 +two:0.49978276835962115 other:0.2588899468171344 in-:0.03814654870239451 one:0.019111827269467405 :0.18406890885138233 +the:0.1833667173576301 and:0.1390467484673516 of:0.11876821853282067 The:0.11355117872542762 :0.44526713691677 +to:0.11354066244429888 and:0.03693465857739879 have:0.01945549464352395 is:0.017658566310769508 :0.8124106180240089 +as:0.9347392239681194 with:0.017138188560900557 while:0.008627403823875703 for:0.007566660068093533 :0.031928523579010874 +of:0.19258362308742838 and:0.13357863155583455 the:0.05223346174366997 The:0.037653173563324246 :0.583951110049743 +the:0.4018561827848915 a:0.07651183282220406 his:0.041504720509344575 their:0.027873338542524537 :0.4522539253410355 +throughout:0.47287491539661825 to:0.28828219626944784 with:0.10705375395703563 In:0.07570809426615545 at:0.056081040110742816 +citizens:0.06256084037242417 cent:0.0295245740104264 vessels:0.016876103594487258 control:0.015778930766621145 :0.875259551256041 +the:0.506254402628644 this:0.07404624649495839 a:0.061968587370094246 these:0.023729699645157445 :0.334001063861146 +use:0.4036922548914306 application:0.15652425803322498 knowledge:0.02840741233171901 bonds:0.021692028883746828 :0.38968404585987865 +talk:0.08682972223125053 friends:0.06274036937236709 time:0.008501416819993089 weight:0.006542077800647259 :0.835386413775742 +and:0.6451248476758983 un-:0.12460665132369847 of:0.017800355846325396 is:0.0044576176340729535 :0.20801052752000496 +much:0.0613713279222755 many:0.04981392060119874 long:0.04044199240943984 to:0.019750101035592955 :0.8286226580314928 +government.:0.08942958180893995 man.:0.0452919690897314 world.:0.042252166814109655 way.:0.03747162844577157 :0.7855546538414475 +the:0.5855083866540292 his:0.057258118053399955 their:0.05150809792654216 your:0.04749417096174332 :0.2582312264042854 +ordinary:0.19337686338804136 years:0.19013284771679392 weeks:0.051486339512252 other:0.043296782960377124 :0.5217071664225357 +and:0.14296694548972055 the:0.08561697450736772 of:0.08112023971232592 to:0.04466999148161041 :0.6456258488089753 +the:0.29501750585979936 a:0.06867118655086454 my:0.04108391041023223 his:0.03466607135608929 :0.5605613258230147 +other:0.09352902583511848 of:0.09091591810966347 heavy:0.06471006401026466 small:0.04516626645853941 :0.705678725586414 +most:0.02500715541303921 the:0.019342033305573946 following:0.013586401685337986 same:0.013528835732243028 :0.9285355738638059 +an:0.13380361415357148 only:0.0343966644298461 practical:0.032952116744149024 natural:0.03223429246402582 :0.7666133122084076 +am:0.11059950707880227 was:0.1074151184434571 have:0.10174368000726136 had:0.0489117916399323 :0.631329902830547 +of:0.017982009945093327 and:0.01321569341852607 to:0.010983109985160562 it.:0.009860529204010595 :0.9479586574472093 +The:0.17008144420392393 the:0.10559515606982368 of:0.09734978289875412 and:0.08823378398884384 :0.5387398328386545 +and:0.3134281371067459 having:0.2872139038148825 of:0.19302160272161065 are:0.1069808531221652 the:0.0993555032345958 +head:0.05098247130556601 north:0.046079573483073163 door:0.044251378025568056 boat:0.04249363261098446 :0.8161929445748083 +is:0.6552718539242699 was:0.24029719621547874 it:0.027033619673868033 Is:0.025917058931737062 :0.05148027125464628 +the:0.28044971925192874 a:0.16455261271077531 this:0.1206784787649716 his:0.06509958249607993 :0.36921960677624444 +hand:0.40311597993486725 hour:0.21349947331572078 year:0.0779705321401273 hand,:0.026089595417670513 :0.27932441919161416 +shall:0.5802885192032758 will:0.18760654570744978 to:0.11012480153125126 may:0.07160628422933124 :0.050373849328691656 +have:0.24912509860835844 had:0.2144067386514652 which:0.17095909262406891 he:0.1049155929541421 :0.26059347716196535 +constant:0.08862267899657038 un:0.08550849771180159 every:0.061383965662333784 total:0.051107169667108716 :0.7133776879621856 +the:0.003625637320559637 ir:0.003076819889460951 political:0.0011221911859239805 nnd:0.0003475757555708343 :0.9918277758484847 +the:0.6458444372653122 tho:0.09215871119361485 a:0.0793166742132907 u:0.02574862862582084 :0.15693154870196163 +and:0.2698273875300194 but:0.09678360649570002 that:0.08720905601501533 as:0.0695106034774706 :0.4766693464817946 +office:0.9993838705276715 office,:0.00027215640208096934 coast:4.570213766020459e-06 morning:4.054180351078515e-06 :0.0003353486761304737 +the:0.9576508580367935 this:0.032915359044761214 its:0.004023852778220793 any:0.0029581621643088537 :0.0024517679759156925 +the:0.5313168504848843 a:0.05005914478487533 be:0.042347848710126874 tho:0.033858351803684156 :0.34241780421642903 +in:0.48452454914870696 of:0.3224020284431811 which:0.07613994857632916 and:0.06521293744498313 was:0.0517205363867996 +the:0.2706913550635012 and:0.18149034122824645 The:0.06749408704814887 or:0.06252068025283873 :0.41780353640726475 +his:0.39320886887892303 the:0.3317780962130929 their:0.1273961415501722 her:0.110309764535393 :0.03730712882241889 +or:0.23515743235471254 the:0.15721368921102585 to:0.0883692661502655 of:0.04767064768880454 :0.4715889645951915 +and:0.18066132653239397 ;:0.16227755294711527 but:0.15337972593218688 for:0.06950634977129887 :0.43417504481700503 +at:0.4278993296792178 from:0.3377517234371702 near:0.08497063652387928 to:0.07276473996962401 :0.0766135703901087 +the:0.28005030111452145 a:0.12778161444421782 its:0.039600783242711456 good:0.03389558163636209 :0.5186717195621873 +ten:0.3598933296895496 eight:0.3471425621766995 six:0.14198862778984175 five:0.08638844980467908 nine:0.06458703053922994 +that:0.9938862689156839 for:0.0021845776297762126 which:0.0013880644067318705 to:0.000666509485413755 :0.0018745795623942017 +been:0.05312535637868886 and:0.04160616572532777 the:0.023191840525229147 of:0.018329662891012465 :0.8637469744797418 +.:0.8460008335632966 .,:0.06899049955800775 ,:0.004117281691241415 and:0.0023924449637045377 :0.07849894022374976 +com-:0.5408167841522151 com­:0.07649820016201264 the:0.008734365639306144 little:0.006126456150750721 :0.3678241938957153 +put:0.15939003488243353 all:0.14762368363006959 had:0.08786290887525586 have:0.07981397906320424 :0.5253093935490366 +and:0.09289094130394711 of:0.07972424900925228 the:0.06672537847722361 to:0.03271779909049193 :0.7279416321190851 +they:0.1232040705184359 one:0.11542410278669833 he:0.07825302967227829 we:0.06407209501276896 :0.6190467020098185 +of:0.5224552889437978 a:0.23138946353387077 in:0.13414355448576196 or:0.05939600235013297 :0.05261569068643645 +and:0.09675573868079947 the:0.046723976965618495 using:0.046169281212236436 in:0.03234598811490833 :0.7780050150264373 +it:0.3332490480871399 was:0.18957884934966296 .:0.128615273779452 a:0.10144428101171704 :0.24711254777202799 +of:0.01543969417641294 than:0.008214575068519017 considered:0.006568774314352278 sent:0.006440292578892128 :0.9633366638618236 +the:0.3728140594437344 him:0.23872785040121983 Mrs.:0.10438848186349649 their:0.06525488743239889 :0.21881472085915035 +before:0.5182701460781061 on:0.04612219891776248 to:0.03738791971806413 near:0.027716087380214714 :0.3705036479058526 +of:0.8555498278930129 ot:0.10360968285039746 ol:0.03651804789487582 and:0.002252724959253394 oi:0.0020697164024605485 +in:0.2458789490465996 of:0.14860575174720564 to:0.13449323035772742 on:0.10885802289825058 :0.3621640459502166 +political:0.1912758177245658 domestic:0.05212604012507878 commercial:0.03764099376703099 financial:0.031432770644022404 :0.6875243777393022 +finally:0.5067799362019445 and:0.07750296318024208 was:0.07442240964940391 tion:0.06501056137285602 :0.2762841295955534 +tne:0.25516402560190343 the:0.2528659351809389 to:0.09865951836280003 of:0.07291754657766289 :0.32039297427669466 +of:0.6100852508237731 and:0.0860315161021903 to:0.06733830977986291 in:0.05316539944157283 :0.18337952385260092 +line:0.9995299804493782 was:2.737457684590748e-05 of:2.520287870642311e-05 being:5.805688597815508e-06 :0.000411636406471626 +of:0.20857640421713522 and:0.1389981301747865 in:0.10529673328995998 to:0.10452447955754739 :0.44260425276057097 +found:0.20167734944794763 were:0.11528452612692743 wear:0.11181968995109283 own:0.033556239570046824 :0.5376621949039854 +ar-:0.0318168252536939 own:0.02902788568235734 t:0.024543290485031982 long:0.015113071754886784 :0.89949892682403 +that:0.4608455111666608 But:0.1098961301905872 and:0.10759443844198877 think:0.06408891805199408 :0.25757500214876916 +and:0.30602135546057296 to:0.13821375241538686 together:0.1202300308705293 in:0.11126098350141239 :0.3242738777520985 +will:0.48999462424878426 to:0.3433253526187374 should:0.1051529971000922 has:0.010643689062211404 :0.050883336970174636 +of:0.35516339390631546 to:0.17082052229722022 in:0.14817602272369965 and:0.13179760775547428 :0.19404245331729042 +made.:0.02101228964650852 Section:0.019963111803036605 in:0.009575591368385771 Sec.:0.007937153329644253 :0.941511853852425 +and:0.015102376030293069 corn:0.005378372108919797 land:0.004750910712567943 to:0.004643592317338892 :0.9701247488308803 +and:0.006172921431608044 away:0.0034837918043973937 case,:0.0029609860455687845 man:0.0024452525751912455 :0.9849370481432344 +one:0.41865373906587394 seven:0.16121169126390958 j:0.12418306808827066 1:0.057030387744793055 :0.23892111383715267 +and:0.39762723216379803 even:0.13634259405872917 and,:0.0819771610906784 but:0.06610342196946899 :0.31794959071732537 +large:0.41959824681085495 limited:0.17481610136819806 great:0.13143535148997765 certain:0.13081418110920073 :0.14333611922176856 +one:0.04932890569020872 out:0.03341925810664759 tion:0.030543238045248063 and:0.028036940555355227 :0.8586716576025403 +and:0.08881938497892446 at:0.05738941457458027 or:0.044255342436668045 with:0.04417199596521541 :0.7653638620446118 +the:0.4959152005713216 that:0.3086072526266348 of:0.04728711212627419 in:0.04303610255950931 :0.10515433211626002 +but:0.377901464739292 is:0.09980929422744922 was:0.0969352912936384 however,:0.06761257453629682 :0.3577413752033236 +a:0.18660422822371886 any:0.1810281613615551 other:0.16606945718134378 the:0.12100121906815622 :0.345296934165226 +be:0.9405778897679052 lie:0.011111748542711816 nn:0.007281565512724441 bo:0.005988626450164357 :0.0350401697264942 +the:0.44007752893883256 fact,:0.10578028400609565 this:0.04842012597166652 a:0.04606794632355413 :0.3596541147598511 +he:0.4888996141947848 I:0.20930298280128026 she:0.12943260666697126 and:0.11894152418057212 we:0.05342327215639163 +to:0.17519093253276713 and:0.0830539192534166 the:0.03300972954568097 of:0.028202441120292875 :0.6805429775478424 +the:0.622634080734757 Mr.:0.1007638842091847 his:0.07843879431291238 a:0.026917382988646387 :0.17124585775449944 +the:0.9440342030106486 th:0.028484849401674225 tho:0.023302579000052465 their:0.0010737182019823854 :0.0031046503856424442 +was:0.14432137204966017 kept:0.11770245603115137 is:0.10405735593475146 as:0.060055959201213704 :0.5738628567832234 +Southern:0.036826260020393076 public:0.02953544933540154 purpose:0.023674750365969704 young:0.02141990609045834 :0.8885436341877774 +and:0.003426476451851283 of:0.0031269627827809118 Mrs.:0.0030617046474146624 the:0.002728207128807533 :0.9876566489891456 +the:0.12352647376596826 its:0.08199123735946753 a:0.022560314046275304 further:0.01848963224798537 :0.7534323425803036 +1:0.29343302191226467 with:0.2401353056007292 I:0.1071277886919668 than:0.07855669204892045 :0.28074719174611895 +passage:0.047954374780404214 majority:0.022932261523709044 Secretary:0.021592099630325667 result:0.01583717339393418 :0.891684090671627 +at:0.2767609614885297 not:0.1982863252830435 under:0.10420979547566142 already:0.0766953291241857 :0.3440475886285798 +in:0.7759006705201023 the:0.21796289088119308 their:0.0034583956634716513 In:0.001844002478474447 :0.0008340404567585387 +of:0.4545394753804231 in:0.21351070049094883 from:0.11671531685310647 to:0.06041768491787211 :0.15481682235764935 +and:0.11474719150231655 of:0.0912527384274352 Miss:0.06132280256471732 the:0.05644765633639674 :0.676229611169134 +in:0.13502451973576463 the:0.11006851620549525 The:0.05366720339357392 and:0.04998442033732975 :0.6512553403278365 +of:0.6496771097903241 for:0.13614123128007383 and:0.06074987996770979 the:0.04366866398377359 :0.10976311497811889 +They:0.2925675439399624 they:0.13411768486032125 that:0.051198144600707096 which:0.04710114204680769 :0.4750154845522016 +it:0.9189402056253202 we:0.04207994095800338 are:0.0224534044818717 the:0.007519282668125399 :0.009007166266679223 +next:0.48382753170138054 plan:0.2143978650840797 new:0.03792390591459931 present:0.01359157624123312 :0.25025912105870735 +light:0.041141505763814284 young:0.03924574050865281 thin:0.020937662454905553 large:0.020789792042304852 :0.8778852992303225 +visit:0.461202450327309 trip:0.0787509591126345 long:0.07401408403523753 call:0.021878153397307146 :0.36415435312751204 +the:0.5200390039243701 great:0.09260468384970497 a:0.0821653665536025 an:0.023122902127123184 :0.2820680435451993 +the:0.21080633164000617 of:0.13373864752313044 in:0.1285238314606184 himself.:0.09349465736473318 :0.4334365320115118 +the:0.15816604468471046 and:0.11206351958547607 est:0.01270766721690971 acres:0.012248265521154093 :0.7048145029917499 +and:0.033964747321977795 from:0.013729686365531117 to:0.013299653708041531 of:0.009294434969304927 :0.9297114776351446 +Block:0.417077160458296 1:0.05037830102774457 and:0.0362732230929583 2:0.02832261273682294 :0.4679487026841781 +cash,:0.19299874205937076 of:0.05577158906951329 and:0.022341209726000302 the:0.017286475828705974 :0.7116019833164097 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +of:0.09787029040628793 in:0.07223981159950822 ex-:0.06169523517067924 d:0.049314859295130534 :0.7188798035283942 +for:0.9230750262201777 in:0.026625264049559467 fur:0.013570869481691256 most:0.010481414191906055 :0.02624742605666551 +work:0.33187008339976365 be:0.080795914079212 have:0.02449965715644661 the:0.02416396589191588 :0.5386703794726618 +in:0.33740266665967883 with:0.12258604310609185 of:0.10692159959202807 on:0.10174557333208979 :0.33134411731011143 +to:0.27064503541556123 that:0.15455933463964977 him.:0.07937808291977921 as:0.05863139871277271 :0.43678614831223694 +the:0.31435890489431784 and:0.11029079977879881 of:0.05349860270710922 The:0.04593752683906594 :0.4759141657807083 +and:0.1763584608718519 will,:0.14739484509990564 is:0.09954870611072893 acted:0.06731727805722675 :0.5093807098602868 +of:0.19462953810684785 and:0.12095011603492732 the:0.07604111091228896 The:0.07180202290724137 :0.5365772120386945 +it:0.5143675942578313 there:0.1319946962348811 he:0.1225321963018477 this:0.07859058733642266 :0.15251492586901721 +and:0.13749116249008705 the:0.049638939145636406 of:0.042088958635268264 to:0.024526720807734128 :0.7462542189212743 +to:0.2005338192594396 the:0.16871119940578233 will:0.14276241487825658 a:0.05320988446928896 :0.4347826819872325 +1,:0.23469333717775784 2,:0.010477577601109357 and:0.004199317275897414 the:0.003997380032928728 :0.7466323879123065 +a:0.33330578026532764 the:0.15041478348371384 tho:0.09541458386936422 to:0.08487633234729747 :0.33598852003429697 +E.:0.13598586031589388 W.:0.09831482368252151 and:0.07370081290829388 was:0.05029505518568816 :0.6417034479076025 +law.:0.06494035405806209 thing:0.02978775066018508 crime:0.029664673267542987 year.:0.01364430321196669 :0.8619629188022431 +By:0.9233531441954149 for:0.027776450752658065 the:0.026378782197941306 by:0.015136121484814708 and:0.007355501369170985 +been:0.2776277977516999 to:0.15048497440380634 im-:0.13168287395022388 her:0.09438891791119028 :0.3458154359830797 +by:0.7457804888325754 of:0.10246093953833978 beyond:0.08575503178074093 that:0.040691255770060476 to:0.025312284078283533 +get:0.1413636103057548 be:0.14065176974368593 make:0.1040612656863643 have:0.08881389409278999 :0.525109460171405 +has:0.6631208999871833 were:0.0288338313017313 was:0.02814069913691825 is:0.012184765877037903 :0.26771980369712933 +schools:0.09436725212526353 road,:0.0664212364915621 authority:0.016739713024056264 hearing:0.011384476845240885 :0.8110873215138773 +the:0.49032565610505696 his:0.06279362777354924 their:0.06241167107331053 our:0.05910757643719022 :0.3253614686108931 +to:0.46416237716693093 they:0.3094773916523375 now:0.14080959650361072 I:0.046543631592915684 we:0.039007003084205155 +commercial:0.012712993626917657 commerce:0.009897858323355296 money:0.009737458536689803 and:0.008517331754163937 :0.9591343577588731 +work:0.067273591323067 purpose:0.04653700965493808 idea:0.035279296073243455 necessity:0.025374386230108736 :0.8255357167186427 +that:0.3677494125580594 to:0.22505553014229834 as:0.20095674775978997 throughout:0.1080770076952685 in:0.09816130184458388 +the:0.9634391943475888 its:0.017566846516522044 tho:0.01161674878958715 a:0.005187868932197761 :0.0021893414141042093 +by:0.5771364345201342 in:0.22240172386973994 for:0.12287254740921481 after:0.04155434378384443 as:0.036034950417066565 +the:0.16124395834326682 and:0.13097428753883433 of:0.13088523731383783 The:0.08991795481224649 :0.48697856199181455 +young:0.2443989444888602 the:0.1915143467510205 old:0.10321324944331044 very:0.056477658466324035 :0.40439580085048504 +the:0.23697323286621355 The:0.1327275897591718 of:0.053555327471757605 and:0.04443359021005615 :0.532310259692801 +been:0.5569905769684835 short:0.04814269913737993 the:0.03012911000702845 r:0.0240893937944114 :0.34064822009269663 +to:0.02691574349267458 .:0.01884022797896299 of:0.01622943362822428 and:0.013042250695284455 :0.9249723442048537 +w:0.656094264381092 of:0.03987865179831748 .:0.03841933450516158 contained:0.018131582152710074 :0.24747616716271892 +for:0.9757727420475861 at:0.016606160431724356 to:0.0015680803191552082 upon:0.0009665144951299562 :0.00508650270640439 +of:0.10970625880120764 ill:0.04836325761593657 was:0.026529317514944577 do:0.02608092360849995 :0.7893202424594111 +the:0.9180163969720295 tho:0.08094517305036927 tlie:0.0004360166452130063 our:0.00016522744039103172 :0.00043718589199731486 +It:0.19026067970393487 it:0.16188219026432962 he:0.07638015804045821 and:0.0722243096526249 :0.4992526623386523 +will:0.06446687644400194 is:0.048303182772577856 and:0.03623397341125154 County:0.016828420370542108 :0.8341675470016265 +of:0.5879217508334588 and:0.15837691950405539 that:0.059975977996822714 in:0.037259255060827834 :0.15646609660483515 +month:0.08605057043717489 other:0.08399088953727003 of:0.07234480440889653 aud:0.05512327524386622 :0.7024904603727924 +that:0.25176224605642417 and:0.17055991051476635 And:0.10687222309758275 If:0.08271891382568572 :0.38808670650554095 +life.:0.0053943390395833355 man.:0.0011746797414274649 and:0.0009168235333452173 tion.:0.0004261162142123811 :0.9920880414714317 +follows,:0.6749748751199856 the:0.0664779169591602 a:0.026863543261523917 to:0.017578833342128158 :0.21410483131720226 +tion:0.16599104204951304 equal:0.10259944463279409 similar:0.09892481067910347 ence:0.07087150464967165 :0.5616131979889178 +has:0.1309753373903431 the:0.08567296482988361 have:0.0765493279359886 and:0.07233932034704602 :0.6344630494967386 +done,:0.5683874134587473 known:0.15127659720147407 the:0.09524071113436583 not:0.004672431343452483 :0.18042284686196025 +and:0.12631853430780232 the:0.08140289086193687 of:0.06432313334506211 to:0.043183023229163245 :0.6847724182560355 +to:0.13957424290140324 the:0.09403072424686901 of:0.08504146759234346 ¬:0.0628256435267962 :0.618527921732588 +we:0.6233582343230111 the:0.046723509871006985 and:0.04605564537210264 of:0.04247792521254629 :0.24138468522133302 +make:0.20121252812992002 expect:0.14897593219571847 be:0.092466561987663 take:0.06868030889350188 :0.48866466879319653 +left:0.16871237653584184 It:0.08325820702825618 many:0.06488888800229742 increase:0.042944686291936554 :0.640195842141668 +and:0.1946202791676823 which:0.17989641418436508 In:0.15864982815111178 is:0.09904894474005466 :0.36778453375678605 +this:0.6838650641190062 a:0.15889782456746665 the:0.12008372260234343 in:0.02938767561177892 :0.0077657130994047766 +than:0.48643641123177805 protect:0.09931998743199234 serve:0.08061656112132824 be:0.07266605528866392 :0.26096098492623737 +which:0.35203543091207345 it:0.29913022291837854 he:0.14593849963033168 what:0.12049040839194868 there:0.0824054381472676 +it:0.20348919862214768 which:0.14899248667595932 the:0.09285127922128095 he:0.059798191341480886 :0.49486884413913107 +even:0.2554809523914162 back:0.2507158642530454 out:0.14564224754119073 again:0.03955017977002171 :0.3086107560443261 +men:0.12060467450832059 years:0.06502013614951234 prominent:0.035859431385748194 books:0.030310240261630213 :0.7482055176947887 +made:0.1063431580676742 paid:0.08484287531469373 called:0.0674493323426364 placed:0.06643068311379519 :0.6749339511612005 +and:0.2870186841522333 of:0.18782855549670852 on:0.0769769407195221 but:0.07644219083200506 :0.3717336287995309 +done:0.13113936269825777 taken:0.043487794522511586 considered:0.031672956349225866 elected:0.02612274752834564 :0.767577138901659 +question:0.35920971777802074 little:0.08084076191912079 place:0.03779183368727098 small:0.028627837847966974 :0.49352984876762057 +and:0.39416073285885755 from:0.14427809137326614 the:0.13320079442874755 by:0.13296391578282632 :0.19539646555630238 +in:0.4649205985542307 last:0.22000355933927382 In:0.1391113018923321 this:0.10581049742195323 and:0.0701540427922101 +and:0.08559858086444763 of:0.026104394294841578 down:0.022916090722068173 effect:0.020122102058828358 :0.8452588320598143 +on:0.32820549895709167 entered:0.23932677460441637 in:0.09075810780266387 opposite:0.07386469212288001 :0.26784492651294806 +of:0.921650801494892 or:0.01109537063479589 ot:0.0095732511171518 o:0.009179701675886859 :0.04850087507727333 +the:0.7947812584911117 tho:0.021082844109880653 The:0.011887539189600813 of:0.003844979800315894 :0.16840337840909098 +of:0.27354280950406085 and:0.11427094416095092 the:0.05660332272695109 to:0.027180247077394713 :0.5284026765306425 +of:0.10874372586369431 the:0.10608363821053783 and:0.10134825059651406 The:0.08274705566843796 :0.601077329660816 +be:0.311710353913887 the:0.17696249353709276 get:0.11214515947650994 to:0.07661188230114763 :0.32257011077136266 +time:0.04535427751196692 about:0.01807044780510471 interested:0.013517302328370083 interest:0.012492706751154882 :0.9105652656034033 +were:0.22587520015826223 stand:0.18495910515687383 got:0.1024883110017532 are:0.07039611498391796 :0.4162812686991929 +as:0.9270388846323079 aa:0.012814788302865844 ns:0.012009198538908092 us:0.0093311785714122 :0.03880594995450597 +in:0.27210733995573344 of:0.19618665067408872 and:0.18111435534905823 by:0.1497938310583471 :0.20079782296277265 +went:0.9245689890956661 by:0.015927722051093923 broke:0.014603248396843427 came:0.0035492771694490307 :0.0413507632869475 +it:0.5689700496688587 not:0.38797154582133786 hardly:0.01628712543793568 absolutely:0.013685561478998519 :0.013085717592869242 +members:0.577699980113953 men:0.2259242196943773 they:0.0351872477049737 all:0.018702353548590494 :0.14248619893810563 +the:0.5265565907342421 th:0.27211158119524703 a:0.15588504469926429 The:0.02857221973872976 :0.016874563632516926 +most:0.03172586795786295 the:0.019858014872092423 said:0.016080270262134686 same:0.012001994159233175 :0.9203338527486767 +knows:0.2851188578871301 or:0.1390535907175516 then,:0.1018302146805025 now:0.05721409349793552 :0.41678324321688026 +aro:0.29943947019995326 were:0.28192381208843237 are:0.16743157965141958 have:0.0858058881862774 :0.16539924987391733 +aged:0.04581995913436701 her,:0.034683048622208196 sweet:0.027907653912570156 them,:0.025563273711789652 :0.8660260646190652 +to:0.3206182536289473 of:0.24800263825375057 and:0.139390582853883 in:0.11826530828656806 :0.17372321697685106 +back:0.4961624868909066 along:0.17374660309441298 home:0.07284424130691586 down:0.07037817706996699 :0.18686849163779756 +whole:0.08948380170518173 fire:0.07801430123031686 day:0.07562584845181312 year:0.030380417861351802 :0.7264956307513364 +State:0.39433208425215 Bank:0.20177110118792188 and:0.008243078237081106 for:0.006216243977334885 :0.38943749234551206 +not:0.6295520718090016 have:0.13709081730833525 apply:0.06031566059989093 try:0.04615539549452121 :0.1268860547882509 +being:0.12311759054121862 saying:0.10334503314886878 hardly:0.05840225435231402 paying:0.04656224824838693 :0.6685728737092117 +mental:0.46333172260128935 political:0.050354158781873076 whole:0.04201760072799098 life:0.006365440776355946 :0.43793107711249063 +to:0.36881087663937284 not:0.342701135831772 shall:0.13423771074500115 sales:0.021184373513570606 :0.13306590327028345 +will:0.05915074688700749 has:0.04531079679504956 who:0.0396521150103906 would:0.03937810074830164 :0.8165082405592506 +of:0.2135025594086321 and:0.11290780747392677 the:0.042649406857384026 to:0.03295778332920113 :0.5979824429308558 +tion.:0.992936445689082 of:4.937792893485236e-05 country.:4.430052673259365e-05 surface:2.6376917741554463e-05 :0.0069434989375090714 +these:0.29333976860733957 the:0.17310853529848763 of:0.13914335961296273 course,:0.0930642360037148 :0.30134410047749527 +up:0.9177031381459898 complete:0.026696933786871883 over:0.0184861229271632 in:0.008610906049193828 :0.028502899090781054 +considered:0.6915670858320395 than:0.1680873103869777 and:0.03338330992320627 even:0.03172774422128869 :0.07523454963648774 +you:0.5815333945342358 they:0.167574536237915 we:0.11426353920855169 yon:0.08561582060949212 :0.05101270940980521 +Some:0.06493004201791426 out:0.02448906689004606 can:0.024283341706488482 society:0.016570173730050756 :0.8697273756555005 +of:0.9346377196463798 to:0.026986718820360148 ot:0.013169766990757876 in:0.007951598834039465 :0.01725419570846286 +made:0.128306171855125 given:0.1102423366876088 owned:0.10230870008335835 provided:0.052765873109219444 :0.6063769182646885 +most:0.03100920507800873 the:0.017685151792315588 same:0.013883715166944924 said:0.012001019363451958 :0.9254209085992787 +with:0.4907532856724501 ol:0.2025398122724497 no:0.11053914216607354 the:0.10977693422344828 such:0.08639082566557849 +the:0.9456390066495881 tho:0.019333864812569036 tbe:0.004581776337834204 tiie:0.004261554108920075 :0.026183798091088503 +and:0.14769405313574294 a:0.13292279485224245 25:0.10358159273224968 11:0.07867218681513038 :0.5371293724646345 +that:0.2393293222714101 and:0.22719553888446495 which:0.04301349566539942 but:0.021056423602714244 :0.4694052195760112 +government:0.09523437007522412 fact:0.07957216759845327 the:0.0754975468649328 which:0.0693659194951161 :0.6803299959662737 +from:0.5072187130949136 in:0.47412727979020913 at:0.007628894364906231 In:0.006698089941905232 :0.004327022808065877 +a:0.19519667098371693 to:0.1697479820955166 with:0.06673587221577383 the:0.06335266022519342 :0.5049668144797992 +the:0.6396446640148961 a:0.15083197413347013 tho:0.09327788980355768 this:0.030974474864227462 :0.08527099718384855 +the:0.618730523199733 their:0.06046989327772038 its:0.04623965799135202 all:0.03748057754410694 :0.2370793479870876 +of:0.09703837053435276 and:0.09531844906900995 the:0.09041255172500617 to:0.05030574207874751 :0.6669248865928834 +place:0.3793701314369771 remain:0.04934476737355355 book:0.048421531735436237 way:0.03860637357006165 :0.4842571958839716 +and:0.09224264161848869 the:0.027047113427148897 many:0.018172016004131496 deal:0.013141369068172353 :0.8493968598820586 +give:0.3022939663248586 come:0.136187941248648 own:0.08863667778603337 go:0.07435736895330798 :0.3985240456871519 +money:0.1262766412759058 so:0.016700193455124752 liberal:0.01371629870188927 required:0.011959860984221872 :0.8313470055828583 +of:0.7472484491390362 in:0.052620458223025204 the:0.038152907624963005 and:0.01802224948165875 :0.14395593553131678 +not:0.48599936067508853 otherwise:0.16789178483611178 only:0.0733973775239455 probably:0.0679170750680349 :0.2047944018968191 +and:0.18261478067083498 of:0.07138961037832302 is:0.06699453935219461 the:0.06284496989566783 :0.6161560997029794 +and:0.12217621336426208 will,:0.04251355728392086 Brown,:0.035335310936839365 men:0.031176759477505332 :0.7687981589374725 +the:0.5647990545299811 a:0.10706592108474078 their:0.031983692489914776 this:0.02802221679316975 :0.26812911510219345 +such:0.33400435446551385 other:0.0779507806038533 person:0.06319164190496812 one:0.05807444821960971 :0.4667787748060551 +plan:0.09700254320299075 big:0.09487034524771025 the:0.06020497192922881 whole:0.02540498345787695 :0.7225171561621931 +first:0.2201085568301086 third:0.19013066464780504 second:0.1521657326945861 fourth:0.13542073340214814 :0.30217431242535214 +to:0.4366830101894205 was:0.1802628513171122 at:0.1092678416853208 the:0.10332009747647332 :0.17046619933167326 +It:0.6763201306976915 it:0.1660469316711124 which:0.052774732136141575 there:0.05210165996966986 :0.05275654552538461 +the:0.31878729892769947 a:0.11860280456928064 all:0.08867760389520382 in:0.08270256790556213 :0.39122972470225387 +front:0.15373700474195945 floor:0.13337985749090958 coast:0.03203988707205444 side:0.02761899489243664 :0.6532242558026398 +of:0.7279444224947953 above:0.0030523098644253104 and:0.0023418702713144525 all:0.0013525187816082077 :0.26530887858785673 +enemy:0.6412663109806579 river:0.028319254042369593 man:0.024046906685938577 village:0.009150453912023637 :0.2972170743790105 +trade:0.05196746702341547 more:0.0328690533056059 charge:0.024362385075301612 river:0.0198932380055343 :0.8709078565901428 +and:0.11178070727358431 the:0.08384733599113255 at:0.06646633768595409 a:0.06582547876624993 :0.672080140283079 +and:0.05345353459984161 those:0.03372635204458298 men:0.03299549308018815 the:0.02854034989561386 :0.8512842703797733 +of:0.05616585705380746 meant:0.05553302743231794 have:0.04561278076474054 had:0.041736510047991726 :0.8009518247011423 +and:0.13797591317359936 of:0.0954974367776903 to:0.08268942367520624 the:0.0816648556438951 :0.6021723707296088 +about:0.4987315469721022 of:0.09880648863363646 to:0.07068597040337164 that:0.05245309058948551 :0.27932290340140425 +the:0.35258012889249674 7:0.12232163986506518 my:0.09652683271327413 tho:0.04659999108249404 :0.38197140744667 +and:0.5928497506704494 street:0.02344642172930371 South:0.021473307348679194 &:0.019100502335170116 :0.34313001791639747 +premises:0.18544609883657975 lands:0.16745897526077427 mortgage:0.052117572191535455 will:0.0354238650548251 :0.5595534886562853 +week:0.13842136828967558 city:0.12464904100690327 time:0.09875263616313941 to:0.08803871698818637 :0.5501382375520955 +the:0.5295316939008098 this:0.3725834031621516 a:0.022720687639695557 that:0.01171436465154202 :0.06344985064580116 +and:0.45634828653066345 as:0.21616992304868976 but:0.18417137992953062 which:0.02921074203611699 :0.11409966845499918 +the:0.15636155451972444 a:0.048456398570315785 was:0.022666457646540954 kept:0.02233548980821961 :0.7501800994551991 +for:0.8975880602269143 us:0.01992988623294129 today:0.014065113966363335 to-day:0.006868307260126871 :0.061548632313654324 +tho:0.5032099832809525 the:0.366598106213212 a:0.062393029100235115 ihe:0.002621484872137681 :0.06517739653346286 +not:0.26584928705395344 be:0.17209521063026034 consent:0.06391917793663722 have:0.0341272275722372 :0.4640090968069119 +power:0.1192198071388015 sale:0.08648401815973727 bond:0.07627412832666688 action:0.04909515794754737 :0.6689268884272469 +husband:0.05925469835125032 work:0.03052738001743495 own:0.004905695244018872 or:0.0028588898001231777 :0.9024533365871726 +when:0.1683729091733743 ing:0.1385083473190715 May:0.08066352528273009 last:0.06219752146410348 :0.5502576967607207 +tariff:0.008499342693640582 ;:0.00647574580689318 act,:0.002222268435745317 ::0.0009781712136166568 :0.9818244718501042 +and:0.058666520466742415 N.:0.037149717233919424 tho:0.03702464190738862 to:0.030854160653959743 :0.8363049597379898 +question:0.23450045216890325 same:0.10834881181761793 opinion:0.055628777105940774 story:0.021748858108300302 :0.5797731007992377 +and:0.20034557129936237 of:0.1679425928085768 in:0.08684768870589622 to:0.057166007012285344 :0.4876981401738793 +did:0.30364484868701563 and:0.15778963580785688 all:0.06637930119975761 threw:0.009972878726387524 :0.46221333557898236 +one:0.21473582361922416 he:0.19095717407970378 it:0.07197750827159767 which:0.03439330176577228 :0.4879361922637021 +death:0.12038125365350937 conditions:0.07120285928748579 use:0.030266684904031775 place:0.019613524368670414 :0.7585356777863026 +no:0.7339237090914607 a:0.08140682669447752 great:0.07667663487861356 little:0.05435674033654672 good:0.05363608899890139 +the:0.20795739916794478 of:0.19963785618974897 and:0.15695793494705776 The:0.04535168369379702 :0.3900951260014515 +tion.:0.020898974883527693 has:0.014725588959268773 .:0.011939902073227949 way.:0.010056180641965427 :0.9423793534420101 +make:0.08163450573141731 all:0.038176245202427815 meet:0.03321356687053158 see:0.031469003335718594 :0.8155066788599048 +the:0.4065244851842184 his:0.05435284405734782 a:0.054001360053866375 which:0.030632245723385226 :0.45448906498118236 +bill:0.22373649035389956 law:0.08111259424771802 one,:0.07929525550262827 administration:0.07151244946720894 :0.5443432104285453 +to:0.4541728540496971 shall:0.2868288198924352 I:0.04264089776824269 and:0.029442760703585667 :0.1869146675860393 +animal:0.21659236883354957 steamer:0.05426227265302712 girls:0.016696628384019543 second:0.009968592343099592 :0.702480137786304 +and:0.4348878081223155 to:0.3105804498838927 should:0.06329669163113023 who:0.051194693193785244 :0.1400403571688763 +and:0.16572300677779106 of:0.09511673773456526 the:0.06967538716097521 to:0.042403106227992364 :0.6270817620986762 +the:0.7307391688972817 his:0.08293626071964345 said:0.06650393641860892 an:0.04937524682909206 :0.07044538713537382 +of:0.2770779439002631 in:0.2300138177130605 by:0.2154950265922204 on:0.13300454554209182 :0.1444086662523642 +the:0.06194220571591124 and:0.03275235892137499 The:0.026969006736739114 of:0.014132565825529905 :0.8642038628004449 +had:0.46677601603649926 has:0.41178650613164197 have:0.009409227220961866 lias:0.00820976208944496 :0.10381848852145197 +most:0.018369557658137237 same:0.016089392893030685 the:0.0136498285780756 of:0.009980452945863137 :0.9419107679248936 +not:0.21959150447678952 dry:0.05106730518460477 to:0.030220548565109393 very:0.023049668755211222 :0.6760709730182851 +was:0.17344083055527354 has:0.10140600174828557 began:0.07392052431663781 can:0.05744210755670901 :0.593790535823094 +to:0.47455634422546633 into:0.272233295761496 through:0.10199785008897543 on:0.09317224723929565 :0.058040262684766655 +to:0.18722076657993 of:0.14538530748362297 the:0.1123018326991275 and:0.0823342001656649 :0.4727578930716546 +of:0.17220586092290327 and:0.16368387091555717 to:0.15426196481321594 in:0.12849403447273738 :0.38135426887558627 +free:0.704488190020298 first:0.06877874412575342 natural:0.05159347961947993 the:0.05024745957464648 :0.12489212665982219 +no:0.685912118632219 the:0.06463694328787856 having:0.016727654090503082 in:0.014574391712811944 :0.21814889227658738 +a:0.21378266890302478 so:0.1842733303500947 the:0.13077818729525756 an:0.057654746016171224 :0.4135110674354517 +bo:0.5180568017020584 be:0.38090714235100387 lie:0.038610359037687336 he:0.014785272013138652 :0.04764042489611189 +did:0.22110411754051665 cut:0.2160224417539671 said:0.12069688590085628 showed:0.07569474043384956 :0.3664818143708105 +when:0.424707155958375 If:0.26506280050154896 and:0.13883014750792028 is:0.06555569956771849 :0.10584419646443743 +1st:0.5654504725892027 morning:0.03963980822063998 night:0.03465118143365336 first:0.025930209289999045 :0.33432832846650506 +the:0.41601282664375877 this:0.10342022981960819 his:0.05159533964391714 all:0.03899082633913987 :0.3899807775535759 +?:0.0751713559273872 men:0.03160984193782327 so.:0.013918064282414067 1:0.013649141697934982 :0.8656515961544404 +in:0.3403558878608481 and:0.321809694878535 being:0.0968419181699846 In:0.07848086119741553 :0.1625116378932167 +is:0.7414480173614325 was:0.038766043191179635 to:0.029333191632179532 Is:0.028724287648849413 :0.16172846016635886 +of:0.9747568011621269 cf:0.005511423411759906 ot:0.0054294867897091955 or:0.0029860448049407896 :0.011316243831463058 +in:0.11813028313893068 of:0.034542332743155456 for:0.00939465171476722 was:0.004991161686669816 :0.8329415707164768 +in:0.5442244191765124 fur:0.29499104498465284 In:0.08055190090026049 iu:0.04153778217541963 m:0.03869485276315468 +if:0.3228608809127902 the:0.2726481263983112 that:0.18834989298293323 whether:0.1263000179202507 :0.08984108178571468 +and:0.2760820474769522 that:0.1062162096034429 which:0.08082837860724906 but:0.06032036413030161 :0.4765530001820544 +whose:0.5507371665957559 their:0.22232055269651502 the:0.14582114576259056 his:0.06154720789567781 :0.01957392704946072 +office.:0.009243928611868433 It:0.005677052532761973 says::0.003261051022681143 ::0.0025476560636590096 :0.9792703117690293 +as:0.3265024368633126 they:0.3001500478439239 and:0.2805583003685339 up:0.022380407379354688 :0.07040880754487497 +law:0.302747104386087 eye:0.21568267859691156 payment:0.09842119973939634 process:0.06265704847477861 :0.3204919688028266 +the:0.48648559091594257 a:0.4392094975340121 all:0.03050915209004424 any:0.02498302550713406 is:0.018812733952867075 +both:0.43730609713271923 all:0.23733729240657248 of:0.14051731219228955 the:0.05655673293843083 :0.12828256532998786 +have:0.08754924179172865 are:0.06991163915898792 hope:0.05137611129447235 went:0.05119962516243751 :0.7399633825923734 +worn:0.18893817124600865 done:0.0720495755953519 reached:0.05173877647330887 made:0.05118328813034256 :0.636090188554988 +in:0.235204412973051 at:0.22895501546325223 on:0.06924039208834906 had:0.046447553060412504 :0.4201526264149352 +a:0.6571158190861315 the:0.17695400310540155 almost:0.1149315086924982 made:0.023926952877316235 :0.02707171623865259 +of:0.32105073863133615 and:0.08719065601337386 the:0.061327662983794 The:0.044039090914722905 :0.48639185145677316 +bushels:0.9939059419093869 pounds:0.0019145817189296051 feet:0.0005240140393977901 tons:0.0004175022314701509 :0.003237960100815529 +him,:0.06969520724508059 him:0.059169179189767045 Court:0.03530236093823247 the:0.032640598083946294 :0.8031926545429736 +tract:0.005203021035592737 office:0.0017538478434711467 test:0.000920497242354321 the:0.0006440875160861456 :0.9914785463624954 +he:0.0805069173745831 it:0.05427732456344667 they:0.043920062463321224 and:0.03342489798816709 :0.787870797610482 +crops:0.3968242013869658 plant:0.06704785691520763 they:0.022036775121209388 demands:0.016412631237226923 :0.49767853533939016 +To:0.7263710577810066 Where:0.14371483490038697 Hut:0.03479312849478202 Well,:0.03468473076686416 :0.06043624805696024 +the:0.6224391231784082 public:0.07619683955440683 a:0.05236240260522167 an:0.03172078646438639 :0.21728084819757706 +to:0.06306564721201674 and:0.06022039362019429 .,:0.05649312407497125 of:0.05588259427057727 :0.7643382408222403 +of:0.9974869871285263 in:0.0008427895748894749 a:0.0008240969838160886 with:0.0004425907731002758 :0.00040353553966767443 +to:0.30438444036304396 of:0.07343627976749825 when:0.0702591791557653 and:0.057366727062821386 :0.49455337365087115 +a:0.04980577032079785 to:0.03997664688494649 the:0.03979960965756146 moved:0.02873868402021419 :0.8416792891164799 +place:0.041480242903488736 city:0.021170094053472758 amount:0.018684697075721558 sum:0.015610197439394137 :0.9030547685279228 +that:0.11812311516072946 and:0.054617043824643316 England:0.03394383009493897 the:0.020990949311093604 :0.7723250616085946 +pay:0.8981707595969896 n:0.007375199960052212 see:0.007109868194129053 with:0.007033421690626819 :0.08031075055820225 +do:0.10180967786712762 effort:0.0321433356970607 meet:0.02526237823628778 look:0.02161144080212987 :0.819173167397394 +is:0.5453060446260526 was:0.3333402472952087 Is:0.10133774399122508 has:0.007041591260365364 :0.012974372827148258 +what:0.47816035274270935 and:0.2172462420773411 was:0.028044662951199232 He:0.024702669682692413 :0.2518460725460578 +of:0.12737130810817132 and:0.07624762533271545 to:0.03079984787119545 the:0.026170772386403703 :0.7394104463015141 +Hall:0.011469545634507186 II.:0.009826872031988487 he:0.004544787476159506 be:0.002177840826630646 :0.971980954030714 +make:0.31885560059809265 raise:0.10758028945900747 give:0.0939045461662879 render:0.06373449949108032 :0.4159250642855317 +made:0.06328390326238652 two:0.05177451428441231 en-:0.044308857389253546 no:0.03610791204994832 :0.8045248130139994 +fellow:0.4014462071700563 country:0.09753084509989574 8:0.02625879970389078 machine:0.016995896428085744 :0.45776825159807144 +of:0.569476147963692 at:0.049174309201848815 and:0.041785906570559674 con-:0.02893871520316786 :0.31062492106073164 +of:0.538129576345335 one:0.25526068670903784 some:0.07812406884926408 in:0.03918830512995505 :0.0892973629664081 +according:0.06965643029536231 as:0.06845792697218601 and:0.05440203460442168 them:0.02975436370497848 :0.7777292444230517 +former:0.06384624774951997 rich:0.044600664048787104 general:0.03630933220023991 most:0.02767949623604637 :0.8275642597654066 +and:0.22917338500795736 the:0.14593432890825545 to:0.14583154394390213 with:0.14297277367798913 :0.33608796846189604 +and:0.07022254918629073 of:0.0463803474933635 or:0.021526281920156112 was:0.0169248109293848 :0.8449460104708048 +to:0.0001685087304413905 the:5.5461562123007975e-05 of:4.1117056118802706e-05 its:1.802280765167647e-05 :0.9997168898436651 +the:0.3781262959850756 a:0.05839923620508857 his:0.026021541218664734 tho:0.022179291175637373 :0.5152736354155338 +which:0.5287445782293952 as:0.04953788997947085 that:0.02505503580283876 and:0.020836521792261656 :0.3758259741960337 +struck:0.6334372735407023 to:0.05220809077101827 with:0.004233000440869427 about:0.003883984867437806 :0.3062376503799722 +first:0.616256146156304 least:0.13356229902853006 new:0.07463930758699752 people:0.009238584611998439 :0.16630366261617005 +words,:0.08912472722473848 State:0.0598222959193938 as:0.05950259111640614 hand,:0.04698006399523808 :0.7445703217442234 +make:0.8967375926109691 prevent:0.022853401074542586 maintain:0.0064261514120402 all:0.0008786449118948729 :0.07310420999055325 +a:0.6768763061431814 the:0.14660416511866367 one:0.11313258844318552 another:0.0286859219147924 :0.03470101838017701 +sufficient:0.16584900370956301 and:0.061903814799814584 that:0.05785810514555632 as:0.02671972863789233 :0.6876693477071737 +first:0.873830901898637 form:0.007945235230240837 same:0.0030842995214832563 line:0.002328042499381128 :0.11281152085025782 +about:0.48879254003547185 over:0.16336200006157425 the:0.027836203694291475 least:0.02715781407337539 :0.2928514421352871 +ward:0.11476022685590158 saw:0.09519800634519734 read:0.05476258727512341 fight:0.05469996830325459 :0.6805792112205232 +and:0.2947345259872936 as:0.10748057833235919 that:0.0697421443967852 but:0.06402979365354772 :0.46401295763001443 +property:0.012167358065160826 V.:0.00899138002046539 and:0.007234110396163804 Johnson,:0.005149642034915739 :0.9664575094832941 +own:0.4454666630546466 little:0.05360858028286533 the:0.023366626827361858 his:0.0182508657503197 :0.45930726408480654 +orders:0.5036208284587733 kinds:0.17923734014228357 persons:0.03541913240403144 records:0.012882387340902936 :0.2688403116540088 +of:0.12138138129434883 that:0.102927809520609 to:0.10149587369916169 at:0.08595961889048509 :0.5882353165953955 +that:0.22343602697124523 in:0.15755539092230714 the:0.1521254998001982 a:0.13814654141495963 :0.32873654089128973 +value:0.0468473103142295 and:0.011578986507046854 difficulty:0.010680747641724326 to:0.005059053366221804 :0.9258339021707774 +the:0.4911017166186228 a:0.11858235228703007 an:0.024349327061828328 said:0.023475023744100123 :0.34249158028841864 +of:0.9818269923737827 to:0.006206807146082974 without:0.002648783019278622 in:0.002131005365267533 :0.007186412095588179 +of:0.3669090425344732 for:0.12033659972940856 more:0.11162561723873332 told:0.02712544399779539 :0.37400329649958963 +could:0.031057370163613582 now,:0.012408356101495774 was,:0.008064065617097353 turned:0.007933645069510938 :0.9405365630482824 +to:0.637570841111125 careful:0.08893948922475707 having:0.07098061560942666 that:0.04262644671784919 :0.1598826073368421 +followed:0.026176661007587473 accompanied:0.021527388467705993 bound:0.021025705448732487 made:0.015041632860136631 :0.9162286122158374 +in:0.42471382170415045 there:0.28016857270336604 of:0.11658359961634714 all:0.10208563350611018 :0.0764483724700263 +the:0.4492433794493768 our:0.12006760242143005 their:0.11176269407612344 Ihe:0.08055057963792428 :0.2383757444151452 +and:0.1445059186426028 of:0.10530897136889601 8:0.0751200687736132 Mr.:0.05090638741182508 :0.6241586538030629 +feet:0.009173600729870198 years:0.005470778853745942 pounds:0.004465273483407317 miles:0.0032680225566904496 :0.9776223243762862 +and:0.08275023759789442 enough:0.07509371571600552 on:0.0645482156186778 as:0.04607573842164904 :0.7315320926457731 +On:0.28223303876903616 upon:0.2576787250924384 on:0.18320596648462795 Upon:0.15129243991564018 :0.12558982973825733 +wind:0.08785447341711006 scene:0.07889057134222087 light:0.07145823797520655 cars:0.041216807375855376 :0.7205799098896072 +started:0.06939413057985948 son:0.034884396607195486 made:0.01840642075970006 on:0.012828309858628281 :0.8644867421946167 +work:0.9591513343442915 dinner:0.013738867212820123 wore:0.004005476592443443 sleep:0.0034328559897773593 :0.019671465860667623 +can:0.03993794384892093 well:0.028886151397588114 force:0.025576808327778075 that:0.021932665242170725 :0.883666431183542 +the:0.23770398226992454 being:0.21763774915567094 finding:0.057013392875594704 a:0.05335378999829899 :0.4342910857005109 +will:0.8089750211124319 no:0.07503476739044236 should:0.046432706807210046 would:0.03521932369235745 must:0.034338180997558185 +the:0.5802199117734277 their:0.069213953212412 this:0.05766493432358121 his:0.048374394880599 :0.24452680580997996 +of:0.20616126369374918 that:0.20324320420899153 shows:0.08264000414619435 against:0.07821845515442796 :0.4297370727966369 +and:0.059445330978602696 the:0.043627308084570625 of:0.03426867496938293 a:0.024460651719435567 :0.8381980342480081 +find:0.34639127932720803 get:0.2276102481645804 give:0.09781278191569853 see:0.0931050052400508 :0.2350806853524622 +upon:0.3432770062840637 with:0.12354427507903995 to:0.1108976116180929 on:0.1075102453470457 :0.3147708616717577 +the:0.738989549311447 tho:0.03735486358898627 a:0.02456152234636006 our:0.02287450555103796 :0.17621955920216864 +the:0.34862457870716934 a:0.08579842728623555 and:0.07924758501255627 The:0.0525017668388845 :0.4338276421551543 +the:0.17665789612833485 and:0.12828786995962088 -:0.08009962988582542 The:0.0677875128081005 :0.5471670912181182 +and:0.16579384273517 shall:0.16165247998863122 or:0.053384388994844434 of:0.02690468610566782 :0.5922646021756864 +of:0.6481947366046888 and:0.07417018608637484 in:0.05828898840748748 to:0.04602552031686755 :0.17332056858458114 +and:0.13749116249008705 the:0.049638939145636406 of:0.042088958635268264 to:0.024526720807734128 :0.7462542189212743 +per:0.7202443704956725 of:0.09032525353409745 this:0.030235453292679546 to:0.027872768849252567 :0.1313221538282979 +1st:0.04311465601326318 first:0.04284470773409398 third:0.004461717047294533 second:0.003629680937793069 :0.9059492382675554 +your:0.9472720955347832 the:0.048651586019015494 their:0.0007681914820701865 his:0.0007409632866066054 :0.002567163677524678 +the:0.3212982726989634 his:0.12235915664466933 this:0.09803123241640815 such:0.05422060938023354 :0.4040907288597254 +was:0.19179182438099773 had:0.08420064878087073 is:0.06622814146388661 has:0.0480331565149682 :0.6097462288592767 +same:0.0534573783822277 time:0.04108451773871502 first:0.030718545195431424 expense:0.01929103880528015 :0.8554485198783457 +effect:0.20354520685327418 interest:0.1781233766288473 voice:0.16411935481901674 influence:0.09846468273553528 :0.3557473789633265 +of:0.402155074979074 and:0.12227057636380952 by:0.08895082001496382 with:0.0839812912523802 :0.3026422373897724 +children:0.7544265852280201 banks:0.014609166139145379 people:0.010617658460723281 state:0.0017310872485411018 :0.21861550292357013 +change:0.6516641485818009 write:0.034784339168254116 hear:0.013113907944303513 hit:0.01133641173487912 :0.2891011925707624 +took:0.16113553645489787 pass:0.15557002266740505 the:0.08811842676428756 under:0.04500463986749719 :0.5501713742459123 +District:0.0012681386402787 Supreme:0.001079616688564651 City:0.0002766026195663309 General:0.00025697519140123617 :0.9971186668601891 +appeared:0.45176790855486065 and:0.08639482197632242 west,:0.013008554734748302 of:0.012445579356214985 :0.4363831353778536 +we:0.2839561357536739 We:0.11101341341124606 Ho:0.10482992916952497 I:0.09367127899070708 :0.4065292426748481 +do:0.03000620744707543 appears:0.013620109031015125 see:0.006467341948259453 make:0.005292323624140511 :0.9446140179495094 +make:0.4320124443098689 give:0.3159720094732784 enable:0.028204859749825943 aid:0.01936243917572838 :0.20444824729129846 +the:0.6624292516498371 an:0.11162865641224427 m:0.05519745603959737 his:0.005518483153542948 :0.16522615274477837 +of:0.19865120502273897 .:0.08275491986142412 that:0.04260604976798456 as:0.03209719242513522 :0.6438906329227171 +it:0.1240688171875132 It:0.10909355775865884 He:0.04864338651349408 which:0.03096955926469696 :0.687224679275637 +were:0.5015453757481527 are:0.25732374189592677 have:0.0470273024477361 will:0.046103886587309524 :0.14799969332087493 +of:0.9827658684004302 in:0.004129532000858526 to:0.0038090279705236658 on:0.0031706562323564375 :0.006124915395831161 +paper:0.0015116172925992485 act,:0.0010794207476242936 for:0.00040494341108644673 power,:0.00026688347436433236 :0.9967371350743258 +that:0.39246150783956196 .:0.2804683378666504 now:0.02441866386662452 perfectly:0.02253525970576448 :0.2801162307213986 +to:0.983933094771419 as:0.003643565754000441 the:0.0025707263970759903 that:0.0019001035799611457 :0.007952509497543385 +the:0.7811940956864158 their:0.1296908334609266 this:0.04398831204960579 tho:0.01808383218130911 :0.02704292662174256 +be-:0.8986402857143108 be:0.05742854798653425 be¬:0.01945572234861973 be­:0.016680833891038083 :0.0077946100594971585 +day:0.11718057996125625 tion:0.0732783852080767 ment:0.020186739691268336 and:0.01683006253055129 :0.7725242326088474 +that:0.34915966924360425 in:0.32176127746976474 at:0.13414179303660306 and:0.10579490011101123 When:0.08914236013901691 +all:0.15605110581240106 how:0.10613736724723558 not:0.0888083816578048 when:0.05836908004774831 :0.5906340652348102 +made:0.018495248415495037 that:0.013838799786150354 other:0.013067168932510047 then:0.012420003056111724 :0.9421787798097329 +to:0.7275816661164586 by:0.09056007681744595 for:0.07437547185462089 twice:0.05647431834181774 in:0.05100846686965698 +most:0.9752980875009146 more:0.004471286584188993 less:0.0024226886420234918 only:0.002151205521668476 :0.01565673175120437 +a:0.3283767868563925 an:0.11436496041637967 post:0.036579239882516316 pretty:0.02771858347868741 :0.492960429366024 +made:0.24083997599532203 issued:0.20208800064020657 attended:0.055695511946500846 found:0.04612814972344853 :0.45524836169452215 +current:0.11150543126556717 the:0.09207930752269602 court:0.07327032173632263 ma-:0.028684559711067315 :0.6944603797643468 +reason:0.1488391058509616 time:0.14054019213046995 years:0.056989513451816874 of:0.043050325633577344 :0.6105808629331743 +from:0.8562049008849262 to:0.01668292501392606 and:0.015542293232832117 in:0.015528846501980897 :0.09604103436633482 +of:0.1345441029273515 and:0.11178159010724574 to:0.08675928716972102 on:0.07638575300515663 :0.5905292667905251 +according:0.736962998895888 and:0.021001495350026222 feet:0.009226395413778536 ence:0.0063387348969744725 :0.2264703754433326 +of:0.3540737006464486 in:0.15375331202028936 to:0.14064253476338512 on:0.06636416754985651 :0.2851662850200204 +as:0.36971329986849394 have:0.3442582373835632 and:0.11180352551637286 is:0.033372425246450114 :0.14085251198511997 +was:0.5994613078740224 attempt:0.039447357850789844 and:0.034884968191110075 the:0.029796750410882256 :0.29640961567319524 +not:0.21479843333890092 said:0.199097977457556 likely:0.09891763813844161 supposed:0.06833971836684107 :0.4188462326982603 +The:0.18686087281750488 the:0.12891387518361705 and:0.125801235392547 of:0.06566991499564123 :0.4927541016106899 +and:0.0575498279106936 work:0.019610308416126064 play:0.01668543413399169 ment:0.016618572291644828 :0.8895358572475438 +and:0.01376106609209403 -:0.009894306282592554 tl:0.008450832292485756 !:0.005977811659224055 :0.9619159836736034 +up:0.9813250282194446 of:0.01164578213677446 to:0.005832408799678473 and:0.0003229778305376926 :0.000873803013564748 +of:0.08437113949472283 and:0.06405279802956179 the:0.04200688057804048 to:0.03669165269702372 :0.7728775292006511 +the:0.7037973265411384 a:0.11807322690401434 tho:0.041634165582707945 tbe:0.0205957834626602 :0.115899497509479 +and:0.22637116572385366 that:0.07771369130650821 which:0.07328485884023053 when:0.04010968286639798 :0.5825206012630095 +of:0.04889478875560499 and:0.03621743609539689 Company:0.01778285652742745 is:0.014544332983723783 :0.8825605856378469 +but:0.5586321341922182 and:0.16385864872184874 for:0.11099265432084707 as:0.10528789166043581 when:0.06122867110465001 +that:0.21300706480957665 It:0.15966021552361703 once:0.15207362127880902 which:0.14862136770825582 :0.32663773067974144 +cover:0.2047204192550067 all:0.07732956500339447 Act:0.04920398082021986 one:0.048261242866318464 :0.6204847920550604 +man:0.07954012471321198 master:0.050233256679696116 witness:0.029875757715072306 power:0.013993359720066219 :0.8263575011719534 +the:0.28336069999536 and:0.1365508109557993 The:0.07223258421086619 a:0.04183887172258805 :0.46601703311538656 +but:0.8680233362682411 in:0.02936348111345022 of:0.02645766924377505 as:0.025843738660133644 :0.05031177471440006 +more:0.24701863375394623 the:0.21856925931403626 having:0.13867928362700802 no:0.12855288911700394 :0.26717993418800556 +improvement:0.636653704206822 sale:0.07538323847882929 operation:0.03053716275110785 many:0.016555750128954463 :0.2408701444342866 +buildings:0.07191550718801923 road:0.026848631775366717 bills:0.01006463557052607 questions:0.007923236281948786 :0.8832479891841392 +and:0.22185084589239593 the:0.22078411009367938 to:0.13864167294162655 lias:0.09779847643674973 :0.3209248946355483 +was:0.23056557062290023 had:0.1962406871986349 could:0.066881018563293 has:0.05357557780076845 :0.45273714581440344 +to:0.06109831493775694 the:0.052501721409435174 be:0.04622226172028124 a:0.02878576878070669 :0.81139193315182 +25:0.23482874289270061 ten:0.19540587865407866 twelve:0.18703301013680465 two:0.07108856641694392 :0.3116438018994721 +the:0.6122862802598905 no:0.15845816166879073 little:0.054749693883161435 gave:0.04399752571052979 :0.1305083384776276 +of:0.3546112722678446 to:0.12791508131737792 Among:0.0672323748053319 who:0.05702242213963499 :0.3932188494698105 +the:0.6492980644328296 their:0.2962016256840026 his:0.042633717305217256 tbe:0.007777398306493792 good:0.004089194271456717 +and:0.2907708535874601 letter:0.013557281651764848 of:0.011540647400805954 position:0.010155574773881902 :0.6739756425860872 +brought:0.5214073130143188 with:0.06980514082603437 to:0.06492034984931103 by:0.03401668576367994 :0.30985051054665597 +of:0.2164808854466629 who:0.11814534997296554 and:0.09456253391980399 in:0.08978301819868625 :0.48102821246188127 +told:0.9795847630910558 drew:0.003034977083970652 took:0.0022545873221465236 had:0.00207866708443553 :0.01304700541839147 +of:0.2671337252052165 in:0.1337462452481348 by:0.1267503175862493 after:0.09209632696439139 :0.3802733849960079 +Mr.:0.1521867765864751 Dr.:0.12430657339276319 and:0.11123122379499449 Mrs.:0.1075013362559937 :0.5047740899697734 +course:0.3055316010442113 him:0.08405802254500329 us:0.07418842907291257 all:0.051997532515209915 :0.484224414822663 +city.:0.01690459590143824 feet.:0.010946384683806511 year.:0.006323530569726081 work.:0.00627525185193696 :0.9595502369930922 +before:0.41755685218458355 on:0.27775025172458584 during:0.10590294762562553 in:0.09209359539607787 :0.10669635306912727 +miles:0.36226985721251764 feet:0.0909063656614937 inches:0.045504762978971824 days:0.04162047918570235 :0.4596985349613144 +he:0.30903567228326145 they:0.18053560104222038 we:0.17146385117322246 I:0.14267678380707957 :0.19628809169421615 +him:0.29485806238682394 me:0.27771110117284986 them:0.09723786789101806 her:0.09486068869751181 :0.2353322798517964 +containing:0.6137967789791567 of:0.08984188860091616 about:0.05806869705121095 and:0.04162951086827006 :0.19666312450044612 +of:0.134090660068092 and:0.12631972285180862 the:0.07448051586056129 son,:0.04192964069575605 :0.6231794605237819 +has:0.4630589656803794 have:0.20987278391047562 had:0.10972175856960542 seed:0.07734482018500308 :0.14000167165453645 +a:0.21389387143676009 can:0.15416547727214 the:0.08330933442943696 to:0.04186922304874816 :0.5067620938129149 +the:0.22511918680651416 be:0.1869388053302385 a:0.04188284057866348 give:0.028549485538236052 :0.5175096817463478 +of:0.9232038518092247 or:0.0064310757176743545 ot:0.004795720268857197 was:0.004271750901693255 :0.06129760130255037 +to:0.40496366046873644 was:0.08938010194896295 all:0.08483986741195801 in:0.07260367972632976 :0.34821269044401276 +the:0.30483007940866597 to:0.09294884312585606 not:0.06767132122482812 that:0.05570450335310745 :0.4788452528875424 +unable:0.053696105064489665 have:0.05212388937032224 where:0.05097826600119953 and:0.043031877161633265 :0.8001698624023552 +and:0.1715256271427771 to:0.14628079579986697 is:0.12884432168121385 but:0.09252047570420505 :0.4608287796719371 +of:0.23780960660763018 old:0.17317471120201802 young:0.05496869737652734 lot:0.045673606323177504 :0.488373378490647 +the:0.185072069293925 and:0.17698032664899652 The:0.10941290331212675 to:0.07348425490420447 :0.4550504458407471 +of:0.54806073130503 in:0.14958744517649145 toward:0.14906798673832433 to:0.012676383796457606 :0.14060745298369662 +and:0.18059421031987935 is:0.16407321348669512 a:0.14844968549486726 the:0.13318672093746609 :0.3736961697610922 +the:0.21695545300434368 and:0.15620064433631956 to:0.11104817786610932 a:0.10854465625419915 :0.4072510685390282 +in:0.33120802423967727 and:0.2332993675029313 under:0.11909941005329673 among:0.11800435742479633 :0.19838884077929841 +final:0.15638286078144273 equally:0.07533931000972163 places:0.02756998283877717 whole:0.02682012796143432 :0.7138877184086242 +But:0.031092100047683643 Pacific:0.02657212625501676 call:0.02139484245765215 question,:0.012325694685239124 :0.9086152365544083 +other.:0.004307372535560602 country.:0.0027242248026233787 of:0.0025919553341301857 one.:0.0018308754222875303 :0.9885455719053982 +very:0.2258661860920823 somewhat:0.15894067738493575 thousand:0.060933692867234004 newspaper:0.03562007904890795 :0.51863936460684 +be:0.17485865099200026 continue:0.1669998930846121 learn:0.06155989541892296 have:0.03774768869426392 :0.5588338718102006 +the:0.9092854506060424 a:0.08304164065584939 he:0.003943251080325365 two:0.0013480361208661393 :0.002381621536916694 +mill:0.32559336934667 to:0.18327592434746695 long,:0.17611427923111572 about:0.06608468634701174 :0.2489317407277354 +the:0.7964115137115534 a:0.20042159468537632 hot:0.0011402735793828358 of:0.0003142473201246226 :0.0017123707035628403 +ex-:0.8577555332273036 and:0.024063758267044218 to:0.021766214724828654 the:0.013011750828323872 :0.08340274295249953 +pany:0.08064132219466857 mission:0.04636173627142642 petition:0.00211481989835291 position:0.0008136083910544379 :0.8700685132444977 +highest:0.152487513484117 most:0.047090882328760124 only:0.011820441151665483 very:0.009712597901516531 :0.7788885651339408 +the:0.5012378675557999 we:0.2174900818929171 one:0.08940557742492708 a:0.0851095360269486 :0.1067569370994075 +only:0.33537014440889346 ed:0.1127842980957102 on:0.10168848712865244 it:0.06173872396063826 :0.38841834640610573 +one:0.6801130112115965 man:0.11034241519934328 part:0.07877356498338674 our:0.03423722680917598 :0.09653378179649752 +policy:0.3541592444787171 officers:0.034472467909533296 supplies:0.032657621536125496 force:0.019052793807986485 :0.5596578722676376 +be:0.13315038535329904 a:0.07523481795976392 the:0.06598551192050024 left:0.04604193661740538 :0.6795873481490314 +cause:0.016244867788376072 on:0.010475074942406713 ing:0.0034928614770143047 fore:0.0028650817573947704 :0.9669221140348081 +is:0.24579599762060314 in:0.1606759838761115 and:0.1501685164078321 was:0.07686195810304393 :0.3664975439924092 +and:0.3410047315366976 machine:0.042880153869405455 the:0.022849787516352013 plant:0.01698119430013612 :0.5762841327774089 +in:0.7149388769351938 an:0.0992096696087069 from:0.09767371528018472 of:0.0563931711732934 :0.03178456700262106 +the:0.6228127262534415 two:0.009503680305126322 right:0.005657763785899524 tho:0.004965992229971523 :0.3570598374255612 +and:0.16891351098244528 or:0.07659757143088546 land:0.0040570719143346165 nnd:0.0026276182201870357 :0.7478042274521476 +the:0.5204500729033127 his:0.25896172647223215 that:0.035925277085159815 tho:0.030648738659780118 :0.1540141848795151 +at:0.21216101935043835 for:0.1984151658949705 on:0.17379342732466813 not:0.11763504260867276 :0.2979953448212502 +a:0.9186671559285791 give:0.011027217232225836 the:0.010575243294451699 ly:0.009875512103054762 :0.049854871441688715 +I:0.9354430077199961 we:0.03947522226979509 1:0.017547829345001483 or:0.0027604831195749808 :0.004773457545632293 +order:0.5315045480655781 notice:0.10952790767684653 list:0.08444344139815965 street:0.033780923026482175 :0.24074317983293358 +end:0.4677860404139593 statement:0.37622168078115287 moment:0.009312283290013159 officer:0.00837137501439203 :0.13830862050048284 +to:0.30750806120719854 will:0.27115460221530235 should:0.1250080753966186 may:0.10632258544483841 :0.19000667573604224 +worth:0.6134784350497362 only:0.14781589712119453 about:0.11522941847899375 but:0.09266734513130777 :0.03080890421876774 +vote:0.1605231653765033 and:0.06111447442178205 was:0.0346880358606594 ness:0.028204615953131017 :0.7154697083879241 +above:0.810164819106601 after:0.08315993938003556 beyond:0.02150317794155038 in:0.009005343906586983 :0.07616671966522601 +favor:0.07251222984755891 the:0.05026866017163955 front:0.04378678191834848 cases:0.04295079328705312 :0.7904815347754 +or:0.11672261982839452 and:0.10807077237507955 end:0.08633548759829461 a:0.06357787788969356 :0.6252932423085377 +will:0.29855434233298106 would:0.19439129100564045 may:0.18422420299041747 should:0.178335545858272 must:0.14449461781268894 +of:0.3703837733667612 The:0.15816944664316973 and:0.1004059071174824 the:0.08418483234278173 :0.28685604052980485 +the:0.08441279210582046 -:0.03507038949084769 though:0.034650625387777766 hearing:0.030282776588583846 :0.8155834164269702 +a:0.44028182569948426 the:0.17543608335380634 every:0.14089195752185524 and:0.09038060901567549 :0.15300952440917862 +the:0.650151924661678 a:0.12126886255684144 an:0.04283349472606172 all:0.029972180369546367 :0.15577353768587246 +action:0.013749163590204753 use:0.012848668775733612 people:0.01280436742633331 members:0.012789390419033224 :0.9478084097886951 +his:0.454022528795148 and:0.3553123822533229 bis:0.027196702686761075 nnd:0.010980898928219105 :0.15248748733654907 +person:0.16140567467876793 r:0.154010002534916 country:0.14774407245993268 m:0.023815411006976272 :0.5130248393194071 +only:0.226218944862672 and:0.09037536489647054 And:0.03273259786662377 was:0.015918843060431943 :0.6347542493138019 +receive:0.0836536768797441 accept:0.07579191272433974 admit:0.06906140678903641 o'clock,:0.05873031735766907 :0.7127626862492106 +of:0.34608466536177024 in:0.15079928816145638 after:0.1377677168080154 and:0.11446033822938245 :0.2508879914393755 +state:0.5083085315515802 deal:0.2848337181093739 supply:0.029807761676109327 degree:0.02131865514981899 :0.15573133351311755 +benefit:0.1808525671029098 importance:0.06263824806450605 good:0.02934057008128919 service:0.021042101904669524 :0.7061265128466254 +he:0.047707741041215654 far:0.031852651571839134 approved:0.017551235060240634 eyes:0.01099415235192133 :0.8918942199747834 +woman:0.04903120200045452 determined:0.03351560109300049 next:0.03212897585795026 present:0.030962258998316602 :0.8543619620502783 +and:0.3882528825246994 or:0.3115971828949232 of:0.1641519688611133 in:0.002338734774190774 :0.1336592309450734 +sides:0.11939969685468284 cause:0.0077481014359571925 ing:0.006941070123896235 fore:0.005682325562036256 :0.8602288060234276 +the:0.40857024301553946 his:0.22810222502788596 that:0.11955752159256806 a:0.09194899693973732 :0.1518210134242692 +Let:0.20252717607344237 May:0.13716567648160896 Is:0.13130544477352957 were:0.10323478408843773 :0.42576691858298144 +the:0.151603671854111 this:0.0331297930483642 m.:0.032013253466900544 a:0.029957840224306136 :0.7532954414063183 +was:0.6851533674078447 is:0.2846033766774878 Is:0.02675861553795125 of:0.00020786899004142053 :0.003276771386674771 +as:0.5820364134812591 the:0.06367271521362897 of:0.057405079884217315 and:0.035894194262661015 :0.2609915971582335 +men,:0.233890356928127 couple:0.12323004041384926 They:0.04140586011644594 persons:0.037308570641311926 :0.5641651719002659 +the:0.12368942386465798 a:0.11123111944433982 not:0.10620869200531087 in:0.06400303147572008 :0.5948677332099712 +New:0.9973402818119044 Now:0.002590830972522663 the:2.304574116599457e-06 this:1.3150397409792134e-06 :6.526760171546025e-05 +the:0.39411436635834085 a:0.048752681145381754 tho:0.026097996972180217 his:0.019346955304851848 :0.5116880002192452 +country.:0.07700999651399125 city.:0.050966801210030895 city:0.04974032224808436 country:0.045547202662760085 :0.7767356773651335 +and:0.12216772692355941 the:0.10429269176384695 of:0.09644345868640695 to:0.039159482481621266 :0.6379366401445655 +the:0.390718367826619 a:0.17879438429853373 our:0.1594762859439168 his:0.12684319081699025 :0.14416777111394027 +and:0.06779164563961465 was:0.015486866998248852 is:0.01513427584389671 the:0.013073657374655562 :0.8885135541435841 +is:0.4627598717062483 was:0.13133080921108253 hereby:0.09441344734346101 are:0.07366798708124128 :0.23782788465796695 +the:0.4081137511532294 be:0.07945593515259254 a:0.056243354869392796 our:0.033024343286774706 :0.4231626155380104 +claimed:0.04285194722819415 made:0.04029641017974788 used:0.03247530217059734 owned:0.028774344396579013 :0.8556019960248816 +be:0.49296223774511505 have:0.13763977729212282 not:0.0673040829464203 he:0.06338095342063903 :0.23871294859570283 +the:0.41969428080682586 a:0.09058819161134503 this:0.03991913692427394 his:0.03335557537314127 :0.416442815284414 +Those:0.22547706640032755 men:0.12682598579277637 those:0.0982595883764816 all:0.08080305985876597 :0.46863429957164837 +is:0.6973246356425211 was:0.1646859056798743 are:0.05018536005757761 Is:0.044202644764626535 :0.043601453855400485 +there:0.7445081586943155 it:0.15386536136246165 It:0.025519323588012434 they:0.01800515852901626 :0.05810199782619404 +of:0.010955556504912266 and:0.010129405751950862 Mr.:0.005798119937085128 the:0.005114057825002136 :0.9680028599810496 +be:0.7117121939027056 bo:0.0664392824368171 have:0.05390002334009275 not:0.02164640690824547 :0.146302093412139 +is:0.058277460677895326 with:0.05575716168884031 in:0.05225726064579649 and:0.04737766090000202 :0.7863304560874658 +the:0.5239710140034025 a:0.04317206114732243 his:0.03558220873126792 their:0.02713785760660909 :0.37013685851139805 +and:0.3068236365514398 the:0.08165828373233153 to:0.06332978154852745 you:0.045458550317755926 :0.5027297478499454 +Ohio:0.01272424951555234 Missouri:0.009031563876045172 James:0.004716916878936885 Columbia:0.0038213948425069007 :0.9697058748869587 +made:0.4340501215326595 as:0.09116312001246384 or:0.07993320532445748 only:0.06874107004401485 :0.3261124830864044 +ing:0.7540888341078558 up:0.008078452844513402 one:0.006303786422075075 ships:0.003777409509233745 :0.22775151711632194 +spend:0.16723960662454773 make:0.16263854012479728 only:0.1100552762565057 say:0.09098103087455947 :0.46908554611958975 +the:0.4464553978449339 the.:0.24656696872625283 a:0.03308089343600668 his:0.027668005378158566 :0.24622873461464792 +the:0.17674864196515735 and:0.08270878405724234 following:0.06739804896028176 above:0.04644481037620778 :0.6266997146411107 +and:0.15822930807896807 be:0.14782329954476695 It:0.14666151052004822 that:0.13628074147849975 :0.4110051403777169 +lived:0.10389986563087264 remained:0.07242255455903611 from:0.06152969245967975 saw:0.04796974241908484 :0.7141781449313266 +were:0.23169282048216738 are:0.09532073160880691 notice:0.06370417686511592 have:0.050715881473957045 :0.5585663895699527 +of:0.6468169944987375 and:0.06726365473071495 in:0.05807273726853422 to:0.038277161896593394 :0.18956945160541994 +the:0.967737645230512 tho:0.012812032155726006 tne:0.008057815390709789 that:0.00551621242413712 :0.005876294798915237 +water.:0.006110568631552817 country.:0.003739091146942816 money.:0.0031091330577344297 world.:0.002644511784203981 :0.9843966953795659 +and:0.22515365473695095 was:0.09703395717256544 now:0.04384284921765849 were:0.043524353050093174 :0.5904451858227321 +small:0.504910019640811 large:0.19589502633153463 greater:0.09476097010518987 great:0.06611722438118123 :0.1383167595412834 +letter:0.894013462936923 by:0.012544053975007154 from:0.01212639511159669 there,:0.011571883349045433 :0.0697442046274277 +the:0.4822441739004519 this:0.15975877222785553 any:0.10305518461345843 a:0.06866025761933536 :0.18628161163889892 +the:0.2967053394630424 a:0.1735532582920342 even:0.0905215803291881 not:0.06079429275409652 :0.3784255291616389 +of:0.9127976745049621 ot:0.01945152197085261 ol:0.01750694070566528 to:0.011275378443545625 :0.03896848437497444 +ability:0.8909862832571516 voice:0.05856159695554296 right:0.015959293635040357 record:0.005206224228926845 :0.029286601923338332 +the:0.1402122326047602 not:0.09286599741112751 to:0.04034808727267286 in:0.039705130310293116 :0.6868685524011463 +Then:0.3233134506593906 and:0.11294983309364677 then:0.09837470885460792 is:0.08589807045635886 :0.3794639369359958 +between:0.5088830136700306 in:0.324709276599318 to:0.07649924015699801 In:0.05027026627124379 what:0.03963820330240957 +to:0.08862118102308571 time,:0.010056346788435571 the:0.004495653151552524 days.:0.0037674503712613753 :0.8930593686656649 +has:0.9794648572377098 had:0.014841474272363177 have:0.002723132593877425 was:0.0007715369347553 :0.002198998961294304 +the:0.3054196423989702 a:0.11987459421036992 and:0.08668471290974318 in:0.05140288048896698 :0.43661816999194974 +and:0.3068236365514398 the:0.08165828373233153 to:0.06332978154852745 you:0.045458550317755926 :0.5027297478499454 +it:0.8796137360622344 he:0.018477482387398082 above:0.017581783256238017 well.:0.011615893776843663 :0.07271110451728599 +record:0.3601706277144612 recorded:0.021475357526292 tho:0.009185136025682182 the:0.00888957117668979 :0.600279307556875 +not:0.3763894450665016 no:0.11303789409081638 of:0.086982664144699 for:0.07305158617721078 :0.3505384105207722 +the:0.17434589568329573 and:0.08701187714144473 to:0.08193549456235286 a:0.06445633640401713 :0.5922503962088896 +the:0.14642780676403233 a:0.03707746254544266 other:0.02239039010489221 to:0.01461279458303093 :0.779491546002602 +no:0.22969218479966305 No:0.15283333746941175 Some:0.13530385637192086 that:0.12724129535777348 :0.35492932600123095 +we:0.8809886636045399 I:0.06350228467216655 now:0.0220811240524481 will:0.01813415388916066 they:0.015293773781684906 +the:0.05627428454000748 only:0.03299798280518486 South:0.026075129863041904 south:0.024183777160249244 :0.8604688256315166 +the:0.4416409914696309 his:0.16455192513519531 its:0.09700086871286417 these:0.08387566529127105 :0.21293054939103856 +am:0.7499037231300852 was:0.1561487218523149 have:0.00799314406034303 do:0.007290356741233194 :0.07866405421602372 +of:0.3486234928722515 to:0.19598748713171357 for:0.1415029222111419 and:0.12759917198367363 :0.1862869258012195 +to:0.9918040248085065 of:0.0004009549845155761 for:4.481353285609522e-05 or:3.6928804977959e-05 :0.007713277869143965 +situation:0.7585088416974578 fact:0.04151532958571247 that:0.02959423035375926 fact,:0.029484520738816355 :0.1408970776242541 +the:0.41148798529725455 some:0.30681202547706954 of:0.082371786171968 for:0.06743074233905812 :0.13189746071464983 +the:0.33077450693896643 was:0.2271777444166333 such:0.14420813526600867 is:0.12879934576953342 :0.16904026760885815 +the:0.4365437827933789 If:0.009248133040183662 you:0.005722582946689779 dress:0.005686044968443422 :0.5427994562513044 +center:0.01889410737677538 head:0.018627356965769143 office:0.01076617010332975 passage:0.008510697924200042 :0.9432016676299255 +is:0.19014165552705686 show:0.13712757590356375 was:0.12512578791583945 fol-:0.11281828185402511 :0.4347866987995149 +a:0.05954244299922276 the:0.05434079949712915 receive:0.027239507324954636 cold:0.026265402392045605 :0.832611847786648 +said:0.984844943773396 aaid:0.004391143203822423 such:0.0035153864694192705 this:0.0009882974679546247 :0.006260229085407802 +the:0.03097943864079733 of:0.015090598952082267 time:0.013794784106732688 and:0.010352789120413472 :0.9297823891799744 +thence:0.14292336401821307 D:0.06245544009323822 J:0.0407341800445791 the:0.03510503248531748 :0.7187819833586522 +country,:0.019714449970226377 friends:0.018366228592191135 homes:0.01818878263149567 feet:0.012909137109843073 :0.9308214016962437 +interests:0.0664679919882191 property,:0.0219553323070839 children,:0.015610376208614888 claims:0.014428407148852863 :0.8815378923472293 +Jackson:0.0036487334471382317 Well,:0.002636568382207923 land:0.0024753154552163317 being:0.0008921249090716638 :0.9903472578063659 +and:0.0945183899763608 such:0.09245274806795249 known:0.051859014043047554 is:0.019509995775394466 :0.7416598521372446 +the:0.9748786528559612 tbe:0.00808089806412919 tho:0.006724701144920835 a:0.0022701276513040066 :0.008045620283684558 +the:0.4479912160784223 a:0.041912236390934055 said:0.020881975391509815 tho:0.018829090198370833 :0.4703854819407628 +the:0.8346097669897866 that:0.022490403944303843 this:0.01874960866851075 The:0.012990981768603298 :0.11115923862879543 +live:0.33798892427852095 them:0.13010069024501936 take:0.05400859197989432 any:0.022663801993240796 :0.45523799150332467 +feet:0.69940591015064 chains:0.13158445496183835 ft:0.11488824946522587 foot:0.03820808416365617 :0.01591330125863948 +the:0.13088520284219163 or:0.09442116239339766 and:0.09354713587522713 to:0.06291899565916582 :0.6182275032300177 +One:0.3605594170032832 that:0.09423092103397351 out:0.011271945413617332 day:0.010120792396092114 :0.5238169241530339 +old:0.05471079223953944 almost:0.049261287427247884 iron:0.02679708621922575 the:0.025728547789960116 :0.843502286324027 +and:0.14861674155166374 the:0.08687124920350447 of:0.06834798295936753 a:0.03978976584777262 :0.6563742604376918 +and:0.18387955075273862 so:0.05091988763175535 is:0.02598252493295632 said:0.022544505565280665 :0.716673531117269 +of:0.3913611887542591 as:0.05500264318808458 was:0.02090862016280945 to:0.0178555583273663 :0.5148719895674805 +the:0.3187100281052636 those:0.052150327460656724 tho:0.04999378345916532 r:0.036736930135226276 :0.5424089308396882 +inches:0.4611487950873523 and:0.06442791050770304 feet:0.06143747473105072 years,:0.0323354689439755 :0.38065035072991854 +and:0.012417704441508727 night.:0.007896617733877655 .:0.007345258666765313 States.:0.006920579048226145 :0.9654198401096222 +of:0.9190511530754911 and:0.022026384543681478 for:0.017390088474190192 ol:0.01558112631346084 :0.02595124759317636 +thence:0.7436117368361395 degrees:0.11589966667541715 the:0.04049664972113877 and:0.012434413484424643 :0.08755753328287996 +by:0.23444071997186394 as:0.1919081553236878 to:0.17075528922010083 of:0.169321618499381 :0.2335742169849664 +report:0.027074159548695312 members:0.025674227037728967 people:0.021012887812940126 result:0.01756623528922974 :0.9086724903114058 +able:0.09531168985537096 ing:0.0857804157678408 it:0.07323893716872101 over:0.062337160148992106 :0.683331797059075 +place:0.5076990784305188 him:0.015927725581753035 man:0.00774990988299664 feeling:0.007674301114130656 :0.46094898499060083 +be:0.7858251642610835 bo:0.04112382021854446 not:0.03935734237963415 he:0.02790700734116023 :0.10578666579957755 +of:0.6229216200619162 in:0.09153994188272398 for:0.09050983998168427 where:0.07611294414097415 :0.11891565393270141 +the:0.9995882814020107 tho:0.0003663455718985255 tbe:1.7146216777484396e-05 of:1.4529715442517529e-05 from:1.3697093870670183e-05 +est:0.6701508459875369 of:0.012473506560296822 view:0.01057186018048858 pose:0.004853077426648629 :0.3019507098450291 +own:0.05398746749435459 voice:0.03375692496899335 wife,:0.02322346950729411 duly:0.01920250609682014 :0.8698296319325379 +No.:0.18700862608850255 the:0.17336629095873388 a:0.15373069809614878 and:0.1311101106346815 :0.35478427422193326 +in:0.6818285487405628 In:0.025774802516966733 of:0.022282101032960796 and:0.021155657749809854 :0.2489588899596998 +men:0.053961934937411624 water:0.026964194650887827 faith:0.02447750301579424 food:0.023903404240169856 :0.8706929631557364 +March:0.48932680669277473 January:0.13427711099045536 the:0.10379766119732364 through:0.057514649941206544 :0.21508377117823954 +a:0.5572990785912855 an:0.2013734486362055 the:0.07919777344028377 to:0.0551438742226221 :0.10698582510960303 +of:0.879048560234205 ot:0.1202496791718513 as:0.00040262775087855244 and:0.00026662874840157664 :3.25040946636327e-05 +and:0.23115231018598517 The:0.20218045732810153 a:0.16741355504254007 in:0.14890838199757278 :0.2503452954458004 +part:0.05571155601299554 people:0.02368802831125104 face:0.022962839456470024 subject:0.020071358780429288 :0.8775662174388541 +only:0.07335342047333511 same:0.05712645997594114 patient:0.056900742406170275 building:0.0478081100190967 :0.7648112671254568 +of:0.4085306744370742 and:0.06217644274511851 the:0.05843300688292742 an:0.030881065447494804 :0.4399788104873851 +number:0.14937083325732878 lot:0.13065675532153068 band:0.057952677876021166 pair:0.05791127671797225 :0.6041084568271473 +him:0.4062119767322202 them:0.1947973081932598 it:0.17774424492155186 her:0.11735372651655639 :0.10389274363641178 +generally:0.3853723193961158 not:0.2739932324690609 then:0.046188930563642185 formerly:0.04534278198008418 :0.2491027355910969 +and:0.10150907475196137 or:0.05231199635298045 land:0.044661979238152266 that:0.019946712046087053 :0.7815702376108189 +on:0.5427780239916876 in:0.3660607774023307 from:0.03300408145277524 In:0.028068935528457507 :0.03008818162474911 +and:0.15046221811497126 at:0.10355089625632642 the:0.09412653632025858 The:0.06486061480875249 :0.5869997344996913 +and:0.6144895009160045 number:0.007808119552857612 amount:0.0022631538023314213 as:0.0009692449377076291 :0.374469980791099 +willing:0.2749590824412198 ready:0.11503576705273663 compelled:0.0811674347426551 able:0.07547160645648028 :0.45336610930690807 +that:0.7302370632230879 as:0.058728630570457324 when:0.04657441571162382 but:0.03253695802067805 :0.13192293247415293 +him:0.4785452738167066 again:0.060430818598673115 for:0.023729849933271107 it:0.0181249199897801 :0.4191691376615692 +comes:0.16630688394110854 of:0.0474558870849899 fore:0.04464645366567356 to:0.04367893616764846 :0.6979118391405794 +the:0.5836863637454225 his:0.09767437861945946 this:0.08905410435005609 a:0.05324513018018083 :0.17634002310488114 +of:0.553095368641238 in:0.11093162035446386 and:0.08528345761551766 to:0.038324911475530896 :0.21236464191324947 +the:0.536403116392501 a:0.06760749039733313 tho:0.03583501483829378 tbe:0.025402859227456758 :0.3347515191444154 +the:0.41556974972638844 of:0.12077469886510245 to:0.11595064587097635 a:0.10639489029856679 :0.24131001523896586 +been:0.2568362249352668 given:0.0988786045301907 caused:0.09857874105679289 cost:0.06594974417839192 :0.47975668529935767 +and:0.19701948151648158 to:0.1726038613079494 of:0.1460671229451734 was:0.05343709761476 :0.43087243661563573 +and:0.36685032933462475 But:0.2595299834100164 When:0.19688973761308393 And:0.11751696768269723 It:0.05921298195957766 +help:0.04130617451997686 husband:0.028866631485234738 grow:0.0224526492522457 be:0.01793061253149625 :0.8894439322110465 +the:0.7426065647257065 these:0.04722067620147883 his:0.03583963523433655 our:0.028757304072229834 :0.14557581976624817 +already:0.49906655437044334 and:0.06754725139931371 go:0.013890455768675668 have:0.007739315442636574 :0.41175642301893073 +a:0.4144795426529605 new:0.3278732158993842 the:0.05144792492241123 A:0.03871766558150923 :0.1674816509437349 +banks:0.5364705996593194 companies:0.010309845862455138 system,:0.007311792950551168 Missouri:0.0070102419592345065 :0.4388975195684396 +of:0.21633575479764422 to:0.20688838309049687 and:0.16758123386882887 in:0.15108152089664312 :0.2581131073463871 +stood:0.47504617191243786 the:0.10939738969903287 were:0.048342447640602394 was:0.047798185130677205 :0.3194158056172498 +of:0.39657607084050284 and:0.07626580977611382 the:0.045929675116089745 man:0.03807480871235549 :0.443153635554938 +000:0.018796901361690398 -:0.018390667458427618 e:0.013422472229729442 s:0.012575758992108903 :0.9368141999580436 +and:0.09548947125035905 the:0.05706753656733357 of:0.04851758077615417 to:0.033133401640943236 :0.7657920097652099 +said:0.3673097609493571 the:0.21158682639709145 any:0.1966670850873547 that:0.19450376369711816 such:0.029932563869078676 +not:0.1500571954502602 over:0.08653439922619299 the:0.04617381531399424 a:0.04223463150161556 :0.6749999585079369 +and:0.1311460578648025 the:0.07032418434058775 of:0.06685308566444313 in:0.031578202472213344 :0.7000984696579533 +it:0.2982109045343673 1:0.2592527437660499 they:0.25676192670516196 we:0.10191269090272356 he:0.08386173409169718 +for:0.26344585689810524 in:0.2265893338435052 during:0.1597433066674567 of:0.14522725299416203 :0.20499424959677093 +wrote:0.6922795965607788 introduced:0.05611464042946073 was:0.05020420205666839 fell:0.03455542020197794 :0.16684614075111426 +the:0.9305068538516349 any:0.04721680112121133 tho:0.002383793751840991 for:0.0020846284056686305 :0.01780792286964414 +and:0.11096214752635977 the:0.07885485030834241 of:0.06582330877569177 U:0.03509096196744817 :0.7092687314221577 +use:0.4327032408789265 and:0.09359839558794666 to:0.05583436438987628 as:0.012593051506125306 :0.4052709476371252 +best:0.023599614255124343 said:0.01671092942369332 same:0.016153065809354706 most:0.013718270557723953 :0.9298181199541037 +labor:0.061727234845449654 men:0.016536754009426727 living:0.013925566896975553 man:0.012757571844573438 :0.8950528724035746 +I:0.828817654574039 1:0.1093080124299349 much:0.02675385752169333 had:0.018538769993480714 :0.016581705480852214 +been:0.7410958053240918 become:1.9163685225063744e-06 others:1.7262885020917666e-06 men:1.183696203297326e-06 :0.25889936832268023 +offices:0.030308876451729232 sell:0.030204339029661038 a:0.020004090752697563 up:0.01630364147380438 :0.9031790522921078 +any:0.32311594322923587 some:0.29063363302418704 one:0.28058804091450096 all:0.015231102470645208 :0.09043128036143082 +of:0.13467276011261078 Hall:0.05470663708495657 Council:0.02381427169429961 Clerk:0.014642849122977069 :0.772163481985156 +thought:0.3558037410087395 cars:0.08089740660159499 railroad:0.07902664189409848 October:0.0736248584265364 :0.41064735206903075 +the:0.3388977988017753 this:0.32040917910990496 these:0.1255019492679308 course:0.12374164930341337 :0.09144942351697567 +a:0.30005838166211296 at-:0.08364292702005564 manner:0.06637251726934794 an:0.05575637463872676 :0.49416979940975686 +few:0.10032045953419552 late:0.03943950304055821 and:0.035403343198825474 colored:0.0322509920978111 :0.7925857021286096 +one:0.13378650054593194 thing:0.10847547779103639 man:0.08623052811303075 person:0.0651799514792627 :0.6063275420707384 +are:0.8308498028003009 is:0.08508396388533387 and:0.036066007661312384 be:0.03179124880016788 :0.01620897685288504 +him:0.2828311872689295 progress:0.17018791041577486 thence:0.10141969673571218 is:0.06679840291215779 :0.3787628026674257 +large:0.3670578665150262 considerable:0.19287145915129705 small:0.18207860518355087 great:0.11225913848517603 :0.14573293066494994 +of:0.044124616220298625 and:0.011078030518507455 -:0.010410296501439832 1:0.010013594523779885 :0.9243734622359742 +the:0.6167852520338484 my:0.1154989773454269 our:0.06404317342145355 this:0.05974736988778507 :0.1439252273114861 +men:0.20720975161178842 people:0.06443829799485892 members:0.030470737131289817 boys:0.02972898774444836 :0.6681522255176148 +provided:0.9477935811674137 arranged:0.015645612400697683 is,:0.0021493792274202912 required:0.001829153225857211 :0.032582273978610965 +who:0.22193900765428023 are:0.14947503726010242 from:0.14467082257205546 were:0.11413894663428928 :0.3697761858792726 +dollars:0.06241680220101566 hundred:0.030366175637776664 ,:0.02854513500222203 dollars,:0.017169175527571443 :0.8615027116314142 +must:0.49334856741002336 will:0.1375121096128054 may:0.11078495966989739 would:0.09183029617271429 :0.1665240671345596 +by:0.17755529445899604 W.:0.1651915412795711 W:0.10299849516473689 is:0.07014867639499615 :0.48410599270169985 +and:0.00792949855439705 meat:0.00487805495588745 without:0.004297085512305036 ing:0.0037793881401762507 :0.9791159728372343 +the:0.8083018562629962 tho:0.0049950900654260385 tbe:0.0036719497588199768 The:0.0026012206072289147 :0.1804298833055287 +District:0.17987426069994394 City:0.12058535957062573 by:0.061942478218753795 and:0.06120035170939058 :0.5763975498012859 +and:0.12309482259860699 of:0.09291886332700038 the:0.053570113841216335 to:0.05130416870769145 :0.6791120315254848 +of:0.23757295119536384 with:0.13901678462921596 and:0.13632753928168428 to:0.1344817237472187 :0.35260100114651716 +would:0.4036986268520143 will:0.34838420586872954 might:0.09868059819712009 shall:0.07984657692808164 should:0.06938999215405461 +were:0.1966864268607232 are:0.1331158423532931 while:0.09591821854221978 was:0.06464892348520283 :0.509630588758561 +the:0.03471537743543883 hundred:0.02056830158682129 100:0.016013704221562328 twenty:0.013281223702686045 :0.9154213930534915 +and:0.31276005833509196 is:0.2339795601550349 of:0.16743510635548192 has:0.1144900218653674 :0.1713352532890239 +by:0.4425970258897003 to:0.2983888707278979 for:0.057807501294663964 against:0.012732713821101627 :0.18847388826663633 +all:0.061070548392785085 not:0.04883165980981859 being:0.018122876108818086 hereby:0.011121804337917538 :0.8608531113506607 +in:0.5286533359332389 and:0.3064765052335163 as:0.04229500774545839 the:0.030638586331940786 :0.09193656475584541 +end:0.02787705420365723 name:0.025293525008827353 arrival:0.02245776033688605 people:0.021145181298103864 :0.9032264791525254 +of:0.3453047917780564 being:0.2508568711432611 the:0.20022431868836835 than:0.0914493745325491 :0.11216464385776509 +Lord:0.7964283506812476 most:0.004420033609493327 of:0.003661089214056432 said:0.003326980627669878 :0.19216354586753268 +and:0.21570222109186854 to:0.16437335686249444 the:0.0939841485819109 in:0.07860482569660514 :0.447335447767121 +of:0.3822723454116317 on:0.10792442726275983 in:0.05203466831587314 ot:0.011190356997242053 :0.4465782020124932 +one:0.7988721447839231 president:0.019867867241625797 not:0.018470646512995917 out:0.017915830335725785 :0.14487351112572927 +mark:0.021167071698330035 newspaper:0.01831011463749114 new:0.004010541461078638 man:0.0015013231574007206 :0.9550109490456994 +and:0.10135234799934412 tions:0.05740503179895239 fixed:0.04585712732237393 of:0.030346812457643077 :0.7650386804216865 +were:0.1456348688854783 are:0.10050292619979691 have:0.0643976352487138 will:0.06408701922820574 :0.6253775504378053 +the:0.39541487624883237 his:0.16503769266526475 a:0.1105856220708904 and:0.050573832052533275 :0.2783879769624792 +that:0.15238196539484186 this:0.0666587756244699 however,:0.038531659651073934 the:0.03167125871353041 :0.7107563406160838 +and:0.3626035088233335 he:0.2405539030830287 had:0.08833232507294998 she:0.0597383365356442 :0.24877192648504373 +to:0.3040686061912856 To:0.04917562714451068 and:0.016022132545380412 cannot:0.011795880709304284 :0.618937753409519 +name:0.2590996158775434 home:0.03190126096483451 life:0.030784798902252167 wife:0.030116885553821846 :0.6480974387015481 +That:0.5868014244584979 of:0.18141442136416275 that:0.09581655512854413 if:0.07297958455648414 :0.06298801449231103 +Washington,:0.028475850560560623 Baltimore:0.008237412862563244 had:0.0012771527609307756 few:0.001120387189122182 :0.960889196626823 +the:0.9471341087797772 his:0.046099938604161575 bis:0.006242062015152826 her:0.00044787667238624623 :7.60139285220034e-05 +a:0.040418140169749595 the:0.04000080921105784 more:0.026169716705151294 found:0.025050179199793056 :0.868361154714248 +and:0.6526302750238111 the:0.10508261934095033 of:0.0807798182329294 his:0.07775228022990546 :0.08375500717240368 +Mr.:0.01965783008640213 night.:0.009703679277819174 When:0.006566635261373384 city.:0.003984228092920333 :0.9600876272814849 +and:0.10551683090310941 the:0.08804869296138636 of:0.05103953333515817 to:0.019173517430853975 :0.7362214253694921 +question:0.11996950743951525 situation:0.05399603232808522 people:0.04577327543004734 most:0.045197550418140074 :0.7350636343842122 +them.:0.029689020104624667 it.:0.024587759502532103 the:0.009750274335705533 him.:0.005190858529073443 :0.9307820875280642 +distance:0.23703455088933936 way:0.14027723048961155 different:0.04062330136588259 help:0.03981276768383145 :0.5422521495713349 +certain:0.04364711743874726 single:0.016144079379023107 sure:0.008404442679095538 a:0.006313276910424975 :0.925491083592709 +had:0.3621097567213704 be:0.175964394325157 was:0.13007495514213255 is:0.09473923419744386 :0.23711165961389621 +and:0.048356967971577826 the:0.03693056721345085 The:0.03311966811589156 at:0.02405988272823291 :0.8575329139708469 +the:0.26342638616031644 v:0.07274771493328366 this:0.06055681571868288 a:0.038355193972235184 :0.5649138892154818 +conduct:0.023488826642342968 keep:0.014743771029518826 during:0.011126640885016102 prevent:0.009924478298097573 :0.9407162831450246 +of:0.4089268908666997 and:0.25471574485635595 for:0.07842118765644544 is:0.04027750842468345 :0.21765866819581553 +the:0.28079728735616744 my:0.11181693762476881 their:0.06173902125490681 9:0.028167201472866877 :0.5174795522912901 +good:0.19619141602023651 long:0.04668241137743672 soon:0.04300714464066929 late:0.028658567894554697 :0.6854604600671027 +and:0.24139849511548983 so:0.12501589472932628 of:0.03995179152825167 tion:0.027161812674106053 :0.5664720059528262 +to:0.6943914853525361 shall:0.12356961031226281 generally:0.12144357451602338 I:0.015628035419690916 :0.044967294399486726 +on:0.9368399799965939 in:0.01139816537160528 with:0.0038982458046201685 until:0.0037591264936805363 :0.04410448233349998 +the:0.1968912835621874 and:0.09665214465566625 a:0.05458663954350615 The:0.0428635739205077 :0.6090063583181324 +of:0.4761332473942233 that:0.06968538167230112 on:0.06710663284054491 to:0.06680076179179394 :0.3202739763011366 +took:0.45347707731204445 give:0.2604416061493862 gave:0.0902381628563045 given:0.08508841604576917 :0.11075473763649568 +and:0.21032682184033952 He:0.10648225236601187 his:0.07771979313982416 was:0.061013472548270144 :0.5444576601055544 +plain:0.21784109365199913 three:0.10870852728678143 two:0.061220329500258006 the:0.05617958002308382 :0.5560504695378776 +did:0.1529298949013431 is:0.1523545295163387 was:0.13831922221072124 do:0.13115893843163753 :0.42523741493995937 +and:0.4450751569162333 And:0.10949433895670123 ami:0.029221370121970396 r:0.017113778490198843 :0.39909535551489617 +they:0.5861005087357077 he:0.22578551532163788 she:0.03453651257359429 I:0.026495419917061003 :0.1270820434519991 +have:0.45507052863430236 had:0.2059573960725495 am:0.1476851590061274 was:0.10241776155193372 do:0.08886915473508707 +much:0.14484978847880994 money:0.1284635126917941 the:0.027679298220010154 more:0.023374370348897125 :0.6756330302604887 +must:0.07861791756444908 that:0.07211274751610382 to:0.06817656493380857 lots:0.06325696008750681 :0.7178358098981317 +a:0.2504303215573771 No:0.23694677853129137 the:0.14341793746066087 of:0.08886196678247822 :0.28034299566819243 +by:0.8146529215457361 under:0.013937003095020072 to:0.012914071335574134 recognized:0.012540907121161758 :0.1459550969025079 +the:0.14797475935051466 a:0.02204173958933868 his:0.013213741618131611 their:0.011922970672902525 :0.8048467887691125 +the:0.15710448833432883 of:0.13574613181029271 and:0.1147578154499753 to:0.08184098955277949 :0.5105505748526238 +how:0.7837280051946157 that:0.09473970645754828 where:0.04487003150852724 why:0.043714896163611724 :0.03294736067569711 +and:0.3328653265467047 so:0.055402738255869 provided,:0.02936530724239476 but:0.026980867381644305 :0.5553857605733873 +of:0.3279539570405447 and:0.17055471772601433 to:0.06277733902596926 in:0.028091759512634918 :0.4106222266948367 +land:0.07645582669926239 the:0.016377186271762573 E.:0.006274815945746863 A.:0.00571538635872544 :0.8951767847245026 +government.:0.11695510122755905 way.:0.015146176421428735 amendment:0.0035508269938179285 law.:0.0021258351263958456 :0.8622220602307985 +of:0.936165634027239 by:0.01910358680818519 or:0.007416375633224306 to:0.004400733606616751 :0.03291366992473479 +and:0.35502527170737114 in:0.2802838272616893 the:0.19706937144633552 with:0.09151836368382497 In:0.0761031659007792 +English:0.12091325883193006 apparent:0.09683985706005242 the:0.01188351469851248 excellent:0.010516837752043508 :0.7598465316574616 +ing:0.17760378401004998 to:0.10662753456510755 the:0.07397229491584326 and:0.0568403422355549 :0.5849560442734443 +door:0.01139370521768573 city,:0.011163424019162793 house:0.009958058743617148 river:0.009120727444645099 :0.9583640845748892 +property:0.06750575977692817 value:0.06102984784777713 products:0.05593116152877606 crops:0.03327078105100341 :0.7822624497955152 +severe:0.18611058052969573 has:0.1286054951902275 had:0.0707430598221913 have:0.060066975484986254 :0.5544738889728991 +the:0.10763265207852445 and:0.0891389619850382 them:0.08338433394019809 able:0.05037222763122716 :0.6694718243650122 +it:0.10234051546488881 as:0.10177444658523298 It:0.08907781860675794 which:0.0869863564139409 :0.6198208629291795 +of:0.4294584526595259 and:0.10490914587259142 more:0.06286562284300173 it:0.03632537388133993 :0.3664414047435411 +of:0.1853021702984716 and:0.1051550800849237 the:0.04455354888982328 in:0.033421370236642094 :0.6315678304901393 +value:0.031724380349924426 use:0.02627270150469963 first:0.01754541271832156 light:0.016130659556630216 :0.9083268458704241 +I:0.29107714918479655 i:0.06894286803348765 e:0.04598273129043155 .:0.040179649137855565 :0.5538176023534287 +blood:0.08206731693145428 feet:0.06071870413646837 own:0.03947381516583871 main:0.020265800063824745 :0.7974743637024139 +weather:0.4237078811649787 You:0.20685975324895833 I:0.05402183180125007 Who:0.03790456521132649 :0.2775059685734862 +not:0.3504243443583977 to:0.1545696320271475 ever:0.0705345671203016 the:0.048134558288636935 :0.37633689820551636 +is:0.1428287910960572 was:0.06546458190528909 are:0.042740919355867484 of:0.03201355105506081 :0.7169521565877254 +may:0.1777066538593453 and:0.10381664991236335 to:0.08128148378529554 shall:0.07806771064786262 :0.5591275017951329 +and:0.14403252368603245 but:0.03346045232394657 tion:0.02738090769332993 work:0.020917438172983985 :0.774208678123707 +of:0.11331144938924834 and:0.09942420012583866 the:0.0863639694950072 to:0.04883619096373089 :0.6520641900261749 +present:0.0854383845284817 time:0.06350256280419739 poor:0.053683777002886575 next:0.039278324259464044 :0.7580969514049702 +miles:0.2525043803003295 feet:0.18013453034252153 months:0.07095755184173315 millions:0.06812860486999006 :0.4282749326454257 +secretary:0.13246559585636797 authority:0.08839715375969662 estate:0.08429364719329256 officers:0.07692133970901703 :0.6179222634816257 +good:0.108684103533899 American:0.09689893950761352 August:0.0376492587906576 present:0.027160999551940644 :0.7296066986158892 +cured:0.046847628498217046 -:0.019406064098251605 to:0.01062912629930316 posed:0.010085938211313948 :0.9130312428929143 +charge:0.18793305080297626 which:0.079464788591937 all:0.06096450092544892 make:0.029937109842580332 :0.6417005498370575 +and:0.09883096696659356 at:0.06040475992016138 to:0.028751281998305556 gold:0.02338302508224043 :0.788629966032699 +same:0.025412328697856434 the:0.013730744515492627 and:0.013711271145313215 whole:0.011615354795118878 :0.9355303008462189 +which:0.45603275452365144 that:0.15372253940975578 to:0.11454174493546763 in:0.09329514534338865 :0.18240781578773668 +cases:0.5087146337871711 large:0.07745995273474444 were:0.048210264000082166 weeks:0.03868706228973283 :0.3269280871882693 +as:0.6713494463558561 too:0.1252887143398112 so:0.08124901427386134 that:0.06572922224203068 :0.05638360278844079 +the:0.42100228157825703 a:0.09197319306845411 law:0.04975114017867802 their:0.02179615222405915 :0.41547723295055183 +he:0.3155164890959774 it:0.2735400824092157 they:0.21191377663957245 I:0.12658609569196513 :0.0724435561632694 +was:0.045060936768449265 ;:0.02905805512830743 the:0.012807309566220528 and:0.012604759317925287 :0.9004689392190974 +of:0.4431589027767821 beyond:0.38573638844990843 or:0.04630072528820252 the:0.02833198919180635 :0.09647199429330054 +man:0.1910958987513836 be:0.15825800549086738 man.:0.13310243183949205 man,:0.09140571010810963 :0.42613795381014724 +in:0.22393680546234718 of:0.19613231712133394 for:0.14873329445754754 with:0.11792209214234699 :0.31327549081642425 +him,:0.13501869219952475 her,:0.11231944102898322 do,:0.06799019269659265 me,:0.02448641664526248 :0.6601852574296367 +of:0.9462512523649761 ot:0.01870529405150268 ol:0.012123249404475548 or:0.009635720443126796 :0.013284483735918989 +and:0.08980917501294963 up:0.03716621451893965 especially:0.018047540515261227 hole:0.017969194729755084 :0.8370078752230943 +I:0.5985363767255085 it:0.3127886043417874 he:0.013056127138933837 It:0.008807858955020712 :0.06681103283874967 +name:0.18306862236037658 which:0.06431213534546312 that:0.04911196366505578 she:0.03455993084539513 :0.6689473477837092 +pointed:0.2621561796971345 points:0.10544112762959099 brought:0.0520168035760482 worked:0.04553235824734185 :0.5348535308498845 +m.:0.057724124960603376 the:0.043563515271364775 .:0.04017622007779476 i:0.03941823164795042 :0.8191179080422866 +brought:0.22063171097397377 glad:0.18338706427350543 willing:0.10982178442452116 difficult:0.10565446304909243 :0.38050497727890736 +old:0.12790748873650418 ordinary:0.11288693496135528 increased:0.06625399864869005 established:0.030445968331455582 :0.6625056093219948 +to:0.2101123552033559 and:0.1325495499635578 the:0.09642471138068866 a:0.03234907655099097 :0.5285643069014068 +can:0.3321322155804362 must:0.2875150877145228 would:0.23766290580792482 might:0.09080760536413322 is:0.05188218553298293 +according:0.2195355871815113 ing:0.07541486043438066 as:0.03886866633135256 subject:0.03288634558131207 :0.6332945404714433 +to:0.018567695974070698 said:0.015068925450069855 most:0.00777100174070622 man:0.007068211740924924 :0.9515241650942283 +Now:0.21126759111663004 it,:0.19570292565907746 ground:0.10142572957452008 her,:0.05983136771924269 :0.4317723859305297 +of:0.09387675116011736 and:0.08970191257039525 the:0.06635663919208327 to:0.06634891677400412 :0.6837157803034 +to:0.5356594842912427 under:0.12333880488758878 and:0.0860214225654428 will:0.06719496624110337 :0.18778532201462242 +are:0.49523907291637387 were:0.16755407228108096 be:0.09351281622583106 and:0.06961423638519992 :0.17407980219151412 +was:0.28709368814276365 the:0.12735735755611366 putting:0.11769486084342591 then:0.10784275838742695 :0.36001133507026983 +He:0.4118378023863158 who:0.0779426674659744 Paul:0.0664064868996466 and:0.023165263083325685 :0.42064778016473775 +in:0.7510486145640028 In:0.08621220473463131 with:0.056500368728808696 be:0.008837534497056562 :0.09740127747550056 +who:0.00437923126724461 tied:0.0015078901009714476 is:0.0011291432792067393 year,:0.0010440157625296435 :0.9919397195900475 +at:0.17973531855736855 the:0.17243277108365565 of:0.14954011807355383 and:0.1362788659524678 :0.362012926332954 +I:0.24896354044072477 he:0.2121272739780274 It:0.2078262558416013 we:0.08228154279481333 :0.24880138694483325 +is:0.39435474352882977 Is:0.06655539866789854 has:0.06267812180326561 would:0.0570166047747768 :0.41939513122522926 +made:0.2600664729404114 to:0.09173416452275165 and:0.042587909544542106 K:0.0305217569231502 :0.5750896960691447 +other:0.050288125458723354 business:0.030260168195753643 me:0.01365958840489934 it:0.013193733748436519 :0.8925983841921872 +to:0.23720614950050659 with:0.17345633876603092 in:0.10076712984992735 a:0.07226979137388606 :0.4163005905096489 +the:0.24803031912876358 twenty:0.23452881430556832 Mexico:0.15353916964222167 a:0.010837088416739419 :0.3530646085067071 +or:0.9610131308272547 but:0.0004836530122691476 nor:0.0004803822936717613 than:9.395973751990773e-05 :0.03792887412928459 +earnest:0.021194306890792103 real:0.00921442592013469 further:0.00551523767144247 wood:0.0038716678273256547 :0.9602043616903052 +in:0.903308423553078 In:0.0251560321468372 of:0.010143555529218052 from:0.0019463496432114548 :0.059445639127655193 +are:0.24297668924398105 is:0.2324035398390507 and:0.085615799628455 were:0.03521198990020793 :0.40379198138830535 +poor:0.061506754476461166 stone:0.0429269691299581 grain:0.026634534439693016 earth:0.023761994916676528 :0.8451697470372111 +by:0.4255292532005625 in:0.20343809663934043 under:0.17137505340530595 for:0.12316911201050408 la:0.076488484744287 +and:0.018164942598892477 on:0.007627739265436227 America:0.0069454418046291395 men:0.006013536233383749 :0.9612483400976584 +and:0.11169755333976641 the:0.09276995251066153 of:0.05458671813243797 to:0.03787681651542467 :0.7030689595017094 +and:0.03577271734933987 getting:0.016236671294464124 charge:0.014099264857227418 the:0.013047567213488721 :0.9208437792854799 +a:0.4654970522279996 order,:0.16403898001196465 it,:0.00960353343836987 the:0.00897289151717437 :0.35188754280449136 +for:0.1510343796168404 that:0.1422890874689066 there,:0.13908601120699743 against:0.12977301345913494 :0.43781750824812066 +the:0.9713412343871752 in:0.005818233576714976 until:0.003459684176648103 whether:0.0033788270535661164 :0.01600202080589543 +and:0.15576244377009882 to:0.06927263808848753 of:0.06794037167237506 un-:0.05668378399245733 :0.6503407624765812 +fee:0.2286771349684929 share:0.12240448691624473 amount:0.0643881461838392 duty:0.06155962213532788 :0.5229706097960951 +in:0.782263417647656 such:0.06720903097505727 if:0.03181813731618492 found:0.01824368936426008 :0.10046572469684174 +the:0.10451169575985338 to:0.06881346463912519 will:0.05438243213722203 also:0.04550900236611332 :0.7267834050976861 +on:0.880044996322564 of:0.05729294396590979 and:0.015608049731069789 to:0.005869437739267696 :0.041184572241188655 +express:0.14110001322845386 record:0.13033902196057168 wish:0.0962860100513912 give:0.04124545074211087 :0.5910295040174723 +and:0.17496077817726305 as:0.07826975271253586 of:0.0680341195805442 the:0.04712032687705273 :0.6316150226526043 +let:0.9992705861557679 received:9.850080999502968e-05 given:7.292882205838316e-05 taken:6.616915470501412e-05 :0.000491815057473864 +of:0.37494327810849865 the:0.10488532543753722 or:0.08938214548528105 was:0.07631084523130786 :0.35447840573737527 +the:0.07793627301902076 door:0.026288956087073066 young:0.015854281285282972 State:0.015170041889442945 :0.8647504477191803 +and:0.17220778063042363 to:0.14963270358504221 from:0.08883051935692525 by:0.07819178391829086 :0.5111372125093182 +it:0.15708894012124971 made:0.09945066561544108 but:0.07533902181438414 do:0.07149832079867371 :0.5966230516502514 +held:0.13724071308608984 were:0.07897059622516939 or:0.0258270969439419 up:0.020357813760299704 :0.7376037799844993 +It:0.4662937960533588 There:0.23386094743978875 there:0.02086753481679135 crime:0.01685966990478 :0.2621180517852812 +business:0.007097400460054624 financial:0.0067290092175573525 physical:0.005715235620825771 highest:0.004439968464928407 :0.976018386236634 +pany:0.17711984009739565 the:0.015820345270146998 mon:0.014197623667207648 and:0.007754497969032799 :0.7851076929962169 +people:0.06697909215760396 interests:0.04110801171003585 business:0.035494576490147 condition:0.026508603151445632 :0.8299097164907676 +are:0.19285223288300787 not:0.1884631840967345 been:0.09284567295065936 a:0.0804926753854071 :0.4453462346841911 +the:0.6444218048886194 them:0.09852817586838862 its:0.08383057575342319 us:0.08098535258686188 :0.09223409090270696 +daily:0.6319803721309554 own:0.023621470936190395 Mayor:0.012550152579917625 fellow:0.01058604756664879 :0.3212619567862877 +people:0.17259693775376012 gentlemen:0.13469872206556494 who:0.11550977344465722 persons:0.08530558809108742 :0.49188897864493025 +course:0.05582469311526375 Island:0.047221986617172924 period:0.030504473075600197 county:0.027852974627699714 :0.8385958725642634 +he:0.7237576473020231 it:0.10458205937854058 and:0.08782816935340663 she:0.04115605659600553 :0.04267606737002407 +and:0.463284328045233 They:0.34847220381202254 but:0.06114602354118767 who:0.04294423534451738 :0.08415320925703937 +13:0.09313808660465459 to:0.023669360280636903 and:0.020286418772321235 8:0.01776290020405841 :0.8451432341383288 +elected:0.28216407971620877 closed:0.05638098645245468 asked:0.052428043614060615 given:0.04169824019535397 :0.5673286500219222 +make:0.2403474045036786 give:0.13797828875322254 be:0.056250719307507906 take:0.04374500244559515 :0.5216785849899959 +ance:0.23999212204376608 way:0.05586396421920606 as:0.03925670393545943 according:0.030272430923209824 :0.6346147788783586 +and:0.09525929970569144 of:0.04948997791911527 in:0.040911779849819065 on:0.036301853785433304 :0.7780370887399408 +and:0.2798869569918104 at:0.14218787749256848 is:0.11389726955408302 was:0.06693535200535501 :0.3970925439561831 +by:0.732239790420473 through:0.09492513748661421 the:0.04646858651002611 in:0.04512867946415189 :0.08123780611873471 +their:0.5701350820389143 our:0.15131012532845078 such:0.12332904573294783 the:0.0799700020470783 :0.07525574485260875 +and:0.4178327037218085 of:0.13086940064345293 the:0.029011954314172896 made:0.026560966793645842 :0.3957249745269198 +the:0.46549756353663924 a:0.3145924241102425 all:0.061326062369183976 tho:0.03760020352461314 :0.12098374645932118 +majority:0.8777755884686087 popular:0.02464103424357164 direct:0.017632488001494587 solid:0.006894865946000342 :0.07305602334032478 +of:0.24975610966005388 and:0.15301946153757714 in:0.1462618201420884 to:0.1453290560446486 :0.30563355261563196 +me:0.8040628960001703 him:0.06315308303099848 us:0.01863053570229279 them:0.0025040331449754545 :0.1116494521215629 +having:0.17333305992503278 are:0.12074430434865716 and:0.10478257180073292 have:0.07308817490450387 :0.5280518890210733 +meeting:0.520730858072826 value:0.029267679163833188 and:0.014290581149120414 cost:0.013844327239763081 :0.4218665543744574 +a:0.11572640336571646 the:0.10555885018400567 follows::0.09785578669486943 well:0.05437929075490998 :0.6264796690004985 +turned:0.05691918454872324 is:0.05018512541579756 was:0.033955052270653194 get:0.010564011376043434 :0.8483766263887825 +highest:0.02828981104036645 same:0.023264082027334074 to:0.015263754831199445 con-:0.01501142996554478 :0.9181709221355552 +and:0.6710717654648125 the:0.10371093322442286 The:0.05727548733903441 religious:0.027993191672146308 :0.13994862229958385 +or:0.9466701503454991 and:0.012904542776449429 of:0.0017765530564015897 nnd:0.0003535970454241973 :0.038295156776225796 +be:0.4718677850617106 prove:0.32398343237541155 the:0.019738596851328078 bo:0.014550855391771247 :0.16985933031977857 +and:0.950333912980176 is:0.016348100872955386 or:0.015688502540893406 to:0.010461092225695476 :0.007168391380279557 +are:0.9209743420939329 was:0.020128768834827643 is:0.018283002097540132 of:0.0128091674571847 :0.027804719516514514 +a:0.4039988272493132 the:0.22399597195354265 his:0.10744773763008136 A:0.0799086005414599 :0.18464886262560287 +W:0.502627883884381 v:0.19404256535987166 -:0.04190929542364965 We:0.029747600244094057 :0.23167265508800367 +except:0.07230089794970941 and:0.05496402714989794 were:0.04578471717218476 ing:0.04338030231806515 :0.7835700554101426 +and:0.22945889259068938 of:0.2060657824844353 in:0.07905835202029177 on:0.07590456097359131 :0.40951241193099225 +the:0.41212308868964737 a:0.15292320249442487 his:0.07715952165221708 an:0.06247956867134094 :0.29531461849236956 +the:0.08024528237301853 and:0.0793357685208438 of:0.06517431128852533 a:0.055285895151119924 :0.7199587426664925 +out:0.24036613891334693 because:0.059804051718861176 one:0.04173667399022618 and:0.03980380771380508 :0.6182893276637605 +may:0.8327717750009365 could:0.09860016955755442 can:0.028903963105512277 will:0.009984192899442424 :0.0297398994365545 +If:0.1965990565855662 and:0.14225886187798484 that:0.13442608345577806 if:0.0921054096535247 :0.4346105884271461 +for:0.6007213760534347 in:0.14798209735341974 of:0.12560698257691774 and:0.06876784586330056 to:0.05692169815292722 +have:0.6161595201697045 was:0.16748509454025476 had:0.10244416378501793 be:0.009250988988968535 :0.10466023251605418 +times,:0.1044470440223069 city,:0.05275355086645549 work,:0.03438907085738925 Union,:0.025203362599307125 :0.7832069716545413 +it:0.9985768658959331 It:0.0005483880446919813 lt:0.0002194332524071605 it.:9.073002437893063e-05 :0.0005645827825888195 +making:0.45479040245208413 with:0.2141306167222234 or:0.09027601666080023 paid:0.03764794268997646 :0.20315502147491585 +a:0.04902294004199879 led:0.026342336003202804 carried:0.021064091551233538 the:0.019348274498866835 :0.884222357904698 +one.:0.023789728090535246 will:0.01611627586344695 date:0.010729821886053125 state.:0.008561266248637373 :0.9408029079113273 +the:0.4702897083255093 its:0.3195902295049599 Its:0.0801550347729365 our:0.05618243429302595 :0.07378259310356831 +of:0.9117555959221428 at:0.026608458053505597 or:0.024170641765730652 ol:0.01888452130046765 oi:0.018580782958153384 +tion.:0.01856970064461564 Co.:0.014818836644299716 himself.:0.013309461548220368 and:0.010782865639531835 :0.9425191355233324 +and:0.05387957363165528 ed:0.03295749008902384 to:0.023426380083273225 up:0.02014694907072926 :0.8695896071253184 +and:0.11823935839243169 of:0.07199810208328294 the:0.06105257143596187 as:0.05104026621943014 :0.6976697018688932 +the:0.4206720772663849 n:0.12809855229326067 tho:0.07721355723678879 into:0.06441166421171192 :0.30960414899185373 +sale:0.6353293215715113 land.:4.723816950058381e-05 sale,:4.216808578711237e-05 law.:3.567657357579304e-05 :0.36454559559962507 +The:0.476598552149351 the:0.25160470273415 A:0.1261208193744781 Tbe:0.08555957293067795 :0.06011635281134302 +day:0.05393824497300373 tion:0.05321812426370926 year:0.034661087560409115 out:0.03057379608126563 :0.8276087471216123 +to:0.49352267082598267 upon:0.14401849602458827 on:0.13823494040779413 ed:0.06173596298302164 :0.16248792975861318 +Tho:0.3165941160767088 By:0.12103163826753156 and:0.10088827000542527 the:0.07863177495278657 :0.3828542006975478 +German:0.13420020161813884 strong:0.1328105747264498 our:0.12470612237887468 young:0.1024848456313082 :0.5057982556452284 +and:0.15375652827131903 the:0.086316654846363 to:0.07722509038745658 of:0.06528735902685716 :0.6174143674680042 +P.:0.10948726145998587 Mr.:0.08073992198602083 Capt.:0.030746703265119572 and:0.027439066579976808 :0.7515870467088969 +two:0.3831345331180582 eral:0.2199029497407318 three:0.14556872233188123 several:0.13829408664497223 ten:0.1130997081643565 +of:0.6872302866004506 was:0.09929799193259825 in:0.06611426832180017 which:0.06404325480644464 :0.08331419833870632 +due:0.05766669197829958 up:0.04698859303479009 thereon:0.04198692270203705 has:0.038944316028287546 :0.8144134762565857 +Louis:0.1172618365544048 The:0.06976172418420931 a:0.0628999736184261 the:0.030353508695503868 :0.7197229569474559 +distance:0.6561310912421261 time:0.12498116049721501 period:0.0477306833327854 man:0.012455540006990664 :0.15870152492088296 +the:0.9658913646317178 tho:0.010599068297867149 tbe:0.00344241998685457 she:0.002358092841714387 :0.017709054241846118 +not:0.2053653035837715 after:0.18375856213697359 the:0.07733772447168082 in:0.05715003468441429 :0.47638837512315974 +and:0.07395408308706908 of:0.05153868150799028 the:0.04666251003755144 to:0.02923397637287084 :0.7986107489945183 +not:0.3194686383831086 just:0.1502752989337476 even:0.1177351987648182 t:0.05664268552284005 :0.3558781783954855 +and:0.1811323358585628 to:0.10384821181723895 by:0.08264936509738005 the:0.07113720485496432 :0.5612328823718538 +and:0.021230983924568448 day:0.01887214774078732 State:0.016437142361274727 out:0.01328398444658941 :0.9301757415267801 +mean:0.5980739168611126 true:0.0436628357754931 thought:0.01982058333755875 admit:0.018951458420775114 :0.31949120560506045 +which:0.20645075887204759 and:0.12930445840458565 end:0.09699594601501954 that:0.03909543977325776 :0.5281533969350896 +white:0.08946328315398885 duties:0.021548884062519987 double:0.018526534778946887 process:0.017831228115525677 :0.8526300698890187 +be:0.9975473786403534 list:0.0002697473747221752 bo:0.00021208404898911986 he:7.1461360122092e-05 :0.0018993285758132875 +the:0.544464824540482 this:0.052667291466630836 his:0.04758774165976436 a:0.043070766980172356 :0.31220937535295046 +the:0.5568850237227473 Mr.:0.09578984699734745 a:0.09184981247414171 his:0.06635193155973242 :0.18912338524603123 +perfectly:0.5949360626374048 leading:0.05662854434280804 and:0.02072620025334408 other:0.013757551987644329 :0.3139516407787987 +the:0.4724792463841214 said:0.1332555363216282 Dr.:0.06346713746339483 a:0.04265973166744905 :0.28813834816340644 +thus:0.5259997129543619 so:0.44213326576189893 than:0.005864503165367826 this:0.0004991470192611204 :0.02550337109911023 +the:0.7570871759320843 tbe:0.21168095591941055 my:0.01045620681522277 whom:0.008231284407526763 :0.012544376925755576 +of:0.10572893682523582 and:0.09949760966704654 for:0.08372281044831824 the:0.06830143809407614 :0.6427492049653233 +home:0.3825258120598067 it,:0.03537276270362482 wife:0.026017820350066587 friends:0.022050868939138477 :0.5340327359473634 +was:0.40668141627104065 is:0.3513411370302435 has:0.09466977410754947 than:0.08314087554911774 as:0.0641667970420486 +would:0.9536192206873426 might:0.012388356977746135 could:0.009061526763642198 should:0.00800260127034206 :0.016928294300927037 +said:0.5907730328643509 full:0.17157438537336653 principal:0.10954968993087036 great:0.08476893449038374 :0.043333957341028635 +were:0.24504547192625992 are:0.13449817067246808 die:0.11125285734015918 have:0.08392225571631261 :0.42528124434480036 +it:0.7849191416705656 It:0.15139062435339595 that:0.02469773164388058 this:0.019927126644435123 :0.01906537568772267 +through:0.553496981671447 from:0.12175481444151931 in:0.10114152311977889 of:0.08495323684969204 :0.13865344391756274 +the:0.9058751905714059 th:0.07807917668487618 3:0.006488192918806895 tho:0.004429282272187549 :0.005128157552723559 +and:0.1342654539138879 of:0.12232461560490968 The:0.06736339379280916 to:0.06281129090261978 :0.6132352457857736 +ed:0.14764862083203478 to:0.14698265779415703 him:0.03621306769610081 worked:0.03432286877628173 :0.6348327849014257 +in:0.9080125598355768 of:0.0805408992259774 ol:0.010559875535562894 to:0.0005808939006492062 ar:0.0003057715022337638 +50:0.16830023456854798 ten:0.13527147921776447 three:0.07060337592420919 seven:0.0579862271479581 :0.5678386831415202 +of:0.22181483501625743 in:0.1534472240875928 and:0.15134345994878515 to:0.12844712369916492 :0.34494735724819964 +of:0.6288008003221486 The:0.14437987451536094 the:0.09595787480698882 ed:0.04237546485377993 :0.08848598550172172 +her:0.16467789801598728 the:0.10346339095966173 in:0.052044237033878296 a:0.04525943703020064 :0.634555036960272 +of:0.6106155322120315 and:0.11065913536386411 to:0.04784804455943251 in:0.04644390176978806 :0.1844333860948838 +said:0.24971211320009482 says:0.24806695592844738 showed:0.17809414383100305 stated:0.03693443000290291 :0.2871923570375517 +beginning:0.8587972244993025 giving:0.03410080893791879 leaving:0.022237937147342034 taking:0.009423530905466842 :0.0754404985099696 +proposed:0.14600042702635724 stated:0.12707613866469017 described:0.11174144925819589 shown:0.0695635178803141 :0.5456184671704426 +is:0.3036592861564371 was:0.07827455463318815 Is:0.07308265031237507 it:0.0679094020882339 :0.47707410680976564 +and:0.06639235850862288 pay:0.007462647329561339 wages:0.002342766436174158 one:0.0015595523505570884 :0.9222426753750846 +been:0.3442692362972131 his:0.1816429250542032 the:0.08904714880540297 and:0.036914561294611244 :0.34812612854856956 +could:0.4608774126966417 did:0.3523693818345459 do:0.08952275620960226 would:0.054924772416600404 will:0.0423056768426099 +which:0.10698720113044714 and:0.10555758524233241 showed:0.07458293598195587 would:0.035212017004271276 :0.6776602606409933 +as:0.23044258333824066 up:0.15430623552899195 and:0.0486685986506798 to:0.03461787047259758 :0.53196471200949 +the:0.721493570450063 him:0.12286332760092807 went:0.09471662885959398 of:0.02208643181135851 :0.03884004127805661 +plan:0.21241389371828878 sort:0.11818523279821445 value:0.07518722282015645 subject:0.027839245413687073 :0.5663744052496533 +were:0.5377764814544913 do:0.20253830123628042 did:0.1184191802366472 are:0.10519877529449172 :0.03606726177808948 +road:0.30628743343790477 situation:0.222554355065005 question:0.08983236561738323 matter:0.07507334506506208 :0.3062525008146449 +general:0.2743057313563616 now:0.061997541026613215 was:0.050585438528826056 and:0.03991204387008961 :0.5731992452181097 +been:0.41539849117385846 for:0.15953300440323476 of:0.06566477675071712 the:0.04333169697514955 :0.3160720306970401 +and:0.8312370827425626 of:0.03193561121215572 but:0.027793772912018688 that:0.0259895216216899 :0.08304401151157308 +and:0.10107491812020336 thing:0.03136653241597785 power,:0.017858001320574572 ture:0.007941303717086916 :0.8417592444261572 +character:0.02896588080115058 story:0.004298225938881183 work:0.004081153927763119 one:0.0031280960660405154 :0.9595266432661648 +him.:0.05459604801434997 me,:0.04748243288231331 it:0.02376251514686302 the:0.023433694758083493 :0.8507253091983903 +the:0.31866837708678214 a:0.14502850243851217 The:0.09358973847419756 and:0.07486255314629259 :0.3678508288542156 +State:0.05925591984163724 city:0.044805312862240404 County:0.03311579505054566 City:0.03238010376188997 :0.8304428684836866 +the:0.24153298393452835 a:0.1706383565449825 no:0.062101777070696064 tho:0.03737248600931115 :0.48835439644048206 +and:0.1409317764847455 of:0.10465147324168506 Several:0.08403744077643932 State:0.0809487195709101 :0.5894305899262201 +a:0.11563184440842621 the:0.07331662005565875 no:0.03357762405422123 in:0.030415987497303676 :0.7470579239843903 +in:0.41059092666057984 of:0.17679720388604123 and:0.11525939317288213 among:0.09681601379940084 :0.200536462481096 +above:0.07784930497761965 authorities:0.03858253149883428 bonds:0.03135306221834129 people:0.022192501672436835 :0.8300225996327679 +to:0.3827464391778872 against:0.04301158913855182 etc.:0.03716739372471854 .:0.028256714807589716 :0.5088178631512528 +all:0.5738835324817033 every:0.23197275308162443 ail:0.018347862497384657 one:0.018326847721929565 :0.15746900421735796 +the:0.7858956771295076 our:0.05848673288811117 his:0.04196726408773836 its:0.022568573972271 :0.09108175192237195 +to:0.21631671225437588 Into:0.19228752526513665 up:0.18056320485885038 into:0.15016559208473057 :0.2606669655369065 +of:0.6585351720847487 and:0.07662735828811308 in:0.041161810128747645 is:0.03574194252971816 :0.18793371696867228 +at:0.5728280675593987 to:0.16071859308295355 had:0.10042616233209004 of:0.07164536013997687 :0.09438181688558078 +not:0.316510653659477 those:0.19203945666042416 proud:0.12873352498729143 informed:0.011049359556145825 :0.35166700513666144 +beautiful:0.030960291635953357 things:0.023367814279882812 old,:0.022401633577365063 strange:0.0193970011914543 :0.9038732593153443 +member:0.052021018420834515 move:0.02024191082088176 port:0.01123498965440948 ward:0.007550670644331636 :0.9089514104595426 +the:0.39530844514637536 tbe:0.16947176230720118 and:0.09486516747923557 bis:0.057208133227801695 :0.2831464918393863 +the:0.17320447188439936 and:0.1670323792313923 The:0.09455555481817116 are:0.056664988985428995 :0.5085426050806081 +years.:0.7306259543444624 war.:0.007191291318125315 of:0.004063222387887728 the:0.003622074685093136 :0.2544974572644315 +the:0.90472537941386 tho:0.0524296738332352 tbe:0.00916279289962603 tha:0.008247894551066181 :0.0254342593022127 +the:0.01461502159116223 great:0.014049453399697846 on:0.012502024407401656 Mining:0.00960632652637109 :0.9492271740753672 +him.:0.0353263549513337 it:0.0008804715105798605 the:0.0003636159449992539 them.:0.0002580891427572647 :0.96317146845033 +the:0.5459876175313946 these:0.08260113463882358 his:0.07336266325878539 their:0.05140483537541898 :0.2466437491955775 +by:0.5613965441215001 and:0.10145718467741499 of:0.08667060639464386 also:0.07199079392204158 :0.1784848708843995 +the:0.29318339347758393 ty:0.10102080264402438 and:0.05414541633423219 tile:0.028493406917618768 :0.5231569806265407 +head:0.3237597980168245 brother:0.04832187076925122 belief:0.047953444758442994 own:0.045637511031241654 :0.5343273754242396 +people:0.05223310156906702 President:0.051933509706669365 Register:0.043104634916027645 members:0.028874656973974348 :0.8238540968342615 +told:0.18037415518387737 gave:0.16533283661380024 made:0.04142353904616687 asked:0.04044681622140659 :0.5724226529347487 +moral:0.06978877924963381 political:0.045418213177058554 the:0.038061545592793025 !:0.02622326216175142 :0.8205081998187633 +man:0.2796988941985108 men:0.01438800130557779 so:0.011763770303998458 people:0.00840254951522118 :0.6857467846766916 +of:0.4791429361793446 in:0.1602955198712178 with:0.09577873760090659 In:0.06798837786715851 :0.19679442848137244 +been:0.8219635309251907 had:0.045558885966719774 purchased:0.03294893866384231 for:0.007526052016902133 :0.09200259242734503 +to:0.8257333786840003 in:0.042465876356355826 of:0.04125592780851091 on:0.027467827629325384 :0.06307698952180754 +make:0.24705782669211418 be:0.14715338398319236 get:0.052723796453134075 such:0.05169831212230335 :0.501366680749256 +of:0.26640110098371833 and:0.10313447128600962 the:0.037675822222247884 The:0.027491254022622178 :0.565297351485402 +to:0.8516478944179532 with:0.060105176147109134 down:0.02949829990170025 into:0.01740424677924219 :0.04134438275399539 +looking:0.25769577071082483 ing:0.059784123009666415 and:0.05925542456310982 or:0.05534053639245524 :0.5679241453239436 +keep:0.15889256037929386 get:0.1163997920426543 leave:0.08988218881330962 have:0.07393419098509814 :0.5608912677796442 +of:0.38883778997225743 j:0.18897422692234916 be:0.05208823327798181 all:0.04054846602206241 :0.329551283805349 +give:0.5732136878367886 secure:0.39589245923972755 enable:0.004492824397523826 make:0.0035675547018378445 :0.022833473824122215 +being:0.5575948882633878 on:0.10414714320144038 in:0.06529779413746646 lies:0.06423600348284227 :0.20872417091486314 +river,:0.10355835381109069 street:0.09955604315810353 fire:0.044447840264105615 river:0.02668685850622157 :0.7257509042604786 +is:0.22496651925630484 was:0.19794859534831757 I:0.12136995165630889 it:0.11931122881431348 :0.3364037049247553 +in:0.24495627969283257 to:0.14736207384955882 that:0.11412080114313765 of:0.1086946616943821 :0.38486618362008884 +has:0.19588151903086826 had:0.12554358139274488 hardly:0.10095968001937858 he:0.07476495093289438 :0.502850268624114 +and:0.996333268784282 I:0.0020374900149048394 but:0.0006744102507295729 he:0.0003312919460226034 :0.0006235390040611089 +a:0.22519641395912018 and:0.22145399229452928 the:0.17017685633891494 in:0.15163066328741795 :0.23154207412001782 +you:0.6559072561103417 the:0.267068047256834 said:0.03219257587684118 this:0.023183133353144647 :0.021648987402838552 +only:0.21349733804287724 chance:0.08952861919858451 last:0.03643852083823189 own:0.033330857191553695 :0.6272046647287525 +the:0.5766323282731074 any:0.1130261181207443 all:0.07561995968801018 American:0.05172657957534324 :0.1829950143427949 +to:0.910856438764293 lo:0.07310013634642389 la:0.012093732301889629 1:0.0015802277550217242 :0.0023694648323717067 +in:0.9112234009210692 with:0.035758688357541826 was:0.02350502673549048 to:0.016209936923293918 is:0.01330294706260449 +with:0.26684967314530456 of:0.15440715768688387 for:0.11586267631799196 at:0.11119854064699539 :0.3516819522028243 +the:0.3599706076309907 this:0.06382461263954747 its:0.04339370932849462 a:0.0423069140322332 :0.490504156368734 +of:0.23372373024689944 to:0.15889161802327445 and:0.07963487553157368 from:0.06548569989083508 :0.46226407630741734 +which:0.14266700238120697 It:0.10536218505347066 it:0.0699794783509629 that:0.06103900718823133 :0.6209523270261282 +acting:0.009310274098387318 here.:0.004743842093873025 to:0.004391629021515293 not.:0.003834530073854013 :0.9777197247123705 +have:0.9541863737971267 be:0.03780902109915936 been:0.005503873948854782 bo:0.001100798882217706 :0.0013999322726412943 +that:0.11396019634018084 were:0.08380554568366905 to:0.07071016203733838 by:0.04856245130061481 :0.682961644638197 +of:0.2972317802502172 to:0.15200182743475396 in:0.13041643623939106 and:0.10986637798031848 :0.3104835780953194 +of:0.33102294462287263 and:0.24548719364566898 in:0.101598445577 against:0.09223070773010572 :0.22966070842435266 +lines:0.14108404594305823 cases:0.12139582401780852 parts:0.1113322313076461 kinds:0.09090129191353624 :0.5352866068179508 +that:0.8714798876617263 a:0.034642781619150784 the:0.02608890071153387 simple:0.02557296909635146 :0.042215460911237415 +that:0.3298872815737217 a:0.21815575493399172 Many:0.12374546981917212 of:0.062000430481847835 :0.26621106319126664 +The:0.4050968740318039 A:0.005130039897947696 the:0.0010958300175581347 Every:0.0008794100513580402 :0.5877978460013324 +all:0.14605029610222053 and:0.05172894618523665 one:0.051590297534404486 both:0.04018382687458673 :0.7104466333035516 +still:0.4816137777260198 now:0.2895955094403946 it:0.0886703540444789 always:0.08001158788550125 he:0.06010877090360554 +of:0.2437735595441071 the:0.1569706779767714 in:0.09951263470385571 The:0.07878967849315305 :0.4209534492821127 +and:0.5612406827717731 feet;:0.04261696621356258 aud:0.04230933387946087 running:0.021928734733065645 :0.33190428240213765 +well:0.4617705402678225 much:0.1376786673411164 soon:0.0519082151388876 far:0.05006567007287517 :0.2985769071792983 +men:0.0722774586314133 children:0.03256424433990582 things:0.03004171534189812 were:0.011898217725352888 :0.85321836396143 +the:0.9163078371789013 tbe:0.03507342052074046 tho:0.02377713110693526 ihe:0.009767425450049693 :0.015074185743373197 +the:0.2842045843384665 this,:0.2711275807280883 much:0.18582699148156745 his:0.054967033455958894 :0.20387380999591892 +Miss:0.2321971336202035 Mrs.:0.20381900105148418 and:0.06150546756037105 of:0.049214011191604075 :0.4532643865763371 +the:0.45156731926931715 an:0.4157227248485251 au:0.06857538170154003 that:0.03690169314096984 :0.02723288103964784 +Hill:0.16891360106869913 and:0.15676426637196908 the:0.09520059277801526 side,:0.08154886135049508 :0.4975726784308213 +of:0.5318133005269574 ol:0.43797093208932264 bottom:0.007309691293453894 additional:0.004596681809389201 :0.018309394280877064 +popular:0.045389438344973256 law:0.04186970144833794 great:0.03784578425621159 law,:0.027398016152691315 :0.8474970597977858 +the:0.5240786434768709 a:0.2857561500508653 an:0.02734327464462669 tho:0.02370635326754551 :0.1391155785600916 +is:0.7056895226022106 was:0.1772787729595541 Is:0.05693664711070225 la:0.013555651430496227 :0.046539405897036874 +and:0.16874474120039715 before:0.10199625612531456 as:0.0846220840699557 that:0.0708414684796904 :0.5737954501246423 +again:0.530765300758058 out:0.18464652882577207 up:0.09619011300509343 away:0.06512439641887155 :0.12327366099220508 +order:0.0037908705950185704 an:0.0032845760016550762 ture:0.002679250072719174 public:0.002657875159402512 :0.9875874281712048 +rule:0.09900206973198417 point:0.05067284722462208 people:0.0443712498821299 most:0.03649648703935159 :0.7694573461219123 +He:0.030311687136865804 It:0.011683590899321647 and:0.010938654833782247 I.:0.008241285282637203 :0.9388247818473932 +to:0.9858980707469889 lo:0.004925010743796243 would:0.00029958733359238525 not:0.00014886654783861136 :0.008728464627783858 +them:0.08010384939486119 themselves:0.07015544345352073 faith:0.06437216540691866 ed:0.047319193539817776 :0.7380493482048818 +of:0.4157366044337698 and:0.08198331074436276 to:0.01958192698195375 day:0.018919755442597 :0.4637784023973165 +the:0.3026789952076833 a:0.05054096952840333 1:0.022618663124455204 2:0.019753784484432206 :0.604407587655026 +and:0.42269169951008473 of:0.14480900092959895 that:0.11598847966883626 in:0.09807770142259732 :0.21843311846888283 +it:0.8457607892455064 I:0.05485811554082733 we:0.04565519531983863 there:0.02539677622212272 :0.02832912367170498 +the:0.7860937056914703 his:0.03847294007549589 her:0.03721442743940932 a:0.03192760008870974 :0.10629132670491467 +of:0.7705212032185658 and:0.05400861220667228 to:0.03608978862264949 in:0.035452506522342775 :0.10392788942976948 +his:0.7432447324153709 her:0.10953639241671884 at:0.07026788249318586 for:0.05330108920237566 the:0.023649903472348757 +the:0.38065943611937203 land:0.1658118766581508 a:0.041286731363590415 any:0.02985251938159805 :0.3823894364772885 +has:0.761494722814749 had:0.09414135342232936 have:0.06080599461555942 having:0.023419904764617926 :0.06013802438274436 +from:0.09739522052826251 thereof,:0.082180219733281 on:0.037383591455352985 up,:0.03085096257931605 :0.7521900057037875 +as:0.9973472319351373 like:0.0017550216940908176 aa:0.000523574980717059 ns:0.00017144835266268163 :0.00020272303739207815 +interesting:0.3826138146143906 glad:0.12918802657610487 interested:0.0871745113607941 pleased:0.07385113937568462 :0.3271725080730257 +many:0.6462453590171925 thousands:0.19578757823509796 several:0.06496334776692213 one:0.048141091777056284 :0.04486262320373098 +of:0.15159993398770824 and:0.11379658763502962 control:0.01989060918106463 the:0.00966414949872496 :0.7050487196974725 +out:0.5774673742924498 in:0.0910082637702159 off:0.06819122337449635 np:0.03598233315412977 :0.2273508054087083 +it.:0.004619969108277147 them.:0.004520645220306208 gain:0.003961996070157372 life.:0.0027411730388881075 :0.9841562165623712 +same:0.14027897408716153 whole:0.13561933940036447 the:0.11126583662075498 present:0.08861916172674277 :0.5242166881649764 +not:0.8907464013143827 never:0.013832522147103508 -:0.012968660436952167 already:0.009513948465404678 :0.07293846763615693 +the:0.6723841871827339 tho:0.22708267698451584 this:0.05258445261454825 a:0.03253261995102506 :0.015416063267176922 +well:0.5393159260109468 far:0.1352354947710015 soon:0.07315370873027863 much:0.043281085965276904 :0.20901378452249605 +to:0.7322404487095637 thereby:0.07700027433937946 thus:0.07367973145398164 then:0.037320096445420954 :0.07975944905165427 +to:0.3256693296168969 which:0.04243962810875392 The:0.04098121709842306 could:0.026380392049706113 :0.5645294331262202 +o'clock:0.27049487345853485 o'clock,:0.05564611032545599 times:0.032626321253209356 years:0.018590520607558638 :0.6226421743552412 +and:0.26820101670860846 to:0.20993160693427898 have:0.18899165959628425 of:0.1547765849507013 :0.17809913181012701 +leave:0.13465290729174337 work:0.04178483947735036 them,:0.033309934919470575 and:0.03245853170183369 :0.757793786609602 +south:0.6834930494636429 running:0.03409464505768732 lies:0.013549123724523895 wholly:0.01325401236359366 :0.25560916939055217 +was:0.9863357438563435 is:0.004684636287358135 be:0.004615426552523408 were:0.0022724111215022247 had:0.0020917821822728244 +and:0.3068236365514398 the:0.08165828373233153 to:0.06332978154852745 you:0.045458550317755926 :0.5027297478499454 +have:0.3668911348091732 was:0.11037916629410825 had:0.09692095022698252 am:0.06579224996644342 :0.3600164987032927 +that:0.8949137533921091 for:0.026154165545763317 there:0.013553108822194381 when:0.006387898508435947 :0.05899107373149722 +the:0.8036759238699397 time,:0.10527448817431148 his:0.020849420737808672 all:0.007298390387563674 :0.06290177683037657 +Senator:0.5795270759594869 gentleman:0.2575739934021811 member:0.06037775472483062 man:0.0334179648844474 :0.06910321102905403 +be:0.6550243270263121 have:0.202420285640077 lie:0.09025508245713998 b:0.04090427956840168 bo:0.011396025308069165 +and:0.1614468071866219 it:0.10775129724922673 but:0.03890692150382231 them:0.036882298042421616 :0.6550126760179074 +Another:0.017924633730933736 not:0.01738150302458965 or:0.01206809869823269 work:0.011571258643916055 :0.9410545059023278 +to:0.004208378250917363 of:0.004061353030016741 and:0.0019265993050956364 in:0.001169411626065235 :0.9886342577879049 +lot:0.535522908112443 been:0.14751451813754934 days:0.03750428229087911 that:0.018145591165978248 :0.26131270029315024 +the:0.3582107262213621 their:0.16983265053619612 an:0.1420981468436637 a:0.11707536216436379 :0.21278311423441423 +of:0.5819312513133126 to:0.19182892696976703 into:0.10400045552904244 and:0.06852699695736982 in:0.05371236923050813 +I:0.27338290202960225 they:0.2644621128147215 it:0.1636159771174402 we:0.12885352107759307 :0.1696854869606429 +corner:0.0955835497429017 out:0.08368039990946934 and:0.059369529836445174 miles:0.04658313035905534 :0.7147833901521284 +was:0.1489575245152302 of:0.11662114008046295 and:0.10443726863581676 is:0.07387889874630137 :0.5561051680221886 +tell:0.15759061278844985 show:0.06322072312579412 form:0.034707300031864126 give:0.032714658473999327 :0.7117667055798925 +that:0.7756005526987502 hope:0.01567219720105318 rights:0.01303333337882474 thought:0.012566065528589816 :0.183127851192782 +is:0.3403686479999994 was:0.13656153628903772 as:0.06627839285350669 to:0.05570938017706983 :0.40108204268038644 +each:0.17341781695522093 cover:0.15775420253638645 and.:0.0670457193809576 and:0.02772418008737231 :0.5740580810400626 +W:0.12872670095706226 J:0.12379572129562756 H:0.07461171766260212 J.:0.048967960704513674 :0.6238978993801944 +order:0.7926097612762955 the:0.037464261117610316 this:0.017557874061392385 good:0.0071434863058381795 :0.1452246172388637 +few:0.8721140274422794 the:0.0034399213404280897 most:0.0028958379274223595 sum:0.0023615176157298235 :0.11918869567414023 +new:0.04953753185361266 present:0.02821962860299967 said:0.021292787809883765 most:0.01872436861115204 :0.882225683122352 +be:0.12245847376358733 make:0.07064038398648134 prevent:0.06258610444685364 the:0.05147300866285128 :0.6928420291402265 +in:0.45678671693876455 with:0.1718609272479626 of:0.10791530754130475 to:0.1075762293483494 :0.15586081892361867 +things:0.16719134321129314 times:0.14258690868240173 reason:0.04607119632431957 and:0.043338056311531106 :0.6008124954704545 +girl:0.6058111946031972 great:0.04952113290713657 enormous:0.04063947159311853 the:0.009851774097288666 :0.2941764267992591 +with-:0.19249713905593552 with:0.14685099621596354 them:0.09296221659965899 it:0.07720541761277501 :0.490484230515667 +and:0.5751576363631449 have:0.10508852631601673 were:0.07375921759857099 is:0.07007115782319696 :0.17592346189907038 +returned:0.8584373176416767 went:0.10633059536713346 clear:0.002462338154939259 send:0.002025362677796467 :0.03074438615845411 +things:0.1453194445667315 roads:0.11246773244766292 latter:0.05317136536641532 persons:0.041780382774720556 :0.6472610748444697 +C.:0.31546183530038563 H.:0.18847355952801473 S.:0.14888874047964967 T:0.07575182466756608 :0.2714240400243838 +blood:0.006538846216619403 city:0.0058259709938401774 city,:0.005259074621164263 rights:0.004489841188047005 :0.9778862669803293 +sum:0.024612895866089293 use:0.012519161893733597 amount:0.01174797009386354 city:0.010621898119861745 :0.9404980740264518 +place:0.10997111447763724 city:0.07410867400836366 manner:0.06112430512553407 son:0.05677366083150813 :0.6980222455569569 +also:0.311290557973574 being:0.13357454171526795 hereby:0.04681512100593869 not:0.04176754356701513 :0.46655223573820437 +the:0.36839382371528984 a:0.096961487989259 his:0.08677076304716215 services:0.0365061231636686 :0.4113678020846205 +of:0.21271586504811593 and:0.13193446581673465 the:0.06873672061399543 to:0.03634607804023104 :0.5502668704809232 +for:0.5841540181857855 of:0.2784963245578926 on:0.0741543127282079 in:0.04294820945962862 to:0.020247135068485366 +are:0.4355332725167108 were:0.25765512447472744 should:0.20471968094681803 will:0.05233564953162037 not:0.049756272530123324 +and:0.11216497892429306 of:0.09565753645311564 the:0.08773375521778955 to:0.049765853087416295 :0.6546778763173855 +ing:0.015733859966662954 and:0.0082183573627733 in:0.00776701970856634 the:0.006709231627729513 :0.9615715313342679 +of:0.16963059268240963 and:0.1578219393742468 to:0.04317614878488175 who:0.035833475027828056 :0.5935378441306338 +to:0.934022652273059 tu:0.05745173876059694 or:0.0031470903304811997 of:0.0018403722062353635 :0.003538146429627426 +as:0.017724343502798584 this:0.01435813876508431 These:0.011026294264163395 matters:0.009609806556563688 :0.94728141691139 +the:0.06921285127357638 lie:0.05311102617507932 e:0.03428961499623744 m:0.03333363696846821 :0.8100528705866387 +pair:0.49792890339199497 turn:0.0669192470697387 fill:0.046496175189975765 move:0.029634192399679307 :0.35902148194861133 +money.:0.2992534449738543 them:0.0380358118646141 death.:0.02099820114317802 the:0.010336703446738541 :0.631375838571615 +it:0.6360981025578474 It:0.12841182716452357 there:0.10591755632422402 that:0.012146675216927324 :0.11742583873647763 +created:0.2073750812793242 been:0.20260010496737282 and:0.13247757150649278 become:0.12362769929016036 :0.3339195429566499 +are:0.5852789049872044 were:0.12809460932816377 arc:0.08502900930273004 have:0.07097916779552066 :0.13061830858638113 +were:0.20546509222726225 that:0.2008224615374076 should:0.14459311763184945 and:0.09204691433924535 :0.3570724142642354 +be:0.14769005077057107 have:0.08347278813770363 stop:0.06735888180256955 not:0.058026331466887106 :0.6434519478222687 +on:0.9867340932695552 taken:0.006348647230925316 upon:0.003100784611423936 in:0.001968318608342347 of:0.0018481562797532294 +same:0.16133434071666042 two:0.05449547624294655 water:0.04711006659694607 cut:0.03228377964714368 :0.7047763367963032 +of:0.23240795207756612 had:0.08476113951921813 and:0.07743116702054077 was:0.06331598266187496 :0.5420837587208 +and:0.21687336429916906 The:0.11499749970664677 the:0.06485024010737346 of:0.05450753318078554 :0.5487713627060253 +and:0.5041176930650854 to:0.39470085671100913 for-:0.06753129193022864 they:0.01716579521631763 I:0.01648436307735918 +who:0.9886471355204546 was:0.003066408958604993 man:0.0025558823031555608 officer:0.0014911733493657754 :0.004239399868419076 +declared:0.38257852903295564 said:0.13342957623753088 believe:0.03381324859973554 agreed:0.01919733095541166 :0.43098131517436644 +last:0.08583369923426375 committee:0.07420977820968643 corn:0.06319783260544741 house:0.05425799299497987 :0.7225006969556225 +in:0.23447712194287973 out:0.07488904586229068 and:0.04030963301044698 upon:0.023083959030661266 :0.6272402401537214 +control:0.5683977742613013 believe:0.05076856418749837 consider:0.020397112019571742 be,:0.012907154186502458 :0.34752939534512606 +love:0.2511529691268883 stand:0.10458046090610221 come:0.09333041946376563 begin:0.07340852201767782 :0.477527628485566 +the:0.5966654816992415 are:0.08071513467971486 be:0.07730742587506191 those:0.0628474478571886 :0.18246450988879317 +the:0.5160576627027856 a:0.07469214362122305 his:0.031092419263267352 tho:0.025308158703259424 :0.3528496157094646 +like:0.3738125740998223 saw:0.1722960969494623 asked:0.16282562910464343 told:0.0318874400714134 :0.2591782597746584 +special:0.1454917827265444 distinguished:0.04522858151408177 larger:0.028601448201904838 full:0.023618563981897305 :0.7570596235755718 +that:0.9889983874364675 and:0.005467941612729562 which:0.004028772667630923 as:0.0006341584272477539 :0.0008707398559243803 +an:0.18999793128602238 I:0.12288185194145711 worth:0.11580317420237322 less:0.11362369928898367 :0.4576933432811635 +of:0.026434536498227888 decided:0.022372995685527388 road:0.017612250197928704 and:0.01358850387607467 :0.9199917137422413 +will:0.8815644695099919 say,:0.01822727514726139 cannot:0.01607214169292671 are:0.011506783029499148 :0.07262933062032097 +a:0.29144980967107326 free:0.2684827346836212 the:0.10650352152010703 great:0.09042126598437066 :0.24314266814082783 +of:0.5222928378558402 and:0.154053413189449 A:0.08013714413389059 or:0.07069784758231745 :0.17281875723850268 +have:0.24822407492040072 be:0.18612710120339723 result:0.022236559383760894 the:0.014696027984488805 :0.5287162365079523 +he:0.3762035283988801 it:0.2502216388510309 mortgage:0.09666582743708893 she:0.06561848506857491 :0.21129052024442493 +that:0.7389337925772461 how:0.0360143944625737 what:0.02596275517858895 who:0.022513774674342863 :0.1765752831072483 +on:0.46999282229412553 about:0.26709642306912357 that:0.1282692548419662 as:0.06967222088616475 :0.06496927890861993 +or:0.27667783848864264 the:0.2624874714924892 and:0.20424173786509336 for:0.0397944744789604 :0.21679847767481444 +last:0.7373298653312159 natural:0.013505731082553341 good:0.010253063517245408 general:0.007102779780925964 :0.23180856028805938 +1:0.2764416060649133 and:0.1982268716056375 will:0.06582260584837057 to:0.06116176594484336 :0.3983471505362352 +number:0.05660962449498339 body:0.03133181700567148 people:0.028226408959904404 members:0.024663796154306066 :0.8591683533851345 +a:0.13578102722971752 over:0.12968849005144498 nearly:0.10044706133777777 worth:0.07420692324979408 :0.5598764981312657 +meet:0.5822816315589564 you:0.17252633800234152 witness:0.028832679177281918 him:0.01961856125394729 :0.19674079000747285 +have:0.49281503725682313 get:0.1036814632937479 be:0.0995834425974017 buy:0.08142804027746232 :0.22249201657456488 +of:0.13816365343895776 the:0.13432332076177506 and:0.11299543838685046 a:0.06103241389111078 :0.5534851735213059 +of:0.19104120594356966 at:0.116441537836318 with:0.11311309050128503 has:0.044592419163078705 :0.5348117465557486 +the:0.7961868185382718 a:0.0456218833716551 an:0.025720773065195632 its:0.013191274407411078 :0.11927925061746643 +in­:0.28987742458033444 the:0.19792563296465532 a:0.12171885318247444 an:0.07358836265852903 :0.31688972661400655 +to:0.9375882705687959 for:0.016662188370820164 at:0.013038017358035602 I:0.008367749513627273 :0.024343774188721128 +They:0.25758102338479455 I:0.2506986118154665 He:0.1348306349079232 She:0.04557658351302962 :0.31131314637878604 +not:0.905344392927647 this:0.019670420733622136 who:0.009935930286604852 their:0.009537906243431492 :0.055511349808694495 +were:0.0042874610311035245 11.:0.00340452562981348 the:0.001713956555799431 it:0.001483310609594572 :0.989110746173689 +feet:0.008698809526748511 members:0.0028841678702792753 favor:0.0009038712544194961 one:0.0006282263478685643 :0.9868849250006843 +and:0.09289094130394711 of:0.07972424900925228 the:0.06672537847722361 to:0.03271779909049193 :0.7279416321190851 +in:0.5419261342964263 of:0.32224483024073747 In:0.13559759381607775 at:9.839105039592363e-05 :0.00013305059636250683 +newspaper:0.0660189217920479 decision:0.03782134589356141 friends:0.03442459830675378 j:0.02036062952825725 :0.8413745044793794 +not:0.38642939554508454 always:0.23822608961439223 sometimes:0.1400740894989088 long:0.12204412886206724 :0.1132262964795472 +of:0.2606579760703359 and:0.16567057832837656 to:0.160213953901292 that:0.1512917122766776 :0.26216577942331787 +day:0.03176151836378111 tion:0.031071825516164647 one:0.029436538110472723 west:0.025753051808400283 :0.8819770662011813 +pay:0.09647186437513974 fit:0.06466769854255439 kill:0.035456023563839346 de:0.03043323433012854 :0.7729711791883379 +New:0.7898521771449255 the:0.0376850635397282 this:0.01686716026151247 Chicago:0.01656276990398501 :0.13903282914984888 +in:0.013120890669697493 following:0.009791829979694806 that:0.004188827557975015 not:0.0032669719286486094 :0.969631479863984 +pre-:0.34076356692417015 the:0.05951651908306089 once:0.053315246304696556 this:0.03775679685769294 :0.5086478708303793 +a:0.14435288498786433 and:0.12529211149683098 to:0.08304379192593699 of:0.07456525732628369 :0.572745954263084 +the:0.23662396262837526 I:0.09439955494809629 far:0.0906291251297142 he:0.058990020371394516 :0.5193573369224196 +a:0.8885140940207219 e:0.004379086372919058 its:0.0036713860667395046 able:0.0036194387255834245 :0.09981599481403602 +account:0.6121476997152553 behalf:0.11608480605466069 any:0.06432038335819147 the:0.03620613763165587 :0.17124097324023668 +those:0.06135908238658554 the:0.04727203905207232 Virginia:0.02285691549515207 a:0.021835696934691007 :0.8466762661314992 +hundred:0.402843602375249 thousand:0.28244539688571224 million:0.17934742228083064 of:0.013356031313168246 :0.12200754714503985 +and:0.10788805715197204 the:0.06477549260856695 of:0.06474545896929967 to:0.03338406594509026 :0.7292069253250713 +seem:0.2378389667876701 want:0.07822092973829013 wish:0.06432879035905599 appear:0.06101759532509959 :0.5585937177898843 +and:0.7703546427259906 or:0.06029456259253506 to:0.05447719809661127 having:0.030394234141435435 :0.0844793624434276 +to:0.39957990300826746 and:0.15765767666484992 of:0.07709244616510057 has:0.0728531418145163 :0.29281683234726574 +per:0.8799382847026748 or:0.0060131389918035094 Sir:0.0025976224286043967 a:0.0016495231915264628 :0.10980143068539076 +fifteen:0.5692264913998337 twelve:0.18896951619590754 twenty:0.17935654731827486 ten:0.027280016090470656 :0.035167428995513214 +am:0.20877891024981823 was:0.19672609405278896 felt:0.06518801866005777 feel:0.049293279380447745 :0.4800136976568872 +terrible:0.040506834477608354 recent:0.03992585253080683 final:0.025658024920243667 first:0.022423544099671653 :0.8714857439716697 +will:0.3594301269059804 to:0.22621485309591216 should:0.1623385641034216 can:0.15297957362183706 shall:0.09903688227284878 +kind:0.09487360421599175 city:0.05297176939400566 corner:0.052432187919623265 town:0.02546566263591538 :0.774256775834464 +to:0.7603186843282382 a:0.04412686451590303 and:0.02423050116896776 the:0.022181854484472543 :0.1491420955024184 +money:0.09455196495541465 Chinese:0.09396746264425163 State:0.055674804405501335 north:0.034586791103362324 :0.7212189768914699 +the:0.02658102941210899 most:0.025408025938787812 same:0.020966353452334052 first:0.02096590591118932 :0.9060786852855798 +port:0.5706620985093538 turn:0.05731927680006332 nomination:0.01304495267163566 move:0.009441248825108264 :0.3495324231938391 +the:0.8892474631515621 a:0.03796414472868977 your:0.02267067098887644 this:0.019394269801767183 :0.0307234513291046 +and:0.11856419229374876 the:0.10326516416306243 in:0.05106767845781152 City,:0.04995617998218532 :0.677146785103192 +State:0.08687604887229611 honor:0.02785049010858296 County:0.015148361261515052 power:0.013159891950433893 :0.856965207807172 +rest:0.02314559371329318 members:0.020900408857416203 cost:0.014936454994706456 result:0.014139831115449909 :0.9268777113191342 +w:0.0034236814061789087 le:0.002904829454095522 acting:0.0026751115193227796 the:0.002390488820769002 :0.9886058887996338 +and:0.1334426939305172 to:0.09204672503686533 the:0.0829834952470485 by:0.08295797086653227 :0.6085691149190368 +go:0.18067527490787927 vote:0.07869141564817271 meet:0.0711581172431253 be:0.05318085381251777 :0.616294338388305 +a:0.8420954820336838 one:0.1385500788733355 six:0.004969321412281083 the:0.0033237137614238028 :0.011061403919275905 +for:0.4144481619051573 to:0.3389191800580349 of:0.09374086769545928 that:0.0691465190659895 :0.08374527127535905 +section:0.04512885591424432 in-:0.04397866627967595 the:0.03928328796466514 wagon:0.03403467134558646 :0.8375745184958282 +I:0.1688431481682307 It:0.14410434611185577 and:0.09033469992099483 able:0.08936573045783608 :0.5073520753410827 +and:0.2236169379851724 by:0.1302662740091923 is:0.12144525748009204 being:0.07592815010444869 :0.4487433804210945 +of:0.15541297408142965 are:0.12774196376451247 and:0.11727972436558183 who:0.07267124192996849 :0.5268940958585077 +Here:0.20891855814431454 of:0.19411337285757335 to:0.16220790049798042 for:0.13803877766032438 :0.2967213908398072 +and:0.15808075973405458 the:0.08144231073225877 of:0.08004010352656529 to:0.07159512200695575 :0.6088417040001658 +of:0.1579296967741431 to:0.13169789349162137 and:0.10065872678332294 with:0.08575037657644745 :0.5239633063744653 +been:0.3703656322281279 a:0.08433100685648547 not:0.07425906611820625 the:0.053359173908831777 :0.41768512088834864 +is:0.1283361643752579 section:0.11791934345211968 was:0.07294596534961445 were:0.048963539555041125 :0.6318349872679667 +the:0.9963997309103484 any:0.002946371037577516 a:0.0002087066565884091 no:0.0001987605385879846 :0.00024643085689763766 +made.:0.031214486355333346 done.:0.010022817626440044 well.:0.006174716933946507 there.:0.00461981523566163 :0.9479681638486185 +turned:0.638746361079136 given:0.21179273728567805 paid:0.05280368839785677 bound:0.02222311886607554 :0.07443409437125369 +the:0.011671005647728876 me.:0.010759968161764735 ":0.010489476252533454 F.:0.007572183516329669 :0.9595073664216432 +the:0.16701567913955373 a:0.1472755592083873 not:0.09867247318428089 very:0.05244130118036722 :0.5345949872874108 +and:0.1647928693208999 the:0.11394389115646272 of:0.09146765797658407 a:0.03825475358672663 :0.5915408279593268 +for:0.3838145958921971 the:0.16362593410499898 every:0.16150551116919945 from:0.14580046570994457 no:0.1452534931236599 +are:0.9013161285657297 last:0.0013050138428368164 is:0.0005960254593951015 do:0.0005579371952953801 :0.0962248949367428 +followed:0.9870905793434572 in:0.0012580397468336822 lost:0.0004403408463287395 made:0.00018792236959653977 :0.011023117693783786 +with:0.24242556763187212 of:0.18521009182751633 is:0.1170032120635639 in:0.11583675770705727 :0.33952437076999026 +was:0.20281685874076663 down:0.05624683947593954 him:0.056185433701975464 away:0.03030714845655173 :0.6544437196247668 +and:0.05486750883203501 was:0.019283045173225755 feet:0.0160057241513321 is:0.01585110814595295 :0.8939926136974542 +of:0.9382961459697037 ot:0.013889968292176803 in:0.009712910690352123 to:0.009417571177161178 :0.028683403870606274 +manner:0.2537214120226529 way:0.08992130668430695 spirit:0.028234181517409373 community:0.027840017390650396 :0.6002830823849804 +is:0.3953445023968068 was:0.18997089327432362 will:0.056861028285032165 has:0.047314751101301185 :0.31050882494253623 +ground:0.0443007873281945 water:0.039941005149038124 water.:0.039320729512371456 ground,:0.03766132369308952 :0.8387761543173065 +been:0.3891630111031327 only:0.25514410970192836 for:0.07761647794404189 now:0.01642468070900351 :0.2616517205418934 +turn:0.0345674090900971 cover:0.02627553915880638 port:0.02474801808765613 aid:0.01768937207259333 :0.896719661590847 +the:0.9664517027797374 tho:0.021049709737908723 of:0.0018463795772308592 very:0.001112468505087712 :0.009539739400035246 +the:0.5198586074204998 a:0.06455449584794747 be:0.04030467296934065 tho:0.03042380372921968 :0.3448584200329924 +and:0.14286972482179125 to:0.10634041094879067 of:0.09552335132282345 the:0.056030751744966446 :0.5992357611616281 +was:0.2635462092310903 is:0.2180566755204311 are:0.19926127875173874 were:0.14803496995783813 :0.17110086653890186 +Pennsylvania:0.3724277435820687 money,:0.04439867666263061 the:0.025729374012454988 of:0.012997343909777808 :0.5444468618330678 +of:0.9308179897992801 from:0.013188405628734773 in:0.009679737522998258 on:0.009542571038083501 :0.03677129601090337 +the:0.8601423995266221 a:0.08663983987068997 his:0.022753872030364775 this:0.009135750285208022 :0.02132813828711498 +to:0.9693980036763727 lu:0.0008811621105672735 will:0.00037106381855573153 not:0.0003450714823010484 :0.029004698912203045 +buildings:0.015024367194185125 to:0.010970063695544055 views:0.009881758083132242 days:0.006616206591499863 :0.9575076044356388 +in:0.2036396297464197 its:0.1073747221784975 The:0.08938531715814266 the:0.08358471199332378 :0.5160156189236166 +shall:0.08024931955124558 which:0.008224526257190517 they:0.0055636784372334975 to:0.004751545659120467 :0.9012109300952098 +paper:0.7553531325321856 affairs:0.16008968821997369 office:0.018722926349617003 proceedings:0.006588361675398723 :0.059245891222824996 +he:0.5181236809890457 we:0.11291316965575905 they:0.09666474260827401 she:0.06961121812623838 :0.2026871886206828 +thc:0.20611541968043715 the:0.1608041924592684 a:0.019975018535198286 his:0.010169020699001694 :0.6029363486260945 +feel:0.44780839797436306 stood:0.11669723639570583 did:0.07912490762594716 of:0.04181796970645841 :0.3145514882975255 +gone:0.8805562449263967 sent:0.025863784840925462 walked:0.021472598421368026 get:0.015215286401339213 :0.056892085409970726 +May:0.03910062578889078 New:0.0037009727275063723 T.:0.002123815024155724 and:0.0006363716073483097 :0.9544382148520987 +the:0.9449031884681982 tho:0.026142032512008386 tbe:0.010804429074521933 tlie:0.007144358313931672 :0.011005991631339756 +want:0.14394125867000498 trying:0.04590750250904809 and:0.040616114722448506 glad:0.0363345587314394 :0.733200565367059 +was:0.5781599053710587 is:0.2283967034675702 Is:0.05602884810427233 once:0.03970488910376272 :0.09770965395333603 +to:0.998156231558264 only:0.00038597356041055885 yet:0.0002882002483568823 I:0.0002180301692339509 :0.0009515644637346694 +The:0.542740088057257 This:0.12968622976500427 Their:0.08669159152478062 Mr.:0.05405823721648195 :0.18682385343647623 +the:0.7420384060137372 to:0.20541159967562447 and:0.004403107143897925 tho:0.00218579412779221 :0.04596109303894823 +position:0.13988908812942658 charge:0.0006103557280208867 ease:0.0001821051175364939 while:0.00010703055503887571 :0.8592114204699773 +men:0.8195660210407398 bridge:0.030966967577237547 members:0.007959679327434573 it:0.004440007029824033 :0.13706732502476393 +of:0.45901985373618975 with:0.18551152464840998 was:0.07406143708226784 has:0.03091946370033434 :0.2504877208327981 +that:0.9989410956767538 and:0.000246902500167721 he:0.00020775487877955045 usually:0.00014761536860380173 :0.00045663157569494634 +are:0.04243366093382662 have:0.030538313385854766 of:0.025410151145964403 take:0.017482562590637764 :0.8841353119437164 +to:0.8235981163642131 will:0.12101981422117683 can:0.02653947990673363 not:0.009548451374363092 :0.01929413813351345 +the:0.8976056075328723 tho:0.05370146161185562 tbe:0.01319825251892026 tha:0.01145497588585131 :0.024039702450500577 +Thomas:7.186218015082016e-05 J.:4.0815082482583204e-05 F.:3.917155388601169e-05 the:3.1943560205647776e-05 :0.999816207623275 +of:0.32783921538640604 in:0.16140388530797964 to:0.157692923846159 for:0.09099212172854103 :0.26207185373091435 +sharp:0.30682766418835233 no:0.21056270294612292 to:0.20553185978140767 they:0.11463193682764025 :0.16244583625647685 +and:0.5555158784874962 but:0.17872706555352083 ing.:0.05108932715875778 Then:0.05100266703188884 :0.16366506176833637 +driven:0.259163464201723 described:0.14554946451229742 made:0.07307844769490905 recognized:0.030221143018835207 :0.49198748057223546 +make:0.09040711752638553 the:0.05220772703978911 find:0.05063761613400199 keep:0.04440743695339717 :0.7623401023464261 +corn:7.920001267439452e-05 and:4.4901130627726554e-05 things:3.4364672758916784e-05 days:3.209468273212934e-05 :0.9998094395012068 +this:0.8812450600256272 a:0.032800631772848705 the:0.0325757585046001 that:0.023154855901182474 :0.030223693795741483 +the:0.13380312028505068 one:0.06919603334234817 that:0.054869621320550115 support:0.042284812682155046 :0.6998464123698961 +say:0.35434293622914326 say,:0.11935436807612418 sleep:0.1068867362285961 live:0.0609084144852487 :0.3585075449808879 +and:0.07305550275288834 he:0.032146566297922154 they:0.01948347772831588 then:0.01919023033787231 :0.8561242228830013 +General:0.03812569626856543 young:0.03153157082378785 great:0.030288298834081535 of:0.02680939994675668 :0.8732450341268085 +for:0.2993729078599802 from:0.2798287715608391 by:0.19714091178667387 to:0.11896233552431704 in:0.10469507326818989 +known:0.1599163579953168 is:0.054021508925843786 that,:0.03575751164175244 and:0.03479732960991893 :0.7155072918271682 +of:0.4882327463895342 in:0.14287498659256767 with:0.138500925948404 to:0.07509311621721071 :0.15529822485228348 +extent:0.1797060249143921 amount:0.09751116461911462 value:0.07351388924196327 confidence:0.07218615565092817 :0.5770827655736017 +and:0.2757361838027168 the:0.20518467306349614 to-wit::0.10982992782155195 as:0.07904695519546605 :0.33020226011676895 +the:0.11833592374450551 and:0.11581251706095892 of:0.10100953865657322 in:0.04157125051803074 :0.6232707700199317 +in:0.9649277456756823 In:0.014253698520077776 a:0.006247925926242235 But:0.0032913787619082563 :0.011279251116089567 +year,:0.008940647462020508 will:0.005095307078111069 year:0.004287880414531423 week:0.001420695970171538 :0.9802554690751655 +young:0.2143466709023855 white:0.10455212298453272 best:0.07736525354290456 while:0.04165282731149852 :0.5620831252586787 +railroad:0.4469411809191515 look:0.01706107377216482 and:0.016647721550666208 road:0.008507534755226523 :0.5108424890027908 +pose:0.4693168256494531 e:0.0010291635204467686 ple:0.00012250558304406422 and:6.517801872787611e-05 :0.5294663272283281 +and:0.2528653819451564 for:0.23855348765995688 to:0.12567144223957386 In:0.11690384347224808 :0.2660058446830648 +being:0.4912027652181901 the:0.004826954426895862 it.:0.001254250916395596 Mr.:0.0009563110184494883 :0.5017597184200688 +of:0.9955659076811184 cf:0.003109306483610147 who:0.00033019238679283424 are:0.0003161563727616801 :0.0006784370757168789 +record:0.1387905588959152 day,:0.13170189676518226 day:0.0926405372472647 terms:0.012370854870277776 :0.62449615222136 +and:0.03167291499126699 day:0.023318662485193764 out:0.022249454152513493 of:0.019508175083121224 :0.9032507932879045 +the:0.48568217058793817 to:0.32696107425449356 into:0.09405999746800597 its:0.05537331438733134 down:0.03792344330223083 +the:0.24012746575365887 a:0.040880596770766886 his:0.019956705603497098 to:0.019007076299110085 :0.6800281555729671 +the:0.048743356213286286 and:0.048739314412700206 of:0.031910374723764526 The:0.028351367858645848 :0.8422555867916031 +much:0.486630902280524 any:0.4768157903779122 no:0.017078820687697473 more:0.01116701095497311 such:0.008307475698893082 +the:0.39429631217183175 a:0.06918822352968994 his:0.05067881705584164 this:0.04182901178457378 :0.44400763545806315 +and:0.1559937740876329 the:0.0697851653312596 of:0.06052111073091168 to:0.03968737491064532 :0.6740125749395506 +members:0.11918133688909881 action:0.05951740795882526 Secretary:0.027020292238150122 satisfaction:0.02577410209867599 :0.7685068608152498 +the:0.733946961102969 this:0.15065433780198184 tbe:0.048614889417860886 said:0.04608453727409615 :0.020699274403092063 +One:0.11119732530594806 tion:0.07237097711818309 Some:0.052165125914642944 one:0.047084760537569374 :0.7171818111236566 +upon:0.36537558965560585 on:0.12187439316009908 and:0.058825226933624034 to:0.04692332099266443 :0.40700146925800673 +conditions:0.47328886946575804 as:0.2524262161201274 of:0.1059223557092691 which:0.0730322686343134 :0.09533029007053194 +the:0.4793457108834788 a:0.10633661097159142 this:0.041250677268602626 their:0.03786324995854548 :0.3352037509177816 +and:0.23942849523092224 the:0.17187795376286574 a:0.09867002412758773 in:0.07326121235737319 :0.4167623145212512 +the:0.6038631832595226 any:0.047981338905794944 be:0.03927917826562616 a:0.03685292279667545 :0.2720233767723811 +and:0.18950358648668078 that:0.13161751186186132 when:0.12098104071335052 but:0.10158068422170319 :0.4563171767164042 +is:0.3966410153845503 Is:0.282725307388467 was:0.17171339999804017 has:0.03168767711207515 :0.11723260011686742 +the:0.27901491262782674 of:0.2334204614203013 in:0.2205960192965585 a:0.07200435013601386 :0.1949642565192995 +the:0.08816953786178446 and:0.08366792646579883 a:0.024730388630624326 but:0.02169996141870091 :0.7817321856230917 +of:0.9955536185774845 or:0.00034131270292177154 in:0.00010642265978985551 ot:6.69690557199541e-05 :0.0039316770040839595 +the:0.21080890530452698 and:0.14736083553056667 The:0.13355355544295444 An:0.02824434233187981 :0.4800323613900721 +was:0.3340723932672194 is:0.2670007024767369 Is:0.028997532135063443 comes:0.018095973181583652 :0.3518333989393967 +to:0.7554030611143286 that:0.16505997574339304 the:0.06254947111225247 a:0.009171144445382869 :0.007816347584642891 +to:0.4350976211092846 into:0.22160283595570363 of:0.1324836779800559 against:0.1055007693797396 in:0.10531509557521632 +the:0.5549912940638801 they:0.0652774216492442 he:0.05023210719721064 a:0.048214472674351194 :0.28128470441531395 +been:0.3577331168515887 put:0.037011021721327655 done:0.03325755312045543 succeeded:0.031153772798387765 :0.5408445355082405 +not:0.8222451384759595 be:0.07678342730285785 have:0.06423699042138686 never:0.007910462425809317 :0.028823981373986597 +desire:0.0006348142618813927 be:0.0006170711385112661 ant:0.0005915348842106579 that:0.0004819031957331798 :0.9976746765196635 +friends:0.07529246289661128 father:0.031028626852246482 own:0.03032579844148591 wife:0.0237698264932522 :0.839583285316404 +Sec.:0.7195361614811631 Section:0.007382392541009779 June:0.0010542174348136435 -:8.824055672184002e-05 :0.2719389879862916 +I:0.37720480003163254 to:0.2502372058695096 We:0.21028889906953954 who:0.07678327357421165 :0.08548582145510662 +feet,:0.030941348578783712 country,:0.02724380566903179 great:0.0044890620954760214 wife,:0.003572183861243415 :0.933753599795465 +the:0.19778305491239814 a:0.13728278857972398 and:0.10036180872582255 within:0.08987482784727689 :0.47469751993477854 +up:0.8268685453452572 of:0.03514600256237039 upon:0.028355857296663046 in:0.020282745325070677 :0.08934684947063883 +and:0.0614647207735725 article:0.028028565247838515 one:0.022186808061267275 he:0.004592133718833132 :0.8837277721984886 +the:0.5063028669429489 a:0.1060774759108131 tho:0.044715133754527965 tbe:0.03997121158138991 :0.30293331181032024 +on:0.4755199577701544 in:0.1477577643487132 with:0.10896782683018995 as:0.08565369907374489 :0.1821007519771976 +is:0.6263257646216016 was:0.22873533622845965 Is:0.04003661938192082 has:0.02583343747992544 :0.07906884228809247 +of:0.35232101641785407 Range:0.11752050835588722 and:0.07045303067150802 The:0.04697325318222567 :0.4127321913725251 +the:0.2688755386119164 a:0.1574852785309649 good:0.05086463113373425 tho:0.050381261053144964 :0.4723932906702395 +it:0.21530855477092786 far:0.05435600540266588 feet,:0.0314670607201229 the:0.01152113827145409 :0.6873472408348292 +a:0.9312812840941503 the:0.027190283297507955 upon:0.01736821756752123 absolutely:0.011429853467747424 :0.012730361573072956 +and:0.28087635573700537 nor:0.23057826136463577 as:0.07861166966328062 but:0.04642199900220044 :0.36351171423287776 +day:0.04406339312881995 name:0.023528907801848423 use:0.016481898960333204 sum:0.014793992902522143 :0.9011318072064762 +and:0.10727660665510746 the:0.08894386872873268 to:0.06387790371261381 of:0.06202097058482453 :0.6778806503187215 +to:0.2108606013937198 in:0.20658353875666466 of:0.19749426813863477 on:0.1828441848148054 :0.20221740689617537 +and:0.0520801875779715 enough:0.041298120485186905 ing:0.04051818438362152 ed:0.03322715483091068 :0.8328763527223093 +1:0.8330775175704276 t:0.017397588848939757 I:0.014106813644280788 and:0.01105872895288227 :0.12435935098346958 +behind:0.9638205824388588 of:0.03185653317219721 that:0.002737898517986281 ot:0.0008369140789126824 to:0.0007480717920449037 +the:0.39912880557678165 a:0.09082248328912246 any:0.010949467742942929 which:0.010325733686317944 :0.4887735097048351 +the:0.22329759771735197 more:0.12313558875674839 ing:0.07725498181428125 and:0.07134573532629947 :0.5049660963853188 +done:0.2043067008722641 been:0.14029101701819993 seen:0.058847054495284296 won:0.027909608578074546 :0.5686456190361773 +and:0.05288167515406639 filled:0.04690672271688675 covered:0.03660107077705767 together:0.022066236287575078 :0.8415442950644141 +live:0.08259824391252601 eight:0.04713681509195315 15:0.01101122203717486 1:0.008460831113761818 :0.8507928878445842 +to:0.7838463769463745 will:0.04645825496064105 not:0.015485153528157172 good,:0.010774128025829442 :0.14343608653899784 +died:0.039445835397388655 justice:0.03224957508897633 looking:0.01698482968785009 Congress:0.01602471467928094 :0.8952950451465038 +the:0.4751912881579648 of:0.08357758732429436 silver:0.029922612308896604 coal:0.02013393192430804 :0.39117458028453633 +be:0.3551904505664305 have:0.262676646678607 not:0.08549826238091542 well:0.02486466552167772 :0.2717699748523693 +of:0.6948721366985153 and:0.0575450114763374 to:0.023836406871579233 ot:0.02264421191304287 :0.2011022330405252 +route:0.3507640998358061 the:0.15214270684074285 American:0.08872229756639745 funds:0.08499204761673074 :0.32337884814032297 +the:0.47335688030714307 a:0.0824471239446736 this:0.0460144122243519 his:0.044944440835054486 :0.35323714268877704 +be,:0.07939406321566177 settled:0.04669721007589885 question:0.04041215579207989 up:0.027148192889394896 :0.8063483780269646 +of:0.16649007417205616 in:0.1639712108448019 to:0.13220436037211591 with:0.12428714236697096 :0.4130472122440551 +through:0.24673092848286457 of:0.21159201815670348 and:0.15454416313897948 over:0.10647214513641864 :0.2806607450850339 +time:0.27401426292541725 hours:0.15043505903356588 sort:0.07050067778139693 kind:0.05895964511825174 :0.4460903551413682 +largest:0.3956987051194616 best:0.2835025838466043 finest:0.11099295314788298 greatest:0.082693634322745 :0.12711212356330606 +eighteen:0.32316797880159587 forty:0.19248388586504916 five:0.07222120480464835 one:0.032677307179564866 :0.3794496233491416 +forth:0.24170782438585786 any:0.18407508017863689 in:0.05974118799223203 diseases:0.03870981810784487 :0.47576608933542847 +each:0.4524637725854082 the:0.10985094710225599 a:0.07865583288682926 this:0.040278883544214876 :0.3187505638812915 +largo:0.09932429199027418 good:0.09278360167427817 few:0.0736947824201276 strong:0.06513055752630041 :0.6690667663890196 +the:0.44790998307889945 their:0.08848721796030405 a:0.05474937977386723 be:0.04901312060492655 :0.3598402985820026 +I:0.365146937716862 he:0.3241901165937708 she:0.21773349966654176 they:0.02279666120729012 :0.07013278481553539 +of:0.4096278526290079 and:0.12175993360983127 in:0.09438912370854367 to:0.0812975554998998 :0.2929255345527173 +by:0.31365208277233503 in:0.2915757895404316 to:0.15641371421175074 on:0.13848221749458464 with:0.09987619598089782 +and:0.7381474748502959 or:0.1610159672644973 of:0.09157058447547774 end:0.006005432014641977 :0.0032605413950870005 +county:0.23415919595890144 condition:0.08823761723214094 country:0.08754793608555259 attention:0.061059752114079706 :0.5289954986093253 +to:0.4153709439944943 in:0.16682982665563192 of:0.1343866207064337 In:0.06962832317761562 :0.21378428546582445 +you:0.19220558907576374 you,:0.19034871706498266 against:0.0520919624040006 the:0.04381152789593548 :0.5215422035593175 +and:0.11008150354246207 but:0.09663565781177348 The:0.0638071203452968 as:0.05754778038673229 :0.6719279379137354 +It:0.21066928224560902 there:0.12292306321956187 it:0.09101524126967954 and:0.07551772201668501 :0.4998746912484645 +counties:0.09571685749593545 number:0.08199993167155288 privilege:0.06253000905350627 city:0.05236487945112639 :0.7073883223278791 +the:0.7791633362122236 tho:0.05431790663036454 a:0.04345728315950655 this:0.02115597508115286 :0.10190549891675267 +to:0.5783073264126619 and:0.08412198811356983 for:0.04389474397113033 may:0.03883068000592473 :0.2548452614967132 +the:0.5685885235275746 a:0.3965642111185977 his:0.013229019142310285 n:0.004114698181670365 :0.017503548029847067 +shape:0.11535010346831992 matter:0.05654784816213998 sale:0.054620111182017095 coat:0.0458770513299371 :0.7276048858575858 +not:0.984372865393241 you:0.0042018071290973735 I:0.0021753155334367984 1:0.0011955895111749157 :0.008054422433049938 +people:0.04170089437422913 fire:0.03874225559438474 popular:0.03136159157111696 history:0.031026881148680043 :0.8571683773115893 +of:0.21205605830876403 to:0.18065220699985646 by:0.12725070119080445 from:0.12577377748517246 :0.3542672560154026 +night.:0.010947227578071227 that:0.004271698849691302 a:0.0041023150069193545 which:0.0038804311383449654 :0.9767983274269731 +at:0.3147800513446727 in:0.25532689529929786 on:0.14484005187663992 a:0.14308106068777635 :0.14197194079161332 +severe:0.13509404732627964 heavy:0.08528721975767808 force:0.055313715105376485 few:0.04747456425336662 :0.676830453557299 +corn:0.17243198472677634 cotton:0.06817189423985005 and:0.026695921402427967 wheat:0.02056478736558529 :0.7121354122653605 +call:0.08658181268388823 make:0.06964030193221074 let:0.0631218094586521 meet:0.03811747895468943 :0.7425385969705596 +health:0.4393560385123385 danger:0.11480514019417538 life:0.1073663178725674 peace:0.09909456589828332 :0.23937793752263542 +the:0.9871486902910237 this:0.009356142704770122 its:0.0012990816488183405 any:0.0010948175912309007 :0.0011012677641569777 +chance:0.1298730897162621 man:0.12082440302101326 large:0.0901861830432433 position:0.013264591029761533 :0.6458517331897198 +given:0.9319126937932362 sent:0.03077451653094968 published:0.013413967527534432 ordered:0.00921761931180188 :0.014681202836477699 +sion:0.040102210033386466 ment:0.03578969368053273 ment.:0.014683186278985762 .:0.011299986835892355 :0.8981249231712026 +me:0.7045113143609504 us:0.17884681722135395 him:0.06504459849784158 you:0.03476290490532789 mo:0.016834365014526224 +the:0.23739424444519475 or:0.108803836439825 an:0.07861381121218673 The:0.07600526405897219 :0.49918284384382144 +country.:0.021634666276588235 world.:0.020968264756907405 city.:0.013719557177499293 day.:0.011166604122307985 :0.9325109076666972 +taken:0.1128317023460548 and:0.016669797322927223 in:0.0075788222917504405 of:0.005770096585829775 :0.8571495814534377 +hour:0.2925239816573243 movement:0.1124468301269891 portion:0.10152931215824496 one:0.040446884869379356 :0.45305299118806225 +and:0.07208065815518497 of:0.04440082957752157 the:0.03636531552199043 to:0.017270444947329662 :0.8298827517979734 +summer:0.7000579291463076 return:0.026285786782023687 and:0.024921343195463824 in:0.01563729974473177 :0.23309764113147322 +it:0.18512943039324903 second:0.05383018205601143 above:0.05234924306552944 letter:0.047475952861965105 :0.6612151916232449 +It:0.13545831111126122 and:0.10143454257718693 it:0.07508609354671598 the:0.06282723967043576 :0.6251938130944001 +a:0.20992214961909703 the:0.17946651100977115 an:0.1749256231906636 aforesaid:0.06467718909371854 :0.37100852708674975 +reached:0.6187828458269368 produced:0.16535183945413973 on:0.08649257369894334 in:0.04073515839765033 :0.08863758262232979 +and:0.1772562119639177 for:0.17668996579574914 the:0.16405597112337728 to:0.14639851641802173 :0.3355993346989342 +of:0.9698582698722276 and:0.01820004024264021 cf:0.00831627467817256 the:0.000599217960765883 :0.003026197246193816 +tions:0.4428140692918426 feel:0.2599567889047394 which:0.009625839933579515 They:0.007976222305435631 :0.279627079564403 +of:0.6169041661033833 this:0.02898503130545741 I:0.0255194920874075 the:0.019854243148121543 :0.30873706735563045 +In:0.9326406751313967 in:0.038572341969137315 of:0.006279296582899817 at:0.0014742479005238726 :0.02103343841604224 +the:0.7738921273206909 tho:0.014403040710104306 of:0.004479269136063062 our:0.004425232735104034 :0.2028003300980378 +the:0.2523705380403149 her:0.08197208219054923 our:0.060833415295810746 re:0.05611216865129328 :0.5487117958220318 +and:0.7487744370667131 the:0.04067454934953667 aud:0.017754764820003432 gold:0.014886965356056952 :0.1779092834076898 +did:0.35621284586005747 will:0.19652982635982638 do:0.1891395562513496 could:0.14988498722970758 would:0.10823278429905907 +the:0.2366706104138303 nnd:0.22314684167125198 that:0.08824003833464111 who:0.048850868191659846 :0.40309164138861664 +gold:0.3554837589355244 of:0.10559513107739693 lead:0.055698478366049 that:0.0250516555400416 :0.45817097608098806 +to:0.43524517145430786 will:0.327645904177881 They:0.06531553642198469 To:0.03451122114378817 :0.13728216680203828 +of:0.16094082615161212 and:0.157547147390181 in:0.12295026960919644 to:0.10077274076858239 :0.457789016080428 +of:0.3606390749520261 and:0.13769935053349242 the:0.1147516976558796 with:0.07279034093968284 :0.31411953591891884 +as:0.11983916666180007 and:0.08914278031456672 but:0.038556903937828825 except:0.03810365702770245 :0.7143574920581021 +Tbe:0.29301704179717336 or:0.22118190561699141 is:0.13604997281836778 and:0.03255715564066599 :0.31719392412680136 +of:0.18045799140239177 and:0.11062825091694573 to:0.05759662645419377 the:0.032493706350543425 :0.6188234248759253 +of:0.09035235607734679 and:0.07987098391471971 the:0.07507444376615427 to:0.03280748853043819 :0.7218947277113411 +north:0.9962201296041062 up:0.001088991942624035 west:0.0002995345116942265 and:0.0002503650176373363 :0.002140978923938152 +of:0.30911247941370557 or:0.06100575517178501 and:0.05408049042693606 the:0.05101803623028562 :0.5247832387572878 +which:0.18232948898358145 and:0.08477451607376617 has:0.08314177190243154 It:0.0817118787269608 :0.5680423443132601 +the:0.17092178871810274 more:0.11053300399277742 tho:0.07366469242223928 one.:0.06858463307732568 :0.5762958817895549 +the:0.7838573653550898 tbe:0.21400233060863932 tho:0.001603931482323406 said:0.00018573410442365067 :0.0003506384495238752 +a:0.6528642793589199 the:0.06000580289461345 as:0.0584728068055674 these:0.005919969850077523 :0.22273714109082177 +to:0.16627430341516522 the:0.07526448782563394 they:0.06237074135755982 thus:0.02913047141833419 :0.6669599959833068 +out:0.40634811820323374 over:0.2286065511304861 on:0.20140458074332052 with:0.08685575069341878 upon:0.07678499922954081 +the:0.9274612059901349 their:0.022126431424846937 a:0.01995709295861263 this:0.009272330606671517 :0.02118293901973415 +boy.:0.16878828607539495 girl.:0.15556064259163324 and:0.09823977530628411 the:0.0847854783136867 :0.4926258177130012 +and:0.059697464140734464 of:0.05354537444280397 had:0.03277114699251346 aud:0.031229389664947958 :0.8227566247590002 +formed:0.5068372937012704 form:0.15221561814389764 throw:0.13234739762025818 for:0.015556696268621929 :0.1930429942659519 +of:0.9633511705136659 ol:0.019078149635104198 oi:0.012966736318939952 ot:0.0016025302790935306 :0.0030014132531964643 +and:0.043794329083447325 of:0.03465802241502497 Joseph:0.03417097125460961 John:0.026169672718490942 :0.8612070045284271 +the:0.24953918326744184 to:0.13353558816444464 and:0.07016371057538247 a:0.06698175830117185 :0.4797797596915591 +of:0.07772258408244137 are:0.014361702897513573 recorded:0.012377649747789788 thereof,:0.01210927891086897 :0.8834287843613863 +the:0.26421687297025004 a:0.05586880043031106 that:0.020968065373101946 other:0.02009938335934992 :0.638846877866987 +of:0.905205427230546 in:0.053883239136365564 ot:0.015015733981591018 called:0.0141602095912894 :0.011735390060208063 +and:0.4653687575341708 of:0.20805880823868686 the:0.08817752350669607 or:0.06778229938231223 :0.170612611338134 +two:0.07015254043106527 use:0.045630637380412134 soon:0.04340166344137081 otherwise:0.024126054809697015 :0.8166891039374546 +and:0.1575511263906696 to:0.06664501286320414 the:0.06476479434551162 of:0.04702623509649111 :0.6640128313041235 +lots:0.3330734771337336 parcel:0.13105402363376623 block:0.022396469070209916 No.:0.004462355264900091 :0.5090136748973902 +wrong:0.23514925613648824 in¬:0.004585037280772431 noble:0.004034564760468963 more:0.0024979443790867275 :0.7537331974431837 +and:0.38665893433179394 to:0.19290667182603918 that:0.12427120207056691 or:0.11687944040409408 :0.17928375136750588 +every:0.14768594305336843 recorded:0.06394812733688932 located:0.012073901883219615 and:0.011673861051552813 :0.7646181666749698 +to:0.5496574853793307 should:0.324701438537339 would:0.021347806798706084 soon:0.020918660481259274 :0.08337460880336506 +that:0.06984257392910419 and:0.056785193196154334 understand:0.0501093230850331 as:0.016111465330850294 :0.8071514444588581 +be:0.8627888887383384 bo:0.05605970261282847 from:0.03988265058586098 he:0.03357426938261359 :0.0076944886803585995 +stated:0.21040165039118916 said:0.20410562159479212 says:0.1271255438262831 states:0.05102169736416834 :0.4073454868235672 +whole:0.46653981472521666 entire:0.43351805288904727 full:0.09930138718221587 probable:0.0004506080317091127 same:0.0001901371718111166 +doubt:0.6677659637127134 feeling:0.062121534331961256 grounds:0.014068345842826865 man:0.008246637801221288 :0.24779751831127722 +over:0.6295993871893187 to:0.3431822965048101 through:0.015457496165384178 for:0.004764443851144521 :0.0069963762893424045 +of:0.5949463850600621 commercial:0.04979392435529981 the:0.006267857098192197 wise:0.005603846235042149 :0.3433879872514036 +chief:0.4874249636086202 first:0.023814301839890736 last:0.01318159683884262 general:0.0035384951259284318 :0.472040642586718 +on:0.19074622535319896 the:0.13455830933070234 of:0.10666617447354043 and:0.0780988619027588 :0.48993042893979927 +no:0.23728601066752827 of:0.16072890154863895 or:0.11905772444009209 can:0.06458512088295684 :0.4183422424607839 +A:0.15741942074991758 .:0.15337688579064895 W:0.07578634771609916 S.:0.047282598341763946 :0.5661347474015702 +I:0.07937560251013201 love:0.07652486626881001 Washington:0.028991479831703307 is:0.01576840304201467 :0.7993396483473401 +to:0.03192066577388306 and:0.008633277735586146 the:0.006787054501952729 ner:0.0037521646578721887 :0.9489068373307059 +at:0.34930293592043704 that:0.315357264407959 within:0.20699445053329726 for:0.06484617224134136 before:0.06349917689696544 +in:0.46579714846542053 on:0.20267931827031413 In:0.14622747256751287 near:0.09897397646057612 at:0.08632208423617638 +it:0.07469317712915616 ed:0.052307919716187375 him:0.051152468388223606 and:0.04534693699226678 :0.7764994977741663 +own:0.006664739958692826 homes:0.006279444722859111 rights:0.006075357495313495 forces:0.0047671833781222465 :0.9762132744450125 +its:0.11947826784251549 now:0.07602018094367109 and:0.06586674108295916 t:0.05742874354344521 :0.6812060665874088 +few:0.04199519455936415 half:0.037454977704526764 large:0.025328746904100148 little:0.02218868815579437 :0.8730323926762146 +of:0.31162907219699976 at:0.11925022958336678 by:0.1165021943255491 aud:0.10442460606698904 :0.34819389782709537 +appearance:0.2062928534892738 benefit:0.12159784677702874 use:0.09673824119819932 production:0.038350264531169485 :0.5370207940043287 +should:0.4998974750668375 can:0.1896873813489191 to:0.12876178860413726 will:0.06270281020212856 :0.11895054477797751 +respect:0.084756982623536 profit:0.07706290344445636 credit:0.041346710637733555 removed:0.03445923433251856 :0.7623741689617555 +much:0.11899235169426994 some:0.11496571660922444 State:0.06758327365237046 plenty:0.04831270675912316 :0.650145951285012 +be:0.8146010901849841 bo:0.04234893888378464 lie:0.04135068293331923 have:0.02890253961429474 :0.0727967483836173 +base:0.6874523868879006 road,:0.07176654734284647 streets,:0.0038601562425045395 valley:0.003848763989410567 :0.23307214553733777 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +and:0.14328150172795062 Brown,:0.04678039990444475 ;:0.033469923959241844 of:0.020043437759054195 :0.7564247366493085 +for:0.1689442328156737 and:0.13704999538100432 in:0.12824490563763977 In:0.09327761640113498 :0.47248324976454725 +look:0.06837155498068234 enter:0.0666828414632648 call:0.06462057222489072 act:0.04970569559393027 :0.7506193357372319 +to:0.39447025193737223 I:0.22454749688907125 It:0.11668354390262953 and:0.09725474597188306 :0.16704396129904395 +of:0.26814895499035885 The:0.09822502768817563 and:0.07469965552019638 Mr.:0.057856869800929314 :0.5010694920003398 +te:0.8065633066070798 might:0.03777737373361023 ever:0.032739431873683805 being:0.01883933952872233 :0.10408054825690384 +authorities:0.0630005800472062 bonds:0.04779759264180264 result:0.032043715768232416 actual:0.021890223033971715 :0.8352678885087869 +the:0.5717365908101748 his:0.29812961638072877 tbe:0.08875477484200865 where:0.01246559186653522 :0.02891342610055259 +premises:0.13427259860032925 and:0.05670586948852021 which:0.03406464540389265 I:0.027012977963595766 :0.7479439085436621 +own:0.2333341423601289 men,:0.033895158883262326 men:0.028090838072387794 American:0.023483494338740182 :0.6811963663454808 +rates:0.8253992113315849 cars:0.011038659357206063 and:0.009667000431167272 lines:0.005597484301415677 :0.1482976445786261 +value:0.1072010220138742 depth:0.10613693339847342 population:0.07735359655085834 distance:0.04335942503803189 :0.6659490229987621 +the:0.3891503253025331 its:0.3227747247987628 last:0.03599565088219728 of:0.0072714720513770235 :0.2448078269651297 +and:0.09447583045991541 of:0.0766774007177641 the:0.054250627781651246 a:0.049634711261328304 :0.724961429779341 +was:0.48676417662446386 is:0.2651877752889452 Is:0.044528634196229544 will:0.041249567652071835 :0.16226984623828972 +for:0.6420121532390692 of:0.10435559322752415 through:0.07030573500540982 in:0.06814378567618594 :0.11518273285181095 +had:0.27173183011484126 Government:0.012701137427470272 Grant:0.011919473363987874 not:0.005329891496853217 :0.6983176675968474 +of:0.2238198491655392 in:0.12672128784681952 to:0.12664261657875897 and:0.11945318759474176 :0.40336305881414053 +the:0.5117143923911592 a:0.24762513082202242 tho:0.025466975282943078 an:0.015613989267087819 :0.19957951223678747 +the:0.47556622773291124 a:0.08550763231041182 my:0.06634994288604223 this:0.03855443826880913 :0.33402175880182544 +in:0.3389788926744596 for:0.2899516987277448 In:0.09110772511839575 and:0.07035773220199355 :0.20960395127740633 +and:0.18898512819270108 the:0.10005433663236717 of:0.0692214608072659 com-:0.040079247651480236 :0.6016598267161857 +the:0.13351297493358222 and:0.12328740948112937 of:0.07194419232215928 a:0.05887027424285294 :0.6123851490202762 +a:0.8313059839293517 the:0.0798511207885002 his:0.05594576005518069 me:0.017355108881678846 so:0.015542026345288404 +sympathy:0.15805304178440852 living:0.0742208699951675 touch:0.010788132578888223 travel:0.0026002214332818455 :0.7543377342082538 +the:0.7944358327119073 public:0.07273944034550187 serious:0.06818639115634684 personal:0.024325584851298845 :0.04031275093494514 +be:0.6257061672079263 not:0.05059523784086674 put:0.027598488039411694 he:0.021803027970986242 :0.274297078940809 +to:0.6407693665666399 and:0.09174583839116479 will:0.0884326811052375 We:0.08163166996763427 :0.09742044396932373 +most:0.11139469185467267 low:0.04329775944206342 he:0.011741844411433057 been:0.006981139582243065 :0.8265845647095879 +attention:0.04089863502973721 use:0.018406110151342466 people:0.017564242683816903 name:0.014056783120734039 :0.9090742290143694 +am:0.10735105321808087 have:0.07030835583933713 was:0.05445714280805162 the:0.04166697825227308 :0.7262164698822573 +one:0.9730833064112404 a:0.023813563311149193 from:0.0011048727657010041 the:0.0010390785401656027 of:0.0009591789717438345 +an:0.9511668067866428 the:0.029390947956842103 each:0.0048996199416304195 this:0.0026585870779298384 :0.011884038236954952 +the:0.10157263799126724 a:0.06666086088647823 other:0.030887031819471347 to:0.029990344199054213 :0.7708891251037289 +and:0.14282984453406822 the:0.08416629781439265 of:0.06825553363129629 to:0.05658450240623876 :0.6481638216140042 +expressed:0.18975625912676403 secure:0.03494680764007695 made:0.03107561512123878 found:0.029824610803581206 :0.7143967073083392 +State:0.03557537906827515 one:0.016431930028129337 the:0.014958505479360252 that:0.012278097408151174 :0.920756088016084 +the:0.5540184692890054 a:0.0883837088584374 it:0.05842715850315917 they:0.05595293746999505 :0.24321772587940285 +the:0.14157957910196786 and:0.09864891850610606 to:0.08758762322375992 a:0.08316213798553321 :0.589021741182633 +The:0.17783196749956698 A:0.11336979283696628 the:0.09106407378247622 Mr.:0.06903046043149673 :0.5487037054494938 +the:0.41325836384952114 tho:0.13695193040275438 of:0.08022851012412494 battle:0.043202324587348136 :0.32635887103625133 +are:0.2996609979918056 were:0.15691884302466186 of:0.13541477756669568 points:0.02116679957934609 :0.38683858183749087 +moving:0.15825746437578214 form:0.011562631998068323 moved:0.010661194826812437 tire:0.003166105954680147 :0.8163526028446569 +It:0.4099290402070371 She:0.10333144803924492 it:0.08833467519359711 This:0.07628428664827878 :0.3221205499118421 +a:0.02624754575991062 1:0.02345011027510765 at:0.023342586364918618 lit:0.022962591891289116 :0.9039971657087739 +is:0.1539827784669509 are:0.1342414117871865 was:0.09658333993597604 were:0.07187514207103608 :0.5433173277388503 +fast:0.15568443015988398 man:0.10793052701031144 man,:0.09251197208341212 girl:0.0629806295658117 :0.5808924411805806 +wit::0.22299903388864892 follows:0.02150366898275003 the:0.007689906442627788 .:0.00673267180668818 :0.7410747188792852 +and:0.13190673960682908 is:0.11280021272358834 for:0.10285755880787496 home:0.06332477455860144 :0.5891107143031061 +portion:0.001734782933921435 posed:0.0008519161808481434 1:0.0001633223369893628 motion:0.00013123650855653428 :0.9971187420396848 +from:0.28352640359734965 at:0.2596253010241751 upon:0.1935921286777507 to:0.14224228387987414 is:0.12101388282085047 +was:0.36340581892896073 has:0.21921149892109196 are:0.19299822366469932 he:0.13185733226096283 will:0.09252712622428506 +same:0.13641956112526016 extreme:0.10580897683138396 large:0.07845183554207634 following:0.023999406066615728 :0.6553202204346638 +have:0.1374337102169935 was:0.095331593799718 would:0.08893616179660856 had:0.08209662536260326 :0.5962019088240765 +your:0.6676871318896576 the:0.1687852818489767 military:0.05474227107709074 a:0.026847648857511803 :0.08193766632676325 +A.:0.5893315225698579 B.:0.2609944165629778 A:0.06441728768919953 J:0.04318436881668983 :0.04207240436127486 +in:0.8981416168681015 to:0.03571229490121313 for:0.025464623027657996 and:0.023576439148214764 than:0.017105026054812664 +bottom:0.08129942681032891 edge:0.06146852854425881 level:0.05581291481985635 office:0.0314099746082058 :0.7700091552173502 +for:0.11435080694029309 to:0.08528842639859045 15:0.058420170134380923 ot:0.041247715965296916 :0.7006928805614385 +is:0.31011088884665355 was:0.3080529942489555 takes:0.22522764472533352 has:0.08029695301923115 of:0.07631151915982626 +the:0.7574371389571763 a:0.057213831120656686 tho:0.04143264724993003 an:0.013469444023205301 :0.13044693864903167 +the:0.34718574804274605 a:0.04375918595790296 his:0.029511540836103193 their:0.02035139878075613 :0.5591921263824918 +party,:0.5556733484036158 way,:0.008738094941024063 country,:0.007835973070911958 property,:0.006373094810921255 :0.421379488773527 +the:0.9050466181242919 tho:0.039569612174514664 tbe:0.03144908003409151 be:0.011279865560601633 :0.012654824106500314 +of:0.18973382802892014 in:0.1743939982329539 to:0.17201149580422753 with:0.09417957240781456 :0.3696811055260838 +but:0.35139924692117813 our:0.1696378896262152 that:0.13369565830459224 and:0.1273279479402627 :0.21793925720775179 +of:0.08158704836827466 and:0.04931355328006404 the:0.019987630893773946 that:0.019639837444494997 :0.8294719300133924 +It:0.6241231106183327 it:0.04876858107490368 In:0.04853289593926099 which:0.039180550693183686 :0.23939486167431895 +the:0.07021589002125989 ..:0.0489737530169269 tho:0.01600479657518622 a:0.00678224450129349 :0.8580233158853334 +and:0.195776432293903 of:0.17014394496783636 the:0.06939451352549054 in:0.05301329052031782 :0.5116718186924522 +first:0.3935534581086398 fourth:0.26626472510491433 second:0.06173167658026821 third:0.0405119986496744 :0.23793814155650325 +as:0.4639696244839709 when:0.359571511791588 to:0.02906858719274073 more:0.028662758061060167 :0.11872751847064028 +the:0.5260855603207764 a:0.11706295379168982 and:0.05292259774550572 The:0.03942029629711551 :0.2645085918449125 +a:0.9831636196613992 one:0.009502679752849698 to:0.0056007762559938815 n:0.0003279001434362545 :0.0014050241863209634 +and:0.09886352724803325 the:0.061052525831770184 of:0.05332370232624905 to:0.03818167141249142 :0.748578573181456 +country.:0.05779926441968517 war.:0.041632766011257226 city.:0.028752772624207137 world.:0.024603927112737334 :0.847211269832113 +of:0.23855058645979096 The:0.12506593605546532 the:0.07406674657893678 and:0.07378672718750606 :0.488530003718301 +well:0.5449286675996848 quiet:0.04344603223382968 long:0.03706403860527796 dull:0.033654112441105416 :0.3409071491201022 +made:0.0389318717567311 done:0.027913843536532614 paid:0.024871943521966023 seen:0.02430559492746658 :0.8839767462573036 +Missouri:0.06754736650489669 people:0.03148095070803988 party:0.02141555326452689 laws:0.013655542105549437 :0.8659005874169872 +of:0.15991980360950778 as:0.1448764867611363 for:0.13451981312619588 is:0.11931644494130667 :0.4413674515618534 +give:0.19079950702397058 at:0.18607001557149622 are:0.1744727052845884 in:0.12567761266014685 :0.3229801594597979 +memory:0.0340210552048887 party,:0.029250211554495767 children,:0.02236538737251608 speed:0.011851470379385411 :0.9025118754887138 +is:0.7863005404964313 was:0.17635471099536637 would:0.012658333231933612 he:0.012632495799293625 who:0.012053919476975242 +him.:0.21466979559573204 it.:0.01689888764591553 them.:0.009752891255008807 ?:0.0018905252987797931 :0.7567879002045639 +other:0.037311178464539616 United:0.029985166283391568 the:0.025541480395743773 said:0.0238954462524842 :0.8832667286038407 +among:0.5017362281931386 to:0.258990272386952 with:0.06099533366984055 at:0.059299285901630666 :0.11897887984843819 +allowed:0.2642865407846208 able:0.26149778760261433 likely:0.09836057261232148 permitted:0.08256365536643051 :0.293291443634013 +night:0.24649375918322297 and:0.17752248652490163 for:0.17628090625386578 by:0.08501922242970557 :0.31468362560830426 +to:0.9911752426288021 and:0.003231654282523216 will:0.0013932911676727646 not:0.0012845605702638987 :0.002915251350738109 +of:0.6231771120075136 and:0.07679452365562557 the:0.02741375915376079 or:0.02236552998716011 :0.25024907519594003 +United:0.8676332113667202 free:0.023181341487669167 Southern:0.021905621170451597 I:0.002588997011178776 :0.0846908289639802 +end:0.13000413648696385 point:0.08072905945794887 foot:0.07453496044029696 head:0.07437775060570853 :0.6403540930090816 +their:0.16305806357193284 the:0.14144226756474781 from:0.1371838707874819 and:0.10012789132672577 :0.4581879067491117 +names:0.055339713885689173 minds:0.05307686848092539 attention:0.049665820035064194 lives:0.0356700725932229 :0.8062475250050984 +and:0.409075896832501 duly:0.26378676502623827 was:0.08914240381155747 were:0.02088956896607633 :0.21710536536362696 +if:0.25402101879543226 and:0.20194106709289247 under:0.15229704896914062 that:0.11147489828710155 :0.2802659668554332 +the:0.23961292032874623 and:0.10544795465764432 their:0.06186417490539526 a:0.05799579057438185 :0.5350791595338323 +and:0.19336289585730781 of:0.12846651911575352 are:0.09790052624864012 does:0.09406071196607846 :0.4862093468122199 +heard:0.4813007484882243 too:0.15709952525750853 that:0.10343918446982935 as:0.08142973034787654 :0.17673081143656136 +the:0.16087987527774314 in:0.14127415589167366 his:0.08316747345765979 or:0.0725219561763548 :0.5421565391965686 +yet:0.15874059076071437 in:0.10545831092734155 declare:0.04210554051683026 says:0.03928584249823229 :0.6544097152968816 +vote:0.01613134223885894 law:0.014831968114306327 general:0.013848885249097132 chance:0.012322331814073446 :0.9428654725836642 +It:0.25120232019021893 st:0.1690447834523292 There:0.1319065263897037 This:0.09331383878123731 :0.35453253118651096 +-:0.013618873267307544 a:0.011781180549825208 an:0.0076310005624960296 of:0.005552588992298016 :0.9614163566280732 +state:0.7577434137233549 population:0.051151860266567976 front:0.018561308472914807 number:0.01129977872654417 :0.1612436388106181 +other:0.02195686694775862 to:0.016307878033761547 the:0.013092408258357396 and:0.010721939299819367 :0.9379209074603031 +and:0.15099004560352236 the:0.06187459548910364 of:0.05839573897668255 to:0.029879010273211864 :0.6988606096574795 +C.:0.1676779112965823 Smith,:0.07639903713011753 Johnson,:0.02314993785768698 H.:0.01796174428124619 :0.7148113694343671 +to:0.4031920624940917 may:0.21686721734580955 note:0.050400066761086396 otherwise:0.04522458146728733 :0.2843160719317251 +and:0.35400916090855844 desire:0.2898113102231281 a:0.07255693134293374 the:0.031771672449734625 :0.25185092507564516 +and:0.2210790117225557 to:0.060512000332660576 of:0.05257978219939135 block:0.034728594789578994 :0.6311006109558135 +of:0.979452443423833 uf:0.008995908055178723 oi:0.006120798976908721 ot:0.002099797531860912 :0.0033310520122185245 +was:0.15404822718514702 of:0.08149177835284051 and:0.060463379718199345 the:0.052310240253311956 :0.6516863744905014 +com-:0.060603827182584086 the:0.04523480208697387 and:0.04352819754176339 to:0.04285757444071277 :0.8077755987479659 +of:0.8602848500432535 ol:0.09863129192975989 for:0.022192505625116387 by:0.013332923199870667 and:0.005558429201999583 +find:0.25793524373958876 see:0.24198321787059407 learn:0.09892399218276045 be:0.049626012357296474 :0.3515315338497603 +for:0.6500952292983627 to:0.1069395484048555 tor:0.07959489254631026 and:0.061954745591472814 :0.10141558415899855 +know:0.41246686823705275 and:0.0908057519597223 see:0.05090853646717403 to:0.049596199591818026 :0.39622264374423277 +pro-:0.3810025656845195 own:0.2920724503860763 pro­:0.03309010379587214 first:0.029481556221339154 :0.26435332391219296 +of:0.3522231956154607 in:0.21358707744819316 on:0.10578602880491948 from:0.07354575128389136 :0.25485794684753516 +on:0.9999751006146207 to:7.579644079271257e-06 and:7.247429636206296e-06 for:6.389211698377386e-06 :3.6830999655148844e-06 +After:0.3207586332212261 On:0.15325950176764477 Before:0.10554189370382235 and:0.08083847528707684 :0.33960149602022993 +came:0.1650062376929302 went:0.02969420867808639 and:0.0074103881210478674 race:0.0028505414206774072 :0.7950386240872581 +world:0.37726894461255667 world,:0.103015460279338 case,:0.01924676690732542 matter,:0.017742327214492253 :0.4827265009862876 +the:0.5723312833385812 tho:0.18143199657970205 a:0.04412818323744495 this:0.011551151162882758 :0.19055738568138902 +same:0.00908474386188323 old:0.008947085642748839 great:0.00888024667927426 most:0.008694722331683512 :0.9643932014844101 +his:0.6140047086678607 a:0.22971929444423092 bis:0.06518915338345509 the:0.034169808147517244 :0.056917035356936214 +are:0.34703824485204304 is:0.12474432062747262 was:0.12114671776247145 were:0.10443088966715718 :0.30263982709085585 +the:0.19577607944185385 and:0.10471050908678117 to:0.06130272448806907 of:0.046941077888606096 :0.5912696090946897 +was:0.32966456111852316 were:0.11437517202389946 and:0.08510513784152553 by:0.07951240491737764 :0.39134272409867427 +a:0.38402309069598106 the:0.09968815855527166 Mr:0.07553528324395008 near:0.06950568037764927 :0.37124778712714773 +be:0.4387330826874776 not:0.3440721514593136 bo:0.06794218441130291 have:0.03594853646456282 :0.11330404497734295 +that:0.550556839767033 which:0.17171640847967037 it:0.16530569227612857 or:0.07383136479896378 they:0.03858969467820443 +of:0.41469242540825785 and:0.15149052126413504 with:0.07928049364166961 on:0.05015096271102534 :0.30438559697491224 +diseases:0.2885235539892827 ar:0.07190534840435274 tl:0.047225207774060744 A:0.0291226802776686 :0.5632232095546352 +of:0.19397833427675124 and:0.10348266116328975 are:0.04392988957938041 the:0.041905046490886694 :0.616704068489692 +to:0.19160819962168213 at:0.12202102503162869 in:0.10557882574545391 were:0.10322688218615285 :0.4775650674150824 +with:0.5174387565456157 in:0.40802847626864247 at:0.013746391111854018 of:0.005933296177528325 :0.05485307989635953 +to:0.23579071843804567 4.:0.19247254723263083 in:0.02964583805797922 1:0.027989628011584094 :0.5141012682597602 +purposes:0.22817170695222716 payment:0.12437614569139259 publication:0.023248715840030985 construction:0.016253127418628836 :0.6079503040977206 +She:0.38751659924912146 and:0.24730393292379121 Smith:0.12772965617491674 was:0.07325431184634354 :0.1641954998058271 +the:0.13399918800742738 and:0.11584190427400792 to:0.10010836461166184 in:0.06707781632830953 :0.5829727267785935 +on:0.2684422854995518 in:0.1617904559045474 by:0.15237596662786457 is:0.08047210039836833 :0.33691919156966793 +the:0.2568523094841885 a:0.23178328349175673 one:0.16506597542157583 one-half:0.07212152991854427 :0.27417690168393455 +poor:0.0989376968007518 young:0.0903439198782245 black:0.06994366555175374 the:0.055159949117266294 :0.6856147686520038 +time,:0.7026398518554334 time:0.17076659799107582 which:0.018284104411237886 come:0.012308975517132996 :0.0960004702251197 +of:0.37687845348128857 with:0.2584480868724728 for:0.08669149623629846 in:0.058085145091805214 :0.21989681831813496 +the:0.5210430647527157 this:0.07597801844226311 their:0.036948820419260155 his:0.03462807608750909 :0.3314020202982519 +by:0.4810137125759284 with:0.10538459584474699 to:0.10215388119563915 at:0.10164146094426581 :0.2098063494394198 +trees:0.006189683434536681 leaves:0.00019093328178372166 animals:0.00018921399420514793 those:0.00017457733689128514 :0.9932555919525831 +south:0.1854909302757142 N:0.15409603165964986 S:0.13955342425872375 running:0.09825856563017249 :0.42260104817573985 +the:0.5779903866640324 a:0.060879855036679593 tho:0.041883050047276826 of:0.02671903595562203 :0.2925276722963892 +are:0.14433938177359007 of:0.1051688637484557 and:0.06397835760595821 in:0.040787305568113816 :0.6457260913038823 +described:0.2581690807109048 well:0.029450912687443032 useful:0.027655953428386348 proud:0.012820808923949824 :0.671903244249316 +and:0.5270292067892932 are:0.0583425808691289 but:0.05388476155782407 if:0.05050349753152512 :0.3102399532522287 +of:0.3471941608224731 with:0.11146287391054423 by:0.10121796056289384 in:0.061068714558724646 :0.3790562901453642 +sound:0.13278210687687136 call:0.10287286188667104 turn:0.0970452978303475 had:0.0869461776615456 :0.5803535557445645 +that:0.4655921740271018 the:0.18452808149484404 a:0.1096886828194122 how:0.07242186130411903 :0.16776920035452303 +the:0.10753951529126804 now:0.10472342511628013 thing:0.09938013684965873 very:0.05929215112109989 :0.6290647716216933 +which:0.08371838907995396 there:0.06552590764878485 eyes:0.05630792687807497 they:0.05357773446600443 :0.740870041927182 +of:0.32645062161747734 to:0.14472272886906054 in:0.14378001572535032 and:0.07712439548278982 :0.30792223830532195 +in:0.6822741059708197 such:0.015453710136066234 iu:0.013402765680324823 the:0.00391882399018482 :0.28495059422260444 +southwest:0.4276304733253059 the:0.31319417527739907 northeast:0.14376557191119466 a:0.06397651440191733 stone:0.05143326508418288 +out:0.0829322201821784 and:0.05338306176305852 one:0.037023479310541244 the:0.03156866586633791 :0.7950925728778838 +the:0.5912653229397041 a:0.16300059140652953 equal:0.059058028012854674 and:0.03226721885027704 :0.15440883879063472 +':0.3255568591339265 was:0.29683272856723 has:0.09030037743298322 had:0.0581680236064579 :0.2291420112594023 +the:0.5243017502934663 his:0.07404915648953513 their:0.060926759195865134 a:0.04852579322147309 :0.2921965407996604 +J.:0.10165714419179699 M.:0.08278574251036205 H.:0.07914642680662973 B.:0.05961008174448966 :0.6768006047467215 +The:0.45891582233572203 A:0.14650102048766364 Tbe:0.1410837123148885 the:0.09349478109218698 :0.16000466376953876 +and:0.8318757798572407 aud:0.07473239460399421 to:0.03894368812631439 the:0.023547482437096735 :0.030900654975353967 +the:0.25698799594845373 and:0.1225978358436782 The:0.07691967166914192 a:0.05681755639791983 :0.4866769401408064 +the:0.34501104239145625 this:0.3061502587964549 Ihe:0.12197360780349657 tho:0.08066137762580362 :0.1462037133827886 +it:0.5862780362245461 and:0.2787801076272348 who:0.07413758552426629 we:0.04320260013622683 :0.017601670487726075 +the:0.6373247731340265 Its:0.12748506670747675 our:0.09938276235152795 some:0.08826183757258207 a:0.04754556023438673 +meet:0.3024153872205284 get:0.04875958913280752 drive:0.047139409371901454 make:0.04623345775402483 :0.5554521565207378 +three:0.2376349807766683 week:0.022496437879250715 half:0.012771655043418935 year:0.010684503454605693 :0.7164124228460564 +I:0.4602389432434999 it:0.08959489399546831 his:0.06295504941371681 they:0.032372740746553975 :0.354838372600761 +am:0.7663117007981753 was:0.04592846135114221 don't:0.044755287451755534 have:0.03552284266851608 :0.10748170773041088 +take:0.47073624235581873 the:0.1372997207033023 give:0.05986939277741902 be:0.05171832507822603 :0.28037631908523397 +de-:0.3130356872363101 George:0.09463827547065856 bonds:0.03839354344653058 road:0.01969444898329936 :0.5342380448632014 +and:0.9555702582763639 aud:0.01908997340209845 ail:0.00924612237712882 ami:0.008960942253164841 nnd:0.007132703691243998 +and:0.38889577073632775 that:0.10065624699718224 But:0.05666882598898874 as:0.05371568607120685 :0.4000634702062944 +and:0.3543484956707542 at:0.20333737203088956 to:0.1013294947206231 that:0.09585273964481567 :0.2451318979329174 +in:0.4639641643215059 In:0.08749194422220219 with:0.06579611727997096 no:0.02522678245007798 :0.3575209917262429 +more:0.5033241878540864 of:0.36215846659813267 from:0.08663017264472023 so:0.012236590093877144 :0.03565058280918344 +the:0.32641882304947906 a:0.006168793197135095 p:0.005463655316783789 -:0.003381786010849388 :0.6585669424257525 +was:0.45045262345312903 year:0.2351364854269395 is:0.06010941805072164 will:0.04547074228814843 :0.2088307307810614 +been:0.457513529756091 appeared:0.040374601889452626 lived:0.03263932438823774 made:0.02348986245198683 :0.44598268151423187 +by:0.32613666521340123 in:0.1880971613772186 to:0.1657318686946414 and:0.0669580526855133 :0.25307625202922535 +the:0.2708504956694658 and:0.15206879158930992 The:0.13053074562552855 Russian:0.0979759336608197 :0.34857403345487603 +the:0.02076480039315684 said:0.020194571130885727 most:0.01264691771303298 of:0.009918080454873844 :0.9364756303080506 +and:0.15607206242988417 of:0.110925575607217 the:0.10453261303115954 to:0.10429181298082864 :0.5241779359509107 +i:0.03344758838349717 party.:0.026545641111003607 and:0.012815857844557407 but:0.012463854151142862 :0.9147270585097989 +and:0.15488654497146118 of:0.11717991032898617 the:0.0896485548034281 The:0.05360299984979916 :0.5846819900463253 +a:0.9959485807486321 full:0.0006674061099866113 I:0.00041350684400092303 further:6.86504683336693e-05 :0.0029018558290467436 +the:0.6532376394779863 tbo:0.2997685277997755 our:0.011779051938163042 The:0.010587516446781686 :0.024627264337293498 +and:0.3183344756055157 to:0.27291016009236563 the:0.03354944531523538 by:0.027643171943097854 :0.34756274704378554 +his:0.723086771913813 them:0.05987611689433538 her:0.05842516757015013 it,:0.057436191601361014 :0.1011757520203405 +it:0.8741987473038841 he:0.06495774958789143 sho:0.01047060990214683 there:0.007569982151431728 :0.042802911054645794 +or:0.0753164872227665 stage:0.04567480523008005 sections:0.020307133230803714 power,:0.014287037557648609 :0.844414536758701 +about:0.24666509149767563 land:0.12772783377629723 the:0.07524144393978616 five:0.046661319266712006 :0.5037043115195291 +avoid:0.603799360556255 be:0.23462749485119133 has:0.017501191517114854 which:0.0173794295321829 :0.1266925235432558 +the:0.2742821466964425 a:0.2155986234264981 electric:0.1122926611713133 ex-:0.048966681553421744 :0.34885988715232435 +of:0.20210564911196402 and:0.13639597939177392 by:0.050772497620224816 to:0.03683247925568576 :0.5738933946203515 +state:0.11006725590164321 number:0.05331345933732162 spirit:0.049942110619829595 series:0.044552086305777554 :0.7421250878354279 +the:0.1665150545046058 and:0.12270384684564527 of:0.06628512123844262 to:0.0401975766158786 :0.6042984007954276 +the:0.6474565934278864 a:0.23788235750619283 an:0.0316662593762532 certain:0.012543349475146832 :0.07045144021452077 +pretty:0.3406010446880357 popular:0.11085102973801106 ice:0.07513253312606759 now:0.06757846299221125 :0.4058369294556743 +distance:0.4713640832323914 miles:0.11349464125043919 reason:0.0871723472830791 inches:0.026911343267748328 :0.30105758496634194 +extend:0.0021723444074271806 learn:0.0014970892728291133 not:0.0012264060893107777 color:0.0011034149320882731 :0.9940007452983446 +events:0.31814106702513245 chains:0.06115557088724119 state:0.037777838256718044 law:0.003826382093986656 :0.5790991417369217 +and:0.29595116059606424 but:0.1202750052323114 that:0.08111963929065566 as:0.069031597137233 :0.43362259774373585 +the:0.9058751905714059 th:0.07807917668487618 3:0.006488192918806895 tho:0.004429282272187549 :0.005128157552723559 +The:0.2668818902980624 and:0.2368000080498896 the:0.05875896818986749 to:0.043008928963566916 :0.39455020449861355 +the:0.081508786786251 it:0.06547175923961276 and:0.032328405810174286 a:0.028221237282590295 :0.7924698108813719 +board:0.21065332985583393 development:0.08982008621865983 balance:0.04427240338328813 laws:0.02724988275081251 :0.6280042977914057 +by:0.1153427006120201 and:0.1074603850505404 of:0.09744986866128186 the:0.08724957301152608 :0.5924974726646315 +men:0.09996209901314515 that:0.08881878270224515 side:0.05740419527202755 stream:0.011397584940475549 :0.7424173380721066 +with:0.19435981982382253 can:0.16663239478879266 of:0.1388712343378132 that:0.12629032223801576 :0.3738462288115558 +and:0.13869106018012928 of:0.12386410735933585 the:0.09400799066512228 The:0.05584005487766385 :0.5875967869177487 +American:0.34475334853313266 young:0.15806920703479993 whole:0.07718408896423569 the:0.06957411857213651 :0.3504192368956952 +Is:0.19098803587222649 is:0.1580474760741452 down:0.09397742604333911 and:0.09317175783288303 :0.4638153041774062 +five:0.4018972952058535 three:0.12314150244782784 30:0.11950602491372787 twenty:0.11284088849210619 :0.24261428894048473 +a:0.42744277136700465 the:0.2207135814030499 an:0.027141537076302784 two:0.022378736486720237 :0.3023233736669224 +to:0.9769082792942232 the:0.006641991163921353 a:0.004116661170103267 and:0.001456053902659749 :0.010877014469092474 +of:0.5984217894931994 that:0.12241190013715106 and:0.06782946318265837 to:0.04072845666946025 :0.17060839051753068 +eight:0.09984115453509218 ten:0.0894952144566513 the:0.051066566867824965 14:0.05038236618342784 :0.7092146979570035 +we:0.6447254488406607 they:0.11317805745972088 and:0.08732889394843446 I:0.0705846208649153 :0.08418297888626855 +as:0.33273436048402144 who:0.20109202352910183 which:0.18203005575508147 that:0.15282654719851174 what:0.13131701303328364 +and:0.17682182026562596 the:0.06419425476611985 of:0.059219895658375044 to:0.03678638563181178 :0.6629776436780673 +and:0.16658699424776888 or:0.1401571108708824 to:0.09519618005460821 he:0.07283222013266394 :0.5252274946940767 +to:0.9999995182761382 bis:1.2543923002948075e-07 of:8.054075324490098e-08 the:5.338472405251861e-08 :2.223591544045432e-07 +the:0.580037693466805 of:0.24894259815420164 in:0.061692389135367495 lower:0.01296572582916596 :0.09636159341445978 +do:0.024755469203961527 which:0.021360454319571096 that:0.009534689845966447 about:0.008084373692470994 :0.93626501293803 +arrived:0.123219705293219 was:0.10678506768094348 and:0.07547803147068127 is:0.03364455401478128 :0.6608726415403751 +of:0.23152465915418743 and:0.17368058782992107 in:0.12220769596874222 to:0.10045577659804904 :0.37213128044910027 +the:0.8693365982623731 a:0.11394152299607026 direct:0.006226835803400786 tho:0.0023670119786425277 :0.008128030959513411 +killed:0.06030090804947712 arrested:0.048479701167616185 accompanied:0.03953917764482215 shot:0.03613674100520944 :0.8155434721328751 +couple:0.9026943867522516 number:0.0711954407233367 plan:0.0017460188772571155 matter:0.0012670102543063297 :0.02309714339284834 +sympathy:0.3696240751891275 connection:0.11200342217594436 credit:0.06035742701690558 trouble:0.021727952112161546 :0.436287123505861 +their:0.4892257878731557 her:0.24105133938548784 our:0.11833995191047327 his:0.05724327278218087 :0.09413964804870228 +at:0.9132042952946393 the:0.03080863271653178 for:0.009890385621006923 to:0.008354821396279759 :0.037741864971542215 +said:0.45549036283753774 going:0.2536384807795318 not:0.13248463379122807 likely:0.025924854266542896 :0.13246166832515965 +other:0.26953345044864285 man:0.18439125475452994 seemed:0.16979777737821966 of:0.16319035724675274 :0.21308716017185472 +companies:0.018004347000525257 count:0.00779189300690913 of:0.00669474560825616 in:0.0033708909657804913 :0.964138123418529 +a:0.1559510693790204 of:0.10784741591110296 the:0.06574924060080103 and:0.04877405258372609 :0.6216782215253495 +the:0.9886107596482251 tne:0.005845661817064544 it:0.003521268924209163 its:0.0011810278061564264 his:0.0008412818043447859 +and:0.18781379449892288 The:0.09879503826719839 the:0.08695548775060319 of:0.07601358122749945 :0.550422098255776 +that:0.3780336383127363 by:0.1380649373373988 because:0.13082138666580378 of:0.10176457037736021 :0.25131546730670096 +of:0.02205308441107035 and:0.00860732259475989 to:0.007912016869245787 street:0.006911090835692096 :0.9545164852892318 +you:0.6291119264926841 defendant:0.36982538097573564 ou:3.162569787118209e-05 John:1.2320638593163367e-05 :0.0010187461951158873 +or:0.321514811181729 any:0.1261402471552796 the:0.11092675635687752 a:0.06676355303253743 :0.3746546322735764 +and:0.061640272006286974 away:0.03147123634289639 ing:0.015700829252215127 out:0.014656787532876636 :0.8765308748657249 +the:0.30375153141286976 a:0.23849623290513286 his:0.09381406572197051 their:0.04315559606597835 :0.3207825738940484 +be:0.9012900489947157 he:0.03367753467221351 not:0.023266205170010927 have:0.021024640735263705 been:0.02074157042779602 +hands:0.21406117224237178 ground:0.15284264359436983 bread:0.06805848188259689 house:0.06623790707806222 :0.4987997952025992 +to:0.4352792981172673 of:0.3945464546713197 for:0.08827892721659984 and:0.021076743030157847 :0.06081857696465511 +was:0.30322579959339024 is:0.12277142639156975 the:0.0031844831139110174 has:0.0008858071095043536 :0.5699324837916246 +;:0.00024309585021384716 the:0.0002321234261908596 expenses:0.00014376831831419072 rapidly:0.0001306737115201211 :0.9992503386937611 +and:0.22899536751090196 the:0.21278832790883243 to:0.07002711192636539 The:0.0493513437468403 :0.43883784890705996 +and:0.7946680700043732 I:0.07379598618142402 we:0.07195453788003067 which:0.03194733753527125 :0.02763406839890077 +the:0.5676991679202621 a:0.09354509267439648 The:0.05594708165587219 little:0.0263878844257009 :0.2564207733237685 +of:0.3650779798005158 in:0.23058901224591202 at:0.20117592537458268 the:0.14248536389577549 :0.060671718683213895 +to:0.1354218899863692 and:0.12348357540175468 of:0.06592566566826706 the:0.0392965737084304 :0.6358722952351785 +president:0.08592864591934861 ad-:0.05664004162029579 re-:0.021878789277931285 ma-:0.02150341061494563 :0.8140491125674788 +the:0.5031977145292419 this:0.06431632382321764 a:0.05475241820770984 his:0.03595402991834768 :0.341779513521483 +or:0.6308777424893237 any:0.13388844097270203 a:0.04307471402946699 the:0.03726373032903593 :0.15489537217947136 +to:0.8794532787588517 in:0.0531593340046413 what:0.052880919706629746 that:0.008290955396940615 :0.00621551213293656 +the:0.994985870130335 our:0.003684516874113295 this:0.0005148200175971598 tho:0.0003199465537093906 :0.0004948464242451594 +of:0.2500118595203184 for:0.221692307369789 in:0.20375216289493445 to:0.14643193946526512 :0.17811173074969297 +made:0.21022259689236952 appointed:0.12773877429619013 in:0.12384358682863816 offered:0.10418072555047615 :0.434014316432326 +and:0.19341813079038034 of:0.1635445144976827 had:0.1055661614365901 which:0.08899812718674843 :0.4484730660885984 +that:0.7860414297758909 as:0.02314966799177993 far:0.011268157550008305 when:0.011154145451469453 :0.16838659923085145 +said:0.6455754551023453 found:0.04840627148042968 decided:0.017547590062869833 evident:0.01710034950716207 :0.2713703338471932 +Lake:0.278701042245854 great:0.22871686145364056 gold:0.21505936690566352 original:0.02271348726117799 :0.2548092421336638 +and:0.15969338590809212 of:0.07652691173229761 the:0.07541784629906233 to:0.03374049794848493 :0.654621358112063 +news:0.07777457898258186 people:0.05732949231774903 effect:0.03743834582497156 course:0.03184535789473169 :0.7956122249799659 +its:0.19129231240128491 my:0.1894995339075156 a:0.1410668489997544 the:0.09394630110102842 :0.3841950035904167 +to:0.955168345169649 can:0.01407878715907146 will:0.012478984356417724 did:0.007112221748008326 :0.011161661566853468 +own:0.16402940151130055 place:0.12741082300297324 body:0.10113357485099729 people:0.04575533479025901 :0.56167086584447 +the:0.39484201877020153 this:0.03766168489009392 a:0.0293051573023869 Mr.:0.0285500778079391 :0.5096410612293786 +as:0.3605676420263761 and:0.09990999394434036 largo:0.05186057365025441 ed:0.03543785367806694 :0.452223936700962 +established:0.7897378290201772 central:0.037507188384439435 German:0.03210961137696702 Mexican:0.029727078433972296 :0.11091829278444407 +of:0.9150934842938656 the:0.06460717758335402 he:0.00632708537190477 or:0.0020416098664801205 :0.011930642884395454 +as:0.8679198383425705 ;:0.039357075114106535 should:0.02849187519160238 can:0.02392638184613348 :0.0403048295055871 +lady:0.0473919809883203 street:0.0320831040488386 first:0.02734966176498482 great:0.02330993136683843 :0.8698653218310181 +the:0.9625568450642598 a:0.03454747067163864 tho:0.0011553608584522906 th:0.0010686361213963888 one:0.000671687284252868 +large:0.04435757941016661 the:0.03978627297308193 great:0.030724893580412933 few:0.023891663278534526 :0.861239590757804 +end:0.8607870776163508 hour:0.03782950432883695 close:0.012786037929327684 days:0.011652636955090409 :0.07694474317039425 +was:0.5822331451807465 be:0.13335112120212486 is:0.1263461725659865 Is:0.04975226487360595 :0.10831729617753613 +In:0.18381893515709602 and:0.09585641916615312 with:0.08393644966179274 As:0.07805424133712342 :0.5583339546778348 +whole:0.051166522283689904 last:0.017438764388207097 American:0.01614787095554327 new:0.014833862945132087 :0.9004129794274276 +that:0.2961210177774652 of:0.20234577104960344 in:0.10061793079451518 by:0.09365204715010797 :0.3072632332283084 +heavy:0.28928954404411517 clothes:0.024354590136776284 sale:0.02024028733597345 the:0.018762475515882195 :0.6473531029672529 +the:0.20188533723114754 and:0.09779175765917372 of:0.09722659522931458 was:0.05529257784789978 :0.5478037320324645 +will:0.058227088304071015 I:0.0550483330312426 a:0.009202360504372818 friends:0.008544165443301614 :0.8689780527170118 +the:0.26114337811114846 Congress:0.0013711893057817728 he:0.0004505466825177214 11:0.00042948061768249737 :0.7366054052828697 +the:0.11655547843897507 and:0.09692192401248202 of:0.09457580726392045 to:0.06967325070167907 :0.6222735395829435 +its:0.42380154225795974 the:0.2686728959348419 tho:0.22207087551463997 their:0.06637734128853526 Its:0.019077345004023336 +of:0.1598205796860662 and:0.1106009198739736 to:0.0929156670235388 in:0.08727697513500947 :0.549385858281412 +sleep:0.11627686468740246 may:0.1126137682101876 read:0.05834287660357784 eat:0.05213996688586247 :0.6606265236129696 +they:0.5888234857650717 of:0.13540290523641754 and:0.12346788262839535 that:0.05516318937391253 :0.09714253699620301 +United:0.9039499190652754 Southern:0.018791330303500012 following:0.006633889480730656 two:0.003983171089251332 :0.06664169006124261 +the:0.024739031603258542 most:0.022207034787462165 same:0.019285594393111248 said:0.017133131934606898 :0.9166352072815613 +a:0.675052954337391 of:0.2687655467368201 and:0.014592880331337316 the:0.006190876657530644 :0.03539774193692099 +of:0.541264643387432 is:0.13973441993668756 for:0.11989477541854181 was:0.024659679464055426 :0.1744464817932833 +and:0.16185634882636551 the:0.15118905543946137 The:0.15003311640964143 political:0.1076288990038149 :0.4292925803207167 +of:0.8283963510809341 ol:0.0927096357475013 or:0.026513709553827366 during:0.007231856367359072 :0.04514844725037804 +the:0.07995395595278801 of:0.05358856655887327 and:0.041319292708466446 a:0.033977791162248056 :0.7911603936176241 +turn:0.09262748693473634 liable:0.04163086953403134 port:0.020652297404258314 turned:0.015501969128945052 :0.829587376998029 +him:0.36837497442228717 them:0.2033350667486168 you:0.11561416687602002 is:0.06340193316311428 :0.24927385878996175 +feet:0.7179640147196865 chains:0.22258645736015367 feet,:0.042373083574812065 ft:0.010331097684139303 feel:0.00674534666120851 +covered:0.9873777087094111 furnished:0.0010719359329335802 laid:0.0007979915471984154 made:0.0003558691547714255 :0.01039649465568544 +people.:0.0013750687590156775 life.:0.0012730225228933148 State.:0.0002873812177282088 market:0.0002524033655414922 :0.9968121241348211 +payment:0.0468039281320042 interest:0.0286717536591532 estate:0.026566210028263246 property:0.025557624044440754 :0.8724004841361385 +.:0.01735276238182718 tie:0.015585939894783973 the:0.00839530091775702 i:0.007717685348946344 :0.9509483114566855 +guests:0.35347486336224354 also:0.18376843566423118 kept:0.16905314443934932 sold:0.053301225322214915 :0.2404023312119609 +and:0.1271392678416521 of:0.09759006835469804 At:0.09234616334704228 the:0.07794319473025188 :0.6049813057263558 +it:0.3836596933595214 there:0.2662703250926168 that:0.1410153422827447 this:0.09290516050481396 :0.11614947876030311 +stomach:0.06159458696457772 the:0.017729578032688834 children:0.013510669813694543 law:0.004749651019161743 :0.9024155141698772 +office:0.11074099252669554 hands:0.05001320254274091 history:0.03603216486003601 face:0.027225366536327508 :0.7759882735342 +a:0.3340253137507277 and:0.19078232632633396 to:0.1258481222607228 bo:0.09039690006639857 :0.25894733759581695 +are:0.21189544495310922 sons:0.16149045773380472 wore:0.12201021123730893 men:0.1159864593901448 :0.3886174266856323 +and:0.11284755256049578 of:0.08709317387277075 the:0.08353328557250123 to:0.04310282077605494 :0.6734231672181775 +lie:0.10819559538410772 a:0.07393475079071019 At:0.03910693785841764 the:0.0316317571362768 :0.7471309588304876 +the:0.37654465084162786 -:0.25676172951706533 tho:0.20947805374457376 The:0.09352136331243355 :0.06369420258429953 +of:0.7632759332432788 The:0.06257251638195778 in:0.043546495029851855 the:0.04236874000125692 :0.08823631534365467 +and:0.13014776179820678 to:0.11505662697206129 by:0.10056742082465601 the:0.09835996073332884 :0.5558682296717472 +love:0.16122689703857662 little:0.05055390633787043 man:0.0485834773726091 country:0.011941655585887756 :0.7276940636650561 +the:0.7788064444822012 this:0.12776952881748646 a:0.07663293995425981 our:0.00924193554912494 Washington:0.007549151196927587 +the:0.12939031963313877 eyes:0.09199260134997968 own:0.057519685740082954 poor:0.029515627591712747 :0.6915817656850859 +No.:0.22745346906613867 Block:0.19874805906601772 1,:0.1543348848020922 2,:0.07445884535789125 :0.3450047417078603 +man:0.7297206802676848 son:0.09065242562437295 friend:0.03126259358727226 wife:0.010788569869361992 :0.13757573065130796 +government:0.16341059853662865 President:0.11264068851591698 people:0.02962352003489332 court:0.02552543878154001 :0.668799754131021 +it:0.9813290477068666 themselves:0.008595029130584691 turned:0.001821274449509043 him:0.0009940399159184745 :0.007260608797121298 +not:0.3738227149369507 hereby:0.15248745686459847 being:0.10710084701310549 usually:0.05866903425157796 :0.30791994693376734 +at:0.23289260733752046 beyond:0.14917232536442018 as:0.09955192274322017 upon:0.07783243962440912 :0.44055070493043 +all:0.32193579251028676 the:0.1962484208389865 from:0.11151751352323683 aa:0.07828431740495187 :0.292013955722538 +the:0.3796357926469618 a:0.06639677620143714 be:0.06460270491551989 his:0.02671040362877158 :0.46265432260730954 +camp:0.956089830175959 race:0.008924494840875897 leave:0.004437187602982079 tire:0.0040799995171418284 :0.026468487863041165 +turn:0.0698325432774052 house,:0.06384344105485798 of:0.05025282581878516 station:0.04334519494095581 :0.7727259949079959 +to:0.3137705077370995 up:0.16834782778937765 until:0.16206210770118962 over:0.15542092570861676 :0.20039863106371647 +the:0.9970796194121935 tlie:0.001282298398092708 tho:0.0009357887123816185 tne:0.0005025236189296656 tha:0.00019976985840261118 +the:0.14000683396867922 a:0.07696810407464294 other:0.024780307348060127 his:0.01963646831870029 :0.7386082862899175 +of:0.39610744400134146 to:0.1273850709033593 in:0.12163181468166516 and:0.051721123581078526 :0.3031545468325555 +to:0.5715391489976915 a:0.0872304095963884 the:0.06891616128564018 he:0.0587406901452829 :0.21357358997499704 +the:0.8104440979214493 his:0.08106878427383461 of:0.02886421683718229 bis:0.015842911526494932 :0.06377998944103892 +which:0.2439627596048575 It:0.14110316813340806 it:0.0881123456653502 This:0.06760809467111893 :0.4592136319252652 +is:0.6769680475654245 was:0.19130725210461808 Is:0.0426819816435263 ia:0.016385263176879144 :0.07265745550955195 +the:0.872135345507979 tho:0.07305797428687713 tbe:0.018260331439524786 tlie:0.010521192261921029 :0.026025156503697966 +of:0.2580947680090981 in:0.24876439924820673 from:0.19890739654664064 to:0.12435642541389695 :0.16987701078215764 +to:0.7518924335879147 never:0.1035738024339902 and:0.07845254202515746 not:0.04631259088941638 :0.019768631063521346 +man:0.08649205480100941 nation:0.03351906073320907 people:0.028039101725100324 and:0.028023876328563898 :0.8239259064121173 +is:0.03045188057813074 Is:0.021848541311688258 for:0.015575636776004664 industry:0.004328587479580185 :0.927795353854596 +land:0.09878828859109418 legal:0.07805124696323144 the:0.0516806900321256 one:0.051435154000309326 :0.7200446204132396 +fresh:0.09753899388238589 other:0.09580761935237972 the:0.06853619980673596 a:0.05573859160583249 :0.6823785953526661 +act,:0.36637161741113844 amendment:0.2278727966223569 act:0.1407410728963296 section:0.06700165807651359 :0.1980128549936615 +that:0.9166899108055414 before,:0.010231576247326806 that,:0.009512293392339865 not:0.007147971825024474 :0.05641824772976735 +the:0.5221849019570943 its:0.13825285820567895 this:0.0658443719181811 a:0.060260586534525935 :0.21345728138451986 +had:0.39118328125979746 has:0.19375151342804167 carried:0.128184380811322 received:0.09946408964941456 :0.1874167348514241 +We:0.07450404427650968 and:0.07377028948652198 they:0.041704117030496556 which:0.023611017615113958 :0.7864105315913579 +the:0.2892766252820335 of:0.15357985184488726 and:0.057623040776693606 tbe:0.05093625690090536 :0.44858422519548036 +the:0.7852370015341207 tlio:0.06306103024481832 national:0.04741446508256231 tho:0.030070549278684442 :0.07421695385981424 +plat:0.9542533791948964 principal:0.0025799190465369106 terms:0.0023558667512457816 owners:0.0016570510601587732 :0.039153783947162304 +a:0.35352627330279046 the:0.14263865167835516 been:0.03170913073057275 to:0.019982311337175426 :0.45214363295110627 +him:0.24297953272969308 me:0.14808352448302275 them:0.14343334802207522 us:0.12330599717996366 :0.34219759758524515 +large:0.05050240597705042 small:0.02714080746911418 few:0.02549880460265619 very:0.022376005526179202 :0.874481976425 +the:0.11905132591407411 many:0.04774906848516537 Mr.:0.015472802272859755 his:0.009208010767495538 :0.8085187925604052 +and:0.2175874332512533 the:0.18144942318864296 of:0.10860335400438843 The:0.07867283103101703 :0.4136869585246983 +time:0.9772430635433121 time,:0.0032619278863559517 while:0.0013924554896638987 as:0.001037396201109964 :0.017065156879558105 +men:0.054172467676975804 then:0.04964063215414412 points:0.0431520664539832 things:0.037575984219014334 :0.8154588494958825 +and:0.3765452858946762 on:0.20993174259761613 they:0.13521245428444534 we:0.10270634537443278 :0.17560417184882948 +making:0.18554064382471666 been:0.08998937415372837 a:0.08525526943083693 pre-:0.08046208039454396 :0.5587526321961741 +satisfied:0.696533943002481 fed:0.05422251657807225 represented:0.03195910082104481 filled:0.0037862072551634687 :0.21349823234323842 +of:0.4525365674867428 in:0.2161959099851919 which:0.09064245889597777 under:0.08769334003415057 :0.15293172359793702 +the:0.6649304745412241 their:0.09056374212650835 of:0.0861303679085749 In:0.04373278533389719 :0.11464263008979536 +with:0.38272223327931854 and:0.18888211367957705 as:0.14410017312139708 than:0.12102440720179078 :0.16327107271791655 +that:0.5453621721852114 to:0.31510987475522073 by:0.11384718780309817 in:0.01710367901864998 for:0.008577086237819585 +the:0.16045149325097072 present,:0.04120417253480197 home:0.03167880637451322 once:0.029857593245918686 :0.7368079345937956 +interested:0.9258901128058844 ed:0.026923177618823728 named:0.0019748157439369728 described:0.0017708847153304825 :0.04344100911602434 +great:0.39393978102482247 large:0.17713056708289512 decision:0.05059000900803135 point:0.028068161466658047 :0.35027148141759307 +like:0.003710746316606778 election:0.0028514513623383686 was:0.0023986766084269067 opportunity:0.0019551619101084603 :0.9890839638025195 +a:0.25268964938583455 the:0.13734611298280056 two:0.016759826970506396 forth:0.016369288439619396 :0.5768351222212391 +::0.26149125628606484 and:0.20995050466692558 ing:0.05371798340287382 so:0.04472333768270689 :0.4301169179614289 +and:0.21182998642568904 of:0.1791201480847068 the:0.12997761982455255 or:0.11985594355407134 :0.35921630211098027 +machinery:0.6761221201941193 the:0.02674003947151626 is:0.021934516075152694 was:0.01662248386718222 :0.2585808403920296 +of:0.9533305248168826 against:0.03555072186327048 for:0.0025793400790513356 the:0.0019729527817279368 :0.006566460459067591 +of:0.3443491001065002 where:0.19392468677624702 which:0.05023788789634445 that:0.03922075805334094 :0.37226756716756737 +reached:0.28585221525737947 reach:0.11025927764974443 leave:0.1088691538948078 left:0.10372104810164118 :0.391298305096427 +of:0.20983913775119525 and:0.15959737002578264 in:0.15465983643030967 to:0.10696858742244891 :0.3689350683702636 +the:0.7870041222455425 said:0.044418348642832964 an:0.0321855219006349 a:0.025995239848745473 :0.11039676736224399 +took:0.05665510344037812 cut:0.03534853020459382 point:0.03178190752060742 put:0.03022286964891155 :0.8459915891855091 +go:0.13723984784741297 quickly:0.06835548621102501 took:0.011710720344351918 be:0.011693734698546733 :0.7710002108986632 +the:0.3183632891380856 our:0.1541968565308879 It:0.09222022185571273 it:0.07452174489812682 :0.36069788757718674 +and:0.2801003299768468 try:0.07659508797255156 are:0.05646761761080259 a:0.03456545153480332 :0.5522715129049957 +In:0.6315346738233842 of:0.05145380792647689 The:0.050230726738970055 and:0.015567211842477693 :0.25121357966869107 +and:0.1399582173356483 and,:0.06623823099066095 or:0.0631367724917204 was:0.04524380774549168 :0.6854229714364787 +connection:0.08347999906740458 accordance:0.04144006985594608 case:0.0294043704648575 .:0.01747304170175484 :0.8282025189100369 +or:0.3281557838670519 them:0.05782285415481486 and:0.05758892776822726 has:0.042015134474161116 :0.5144172997357448 +in:0.9464751708995833 In:0.028652746597824824 is:0.012781493112751514 ill:0.006468955366858293 in,:0.005621634022982079 +is:0.28882059415641714 are:0.2653800844157077 was:0.16166321061899336 has:0.06958722312770418 :0.21454888768117758 +get:0.161635948398853 the:0.13424542091094854 be:0.09386945672523087 reach:0.07646446479480073 :0.5337847091701667 +to:0.8396870718706921 for:0.13675031874492766 and:0.013545672540126555 by:0.005120318592265596 with:0.004896618251988144 +on:0.0398695260731379 the:0.013584522025526909 deeds:0.006248884573706505 at:0.005721531139549822 :0.9345755361880789 +and:0.12692975579950408 the:0.0693055001676644 of:0.05011234153871363 most:0.04686717010477732 :0.7067852323893405 +and:0.20160409478786243 the:0.04097270250615279 of:0.034961436810966515 to:0.0287223555128393 :0.693739410382179 +—:0.40309688003172295 said:0.3502488050667318 John:0.06959833860861489 William:0.0651021763834428 :0.11195379990948767 +be:0.40428570580166784 result:0.23920517360155527 not:0.039007859659403454 appear:0.0301425845079401 :0.2873586764294333 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +the:0.5609792957245487 an:0.41080469177533313 on:0.0104708040301244 The:0.0041363903981727086 :0.013608818071821021 +a:0.4019732153027916 the:0.2928721188181978 our:0.08690712553359448 his:0.06459841813889707 :0.1536491222065191 +the:0.3549606821089122 said:0.24801947380650424 two:0.05710892784540155 only:0.01813556217457773 :0.32177535406460417 +the:0.029043633017376162 a:0.006695151330419586 tne:0.00574655336300673 from:0.004939511911053671 :0.9535751503781439 +of:0.1723525901739117 and:0.09083508852968088 the:0.08628166887651692 to:0.03371929562090692 :0.6168113567989836 +in:0.23657731476064858 of:0.19146841185125218 and:0.09698674980378905 on:0.07966204909117411 :0.39530547449313613 +claims:0.8723823383287689 the:0.02357857745699207 only:0.02114051297514452 it:0.00554362349991523 :0.07735494773917938 +offered:0.27724611888379774 brought:0.17447124875768935 served:0.15359082532137544 more:0.12929036894979498 :0.26540143808734257 +ground,:0.3023126770748656 ground:0.11528833739682766 place:0.07713247416952053 point:0.07283123245538389 :0.4324352789034025 +and:0.010545544835043044 street:0.0070093222267906315 quiet:0.006238454836265395 Mr.:0.0058813418881190375 :0.9703253362137819 +railroad:0.22028537426544675 gold:0.2185962187658774 the:0.1288230711712178 it.:0.03174296217107414 :0.400552373626384 +be:0.6858271733473162 the:0.04895640731739606 a:0.043887159321740594 to:0.040892954749326305 :0.18043630526422078 +of:0.23365568005650203 for:0.18430485841693187 against:0.13020242408714253 in:0.09641266481230065 :0.3554243726271228 +C.:0.06673693197295232 F.:0.041069853608909086 G.:0.023706284691459186 Smith:0.021988531883104276 :0.846498397843575 +means:0.19040638223271725 way:0.0781861559395058 reason:0.07261174604125474 the:0.06120834979650591 :0.5975873659900163 +on:0.05257975551358881 off:0.035512829386215417 three:0.01644396153549193 go:0.015599763044151763 :0.879863690520552 +of:0.25693547392740207 and:0.10999772040080144 the:0.058060494397059105 to:0.03281288392372309 :0.5421934273510143 +the:0.10354415512845665 business:0.049024514750150905 this:0.04569655137375897 which:0.04515884694779854 :0.7565759317998348 +the:0.4935016549640899 these:0.30833076033684287 broad:0.07165291080911688 new:0.04772265838987422 :0.07879201550007614 +that:0.34903200703091075 by:0.20080942431066187 to:0.18162653713764676 of:0.11104011067455348 :0.15749192084622707 +the:0.8781895706905878 to:0.013162114247058201 would:0.012553581867792128 best:0.0028323987912349017 :0.0932623344033271 +of:0.8845862918914671 is:0.030093829819286454 into:0.025366838550314203 In:0.015447244318685575 :0.04450579542024667 +is:0.19618511358723223 and:0.09244222526573069 coming:0.059146428740064816 ed:0.03489997688503349 :0.6173262555219386 +ed:0.139132873610104 to:0.06950725535432443 of:0.0643168758896695 in:0.061910193022951525 :0.6651328021229506 +a:0.8468233959531892 the:0.12914689134991858 described:0.007175632044526811 for:0.0019330769568216934 :0.014921003695543689 +of:0.9078242336094916 at:0.0038752202579713383 we:0.0030970445803151624 cf:0.002204158839811818 :0.08299934271241013 +ing:0.3904114808033639 la:0.29557731978519497 to:0.21044021546678607 down:0.050792576080022356 :0.05277840786463268 +40:0.057614493012660264 20:0.04348221184473454 five:0.03140641473159276 50:0.03003816842654356 :0.8374587119844689 +who:0.06358843084593711 and:0.049299591681410584 They:0.04110236035167772 times:0.03696120544223353 :0.809048411678741 +furnished:0.07568455792734509 advanced:0.01495092888463362 made:0.002465930746499753 that:0.00041773383692258044 :0.9064808486045991 +of:0.645454415818676 to:0.07745397552338544 must:0.05410288222736358 ot:0.04560542344049272 :0.17738330299008234 +all:0.499181883710624 the:0.1208161390798996 and:0.032239767265082035 her:0.022644307331145523 :0.32511790261324885 +the:0.530916299741202 The:0.1267729731544651 a:0.10223595261758713 general:0.05934107795039657 :0.1807336965363493 +of:0.49305418874347073 and:0.2132353949105838 that:0.07198054837784826 in:0.059471855617249776 :0.16225801235084736 +for:0.06406198100992908 officer:0.016318207977407868 direct:0.014015242231666938 two:0.011292768797211169 :0.8943117999837851 +is:0.47614676658396615 was:0.41274273735488015 Is:0.08567431138027742 they:0.01231420471174858 :0.013121979969127676 +ways:0.5586231178289764 sides:0.024040813847424954 armed:0.008792861724414833 charged:0.007141658743032907 :0.4014015478561511 +been:0.21883630553717748 passed:0.18213043971690726 long:0.17447539353105523 played:0.1207373182395659 :0.30382054297529415 +young:0.2568023740485726 single:0.10163575164415246 poor:0.08857915551433988 certain:0.070949781183865 :0.48203293760907 +was:0.8113348758945829 of:0.06158705624929191 is:0.045217345842299556 be:0.025528981434930643 :0.05633174057889495 +It:0.38945142967018037 and:0.18068894248854925 which:0.12119746431549129 He:0.11844906735798356 :0.19021309616779536 +the:0.3100739202861615 to:0.09901007829917456 their:0.06691526130021483 and:0.055826624240948766 :0.4681741158735003 +the:0.4994276815703562 said:0.39241985689612996 a:0.07786051232683676 tho:0.0258358705356461 this:0.0044560786710309335 +City,:0.7967716283148777 City:0.0534008826984339 and:0.016239048814332604 has:0.012379470050847838 :0.12120897012150796 +to:0.4022552255033452 I:0.33474733482029656 1:0.08507894039674017 and:0.07160761664009534 :0.10631088263952283 +people:0.1950729513613136 members:0.02361028911828276 village:0.018261643169992747 state:0.0137509247076154 :0.7493041916427954 +the:0.5905366287822168 and:0.12272160078882102 its:0.03535456430983577 The:0.03402297584656143 :0.21736423027256488 +There:0.1291802343204172 They:0.0970326305282723 they:0.0853659570535249 which:0.0808244132748215 :0.6075967648229641 +the:0.3593217945490854 his:0.19940779273188652 their:0.029303500151802553 this:0.02674440758678451 :0.38522250498044097 +for:0.23561604058072466 of:0.14816061618767407 before:0.1478982714696952 on:0.08655192695662084 :0.38177314480528524 +the:0.416678768144641 their:0.02961646426621673 tho:0.02813156795300014 said:0.02425730535541516 :0.501315894280727 +of:0.6444042252462535 to:0.05663130662647423 whose:0.04322199897235488 that:0.03977169576627579 :0.2159707733886414 +for:0.0933022589730508 be:0.05463517036064815 afford:0.05418120685199715 in:0.05162784609590612 :0.746253517718398 +but:0.022816539470294724 and:0.013364060076540044 is:0.009027820045685293 And:0.007360456890206613 :0.9474311235172733 +of:0.22089561152431772 and:0.1145362205208468 the:0.06350969716290027 to:0.05084208347211781 :0.5502163873198175 +while:0.995811014961455 when:0.0028972372493719593 of:2.988349930198877e-05 m:1.7960957888910372e-06 :0.0012600681940823045 +quickly:0.34693348475005675 were:0.16836476399547226 he:0.08357125278045825 be:0.06168367920362368 :0.33944681927038894 +great:0.0747550669488473 business:0.01772913530433442 best:0.015882126360602655 various:0.013019965776218511 :0.8786137056099971 +of:0.1854486016535245 now,:0.023763813973841787 how:0.012647966564192219 ;:0.010834416161428237 :0.7673052016470132 +the:0.591255780471399 a:0.21208269893398576 tbe:0.026120625059128873 two:0.017167779268702228 :0.15337311626678427 +you:0.20995402634286184 they:0.17941563622330595 It:0.15085434692973887 we:0.05757121425716077 :0.40220477624693257 +not:0.669300522071431 thus:0.13210836667017747 to:0.02009370621233923 be:0.007524253028720754 :0.17097315201733151 +a:0.9598879233163851 the:0.013656342230430985 n:0.008267143716427195 his:0.001694052698620439 :0.01649453803813642 +system:0.06872033447951771 law:0.0392430447983165 the:0.03344512123193486 and:0.024962058758387595 :0.8336294407318433 +matter:0.050674714250714965 case:0.03408319612495283 corner:0.02711914169926399 basis:0.02213198168038968 :0.8659909662446784 +to:0.6333126613206428 and:0.12195052832761216 we:0.07946836203167999 will:0.04512056223978765 :0.12014788608027735 +Hut:0.5822210031190955 But:0.24950673296689485 of:0.04408007252366896 in:0.04001395492802138 :0.0841782364623192 +now:0.5215738652002603 all:0.19325761289777008 j:0.12273229282531185 being:0.09379267433002113 :0.06864355474663657 +of:0.2665962300618239 in:0.16665054965331563 and:0.13805618621133225 to:0.11563595870440216 :0.31306107536912603 +was:0.5375686135014364 is:0.38042440387564674 in:0.022609092625227683 of:0.02217102998276715 :0.037226860014921995 +has:0.4238957926628397 have:0.24964915971058751 had:0.22614179350643465 and:0.03560691102995252 :0.06470634309018555 +a:0.6769242850826003 the:0.17714219863831024 no:0.09788119702262589 almost:0.027451160439431025 :0.020601158817032627 +healthy:0.259451234914705 higher:0.023734952008402078 supreme:0.02016007411971114 proper:0.017782729602455794 :0.6788710093547259 +the:0.36347727318439593 be:0.16366911193911646 a:0.05939762343065118 his:0.03527236043329361 :0.3781836310125428 +it:0.18151684436640153 this:0.18047507074177638 the:0.08984270331923426 a:0.013776671994378783 :0.534388709578209 +capital:0.3282201438557252 themselves:0.18898560616364748 them:0.13230240474332863 himself:0.10301964862486788 :0.24747219661243086 +day.:0.7121439618440909 mile:0.0726954456959842 year:0.009474301214964264 century:0.0042288674799994316 :0.20145742376496104 +who:0.48223713618021957 will:0.270508945860968 be-:0.12304490063009557 to:0.03711495769126372 :0.08709405963745318 diff --git a/test-A/out.tsv b/test-A/out.tsv index 42c56c1..aab216a 100644 --- a/test-A/out.tsv +++ b/test-A/out.tsv @@ -1,7414 +1,7414 @@ -place:0.27929962891697346 day:0.2430502896284843 time:0.22181291769513653 mortgage:0.15177688147056728 :0.10406028228883855 -it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 -the:0.6036709419022299 abandoned:0.3518174744134723 tho:0.020715276769562203 for:0.01340090500092777 :0.010395401913807993 -year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4100034821036706 tho:0.19607138096642732 that:0.19415279158494236 many:0.10844385290313945 :0.09132849244182026 -ac-:0.39787733814464177 ac­:0.18997029441044472 sec-:0.15278605561110015 ac¬:0.13082900467915687 :0.1285373071546565 -placed:0.34300024656185446 put:0.2018775466121469 going:0.1868597034045908 laid:0.1411264968137215 :0.12713600660768642 -He:0.3151925090723907 It:0.2851449230249535 She:0.17608978392029298 There:0.12837337548043995 :0.09519940850192296 -since:0.4694916737553812 before:0.25719566858071996 in:0.0971989878020482 to:0.09166677506127803 :0.08444689480057255 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4011263516866788 days:0.20146096382127943 hours:0.1581125882691327 years:0.14122942397749294 :0.09807067224541617 -cause:0.3368722799418023 ing:0.2758361057620928 fore:0.22637752077665624 tween:0.14919385473776384 :0.011720238781684812 -they:0.27965864488195646 there:0.2157859574700905 and:0.19947151296003296 we:0.15554946244838275 :0.14953442223953742 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.48924277103655067 that:0.3202629663646443 what:0.10509004570671922 until:0.04317689810340274 :0.04222731878868302 -the:0.6703538653300152 this:0.1490461771873049 a:0.07015050663852618 any:0.05805124200886788 :0.052398208835285814 -little:0.28035063647166125 whole:0.24986317014688503 town,:0.17135129864446177 said:0.15721931583325935 :0.14121557890373262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -dition:0.5588996800424216 gress:0.23890441060364687 science:0.0905948383139974 tract:0.06349246521787928 :0.048108605822054805 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -feet:0.4338922077514962 chains:0.22635618831292215 inches:0.21328494140661994 poles:0.07767819643933563 :0.048788466089626135 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.5809389597713293 has:0.24340461391760287 having:0.08698731998955356 have:0.07010962814577379 :0.018559478175740444 -unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.43314854367862027 there:0.22173579239672106 who:0.12910633092066634 that:0.12387761016575818 :0.09213172283823429 -not:0.6331658877636394 justice:0.11870762873757369 want:0.10965669117504427 there-:0.08126754413459576 :0.05720224818914689 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.2585235478252685 placed:0.23642330981040433 held:0.17344731448956857 carried:0.17233595493789808 :0.15926987293686046 -;:0.29637347650597595 in:0.2751797171983777 for:0.1694340168428201 door,:0.1427974311779572 :0.11621535827486913 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be-:0.6852635715268554 be¬:0.18361677656268144 there-:0.06472593050238472 be­:0.058567926785595435 :0.007825794622483031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -found:0.3234076684373223 remembered:0.2202773322437868 given:0.18162208867405258 so:0.14885244180138496 :0.1258404688434532 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sell:0.26922955199337056 look:0.2584456404941601 be:0.25274974570477554 meet:0.12531627287726474 :0.0942587889304291 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.9562531334948424 ns:0.014636012889471505 see:0.014157032228068694 aa:0.008541750447656447 :0.006412070939960827 -of:0.9349408904127074 from:0.018276730340333558 in:0.01773888682871411 to:0.017491695884235152 :0.011551796534009765 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.2884086001548156 will:0.2598011776620114 and:0.22314484093262654 would:0.14943613806080427 :0.07920924318974219 -same:0.31820535319811083 world:0.19731570358648604 country:0.1750573838548758 fact:0.16145627196515744 :0.14796528739536993 -half:0.38609907028655294 as:0.2569453499811118 to:0.20137892049949827 by:0.07934042508265436 :0.07623623415018276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.35516722930474803 showing:0.2230997784497662 shows:0.20371897691598542 is:0.13622425066048988 :0.08178976466901035 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.6674727783844346 we:0.18537122185893062 you:0.08444489508511928 are:0.037904828132854396 :0.02480627653866119 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5744093649422282 just:0.1818396593941611 not:0.1033334716048957 as:0.07958657328449509 :0.06083093077421999 -of:0.5621164030535752 in:0.15030751369028827 to:0.13534000927570136 for:0.09706572740997099 :0.055170346570463984 -most:0.5822565761670837 new:0.13291255530170135 highest:0.12032629881128586 following:0.08726629074827279 :0.07723827897165621 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8901154704233756 only:0.04022781253420908 by:0.03125105159486443 as:0.023906706620881065 :0.014498958826669848 -is:0.5248728443602325 was:0.38106872996405655 up:0.03780409155880953 appears:0.029369193184733043 :0.026885140932168313 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3104976683899121 of:0.23437236138939613 to:0.19102005538998218 throughout:0.15240288085330006 :0.11170703397740969 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.415239971949358 when:0.24351363254666716 if:0.1649032503243776 then:0.10067323199724439 :0.07566991318235296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.2940513495555944 sale.:0.23488273750454897 them.:0.21830768927460892 beginning.:0.14277876620941937 :0.10997945745582818 -he:0.4454926198628296 I:0.28574451573038673 she:0.1358210141138963 they:0.08444915767982028 :0.0484926926130671 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.42189969943822436 his:0.2955000558211297 to:0.1423960654800484 her:0.07050275950229644 :0.06970141975830109 -do:0.43864313763393964 have:0.27293440409681724 did:0.1271526717915437 make:0.08156476180269397 :0.07970502467500537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8448664814866796 have:0.06518043816529201 bo:0.0645718451733313 easily:0.015036735449484138 :0.010344499725212808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6669225492625962 a:0.14319453954033048 more:0.07835000803521791 no:0.05942114096334872 :0.05211176219850646 -The:0.34937772390614946 On:0.301438647723741 Upon:0.16873214686458174 In:0.11071781922933611 :0.06973366227619154 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7694113662001432 among:0.08446256835675438 in:0.06172657690837289 to:0.055706898676491694 :0.028692589858237874 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.28789868461569756 world,:0.2337487460001322 country:0.17564625454351693 time:0.1583185741926755 :0.14438774064797788 -of:0.3063970551673443 to:0.2607344896666734 in:0.19168061057581354 on:0.13808190643723048 :0.10310593815293842 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3502117209311237 never:0.1720721666274353 believe:0.17103435388473584 think:0.16802800829860645 :0.13865375025809873 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.29221854887681414 was:0.27770944848894724 am:0.1922292390586287 have:0.1459691997040888 :0.09187356387152114 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -east:0.42942178230792105 west:0.2773016404769069 and:0.12722285452162646 thirty:0.0992011984918984 :0.06685252420164714 -in:0.2933388507493354 and:0.2154625343922927 for:0.20717107556165576 so:0.1594371813047239 :0.12459035799199218 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -last:0.3329652592206909 this:0.2727205252353137 the:0.14843918310098023 in:0.12398764722224728 :0.12188738522076796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -those:0.38344686080373874 us:0.372842720181997 him:0.1450925709938761 them:0.06196259116406876 :0.036655256856319374 -protest:0.35873064228010404 vote:0.20366150918412398 judgment:0.17043003586877886 suit:0.15538698177273783 :0.11179083089425537 -jury:0.6233893835967764 Jury:0.1641976106915968 opportunity:0.07656263271079887 march:0.07399974455408158 :0.06185062844674638 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -less:0.6821939018322625 more:0.28957373670959047 better:0.011829783405087297 later:0.008336124066564015 :0.008066453986495845 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -taken:0.5471499189010591 broken:0.12516061448541616 given:0.12450513231571153 made:0.10960589148234623 :0.09357844281546707 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -been:0.8627413767522168 or:0.051007105857290125 published:0.030165410258435662 fired:0.028430768784961778 :0.027655338347095642 -ai:0.30942749349080506 -:0.30329604867242693 following:0.16485773541646667 same:0.11367105972185722 :0.10874766269844403 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3044478040010886 petition:0.2619046483062651 mortgage,:0.14695954604827108 mortgage:0.1439252103686568 :0.14276279127571845 -beautiful:0.2487215372170534 interesting:0.24523248123733282 important:0.21255626014944784 active:0.1638176076899696 :0.12967211370619613 -all:0.3665416815310596 that:0.23135779825641822 which:0.17283219759864385 and:0.1495899226760839 :0.07967839993779427 -cost:0.39093592274799616 value:0.34071634956732405 possession:0.10012619503613347 condition:0.08747402691419312 :0.08074750573435324 -to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 -than:0.8228296406625584 he:0.07864869410630362 it:0.04311421679197 time:0.03185824653141504 :0.023549201907752948 -was:0.3063303576165919 are:0.21610634414624666 is:0.19713206647405945 were:0.1511453413063222 :0.1292858904567799 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.488245232897379 and:0.25098330274345926 death,:0.1012047383583296 was:0.08981815772660467 :0.06974856827422744 -and:0.4209998793494881 is:0.23503938505548627 was:0.17182717227385724 are:0.09619496115381272 :0.07593860216735562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -world:0.2902661748371584 country:0.2222473979389011 city:0.1773477177489124 government:0.17433420460373003 :0.135804504871298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.3437296473325138 thing:0.21777808780184202 effort:0.1621189426541865 one:0.15960823247471878 :0.116765089736739 -men:0.4201327429359498 facts:0.16525503234149197 things,:0.15244576450926423 lands:0.13741410403831483 :0.12475235617497915 -back:0.3144127118181548 up:0.23378798975585416 down:0.22812878789971594 out:0.14582670951194704 :0.07784380101432799 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -In:0.225252997081593 is:0.20951866311037032 As:0.20011200766203505 as:0.19181868443724842 :0.17329764770875322 -kill:0.4607978503576886 marry:0.17924003999639873 like:0.12936962927695458 see:0.1153537436054177 :0.11523873676354031 -got:0.3598355078390551 came:0.20550708222211234 picked:0.17992948833185432 put:0.13106512491528893 :0.12366279669168935 -and:0.48501325377093163 was:0.21028309878791074 is:0.11087952033769692 will:0.10794752123394091 :0.08587660586951958 -met:0.2574681759820508 was:0.22442613999493183 charged:0.20823046126515576 covered:0.1665405595859798 :0.14333466317188182 -Mary:0.315342744492808 Alice:0.23157208507422647 Helen:0.20815439199480237 Anna:0.17167878494850333 :0.07325199348965984 -building:0.26049269683507625 house:0.21882519628534855 building,:0.1916267960358532 dwelling:0.1762382353807545 :0.15281707546296738 -been:0.49739277467816617 a:0.26634868324091343 not:0.10063116314979045 to:0.08465250106028076 :0.05097487787084924 -will:0.36505082677887923 would:0.24992507128913913 cannot:0.17619556878762466 don't:0.10489336610762928 :0.10393516703672755 -addition:0.45117525212813114 order:0.2836174243931283 regard:0.18388502857632036 reply:0.04106111744362021 :0.04026117745880002 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man.:0.25935106434983984 year.:0.21797645251527584 day.:0.20802299674239588 time.:0.1579970647770154 :0.15665242161547296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -successful:0.3087162659107653 prominent:0.25701465185846556 part:0.2112853274632169 effective:0.11818664340991256 :0.10479711135763979 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.37792136134770316 country:0.19762808590802014 world:0.15153485794975546 fact:0.14021026127230052 :0.13270543352222058 -years:0.4448924731776809 days:0.20150236417488657 feet:0.16204608956140115 miles:0.10145629852347476 :0.09010277456255676 -the:0.7731103384485354 said:0.14183259259342781 a:0.0346214846360863 tho:0.025269952545080136 :0.02516563177687034 -life:0.27435200411439736 life,:0.2198343405699623 wife:0.2019501554468227 face:0.15558610856386543 :0.14827739130495216 -him:0.31928762103776237 them:0.26299873371888505 up:0.2216603221625674 security:0.10439430406131377 :0.09165901901947152 -.,:0.44925060217937013 of:0.17021617433285047 and:0.16993895728023714 his:0.10921313055724753 :0.10138113565029482 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.9726852769669484 great:0.00876641609700926 or:0.007326412354479332 death,:0.006043085565185864 :0.005178809016376928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4793699904228758 great:0.17305924687187443 its:0.1361709717417632 a:0.12600108376862842 :0.0853987071948582 -fields:0.33339650827166134 occurred:0.20912088343942103 field:0.17460788907032 and:0.16639735109782822 :0.11647736812076942 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whole:0.23711158619302136 hearty:0.2181864225037151 same:0.2023892825763048 table:0.18960647749658885 :0.15270623123036997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.45162466539671514 not:0.17569051611208322 got:0.17223122098275628 taken:0.12207855194407893 :0.07837504556436636 -a:0.3689205098135848 so:0.3558259009120394 the:0.1537336901371903 been:0.07680981534134698 :0.04471008379583851 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bearing:0.6156286321814094 and:0.18756059822322005 or:0.10349570205792986 from:0.04788468235631906 :0.04543038518112152 -is:0.33987505168382603 such:0.20429190044323775 in:0.1597975838805144 was:0.15804302107453402 :0.1379924429178877 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.40847110252795005 shall:0.2813604088935594 will:0.20213484837451204 may:0.0553932901429307 :0.05264035006104796 -days.:0.5057971899867334 years.:0.1581037697513258 miles.:0.133121378858912 acres.:0.11355279375014918 :0.08942486765287971 -is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.21839366065866123 of:0.20940515842416646 in:0.2078094040285678 ago:0.18533375845843558 :0.1790580184301689 -Saturday:0.2499924746178531 Friday:0.2131158217499018 Monday:0.1915373547400168 hand:0.17744760965836456 :0.16790673923386382 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -talk:0.34083874535511544 all:0.194134758618783 was:0.17841444124341432 is:0.16045932647785252 :0.12615272830483468 -to:0.3871231886201193 will:0.21523779491194944 should:0.1925986206852725 may:0.12077832922020075 :0.08426206656245805 -that:0.5641716894875966 if:0.1889094431675402 then:0.10226941534948743 when:0.0859011328662594 :0.05874831912911664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.4687804045787755 is:0.2117353861879526 and:0.10873019481234816 now:0.10809373223532284 :0.10266028218560083 -he:0.46452695402959804 they:0.2460480493509285 she:0.13177290145671913 I:0.08206163951839913 :0.0755904556443551 -are:0.35920903376692737 have:0.3121486651928697 had:0.15214681592263224 were:0.12379094986310997 :0.05270453525446068 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -resources:0.3670858997122199 advantages:0.2952451606413833 consequence:0.12095640756441554 more:0.11277599943035892 :0.10393653265162232 -very:0.31444782985336583 certain:0.21583468824863167 new:0.185138831486927 right:0.183278417714999 :0.10130023269607644 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.29782831471854093 and:0.2949006671828218 power.:0.1701684988589156 J:0.15917928815793306 :0.07792323108178872 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -old:0.25333557600356327 new:0.2474901416793199 present:0.20186213637722894 first:0.18229594935862573 :0.1150161965812622 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.41754511693643404 in:0.24321046927799947 be:0.12056149707499503 for:0.11139392675218653 :0.10728898995838493 -of:0.5485077892694068 to:0.1715061778284287 by:0.15016272452706073 that:0.06579799109996055 :0.06402531727514321 -of:0.6491829234798457 and:0.1569135190500301 in:0.09334944297796112 at:0.06914042623644917 :0.0314136882557141 -no:0.4186392890175606 an:0.36569133834602696 the:0.149931721024212 any:0.04211179087761095 :0.023625860734589527 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.2825642549950013 find:0.19230686998606655 deem:0.19164040099727603 prove:0.17506524721657865 :0.15842322680507748 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.2704100564790041 few:0.25269441610514043 fine:0.2309690881723811 good:0.13760383670365617 :0.10832260253981826 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 -.:0.6690672924315115 is:0.10362871348129327 la:0.08181803571631388 i:0.07804783085377345 :0.06743812751710791 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -interests:0.45613516532553305 part:0.1732158141844742 method:0.1375893520895562 way:0.12037089978577589 :0.11268876861466065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -J.:0.2547145251120108 C.:0.22489488258643386 G.:0.19642812246680916 W.:0.1831741264158488 :0.14078834341889732 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -an:0.5953411483731866 the:0.12931067168645632 bad:0.12124882428547124 for:0.11713029536302018 :0.03696906029186562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.7033754668666796 A:0.1748874054646781 Several:0.045887446595438176 Our:0.03797111892089799 :0.037878562152306054 -has:0.5317862199056687 have:0.2414801872473529 had:0.19838887130275767 ever:0.014753795233725504 :0.013590926310495322 -the:0.7112499954645611 this:0.16421015469493605 his:0.08072926378291297 my:0.02547069822542984 :0.018339887832160093 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -little:0.27626521716624786 point:0.23215109660345956 thing:0.17808634747600482 man:0.16127363845630288 :0.15222370029798502 -State:0.4407880135442261 late:0.26068392172677973 former:0.12083162884057941 States:0.08966205737288332 :0.08803437851553135 -but:0.357181666986822 that:0.20934249744068853 and:0.20107071230388743 in:0.1490213001003862 :0.08338382316821583 -of:0.6936114756431536 in:0.12469370171538098 on:0.07097675918017336 and:0.05955230109444515 :0.05116576236684694 -they:0.367037008301941 we:0.2515969899728162 I:0.20665793676336666 would:0.10269024596148342 :0.07201781900039267 -by:0.36487258691943286 in:0.23294597490259827 to:0.17189478842600422 of:0.12416395067389892 :0.10612269907806562 -is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -think:0.2901529933985256 that:0.28518259591523126 can:0.1869036383520142 what:0.12466102181982067 :0.11309975051440815 -the:0.4999388428795517 a:0.3262845371419244 al-:0.09984044013950423 tho:0.04951739341819455 :0.024418786420825105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.5156375291443305 water:0.1689034341872599 her:0.12859636239078895 it:0.09369986554818341 :0.09316280872943737 -mem-:0.45481509936426967 num-:0.3617706972470142 all:0.11332187969000854 that:0.045011281378623334 :0.02508104232008415 -of:0.33059099128890473 a:0.29983068709338523 the:0.18237503929086174 few:0.09764636497143 :0.08955691735541817 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.48924277103655067 that:0.3202629663646443 what:0.10509004570671922 until:0.04317689810340274 :0.04222731878868302 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.5317633711415205 come:0.19882747319653823 get:0.1174924319589346 take:0.0765816513839242 :0.0753350723190824 -there:0.25665114554957136 and:0.2474343658364947 who:0.18968747010428827 number:0.1622551656556741 :0.1439718528539717 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -soon:0.32236391471306236 was:0.20277730379859688 and:0.18401518234098183 is:0.1504656390253045 :0.14037796012205433 -He:0.5107718292443105 I:0.24594778433412856 They:0.1126550434023921 She:0.07366407313714486 :0.05696126988202396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.6181819004620261 out:0.1868820908041592 into:0.07858019616821411 off:0.06355880712937426 :0.05279700543622629 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.45516496548900415 her:0.2045064699085665 them:0.16241623344004882 going:0.1042258119792084 :0.07368651918317201 -general:0.3483376564486072 county:0.22704019785215945 local:0.14756265290178694 special:0.14264754960334228 :0.13441194319410404 -time.:0.27662750340354453 day.:0.23825284328350174 purpose.:0.18878891937503364 city.:0.17553700885777682 :0.12079372508014333 -male:0.4644411794543423 rural:0.18090659898808856 white:0.1374790202922726 slave:0.11230223327507773 :0.10487096799021871 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.2969065028180742 and:0.2175414508350646 were:0.2125985213912148 or:0.15465324457677881 :0.1183002803788677 -Post:0.460682889489671 as:0.3266057910390387 post:0.08577018985145245 to:0.07271219698207436 :0.05422893263776346 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4125751185297428 was:0.1782903231769581 a:0.14463706616547278 the:0.14375719680853435 :0.12074029531929203 -their:0.6042778910252551 his:0.22573516175383662 her:0.08731383073731688 its:0.05198944873469715 :0.03068366774889425 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7057320024432636 a:0.13514283742396313 said:0.08428098414850863 this:0.03997355780073701 :0.0348706181835275 -as:0.9683631398790805 ns:0.013365839633898322 aa:0.00949144588480454 it:0.004881552901429654 :0.0038980217007869747 -side:0.26586093323099624 shadow:0.1934207237361289 eyes:0.19313488166218 corner:0.1811665852231193 :0.16641687614757542 -believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -laws:0.759308088371189 law:0.15034115374828885 facts:0.03944416175212211 conditions:0.029474739470147848 :0.021431856658252188 -the:0.8039277039409612 our:0.05888079489096115 his:0.05550280665972608 tho:0.04317604092055227 :0.03851265358779927 -them:0.35444814961076127 Deeds:0.20184404038840703 money:0.1689957948524785 land:0.1391189718746798 :0.13559304327367339 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.4780851419118976 as:0.20697859351366155 on:0.1451973887984462 in:0.10677003161384704 :0.06296884416214753 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.44440383267871536 made:0.21094420362985453 lost:0.14605832220899478 to:0.11689998178287268 :0.08169365969956278 -be:0.6094598005233713 make:0.14640437859999528 the:0.09737840153702847 every:0.08337525204943164 :0.06338216729017326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6658144985424165 a:0.12512752781180725 not:0.08059854875472029 to:0.07668763245064304 :0.05177179244041296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7800248981461073 him.:0.07082638156092645 that:0.06107381225290968 them.:0.044880025166220756 :0.0431948828738359 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6715761412017345 and:0.18495748354002423 center:0.06645056288940152 in:0.04053315039034479 :0.03648266197849496 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -put:0.24800393473250149 bounded:0.24341978636301978 that:0.1917432397880384 carried:0.1607129868331474 :0.1561200522832929 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 -one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 -and:0.3919476550443722 with:0.19768366595137205 in:0.1749991029192543 as:0.12613965228233748 :0.10922992380266408 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.34124507377002405 out:0.2825562763220344 so:0.14356798894389555 on:0.1355293990080487 :0.09710126195599718 -port:0.27007385014679514 turn:0.26871495416884067 ceived:0.20473992542185973 marks:0.13090909342294632 :0.12556217683955812 -not:0.9396011046362311 is:0.02636844786997559 it:0.012457430070206856 you:0.011567953544525656 :0.010005063879060817 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -United:0.2283227230771005 same:0.21185957027038513 first:0.19941780033531856 country:0.18213639004368298 :0.17826351627351292 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.4441187853216063 city:0.18186169224110244 time:0.15423962350302564 city,:0.116785307418254 :0.10299459151601156 -the:0.9107354713557658 tho:0.037329773949890004 this:0.023653695022703817 an:0.016072416305296815 :0.012208643366343473 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.29368246391464997 for:0.2105315859864324 occurred:0.20550369430439355 and:0.17442246083182486 :0.11585979496269928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.26428600652650774 made:0.25009859663494244 in:0.20435240113011832 about:0.15794451916101898 :0.1233184765474126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4416829750228396 is:0.15720220657240058 in:0.15670480212611881 such:0.13894831067883417 :0.10546170559980682 -husband:0.24557634759891492 way:0.24404205935292775 back:0.21060515296149449 right:0.1596373417038819 :0.1401390983827808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6972555871647563 a:0.11847869789837863 L:0.09039823351212782 tbe:0.048119608999226536 :0.04574787242551077 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.39049051221216885 a:0.24110496213535904 more:0.1527891715500505 in:0.11191168525544457 :0.10370366884697696 -change:0.274616456910258 visit:0.21799256984617457 good:0.21399567927318988 complete:0.15096695504911317 :0.14242833892126436 -two:0.6869444685480429 the:0.1687762761295256 The:0.05732913738437781 three:0.04638784721579198 :0.04056227072226163 -do:0.8342631652991193 be:0.07218908523206576 say:0.05728466057565763 think:0.02039560058408511 :0.015867488309072208 -the:0.605240948886558 his:0.15887377338268854 to:0.10093306489487781 a:0.07786299824533527 :0.05708921459054036 -him.:0.34869122192803254 them.:0.24822832940429912 it.:0.17001036217731655 her.:0.15689810885494263 :0.07617197763540924 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3142559086876891 any:0.27753924140881475 every:0.2106493590972288 some:0.11551507788719186 :0.08204041291907542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8127858468781031 this:0.07087465872970376 a:0.05761331512233317 tho:0.0416770842221787 :0.0170490950476813 -will:0.42360209893221745 may:0.1753039640991361 to:0.17392661765376446 shall:0.11574748132776896 :0.11141983798711315 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -persons:0.3613915298763694 over:0.21965564667043527 men:0.1503777024248131 suffering:0.14866277376123416 :0.11991234726714804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ready:0.2766298537405701 made:0.2708917352329654 used:0.16707510292951744 waiting:0.14803970274467257 :0.13736360535227463 -line:0.6345560104891838 lines:0.13876895823174518 that:0.11391768262485279 one:0.07055353826027728 :0.04220381039394095 -next:0.7043553510541185 last:0.20126672037607227 year:0.03799696670999493 two:0.030829657081416797 :0.025551304778397645 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.33828350297067583 two:0.26333804069029193 naval:0.18654567082274262 the:0.11559452618592905 :0.09623825933036055 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -forth:0.5949136395347948 up:0.17597163718058578 out:0.1059515171058636 apart:0.07160407224288012 :0.051559133935875585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -can't:0.284740348210648 hard:0.1918641123400899 do:0.18182065015838947 fancy:0.17863427505668011 :0.1629406142341926 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -New:0.9196968123943277 of:0.047023845590918836 with:0.016444529499001385 the:0.014333252949015527 :0.0025015595667366563 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.3595458365928352 I:0.29077034975684324 ever:0.15230585346016026 else:0.10765082231493137 :0.08972713787522994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.2994305676496252 bonds:0.27896126881924754 land:0.1554550729824165 debt:0.13755401568698888 :0.12859907486172198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.454061579648292 the:0.21446455995625832 to:0.1557095886294272 low:0.13822365951755583 :0.03754061224846658 -ten:0.2634892788064756 five:0.20287052682344453 forty:0.18846628137277427 100:0.17827126670311982 :0.16690264629418558 -not:0.3075248712485561 wait:0.2516193049832044 more,:0.15816942716457283 another,:0.14235251241025282 :0.1403338841934139 -ago,:0.47016345004924365 ago:0.3069273046454643 old,:0.08286725385981793 ago.:0.07139164865472304 :0.06865034279075101 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.4423249249834795 to:0.21180739437470558 of:0.16802864005263354 shall:0.11842363558192931 :0.0594154050072521 -been:0.9082403445433292 become:0.03558058774677597 already:0.02473565695189501 now:0.01788513586957237 :0.013558274888427547 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -young:0.4951371277102692 old:0.2914719286644638 first:0.07498043016915264 poor:0.0707977973769783 :0.06761271607913594 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -me.:0.45073327886484654 me,:0.18379043452687435 for:0.13528523142798818 me:0.11539590482937659 :0.11479515035091428 -were:0.6508087381471069 had:0.1463528953584246 have:0.1109125435827059 are:0.08211344473444888 :0.009812378177313757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5994712541718059 any:0.14657002063944885 be:0.10854377599148907 take:0.09190660446772189 :0.05350834472953431 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6431622415585752 a:0.2724918827857103 this:0.029600557940155633 his:0.02923310832863178 :0.02551220938692721 -man:0.42328222428655016 bill:0.18444159166613774 resolution:0.15328290999881405 copy:0.12346674550844153 :0.11552652854005656 -of:0.7388294712788657 in:0.08083831978741163 on:0.0641342849743847 and:0.05817491857220038 :0.05802300538713774 -go:0.4652092036217017 pass:0.24625486477441966 get:0.1051825151974533 run:0.09702209187973315 :0.08633132452669216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.4813807508488466 one:0.18615104954318165 quarters:0.1283592147097957 years:0.10443596788423172 :0.09967301701394433 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.2587770466278489 amount:0.21274862795409125 State:0.17969455837220616 city:0.17623414319364078 :0.17254562385221298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.4336999090293634 of:0.18472506228922622 in:0.1467541629298145 and:0.13643017913752864 :0.09839068661406725 -of:0.6214744970809231 for:0.14063986392168645 or:0.11481712241492374 to:0.07726205272404993 :0.04580646385841686 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.3122396706103437 be:0.23546165459622612 have:0.22168093599785324 had:0.19367649276641002 :0.03694124602916693 -a:0.6933341850320841 the:0.2005823012950191 available:0.05996275179781331 such:0.027215457326345074 :0.01890530454873847 -Methodist:0.42373474767066427 Catholic:0.40829921701165334 Christian:0.07671207172679649 First:0.050376294302645404 :0.0408776692882404 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -the:0.5398137168654048 no:0.17775044446416777 some:0.1117361014307545 daily:0.09072592053543607 :0.07997381670423673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -election,:0.4093859881129752 on:0.20656121248647902 and:0.18046494506453778 shall:0.12500524441192398 :0.07858260992408396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5640761607540923 this:0.1680334759341253 some:0.13594228941244635 no:0.0673636001273117 :0.06458447377202453 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.4526872058457845 there:0.27436793993887704 It:0.10015919345440695 done:0.0899370966987188 :0.08284856406221286 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3011631478785402 when:0.2514420982770487 that:0.17318309172149438 if:0.16943231667743688 :0.10477934544547986 -the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -and:0.8786557348399121 acted:0.0327019786491431 be,:0.030649713773292876 or:0.030583334594268246 :0.027409238143383776 -the:0.6403577114126856 a:0.2468708804142158 tho:0.04518272435707398 mere:0.037221055687356626 :0.030367628128668066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -increase:0.3576492934141918 hour:0.21135426543650054 open:0.17407937829179693 in:0.16598046127234056 :0.09093660158517015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.5553848567185471 any:0.22817519936701647 some:0.07952921036229792 been:0.07867694558931602 :0.058233787962822414 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -lowing:0.5288721830723215 lowed:0.36576149894105897 low:0.09583746904085652 by:0.005885544528133959 :0.0036433044176290247 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whereas,:0.2820187667917907 if:0.2631992498772402 as:0.21704687430022998 although:0.12248723281026581 :0.1152478762204733 -the:0.5310317121973193 a:0.34911016054802496 present:0.0729081899445916 tho:0.025946831773792537 :0.02100310553627162 -necessary:0.25931622031166096 ready:0.20610421314042437 possible:0.20110341172972038 bids:0.1811273759145347 :0.15234877890365964 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -disease:0.24475887686825445 market:0.22055183293092415 storm:0.18915032887327163 weather:0.179663525534165 :0.16587543579338476 -railroad:0.42006668685564036 said:0.234890957446692 same:0.12445768405752852 railway:0.12326007980711855 :0.09732459183302067 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.4899363711207568 to:0.22878815995067248 one:0.1447870406934422 of:0.08890896886359054 :0.04757945937153805 -part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5382768120697441 a:0.16860080453348836 his:0.11741025155391979 make:0.09269970563490183 :0.08301242620794591 -day:0.2962525822937853 Monday:0.2600770986820858 place:0.17535555727657084 time:0.1648307342564858 :0.10348402749107213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.6397681279996322 think:0.11115605133003881 be:0.11027784903145224 doing:0.08841349126970305 :0.05038448036917371 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -tion:0.7733271729934568 tions:0.1657311648777453 tion,:0.047984177986286104 tions,:0.008787049420020943 :0.004170434722491104 -of:0.7017198845621068 in:0.17415264342344886 to:0.04547174608066524 for:0.04242853352141151 :0.03622719241236771 -in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 -go:0.37984996820751143 sit:0.19185640036597262 put:0.1451866269539824 break:0.14271984163918666 :0.14038716283334673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -City:0.7334831032984012 Town:0.15040446492369144 Union:0.08020157290441715 Army:0.01815212846115625 :0.017758730412334067 -those:0.5412430481686509 all:0.13754252546756005 women:0.1113237074070073 others:0.10821651783973059 :0.10167420111705111 -made:0.4437874340174794 taken:0.1633390592910644 given:0.15703732540907547 killed:0.11944968794230583 :0.11638649334007495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -acre,:0.35959773656943794 article:0.17719852589133187 act:0.16656447746995778 amendment:0.15089737328652414 :0.14574188678274827 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.3337104578233396 the:0.2876092430073183 a:0.16325397291229707 of:0.14815523163105315 :0.06727109462599178 -The:0.5180379672980362 the:0.27713009824430895 Any:0.11984576512587256 Every:0.04283317368230086 :0.042152995649481335 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5625227966613234 what:0.12923022947972815 no:0.1240213026471663 that:0.10350196586871586 :0.0807237053430661 -city:0.6167406199160685 half:0.12716186133723026 steel:0.10254781215913482 paper:0.08467780845143587 :0.06887189813613044 -the:0.8198115781121043 of:0.05856601126190172 that:0.052168105607638314 tho:0.041134401495562356 :0.028319903522793295 -number:0.357066106350674 amount:0.28626897999522427 cost:0.15811112676934172 value:0.10826333554764836 :0.0902904513371116 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -made:0.518199917583272 in:0.14696883152184906 found:0.14082067212125995 held:0.1033644880124015 :0.09064609076121759 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -taken:0.340018285349904 made:0.24991105067391844 picked:0.1572938104450728 given:0.12748868203750482 :0.12528817149359994 -the:0.41100976720151594 his:0.255518124350897 a:0.158869111532273 my:0.08952901446431079 :0.08507398245100342 -Church:0.348228629243083 church:0.33012631165971845 Church,:0.118377723982409 faith:0.10540881227045584 :0.09785852284433372 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.236247084957264 e:0.21896269273970398 country:0.1939279919055029 city:0.1776911016358264 :0.17317112876170268 -new:0.5101380006112574 particular:0.1540588792991618 an:0.12969021168781295 simple:0.12125461175028515 :0.08485829665148284 -made.:0.3889964545061107 done.:0.3101269544835944 used.:0.18360616179669512 before.:0.05907615385848931 :0.058194275355110514 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.237091778020143 held:0.23330056353944417 used:0.19105605084241906 found:0.18762546808626168 :0.15092613951173195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -then:0.31890058987330727 thought:0.20409977143002314 made:0.19756234723383012 leaves:0.16769810493183002 :0.11173918653100953 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -get:0.6453157913894747 go:0.12511136545667326 all:0.08414932675288474 come:0.08204314045545184 :0.06338037594551545 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -court:0.8608611493458783 power:0.051911211066830054 command:0.031975834563167285 law:0.0294964268748203 :0.025755378149303877 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.32527089354332717 has:0.25338379517228515 is:0.1866710120744496 had:0.1191545092441744 :0.1155197899657637 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.5424653590494194 up,:0.20455470213833354 rich:0.09129704325491492 in:0.0881639347313913 :0.07351896082594082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -as:0.6666488927064538 well:0.1453341765044518 and:0.09300721192286047 guilty:0.05084184142506087 :0.04416787744117314 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.2756995055969029 and:0.21965281807180773 in:0.20727914231567793 of:0.17744131504454397 :0.11992721897106742 -have:0.43566196875438806 had:0.27025921546081283 was:0.16689286729673758 am:0.07895371023658736 :0.04823223825147413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.45799172542562155 he:0.37069514413278815 she:0.08934928969707727 It:0.05966579634620596 :0.022298044398307126 -of:0.857759949186879 to:0.0574521336428488 in:0.04285305045913058 that:0.02624472706622813 :0.015690139644913483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5646300798522377 a:0.24950475534296465 this:0.11962508134534525 no:0.04459168727189446 :0.021648396187557862 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -home.:0.22032787392689374 face.:0.22002146332428063 death.:0.21729672532277478 life.:0.2137807360217256 :0.12857320140432518 -which:0.382822512214865 that:0.3189651646776821 fact,:0.13227465521724788 said:0.1132625584891586 :0.0526751094010465 -he:0.4480995390681986 I:0.17581972247155428 they:0.15786148584009835 she:0.1427183176438113 :0.07550093497633742 -to:0.6906259377248578 may:0.2186192902617216 shall:0.04959620930370196 and:0.0266509148346066 :0.014507647875111954 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3950937267274982 in:0.30229319397582793 to:0.13232349052698963 under:0.08877117028110286 :0.08151841848858145 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.28147012339328836 by:0.2796103789531846 with:0.16240403812700518 of:0.14283011497204337 :0.1336853445544784 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.794527759507964 on:0.07249967245512022 in:0.05181139655836193 and:0.05132185777688634 :0.02983931370166769 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.7003362758556873 in:0.22810600029945594 In:0.03274868381392822 to:0.028861035046104665 :0.009948004984824031 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -free:0.24859791767391443 people:0.22214004514879504 road:0.19640848324651725 water:0.1670105641827968 :0.16584298974797645 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -C:0.28474600709676084 E:0.18519546315133983 B:0.18332411609027244 W:0.17875587287094405 :0.16797854079068283 -his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.37233464861192545 America.:0.19059024891336182 the:0.16792448922739395 them.:0.1456612654291315 :0.12348934781818738 -and:0.4327543179457997 but:0.31450666287552903 and,:0.10015887432513831 that:0.08189179224438563 :0.07068835260914746 -of:0.2666484158544237 use:0.24730350899251596 being:0.17807826460719448 way:0.1694384813425528 :0.13853132920331301 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8629827365365101 tho:0.04466622088761815 their:0.0427455922093495 freight:0.032821278361018606 :0.01678417200550376 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7448590226492949 a:0.1390914077192995 our:0.048134068750492295 tho:0.04468604424276123 :0.023229456638152048 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.523487302131522 was:0.36245509710169005 Is:0.05371704333649195 appears:0.03803195792966676 :0.022308599500629123 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.38236937281689487 a:0.3805517957672416 this:0.1101486683242592 any:0.09489511970655966 :0.03203504338504472 -the:0.6845231390678806 of:0.11147321785613293 his:0.10994185596287016 my:0.049985746226673955 :0.04407604088644233 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.267861136824984 it:0.20383673215650489 time:0.19401556187946167 time,:0.1686106703346862 :0.1656758988043633 -people:0.2687539768442318 place:0.2364378571301644 time:0.18446464312153793 same:0.1699856905403859 :0.14035783236367985 -is:0.421769938190978 has:0.2518665204415521 may:0.15852474864712318 was:0.09654557710718363 :0.07129321561316296 -he:0.5638347019702764 it:0.22327987366174534 she:0.14409619947965507 It:0.038879135851071854 :0.0299100890372514 -of:0.7426468585380817 and:0.09460015463947226 in:0.0800523025004472 to:0.052690411805860864 :0.030010272516137942 -duty:0.2443036096521243 views:0.20281579720904214 home:0.1953281848113325 work:0.18818011683716432 :0.16937229149033667 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.6435970974749966 had:0.12732018861750605 are:0.12253773967739857 find:0.055079998557356055 :0.051464975672742656 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3894253283065857 should:0.20197804997371752 to:0.16839376577676599 would:0.12295282759046314 :0.11725002835246752 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -payment:0.230792487352589 part:0.22531449542619947 proceeds:0.2036993338045452 plat:0.18567282479308475 :0.15452085862358161 -of:0.8708901337826848 to:0.04059196636227122 in:0.039316920735402876 that:0.02505446318643989 :0.02414651593320142 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -average:0.262609927170552 whole:0.24465373768889534 same:0.2218786572107609 great:0.14289025765025912 :0.12796742027953267 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -even:0.5160057881434225 the:0.37466341337602416 bearing:0.06658340217566258 interest:0.029479136338469165 :0.013268259966421522 -that:0.324316500847497 he:0.2025768121475051 it:0.17353134994514116 I:0.15144901217639406 :0.14812632488346264 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -important:0.29546952270922033 of:0.2424134513434441 likely:0.2280480829360008 desirable:0.11811225803486033 :0.11595668497647448 -have:0.24682621236874797 has:0.21952188925956095 had:0.21929290101575818 was:0.19362105314304626 :0.12073794421288657 -and:0.29212149405430765 of:0.2511669439285053 in:0.23362995317273186 at:0.13755081626389296 :0.08553079258056234 -are:0.2889273550528222 have:0.21661436896613256 ought:0.1956993604835726 were:0.15191221466628485 :0.14684670083118778 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -life.:0.37463839821483685 government.:0.27613490491356163 election.:0.11803302006296948 law.:0.1179285231936595 :0.1132651536149725 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.2998064370197907 who:0.23146241125766123 day:0.214644448340376 thing:0.17967427419211845 :0.07441242919005353 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4459223275701213 have:0.3614724186054513 see:0.10392579296737967 make:0.044396544950004044 :0.0442829159070437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -their:0.6854854760697403 the:0.23675401379870212 our:0.0489181581760275 tho:0.015405934005141522 :0.01343641795038869 -months:0.7586631752616985 years:0.09942126193496156 weeks:0.08247731478289531 days:0.031547518965051265 :0.02789072905539332 -chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -long:0.38337830678612894 well:0.2169569119218413 large:0.1744648695656167 good:0.14565992151957216 :0.07953999020684091 -them.:0.5418967070052477 it.:0.20411234320701613 him.:0.13482853754930088 us.:0.07827636942576274 :0.04088604281267241 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 -and:0.2915407599180623 in:0.2707230201860661 from:0.19376921079653808 to:0.14974639603034903 :0.09422061306898467 -of:0.5346565734466369 you:0.13168563883431836 whether:0.11595092178266239 what:0.11474008294905672 :0.10296678298732559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -about:0.31518220765009664 of:0.3049155883406177 to:0.13423558696869362 north:0.12748443819427588 :0.11818217884631604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.869967515582271 Democratic:0.03980171415438008 District:0.03576311272091193 District,:0.027911624110143068 :0.026556033432293773 -would:0.30132202511362466 to:0.20134335097501027 who:0.1851915441005974 will:0.16044808517235148 :0.1516949946384162 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.24693295655049666 does:0.24118173325407918 was:0.1981097289170006 is:0.18507910304345168 :0.1286964782349719 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2948005148851082 with:0.24678036030087755 in:0.18544282389754674 of:0.15758742403927742 :0.11538887687719007 -highest:0.3177466605530098 new:0.18788074718168093 said:0.1796836742110362 final:0.1749088318385615 :0.1397800862157115 -the:0.6292442989569401 a:0.18652179848223271 this:0.13290109204201378 tho:0.02844800225137504 :0.02288480826743846 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.48087917354816817 on:0.22941378961178568 at:0.1531674130421898 In:0.06849074209001556 :0.06804888170784085 -will:0.4311874681553715 may:0.20171570997978597 would:0.15599469524284743 shall:0.12314748397336106 :0.0879546426486341 -which:0.420592995689699 said:0.20209082065553577 whom:0.13078224777454728 that:0.1259679340949773 :0.12056600178524056 -and:0.37604432003605914 was:0.19627840984671535 are:0.16982381127916693 as:0.12908341889372674 :0.12877003994433173 -sure:0.37555006936348345 to:0.22532596980891315 terest:0.19148922134974072 formation:0.14881534080148529 :0.05881939867637749 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.5498347706702335 which:0.1274579088702106 they:0.121360763697825 there:0.11066846800240931 :0.09067808875932189 -to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.4547332106616316 part:0.16860762795210724 class:0.14980146531786717 story:0.12091001954858295 :0.10594767651981106 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -whole:0.5534772781176368 first:0.15506461472378869 next:0.1403152142008995 closing:0.07788714308214634 :0.0732557498755287 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.27057425687745057 with:0.20520127679835576 to:0.20510521520213149 in:0.18226333261037747 :0.1368559185116846 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -a:0.3804200016095241 in:0.23237547459171803 the:0.17274328474875925 no:0.1441484875368722 :0.07031275151312652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5579864994410588 was:0.1824977828007068 appears:0.10833532323307725 seems:0.08628289743446999 :0.06489749709068707 -from:0.5392251669363305 for:0.1890861960616435 with:0.11027481910952128 and:0.09686348859221476 :0.06455032930028996 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -he:0.7265060808505964 she:0.15477736426640762 I:0.044061997635927184 they:0.039439856358112736 :0.03521470088895602 -ceived:0.3227586953914724 port:0.2284261000273819 turned:0.19218251209174678 ports:0.1612062389938944 :0.09542645349550437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6037049216404505 a:0.32080946760516676 tho:0.032515773427244536 sea:0.02961152438593359 :0.013358312941204528 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.36915831345958844 paid:0.17488932083355793 secured:0.16227135660216174 done:0.1567834062108821 :0.13689760289380976 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.3146425405955671 in:0.291078355826065 on:0.26758187726703375 with:0.0669873891073452 :0.05970983720398891 -newspaper:0.5709049766209288 paper:0.27528337138926 and:0.05411783649103584 letter:0.05365803282498486 :0.04603578267379053 -wife.:0.24967870951022553 life.:0.21427720711979803 head.:0.2053588781273843 age.:0.17151502792982343 :0.15917017731276878 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 -them:0.41300329584559003 free:0.19322393832292992 water:0.14196810612365435 land:0.14186166546669446 :0.10994299424113121 -in:0.37409782436151773 of:0.3530333417159617 considerable:0.15380324813862387 their:0.06884537340552903 :0.050220212378367525 -he:0.4027515192604606 bill:0.22224057561191873 I:0.13548352914117462 action:0.12001514145812832 :0.11950923452831776 -man:0.3365570067160079 men:0.32676711479903753 lady:0.1680471203353185 people:0.09778843333156874 :0.07084032481806747 -him:0.41135245806584964 them:0.18352470462266487 me:0.1370050269539439 her:0.13455226706281223 :0.1335655432947293 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4122410004966187 pursuant:0.1799496860922268 as:0.17675939328383047 on:0.1321319706930795 :0.09891794943424449 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city.:0.2687553192465947 country.:0.26474334338264893 world.:0.19881503539006837 day.:0.13473216391929435 :0.13295413806139372 -well:0.35087980670486524 and:0.233739049258664 is:0.19072714015270298 done:0.12248361927049822 :0.10217038461326963 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -about:0.5620691715837564 of:0.2076201096829569 are:0.10335733662112236 and:0.07429100658012835 :0.052662375532035975 -law:0.3584613291937762 two:0.2275663913283805 one:0.1683729394993571 law,:0.13777077791394424 :0.107828562064542 -of:0.9060596404359029 by:0.0453149527106415 to:0.016729052266158773 and:0.016265525781433393 :0.015630828805863365 -of:0.3668677466765059 for:0.2011066143717148 to:0.15273195879711302 by:0.14593492892431978 :0.1333587512303464 -the:0.768561183604784 of:0.11317826712406694 a:0.04621678037110182 to:0.0417158381965697 :0.030327930703477553 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -strong:0.4154925513703237 the:0.2750765506997773 hot:0.11431776027164005 that:0.1066104368064635 :0.08850270085179533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4916658036044739 in:0.22178548892195366 no:0.11709635547215018 any:0.0919461216260615 :0.07750623037536071 -claiming:0.6474672465722684 interested:0.11396095662469805 having:0.09551896145985256 on:0.08062480265703302 :0.06242803268614801 -the:0.3293747819090199 a:0.31924728999300633 be:0.30826242862262027 bo:0.02286104723315851 :0.0202544522421951 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.3714329539305315 has:0.34237759125721273 had:0.2671211487012492 bad:0.01000248269506761 :0.009065823415939039 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4706991561931746 in:0.2702344681557709 to:0.09248673483210505 and:0.08357343766855002 :0.08300620315039949 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.44511997691536814 America.:0.1447708103979088 life.:0.1441365054083981 them.:0.14222741258971366 :0.12374529468861126 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -na-:0.9123665767789771 sec-:0.046471525104471834 na:0.03428900170690316 op-:0.005297012643014915 :0.0015758837666328017 -where:0.3656515788336137 on:0.20767668281177945 in:0.19643109845088833 of:0.13791083046354216 :0.09232980944017648 -up:0.3191957739798401 how:0.1959505283759279 up,:0.18663666599775208 in:0.16186225558684356 :0.13635477605963628 -new:0.3605351041485895 office:0.2380398733290707 city:0.15724144145757404 road:0.12677927020621926 :0.11740431085854638 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -run:0.37166534375321986 in-:0.18363616082154877 can-:0.17479506979176732 light:0.1663571815518214 :0.10354624408164259 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -over:0.2975677496060477 to:0.26511401928125955 into:0.2011410397604788 on:0.1362555669088669 :0.09992162444334694 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -to:0.5313648407782988 shall:0.18481837652026917 and:0.1286824693950544 will:0.08043771643787652 :0.07469659686850103 -out:0.7994111659577439 ahead:0.08011781294201531 back:0.06675780630303274 home:0.03270700021324862 :0.021006214583959477 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.7728851169450291 exceeding:0.08101937077922246 bo:0.0553549829360128 be:0.049105443887134864 :0.04163508545260076 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.3034363011558368 take:0.20557727392563568 keep:0.18383693365580323 get:0.16316149256965284 :0.14398799869307138 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -that:0.21481047288251806 the:0.21135764911252714 con-:0.20940121977485468 this:0.18228996093913458 :0.18214069729096555 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8021910512078377 such:0.07362126921157085 tho:0.050997745141725274 their:0.03926060963100314 :0.0339293248078629 -The:0.8235333450208013 This:0.05865810666270981 Every:0.04524152863109338 Our:0.03920016918428386 :0.03336685050111154 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -far:0.31815115285235995 it:0.2660527324742948 much:0.19714553925977332 that:0.12402403438613809 :0.09462654102743376 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -of:0.5380316826711351 from:0.17399886172299145 in:0.13152353356483223 on:0.07876425614289952 :0.07768166589814168 -a:0.6187348565141263 very:0.14472580095899415 too:0.09891905509722869 not:0.06927165604560023 :0.06834863138405066 -who:0.3756689522867987 it:0.1776301380946511 and:0.16391980882097953 he:0.15536382096197987 :0.1274172798355908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -the:0.8136899629657293 gold:0.0702626725926222 tho:0.05442389530921453 a:0.031825679609324184 :0.029797789523109918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7075699112382388 ing:0.11891721003359458 their:0.09997783098060806 tho:0.03689367728963055 :0.03664137045792808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Section:0.2649805184311266 section:0.25885089198282285 lot:0.217857670165036 April:0.1358917721245493 :0.12241914729646543 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7713488306502687 and:0.07164807094567092 on:0.06285447973724761 to:0.059892356404872296 :0.03425626226194068 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3027830290784722 as:0.26414942899680693 range:0.17363221155086636 since:0.1344100168990665 :0.12502531347478796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.48511391976155915 a:0.3433717287049866 this:0.08280631294500082 his:0.0505296769218864 :0.038178361666567 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -calling:0.41375125620421527 law:0.24573439642704267 him:0.12268556108446274 entering:0.11004713914083798 :0.10778164714344136 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days:0.39061477313264 acres:0.23775431664487212 years:0.13516248867172445 feet:0.12440006845975807 :0.1120683530910053 -was:0.41479703931313844 hereby:0.3331989708584169 were:0.09776115598218622 has:0.09481472716002072 :0.05942810668623791 -went:0.427273002727272 sat:0.2930482234238173 came:0.1310212408593474 got:0.07933638201498594 :0.06932115097457729 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2953733420980562 which:0.2775741993830776 a:0.1638023571237032 only:0.13397747283159245 :0.1292726285635705 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4635243960191842 the:0.3005439940097867 this:0.12179735562302874 to:0.05738168374468724 :0.05675257060331318 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -parcel:0.5909479099506468 any:0.1791916136708397 some:0.08873858015682487 part:0.07361809121316343 :0.0675038050085251 -any:0.5135577453163578 are:0.24839292290229825 and:0.09903854460109866 no:0.07423398957276225 :0.06477679760748307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.3213779671868427 out:0.304177786339083 down:0.15572111306407208 hold:0.11924096456119758 :0.0994821688488047 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5551123420839851 for:0.19663672596925705 to:0.11405044984561732 an:0.08820524537822226 :0.04599523672291818 -the:0.769853998324972 their:0.06342674786798254 beef:0.06279064457125894 his:0.05931320490143706 :0.044615404334349296 -secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.5529389145143224 it:0.22245359654103025 you:0.12483195206837784 the:0.062407808035399394 :0.03736772884087004 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.2613634027539848 bride:0.19598341567867708 first:0.18758453796095603 house:0.17949570359626563 :0.17557294001011658 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8025706497427723 his:0.05668814869560258 add:0.053294815588585995 give:0.04782532530723798 :0.039621060665801094 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.519768321777071 in:0.2579701873542871 to:0.1052716770989521 and:0.06778502921383572 :0.049204784555853975 -of:0.31947832714209534 in:0.2797730399662859 by:0.2234883618146298 side,:0.08964924973727835 :0.08761102133971066 -will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 -title:0.9718045732576459 claim,:0.012184137547801377 interest:0.006287655169271127 justice:0.005412801978987187 :0.004310832046294506 -to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 -up:0.3094519396100683 them:0.21480946236991363 it:0.19353560032649322 him:0.18117104046203059 :0.10103195723149433 -day:0.4547332106616316 part:0.16860762795210724 class:0.14980146531786717 story:0.12091001954858295 :0.10594767651981106 -the:0.3324483187717432 Mrs.:0.32382290272985664 Mr.:0.14625781931963272 Dr.:0.10554680676336115 :0.09192415241540623 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.5454767398070173 could:0.15441668413587795 might:0.11745439392378189 will:0.09715594013071575 :0.08549624200260714 -arrangements:0.34525768253530054 funds:0.312320258052763 expenses:0.13089444073504578 and:0.12658420534857223 :0.08494341332831837 -and:0.6283136246048762 but:0.17471017323348811 so:0.09386187165911039 however,:0.07270242925176061 :0.030411901250764595 -country:0.3042754026830651 people:0.20915384089266617 candidate:0.20857218518219584 city:0.14030914735910047 :0.13768942388297237 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -it:0.3776069407378469 that:0.283587390399868 what:0.2248377981560451 you:0.06998334694384462 :0.04398452376239543 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9314776529573962 tho:0.04441026680878769 tbe:0.016320491751711366 a:0.005022050934206069 :0.0027695375478986655 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day.:0.42246345055481926 day:0.18382449534068407 de:0.1553620079139552 one:0.12201027091916726 :0.11633977527137426 -now:0.4417402308633828 made:0.17340194633186362 due:0.14167440297050643 in:0.12395284283861285 :0.11923057699563422 -no:0.2594274482107354 the:0.2240554250296065 every:0.2142785983720492 that:0.15480448886433426 :0.14743403952327452 -man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 -No.:0.6255754024257446 lot:0.28824068560488325 lots:0.052165784869224366 thereof:0.024825683040440208 :0.009192444059707523 -forward:0.4005233504776897 up:0.2088366486507039 out:0.14511316348028722 back:0.13847881101215298 :0.10704802637916622 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4106282843588866 in:0.3422922723039723 and:0.09831189605971807 to:0.09618233517903418 :0.05258521209838878 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.732711341430702 and:0.157185251181469 would:0.049616462504912896 will:0.038292271474230206 :0.022194673408685778 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.2680350824059217 at:0.23774636691959164 of:0.18726661709356285 in:0.18310645806382883 :0.12384547551709506 -all:0.24107861403608172 having:0.21736795650605858 making:0.21392466738442117 giving:0.16452184045431129 :0.16310692161912735 -one:0.4361741561371982 that:0.18880532844953052 some:0.14261832749360806 and:0.12526874926049808 :0.10713343865916508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.853877889233595 cold:0.04064685208835872 tho:0.03711447810317029 dry:0.03665826357937179 :0.031702516995504186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.23405878455607926 way:0.20358716180032535 own,:0.18901136725121165 head:0.18748645812657858 :0.18585622826580506 -In:0.43847549957307713 tween:0.1718224446892278 fore:0.16867821867683178 and:0.13204329667558634 :0.08898054038527689 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 -two:0.33443485424973396 more:0.2336745859238879 one:0.20161368766543944 interest:0.11529656842239344 :0.1149803037385453 -the:0.9011670031447462 tho:0.035116055455847145 an:0.025282485139888445 this:0.023271960211591534 :0.015162496047926717 -time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.35548833076383496 to:0.23503855850277972 made:0.15917866114432064 such:0.1356890442490078 :0.11460540534005705 -were:0.30928746300174936 are:0.301655048058564 had:0.16157690664710408 have:0.11599659858881248 :0.11148398370377025 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2945456440986426 it.:0.20033359432003528 them.:0.17853117474675106 him.:0.17325114054925292 :0.15333844628531812 -that:0.4237301266536398 as:0.17625663323434962 until:0.15966406603640831 when:0.12978858510933525 :0.11056058896626711 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6306979202397921 this:0.14941925598105799 a:0.12046279278462503 his:0.06494527394000879 :0.0344747570545162 -and:0.3497689074658103 the:0.27184123518318654 he:0.16394286182366788 such:0.1281799154335086 :0.08626708009382655 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.44065063523721243 miles:0.1709710641720771 days:0.1420084165594722 feet:0.13024140525846864 :0.11612847877276959 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7489619613762715 his:0.09977879348138119 their:0.07089594886561006 her:0.0421255395043545 :0.03823775677238276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.333541648489166 he:0.2782637449687775 there:0.22002800437486147 which:0.08448382213941368 :0.08368278002778129 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -their:0.37084031550081753 the:0.3190056711354761 leading:0.15654703040648474 to:0.08887983621684226 :0.06472714674037935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5296322576342275 on:0.19050810660942866 their:0.15058467924827731 such:0.06750432475348211 :0.06177063175458451 -enough:0.45125595903145654 greatly:0.19051733177721994 much:0.12505732108123735 one:0.11875654303215076 :0.11441284507793548 -and:0.6523084549743727 was:0.10243695868989457 left:0.08805137866909724 had:0.0829070836330216 :0.07429612403361374 -it:0.3424664104005311 that:0.24324227295464307 now:0.20565828707178488 was:0.11000210057824547 :0.0986309289947954 -a:0.8193091280096856 of:0.0560357710225425 and:0.04444321138127112 is:0.04387983390068192 :0.036332055685819 -not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.45144663207805247 on:0.1877356107317231 or:0.13544174304169254 to:0.12417264938160673 :0.10120336476692517 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.7600326768573179 great:0.08026692866414625 total:0.06616354053901397 largo:0.04937565139963632 :0.04416120253988556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3310468606606106 as:0.3171821956011566 when:0.14194304961425766 if:0.1090689480655602 :0.10075894605841484 -that:0.33593629281439963 and:0.24118714260741841 but:0.2056210597530129 tion.:0.11273148672451802 :0.10452401810065096 -the:0.6914696889439818 these:0.12003928370811114 young:0.06707565083768365 you:0.0659670665790224 :0.05544830993120102 -the:0.76431849327689 our:0.12604065130850764 this:0.05645226397525426 tho:0.03763557945931719 :0.015553011980030944 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 -they:0.2573556637291737 it:0.25399695574392034 he:0.20362481499248958 we:0.15318846948635148 :0.13183409604806492 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8488264275190718 at:0.10138815465477422 tho:0.03287672967132772 tbe:0.011153638372228051 :0.005755049782598224 -the:0.5995991372512215 these:0.11779704933136603 to:0.10449964771144982 two:0.10342997314526522 :0.07467419256069735 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5815756631792119 was:0.27443044750696943 Is:0.11338262924914469 seems:0.016311506740330883 :0.014299753324343174 -was:0.28330969585292554 and:0.21833534134833407 came:0.18923739833402728 as:0.15854352120282011 :0.15057404326189297 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8625730883500952 this:0.04953923170468142 his:0.034407314417868554 tho:0.03061119917029064 :0.022869166357064222 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.2511828217890587 and:0.24314914651725972 moment:0.2072136947685535 year,:0.1642530055190051 :0.13420133140612306 -to:0.28258196102255956 would:0.24899333304099136 who:0.1783507625446864 should:0.16794626448344455 :0.1221276789083182 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5050220278801113 these:0.21948311423056818 all:0.144531224187181 such:0.08035318268479157 :0.050610451017347985 -the:0.6917167234824858 said:0.13640352178152354 this:0.12071616166631564 every:0.028459555832857343 :0.022704037236817687 -of:0.3398510516553033 in:0.22568913713266223 or:0.16876640246850788 on:0.1627088283460801 :0.10298458039744637 -time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -150:0.4639295046089149 200:0.14638178361131754 100:0.1341390725423584 and:0.12859574013794337 :0.12695389909946575 -one:0.5212847390129304 out:0.15294187241192392 composed:0.1327814462586652 made:0.11838493255350334 :0.07460700976297718 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.9016173907171718 bo:0.04125854314709842 have:0.026003388008001973 he:0.017759297968709294 :0.013361380159018412 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.950939721540357 greatly:0.027858679807203156 become:0.00812800333963036 already:0.007991556226685898 :0.005082039086123678 -twice:0.262912984726779 even:0.2528827081192343 otherwise,:0.18086420608688406 that:0.17061733880611224 :0.13272276226099045 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 -J.:0.3573110881582943 and:0.18994859005163034 John:0.16651140537999193 Mrs.:0.1528199742659758 :0.13340894214410756 -to:0.9486843284329957 and:0.024074413344846224 or:0.012296587652029454 of:0.007716180750953292 :0.007228489819175561 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 -can-:0.2682579750444695 bad:0.210022229534447 fine:0.1818891837562547 man:0.17044447326933432 :0.16938613839549452 -Davis,:0.40806378153493944 Williams,:0.2401894699070625 Jones,:0.1378094569551531 Smith,:0.11349543381285737 :0.10044185778998756 -all:0.3011228595699251 out:0.19662482579654006 away:0.1808925353105726 directly:0.17592772548994584 :0.14543205383301647 -short:0.6788316106960061 long:0.16834718093477496 good:0.06398142473412512 little:0.05932619847032106 :0.029513585164772826 -to:0.391542529666022 in:0.20639731626166455 will:0.15778916425257075 and:0.15123860896994867 :0.09303238084979398 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mrs.:0.5773956501739188 George:0.13188603555536998 John:0.13148354906697243 J.:0.11031450558719512 :0.04892025961654345 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States,:0.5895728615740914 States:0.39345690837457464 State,:0.011238860530573692 Congress,:0.004273079066464562 :0.0014582904542958031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.629132166522344 his:0.1757813797707634 her:0.08861513011206146 my:0.05846376440236234 :0.04800755919246878 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.8310765981326997 Bryan:0.08849844593940798 Roosevelt:0.029577782462831704 Miller:0.02609846489009964 :0.024748708574960924 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -have:0.3933758818462019 are:0.26764035946262754 all:0.1277980604707824 see:0.11728570750577583 :0.09389999071461222 -to:0.643746668846586 will:0.14685562542070194 it:0.08781146562155662 and:0.06090665504317824 :0.06067958506797719 -and:0.29377997814665124 Smith,:0.27531833923425997 Brown,:0.17205716235664853 Johnson,:0.13379538667597154 :0.1250491335864688 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.2974879219900176 but:0.20504443193886399 and:0.19765750949728084 he:0.1817040767525256 :0.11810605982131216 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -to:0.4193909191695697 in:0.21202617416436806 on:0.1267109925706018 for:0.12277356177014126 :0.1190983523253191 -office:0.30415755602034067 time:0.26768201526389296 date:0.17005313916874165 same:0.1320309962537506 :0.1260762932932741 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.2828109989428772 that:0.2571368311614903 as:0.24335688240740805 of:0.12368866720134856 :0.09300662028687573 -secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 -the:0.6468854348789427 this:0.1819925719988545 an:0.07845713077623166 their:0.049033141285365574 :0.04363172106060546 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4254677443594255 eral:0.16941994156746865 e:0.15289704064366097 The:0.13947170240937595 :0.11274357102006899 -such:0.6565819405276382 that:0.1132066184439417 them:0.08934185961561471 making:0.08396647000126202 :0.05690311141154352 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -stand:0.5580630360652151 was:0.13608574169543583 stated:0.11361199356090843 came:0.09842562661635783 :0.09381360206208285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.3361075632516218 in:0.24246212814597914 as:0.14754991181747226 made:0.1472837353305749 :0.12659666145435194 -and:0.2989890520359169 in:0.25316428400077196 to:0.1749105571842435 for:0.15293516232712273 :0.12000094445194491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 -But:0.39291785853090405 And:0.23040062018064753 It:0.13817718259460618 Even:0.12093573252516987 :0.11756860616867247 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.581218443190777 have:0.206704017310375 has:0.08180180247314027 no:0.07717707077128531 :0.05309866625442249 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.6222562013559172 end:0.1365908725780161 house:0.1175057555601247 counties:0.06704179440089604 :0.056605376105045874 -ceived:0.3227586953914724 port:0.2284261000273819 turned:0.19218251209174678 ports:0.1612062389938944 :0.09542645349550437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.5840176897100635 were:0.29703613175224064 have:0.06503095420195784 be:0.030622484861297723 :0.02329273947444024 -the:0.6625468899362945 since:0.1013763015499397 a:0.08287310692234721 made:0.07903026910352394 :0.07417343248789474 -the:0.36764519292935355 working:0.24993163755165365 able:0.17881646759591244 prominent:0.10535584579653536 :0.0982508561265449 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9205525471410262 time:0.03527925287340764 ot:0.02452590785798379 in:0.010504155520724694 :0.009138136606857682 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 -far:0.7917059143775466 long:0.08328510032727152 much:0.051923120032108666 soon:0.047069508313199435 :0.026016356949873858 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37121810681251194 over:0.21458356527688052 to:0.17680387329641778 while:0.11988141553047572 :0.11751303908371419 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -company:0.24971167363999766 station:0.24556461444923747 track:0.2018720083158122 tracks:0.17964475224731669 :0.12320695134763594 -the:0.744820431056205 still:0.07345047836472839 then:0.07196260482804673 after:0.0646607637365758 :0.04510572201444402 -not:0.36116429189647836 in:0.19222718335719152 to:0.18480426666810834 as:0.13324811211622656 :0.12855614596199513 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7604703745023687 said:0.10771713822903631 this:0.053672381516452046 a:0.04212333871733592 :0.03601676703480701 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.5146464129885979 there:0.2292980972160073 we:0.16426425183263524 you:0.06898444926701801 :0.02280678869574158 -by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 -line:0.4508436384896919 direction:0.250656563444991 side:0.22201935467316206 corner:0.04773402622620509 :0.02874641716594994 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -work:0.31389084376682796 money:0.23471261975316485 attention:0.19340705178039375 father:0.13240520817729284 :0.12558427652232074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8882130962300357 tho:0.03389410593024437 16:0.028076330041032722 3:0.027589739665392656 :0.022226728133294547 -and:0.3522623598757154 who:0.31898262312989667 was:0.11736317294844756 named:0.11174181056069087 :0.0996500334852495 -bill:0.3130192209026884 result:0.207745711953939 bride:0.1790661194044228 man:0.1504124945085327 :0.14975645323041717 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.5869656447401118 and:0.21838637041115733 1:0.07601853385672565 J:0.06487241217684364 :0.05375703881516165 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.625079997905728 an:0.21041673512383266 no:0.06450557462175274 all:0.05643039738517214 :0.043567294963514365 -held:0.38007321114053066 sold:0.330792238028317 made:0.12751620132517588 seen:0.08739890031559738 :0.07421944919037919 -make:0.4748962347395264 give:0.15660046887923373 take:0.13075111245983911 keep:0.12790266298044403 :0.10984952094095664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5230445174745113 been:0.30970563868759243 the:0.09349879817416917 not:0.03693524286134964 :0.03681580280237746 -the:0.7851174629517181 a:0.07597739731976444 tho:0.04890182754062444 this:0.045665762191353376 :0.044337549996539424 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.9136036618805775 million:0.0560929235589484 hundred:0.0175368689608558 of:0.00757555775809507 :0.0051909878415231335 -part:0.951286656082248 portion:0.02500038244921095 holder:0.011044696584090711 member:0.006790741195749205 :0.0058775236887011065 -sum:0.26613773914661987 payment:0.22696524500494134 amount:0.1942676309744366 purpose:0.1570745845214131 :0.1555548003525891 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -twice:0.2949696480038277 opposite:0.2674136681442296 to:0.16999438152193733 as:0.16864020862167348 :0.09898209370833196 -a:0.6612443666882956 the:0.22883908688899554 no:0.0851999621274078 captured:0.013001410817202571 :0.011715173478098374 -purchase:0.32336256531416446 highest:0.19443919803361567 same:0.17420305209087555 average:0.17190906978361375 :0.13608611477773047 -of:0.42021538872034897 with:0.21755589029340175 the:0.18222869229006003 on:0.09805500658694559 :0.08194502210924363 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.5201812084285321 portion:0.18058597911711066 end:0.17994158642236704 side:0.06294685849659533 :0.056344367535394894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.3304131597783069 enter:0.25915505342515477 get:0.19274157062846373 put:0.13123748981961175 :0.08645272634846293 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.4389826172127022 get:0.1840928277465789 see:0.13881054489579756 make:0.12908263547470925 :0.10903137467021225 -is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 -amount:0.33367574802765154 name:0.18299013168488598 view:0.17360884438446778 knowledge:0.15768545770780476 :0.15203981819518986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5299355440599023 in:0.25599625261541387 out:0.1266165732239275 on:0.0484355815554277 :0.03901604854532862 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.7699721876892721 probably:0.09531138765437643 never:0.05891260454223101 soon:0.04569168140624439 :0.030112138707876126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -J.:0.252932682069448 W.:0.22013122853214628 John:0.2087385578503463 George:0.1863143986892159 :0.13188313285884354 -of:0.7828938851398758 for:0.1032514722491411 by:0.04841579300553691 the:0.03922753137513944 :0.026211318230306795 -his:0.3166594645459452 a:0.2863393456210251 the:0.19851393001996112 my:0.1018649973240742 :0.09662226248899446 -of:0.38508785689650366 for:0.1983351819517313 and:0.1742851689410618 with:0.13592809533854827 :0.10636369687215509 -the:0.5748429289293095 a:0.3198701049331538 large:0.03801742749916946 lot:0.03671366576506199 :0.030555872873305166 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5106702827120327 to:0.17232842993382327 as:0.13923650189276948 speech:0.09893938017601542 :0.07882540528535921 -any:0.5553228480400179 having:0.15398219970033167 remedy:0.1323626804708189 it:0.08720495175238982 :0.07112732003644193 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -timo:0.41546967396229384 best:0.16450542627222509 morning:0.15863288194976788 time:0.1408297604202117 :0.12056225739550153 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3300461385570608 of:0.2228379615820337 and:0.17552472704418995 are:0.14421039483659503 :0.12738077798012062 -and:0.813939009880711 speeches:0.10469461339459481 recently:0.03224951850173333 was:0.028994445066507456 :0.020122413156453408 -B.:0.26614675853720593 H:0.2558205412222951 H.:0.2380105775241017 L:0.15576677066535696 :0.08425535205104037 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.47246553704202304 to:0.2816106425141536 in:0.09045842103757128 through:0.08118036858393478 :0.0742850308223174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.648880725957189 in:0.14648749814042267 and:0.0735029823190676 at:0.06615571167072601 :0.06497308191259472 -of:0.5515847051069919 the:0.1729398059904653 for:0.11247903078266577 and:0.08639991348098064 :0.07659654463889641 -industry:0.398865362173729 trust:0.2299189603292843 trust,:0.19951777147854932 packed:0.08736479534555225 :0.08433311067288517 -it:0.3345674602170162 he:0.24172186022518574 there:0.21661592776084573 I:0.13110951189674333 :0.07598523990020899 -seen:0.24594774575086126 learned:0.20347542790329926 been:0.1888229642725532 found:0.18090935937762956 :0.18084450269565677 -of:0.6650930657584568 and:0.14468781593613195 to:0.1232285125582683 O.:0.033741449047774326 :0.033249156699368614 -as:0.4799223575145564 so:0.3022219302474177 is:0.10282029650915933 of:0.06833020207737181 :0.046705213651494895 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7288474047270896 this:0.1876957954738528 tho:0.0362430077732695 refuse:0.029188413095988353 :0.018025378929799617 -a:0.8469012855115001 the:0.07456463632393168 his:0.02961949335101508 with:0.024809771488938717 :0.024104813324614435 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6068345648931147 he:0.17764187218637267 a:0.0849130020315904 is:0.06549286810320698 :0.0651176927857152 -a:0.6035313122186137 the:0.2760359344429598 this:0.050789062344711 very:0.0350288842773415 :0.03461480671637397 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day.:0.25206948033692844 year.:0.24680703047058403 time.:0.19823072133640535 week.:0.15541693264101605 :0.14747583521506613 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.8654107171473564 of:0.05394694480276402 as:0.0401428024196613 and:0.024487224990666395 :0.016012310639551875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9219078652668475 that:0.029325983976091628 in:0.02243488249655384 to:0.015054893157293293 :0.011276375103213825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thousand:0.41017745017874885 or:0.3878654279212249 feet:0.08265157770788197 hundred:0.06475222910296954 :0.05455331508917475 -was:0.5980350040239844 had:0.23186020222478718 has:0.1271567233057857 ever:0.026239316270166752 :0.016708754175275908 -by:0.41452308389527254 in:0.23248332559462834 on:0.19962601117212989 to:0.1022761291868103 :0.05109145015115895 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him,:0.22502825939080973 them,:0.2238634671376418 him:0.21694802310127906 you,:0.18921229642848128 :0.14494795394178808 -train:0.27859029463052365 the:0.25620998914923604 of:0.17502466307387707 civil:0.15288531490229804 :0.13728973824406537 -and:0.45240042615673787 but:0.14691221420150624 instead:0.1381778499482385 out:0.13568312844978653 :0.12682638124373088 -life:0.29818321585428487 white:0.19731863673284555 law:0.18631327908981754 buildings:0.16425023128107114 :0.15393463704198104 -would:0.34672967232794494 to:0.21844373827389724 and:0.17058872715460455 I:0.13925923803345794 :0.12497862421009527 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6585008709815218 im-:0.10157782905149798 below:0.08939880961254751 now:0.08848755981721236 :0.06203493053722038 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5402832755553493 in:0.34430951568932056 with:0.04295803976620328 for:0.03955727344291818 :0.032891895546208735 -and:0.31297455446893624 one:0.25401365038396645 the:0.24131806437914197 or:0.10512763142564144 :0.08656609934231375 -I:0.31398518939283643 they:0.2958570970822511 we:0.27611761913072813 would:0.06073359777307008 :0.05330649662111424 -the:0.27932842449953577 for:0.2767509622271481 and:0.2730371003033058 of:0.12143187362873131 :0.04945163934127905 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ascertain:0.42112481321600004 see:0.18303473058536934 make:0.1348743013799805 get:0.13054528774835897 :0.13042086707029124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Col.:0.3298974674694251 James:0.17929516506981794 Robert:0.16404267176832515 William:0.16366081687956985 :0.1631038788128619 -of:0.35328060582623 on:0.21715586838998868 between:0.18058346386610197 over:0.12651434335251194 :0.12246571856516747 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hand:0.24605190992480278 it,:0.23760104631930903 board:0.1811338176354331 board,:0.1682744651265696 :0.16693876099388555 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.3771624501681076 that:0.2572548666159114 what:0.18156192396783033 whom:0.11628476805256424 :0.0677359911955863 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -their:0.40972373607943025 the:0.3249238747634666 our:0.14009999533711134 many:0.08420841972958053 :0.041043974090411196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 -at:0.33533917645401545 is:0.227135588897449 in:0.16674763968952716 it:0.13577644466302385 :0.13500115029598453 -.:0.9754106735922866 street.:0.013797708159646295 o'clock.:0.004276161269860325 company.:0.003998044550546264 :0.002517412427660425 -they:0.3130296474336706 he:0.31120539277711146 I:0.17531792303371438 we:0.1269073066279321 :0.0735397301275714 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -important:0.586261280468157 essential:0.19635770816032258 Important:0.11082614076532649 unusual:0.053824554704688034 :0.052730315901506036 -of:0.485465061111722 that:0.3085178623138175 in:0.1291124500776917 on:0.05607853639132008 :0.020826090105448718 -time:0.8250613779509361 distance:0.08596627263925848 time,:0.03216633417892921 address:0.03142138967480378 :0.02538462555607241 -made.:0.5335010166868757 done.:0.31057277061764266 used.:0.06716851971622027 said.:0.04544273611178921 :0.04331495686747215 -the:0.5407702959127273 his:0.29351665327880905 her:0.08416378601760297 my:0.05029965789416094 :0.0312496068966997 -deceased,:0.4180488733502012 Mr.:0.22404167541827946 James:0.14305617193632778 William:0.11598261519873812 :0.09887066409645338 -the:0.5954329503015001 a:0.33344694247191886 this:0.03250635160422614 tho:0.027167661284427415 :0.011446094337927504 -pres-:0.9855412263950472 expert:0.005852503518260448 interior:0.003795692414836322 management:0.0026865324816778458 :0.0021240451901781933 -law.:0.3216851681407431 one.:0.1840749624639054 system.:0.18055986262266593 country.:0.1620529469612528 :0.15162705981143274 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4426108282158289 they:0.21718344254888342 she:0.11838538887836264 we:0.11681622125658964 :0.10500411910033529 -that:0.7114672321447363 of:0.14272322721885863 what:0.06228722146956065 where:0.04440549567711491 :0.039116823489729564 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -America.:0.2586966612342879 country.:0.1962816452637468 party.:0.19008241483846589 trade.:0.186138994661863 :0.1688002840016363 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.3349521245554094 is:0.24904592939704384 of:0.16086126470896617 was:0.1462459559399334 :0.10889472539864736 -the:0.35075588553290815 a:0.19953608427184427 se-:0.17399070721926035 permanent:0.1476908683947567 :0.12802645458123044 -has:0.5413648139410977 have:0.23813829070455397 had:0.19882814980727118 lias:0.01477099914420752 :0.006897746402869612 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.34312684861426235 all:0.2008735555828587 get:0.16474416246690013 pass:0.15373708345124298 :0.1375183498847357 -only:0.36388944494205044 be:0.2994803671572123 to:0.11976851349838633 have:0.11006068090284714 :0.10680099349950367 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -evening,:0.45114440767107367 morning,:0.17106114581989587 in:0.13961757153767165 of:0.1345196899400607 :0.10365718503129814 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6432387300092833 and:0.15338424018482033 an:0.11414927281501853 or:0.04531303636581395 :0.043914720625063824 -Mrs.:0.6200565346098025 Mary:0.1259663754968156 J.:0.09926018632439518 Mrs:0.08712385105997585 :0.06759305250901079 -man:0.39659494986186167 one:0.21793378505781694 effort:0.16006518133435033 department:0.11639863947923555 :0.1090074442667354 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.4782311587428306 A:0.1902108898882342 Every:0.13615809485587838 No:0.11316590179907707 :0.08223395471397976 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3571734738037028 they:0.2943766628539341 we:0.160257505650098 she:0.10151763048150642 :0.08667472721075865 -the:0.45730543036437354 his:0.24261374045427267 a:0.16491005352295637 their:0.0709217869877007 :0.06424898867069673 -much:0.4241789998321079 far:0.16986977292033606 arranged:0.14827152491498824 as:0.14705921514239365 :0.1106204871901743 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8249360039768447 to:0.05534892023050223 in:0.05421122998086181 for:0.04325472062477008 :0.02224912518702113 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -scribed:0.24655175724195852 -:0.2270367852497988 fault:0.22499105503848052 mand:0.18910694516185164 :0.11231345730791065 -ceived:0.48530204220776857 turn:0.15840050724998533 turned:0.12809673216431597 cover:0.11810583980214286 :0.11009487857578736 -100:0.3019114174527727 his:0.1940710648823827 50:0.19028177377175715 1,000:0.18776262879409084 :0.12597311509899659 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be-:0.5715027191173435 be¬:0.22518179106715766 be­:0.15573833036946239 think:0.02404869754217507 :0.02352846190386137 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any-:0.49876411908303103 a:0.21968688638380646 one:0.12162533988604873 every:0.09164828323926197 :0.06827537140785173 -all:0.4763418370333663 that:0.23819491576976637 which:0.1920576549385153 this:0.04850952499400939 :0.0448960672643427 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4395942189764365 was:0.2697932916090376 is:0.1324486241420178 by:0.1005653233004103 :0.05759854197209784 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.2911579793486492 used:0.23857317460862604 seems:0.20733903272176385 as:0.158523767845762 :0.10440604547519895 -went:0.27230826321821405 took:0.23091225641223212 came:0.17998930424995904 fell:0.16726028619134448 :0.1495298899282503 -the:0.563890067307771 a:0.32378051113228296 they:0.04033272180131019 we:0.039293217547005654 :0.032703482211630205 -regard:0.3057149411782757 order:0.28334663279449285 search:0.2111464206098458 respect:0.10206572494999128 :0.09772628046739461 -of:0.24056382332284 at:0.21597681786991796 for:0.214516469257559 and:0.1830386902604198 :0.14590419928926332 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7738970584035777 this:0.07050839427607174 an:0.06292138083636022 one:0.06274213855956019 :0.02993102792443036 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3453929917804486 way:0.17118315200964848 time:0.16737311488882695 subject:0.16714063652733305 :0.14891010479374306 -a:0.29091300004838877 found:0.2415872556418565 not:0.17426752806059045 the:0.14907280964694827 :0.144159406602216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7909511349685769 a:0.06297941935260112 our:0.04903254079732795 their:0.04876958067969392 :0.048267324201800035 -same:0.5613031175538102 early:0.1195481511722737 said:0.11113460590679103 exact:0.10581205479543403 :0.10220207057169112 -of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.566490923479531 in:0.1972865407348413 been:0.08990540210725946 is:0.07947085361298935 :0.06684628006537902 -and:0.284626764178383 in:0.2570302186749849 under:0.1783205085619371 on:0.17429965723155316 :0.10572285135314187 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.7603368078675502 and:0.06607667780673952 should:0.06479369438881645 not:0.05483441158753891 :0.053958408349354926 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8522569951566268 between:0.05441961811747425 to:0.03927705108687627 from:0.029947696704742403 :0.024098638934280114 -the:0.3069953956991274 a:0.3028709262729842 any:0.18706008386597822 to:0.15790870738637688 :0.045164886775533084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.5980847584875283 more:0.15504185420642533 good:0.11277659536919082 ordinary:0.06936051404616796 :0.0647362778906875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.29028156570257263 six:0.20188927382846703 two:0.1937337047487268 three:0.1729115895364782 :0.1411838661837554 -seen:0.24382716668605736 given:0.224497468664085 to:0.2108523925333124 told:0.16332992246045247 :0.15749304965609265 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3099604234603693 of:0.3092456491408393 in:0.1938960468620875 on:0.13563557898126147 :0.05126230155544251 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.2698315495873536 by:0.2431251706193758 to:0.2135208714500239 all:0.1681705380317102 :0.10535187031153648 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6864054966619095 that:0.16872563727348341 such:0.05285939174695163 thereto:0.05002856423940095 :0.04198091007825454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3108930077059749 study:0.22466180316635306 in:0.19833996770070836 of:0.1453832325296439 :0.12072198889731975 -as:0.39560017327588765 in:0.21571070586071844 it:0.13776098912834892 after:0.125766728232129 :0.12516140350291607 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.855089883604799 never:0.05399654621229402 scarcely:0.03321440854626277 hardly:0.031028282836091332 :0.026670878800552827 -employment:0.3449793856754548 as:0.24620079628359795 way:0.14740200176549081 than:0.13826338774250904 :0.12315442853294746 -the:0.8894846474056033 tho:0.043468692519603 this:0.03398768642972818 civilized:0.019010539774900526 :0.014048433870165064 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6499357948608346 not:0.1735535022873791 in:0.07216805783230756 must:0.05986649443445207 :0.044476150585026505 -and:0.5439248570589202 or:0.23463356814722267 for:0.1161690135684114 but:0.06193603810319295 :0.04333652312225267 -resident:0.5567285636511718 one:0.19778571297929057 all:0.10669431176813737 instead:0.07042655809754457 :0.0683648535038555 -who:0.6996489852507947 women:0.10367249316052442 we:0.0811637619897762 they:0.05891843737132524 :0.056596322227579564 -the:0.7825998224690001 their:0.08849910382764786 its:0.05109706326289861 tho:0.0421516326431281 :0.03565237779732525 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2840973036537027 which:0.21592593486607645 storm:0.20932002231430064 has:0.1878754570860723 :0.10278128207984781 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.6589483545349129 were:0.1431804011310859 is:0.10275188299947906 men:0.05707658796473881 :0.038042773369783435 -hours:0.3342605766983803 of:0.295427546064596 dollars:0.17457444574283307 and:0.10458300264514707 :0.09115442884904353 -not:0.5202153952352868 to:0.36602708997243943 now:0.050827404926771555 also:0.03353316264511652 :0.0293969472203857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.6952850952593489 had:0.13546544477422667 haa:0.09289239585170185 baa:0.03950237067403136 :0.036854693440691276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4260426717607154 in:0.328066263145436 to:0.14805970772778157 In:0.06336436860936792 :0.03446698875669904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.38657300829042107 better:0.2551386567159669 valuable:0.21346708918947205 the:0.07798122215805896 :0.06684002364608105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.644293571899575 .,:0.2423252728347836 A:0.05939332857169904 C:0.02767556816657856 :0.026312258527363783 -the:0.6929227286478797 a:0.10520488239161851 this:0.10095598521996041 every:0.06482319813639094 :0.03609320560415032 -and:0.26594793538518274 was:0.24562784583518693 made:0.19782804326284917 agent:0.1683997458987645 :0.12219642961801673 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9027672216723739 described:0.036539799115285945 or:0.022242084404514473 ot:0.01978539221860093 :0.018665502589224812 -the:0.7546637881848428 make:0.12172476219352563 their:0.04662399237969164 tho:0.03953249535953839 :0.037454961882401584 -of:0.29429515696927255 ceived:0.24108681259069437 in:0.19886756817761778 to:0.15697929829033955 :0.1087711639720756 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.48483008633330005 years:0.17539330490142574 to:0.11506568037416953 or:0.1141425602758343 :0.1105683681152703 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -were:0.7239718767123098 will:0.08216870418461752 to:0.08113647480084563 are:0.06051911470757119 :0.05220382959465572 -New:0.9907034083275106 Now:0.00548204238732119 the:0.0034524492034893077 w:0.0001951231870171112 :0.00016697689466199734 -difference:0.37608545481071115 line:0.24696757637622516 distance:0.23709018485210429 war:0.07096274191202127 :0.0688940420489382 -made:0.29178942454107776 in:0.2712003000391061 not:0.2464105796146314 as:0.09613535677376374 :0.094464339031421 -have:0.40288889615048096 and:0.19025957411635142 he:0.15417860597065927 was:0.1418769929138108 :0.11079593084869753 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.29965438987674453 of:0.20753909681811752 and:0.20267546901876224 in:0.16934937980081552 :0.1207816644855602 -of:0.631311213006753 in:0.2806964847306368 In:0.03416716623614992 that:0.027161648892123264 :0.026663487134337097 -recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5182833861972507 was:0.23489175165330792 Is:0.19149944186130471 has:0.03525930233420199 :0.02006611795393496 -to:0.2865546855772322 in:0.24321856297076463 by:0.1716481395816088 on:0.16694495734001955 :0.13163365453037484 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -Mining:0.5961250417604109 Valley:0.2869456052009651 and:0.0414033180837423 the:0.038086970365430926 :0.03743906458945066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.825452804105519 that:0.06624085103977934 his:0.05352348946958735 this:0.032221092604835355 :0.022561762780278858 -in:0.2855374491455766 that:0.21459330359753515 to:0.2089841473973801 for:0.15866097450700903 :0.13222412535249892 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.44987287127584874 Main:0.37975965302080267 Wall:0.07753240879768979 said:0.05120646640387533 :0.04162860050178341 -that:0.6377292974031921 they:0.16377241091164693 there:0.11129967349285912 sales:0.044020695014959 :0.043177923177343 -was:0.3017812137133732 he:0.234278683070456 then:0.1846502571791671 be:0.16229141645267928 :0.11699842958432441 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5981491458573046 have:0.23285215634339504 make:0.06737252818895816 not:0.05740202894870641 :0.04422414066163587 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.43092336192844727 that:0.2931524127051881 what:0.1209815790730512 his:0.0934000727694928 :0.061542573523820504 -day:0.22753826476708763 floor:0.2232358973026597 story:0.21197043536639926 time:0.1917010058554843 :0.14555439670836914 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -amounts:0.36276468345307683 enough:0.25614152730452244 task:0.13410671925711543 sums:0.13077927101470635 :0.11620779897057894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.5023527647960697 lady:0.22861673707700061 woman:0.13461535256830418 girl:0.08932841411046821 :0.04508673144815709 -the:0.9021981284697784 tho:0.037443849823167355 his:0.031960371414817806 their:0.014445194161199135 :0.013952456131037353 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.37280417937809984 board:0.18898747496271978 prison:0.15090216331150502 convention:0.1487298147251664 :0.13857636762250894 -tho:0.29140502843717647 any:0.21630869461520025 the:0.1964709990792459 every:0.15173795222904693 :0.1440773256393304 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.401677149707566 to:0.24776814029723207 in:0.14481202176557872 for:0.12725937792187383 :0.07848331030774933 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6587907448456556 or:0.15701436177610842 and:0.07717606688577637 in:0.0604817078381905 :0.04653711865426912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9310736410711427 tho:0.03820632419414702 South:0.015390978394611305 tbe:0.010529711050656419 :0.004799345289442506 -mortgage:0.3399707275688441 men:0.21145714925240977 sale,:0.17979756121695742 rules:0.14624259892312286 :0.12253196303866588 -unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7127176856153891 is:0.13052857622181663 Is:0.06245315289132792 was:0.05648309555363911 :0.03781748971782718 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3968377059513875 Bryan:0.19702680908172632 Davis:0.14841242007394234 Smith:0.1443383246444514 :0.11338474024849245 -been:0.788284839908293 ap-:0.10918609880027023 already:0.04562416495893908 ap¬:0.029324984759927435 :0.027579911572570413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4118461385107266 they:0.2586973295805354 she:0.13730855813546913 I:0.11906087980381284 :0.073087093969456 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.43621692673134543 is:0.249459278156967 and:0.13496673579452753 was:0.12888895927898236 :0.05046810003817762 -they:0.3427644108811817 we:0.24971206275180077 you:0.2273495612121639 I:0.13629679420499613 :0.04387717094985758 -is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 -he:0.667223416303931 she:0.11453208315335887 they:0.08828398676291047 I:0.06598230974368975 :0.06397820403610988 -hour:0.28790869813115627 act:0.212748389574435 account:0.19028024213079217 amount:0.16334313226288413 :0.14571953790073258 -a:0.6934731093496822 any:0.15760203880801885 the:0.08052518950870408 all:0.03822348130646654 :0.030176181027128386 -the:0.7745116225663797 his:0.09066806115951366 their:0.07665314076319969 its:0.0368993806832881 :0.02126779482761894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -market:0.8636643272914027 was:0.06569825250265894 and:0.03184159920900646 has:0.02193723845767473 :0.016858582539257153 -a:0.22323915211552592 at:0.21992468803974755 upon:0.21858841119382952 the:0.17018167928054173 :0.16806606937035531 -in:0.8245074772063711 In:0.07182759913478373 within:0.04663375348247419 the:0.04170408198091915 :0.015327088195452015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.7558124698740757 the:0.09543101224000974 such:0.05846391356290429 a:0.054366843870194616 :0.035925760452815585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.4724039485689615 the:0.2236784154218287 Main:0.19391678732975123 Third:0.07350108774036591 :0.036499760939092664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.46098514688605774 to:0.442366917921644 in:0.058833833769480856 at:0.02337621897425442 :0.014437882448563007 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.4149734230617392 result:0.1707078537837385 increase:0.15371215992597612 resulted:0.13482773512560464 :0.12577882810294153 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.26086328643041573 in:0.22687253268585453 that:0.21339736275621132 of:0.15014223151991993 :0.14872458660759857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.2848931654712822 and:0.2670009643936719 map:0.20018205592257962 roll:0.15826725206036926 :0.08965656215209696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7544249827651681 a:0.14585191096757835 said:0.03686419259155941 tho:0.03508915335195652 :0.027769760323737822 -he:0.43839349484493306 they:0.2438462449815894 she:0.18681622270588855 be:0.08114587264108993 :0.04979816482649897 -beautiful:0.2487215372170534 interesting:0.24523248123733282 important:0.21255626014944784 active:0.1638176076899696 :0.12967211370619613 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2796262544922033 as:0.25018608941441145 from:0.23505968223381316 without:0.12808713695586305 :0.10704083690370908 -man.:0.24799216288088155 success.:0.22779933691915688 work.:0.2180261428217251 city.:0.203287503446568 :0.10289485393166838 -most:0.2571865793153796 evils:0.2524435815503892 market:0.19543929082510558 only:0.14786169557976553 :0.1470688527293601 -the:0.5850402406249358 in:0.301081647507531 an:0.056346869571783885 issue:0.030940300438757423 :0.026590941856991932 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.42419770333717544 he:0.3856372509521161 she:0.10596550330090401 there:0.04350249052657724 :0.04069705188322722 -wife:0.44264057589643646 father:0.2261584286956828 friends:0.12332020742659147 name:0.10619296933009302 :0.10168781865119624 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year.:0.4235994330416361 week.:0.258982551280206 night.:0.2125252505440073 evening.:0.07847636920730394 :0.026416395926846845 -inches:0.3234807104810202 months:0.29766124328689725 feet:0.15590494504747257 weeks:0.13312863492294263 :0.08982446626166742 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -largely:0.4429736733841633 entirely:0.2456047931517805 mainly:0.12768962852455815 wholly:0.11647170761599886 :0.06726019732349911 -R:0.2506759276911019 C:0.21403477893357806 E:0.20394989284365095 W:0.1742162620095908 :0.15712313852207824 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -part:0.24791902209171252 majority:0.2132877534406275 increase:0.20317028266570442 share:0.168118304832713 :0.16750463696924245 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tent:0.34567769935304266 press:0.2844575153320419 plain:0.12992840916943185 ports:0.12688972481127309 :0.11304665133421037 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8242958604224737 other:0.07868871833207301 tho:0.036849746318194224 these:0.033095086205808665 :0.027070588721450486 -see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25001794287679424 pay:0.21111736990191468 be:0.1964993545982799 take:0.17365681459017626 :0.1687085180328349 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fifty:0.3500324985330506 14:0.19691079277214438 forty:0.17804122926163998 two:0.14323057797987632 :0.1317849014532886 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.3487466610088991 and:0.2958658315329436 that:0.21959653564662887 if:0.07175691243862137 :0.06403405937290692 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.7876675945793695 he:0.06152248281231525 was:0.058266545554101365 which:0.057087437434525524 :0.03545593961968821 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8511476978505857 our:0.04911318036191279 tho:0.04249161815772593 First:0.03166277662623188 :0.02558472700354351 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.49171269420591224 well:0.18318765811714371 that,:0.17415229886966313 is,:0.08114969041321904 :0.06979765839406189 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.432374617894176 much:0.34777850144218525 the:0.08813291398343749 nothing:0.07744262241641478 :0.0542713442637865 -do:0.4870890625558518 don't:0.2265940813180377 can:0.12221932267211616 could:0.1011220829443833 :0.062975450509611 -regulations:0.2583279905938755 information:0.24276845450570617 asked:0.20052027883425744 made:0.18059772402582827 :0.1177855520403326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sight:0.7531056932721031 hold:0.07739798211425127 one:0.07099415982716932 out:0.06098146052764967 :0.03752070425882677 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 -who:0.5663893510017927 she:0.2783279022946491 and:0.09407730458157178 he:0.03818946961058454 :0.023015972511401906 -the:0.7779554784668095 that:0.1326621457790383 a:0.044973533726015154 and:0.022464481094582146 :0.02194436093355499 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -very:0.44018919187277517 little:0.1988684616156923 re-:0.14665976074357018 pretty:0.11614350750601454 :0.0981390782619478 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.8783491234127474 has:0.05564393669083046 bad:0.02561149087854307 ever:0.022097958324511467 :0.01829749069336754 -father:0.24030125890441256 mind:0.22166434639986843 life:0.19574978487616654 heart:0.1730539534269439 :0.16923065639260848 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -joined:0.4001063025989945 join:0.19907301489438656 turn:0.1570414564890318 tire:0.12924922872725272 :0.11452999729033449 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.38030200002871833 country:0.20439055195388578 friends:0.14422294034895228 government:0.1404151606435878 :0.1306693470248558 -large:0.5458570964139405 small:0.27084506869835945 great:0.06969654347539447 sufficient:0.06048306662636006 :0.05311822478594558 -to:0.4797718079575929 work.:0.23321100594871585 for:0.12284082121531549 money.:0.08786525412089581 :0.07631111075747996 -the:0.5695557444804394 an:0.2317706392797576 any:0.10341840515355163 such:0.06660671614013736 :0.02864849494611391 -3,:0.27059194474626663 4.:0.26502242706133533 1.:0.17731367756330157 3.:0.14758627093325372 :0.1394856796958428 -a:0.4555879159543496 no:0.2497292004873661 sent:0.12162258723826638 received:0.09604767088442887 :0.07701262543558891 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.5059921789773126 it:0.2638911851311987 is:0.11667022116235791 if:0.056786295678881334 :0.05666011905024932 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 -man:0.27573893157549373 person:0.2512445942640613 half:0.24456952580288266 matter:0.11565951128706316 :0.11278743707049914 -the:0.44621391019636786 their:0.3863948577246185 our:0.12422082754702825 human:0.022954861598121663 :0.02021554293386357 -the:0.42552105430386 Now:0.21023537383017854 and:0.15576212011454277 here:0.12061449619003055 :0.08786695556138827 -be:0.2795882837149915 get:0.2564401932966066 perform:0.2221143540539856 make:0.15755160038283353 :0.08430556855158267 -in:0.349578914285354 and:0.29473985881271314 of:0.17927880397395435 to:0.12039569740288648 :0.05600672552509213 -be:0.8323193120518638 have:0.07311879152374955 not:0.050354636375595695 bo:0.0316046521417949 :0.012602607906996008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5411186326250456 a:0.19272641013111985 this:0.17826630926474768 no:0.047259863896715076 :0.040628784082371736 -to:0.8489017790259403 the:0.049137885272087276 his:0.04418242592090012 at:0.03708078933678345 :0.020697120444288796 -of:0.39486881318584416 after:0.20539890073224293 from:0.17024106333423208 before:0.11835260660285217 :0.11113861614482866 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Lieut.:0.266371285986597 of:0.22314665568496125 Mrs.:0.17970260552562087 and:0.17195305554107107 :0.1588263972617497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -United:0.9660871445925763 Southern:0.014847843204905764 Confederate:0.009134564711745638 other:0.005786371306168121 :0.004144076184604209 -could:0.33557437692526054 would:0.3022330222177181 will:0.1681959557574959 can:0.15682328537309773 :0.037173359726427685 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.4438736971739895 attention:0.17448214204489781 thereof:0.1394461881157221 pleased:0.13563943484682447 :0.10655853781856607 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -not:0.552417203896007 only:0.14875354595218332 entirely:0.13836171615359918 altogether:0.08703961492993806 :0.07342791906827234 -street.:0.7444325064140606 river.:0.09953991492908996 Army:0.07965845961071535 Jury:0.04452097354897582 :0.031848145497158316 -the:0.34212844740234916 in:0.26443205871572567 tho:0.16702039971856594 others.:0.12490593151457739 :0.10151316264878188 -of:0.32768939741288755 in:0.17602941693026272 half:0.1741046073801057 as:0.16690382172805693 :0.15527275654868705 -the:0.7745116225663797 his:0.09066806115951366 their:0.07665314076319969 its:0.0368993806832881 :0.02126779482761894 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.34823471485303403 was:0.2898454613631334 in:0.15538884751732587 for:0.1210653517874934 :0.08546562447901332 -new:0.42816983981164064 Republican:0.22125001327895916 Democratic:0.16890435809995757 petition:0.11120242181250131 :0.07047336699694141 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.7587895502615699 we:0.12956115021614634 it:0.038572804625810614 there:0.036591289027455565 :0.03648520586901768 -2d:0.3134389223505119 .:0.21736256241631363 Johnson,:0.15973125982363953 for:0.1553217639619035 :0.1541454914476316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.29594081368205916 in:0.2941464647059499 and:0.16516902182942397 as:0.1296535173807296 :0.11509018240183727 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -more:0.5937486189034198 less:0.2951392816466523 better:0.05738036380780866 higher:0.030474086630811976 :0.0232576490113071 -a:0.4139504208358596 the:0.32711148481303276 into:0.13977094763935655 under:0.07077617581283112 :0.048390970898919826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -served:0.32050725587186296 the:0.2830491353160701 only:0.15260125365648206 some:0.12322746521265493 :0.12061488994292992 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -reached:0.3064105255683562 to:0.27550960413812237 in:0.1796605164684989 got:0.1266103236479699 :0.11180903017705267 -make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37109984121662765 with:0.29613377181337636 and:0.12955720743015478 to:0.10749186362663923 :0.09571731591320186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -of:0.8522569951566268 between:0.05441961811747425 to:0.03927705108687627 from:0.029947696704742403 :0.024098638934280114 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 -to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 -held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -divided:0.25773250969230127 taken:0.24843272921345744 put:0.18179716413845098 paid:0.15844453577989812 :0.15359306117589222 -It:0.4066470849260706 There:0.3436217372435106 This:0.12338476511678025 He:0.10156937709304843 :0.02477703562059018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5789019529940022 from:0.1699902104681432 for:0.13070434450808843 of:0.08303421654849018 :0.03736927548127614 -upon:0.27091454642589075 it,:0.26959878041049595 into:0.2578395393020229 judgment:0.13135483394765926 :0.0702922999139312 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cut:0.25753362600193197 spring:0.2528070055551714 move:0.234296369202268 built:0.12932325094732386 :0.12603974829330483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3452611785656094 the:0.20562586387740434 no:0.18012440935186877 still:0.1486261180855827 :0.12036243011953496 -cent:0.39256889608050344 annum,:0.2516382765997904 annum:0.12342148081266742 acre,:0.11708782360443633 :0.11528352290260244 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.358048611679565 is:0.22926080259409254 are:0.2195791954464131 not:0.10285775255570341 :0.09025363772422582 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9113340224741332 tho:0.039810375678301216 South:0.019835198955242512 tbe:0.015914673584769844 :0.013105729307553344 -of:0.5376447187803708 to:0.25233007714077893 in:0.10256390264651132 on:0.05422683548381115 :0.05323446594852774 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4516565521879114 his:0.31723997798704434 a:0.14680947784940282 my:0.06284943890359788 :0.021444553072043595 -the:0.46097664819816253 this:0.17436947683462528 so:0.1314980622529931 a:0.12836386842772463 :0.10479194428649447 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -all:0.3762544032911623 that:0.20657763619234754 in:0.15574381709619606 about:0.13678667471140593 :0.12463746870888816 -not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well.:0.4690675878464163 good.:0.2286034080426939 much:0.13110054311309685 old.:0.12312132530503635 :0.04810713569275669 -by:0.37731850119039817 on:0.23368890635650386 in:0.192461202772757 to:0.11427074341805285 :0.08226064626228811 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 -almost:0.39513373804434515 nearly:0.16771611307290835 that:0.15550167217515706 to:0.15332065881881007 :0.12832781788877923 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -about:0.3716018459939082 the:0.25480357863770725 only:0.1641780909553678 in:0.1100137036250659 :0.09940278078795095 -he:0.37226056188427964 they:0.27865808163960837 I:0.16944708277446888 she:0.09468449049877241 :0.08494978320287072 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.2348976511795785 following:0.21883624409225189 question:0.21288170737869797 fact:0.17837350394983845 :0.1550108933996331 -where:0.5794516609927919 and:0.1726545794219664 which:0.1391639443318044 but:0.055690560645131504 :0.05303925460830579 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4621678577313285 by:0.3618283425804661 and:0.095469451300285 to:0.049358263948166635 :0.03117608443975371 -will:0.4591855893539 would:0.17436038977095647 should:0.13612921516603887 shall:0.11803866736303577 :0.11228613834606894 -conditions:0.4100681012187173 terms:0.21073316081047777 report:0.15270691849825138 opinion:0.11873503804420545 :0.10775678142834809 -to:0.42534479630849487 of:0.24259107764166657 into:0.11944177112443137 in:0.10921217220226706 :0.10341018272314016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 -the:0.8248998744086584 our:0.09211871161604977 these:0.03344845301254356 American:0.02787888331554928 :0.021654077647198882 -and:0.46162337067852355 with:0.18578937126541864 but:0.1429169952646837 for:0.11606859346382538 :0.09360166932754889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -If:0.44038153857835177 When:0.24902329601390977 Then:0.11337599835259714 But:0.10681530071951376 :0.09040386633562753 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6971332264710438 a:0.10844714514822822 his:0.08263807808702286 tho:0.05828508822508451 :0.053496462068620604 -corner:0.4161622498347786 One:0.1544731758405243 All:0.1526148774494868 Smith,:0.15127407203033288 :0.1254756248448775 -a:0.5619437656375059 the:0.33578240633031714 such:0.04662958198900726 his:0.02975468576145579 :0.025889560281713818 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -their:0.3322752412610413 the:0.33198747007420176 no:0.1685074312789618 little:0.09528135162504885 :0.0719485057607462 -and:0.44675780821507727 to:0.1893072494096103 in:0.16464656514222034 for:0.1047089163775613 :0.09457946085553073 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2898840640509074 I:0.2844648013204839 only:0.2290818458142747 earnest:0.099375138071393 :0.09719415074294091 -that:0.2675137633648932 to:0.24835781896876338 for:0.18431889646672087 in:0.17210338473346531 :0.12770613646615728 -wife:0.44264057589643646 father:0.2261584286956828 friends:0.12332020742659147 name:0.10619296933009302 :0.10168781865119624 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tend:0.501847263239443 tended:0.4457307978495082 tribute:0.04010547790844006 tained:0.007057365896771419 :0.005259095105837346 -excellent:0.7829929398704233 unusual:0.07494589924058173 ordinary:0.05459365899459181 extraordinary:0.04794986975644122 :0.03951763213796193 -at:0.37601817379763447 not:0.3216323104673551 to:0.1275711676638852 in:0.10150973162279112 :0.07326861644833409 -one:0.5629580457125193 composed:0.15215471327221744 worth:0.1018594684595848 capable:0.09813831331119799 :0.08488945924448049 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.34923499722655926 all:0.25481234169582473 in:0.1469072815842144 found:0.12911293016870792 :0.11993244932469373 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.49557616965793255 forced:0.17953351268856563 courage:0.15324720768588707 try:0.0873035783378639 :0.0843395316297509 -of:0.5219896498216882 young:0.20226087300507245 other:0.14389621968194294 a:0.07492155033368503 :0.0569317071576114 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.30522518007913685 and:0.26767543042421266 to:0.18953254824910348 was:0.15098927371586476 :0.0865775675316823 -not:0.9555555463864736 never:0.018788454003122873 certainly:0.01124207622041619 hardly:0.008663829546204344 :0.00575009384378297 -of:0.3163892160432853 is:0.2814467171105164 the:0.20270359807655378 in:0.1260196456454266 :0.07344082312421789 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5368116814716978 they:0.15018401159119754 to:0.15004169026892275 his:0.09020606163539024 :0.07275655503279167 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.29320028362225475 a:0.23232650829653964 S:0.17918210096307002 M:0.14903632421890659 :0.14625478289922883 -first:0.6754047839969607 present:0.2585950067824264 one:0.028633336727764448 single:0.020506506475563707 :0.016860366017284783 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5928769581503618 an:0.22303035455408501 its:0.07948468398312573 their:0.05401515215713385 :0.05059285115529362 -small:0.3612864370299869 good:0.20700699200594408 young:0.20013943055128383 successful:0.1238740388283883 :0.10769310158439685 -o'clock:0.4567279093886343 P.:0.30594860040137156 A.:0.1398358446355947 o'clock,:0.05015982678680694 :0.047327818787592596 -the:0.7416380410975887 said:0.1042640047818386 this:0.07056837312975163 a:0.0468886231580446 :0.03664095783277652 -own.:0.28285741903304656 work.:0.2596446818219341 country.:0.16076511094654336 way.:0.15174072040783496 :0.14499206779064108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.4547332106616316 part:0.16860762795210724 class:0.14980146531786717 story:0.12091001954858295 :0.10594767651981106 -Britain:0.8811451585251445 was:0.06754246626675862 Western:0.02339538401356187 the:0.017771275883123033 :0.010145715311411804 -and:0.46297046185391094 in:0.18031667290240116 to:0.12767026126618086 but:0.12728248782694804 :0.10176011615055897 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.2607088761936732 as:0.2597809366755588 in:0.24500187499480863 of:0.132118708113138 :0.10238960402282139 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States:0.5656821172806845 States,:0.4207305784952803 states:0.0059476988349809225 State,:0.00393338830393115 :0.003706217085123002 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ere:0.4479701180829342 ho:0.22017591000657658 is:0.1306854996665702 are:0.11130717830424743 :0.08986129393967164 -they:0.5715620758085647 we:0.19266673796431125 there:0.13469318880621609 it:0.0545421443910364 :0.046535853029871566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -times:0.31359391350072713 improvements:0.2502087053342886 methods:0.23734755323263754 science:0.11150256024016657 :0.08734726769218024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.4737314133851614 go:0.2380495690666368 run:0.10812856392627661 look:0.09612130536899059 :0.08396914825293453 -he:0.652522716379429 she:0.13051847927999433 that:0.10696221413209492 they:0.06432543485506985 :0.04567115535341187 -be:0.7049211307100851 speak:0.07529408471598081 the:0.07439283315968048 become:0.07344837293084286 :0.07194357848341074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ques-:0.4515338379918281 sec-:0.23401622068075978 mo-:0.21177008203085576 na-:0.09446424050728532 :0.008215618789270896 -there:0.33127746417116627 it:0.26836733108373756 It:0.21436669651030907 he:0.09883323595752522 :0.08715527227726187 -up:0.4599989558747142 his:0.1889496151407016 her:0.13196748192196592 their:0.11006589385820645 :0.10901805320441177 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ir:0.29276690572964464 country:0.2229238026084801 world:0.19759002167516643 -:0.16500509706951272 :0.12171417291719605 -which:0.30019217188460046 whom:0.2549796137567038 me.:0.1835946118316055 that:0.13788501233525205 :0.1233485901918381 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -to:0.9673852639293794 the:0.010327119639340137 and:0.008914528010574385 his:0.007026376341837333 :0.006346712078868835 -the:0.8268505797387272 conditions:0.06644381401826337 circumstances:0.03703133774423158 tho:0.03624961158408424 :0.03342465691469378 -a:0.779307851819415 in:0.11208239343424345 of:0.03833182103459007 no:0.035487749340712416 :0.03479018437103904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7295174686862521 a:0.16203007182632137 his:0.04055397020123217 this:0.03714054964548965 :0.03075793964070478 -avenue:0.233413820402659 America,:0.23242251784214948 America:0.18941666464818324 Pacific:0.17796109792099146 :0.1667858991860168 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.2870469952464825 had:0.19925228844695209 has:0.18747536037295717 are:0.18063092706987124 :0.14559442886373697 -same:0.3571736350166149 it:0.3039475934363801 duty:0.13577538319802065 long:0.10442158869333176 :0.09868179965565271 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6827295756640418 a:0.18656341489144335 very:0.046188588966300036 tho:0.044085570435232604 :0.04043285004298229 -at:0.6143103439378467 about:0.13101010872362026 after:0.09374111748789218 lots:0.0873080667139943 :0.07363036313664642 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5416442330914274 the:0.2860348819971125 a:0.12539994569306293 new:0.024047601432815525 :0.022873337785581625 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -work.:0.28925562466083343 friends.:0.20658841437160436 children.:0.19249661836788004 hands.:0.15680877442439609 :0.15485056817528603 -come:0.2354928863074445 been:0.23340556937970203 not:0.19197402515201092 gone:0.1718898962518852 :0.16723762290895738 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -you:0.28807221822002577 I:0.25185190881491853 they:0.23301933745447612 we:0.21352029515576534 :0.013536240354814207 -cents:0.7960450192683273 for:0.1271976497534917 to:0.0467071990835526 barrels:0.016696547649033427 :0.013353584245595209 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6390435500944216 by:0.14516449680515153 along:0.08751518345048138 on:0.06941880938885271 :0.0588579602610925 -and:0.30021480749205837 Smith:0.27207321159049697 J:0.1715063172648197 Jones:0.13082532663759053 :0.1253803370150345 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5364551962818305 this:0.2219260219752172 some:0.1021431656932798 any:0.07328125221886454 :0.0661943638308079 -a:0.3875750372252762 the:0.35173421670260724 this:0.1724212324692737 his:0.05832420954883592 :0.029945304054007044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.363935586248458 are:0.233047596290868 have:0.17014171614941276 did:0.15458186746579278 :0.07829323384546855 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.43604848992747836 are:0.1909507366451398 will:0.18001882984635525 was:0.14289034768888906 :0.05009159589213754 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -believed:0.2914688623353979 probable:0.18379297389358415 understood:0.18212928634706593 so:0.1786703498739672 :0.16393852754998478 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -country.:0.25863013631770937 people.:0.250168914805841 city.:0.24875522051140167 State.:0.14057141541734486 :0.10187431294770306 -western:0.4527967194157128 and:0.23905850286678082 silk:0.1117784359782558 flour:0.10362842253982793 :0.0927379191994227 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -otherwise:0.328143260746495 they:0.23093513854061234 it:0.1751002347756135 he:0.1485689431758826 :0.11725242276139657 -works:0.252245898024292 they:0.2439826149868893 and:0.19370414605831235 rates:0.1557114070621733 :0.15435593386833307 -annually:0.24494266362047146 tendency:0.22873456704643122 importance:0.185160584707464 ability:0.1731593328273277 :0.16800285179830565 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on.:0.2892532047303238 is.:0.21063496188027186 dead.:0.1938769533884682 in:0.1555642226377552 :0.15067065736318092 -was:0.4481104239234991 says:0.14419812884280275 saw:0.14188716440511548 told:0.13378656615071127 :0.13201771667787127 -went:0.28322020810287124 put:0.20716629249854848 took:0.20460834435500888 came:0.15411734927472043 :0.150887805768851 -that:0.3889252526513192 him:0.20787114716204763 instance,:0.18094707459643172 even:0.11491539956599577 :0.10734112602420563 -a:0.5472431962173714 the:0.2404008164132383 no:0.12243437555061741 not:0.07111508327830213 :0.0188065285404708 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 -Central:0.33126748934316375 street:0.3259995219280813 Island:0.13182318669963053 avenue:0.10588920345579729 :0.1050205985733269 -he:0.47668601339834543 it:0.2553512228102108 she:0.1088863916965048 I:0.0900008866470033 :0.06907548544793557 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.8833054589185964 ::0.03847539809289775 day.:0.026714863274300567 day,:0.026036738919047994 :0.025467540795157277 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.305069535102498 in:0.2478079897154482 to:0.16639745242132636 of:0.14105143952341348 :0.1396735832373139 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -line:0.8884040696474987 lino:0.0388341221946539 filled:0.030033333882861567 line,:0.02467049489267233 :0.018057979382313294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time,:0.2581004357568273 care:0.2516865256457958 time:0.23196606508439033 place:0.1426120459397908 :0.11563492757319582 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7080175686410553 a:0.11979263916779821 his:0.10852398893607604 tho:0.033540957374539875 :0.03012484588053068 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -of:0.4397458004572767 of.:0.3680281149135106 to:0.15945436504213692 by:0.022916256256445618 :0.009855463330630367 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.2680488920279353 will:0.20707349707659203 can:0.19397167570191517 to:0.17626755233408395 :0.15463838285947362 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.3281815345560928 were:0.27368513709512776 are:0.20079910689480712 have:0.18525748477355145 :0.012076736680421047 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.691124651998682 here:0.1010910206479786 again:0.07829319467123716 ready:0.06515151835494079 :0.06433961432716133 -tained:0.5447675230394642 gress:0.24740819869872238 dition:0.08680106930669966 tract:0.06883404048121716 :0.052189168473896784 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thence:0.6166301879514855 and:0.15909577989961415 together:0.15582469340639277 charged:0.034630376924618435 :0.03381896181788918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Assembly:0.40324008610107287 Grant:0.23960655597616973 Government,:0.15817182067975435 Government:0.12490069490188273 :0.0740808423411202 -it:0.42999852126027044 there:0.2599751831559433 he:0.17269270314752797 It:0.0912187823005572 :0.04611481013570094 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -face:0.808066935567377 I:0.10681987202066102 face,:0.03550233904260232 round:0.02688813399641253 :0.022722719372947262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6813731393083869 made:0.09773675400355819 done:0.08124393023156463 resulted:0.07313707764103868 :0.06650909881545163 -sixty:0.27478386653684295 eighty:0.24295757357693695 fifty:0.19664753362788404 forty:0.17144246381862863 :0.11416856243970748 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.37874390268936814 and:0.254635330242702 enough:0.16625106957902297 time,:0.12134616521499278 :0.07902353227391426 -young:0.5077199601875142 old:0.2700723491418876 poor:0.11134673300740261 colored:0.05805705003129146 :0.05280390763190414 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -is:0.6335685160414394 was:0.2419629842883279 Is:0.07466613351806352 makes:0.02765713663997471 :0.022145229512194563 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -friends:0.42337939752882797 audience:0.23693107877136863 neighbors:0.1307658115033111 guests:0.11944557738658264 :0.08947813480990956 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2806804053220968 who:0.23021658253070815 have:0.21967415982305932 were:0.13554757321320157 :0.13388127911093414 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pair:0.29851696796148514 prize:0.22917204406604158 think:0.1996186909876157 box:0.13740938575447473 :0.13528291123038286 -of:0.7746568084599991 in:0.07426008662061874 to:0.05725705795731131 and:0.047414400059885876 :0.04641164690218501 -to:0.9755531927262934 and:0.010449456438479809 in:0.006538994144769161 lo:0.004816970350236754 :0.002641386340220953 -not:0.3890979701409219 be:0.29456063814525935 have:0.12771327091310314 get:0.0994009122162952 :0.08922720858442051 -asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thereafter:0.40345503007194944 a:0.23595075635923635 being:0.15000469280788842 not:0.11979284521056217 :0.09079667555036368 -re-:0.29558099496441115 other:0.2529859502440726 Democratic:0.15871391070920884 oldest:0.155842425105572 :0.1368767189767354 -time:0.3901767875367833 days:0.18402171505721013 weeks:0.15741238730115034 years:0.15464643553665305 :0.11374267456820324 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.6892563833767177 a:0.19747067527863046 this:0.04225742297341679 tho:0.036074717080194774 :0.0349408012910401 -any:0.5553228480400179 having:0.15398219970033167 remedy:0.1323626804708189 it:0.08720495175238982 :0.07112732003644193 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.49176562644659544 in:0.2800173092613267 for:0.08359226562685541 on:0.07430918954661359 :0.07031560911860865 -of:0.5150176899828345 his:0.18690912898032921 her:0.13310814798341636 by:0.09096022419225992 :0.07400480886115998 -along:0.4106308369118688 with:0.2669748619374524 in:0.11964937289346426 to:0.11016220309825438 :0.09258272515896016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8982027888878481 tho:0.05161721443993014 this:0.028641250147958007 tbe:0.01353093225071615 :0.008007814273547771 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5818858157347447 the:0.1877409382153044 so:0.1193853516877518 very:0.06016863890607873 :0.05081925545612026 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hour:0.27792223753527034 hour,:0.19792389143497674 acre,:0.18544513977624716 old:0.1720240078065667 :0.1666847234469391 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6107014788700388 its:0.23849163408149257 any:0.060144282000669104 their:0.05339462627484699 :0.037267978772952556 -homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.4872369169889302 This:0.19420709664242136 My:0.1322884798506266 No:0.09502049968596075 :0.09124700683206119 -Island:0.36458772318258587 White:0.264872266456635 Court:0.19815141910724965 Central:0.15269956513699084 :0.01968902611653866 -for:0.6534956216469641 of:0.17477808385246274 in:0.11585967184503619 In:0.03414843132571988 :0.021718191329817105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5485635758143974 in:0.2115065874037343 upon:0.09563321769761585 from:0.07353496980300632 :0.07076164928124615 -was:0.4528730173083342 found:0.16000035090628034 is:0.15879898697715236 had:0.12603781943613881 :0.10228982537209419 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.3915611312983361 not:0.17204564578038756 already:0.16947183855088177 never:0.15832306530011775 :0.10859831907027682 -one:0.3604785064284075 three:0.35709860137246013 two:0.14352097001398392 five:0.07105217815687305 :0.06784974402827541 -a:0.7099134222540164 of:0.09736965604526725 the:0.0854652956074572 are:0.07218599513862656 :0.03506563095463234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.45410925532373997 the:0.41362836070443654 which:0.07819095924565983 that:0.02733408637616494 :0.026737338349998686 -and:0.3781830116469016 contained:0.2786336784260064 is:0.17353834329264647 house:0.08879265296574204 :0.08085231366870355 -was:0.4723005537965713 had:0.2551283613799193 has:0.18465234598717833 is:0.05465449280231851 :0.03326424603401252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3200793436287384 all:0.23698392766806617 to:0.1712324711648699 for:0.1468005618038697 :0.1249036957344558 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3892843509597423 he:0.17430520351364373 they:0.16870023281848268 it:0.1403971417936755 :0.12731307091445582 -more:0.602026620973022 less:0.17172711453963266 rather:0.12921682194128029 is:0.05111171474668244 :0.04591772779938264 -of:0.652939353182606 into:0.15173898829075338 by:0.09996885208585823 and:0.04827139238719609 :0.047081414053586394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.2891922931559792 more:0.2799196147589272 three:0.23013105020136385 four:0.11431411200452968 :0.08644292987920005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.4548940741081455 other:0.16439136970613075 less:0.12992134648793818 lower:0.12619297717173553 :0.12460023252605014 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -the:0.48669196938791504 his:0.29544462999219057 a:0.13378946191367824 her:0.04216220134709889 :0.04191173735911731 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.430997085321662 sea:0.2850332666640767 is:0.10499945243019426 was:0.09397760118698442 :0.08499259439708248 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -into:0.7017467196240552 between:0.097006722857719 Into:0.092786478072206 or:0.0639960404697752 :0.04446403897624463 -pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 -man:0.4977413373040864 matter:0.13678798048397203 point:0.12914945235724917 result:0.11943237639890907 :0.11688885345578343 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -far:0.2374272883677013 it:0.219330088640144 obtained:0.19771446817386007 saved:0.18165574490743636 :0.16387240991085833 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5333085152513634 not:0.1826379926702023 an:0.16455571959861476 taken:0.06173259811258951 :0.05776517436723005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5340936938458537 his:0.19097114535913198 be-:0.1563316960455383 her:0.06815421709817096 :0.050449247651305096 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7301168155226763 an:0.14177885935249987 his:0.05365811078576625 its:0.037512171283710656 :0.036934043055346984 -that:0.26068154943065847 of:0.21115345272889946 all:0.18179946332919206 have:0.17455149511755394 :0.1718140393936962 -been:0.9483222595190596 had:0.018426967405436676 ever:0.016684801494282468 recently:0.009201030345527135 :0.0073649412356941515 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -These:0.5184943278167037 The:0.433824738903378 Tho:0.021757133432149092 He:0.01672778888367264 :0.009196010964096541 -at:0.5437522332455197 last:0.19815662876791817 all:0.11429685642048276 that:0.07198232023680323 :0.07181196132927628 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.48528611472987754 13:0.19970164821883268 thousand:0.13406710886456408 miles:0.11991036288009066 :0.06103476530663493 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.32073642887104464 than:0.2104181077143929 has:0.1984519160753799 had:0.1630917256991464 :0.10730182164003615 -the:0.41876871464388266 either:0.2222699677085069 each:0.19718485040341 one:0.0916842381002334 :0.07009222914396696 -now:0.2774856421482546 talking:0.2177830451485038 brought:0.20978605313622367 being:0.14963000582409033 :0.14531525374292759 -be:0.8471044665558259 have:0.06298319584692516 bo:0.05468907155049025 not:0.02727706275722858 :0.007946203289530019 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.4917066619881819 has:0.4742270222487543 bad:0.015347401839742052 lias:0.009414120582384432 :0.009304793340937272 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -J:0.3809974750142998 W:0.20770338449232417 C:0.1551691398517447 E:0.15350523339597913 :0.1026247672456523 -to:0.791143085604342 in:0.09286031094208202 from:0.05010677233491847 by:0.03303377246260949 :0.03285605865604798 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -w:0.27813854176269137 country,:0.22928547182853395 way:0.18177233711180635 friends:0.1686725029666967 :0.1421311463302716 -interests:0.31726644598850706 interest:0.20641003923801587 known:0.17703263392852467 thing:0.1575350336819397 :0.14175584716301268 -public:0.7212074576230764 same:0.19923118968076525 general:0.03662988917775877 political:0.023482523316307378 :0.019448940202092185 -both:0.4632537631333518 one:0.14713600265563623 account:0.14494374036131782 this:0.12627454721377096 :0.11839194663592317 -have:0.3562305610378128 having:0.21046998361605573 has:0.20612518914609465 had:0.13119023071681196 :0.09598403548322494 -the:0.7336352260449112 a:0.10811651742629555 his:0.07959602518733137 our:0.04762819455410631 :0.031024036787355606 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.44886390986285823 it:0.19056854983731705 this:0.18583953875469666 law:0.09850827569034332 :0.0762197258547848 -find:0.24052805749408546 be:0.212947685883528 show:0.20525460156250697 say:0.1968911662329019 :0.14437848882697768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -those:0.3490542237732899 land:0.20031875424902806 things:0.16852529750334297 that:0.15411299553118296 :0.12798872894315608 -made:0.3993997459365809 made,:0.28756047657154893 done,:0.11011705044992949 able:0.10924272838994191 :0.09367999865199879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.30108265378603943 well:0.2566918497019301 much:0.15878947967410206 provided:0.14388689542299365 :0.13954912141493467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.854530667868843 its:0.05106028473966853 no:0.03987103934144234 their:0.027963305231351213 :0.026574702818694864 -made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 -the:0.8108332094572548 their:0.06253025135672219 its:0.06164271333923707 tho:0.04410577055896549 :0.020888055287820388 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -interest:0.373422498194942 importance:0.2884358976232226 organs:0.14981613322668494 forces:0.09727467378355688 :0.09105079717159359 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.5925224613450693 he:0.1866238662467761 they:0.08503350921057366 she:0.0820203219202831 :0.053799841277297825 -he:0.5833237546531892 I:0.21438553867778462 she:0.1286962474990822 they:0.04071878941358026 :0.03287566975636381 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.4484939786604129 columns:0.19819790378217939 papers:0.1476313104821104 beginning,:0.1088678166547686 :0.09680899042052854 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7640292232745802 they:0.08861638798001441 his:0.07099968727524436 their:0.04171432664049734 :0.034640374829663576 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4881395514509317 is:0.18088215814919967 were:0.12949189137452805 has:0.11464647673981264 :0.08683992228552787 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years.:0.4704345720384581 months.:0.17354043294813032 hours.:0.13762314065052503 days.:0.12624463605450895 :0.09215721830837742 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6528550263856682 for:0.17398642801871267 of:0.09413234947619271 in:0.06424487380515861 :0.014781322314267993 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.426209225407315 these:0.27819311434075006 good:0.12751735360929742 better:0.08673787873128555 :0.08134242791135204 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.29177927513978336 one:0.27546538675388743 part:0.2162920835259711 member:0.12571916314886405 :0.09074409143149417 -be:0.9308504241971133 bo:0.041225364143835305 have:0.011530119949838045 he:0.008794444202892255 :0.007599647506321071 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9048147570666462 tho:0.0388973120666566 this:0.022440215421831815 its:0.018485498438965943 :0.015362217005899407 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one,:0.30927186388631933 work:0.19711965580552837 question,:0.18187405756726113 changes:0.1560779041347623 :0.15565651860612878 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9027672216723739 described:0.036539799115285945 or:0.022242084404514473 ot:0.01978539221860093 :0.018665502589224812 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4622794985359273 with:0.19963923908320283 but:0.1413351637037934 as:0.10542046604100348 :0.09132563263607292 -is:0.5828157665026565 was:0.2191823791835575 Is:0.12173194669427344 to:0.0439638967000863 :0.0323060109194262 -the:0.64104334441982 his:0.1605724679545596 their:0.11501774910117206 my:0.04815458700028726 :0.03521185152416096 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.33308907606209043 Mr.:0.30491760847257127 Mrs.:0.1733105657398584 J.:0.09681483786786498 :0.09186791185761489 -same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 -it:0.34652131041825723 he:0.27161978823545524 that:0.16954240514481062 "It:0.1258523864802724 :0.08646410972120445 -interest:0.4927527898535898 him:0.20596618836019623 Interest:0.13160514540864307 them:0.12031257514156847 :0.04936330123600239 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -could:0.3289970597494731 can:0.3083780943440244 will:0.16054620416852952 would:0.13690999146757507 :0.065168650270398 -a:0.32556246103346287 the:0.20410584501380344 very:0.17253139189923514 too:0.1530201383157508 :0.14478016373774782 -and:0.5064623873305786 running:0.17017036552312084 except:0.12835762869136322 along:0.1061948060044749 :0.0888148124504625 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -room:0.4509553870015024 room,:0.261043790019545 up:0.14537200133056746 rooms:0.08266369967132946 :0.05996512197705566 -that:0.2994305676496252 bonds:0.27896126881924754 land:0.1554550729824165 debt:0.13755401568698888 :0.12859907486172198 -section:0.36099906382656194 day:0.26004376352765585 sections:0.17194109156326137 year:0.1121809240732514 :0.09483515700926957 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 -the:0.7523135734847469 said:0.11798175939233378 personal:0.049134600826182595 his:0.04775422972157281 :0.032815836575163765 -ques-:0.405250864393749 elec-:0.21998708668975997 sec-:0.21378165834153567 na-:0.09652804049922353 :0.06445235007573161 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -northerly:0.3841352299628106 along:0.18531335231043344 easterly:0.14945614010239525 at:0.1435126962176028 :0.13758258140675794 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -which:0.3765662726088103 and:0.26434674867092184 he:0.17998281798630708 who:0.10042122968163657 :0.07868293105232434 -say:0.47759094718248624 know:0.2270057461242821 believe:0.1383167195055771 knew:0.08984025854785858 :0.0672463286397958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3182462905359186 we:0.30594156753328905 I:0.2647204969483989 you:0.07079454992288613 :0.04029709505950747 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -inter-:0.7875314701786709 old:0.0868830158898088 for-:0.05689219315460606 l:0.050603012856440664 :0.01809030792047361 -if:0.442665934900336 though:0.24557744730215977 that:0.13530971144908116 an:0.08947419795634952 :0.08697270839207338 -to:0.3745437894089711 will:0.2417912987291144 who:0.17639658660778737 and:0.11783495392364728 :0.08943337133047986 -or:0.4379627255054819 on:0.3008038002446648 taken:0.12411996718543906 and:0.07653195687554461 :0.0605815501888696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -point:0.22394192426485618 hand:0.2169096826846268 dollar:0.1971831586412016 year:0.19095865171082813 :0.17100658269848706 -case:0.2930188596344642 man:0.20995556019689038 people:0.20484770000330355 same:0.17171166888917824 :0.12046621127616361 -homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.3995840425335272 be:0.25612129617962887 receive:0.1334537676713455 take:0.11559482176500432 :0.09524607185049422 -In:0.375634098160784 That:0.29184221626617624 At:0.12116629475561054 On:0.10695068170791237 :0.10440670910951663 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -Salt:0.6640001816361542 the:0.2643917253847247 said:0.05341499105060167 Green:0.009701656151802024 :0.008491445776717305 -and:0.3119670349172395 up:0.27536653548690354 down:0.17360455392463603 out:0.15810971747762212 :0.08095215819359883 -cash,:0.5842589917452051 that:0.14945695201547687 night:0.10208657562472961 day,:0.08649242554735476 :0.07770505506723345 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.30540004783051006 They:0.2865164497579964 He:0.16701472594792866 There:0.14180071921313972 :0.09926805725042512 -the:0.8371561460489745 a:0.059368617218866555 tho:0.03812658037424291 this:0.03781569733429794 :0.027532959023618013 -do:0.3214676690578258 make:0.2528002150429558 see:0.1531916938581309 get:0.1463131119278161 :0.12622731011327135 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -from:0.35352677030943513 as:0.31051687895162783 aa:0.21515213656063406 beyond:0.07003746204148888 :0.05076675213681412 -failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -is:0.5213694444632256 little:0.15626218807352307 much:0.11796969056390068 was:0.113861462084461 :0.09053721481488954 -the:0.6913457752561492 foreign:0.1308259214388151 a:0.06383619286661171 his:0.05708511567783446 :0.056906994760589524 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -better:0.4325588827327017 man:0.25213158629038446 to:0.13222244151623969 will:0.104146788941818 :0.07894030051885603 -be:0.6375115904742006 the:0.23799592579769868 bo:0.0506454076780908 have:0.04068649152036379 :0.03316058452964604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.4763418370333663 that:0.23819491576976637 which:0.1920576549385153 this:0.04850952499400939 :0.0448960672643427 -and:0.30755048307986066 at:0.27293489498082474 on:0.19596898409461203 in:0.13033834944802467 :0.09320728839667797 -filled:0.25762084994382817 compared:0.23834842899051242 covered:0.17502541508792596 charged:0.1738821123689405 :0.155123193608793 -great:0.41002151923145713 difficult:0.23443926325690673 hard:0.15727616785478488 big:0.1007846219786156 :0.09747842767823556 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -later:0.3886340911015305 more:0.25609648748139474 earlier:0.19784064298585216 less:0.10419515198584173 :0.053233626445380836 -and:0.24276242857868743 city:0.21440055698336274 a:0.1969866465320451 City:0.18305862975418624 :0.1627917381517185 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.43562495671460405 or:0.19395539551394209 was:0.14076618355522905 had:0.13367069705836912 :0.09598276715785584 -the:0.456386160448014 a:0.27126494674200663 this:0.10932588891473118 every:0.09969720588705086 :0.06332579800819725 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.6147695149326129 o:0.1203296554574421 uo:0.10359205040206074 little:0.088412161607232 :0.07289661760065219 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.3243905084634679 suggested:0.18031962140703497 found:0.18006778012694888 ordered:0.15954611708246735 :0.15567597292008098 -system:0.38361516727176487 rate:0.2752931612278896 depth:0.140377505206199 width:0.10754262005224835 :0.09317154624189831 -the:0.27995457229359894 whose:0.22468569827467802 and:0.18020150999792856 her:0.1783496273149834 :0.1368085921188112 -No.:0.9662121769098947 No:0.015153875608251453 6,:0.00876040662698926 of:0.005165045856944651 :0.00470849499791996 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 -of:0.5125092319904554 in:0.1667100840299336 on:0.1515820947276807 and:0.11939662144221175 :0.04980196780971849 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7089496397500725 and:0.12020169203916298 in:0.09377252426051483 has:0.04164405554566965 :0.03543208840458023 -Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 -are:0.6251354975229132 were:0.23973334246401076 was:0.06472235449387095 is:0.03952018226870478 :0.03088862325050038 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6661745772801642 in:0.22085757859684102 In:0.0396215715733642 to:0.03821088087280667 :0.035135391676823946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.6852147246970205 yet:0.12233178546935386 having:0.09334949466584878 had:0.05314428404152801 :0.045959711126248734 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -pair:0.29851696796148514 prize:0.22917204406604158 think:0.1996186909876157 box:0.13740938575447473 :0.13528291123038286 -it:0.2759404687379905 which:0.25555526316163213 It:0.22381221388878514 there:0.13115501689861542 :0.11353703731297676 -city:0.31258217869558846 house:0.19821906664847957 country,:0.16782370626587217 time:0.16547526058137638 :0.15589978780868344 -for:0.4423005164319972 to:0.26747166261472777 by:0.18084813955691054 in:0.0700257105186195 :0.03935397087774506 -who:0.7932618645999436 would:0.07749432155201783 to:0.06287331518503717 will:0.03694326812198614 :0.029427230541015342 -connection:0.45732010812540475 conflict:0.2280923104099324 relation:0.16883810964313453 line:0.09537866120689292 :0.05037081061463543 -one:0.550213285830832 other:0.17167472303179268 true:0.12260934532112043 legal:0.1010795179041823 :0.05442312791207275 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.22789607257379563 are:0.2093315269979692 be:0.1926753529257929 the:0.18697033893129758 :0.1831267085711446 -day:0.36062828713599016 week:0.19611024225495935 year:0.19151706222262455 two:0.177793992427583 :0.07395041595884294 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.342412796922511 to:0.2514062245057282 told:0.18881590863592426 gave:0.1178381210529249 :0.09952694888291173 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4330678859050419 of:0.19335594145032423 not:0.15113989321511132 for:0.11228076088056355 :0.11015551854895893 -not:0.6155368679933246 in:0.15576169483532223 on:0.11741005601794686 all:0.06148374542550097 :0.04980763572790535 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.5642602253913526 had:0.20681227972922864 never:0.09275752902883165 was:0.08875362128510543 :0.0474163445654817 -and:0.37253456523015477 followed:0.22666572134836413 owned:0.15045825296957693 occupied:0.12616722091812352 :0.12417423953378065 -of:0.8298100390871647 that:0.1256052787981676 for:0.023027844520228383 in:0.011037572697893027 :0.010519264896546381 -only:0.4466786291758313 present:0.15571616299493782 time:0.14760864568358734 form:0.14400996960956275 :0.10598659253608061 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.5985402167536273 a:0.23630822668415832 his:0.07628027273865558 tho:0.047088910643052345 :0.041782373180506455 -went:0.28922704423966783 carried:0.2184088425888961 carry:0.1798410865231085 sent:0.16011476599744415 :0.15240826065088328 -the:0.8135971705269699 those:0.0805749770765452 tho:0.04125092194399178 all:0.03672242512346018 :0.027854505329033007 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.35659066045981136 to:0.22886978313691703 and:0.16140154870194962 all:0.12700554785325005 :0.1261324598480718 -make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 -the:0.4999388428795517 a:0.3262845371419244 al-:0.09984044013950423 tho:0.04951739341819455 :0.024418786420825105 -and:0.27841943381589385 council:0.25674616084308444 is:0.20594771856294328 as:0.15449400326922277 :0.10439268350885561 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.3968491583893765 several:0.24092714644184596 many:0.14784704831196518 three:0.12630137346059456 :0.08807527339621771 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.623119253155801 was:0.3072707703367888 goes:0.025079825952590937 Is:0.02279344552818334 :0.02173670502663614 -,:0.2672131915614693 .:0.22586399453403355 Smith:0.202002120992399 Mr.:0.18897153468569877 :0.11594915822639934 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.296797084184698 been:0.24727381931096204 lost:0.17007442496962744 made:0.1475190603543833 :0.13833561118032928 -the:0.34738329909126986 he:0.29811202603127007 time:0.1432696205165055 I:0.13224598398265888 :0.07898907037829579 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.3170342392181338 e:0.21686884678001425 cent:0.172578133268767 hours:0.15328157495659042 :0.14023720577649454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.47961021032022183 block:0.15779820633193373 J:0.153281949638522 however,:0.12631448008937324 :0.08299515361994911 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8342737067320873 them:0.057632853020750226 him:0.0421994342977116 shall:0.04032685456639895 :0.02556715138305191 -10:0.3682181131485753 12:0.17532819510002923 9:0.155079549997498 11:0.15304893002182418 :0.14832521173207336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.662230961516379 an:0.13992677435020384 that:0.08419326485375861 a:0.05818042144593854 :0.05546857783372 -said:0.48856081747506486 school:0.20974128050957205 work:0.10632996304276791 highway:0.10256267271307008 :0.09280526625952501 -and:0.5547672340557851 which:0.18374728794810685 they:0.09025316459233745 as:0.08673215058976093 :0.08450016281400968 -of:0.665447235006312 in:0.127632988734968 and:0.10032792025179255 for:0.058959152248553824 :0.04763270375837356 -as:0.34531453169390053 and:0.21422191653835898 children.:0.17610950624741048 holding:0.1333057488738596 :0.13104829664647027 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -parallel:0.44751956097654766 along:0.29340979060619177 line:0.14487616578160092 direction:0.05790246352546735 :0.05629201911019229 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -home:0.2272952342569261 work:0.2242078405598838 hand:0.18746363659881116 duty:0.18418389046488912 :0.17684939811948994 -and:0.5736399742034789 Commissioners:0.16378999361646682 Court:0.11696309570678812 Court,:0.11405383753798722 :0.031553098935279016 -and:0.3138167275150548 in:0.21442751889152123 of:0.19676463006837108 on:0.1388158866114563 :0.13617523691359643 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -Methodist:0.4937981067126809 church,:0.24796483060645824 Church,:0.22796410176988716 E.:0.024757833220933445 :0.005515127690040155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.8661089087665743 had:0.08212496420101369 already:0.024921131820361906 not:0.017143546943098976 :0.009701448268951146 -in:0.24732434061163902 ing:0.2305806163701238 of:0.2189659622143478 to:0.16288994974408091 :0.14023913105980837 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4102161650276938 of:0.269774814893488 in:0.17860050812835215 are:0.09101629880127106 :0.05039221314919493 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.26477055201283245 that:0.2523922178804962 to:0.19029469857840736 for:0.14930715469353087 :0.1432353768347331 -the:0.6929227286478797 a:0.10520488239161851 this:0.10095598521996041 every:0.06482319813639094 :0.03609320560415032 -of:0.4009468285658382 on:0.2073221223803979 in:0.1548449302285892 from:0.12789871881009238 :0.10898740001508228 -was:0.36466007099222214 is:0.2840711084215033 the:0.17397690875883912 of:0.10978120301432824 :0.06751070881310724 -from:0.4525449790329552 to:0.16747330935004381 by:0.1429235486673637 down:0.11962215780796617 :0.11743600514167125 -he:0.47668601339834543 it:0.2553512228102108 she:0.1088863916965048 I:0.0900008866470033 :0.06907548544793557 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.3977442968515334 was:0.2027620582011754 to:0.16900208136486805 in:0.1386371658455847 :0.09185439773683832 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -worn:0.44511126908926835 paid:0.2404990163323939 it:0.1757174143332139 you:0.0719418672830491 :0.06673043296207477 -and:0.419972651807104 of:0.3426169004479728 or:0.12577165801504872 an-:0.058889901424687585 :0.05274888830518677 -be:0.3794032569423176 go:0.2601201912192818 put:0.13260147422242716 have:0.11827628064217337 :0.10959879697380014 -that:0.46253200036873865 next:0.19338663336179984 to:0.13508200918988145 every:0.12238989842164233 :0.08660945865793776 -the:0.6863755861616951 an:0.16718266676156904 special:0.0648956024778835 such:0.04759133142190873 :0.03395481317694354 -posed:0.6890189931268891 position:0.1755026932444159 pose:0.049621696760848336 and:0.04815457016129648 :0.03770204670655012 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.30058346581922957 as:0.22471032496846158 many:0.2174898736017934 and:0.17061195897623213 :0.08660437663428329 -to:0.552698486281646 for:0.12337782643247121 in:0.12277126400890337 him:0.10805849965980696 :0.0930939236171725 -so:0.34923499722655926 all:0.25481234169582473 in:0.1469072815842144 found:0.12911293016870792 :0.11993244932469373 -be:0.9016173907171718 bo:0.04125854314709842 have:0.026003388008001973 he:0.017759297968709294 :0.013361380159018412 -State:0.49706777401798663 said:0.24729588675265973 County:0.12799772872330928 first:0.0814880173257156 :0.0461505931803287 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -told:0.3123197626877837 let:0.19522485301720835 gave:0.18411170486955275 asked:0.1743258495115557 :0.13401782991389943 -will:0.4103591426552746 would:0.38288984554884337 has:0.11997836032019156 may:0.046049075142817524 :0.04072357633287291 -will:0.5678341368483207 would:0.17924332902520485 which:0.0948763661745493 at:0.08104520431655438 :0.07700096363537062 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right,:0.2533359301819557 over:0.2400611336695273 persons:0.17442561195090364 kinds:0.1666647663552314 :0.16551255784238209 -and:0.38520479205794833 a:0.3502976549087539 so:0.10201241059018216 as:0.08332486127017441 :0.07916028117294124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Co.,:0.6083305293530569 Co.:0.28062863956006506 Company,:0.048871779496531945 Company:0.03936798660604624 :0.0228010649842999 -by:0.410290485759818 as:0.4082570516465684 with:0.06903766336630487 for:0.05919774621566079 :0.053217053011647975 -the:0.5782608995442797 a:0.17129457958217378 and:0.15410841059314154 every:0.05902334136936406 :0.037312768911041024 -Pacific:0.3818400476034049 Central:0.2619192665649905 Ohio:0.17592911546182843 Pennsylvania:0.09841700719462426 :0.08189456317515194 -cept:0.9570383344301692 of:0.016778439548423837 -:0.01360579947069455 c:0.0067976877503282485 :0.005779738800384291 -and:0.35217021651558733 ing:0.20188266381045367 Beginning:0.15307054014834534 was:0.1515674695791522 :0.14130910994646126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.24880793017511574 people:0.24230341881036516 same:0.19970147990835327 world:0.15544076525054557 :0.15374640585562024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -before:0.2911265420346286 after:0.24869523831827006 on:0.1808330249547263 from:0.1433380706623664 :0.13600712403000864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ad-:0.5012761332651944 hair:0.20044258154681635 ad¬:0.11762907286330997 best:0.09977047861055628 :0.08088173371412308 -excitement:0.49180999925268654 work:0.18991567063798942 numbers:0.1273614965993052 favorite:0.09698191250660974 :0.09393092100340915 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 -what:0.38360995082562527 so,:0.2286665847271407 so:0.1750400486644831 as:0.10762860717015246 :0.10505480861259844 -and:0.39007752138935825 of:0.1795099437385265 company:0.1504404087704435 company,:0.14975353082749068 :0.130218595274181 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.615759512779208 to:0.21191646709434614 in:0.06433605147875555 premises,:0.06047413543204698 :0.0475138332156433 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -pointed:0.2600195225232736 carried:0.2051365877444647 going:0.19681846698155614 brought:0.18130880822375198 :0.15671661452695357 -of:0.6882354527683898 in:0.2242366313068404 In:0.04475326557695061 for:0.03010938162432242 :0.012665268723496928 -One:0.3883580039900132 Some:0.2105439956116121 Town:0.1486884070295398 Many:0.12937775712449118 :0.12303183624434372 -of:0.46718215246992195 was:0.21498065587188897 is:0.16992031658772955 or:0.0757056803577952 :0.07221119471266432 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5708557851400858 this:0.2099792460478843 a:0.1343540455871668 tho:0.043677061604471976 :0.04113386162039105 -district.:0.6470936808725756 property.:0.16171558823088097 country.:0.06807192325958339 town.:0.06440991549748314 :0.05870889213947697 -all:0.7525372113043504 them:0.13786600172317037 water:0.04628103754115521 it:0.03266277575314692 :0.03065297367817733 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.6037419065619622 day:0.16289549864952818 only:0.08608307945970177 morning:0.07925352984339745 :0.06802598548541029 -Dakota,:0.2588104647050625 and:0.2197647855271767 in:0.20323455515334046 of:0.19730688156764833 :0.12088331304677198 -that:0.670272925657225 day.:0.09905319349750792 county.:0.09386450156033106 city.:0.08286958471399031 :0.0539397945709456 -had:0.3374965084849942 was:0.2990209376438913 took:0.17801174105221448 saw:0.10028899082706202 :0.08518182199183785 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4301860534537812 families:0.1880605275739217 citizens:0.17276720122320377 merchants:0.10539126117157882 :0.10359495657751457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.2671059975318142 him:0.22481434595463928 stand:0.21345148820539417 me:0.14737505842206014 :0.1472531098860921 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -regard:0.3057149411782757 order:0.28334663279449285 search:0.2111464206098458 respect:0.10206572494999128 :0.09772628046739461 -of:0.8792049566512694 and:0.04768079979225432 in:0.03987879505183529 ot:0.01848841071264003 :0.014747037792001056 -time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.2734532525886093 had:0.24208504487108556 never:0.2341224900921569 already:0.16323568034532895 :0.08710353210281915 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3880782822395473 of:0.2931527661646545 and:0.18368388868360966 I:0.0696953892516177 :0.06538967366057082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.35449482286067413 his:0.23757984769608861 the:0.20927666863767572 my:0.11081032747760873 :0.08783833332795286 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5605194671477549 against:0.14999154906255321 for:0.11530298514449186 by:0.1004678587015054 :0.07371813994369472 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -been:0.6371395697793749 about:0.11412294681737534 had:0.09072282308367959 lost:0.0792328085971758 :0.0787818517223943 -and:0.31192355943190236 to:0.25676064233317863 To:0.19848630407641701 would:0.13669187682613207 :0.09613761733236972 -the:0.781423223830473 a:0.13176415856754922 their:0.04016509087064651 its:0.02347430016948612 :0.023173226561844947 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -world,:0.4736821143532079 door,:0.2845544446069559 air,:0.08423418344034028 end,:0.08111132754033111 :0.07641793005916481 -at:0.4230340581709289 and:0.3313132434313465 of:0.10694814535592607 from:0.07112399171858184 :0.0675805613232168 -he:0.4480995390681986 I:0.17581972247155428 they:0.15786148584009835 she:0.1427183176438113 :0.07550093497633742 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.3693933615820967 And:0.262213385870861 Is:0.2343310101971602 How:0.069423671933443 :0.06463857041643918 -same:0.5361075483070551 long:0.13147705420555578 country:0.12220168424113019 manner:0.11745039658586354 :0.09276331666039558 -the:0.8098238283809231 a:0.07092759050218736 tho:0.054134605454455705 said:0.037106110895175105 :0.02800786476725881 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -buy:0.3435040876104401 sell:0.31517119208878946 dry:0.15087056094128035 get:0.10846444600209315 :0.08198971335739684 -result:0.26992558260439276 question:0.2045132489356475 following:0.1950846640540525 man:0.1659140454548249 :0.16456245895108232 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -railroad:0.42006668685564036 said:0.234890957446692 same:0.12445768405752852 railway:0.12326007980711855 :0.09732459183302067 -who:0.37955413938094257 were:0.2207135325203593 had:0.14576445747268765 and:0.13996905301609816 :0.11399881760991244 -the:0.8087150983458984 was:0.056459743364094345 at:0.04748493988439267 of:0.047093140814845794 :0.04024707759076865 -by:0.335557058142843 an:0.2826741990513672 the:0.15278672151607164 with:0.12368967410925087 :0.10529234718046723 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.5353365643176564 they:0.18142911128976572 is:0.12946664890750187 she:0.0795338069349986 :0.07423386855007728 -dis-:0.5324666548571158 period:0.1359928247645572 distance:0.13313289944236534 dis­:0.10985622066844032 :0.08855140026752129 -District:0.3803946718717023 part:0.19832516312487072 cities:0.15519523249994996 branch:0.14324876362007294 :0.12283616888340405 -the:0.8972852392734502 tho:0.04332415425905271 tbe:0.023535489173998964 a:0.01989995189242891 :0.01595516540106934 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -general:0.3334658842044789 best:0.1879811547471848 public:0.1730576776560635 proper:0.15553579198153814 :0.14995949141073459 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6830348686020336 a:0.1310414647794961 this:0.08992919004291025 moderate:0.04903210625462064 :0.046962370320939466 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.5032157414567506 she:0.14604728221116287 they:0.14539970652379672 I:0.12583118299352541 :0.07950608681476454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.5421674599504354 possible:0.11932704803345281 equal:0.11836975559240627 early:0.11114146641078573 :0.10899427001291967 -it:0.28508618411200076 hereby:0.2670128360721503 certainly:0.17094917536132198 that:0.141821968237338 :0.1351298362171889 -a:0.6156289379751599 the:0.1842131793580709 said:0.11819248001939278 final:0.06160442973230964 :0.020360972915066715 -of:0.2572912661332985 to:0.2412152668176543 in:0.22281461983752898 and:0.14144229163864644 :0.13723655557287176 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.34492882087081167 it:0.3141922597184706 and:0.1650366858160368 up:0.11486875934473137 :0.06097347424994977 -of:0.27465839413987453 on:0.2439064859232352 and:0.23821603380730688 in:0.124147468680499 :0.11907161744908443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.32264985476930946 to:0.2880773695625757 on:0.16589042468300483 before:0.11260281042884565 :0.11077954055626452 -it:0.2461519714710672 free:0.20865856602899532 running:0.19555178959877592 returned:0.18403538943977474 :0.16560228346138686 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -expenses:0.2910421460939731 course:0.25696079204305206 process:0.19590778424534638 branches:0.17682325357366538 :0.07926602404396306 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.47246553704202304 to:0.2816106425141536 in:0.09045842103757128 through:0.08118036858393478 :0.0742850308223174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.808885467954778 not:0.11028475201359429 better:0.028811013442674786 already:0.027072499232147756 :0.024946267356805232 -the:0.42658284542178443 any:0.2147527296264028 a:0.1931156015615424 this:0.09130833562838613 :0.07424048776188426 -posed:0.2745806740289961 pose:0.20718362513052638 ports:0.18459966399206248 possibility:0.16955206065142828 :0.16408397619698664 -come:0.3175402221467192 escape:0.22384009754258677 recover:0.1560774848032916 him:0.15259520439595395 :0.1499469911114485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.5935269358523736 had:0.15979285601104423 was:0.09967346586277764 will:0.09192469814889488 :0.055082044124909725 -effort:0.24364795608272008 amendment:0.20502732192899112 I:0.18681660854503418 attempt:0.185579870678692 :0.17892824276456265 -children,:0.3486652320481303 ;:0.22011083646604104 them,:0.1562210324207478 doubt:0.15133275646676994 :0.12367014259831097 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -most:0.40472877512397776 very:0.377275817386419 more:0.16894943799380574 single:0.03757718053773485 :0.011468788958062793 -of:0.2557480305459821 that:0.2443822742138322 for:0.21294650854776126 in:0.15409786827101662 :0.13282531842140768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ple:0.9892615919624403 I:0.007929475223575441 We:0.0011667943511534757 j:0.0008463779771948872 :0.0007957604856359492 -first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4589617552500369 and:0.16477768709258772 of:0.1434098426724558 to:0.12726024634347974 :0.10559046864143982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -says:0.304397649372872 stated:0.17990656545138953 was:0.17288636242906316 said:0.1726370866615515 :0.17017233608512378 -to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 -of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 -back:0.675018627879203 life:0.08618361099492627 hand:0.08327006988130159 mind:0.07797323841386962 :0.07755445283069959 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6341223919963638 tried:0.14182703650232922 in:0.07880877586037026 to:0.07644524262268096 :0.06879655301825587 -of:0.5105257558520195 in:0.26966531901240365 was:0.0784346649779857 is:0.07417141153542252 :0.0672028486221686 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.7098869275130917 never:0.10928283239209591 probably:0.08070919920365324 you:0.05694283319221829 :0.04317820769894086 -protection:0.3121467925150426 them:0.18624082780492382 damages:0.17402693670282257 war:0.16883690301654375 :0.15874853996066712 -recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 -city:0.25788713661469204 man:0.21463230968184568 he:0.1864372527571178 their:0.17099484163197443 :0.1700484593143701 -and:0.47773118331030284 I:0.2118411405436567 which:0.11786193610011023 he:0.10918661309612714 :0.0833791269498031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.2416689916955858 in:0.23084838219024353 that:0.20808754853921743 from:0.1902798744337226 :0.12911520314123076 -of:0.20656164427904883 by:0.20454385374108194 in:0.20288133390125582 bv:0.1961894937357985 :0.18982367434281497 -it.:0.2973183634211784 the:0.2232839489970272 them.:0.2050920775239709 him.:0.16185908226411386 :0.11244652779370962 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9346475675770901 tho:0.04013387999386294 tbe:0.01773326865135808 The:0.00386469192835974 :0.003620591849329047 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -District:0.9560048100312449 Book:0.01419114024144086 District,:0.013236010554691632 House:0.009407590474706544 :0.007160448697915951 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.574555500258288 very:0.16484297744075643 more:0.11047651296495274 less:0.08425139801393434 :0.06587361132206854 -very:0.5944215864422823 poor,:0.14542392481581126 closing:0.13396634653090161 last:0.06383839547591698 :0.062349746735087835 -vision:0.48081751058676475 claim:0.1646903091933881 test:0.1376222188810773 portion:0.11369488416228876 :0.10317507717648104 -of:0.401677149707566 to:0.24776814029723207 in:0.14481202176557872 for:0.12725937792187383 :0.07848331030774933 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -portion:0.2455531437822309 amount:0.2329404091438283 part:0.20187215378021284 quantity:0.17544573089797064 :0.1441885623957573 -to:0.4310445363305251 from:0.2020800228876521 in:0.17774969397781415 into:0.13607295701199537 :0.05305278979201321 -of:0.5463365099428191 is:0.15158518707565433 as:0.12240190371654189 and:0.09391038952234494 :0.08576600974263973 -the:0.7344882988296282 said:0.1092499316721914 this:0.09825011250589744 tho:0.03031372327540726 :0.027697933716875373 -the:0.2877920414352671 that:0.28466452687386196 this:0.21001437235883705 such:0.15718732919804546 :0.06034173013398846 -those:0.3688860274319316 all:0.33781285429068897 and:0.13031327171456836 one:0.10035636758537497 :0.062631478977436 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -few:0.9762953520690524 ten:0.00917370587423652 week:0.007420297266025401 dark:0.003855927592337654 :0.0032547171983480527 -the:0.6018699173615609 a:0.21846206983092029 in:0.0630620099655306 all:0.061888635408814716 :0.05471736743317353 -that:0.698583588433307 himself:0.14913560548368102 today:0.05272648049661866 that,:0.050993164477222734 :0.04856116110917047 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3993631679675232 in:0.29024944258219104 to:0.13486719212612644 with:0.08817575205921989 :0.08734444526493938 -and:0.38288077593948405 but:0.26437285036031954 which:0.22087752817755157 where:0.0867241697132065 :0.0451446758094383 -see:0.32086960139147 asked:0.19591644123537436 to:0.17322642281344156 for:0.15502368511196765 :0.1549638494477464 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.4237405216685202 No:0.22649810523159114 My:0.16783779575397406 His:0.09109348261727712 :0.0908300947286374 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.4850049962740818 would:0.18243500518113898 to:0.12300975609602682 shall:0.11905732970731409 :0.09049291274143838 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.3640175479003139 already:0.22151100503096474 above:0.21086818576485836 also:0.10752227900733344 :0.09608098229652969 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.38204669026422755 any:0.1792479940045952 in:0.15792404588054804 the:0.15195113108854752 :0.1288301387620816 -way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 -out:0.41776308507646076 on:0.16205206415383727 in,:0.1533366277044415 directly:0.1427567222623063 :0.1240915008029543 -who:0.7489232998787662 would:0.11430127200417357 to:0.049585428228797704 should:0.04559697109548007 :0.04159302879278259 -the:0.5122466383165941 take:0.3971231068036058 give:0.042538488941652346 its:0.02595295060299376 :0.022138815335153966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.28190500835637533 people:0.20308597963791886 man:0.19556898998762892 men:0.17210859777814644 :0.14733142423993048 -his:0.6409811611170665 a:0.19740920979871285 devoted:0.07344095427149612 my:0.04778829732983293 :0.04038037748289155 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.45680778407006045 to:0.1783813295805605 as:0.13508401864981553 for:0.11790731691573068 :0.11181955078383293 -not:0.24910309743433354 to:0.24764009806428447 I:0.20269197547947249 that:0.16024471056777287 :0.14032011845413664 -Minnesota,:0.45160910605351473 Washington,:0.3200542524330416 this,:0.0774081751892213 Iowa,:0.07568815189627488 :0.07524031442794749 -at-:0.47971021450306345 ex-:0.2565656179176962 pre-:0.09250054505699969 con-:0.08676302893899215 :0.08446059358324855 -a:0.6254091440766654 the:0.24969301117993278 this:0.07861977402654512 any:0.023821815535806697 :0.022456255181050107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.4434243760358045 the:0.21665885379804678 and:0.20197300934014004 from:0.08197431465728275 :0.055969446168725845 -shipped:0.4041086294656323 came:0.22680843343258897 addressed:0.12605500625199573 were:0.12586106661664515 :0.11716686423313775 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.46772582907886845 as:0.2627143054933923 and:0.2036656998655727 a:0.036660377427572374 :0.029233788134594346 -time:0.28802450895724097 first:0.25606774734522775 fact:0.17967415324372232 man:0.14056221099019464 :0.1356713794636143 -be:0.40621595196922916 only:0.27768344470671014 been:0.11648929223471625 what:0.11058380218167979 :0.08902750890766471 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 -man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -1,:0.2927119673059914 4,:0.21417170553373757 3:0.2030395476078221 2,:0.15504350553972568 :0.13503327401272341 -as:0.40604762058911914 and:0.37008741708404325 that:0.09503184206928765 or:0.08950194226750696 :0.03933117799004287 -west:0.22074091467451437 north:0.20880810102411393 south:0.19637947154494703 first:0.18717390018975721 :0.18689761256666743 -as:0.39071171871001137 known:0.34033858635122755 enough:0.11434024502461099 adapted:0.10568069965007323 :0.04892875026407683 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.9213538794899029 J:0.023102277161287297 C:0.022925346201619227 .,:0.019917444128495883 :0.012701053018694746 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -own:0.40042640110780614 food:0.36464209921551577 surplus:0.09172756717703524 vast:0.08047483385308678 :0.06272909864655585 -will:0.34918081515922844 to:0.3352493010579887 must:0.13197095835389372 would:0.09442086824900686 :0.08917805717988225 -Roosevelt:0.32519360536030145 Davis:0.17983696592165715 Smith:0.16695719913304427 Johnson:0.16679506679291617 :0.16121716279208098 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.8203024109790319 their:0.0992567646171539 tho:0.030963298282853793 our:0.02558294309063835 :0.02389458303032197 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3678219802824767 as:0.29325780236980087 man:0.12981862177062384 man,:0.11557421877743511 :0.09352737679966336 -the:0.4908377518043681 that:0.14868311341036267 at:0.1319776772507814 all:0.12158020141814833 :0.10692125611633943 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.3667023620002201 them.:0.19035761596396136 it.:0.17506106201948096 him.:0.14107798835657182 :0.12680097165976587 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -very:0.34677772030859666 a:0.22392099352784361 most:0.147081751288809 more:0.14194043619963687 :0.1402790986751137 -the:0.9118965401660062 tho:0.03331265920957103 his:0.02673141977393186 tbe:0.015047021889920242 :0.013012358960570729 -up:0.482040717606335 over:0.15643945944994955 into:0.1500751432139771 Into:0.12029860514189498 :0.09114607458784342 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 -in,:0.4461969580868492 here:0.15887166658189447 more:0.13763912585014354 ;:0.12879749357957956 :0.12849475590153323 -other.:0.7622216406039192 year.:0.09779483313774617 side.:0.0705155710258481 other,:0.045331455652176625 :0.02413649958030987 -United:0.9660871445925763 Southern:0.014847843204905764 Confederate:0.009134564711745638 other:0.005786371306168121 :0.004144076184604209 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.2888798783339719 up,:0.21896849310947852 was,:0.18311077844821969 ;:0.15755012301283172 :0.15149072709549827 -says:0.37097685712800876 stated:0.20346347130388523 said:0.19522824302532127 was:0.1263378078706507 :0.10399362067213405 -the:0.7633752216079451 this:0.11147099029937677 his:0.06947110597069472 land:0.03370907411267589 :0.021973608009307425 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -toward:0.31086398792900066 to:0.23934238884780626 for:0.2164905770465813 before:0.12328315556626945 :0.11001989061034244 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4735598375305276 between:0.25594960955429 &:0.10493755343841357 to:0.0933031195095576 :0.07224987996721133 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -and:0.45758509261952196 in:0.1822243361554901 but:0.13165210785957507 after:0.13078674354873862 :0.0977517198166741 -or:0.37402755709555174 a:0.3291830766435895 and:0.17956009158450584 in:0.09075135579840699 :0.026477918877945802 -other:0.6223233649152056 two:0.12764259211539206 some:0.10074477723759545 three:0.07515454800407054 :0.07413471772773651 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3665980939090354 are:0.19006053537092002 thereon,:0.1804579167909239 thereon:0.15395141859210032 :0.1089320353370203 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.21617478398963663 you:0.2111628383809547 we:0.20307935677728725 he:0.19391305866840952 :0.175669962183712 -he:0.40814896130360456 never:0.24816465550116948 lie:0.13100631187299938 ever:0.11921109720269353 :0.09346897411953296 -the:0.7386153658028686 an:0.18823184547125563 said:0.0417734054052507 tbe:0.016452410747323957 :0.014926972573301 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.36340086628579665 to:0.23438477458732046 of:0.16411599856047165 all:0.12078877542460353 :0.11730958514180773 -a:0.6435322690816193 the:0.14609595648189713 of:0.08581971120911216 this:0.06362289689899266 :0.06092916632837866 -so:0.40088062608467495 how:0.15920387449882384 the:0.15460638598438162 in:0.14465351953726924 :0.1406555938948503 -J:0.45560548771982773 A:0.3605915778535604 T:0.06739241850484448 P:0.06504370640906787 :0.051366809512699715 -¬:0.40843326369623933 ac-:0.2814926674588145 ac­:0.1478414671139214 ac:0.10582192894690988 :0.05641067278411499 -removed:0.2413352510695816 willing:0.2033628487131382 confined:0.19786945523356242 unable:0.18552320678064957 :0.1719092382030681 -of:0.6449706705538802 or:0.18574915737541203 Hundred:0.09265235628405685 thousand:0.0438899789974672 :0.03273783678918349 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4961491480962572 county:0.2167910914657569 company:0.13077826992801056 ore:0.0809500024941976 :0.07533148801577778 -the:0.7427881492083666 about:0.09018038602093667 these:0.08361844054474116 section:0.04567486611077412 :0.03773815811518141 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 -the:0.8748814721639289 this:0.046617777938132154 an:0.03004467487740711 tho:0.029348313114212113 :0.019107761906319787 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.2976513809674839 had:0.25773811866797164 saw:0.2030265933993208 was:0.14310272133790883 :0.09848118562731487 -came:0.3078911000110205 come:0.20454167040124577 are:0.20193654768573135 were:0.16313089969071307 :0.12249978221128925 -he:0.53661700697365 be:0.19319517020803367 they:0.12066515908473212 has:0.08141906290421917 :0.0681036008293649 -is:0.48857926275786634 does:0.16933614279448253 was:0.1519676047169747 did:0.10502954847532744 :0.08508744125534902 -I:0.3899101109384214 he:0.34342470875376857 they:0.1224505042964285 she:0.07669490482647304 :0.0675197711849086 -person:0.38217631561993404 other:0.1867795207820188 one:0.16574065025792084 time:0.1453689641933797 :0.1199345491467466 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.31956123596302205 that:0.24562922725583497 in:0.16247797620830112 which:0.14011324524419969 :0.13221831532864214 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -It:0.2563175385936893 who:0.22761354395858377 and:0.18847577165582322 Jones:0.17731660700897486 :0.15027653878292888 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 -gradually:0.25815184920547796 so:0.22227216096229183 he:0.18142608018472936 be:0.16926804979383894 :0.16888185985366203 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4986564103336822 is:0.19665896811718578 were:0.17790930224562274 will:0.06401407345665924 :0.06276124584684994 -to:0.5799691973438664 the:0.15668814395405173 a:0.14756358489309604 and:0.062368128341803566 :0.05341094546718216 -and:0.8949520155827599 of:0.043675551768719074 the:0.02363849244933312 was:0.021194476898986465 :0.016539463300201417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.37813763840934006 by:0.34040266434306427 that:0.10376582879893324 in:0.0955573280552489 :0.08213654039341343 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8186990135138588 in:0.05749648123941857 and:0.05070776556032348 to:0.048924107310338596 :0.02417263237606056 -has:0.6442290170346326 had:0.20478386755762992 have:0.08284019665059424 having:0.058732888433850085 :0.009414030323293136 -time:0.48110766474368916 world.:0.13632204793128486 country.:0.13336293299084215 first:0.13281926250208542 :0.11638809183209846 -life.:0.41625486362226805 her.:0.23274350691220486 man.:0.14168249205524416 again.:0.11702489725244139 :0.09229424015784156 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -H:0.2742666894110321 C:0.22005977501731808 E:0.1710674568919423 F:0.16787259649828906 :0.16673348218141848 -be:0.6077574528246437 make:0.13739689136006603 have:0.08956848017209505 not:0.08934165412800639 :0.0759355215151889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.48989741915878066 stocks:0.2649381979809411 merchant:0.1162650894626019 part:0.06561628163587445 :0.06328301176180184 -10:0.38560758763623254 9:0.17702561820644344 ten:0.17686411418853204 4:0.1320377492771865 :0.1284649306916055 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -having:0.47907289257578245 he:0.2800166528890871 being:0.09564820188139779 they:0.08123637220595258 :0.06402588044777995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -known:0.24921887866720357 adapted:0.24116836512146847 cared:0.20609104885885363 enough:0.16239459639780426 :0.14112711095467023 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -property:0.445094362838031 privileges:0.16872177788776668 premises:0.1434245189065469 estate:0.12232241312947063 :0.12043692723818493 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2750879188148647 to:0.2365306790735926 in:0.16419374082521848 of:0.1641794643798518 :0.1600081969064723 -much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6729550714087694 the:0.1641539972088615 in:0.09250315610534261 their:0.04062137810225555 :0.029766397174770972 -and:0.38364751895909743 of:0.2858238060749097 for:0.14070468925931384 far:0.1166344196329433 :0.0731895660737357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4716826463561209 the:0.379256026957951 this:0.07069151834615821 for:0.04935654339516728 :0.029013264944602664 -of:0.9668920900808565 ot:0.019526467371129723 ol:0.008159275647790249 oi:0.0028079486207335134 :0.002614218279490062 -turned:0.30369523134339915 thrown:0.19901304446588616 all:0.18622719829846085 swept:0.16220210189269132 :0.14886242399956257 -sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 -thorough:0.517552663288096 careful:0.31535499084504376 vigorous:0.09129701723716083 powerful:0.04678585287878046 :0.029009475750918938 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -present:0.2810399190364747 people:0.25022508213550737 country:0.21637830762579582 arrival:0.13156743213164773 :0.12078925907057445 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.9406000548277571 L:0.023304187428533116 B:0.013214917276401532 W:0.011706451346515719 :0.011174389120792471 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.8910461081738427 already:0.05598133865268058 so:0.030566534099045837 ever:0.013343361533057478 :0.009062657541373436 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.41420816671259897 the:0.21093214177763528 this:0.1377823187954309 to:0.12760125423255872 :0.10947611848177606 -in:0.21881845627669896 with:0.2135203138977869 for:0.19723705000767125 that:0.18960002467059017 :0.18082415514725278 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -County:0.25238105257050786 deed:0.24715346637445168 county:0.17341080776496423 Board:0.16569919638178154 :0.16135547690829463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6696954370370573 made:0.10823892216365727 had:0.07808331738989421 not:0.07378010246583468 :0.07020222094355666 -following:0.3222519075662959 above:0.23934315289722324 only:0.21630631010368329 answer:0.11426558325615231 :0.10783304617664517 -that:0.24315715600267454 when:0.2124997071781429 and:0.189394648862917 because:0.18458564644222397 :0.17036284151404174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years.:0.4922542994324403 hours.:0.16544827807143778 days.:0.14611489162386618 months.:0.11907900236310484 :0.07710352850915095 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6559676808752368 tho:0.17051077402916542 a:0.07252825075972769 at:0.05251663839441009 :0.04847665594146008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4562686099275969 on:0.24967751313681452 in:0.12124995551191994 reserve:0.10981628122064535 :0.06298764020302322 -the:0.8315374768962613 this:0.059192763177896804 his:0.04609430816808372 tho:0.04428519469334866 :0.018890257064409468 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 -That:0.3515254744222052 For:0.2403940763951173 President,:0.235933304971671 1.:0.08692708848374114 :0.08522005572726533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6123662562211499 make:0.1287415409118293 not:0.10712252326114452 have:0.08437450903561178 :0.06739517057026446 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.65396877539161 small:0.1645326205420422 larger:0.11422659592968291 new:0.03645964448028044 :0.03081236365638437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -trict:0.3898440895652623 charge:0.33286433045741887 ease:0.12538624972360377 position:0.0792610707452254 :0.07264425950848949 -by:0.36487258691943286 in:0.23294597490259827 to:0.17189478842600422 of:0.12416395067389892 :0.10612269907806562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.41729895784969423 a:0.19081964104501425 been:0.1539285771895887 to:0.14926344863259602 :0.08868937528310673 -they:0.45178790902969207 there:0.2626815524029223 we:0.15209295702396872 who:0.08191310601524777 :0.051524475528169224 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 -the:0.792438779448615 a:0.1071646712462463 tho:0.0376265472432958 to:0.03487947888841501 :0.02789052317342776 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.43272633386276715 and:0.4211201805142102 is:0.055670197103847255 was:0.046588908470078225 :0.043894380049097306 -will:0.3607559348687838 to:0.33804772968518565 may:0.12027600656108864 would:0.09933233001776462 :0.08158799886717713 -not:0.5622222879017572 very:0.23019926822979703 being:0.08296450122663326 more:0.06636823556742154 :0.058245707074391015 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -evident:0.46330137959982715 a:0.2696134172252526 growing:0.13277003763039974 and:0.07186765990724414 :0.06244750563727644 -was:0.6183456745513505 is:0.2599517636865023 had:0.06159357955209474 has:0.03152586800075191 :0.0285831142093006 -to:0.3332311597572575 or:0.3177367904456634 who:0.1977149185267805 is:0.08109672650577342 :0.07022040476452523 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2772453388601207 funeral:0.18242894609454846 result:0.18231352872428724 bill:0.18213413797425754 :0.17587804834678616 -appear:0.23614286470578708 care:0.22988094841738002 long:0.21059833091763272 be:0.19721940977764435 :0.12615844618155575 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.25713588352461564 reason:0.19943811793838703 attempt:0.19294083764245654 desire:0.18478369497441377 :0.16570146592012697 -make:0.34322138585111767 keep:0.19350419037159775 be:0.1667581700847247 give:0.153157434332911 :0.14335881935964903 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -headed:0.4095916089207946 and:0.29776675636769134 cured:0.12100076657971777 but:0.10286957108701891 :0.06877129704477736 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8680760572698037 its:0.06239117643753748 tho:0.027308611958396005 a:0.026893822923623936 :0.01533033141063875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.5238413505630494 will:0.16049233794060636 may:0.11609740330123607 might:0.10224749104993114 :0.09732141714517711 -confidence:0.4539202430218915 harmony:0.2124416826464859 health:0.1176833214902458 right:0.11283762951409912 :0.10311712332727764 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -*:0.6335567604776448 t:0.12991655099273666 I:0.09947748245775824 i:0.07018740175106998 :0.06686180432079034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9902480742061723 lo:0.0034721273488701326 should:0.0028598670105081047 that:0.0018889531728420242 :0.0015309782616072193 -was:0.23434393197503847 thought:0.20620144443809899 found:0.20177002368991256 says:0.19001873820924878 :0.1676658616877014 -fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 -the:0.47211834348797177 a:0.27038995094609114 this:0.1746773119410774 his:0.04282427197874684 :0.039990121646112806 -the:0.8750793394225367 on:0.06236387435862917 tho:0.030373611268656106 he:0.01831198612564714 :0.013871188824530789 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.4801413782676198 duty:0.1670048834673525 and:0.16402967694724338 them:0.1022811158288907 :0.08654294548889366 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -face:0.2336451963365204 attitude:0.22153308215721287 eyes:0.21152177290394242 way:0.20104012911732672 :0.13225981948499763 -himself:0.27145172592731787 in:0.2294981426815026 him:0.18477425675874123 out:0.15995877512658682 :0.15431709950585146 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2572830720669783 we:0.2214358647302447 which:0.20246436737040588 that:0.16587105536417296 :0.15294564046819822 -coming:0.5189409571399406 work:0.16890948647240522 p:0.13258823003236417 door:0.09042037807887453 :0.08914094827641546 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.3605071166223901 the:0.3273497366189582 land:0.15565138225020955 life:0.08787882178618889 :0.06861294272225311 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -least:0.30346277913096087 once:0.22704067485628962 all:0.16120658003388594 time:0.16071439731003767 :0.14757556866882582 -was:0.33500616456097737 thereon:0.2406427413049799 that:0.203597219305462 and:0.12058061417775318 :0.10017326065082739 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -it:0.3345183174168167 and:0.24714894407362753 we:0.18570814807341907 which:0.1549526799330556 :0.07767191050308112 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -one:0.26237072888837515 made:0.25226894450947995 subject:0.17167341117977733 guilty:0.16111728972119063 :0.152569625701177 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.37488921933364705 it:0.27224155347087403 there:0.1963769976258048 It:0.08096658103682143 :0.07552564853285268 -the:0.5121570964961651 a:0.1754471717508557 our:0.1480836782025215 this:0.13569082722109105 :0.028621226329366676 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -once:0.33272799926555374 right:0.23623250683678043 least:0.1990716453629417 home:0.12559821484433517 :0.10636963369038907 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -of:0.4928433870300212 the:0.2783998244294658 with:0.08081645061547259 her:0.07480940982054551 :0.0731309281044948 -and:0.5115714801011005 is:0.17760069025893657 occupied:0.11371833938002456 that:0.10323826676118968 :0.09387122349874862 -been:0.6770864895993197 become:0.10376088516963276 made:0.09278395929906323 not:0.08333248820113134 :0.043036177730853026 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -friends.:0.26437989214179786 heart.:0.24128204893880434 people.:0.2019778315868766 ?:0.15918448276633573 :0.1331757445661855 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6062890701093439 said:0.14412422144719667 this:0.10620191552242833 an:0.08659211077442244 :0.05679268214660867 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.5873595725805673 making:0.12760508086118016 that:0.11955801867566028 which:0.09335643505306311 :0.07212089282952913 -committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3776742239653584 and:0.23643017911662997 in:0.16378869354195932 to:0.12846058976268307 :0.09364631361336927 -formerly:0.45330763827259823 now:0.2345623763085418 was:0.13076450678494936 and:0.0942442515760563 :0.08712122705785431 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.3181147111053525 had:0.2472873859482227 his:0.23383755742823778 the:0.12887608318570012 :0.07188426233248695 -world:0.2902661748371584 country:0.2222473979389011 city:0.1773477177489124 government:0.17433420460373003 :0.135804504871298 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -determine:0.28078757344469596 know:0.19494027503122693 see:0.1793961666093413 decide:0.17540659578165796 :0.16946938913307782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -its:0.2389744435740891 no:0.23500870337589527 their:0.18291119177093756 in:0.17436124714882967 :0.16874441413024846 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.3704695411068918 to:0.20612180666002716 made:0.1636549832335105 as:0.1320601070658586 :0.12769356193371195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 -have:0.9452146989626687 havo:0.027200553900302453 not:0.0138003014271372 hare:0.008909072262440868 :0.0048753734474508755 -order:0.32096951448564637 idea:0.21378319647691318 opinion:0.20548700507143666 extent:0.1440961382592008 :0.11566414570680301 -they:0.367147008352228 you:0.20322884831902818 there:0.18207251018827053 we:0.14875603466796475 :0.09879559847250863 -country.:0.2641640877486444 world.:0.24021016282613272 city.:0.20547493348380128 day.:0.15109692473092562 :0.1390538912104961 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.27704312744361254 likely:0.2371434664494363 entitled:0.21210164823881894 claimed:0.14212117221906162 :0.13159058564907056 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.2842887759355088 for:0.23966749793368425 with:0.2093240814076171 to:0.1877915581909425 :0.0789280865322473 -not:0.3258256191612416 would:0.21096476901234132 to:0.2065412034586143 that:0.1608403192211142 :0.09582808914668857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.6853828547018868 is:0.13721287484661746 in:0.07770582474057589 by:0.057909857411274045 :0.04178858829964592 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -auction:0.4775723041848599 auction,:0.4324391734391834 attention:0.04234517025357027 road:0.024108919992915954 :0.02353443212947044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7514205982912769 in:0.0929430286020968 to:0.0584402075431167 for:0.05306588855244359 :0.04413027701106589 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.33063986237874765 on:0.24446801471162596 with:0.1593534146044323 upon:0.14649066596127328 :0.11904804234392079 -extra:0.2982922818159057 attempt:0.20161822742808908 estimated:0.18805928082216805 hour:0.16793832863855016 :0.144091881295287 -newspaper:0.9743008797114375 other:0.008361183950598716 of:0.006436335194820014 papers:0.005508059819804291 :0.005393541323339475 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -convenient:0.24647945279476632 popular:0.20393129519307798 attractive:0.19452989852467317 per-:0.18077028325731306 :0.17428907023016946 -be:0.8200572147766793 have:0.12345056949666738 bo:0.045621077382893054 stand:0.006851453857742672 :0.0040196844860175985 -for:0.5350373686006112 to:0.18996115680468642 at:0.13342543310857255 return:0.08778212941931075 :0.05379391206681903 -to:0.33247699891677235 by:0.22313930047406022 that:0.2176613447642903 from:0.12729641349975934 :0.09942594234511794 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7898977493110874 this:0.08734132287535187 a:0.053911609897468016 our:0.04178540629773671 :0.027063911618356112 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -wit::0.3021939301188946 them.:0.20649221786076075 him.:0.20124812714149273 it.:0.17824690288787012 :0.11181882199098189 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3313115994800045 the:0.24819046202112177 that:0.1819323101312003 him:0.1263915568572921 :0.11217407151038133 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -lands:0.3927178345427627 region:0.32509209820041096 one:0.10296728726843149 land:0.09666582932264671 :0.08255695066574815 -any:0.38818998037730224 all:0.25307992818444913 the:0.16298141079590345 some:0.13490364125148116 :0.06084503939086412 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -so:0.5183947640019982 as:0.17842112499421459 how:0.1515238829270866 very:0.0811220074988877 :0.07053822057781269 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -W:0.2383259664294527 W.:0.23148709423700134 E:0.1933025272424758 .:0.172567261454911 :0.1643171506361593 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.3212276234486541 day:0.1865571679943897 part:0.17540911239191764 kind:0.17376886165058528 :0.14303723451445333 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6056145057753473 a:0.20416927104126287 his:0.09030494125078836 all:0.06071601915349468 :0.03919526277910695 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5857643433673505 all:0.23471331811804108 full:0.08418931931600768 his:0.05614828062079692 :0.039184738577803774 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.8484343881478553 the:0.12441661308468524 of:0.010623753152065336 nt:0.010289185690228542 :0.006236059925165587 -the:0.4525380678995489 why:0.30763718457375433 to:0.10303718661931978 that:0.08380856291406276 :0.052978997993314354 -services:0.26211120009917893 took:0.25397751577079464 service:0.21510876262819253 march:0.13869472479429001 :0.13010779670754394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -less,:0.47044888399138846 otherwise,:0.1387714358528358 two:0.1367855454825271 not,:0.1270223469679346 :0.12697178770531398 -it:0.30108265378603943 well:0.2566918497019301 much:0.15878947967410206 provided:0.14388689542299365 :0.13954912141493467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6435910103317871 or:0.11437428792248529 power.:0.09516574181714828 world.:0.07772626866470182 :0.06914269126387762 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Smith,:0.5775642549727631 Jones,:0.1263579552000939 Miller,:0.11670146717184908 Johnson,:0.09938993892421706 :0.07998638373107678 -the:0.6537299840920071 that:0.1459637010542504 this:0.13853460093513795 of:0.03634885844632081 :0.025422855472283575 -the:0.8500759707064951 an:0.09303125350542522 tho:0.031428979906403476 our:0.012862081335326361 :0.012601714546349866 -would:0.35933316628393225 really:0.17317540293769265 in:0.16313970758269247 will:0.1624844760579194 :0.1418672471377631 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -level:0.40058097981227486 ball:0.21254267349398648 line:0.13557145399755102 front:0.13370221901694626 :0.11760267367924122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9944291567953177 lo:0.002704800470600978 and:0.0015446155685985559 tc:0.0007978015687324129 :0.0005236255967503947 -have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 -the:0.7714246009261777 our:0.1262849161900414 American:0.047882467941780374 tho:0.030409462826134034 :0.023998552115866656 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -matter:0.7466812602603079 state:0.07758142377309092 world:0.06671078435704976 only:0.05518718557032296 :0.05383934603922859 -a:0.548354502463293 the:0.3780408453359887 his:0.03384135793420944 their:0.021138497417183464 :0.018624796849325418 -made.:0.5429558057368005 done.:0.27694589663818947 used.:0.08277414522773713 there.:0.05437055464406389 :0.04295359775320908 -is:0.27742021650572574 and:0.23163612908378473 was:0.2102062877709678 enough:0.19485938406376577 :0.08587798257575606 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time,:0.31130619608613036 moment,:0.22448202802414757 man,:0.1637014694013994 week,:0.15733833916810028 :0.14317196732022253 -his:0.29779152044792967 the:0.25690857216033114 100:0.16542697333093123 six:0.14473551387813968 :0.13513742018266825 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -water:0.36006193184558044 full:0.1847761960054005 same:0.16674119128853984 great:0.149535312025039 :0.1388853688354403 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8396897632358391 is:0.05015077796562084 and:0.04795949897092769 as:0.03394040672205593 :0.028259553105556483 -of:0.43150498821046746 in:0.21731407309134587 to:0.1581162757562424 with:0.1032066164063016 :0.08985804653564264 -dollars:0.24807875783260766 ten:0.24456113467699467 six:0.19874383274995844 the:0.15771210253068021 :0.15090417220975896 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.3627292507412835 system.:0.22769384125874095 world.:0.1416859692938387 people.:0.13702363625176867 :0.13086730245436817 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7112499954645611 this:0.16421015469493605 his:0.08072926378291297 my:0.02547069822542984 :0.018339887832160093 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -people:0.3142381763988829 citizens:0.22439818109797813 State:0.15677548772701233 midst:0.15294955770760543 :0.15163859706852117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.42094087921141643 one:0.19108915259175477 this:0.16807444476116662 that:0.15329232747789923 :0.06660319595776291 -hundred:0.5024731283127128 several:0.2840095189433405 other:0.10077098063740517 ninety:0.06136751130622226 :0.051378860800319184 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 -born:0.27909499281399636 found:0.20874192851455553 made:0.19950402527668518 held:0.16262582102093442 :0.15003323237382857 -are:0.2835211042988689 will:0.20888285552480323 did:0.18221101144147236 and:0.17335008021149545 :0.15203494852336005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -never:0.3127497796039304 who:0.19510793459458348 do:0.17439622656699774 thought:0.1713332844084562 :0.14641277482603213 -wit::0.47991642393591866 him.:0.16890638827287094 them.:0.14528239869578458 it.:0.12005476036668801 :0.0858400287287379 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.5021798614196137 best:0.2373263260366396 only:0.10366196102391946 other:0.09016064288426916 :0.0666712086355583 -of:0.805906877614314 at:0.16262239027170355 ot:0.011437184787861055 on:0.010663714248209648 :0.009369833077911801 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.36661699050316654 they:0.2873604946007754 I:0.1475249797067974 she:0.12514304324036915 :0.07335449194889156 -day:0.5354411331658363 class:0.14493276505926866 part:0.13813235350401537 time:0.10325276153268695 :0.07824098673819259 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.41176152799706495 -:0.2814478598104181 J:0.12267571581657905 possible.:0.10560506433012945 :0.07850983204580841 -and:0.41922153449207916 Wilson:0.17325438136355278 Smith:0.1453692814817751 Johnson:0.13620852309898074 :0.12594627956361226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3402887161763415 at:0.25376707577475355 by:0.18241138190780187 on:0.16817624823495034 :0.055356577906152796 -and:0.5239216877119949 was:0.20325857921365528 is:0.10941422831595043 off:0.0904086865446726 :0.07299681821372697 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -from:0.23971064769513492 on:0.23228387853181645 than:0.22712868173015827 in:0.15980446234180876 :0.14107232970108163 -it.:0.3164310613675328 them.:0.28214395643487694 him.:0.23233322794109096 home.:0.10127792150385417 :0.06781383275264516 -the:0.8131408334857341 a:0.06844890323894556 his:0.060335012538510036 tho:0.031066498425004255 :0.027008752311806057 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7822692838238814 and:0.07725935824710008 in:0.06693047619232188 to:0.037503278574070466 :0.03603760316262623 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5769593364065818 to:0.14000374998965626 would:0.11049140533428432 will:0.08661601163430363 :0.08592949663517369 -in:0.35835328448611553 a:0.2345993435554344 the:0.22588444997149462 such:0.09825378517530368 :0.08290913681165164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5932643890823308 or:0.1424284545352993 to:0.09704435289380342 and:0.08751616432533701 :0.07974663916322952 -of:0.5577105040904291 he:0.19683501667634576 the:0.17395373259772343 she:0.038049780061598114 :0.03345096657390363 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.27843881819871785 amount:0.20358306606175863 payment:0.18315006895948913 State:0.1691924639092322 :0.1656355828708021 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years,:0.3125645420769201 days:0.2776040800441834 years:0.225843969409792 days,:0.10474836684471325 :0.07923904162439131 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.35592266086034474 point:0.24130479517609796 change:0.14696324754392406 part:0.1304589583290741 :0.125350338090559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9039052576989579 tho:0.039504873557758745 make:0.021419691300778268 tbe:0.01884804649522814 :0.01632213094727685 -is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8483194736642966 a:0.05220430671045231 this:0.04880910931200348 tho:0.030356296564115093 :0.020310813749132486 -and:0.41569243562251534 questions:0.33489569802978164 is:0.08785006956045328 has:0.0822702622335078 :0.07929153455374192 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.6582281119805335 than:0.10666290065795374 had:0.08572801240088136 will:0.08170970099657468 :0.06767127396405681 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7529415915074488 their:0.09076453628896729 been:0.05465586954943909 thought:0.0520202750610265 :0.04961772759311831 -that:0.6093014581039848 as:0.1494121802645019 to:0.09477254613442891 far:0.07643464838144164 :0.07007916711564267 -will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.9037422977833378 tho:0.033004200602529454 said:0.028330158855514577 a:0.018642920824866075 :0.016280421933752093 -young:0.2995569221739687 a:0.21971085056891893 No:0.20713170589457405 the:0.14299536974704588 :0.1306051516154925 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thus:0.2567955450363673 the:0.2508936655545416 in:0.21039328437462398 thereby:0.14387067639654524 :0.13804682863792175 -made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 -is:0.31350430437460475 country:0.2332816191961504 country,:0.19876019060788022 act,:0.12884056855937157 :0.12561331726199307 -that:0.7291021288953461 which:0.0822393287919067 as:0.06786696601012658 what:0.06721635703366416 :0.053575219268956475 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -taken:0.35632257030537795 picked:0.19691759124611916 made:0.1783983677547279 come:0.1530931977175917 :0.11526827297618335 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -railroad:0.4503789647180898 new:0.23281763101713893 good:0.17365077392563028 telephone:0.0732831386953048 :0.06986949164383606 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6608859544939015 said:0.19879765914483014 a:0.08558657806521656 his:0.02785585922986255 :0.026873949066189153 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -if:0.32730349934027386 when:0.2765675181097611 what:0.16778784227154414 that:0.12414200470010879 :0.10419913557831205 -white:0.2734873655868955 one:0.23479422716521933 a:0.19080558251537025 young:0.17906367239032292 :0.12184915234219186 -the:0.4698206566660799 is:0.18080529180522673 he:0.1418256984202924 it:0.10822671499319475 :0.09932163811520608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -good:0.44686674987319497 very:0.29017517737835963 work:0.14340512126853358 working:0.0720388085550229 :0.04751414292488896 -the:0.9337795843134823 tho:0.02991105008140766 tbe:0.015698535753133066 this:0.012216747934094092 :0.00839408191788284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -M:0.27851155114256093 M.:0.23150652445963843 S:0.18463485955753103 C:0.16651064907207372 :0.13883641576819583 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -from:0.4214607613883391 after:0.18546472458326765 that:0.16416677518740808 to:0.12686819265537133 :0.10203954618561384 -covered:0.24909869742040106 cover:0.24358160423398412 played:0.18653191150881684 ease:0.1859747229358934 :0.1348130639009046 -are:0.24192091656990827 did:0.23585760093631963 does:0.18032476239929154 had:0.17450355585688496 :0.16739316423759557 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4171081479824778 to:0.40966387234426344 in:0.08042307699311893 on:0.05068637255206167 :0.0421185301280781 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ends:0.3172224886049831 will:0.21033146004540001 first:0.19749919136964414 best:0.1439995396370599 :0.13094732034291273 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 -country:0.2883707845392758 year:0.257460019285792 letter:0.1805969727034635 way:0.13760588454372008 :0.1359663389277486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -entrance:0.3971512928517299 line:0.18763668504028205 object:0.1496089976092981 road:0.1413880684948727 :0.12421495600381738 -The:0.2763068301134219 His:0.22092504814180147 and:0.21505369509830594 his:0.17815142525486588 :0.10956300139160483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3680582932858102 how:0.19958474448119776 from:0.18624374412378705 that:0.12378612162611574 :0.12232709648308925 -Dakota,:0.34873823889047784 Carolina:0.2530432394969562 Carolina,:0.21907469566530668 Dakota:0.09703092766174087 :0.08211289828551852 -fact:0.3280831464444268 time:0.2278107091426005 city:0.15422984351585659 present:0.14822898040931445 :0.1416473204878017 -they:0.46452278395430474 you:0.2010354758438952 we:0.19568381067313978 it:0.10903371116275425 :0.029724218365906035 -able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 -it,:0.2896989706298191 him,:0.2553604816484152 it;:0.18932306648149066 ;:0.1645142915529774 :0.10110318968729771 -said:0.2690156192447461 him:0.23174835335500202 her:0.16867861984690805 going:0.16608102838888647 :0.1644763791644572 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -J.:0.2695927180227289 John:0.24867270776624778 James:0.19708440668445246 W.:0.16679622997255586 :0.11785393755401508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.29238239897739265 and:0.28399133022703293 it:0.20176613682396383 Notice:0.12095350047549024 :0.10090663349612043 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -gress:0.914224174325943 way:0.05026624713202548 dition:0.015609909587135968 go:0.011204109323728863 :0.008695559631166517 -caused:0.33424924559565483 in:0.21896153577775165 to:0.20742445170289484 for:0.13282021289244536 :0.10654455403125328 -it:0.3060325733268504 as:0.2117445357599935 owing:0.18232142498893752 not:0.15224176984016674 :0.1476596960840518 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -trict:0.4178490421420346 charge:0.3151819813687058 ease:0.12431897451604268 posed:0.0730832806351111 :0.06956672133810582 -and:0.3787124037641557 of:0.2452067198017316 stated:0.1412505838855732 believe:0.11891249315542439 :0.11591779939311495 -this:0.6050706021256923 the:0.20662591376690945 said:0.12477968112218596 an:0.041830637232953424 :0.021693165752258988 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5442025402114087 he:0.13294250085344705 there:0.11503798773275319 work:0.1133462851238558 :0.09447068607853541 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3218287919104678 work:0.248780884444118 early:0.19387969306158465 taking:0.1334007956166008 :0.10210983496722868 -and:0.3730165837394331 which:0.29804557317294256 he:0.12839977352667864 who:0.12312552040218382 :0.07741254915876196 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -though:0.4792830869510942 t:0.17040628707399966 to:0.13417144960064373 I:0.12756852476383115 :0.08857065161043133 -account:0.5364740567608858 behalf:0.13550991952581004 board:0.1354428863244095 one:0.11086672590820994 :0.0817064114806847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -church:0.28383954889874485 and:0.222831918227415 side:0.1870247200446475 E:0.15487111474708193 :0.15143269808211077 -before:0.2877254288099252 as:0.2822876087970764 at:0.23311496470897067 in:0.10822670250764885 :0.088645295176379 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.3254682517342364 in:0.22755953527330067 as:0.1668380816812941 among:0.14104073246773274 :0.1390933988434359 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.719121051783987 this:0.13346648222429724 his:0.057264884994407975 a:0.046900146667943864 :0.04324743432936403 -are:0.2821137526033365 contained:0.2708813187551497 and:0.19633762715820832 exist:0.1442542692605657 :0.10641303222273973 -of:0.9206817252383912 to:0.03019070660857513 and:0.02317612389489635 with:0.014432375122516989 :0.011519069135620298 -seem:0.36776571687006265 be:0.2102324364841674 have:0.15893568314002243 not:0.13610036708504536 :0.1269657964207023 -now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -up:0.6734776265562549 on:0.10292708782311248 and:0.08482277628412639 for:0.06961497298464314 :0.069157536351863 -the:0.36970223206359776 good:0.3218931916212152 their:0.13417316000395882 his:0.09521051229703222 :0.079020904014196 -to:0.9505147902632042 and:0.019610042874957344 will:0.018029812028139133 would:0.007077035745153596 :0.004768319088545897 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -to:0.29704278579563553 I:0.28459647214918654 we:0.16128258043708424 they:0.1402082573658677 :0.11686990425222599 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9254359716099344 tho:0.030045153091815158 very:0.020312723723059214 tbe:0.013541899098745681 :0.010664252476445882 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States,:0.5099891979766389 States:0.4788316328716074 State:0.004850384295480244 State,:0.0033225392638069917 :0.003006245592466492 -would:0.3457944110127706 could:0.20392947906326875 must:0.1663421593638928 will:0.15729763117769752 :0.1266363193823703 -the:0.7149173781641232 this:0.11359276090197291 what:0.10338972144221273 a:0.04098874376964524 :0.02711139572204609 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.2822903109031107 are:0.22455097646984074 do:0.21830033026657902 could:0.15622563285710084 :0.11863274950336877 -the:0.5518820837242775 a:0.19248958101775632 law:0.10028243726023188 said:0.08584665012447064 :0.06949924787326371 -name:0.5621461404184557 duty:0.15027400294609322 life:0.1309956178685093 business:0.08370351086678203 :0.07288072790015988 -and:0.7734253263806309 of:0.16387812050221676 to:0.021954224235477576 were:0.020928377489288615 :0.01981395139238621 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5673326133967603 other:0.26071175543022607 its:0.11434322904114981 of:0.034373768995570084 :0.023238633136293617 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.3882556477059495 all:0.17624135766700755 Deeds:0.16088807782174416 land:0.15702328380727673 :0.11759163299802199 -that:0.4513898758277822 at:0.2719636642613595 to:0.1254819063086608 by:0.11014869243756902 :0.04101586116462848 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -weak:0.3851742909158658 late:0.2543800798910226 human:0.1241214287683467 full:0.11836327270802476 :0.11796092771673994 -the:0.4368256011860268 his:0.2992014824709439 my:0.12453629970084047 her:0.08952025239868644 :0.04991636424350228 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.48656989467100054 for:0.163578222552624 to:0.15292599923321035 the:0.11286346605586983 :0.0840624174872953 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 -little:0.5002591414492538 short:0.24786894833928783 new:0.09573012620337011 long:0.084577083076218 :0.0715647009318703 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.46692448173281653 the:0.4058909060090027 his:0.05381222966325288 their:0.04032000307096957 :0.03305237952395831 -the:0.9227374214516284 tho:0.046218053078418586 tbe:0.01739675401425532 this:0.007301583571932815 :0.006346187883764798 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -deal:0.3034058178027782 miles:0.28224506828574136 foot:0.15935995178395884 feet:0.14058586095451983 :0.1144033011730018 -been:0.9107609618039544 so:0.031629744654622434 had:0.02781887037672702 more:0.020903056244848936 :0.008887366919847258 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.4201327429359498 facts:0.16525503234149197 things,:0.15244576450926423 lands:0.13741410403831483 :0.12475235617497915 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year.:0.3062489959620686 day.:0.24280784303850633 week.:0.16143727824865514 time.:0.14983395257373813 :0.13967193017703175 -way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 -let:0.3746726365966321 told:0.16981787100161683 give:0.16494045592673376 put:0.1584847331910835 :0.1320843032839338 -with:0.5255987981899227 in:0.1932806706023279 on:0.11879994448178274 at:0.08695486745560908 :0.07536571927035757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -purpose:0.20719197122450905 State:0.20592744932833862 day:0.19613414923494918 people:0.19556251276437905 :0.19518391744782418 -duty:0.2372963852281673 people:0.2365533150996598 attention:0.18319710963392397 way:0.18160577983651732 :0.16134741020173163 -Mr.:0.6581399058555627 A:0.15950743797698733 John:0.06388150932469627 Mrs.:0.060521110667399 :0.05795003617535465 -I:0.4812932085455356 then:0.2094917429676473 he:0.12064029701581022 had:0.10335638171712919 :0.08521836975387773 -next:0.5415449290198936 first:0.12776821613248615 third:0.11311421145185634 second:0.10950072116961065 :0.1080719222261533 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -day:0.21394256475108095 part:0.20062940614861025 purpose:0.19798122308807414 amount:0.19514145819312026 :0.1923053478191144 -in:0.5449324158371589 on:0.35524131672417103 In:0.07704536089973521 ou:0.01360368914311002 :0.00917721739582485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5728435929344954 in:0.1833948983807339 from:0.121069598874995 by:0.06758351010902072 :0.05510839970075518 -of:0.40582163611151656 and:0.16541250472001617 in:0.15219648273465816 on:0.14147423113272933 :0.13509514530107983 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.39050706970364385 of:0.19975637023280254 a:0.16122140977115978 or:0.15086135608960122 :0.09765379420279272 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -red:0.31467191972377884 the:0.24809137027037362 bad:0.1623874501864744 of:0.15397404614051302 :0.1208752136788603 -and:0.3029391078341907 resolution:0.29093415897163677 bill:0.15392199119497466 committee:0.12689626721126052 :0.12530847478793752 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.38832010937035966 premises:0.1706576699996867 same:0.16093712772464264 same,:0.1594141546126557 :0.12067093829265534 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6569747451925192 do:0.14352882461985647 Mrs.:0.0738658636939054 Mr.:0.07026591938745778 :0.055364647106261246 -interest:0.5006456124515634 increase:0.2215374326115964 reduction:0.1129610964796651 and:0.10334120234583262 :0.06151465611134238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -present:0.2691414887343137 same:0.23868593358564386 city:0.18154835764275756 work:0.15912793496289163 :0.1514962850743933 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7229298956240826 his:0.14481445368646118 my:0.04864280700708154 a:0.044202320726532976 :0.03941052295584168 -same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 -are:0.29244454637930073 was:0.24291121377054986 were:0.17647461323205593 is:0.14929738335899256 :0.13887224325910089 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4099928831097417 first:0.22880479914247595 a:0.15917805436038301 last:0.13040930816758686 :0.07161495521981241 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -regarded:0.3004545061459762 well:0.25755668023693734 used:0.18391076100161668 known:0.16290202158912828 :0.09517603102634152 -and:0.3957365613926019 was:0.303554509903078 or:0.13578469072640692 born:0.08334077523306666 :0.08158346274484657 -side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 -say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 -are:0.4127931037762225 were:0.2308888510403035 know:0.13505866756261387 think:0.11259139046023846 :0.10866798716062168 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4283042194265817 within:0.1531477623050012 the:0.1438454842545359 that:0.13815184743512823 :0.13655068657875297 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7290537702411778 this:0.17058474061708973 tho:0.04581871506017417 that:0.032739488959626376 :0.021803285121931748 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -long:0.47744890566703285 far:0.24752940334377052 well:0.09886855966955042 much:0.09370130063199944 :0.08245183068764692 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -posed:0.6199863995661345 duced:0.21642809903098859 claimed:0.07643885433585082 gress:0.047744793593084776 :0.03940185347394131 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -market:0.3005685885462567 report:0.1871917106438374 evidence:0.18391504549775659 result:0.17423491101657546 :0.15408974429557387 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 -be:0.6776507832329091 have:0.1309560592372272 at:0.0671717076470443 make:0.06544532871674885 :0.05877612116607074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.25423141853692655 I:0.24357168873633825 we:0.19163982161996845 they:0.17363033623964472 :0.136926734867122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -A.:0.5916112730176197 Mr.:0.1579156405362587 18:0.09685989495838579 August:0.07920755080178364 :0.07440564068595228 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time,:0.2704948862266997 year,:0.2048911973114478 week,:0.18317697614566916 small:0.17726699252353248 :0.16416994779265082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9206817252383912 to:0.03019070660857513 and:0.02317612389489635 with:0.014432375122516989 :0.011519069135620298 -and:0.32964940146877597 Council:0.2588227302083267 Hall:0.21394960533581867 Hall,:0.10176757410774692 :0.09581068887933179 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -terest:0.4080273395902492 crease:0.2644925468548499 formed:0.127476651685952 roads:0.1077075424502519 :0.09229591941869705 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.415239971949358 when:0.24351363254666716 if:0.1649032503243776 then:0.10067323199724439 :0.07566991318235296 -have:0.25334774014090866 had:0.22451430291214375 are:0.1789461153966648 wish:0.1731210724324909 :0.17007076911779212 -per:0.9986106954772882 par:0.0007944713763550763 35:0.00020614813642586604 25:0.00020162620131560375 :0.00018705880861537622 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9873686440315345 and:0.00841493699795396 lo:0.0029873919338505163 men:0.0006952577898132217 :0.0005337692468479523 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.33033777127141617 the:0.2995324771895554 our:0.1527992123581837 their:0.12321388643007893 :0.09411665275076588 -.:0.4893488712683715 .,:0.20712237744665624 at:0.18232169891619623 ,:0.07967953924235148 :0.04152751312642454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.33743034192453253 that:0.19778329322109606 to:0.17611275048125952 with:0.15037386128037195 :0.13829975309273992 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -voted:0.3706891823988265 mand:0.2640714716277018 based:0.16362746279687507 pressed:0.10119449828077891 :0.10041738489581778 -and:0.2663236782809293 but:0.23086062930684206 with:0.21250690841479808 as:0.19910620481668354 :0.09120257918074706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 -that:0.39337065127017484 when:0.2436577372285483 if:0.1435115544366602 then:0.12776661242254575 :0.09169344464207098 -of:0.7409347416665786 in:0.07220033167192699 during:0.06878088316244745 at:0.06111978007294661 :0.05696426342610048 -the:0.4026711232257502 a:0.23503042207644576 his:0.22699870459347624 its:0.08313322477754789 :0.05216652532677997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.26445502160625267 be:0.2088375319631481 follow:0.18980840235821264 to:0.17662982280838327 :0.16026922126400334 -and:0.3696586913753579 where:0.23285803224296825 in:0.19964827864043488 for:0.10464891190799348 :0.09318608583324549 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -about:0.4159908291613755 the:0.19820023082144622 only:0.17681867703119647 a:0.10865383917412227 :0.10033642381185959 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.28586806082776356 i:0.23634852373329435 first:0.17703357609335907 time:0.1552430478850999 :0.14550679146048312 -the:0.8676872983976787 its:0.05304640450151908 tho:0.04063231838296596 their:0.02051956999544142 :0.018114408722394868 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.5611628486677717 in:0.22393657793805935 upon:0.10243470237182797 of:0.057904466007181285 :0.054561405015159735 -take:0.6568662990540863 not:0.33119989865208926 be:0.005670415427434305 hardly:0.003349520777906414 :0.0029138660884836507 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 -people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said::0.49297646921615323 says::0.2780705190416514 said,:0.1388585777341689 said.:0.059974341502707126 :0.030120092505319315 -his:0.3329927779530486 the:0.3211307057925009 their:0.1536877223709586 her:0.12079411741585626 :0.07139467646763564 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 -pain:0.2879724320356133 communication:0.18979767830773292 and:0.18696066858732804 effort:0.1840090698713637 :0.15126015119796196 -been:0.5735427075368285 gone:0.1163691794123549 made:0.11572015386305418 shown:0.11085010206718365 :0.0835178571205787 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -last:0.6302881755568676 at:0.14231942916972076 of:0.10364249378307758 after:0.06311250930025411 :0.06063739219007997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.7801674345760651 which:0.111762937969622 as:0.062366006322340864 and:0.03150151118374444 :0.014202109948227721 -was:0.30174703189515273 the:0.2738221241187848 in:0.1873117094200991 while:0.13647876158830946 :0.10064037297765395 -business.:0.25136956365510216 one.:0.23395166098990666 city.:0.22092190809398127 success.:0.1530780634912247 :0.14067880376978512 -upon:0.3086130341639344 by:0.2299524473064549 of:0.16714560028820832 on:0.1583908488058413 :0.13589806943556118 -time.:0.2987354517976815 city.:0.21988677486068592 day.:0.20885576581747567 way.:0.1498473920315098 :0.12267461549264716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.28774033730994975 from:0.22230336362478456 for:0.16815690186636176 on:0.16396612857027687 :0.15783326862862704 -to:0.3642773377609949 of:0.29762015080970344 that:0.2901880872597813 and:0.030054347931100227 :0.01786007623842005 -to:0.8518073235218229 and:0.059257856355786606 could:0.03340703556400602 will:0.02998843765298227 :0.025539346905402143 -been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -nothing:0.5186898132387141 anything:0.22022735257821827 something:0.10390724186263814 everything:0.09332948707259144 :0.06384610524783825 -be-:0.47590694245614473 be­:0.1945317585115578 be¬:0.1875154292337946 I:0.07786204134101712 :0.06418382845748574 -the:0.6071363289809525 their:0.18041100274631153 his:0.0815821442795781 dry:0.0752570779310378 :0.05561344606212001 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.28774033730994975 from:0.22230336362478456 for:0.16815690186636176 on:0.16396612857027687 :0.15783326862862704 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States,:0.30936507304832644 States:0.22963124772185872 flour:0.18809030034512855 Pacific:0.18678686539670575 :0.08612651348798049 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.35803860782327174 that:0.26568052367424283 which:0.17046408827187517 fact,:0.13473415691354593 :0.07108262331706426 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.4167992302169917 week:0.16737842513256151 year:0.14581391953357373 city:0.13859939252850356 :0.13140903258836945 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -morning.:0.563925314701316 afternoon.:0.3576426369010777 evening.:0.053521452525227185 morning:0.016426935645920456 :0.008483660226458588 -Then:0.3648925520726022 When:0.20741028707091294 If:0.17062094904192587 But:0.16423757884141385 :0.09283863297314529 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -you:0.28404043965635273 yet,:0.2393709875559207 I:0.17311408083557364 just:0.1555071876834556 :0.14796730426869736 -up:0.39252927649849073 him:0.21150825526611342 place:0.20927845962286254 them:0.09604189327812625 :0.09064211533440708 -will:0.4917889467023763 may:0.1555141452224058 can:0.13379013824420402 should:0.1095887901578658 :0.1093179796731481 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.43059548938540765 of:0.3445210426243312 in:0.1044209389580105 and:0.0748863587582835 :0.045576170273967105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year,:0.3029533691706821 year:0.22342572381850603 and:0.2020427279325414 person:0.17036851914816584 :0.10120965993010454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.29971493723018405 morning:0.19463542289810368 year:0.1899982328241526 city:0.1759391559481172 :0.13971225109944227 -said:0.40320126333542466 time:0.3595409908140984 day:0.0839955797679585 best:0.07757820046903845 :0.07568396561348001 -and:0.39875797964311 the:0.22459754720423475 or:0.16635946430867987 with:0.11866682686466873 :0.09161818197930664 -one:0.2683140205387431 two:0.2613964256103944 person:0.18597162537178472 order:0.14379244286210743 :0.14052548561697034 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7713365278868772 a:0.11060533793836906 its:0.041790287889517726 tho:0.03860178472591676 :0.03766606155931924 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.34735252604912953 that:0.26441931641614747 in:0.18174135390963309 such:0.13141361512673588 :0.07507318849835413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.37231762020805387 in:0.2513227527924472 as:0.18882026083694048 so:0.12394606322484088 :0.06359330293771763 -forth:0.5110476046103386 up:0.22015398771673078 aside:0.12936357664207568 apart:0.07517763933845735 :0.0642571916923975 -in:0.4634140423809999 on:0.2509044556271826 In:0.1307654572211398 to:0.09976647511211523 :0.05514956965856237 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3470095104479173 but:0.19658746314179107 where:0.18509995580035904 which:0.16150232716371996 :0.10980074344621263 -of:0.38805932383620545 to:0.2508333063732371 and:0.24067229981800883 while:0.07729668120447677 :0.043138388768071946 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.29326597709812974 to:0.2641579671884685 ever,:0.1898723565962337 much:0.16103752215489334 :0.09166617696227451 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all.:0.34867592001116965 being:0.20740112943099723 him.:0.17458572149888488 them.:0.15880791611230566 :0.11052931294664256 -the:0.5440750558129244 this:0.2976840707552414 whole:0.066775932385088 a:0.04766041460753623 :0.04380452643920998 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.43845355829817306 other:0.2727964927529002 their:0.11403194247421732 good:0.08972113795979933 :0.08499686851491031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.6012057536082369 personal:0.1333356752106517 real:0.11811087762407368 such:0.08769369652008654 :0.05965399703695111 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -dition:0.5444241408309557 dress:0.20287389713707235 mission:0.12735061519120405 minister:0.07019658587839682 :0.05515476096237094 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8049100982200799 his:0.06323853559748464 this:0.05867768543918559 a:0.03858539050610069 :0.0345882902371491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -deem:0.5483002303111583 be:0.34732227409591643 think:0.04816185139434515 seem:0.034823424452688025 :0.021392219745892102 -Washington,:0.4097400232030107 the:0.2225643328810057 last:0.18104484848534916 Chicago,:0.1302318249246054 :0.05641897050602889 -fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Sir:0.6079959613851261 st.:0.14981838188856825 .:0.11022744139835289 and:0.08110679420918719 :0.05085142111876554 -to:0.9889148981565137 lo:0.00482659534121032 as:0.004347313226213416 In:0.0009966369585681846 :0.0009145563174942207 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.40993540169484066 been:0.3246035512213228 always:0.12738447151975824 given:0.0783737729931413 :0.059702802570937075 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.4169375894179534 seem:0.18122584447660398 go:0.15215700624736933 be:0.13350937412360384 :0.11617018573446947 -the:0.7344449024178281 an:0.19851453381274858 tho:0.03986739232843089 said:0.016652250114677906 :0.010520921326314608 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.3177074802647415 time:0.20254878272226665 city:0.1739753385468219 city,:0.15645194422877484 :0.14931645423739523 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -back:0.513231970425984 over:0.27643258853519126 down:0.10845589373712906 thence:0.0634781831675117 :0.038401364134183935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6484365170788601 the:0.1647039148154137 for:0.07884361192616385 on:0.06923403674677664 :0.0387819194327857 -final:0.2675141460908287 direct:0.2419962840235365 natural:0.24020765080429973 net:0.1360469227711008 :0.11423499631023432 -hour.:0.5351198532743836 acre.:0.21322222426341692 end.:0.1908970938250149 election.:0.036391769492275315 :0.024369059144909215 -Attorney:0.49299565933720807 of:0.4082371405961189 Judge:0.03769050801334136 and:0.03463129086893278 :0.026445401184398986 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 -had:0.36058563137086985 was:0.24070185262738258 is:0.18640330669380434 has:0.11601007382729345 :0.09629913548064986 -is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 -made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.6705950040370989 had:0.1619577182776847 have:0.08048184600383508 extent:0.050675941619173395 :0.03628949006220791 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.42658284542178443 any:0.2147527296264028 a:0.1931156015615424 this:0.09130833562838613 :0.07424048776188426 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tion:0.5230060009622262 tion,:0.23906715855134283 tion.:0.17221810177588118 tions:0.03357467961754312 :0.032134059093006595 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3999506466968328 at:0.23677249022603203 on:0.13975853273624375 by:0.11730270822367812 :0.10621562211721318 -strength:0.30706924805822683 friends,:0.22707233021181125 mind:0.19705836529633589 opinion:0.15146503996439445 :0.1173350164692316 -dollars.:0.5141658796740289 years.:0.19964239089716163 feet.:0.1466952504711215 miles.:0.08419517646878347 :0.055301302488904525 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5828157665026565 was:0.2191823791835575 Is:0.12173194669427344 to:0.0439638967000863 :0.0323060109194262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.43928935151580234 men:0.26822464914683136 present:0.10053319454538917 officers:0.10008527024370913 :0.09186753454826802 -city.:0.2085271685022158 effect.:0.20851649013430806 country.:0.2057979835595353 place.:0.19785683406142313 :0.1793015237425176 -say:0.338854708947066 believe:0.20098228874838234 and:0.19755426477961874 of:0.16029268663364338 :0.10231605089128955 -they:0.3649212788320134 there:0.28469943665017333 we:0.2039858898488088 who:0.08687015936496226 :0.05952323530404228 -length:0.3214534132906193 noon:0.31501263363863113 that:0.13376888294799633 present:0.1216474795744787 :0.10811759054827438 -for:0.3038616405717259 of:0.23726870349381016 in:0.22926786618631173 is:0.11750328689023216 :0.11209850285792004 -of:0.4198236692878355 in:0.2771490226184156 where:0.13176090564068546 on:0.10316893809730635 :0.06809746435575706 -was:0.7294491041760901 had:0.18868017871474116 has:0.03495535595490675 is:0.03063311574048093 :0.01628224541378097 -of:0.5387133455230527 the:0.2321432395329759 at:0.09684988499542362 upon:0.07137985109404071 :0.060913678854506985 -is:0.28745874121040554 could:0.2122240621702804 would:0.16962200794249177 will:0.16904759026558278 :0.1616475984112394 -carried:0.28352337052863574 went:0.2464281111873953 ran:0.1823629223443569 get:0.17145919733506831 :0.11622639860454392 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.636153287109877 had:0.1976979891333181 have:0.1336095311098706 having:0.02029882490192923 :0.012240367745005113 -to:0.704991967127306 and:0.22072529389989906 will:0.05132070027087484 or:0.013442081286839103 :0.009519957415080915 -to:0.32589825777359477 out:0.20686376484595964 into:0.17241297921503762 in:0.16088226086685614 :0.1339427372985518 -a:0.5090005143529363 the:0.3471156921637945 any:0.051219886655156754 tbe:0.047620078106850046 :0.045043828721262474 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6001240460502615 on:0.14032615802032677 to:0.11535246691815677 that:0.09052739301602909 :0.05366993599522587 -and:0.34409588661106033 fact:0.21725923273502312 for:0.19508844263018538 is:0.14390630092774886 :0.09965013709598236 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -of:0.36657422214141966 against:0.32780360960735433 for:0.11804755593310323 is:0.09762491409682837 :0.08994969822129444 -other:0.3573178097077375 right:0.23317365606087784 mountain:0.1395362338730919 east:0.13576531881007425 :0.13420698154821847 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.6079441431278488 that:0.14776236091681338 known:0.09704578010660642 and:0.0911221466610403 :0.056125569187691196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -posed:0.2745806740289961 pose:0.20718362513052638 ports:0.18459966399206248 possibility:0.16955206065142828 :0.16408397619698664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Rev.:0.2495729214441649 Mr.:0.21772942416645377 J.:0.21607883207007653 Mrs.:0.19944452458119893 :0.11717429773810596 -covered:0.2822824150647194 parallel:0.2498464022803805 it:0.20703737238311423 filled:0.15737732285658504 :0.10345648741520089 -of:0.5112722949731829 the:0.2906738552703576 for:0.08254578333324161 is:0.06726003047096314 :0.04824803595225461 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6700219689193994 this:0.14192897488697465 his:0.07664759437883636 tho:0.05686997832626947 :0.0545314834885202 -The:0.7943386622801608 A:0.07375311851825327 This:0.058211163446425115 They:0.04236376989994256 :0.031333285855218204 -by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.600183010537192 children:0.12154747210483548 years:0.10853164902228003 houses:0.08789175847790959 :0.08184610985778298 -miles:0.26321473676803936 feet:0.2211220246805254 numbered:0.20051743529988117 inch:0.16754840776293847 :0.14759739548861564 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.35240859239472894 on:0.23584736281104068 in:0.22041039014179048 and:0.10547331949880345 :0.08586033515363645 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6081690147870586 seen:0.11181474822659883 done:0.10621367812892284 made:0.10289032955598296 :0.07091222930143658 -him:0.3025081560060519 them:0.24827029909538703 up:0.2154434039655054 us:0.11820866399296351 :0.11556947694009219 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6727059132097257 in:0.180596344898063 with:0.08399033661211883 to:0.032197584456455576 :0.03050982082363691 -air:0.3054869778674453 air,:0.2664861485427665 up:0.20383061417193632 door:0.1330556501777355 :0.09114060924011641 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4002279848413371 are:0.3397114528585857 and:0.10248376936368182 were:0.08152411130702227 :0.07605268162937322 -bers:0.8075023762683327 ber:0.19170354231543696 cry:0.00030889897130569375 ment:0.00028323284581452634 :0.00020194959911028323 -The:0.8996683161921869 Tho:0.03607948950434789 In:0.025379993892386574 This:0.020256851642690265 :0.018615348768388378 -a:0.5708062804939923 the:0.2365215419466977 every:0.11076654684788165 one:0.05316426271348934 :0.028741367997938968 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -once:0.43570231925452574 home,:0.15811689316903282 law:0.14771292800038913 his:0.13995057976540523 :0.11851727981064704 -said:0.3965165858739642 the:0.282117234842873 this:0.2655856010780727 Police:0.03505901490469557 :0.020721563300394583 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.24116372805030956 and:0.2280877910805206 .:0.22447412921192525 Mr.:0.17812544036190633 :0.12814891129533812 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wife:0.263188434336132 hand:0.21379095888279698 mind:0.19130617844391617 life:0.17981177051998581 :0.1519026578171691 -will:0.4837928823308395 to:0.165306984742984 would:0.13636362186794093 men:0.11553543598677082 :0.09900107507146484 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8415019376771147 said:0.10829663202846918 tho:0.026496243614415618 tbe:0.01656627171772858 :0.007138914962271853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.30076376196922144 the:0.29321586726832893 being:0.2617869702123197 which:0.08685469587629784 :0.05737870467383207 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Silver:0.4916022969448045 Gold:0.208207241716236 said:0.140556100727699 District:0.08769809620102834 :0.07193626441023217 -of:0.7873007776982319 in:0.09235658905113157 on:0.06082029600009988 and:0.030415429127281658 :0.029106908123254928 -no:0.33963940306106255 the:0.33406638389363225 a:0.26210036375662565 that:0.03932982437927126 :0.024864024909408314 -made:0.3297350959024896 took:0.22862932120635557 taken:0.16686331044972885 gave:0.1487480409933631 :0.12602423144806285 -the:0.8484361421817552 this:0.05519130237390858 tho:0.04403088378523359 our:0.029204556931908782 :0.023137114727193885 -there:0.39157595308326404 it:0.3732539959991392 It:0.11217855404506379 he:0.07976820644150616 :0.04322329043102673 -last:0.628720313074223 the:0.17650989465944866 every:0.11462954323174017 next:0.04238170973171897 :0.037758539302869196 -homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -see:0.30641378640646744 marry:0.2530132499704585 kill:0.1955178001052409 meet:0.1436459846312772 :0.10140917888655608 -part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 -than:0.7941951736086035 to:0.09131903932764267 of:0.043087447890709445 in:0.04264529510977698 :0.028753044063267404 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3320486789487959 of:0.2656280882593774 and:0.1937719192181297 at:0.13314757327076393 :0.07540374030293301 -was:0.5962508739913358 found:0.1080027603049108 Is:0.10514833284101907 is:0.10005757515014355 :0.09054045771259078 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -most:0.7978676875020816 ways:0.16964354714644675 though:0.027414707779135173 so:0.0032283490679734343 :0.0018457085043632093 -world.:0.2640367111746353 country.:0.23178389373806066 people.:0.19682201850485836 other.:0.1579133213924044 :0.14944405519004136 -in:0.24864188421884653 to:0.21939092777148986 and:0.1946697974032759 for:0.1868189068047458 :0.150478483801642 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4526718567912345 a:0.23924149046925472 no:0.11324902698650337 this:0.11001164112618714 :0.08482598462682028 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.45259170817509914 will:0.30455038577624227 would:0.13386483052483958 may:0.057233338046924445 :0.051759737476894385 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.3212276234486541 day:0.1865571679943897 part:0.17540911239191764 kind:0.17376886165058528 :0.14303723451445333 -an:0.9713606320061413 au:0.013052163669004791 nn:0.008357289424268872 preparations:0.004022532704472298 :0.003207382196112862 -of:0.3203570499722803 in:0.2859041634260003 and:0.1433277940300722 as:0.1318785588662083 :0.11853243370543898 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7037284210410927 very:0.22653580714878346 the:0.03922162814666863 really:0.01609483161297346 :0.01441931205048178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 -the:0.5639161682786816 a:0.3015469441466153 little:0.07149946173674147 tho:0.033146413519698575 :0.029891012318262918 -time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 -lar:0.6878269385998771 league:0.14932542202394053 red:0.09155076111452613 j:0.04013193366906186 :0.031164944592594314 -The:0.661078215485995 A:0.20570660929943044 As:0.045207710801350595 In:0.04504104433574428 :0.04296642007747977 -J.:0.3018318569418829 the:0.23795167486866062 Mr.:0.21869506159587904 W.:0.1304899788874453 :0.11103142770613206 -try:0.7710062761009558 ty,:0.10156463391596032 ty:0.09890372799448757 ties:0.017643052779371653 :0.010882309209224766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.5930025825047306 him:0.12570286347742773 them:0.11403557730502076 out:0.10465448989139238 :0.06260448682142843 -forth:0.5949136395347948 up:0.17597163718058578 out:0.1059515171058636 apart:0.07160407224288012 :0.051559133935875585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5598201398953152 of:0.2890173159277852 in:0.05349802325523019 and:0.05296683893921635 :0.04469768198245309 -possible.:0.6099245557796904 well.:0.14563920213183948 follows::0.12153987440875268 before.:0.06200345597587233 :0.06089291170384511 -the:0.8772258561612092 tho:0.03823575045329659 our:0.03489423291862016 his:0.026745988906341826 :0.02289817156053226 -fixed:0.3430311400276269 shut:0.19144944570703637 were:0.17670699831150463 are:0.15999032515717196 :0.12882209079666007 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year:0.24452618209171156 time:0.2259116450484832 week:0.19534835948835788 point:0.17461002864941666 :0.1596037847220307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.273364925445421 bill:0.19225638157369232 city,:0.18986071978519262 time:0.17714217209823907 :0.167375801097455 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4648118818245994 no:0.18847965118600196 a:0.17164102548494015 that:0.10137199445733883 :0.07369544704711971 -too:0.31467330930862664 as:0.18843103114078164 and:0.17460982611773274 of:0.1631420335215189 :0.15914379991134003 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mittee:0.3389413239665586 pany:0.1993867064203458 mission:0.1746015391846665 mand:0.1530752443921894 :0.1339951860362397 -The:0.598908566542148 This:0.12833808268698052 His:0.10774982726879542 Public:0.09577153500094598 :0.06923198850113027 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9340899242570472 and:0.027103634131823026 that:0.016269682014907267 us:0.0144791436355156 :0.008057615960706827 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4188476097346238 in:0.3678417463984908 to:0.09382461322132388 and:0.08692564670665824 :0.03256038393890317 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.29023399843446174 thing:0.23104014146189628 way:0.1955199310657497 year:0.15642575220011298 :0.12678017683777928 -plan:0.3475954638494641 men:0.23140858007949197 first:0.1508527256970035 teams:0.1430505940022208 :0.12709263637181975 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.46418634184208474 are:0.25450106527203953 was:0.14966770803812063 were:0.07487352642853921 :0.05677135841921598 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3125724848989732 no:0.23719442382354508 only:0.20390594494327577 some:0.1617120076476275 :0.08461513868657851 -he:0.49513210578097283 the:0.271687666536168 she:0.170944525983063 ho:0.034213280169226756 :0.02802242153056928 -to:0.4936417911204384 or:0.1821048940684199 weeks:0.14865979730506657 and:0.09385681912271181 :0.08173669838336331 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.3527803659853331 for:0.3317826874878852 on:0.14171946608819802 in:0.11091408129316963 :0.0628033991454141 -the:0.7628384615446826 a:0.11747728293492722 this:0.0461657866715472 tho:0.03844144976930242 :0.035077019079540514 -exceeding:0.6490681132360999 slow:0.15826270326282768 sufficient:0.06627834600960313 mere:0.06439157694366136 :0.06199926054780786 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.34035290553232056 of:0.29086327382903937 in:0.166839216956384 from:0.11813147180842952 :0.08381313187382664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -rights:0.2890095385611231 works:0.2047505095965565 power:0.20045914895625544 supply:0.15922652792355496 :0.14655427496251008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.8194144375558886 thousand:0.08088470044997044 of:0.044498141693660405 feet:0.030369405841965187 :0.024833314458515256 -the:0.7548768548043039 last:0.11725051040266611 all:0.050100574091252716 tho:0.04149445404588876 :0.03627760665588866 -the:0.313132212983186 into:0.2576647949730352 a:0.15494049916255173 in:0.1516085788618374 :0.12265391401938984 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.32497190683857685 on:0.23759402191175735 in:0.20260265788018697 by:0.12668609256342558 :0.10814532080605323 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -place:0.3329925200293868 point:0.23907457490455003 and:0.20373858977694628 points:0.13275676619517537 :0.09143754909394158 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -;:0.43844620450820443 ,:0.26048372469798176 well,:0.11177662227022686 people,:0.10961841643619345 :0.07967503208739352 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4050233384057615 a:0.2124363130278423 or:0.20872300187036955 this:0.11099154635051155 :0.06282580034551508 -own:0.6124228217140617 if:0.21221014826156517 needs:0.07582555697930174 trade:0.06338416422074965 :0.03615730882432183 -That:0.49881907290899247 All:0.2020437244080927 In:0.1522657031692263 On:0.07781334305756335 :0.06905815645612517 -S.:0.2609197898321997 Co.,:0.25992618726327826 O.:0.24518877380467088 U.:0.1329148039100378 :0.10105044518981338 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.420715710039336 .:0.18138234795533723 was:0.18060970640160184 Is:0.14910895559854515 :0.06818328000517972 -the:0.8671453996267858 a:0.07188079982992482 tho:0.03531487727504082 tbe:0.014087474334657945 :0.011571448933590621 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4780156815622097 of:0.21093752935167995 in:0.12707557640488096 into:0.09620798268388112 :0.08776322999734823 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8849657808835519 you:0.0862715977676926 us:0.011097823730421867 me:0.009334134941257899 :0.008330662677075749 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.4777683476557802 had:0.32235823715833545 was:0.11662643911919 never:0.059025968790883385 :0.024221007275810974 -1.:0.29252533577316664 last.:0.27853138061621047 5.:0.16856650474806648 4.:0.13472271629280294 :0.12565406256975345 -in:0.46637402532361516 on:0.23092856460395517 that:0.11588562365573385 to:0.10056550453526453 :0.08624628188143114 -in:0.38133720952285066 the:0.2424136252095242 that:0.18243114916164116 proposed:0.09888618336623647 :0.0949318327397475 -time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 -be:0.7866837128644234 not:0.07343838103764205 remain:0.0661979110203024 keep:0.03992576232680291 :0.03375423275082931 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4022440283931326 car:0.1970016619314406 entrance:0.1597326703028063 extended:0.12436295026744447 :0.11665868910517603 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -in:0.3553717683401607 that:0.2794409315946077 almost:0.14880788413105278 for:0.10914551537239803 :0.1072339005617809 -door,:0.21713175449218583 line:0.2165058899179903 door:0.19352777425184464 platform:0.19319341257914346 :0.17964116875883562 -mind:0.24970070692320784 opinion,:0.210725514647908 can-:0.20395163544961986 will:0.17577068280872638 :0.15985146017053783 -and:0.5786517994445712 but:0.15869699851786268 for:0.10534583291262196 leaving:0.08930786035402727 :0.0679975087709168 -until:0.3489820282111818 and:0.2996118927114153 for:0.1410198754304784 the:0.1091408716614342 :0.10124533198549032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.44230067550509006 appointed:0.312873625586435 authorized:0.119058649965787 elected:0.06488553542225695 :0.060881513520431196 -those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 -ought:0.2706718267955586 are:0.2690555738075612 want:0.19074605158428895 have:0.1783330172996319 :0.09119353051295938 -above:0.4545900780510038 most:0.1453840086883466 fact:0.13867015487205667 use:0.13597438807656143 :0.12538137031203148 -be:0.7485888936009311 have:0.0857790738024304 a:0.07973218557425953 bo:0.04950693370370551 :0.036392913318673434 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.45522613401259954 is:0.2639509651415301 was:0.1327746651623637 were:0.0854305901040813 :0.06261764557942559 -con-:0.35695935359991393 pa-:0.24707628421565694 con¬:0.16290217430531576 con­:0.11936170842202942 :0.11370047945708393 -other:0.5177599967832672 one:0.320002791226973 young:0.08094268112730277 business:0.041708509687603014 :0.03958602117485391 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -In:0.3930575122398376 On:0.16527012215681253 At:0.15373176586771395 When:0.14916901576284777 :0.1387715839727881 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.43826317578850865 he:0.19150135459496362 were:0.17214515796077984 will:0.11200814487073665 :0.08608216678501136 -ceased:0.48001252631272917 voted:0.25229494395236846 scribed:0.12717612680667864 mand:0.08551021901592343 :0.055006183912300284 -or:0.29144918561700844 between:0.22339456532619462 and:0.21321239955628293 within:0.20098557222435318 :0.07095827727616083 -ready:0.3210968550803944 responsible:0.20485525622884368 not:0.17704462254243802 used:0.16780011026781108 :0.1292031558805127 -taken:0.317643352723852 made:0.29798766242774516 put:0.14075790765428128 kept:0.12495864715908714 :0.11865243003503441 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8396933162345454 by:0.053649852855165235 that:0.05050851353467972 tho:0.03132991033289697 :0.02481840704271287 -to:0.9796493619984706 greatly:0.007119285007353044 lo:0.004821387273974781 not:0.004530796319470946 :0.003879169400730411 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -But:0.3260042005428255 If:0.24387725139215993 And:0.16674225903762893 When:0.14045099213303086 :0.12292529689435482 -mortgage:0.37222054759223683 mortgage,:0.3668598300329682 lot:0.10059747927498155 piece:0.09940761333334588 :0.06091452976646764 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -law:0.2550492170482123 bill:0.2476841831643734 party:0.17498755227968865 bill,:0.16775078981243333 :0.15452825769529213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -long:0.36937957219587636 time:0.17551359211504977 way:0.16415863232390637 speech:0.15489088994756392 :0.13605731341760358 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7342942866308225 and:0.11868115155639133 in:0.08888868614384487 from:0.039483464469103155 :0.018652411199838 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.26588307666285543 by:0.2535887871656669 on:0.2256465032485819 of:0.14539335640542134 :0.10948827651747434 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -stated:0.4160846515236065 provides:0.19534509393980837 satisfied:0.1621523124176743 true:0.11408802927342002 :0.11232991284549082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.32140260079354854 work:0.18333331102584519 it:0.17711044345666008 and:0.16368478655531252 :0.1544688581686338 -wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5370708249037944 in:0.17858769780139386 have:0.11402801146577515 to:0.08570992999777996 :0.08460353583125654 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -brought:0.30759432441888723 fallen:0.2268916980891186 it:0.16164560565355635 thrown:0.15876875863267137 :0.14509961320576642 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -piece:0.3319299210450734 black:0.18536316226477215 lot:0.17171266193189164 man:0.16914788787589605 :0.1418463668823666 -side:0.46837310084691536 line:0.2675132209226397 east:0.1093347376363238 side,:0.09099281796701927 :0.06378612262710188 -last:0.5170200040188152 final:0.17053557310281248 responsibility:0.15396335470254172 head:0.10957780651310309 :0.04890326166272757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.37239684889556807 Main:0.3094179953905809 North:0.12505441317345067 said:0.10657621021027083 :0.08655453233012943 -sale,:0.30152719840291364 them:0.20495217130615834 trust,:0.19074126290927626 us:0.15433205529467203 :0.14844731208697962 -with:0.3884054091203667 from:0.25960164872629765 between:0.1655764080207748 of:0.0972962259460409 :0.08912030818651986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5682183232957249 a:0.18975522446183618 to:0.16562996879296715 of:0.039463922973537305 :0.03693256047593446 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -said:0.7022281989150801 the:0.1641745546569556 such:0.07539544261069284 a:0.033342916605232496 :0.024858887212038872 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.33507882382312226 crop:0.2778859405398704 it:0.16249886253189302 which:0.1129525458445079 :0.11158382726060648 -some:0.3695326913160566 one:0.20011742679345793 many:0.19438428408714012 payment:0.12917183988031627 :0.106793757923029 -as:0.48577366269747857 and:0.3651525196183506 is:0.058292158219462195 be:0.053050657528894596 :0.037731001935814225 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 -say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.48254043209367536 no:0.19618359554944861 a:0.16350596572811743 any:0.09383575444508714 :0.06393425218367137 -to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 -the:0.8541307498935982 our:0.058369903078921336 tho:0.03455271743633561 its:0.030848665827762932 :0.022097963763382043 -from:0.2409364476104008 high:0.22777800482573668 trade:0.20201164484568424 grant:0.16538287587391604 :0.16389102684426218 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3250696988109646 the:0.3003647025359562 to:0.14511740967782394 on:0.12132234287979837 :0.1081258460954569 -of:0.8254661108449765 in:0.10953487250736446 and:0.030938169498543208 to:0.0185002835934326 :0.015560563555683379 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -days:0.33189518510920957 years:0.2680084809622495 months:0.1972385384011277 hours:0.10867855881749956 :0.09417923670991357 -F.:0.4053352629655686 C.:0.22331506734744658 G.:0.13964709505301168 J.:0.1262603058259151 :0.10544226880805808 -the:0.3655151203709846 high:0.18837861753855153 at:0.15030613643418286 higher:0.14921682360137528 :0.14658330205490572 -4:0.23836620788249235 to:0.22121889455696928 four:0.19910623434201283 at:0.18613175529477935 :0.15517690792374617 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37536489129764167 for:0.2243266285238123 secret:0.17733585910846145 military:0.1191847770419578 :0.1037878440281267 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.684379766079736 but:0.12978343406603712 with:0.0633596276957089 in:0.06179068514725092 :0.06068648701126693 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -personal:0.4254041375604099 the:0.3273842652685117 their:0.1100853374763539 his:0.08626170146276539 :0.05086455823195907 -that:0.32541714420148404 it:0.3054149841045845 he:0.15855468404548234 there:0.14082274857062432 :0.06979043907782471 -j:0.2772497706055892 ful:0.2134336337747079 press:0.18550924339532737 test:0.17441546326845234 :0.14939188895592312 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.2835432054716596 the:0.25010949725417686 his:0.20363854624522132 of:0.1536342959848252 :0.10907445504411711 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.8171724631071035 the:0.14238410715475974 ing:0.016414813852855488 any:0.013410905646748779 :0.010617710238532618 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.9105086396497395 rapid:0.03932383382538497 as:0.017372700724544762 other:0.016491700269863057 :0.016303125530467782 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -be-:0.7213118513256698 be­:0.19811681752083787 be¬:0.07640299451345696 b:0.0022372872996154237 :0.0019310493404199605 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up:0.24941498478907512 and:0.2359215207887829 out:0.21016516522232775 are:0.16759153693505968 :0.13690679226475444 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -says:0.33524338586404967 said:0.2254028682589326 had:0.1533608161566088 will:0.1450572386446466 :0.14093569107576243 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.30559909443186484 test:0.24574173997099716 keep:0.1920039210809548 prove:0.16227891280100523 :0.09437633171517801 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3078794050826118 when:0.2676344578429705 if:0.15224633624628595 on:0.14145666668843127 :0.1307831341397005 -large:0.2870046042289021 pine:0.21051395073724377 single:0.1904116287766876 big:0.16096686022124487 :0.1511029560359217 -to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 -for:0.34656165552344115 at:0.2691341745009541 to:0.15375834375830102 over:0.13826184194796526 :0.09228398426933847 -right.:0.29492770944451796 times.:0.29286154488822813 night.:0.20215159614262987 day.:0.1283920331904563 :0.08166711633416765 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.3804260873313774 A:0.3712476790846767 This:0.16895257395985286 gift:0.040942299104692 :0.038431360519401145 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.44839158729007156 was:0.18015285330256275 in:0.13455765140677903 is:0.12151777176836888 :0.1153801362322178 -to:0.47709324678843584 the:0.3400665064240181 from:0.06506377671496379 that:0.05947729304120767 :0.058299177031374626 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -what:0.2577224053787371 you.:0.24439561670326634 you:0.2044944553447775 how:0.14996285703136075 :0.1434246655418583 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city,:0.2781708388524493 country,:0.215553108251919 State,:0.1844325126612371 city:0.1619735488053586 :0.15986999142903582 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 -years:0.26108112011731915 months:0.19767232346556368 out:0.19232239677873397 cases:0.18882527651872189 :0.16009888311966133 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.43889695756957214 in:0.28993822116372686 on:0.1189579242798879 for:0.08563946632952693 :0.06656743065728615 -them:0.4577284306818429 war:0.16138858839222903 Minnesota,:0.14287714783450617 her:0.12401437431367282 :0.11399145877774909 -and:0.36591460389294195 in:0.21680504719386975 that:0.16464226127755344 shortly:0.14888318109983587 :0.10375490653579898 -He:0.39029043356461046 I:0.24209396405031192 They:0.1552682238160454 It:0.1332355282282776 :0.07911185034075453 -time:0.22730828165217862 city,:0.20535750998260024 State,:0.19606449932464612 act,:0.19304360980708857 :0.17822609923348656 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.47436452826244646 from:0.35588385262238037 to:0.06780195027057374 for:0.053112571812908495 :0.04883709703169081 -was:0.2381839266093997 have:0.21832098960998264 is:0.2166435347850028 had:0.21052179316459696 :0.11632975583101784 -the:0.5236027083457311 it:0.15238655018103514 to:0.11942413026957274 his:0.10587472055705201 :0.09871189064660896 -of:0.4737924262115224 for:0.2709475007195903 and:0.10003648293096341 in:0.09860707344298154 :0.05661651669494248 -He:0.4593300449754914 I:0.1739062791931282 They:0.14578564433830868 It:0.11885940352002948 :0.10211862797304215 -and:0.6597016052151035 Jefferson:0.2285811242352706 I:0.047532400475384595 he:0.03308719932527826 :0.031097670748963042 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.7238779869562242 of:0.14675697467885093 legitimate:0.055022145617855074 such:0.03960935823002753 :0.03473353451704237 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.806680486627623 it:0.06504488454450824 and:0.04535716414919985 that:0.04273304131192252 :0.04018442336674638 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 -been:0.8811100512429769 had:0.056538123580684274 already:0.03103311976912608 not:0.018787967869967864 :0.012530737537245065 -to:0.3024178992071704 will:0.24483242619012616 may:0.16884261366695014 would:0.1591246126316907 :0.12478244830406258 -It:0.32478409983563494 it:0.30768118557517643 there:0.24233415306114217 that:0.06648654151621519 :0.0587140200118313 -to:0.9891027350896957 may:0.0035502939840124995 will:0.0027240999014929057 lo:0.0023295084652684745 :0.002293362559530387 -and:0.4421830341286619 in:0.17637922329853103 for:0.12875941864748358 to:0.12730753712001858 :0.12537078680530483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.3428306508802291 will:0.22079920407089054 and:0.20065864152979487 would:0.12314490274069767 :0.11256660077838779 -The:0.6083979145125259 This:0.2595868329832751 A:0.0734158747447178 That:0.04438562614393532 :0.014213751615545882 -the:0.7961538345512716 one:0.07255753190917304 this:0.04722893532373743 an:0.04602749069003485 :0.03803220752578297 -the:0.7148752939934243 an:0.15022365429080867 this:0.07339706868965479 his:0.031467102298786374 :0.030036880727325903 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -similar:0.34983698279357894 j:0.17931552996181002 like:0.17171369818734916 the:0.15939334981916 :0.13974043923810184 -readers:0.3693274351408431 people:0.29253605728921056 country:0.19046418091066472 government:0.0810965640144414 :0.06657576264484026 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6390449437154518 any:0.21677097476497023 all:0.06580303576578764 each:0.04634724339755558 :0.0320338023562347 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.4813807508488466 one:0.18615104954318165 quarters:0.1283592147097957 years:0.10443596788423172 :0.09967301701394433 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -knew:0.31517933839619244 did:0.25212757182758205 saw:0.2213202332697951 sees:0.10882282079243114 :0.10255003571399926 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.5010938073939298 should:0.15105234034873294 could:0.14662829432614446 will:0.10572135898253886 :0.09550419894865393 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.32987175874108454 his:0.2343799087298907 our:0.19728800635349225 their:0.13266116077130327 :0.1057991654042292 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 -by:0.6182559438741791 and:0.22745805791797916 Mrs.:0.08898869258870176 Mr.:0.03710796266866791 :0.028189342950472197 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.44173082543677616 in:0.17785025753393094 to:0.14954541806095367 on:0.1237589583560503 :0.10711454061228898 -see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -letter:0.25614025702378934 mile:0.24453732906499095 distance:0.2388177775648556 free:0.1632228982651789 :0.09728173808118526 -the:0.5613961645639179 this:0.24141086162322437 next:0.06844674160178053 every:0.06747817899092622 :0.06126805322015103 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.6542367363604202 as:0.2130104066197825 much:0.055613890545498784 when:0.04291218548541628 :0.03422678098888232 -willing:0.25515105163428503 going:0.20735362161638116 not:0.20076753293046337 entitled:0.17043494968224637 :0.16629284413662407 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.6123662562211499 make:0.1287415409118293 not:0.10712252326114452 have:0.08437450903561178 :0.06739517057026446 -is:0.6844785219944199 was:0.25748940241566687 Is:0.041102768138435664 be:0.009374861211935976 :0.007554446239541411 -mind:0.31862355608570403 and:0.24880486459675127 husband:0.16805970890385916 to:0.13830016700367517 :0.12621170341001037 -it:0.5485777179455898 them:0.14016109416999184 him:0.12276473713647663 is:0.11209810608171153 :0.07639834466623023 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -not:0.2982569314982331 be:0.2718897688455929 is:0.1701069928959043 contained:0.13854130756521407 :0.12120499919505558 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7470161553800376 this:0.08933243629989689 his:0.06927613417351747 their:0.048426345808208204 :0.04594892833833977 -little:0.4226804117983705 small:0.2582966651503127 large:0.2283620403543523 single:0.05214151762268924 :0.03851936507427512 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.4471856940555742 they:0.2864491084889527 I:0.1044948829869406 she:0.08726689777835243 :0.07460341669018011 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -com-:0.28861744501083325 department:0.18326909673575612 inter-:0.18080537514043588 pay:0.18075638435976596 :0.16655169875320874 -dress:0.5524636757827649 vice:0.17897894074283258 dition:0.15701782129832603 mission:0.06863847688681993 :0.04290108528925642 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4507979316844605 can:0.16290204898479116 of:0.13703924602778123 were:0.1340687665635897 :0.11519200673937743 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.41862817387004553 or:0.1733854156912038 and:0.16533876553327645 after:0.14583675627930645 :0.09681088862616782 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -to:0.7863931101506932 by:0.17622810774720274 on:0.01768120474560251 in:0.014719640972301742 :0.004977936384199829 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.27982956643446794 the:0.27061374094386165 six:0.16312873346764453 ten:0.15814239137595457 :0.12828556777807126 -of:0.4219689996113349 away.:0.2525414318219687 there.:0.12096301360789483 well.:0.1023131639780986 :0.10221339098070285 -a:0.6171671099244961 the:0.22693459675423194 other:0.07427606505113712 their:0.04331523559754885 :0.0383069926725861 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -to:0.35501705416719925 for:0.20492698161428508 from:0.20291354917185717 in:0.16781550411138482 :0.06932691093527359 -to:0.3967817596569152 before:0.23134189372619318 upon:0.16432111478823141 soon:0.11312395607580916 :0.09443127575285114 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4416829750228396 is:0.15720220657240058 in:0.15670480212611881 such:0.13894831067883417 :0.10546170559980682 -as:0.6823365814762603 so:0.15802031320058688 too:0.06826679102331139 very:0.04950685069068899 :0.0418694636091524 -the:0.6669018886646426 this:0.17449491925387087 any:0.05782775794968469 a:0.052349154777121445 :0.04842627935468033 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.30381116575784306 a:0.276335487054247 whole:0.2309567684958625 main:0.09805135915199178 :0.09084521954005563 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6891192095809842 our:0.24155738530157048 tho:0.045694545109554174 tbe:0.01568430817966468 :0.00794455182822644 -of:0.3076001545419617 about:0.3031288662974 and:0.24455846211443627 $1:0.07855543500473221 :0.06615708204146988 -and:0.44203085168522854 with:0.23470893569035975 at:0.11241803960734217 during:0.10654679664840214 :0.10429537636866743 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.3982846521950611 get:0.19285570440678426 see:0.15092462979672722 make:0.13762015287442791 :0.12031486072699958 -na-:0.3420257675755698 elec-:0.3227602610405963 sec-:0.1924597983603342 ques-:0.10325676721883414 :0.03949740580466562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8079295266463187 our:0.06819661144015046 two:0.06462940849853369 tho:0.03813202925265178 :0.021112424162345426 -which:0.35594936538061844 the:0.243293013684276 you:0.21450043266874236 whom:0.11313787025391757 :0.0731193180124456 -green:0.5439229059323647 papers:0.13795994625990643 ;:0.1204522945777563 peace:0.1062967920244113 :0.09136806120556128 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 -army:0.306908986714605 army,:0.2093552401799441 government:0.19367141438211732 government,:0.15770183138814187 :0.1323625273351918 -people:0.2772453388601207 funeral:0.18242894609454846 result:0.18231352872428724 bill:0.18213413797425754 :0.17587804834678616 -to:0.9423987200426412 in:0.021480310655547535 all:0.013996095784264749 by:0.012071630841721323 :0.010053242675825092 -months:0.7586631752616985 years:0.09942126193496156 weeks:0.08247731478289531 days:0.031547518965051265 :0.02789072905539332 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8095983603213667 and:0.06276734523790682 in:0.04992287836159593 for:0.046920800125487806 :0.030790615953642853 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -would:0.27838783865743433 must:0.2335908917818225 should:0.18212034466359553 shall:0.1765517907930046 :0.12934913410414317 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.46678226469322387 that:0.23937477472396507 by:0.1061296023524854 upon:0.1048643403031399 :0.08284901792718566 -very:0.31734991282775526 man:0.2787080850174038 most:0.20779385013572343 more:0.13312964940894312 :0.0630185026101743 -on:0.5398234195379097 last:0.2541329132496575 and:0.1438662029847571 On:0.032271903891274795 :0.029905560336400974 -and:0.34963577359007525 of:0.2247692072472189 in:0.22134542150077532 from:0.13231699170031633 :0.07193260596161412 -long:0.9177955547148327 some:0.02286983719235276 that:0.022763546795425887 hard:0.020248560212812346 :0.016322501084576415 -right:0.32570524994821026 subject:0.25450752678665106 way:0.1630479896136901 time:0.12847798764276902 :0.1282612460086796 -that:0.43194516597733723 which:0.171468313876108 and:0.17139521040640232 when:0.12115129399512571 :0.1040400157450266 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.3604390011521138 their:0.2719211867823639 the:0.15608241028119108 been:0.11897398823798697 :0.0925834135463443 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -men:0.600183010537192 children:0.12154747210483548 years:0.10853164902228003 houses:0.08789175847790959 :0.08184610985778298 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -he:0.3690632240258226 they:0.2979326823560751 we:0.18839229448742703 I:0.07944276038085882 :0.06516903874981635 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2830259028783202 said:0.22214319047199943 Jersey:0.2133497014862358 Pennsylvania:0.17700083268571543 :0.10448037247772919 -the:0.7942089973766258 an:0.09620216709342341 his:0.045719945323770016 tho:0.039190301166861924 :0.024678589039318775 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8681351720286505 in:0.0712087843140318 ot:0.02776863951695661 ol:0.02212244913290932 :0.010764955007451789 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -home:0.23313203653119388 taxation:0.2247886371379031 success:0.20913973423230964 time:0.17121990326335784 :0.16171968883523544 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.35915517270467295 of:0.27617951582180245 that:0.1878039330766362 as:0.10832644576462883 :0.06853493263225968 -few:0.790799680718384 two:0.061656888916446564 one:0.051859741694763116 five:0.04879398443813169 :0.04688970423227467 -the:0.7950123154747399 this:0.10796235737670391 a:0.04921234151180027 tho:0.03426050605033126 :0.013552479586424459 -in:0.49941743760780455 of:0.23479745720933168 In:0.1458222690405727 and:0.07617976676143633 :0.043783069380854744 -has:0.30867661736453283 are:0.2841188454810675 had:0.17618425380453526 have:0.1695056241704326 :0.061514659179431885 -people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 -one:0.3377750500244458 the:0.2020251601908389 by:0.1857257910165216 that:0.1528713332852759 :0.1216026654829178 -sell:0.2789031811854642 one:0.21012209263887743 whether:0.17818014786755743 make:0.17529727722933416 :0.15749730107876678 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -great:0.2521214791881242 few:0.20826900493723902 general:0.20515470467419947 good:0.1703662841856413 :0.16408852701479598 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.3159065418514061 and:0.3006311596830908 that:0.13841080627801783 when:0.12409454753142625 :0.12095694465605901 -any:0.2707162318558559 the:0.22611886865558528 a:0.2252033704701783 this:0.2062629766192953 :0.07169855239908525 -and:0.8533948182852643 years:0.05344167201135389 are:0.03367144243662373 were:0.03061137415642594 :0.028880693110332027 -time:0.32966399264046614 way:0.20625510730842453 best:0.19671556450530375 said:0.1415754802767744 :0.12578985526903122 -taken:0.36109347040665185 come:0.19660939518540227 made:0.17639900343595585 picked:0.1437022773329085 :0.12219585363908152 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.40785917986697134 the:0.28853883237842104 this:0.18147920682172106 Lake:0.07781585254243581 :0.04430692839045105 -der:0.627111152377035 til:0.34315996418721895 known,:0.011768398074837339 less:0.009097382916741673 :0.008863102444167222 -is:0.6323329355908928 the:0.15534831553495954 Is:0.0870643855939726 ever:0.07493539026746049 :0.050318973012714596 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.31014865362778976 of:0.29634344457061784 in:0.15426244923110896 by:0.1537658550668828 :0.08547959750360062 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3690637661277975 the:0.23911882787897407 in:0.23053126320222586 no:0.08157806643351823 :0.0797080763574845 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -property:0.4801815059266159 horse:0.20309549054440904 hands:0.12256986960349282 horses:0.10079512173265506 :0.09335801219282705 -that:0.9544564646694316 as:0.01790650874803629 above,:0.01176627028898892 in:0.009020839417187912 :0.006849916876355156 -others.:0.27665244441116255 water.:0.239509453206523 wife.:0.23052297716070433 it:0.14084810653326998 :0.11246701868834014 -by:0.27931580700455927 in:0.271842388907853 of:0.18459363326587933 to:0.17738299184261547 :0.08686517897909286 -as:0.259935691746607 is:0.22022128443439368 of:0.18556067141486962 was:0.16751994779356907 :0.16676240461056066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way:0.26256603694744957 own.:0.21756945259285623 time:0.17772217861276138 hands.:0.1754669520508731 :0.16667537979605992 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5439092097384569 that:0.15991789036342824 over:0.15503837557295697 in:0.09341063443498619 :0.04772388989017147 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.36385773209115574 of:0.22456377925971574 in:0.15961776130102448 ut:0.12845508388009697 :0.12350564346800703 -ceived:0.7111650388252285 quired:0.10355816136734979 duced:0.0726373939723279 form:0.057402239229121604 :0.05523716660597208 -which:0.3710595560155367 and:0.27108264997088405 but:0.17513092144337364 when:0.10682654131743471 :0.07590033125277094 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -New:0.9929909030634123 Now:0.004547618028067338 new:0.001029229763626775 South:0.0007787708970185721 :0.0006534782478749187 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.36080905261796875 get:0.21572081582449512 the:0.19245800982018244 come:0.1390059287436487 :0.092006192993705 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 -way:0.34212704084197454 necessary:0.19995134463355824 thing:0.1771505284272098 one:0.15710832647964076 :0.12366275961761668 -@:0.4746373911447295 at:0.16889376833154082 .:0.14198207334144972 and:0.10983740214813478 :0.10464936503414517 -First:0.3201989763309226 Fourth:0.24535675845099278 Third:0.15714901519496793 Second:0.14849963570178126 :0.12879561432133538 -over:0.2975677496060477 to:0.26511401928125955 into:0.2011410397604788 on:0.1362555669088669 :0.09992162444334694 -time:0.2983924542466915 ":0.21281313955068412 country.:0.18341338226849652 last:0.15313439756842848 :0.15224662636569944 -woman:0.40244374880215844 woman,:0.3149407875727293 Mr.:0.19659702036752266 however,:0.04900936038789647 :0.037009082869692914 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8880002583342741 tho:0.04272304503864015 our:0.028825671711379498 an:0.023528171929326637 :0.016922852986379598 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.35096210603241507 they:0.26732894377813043 it:0.20226824765162676 we:0.09213658236123283 :0.08730412017659483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.7161263558862053 or:0.11060325865937586 interested:0.06486150044266481 particularly:0.061397598495206984 :0.04701128651654703 -thought:0.32329536379595286 did:0.22790301015028594 had:0.20333792840868226 could:0.1261276802995124 :0.11933601734556662 -number:0.35208990854993516 part:0.21928828919674237 member:0.17736196365867013 portion:0.13253161499696547 :0.11872822359768706 -American:0.42902152397438315 whole:0.27493048640317086 young:0.10850298016370712 colored:0.10693133720200369 :0.0806136722567352 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.4208536376287847 door:0.33958351646911955 line:0.08986650844955207 and:0.07708376315771355 :0.0726125742948303 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.2594274482107354 the:0.2240554250296065 every:0.2142785983720492 that:0.15480448886433426 :0.14743403952327452 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.25277025583393287 period:0.21098599328048945 line:0.18792411766422568 list:0.1814930331873122 :0.16682660003403987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.7275771243872489 In:0.12383577243509256 on:0.10599318707101218 within:0.021717987333150633 :0.02087592877349574 -first:0.23333153493800335 work:0.22313594995341368 time:0.19580433822334709 bill:0.17691861218589439 :0.17080956469934155 -the:0.7770997165853794 this:0.16695130695412497 tho:0.02444488018199495 our:0.0233909068917048 :0.008113189386795784 -of:0.930176268826511 to:0.021525050211288668 ot:0.01710915504454046 and:0.01584290861645429 :0.015346617301205569 -be:0.8448664814866796 have:0.06518043816529201 bo:0.0645718451733313 easily:0.015036735449484138 :0.010344499725212808 -fort:0.9023844795208578 feet:0.08819951134776836 feet,:0.004206140827251062 face:0.0034376643126926543 :0.001772203991430224 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.35815164565794383 it:0.2816022276921985 they:0.1524697744189323 she:0.1291455926209568 :0.0786307596099687 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.47778468984403427 and:0.21943400801247065 section:0.11829360113063135 township:0.09321789412560061 :0.09126980688726304 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.3225148992087138 have:0.2881374041132473 take:0.1694146134131783 pay:0.12041629960737624 :0.09951678365748434 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7660884837442786 an:0.11830620397699325 his:0.0550037620933306 tho:0.03101774187209254 :0.029583808313305027 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.30704978239311403 it:0.25161728489132673 he:0.23007606134778166 there:0.12750160756287154 :0.08375526380490604 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -the:0.7259538683228355 a:0.1789122878967126 said:0.05510174768344206 tho:0.024646319368010212 :0.015385776728999559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.38558555367611724 him:0.23087118641368554 the:0.1381569531158991 it:0.12809551405506675 :0.11729079273923118 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -The:0.7396435720554078 A:0.09707497234945152 This:0.09276072278459284 the:0.04657912762300908 :0.023941605187538836 -find:0.24052805749408546 be:0.212947685883528 show:0.20525460156250697 say:0.1968911662329019 :0.14437848882697768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -north:0.21356441425188846 same:0.2076575944729774 only:0.20720368184686808 south:0.20167922950265135 :0.16989507992561467 -and:0.46403946969354576 Mr.:0.23450346483047177 the:0.11196474192747169 Dr.:0.09828892908966945 :0.09120339445884125 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mining:0.37977932007478993 the:0.21164378398059916 he:0.17202004699331772 their:0.12588291159712117 :0.11067393735417197 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4271954709662433 and:0.2847589128314134 in:0.14824710821902318 at:0.08588061399305509 :0.05391789399026506 -so:0.40088062608467495 how:0.15920387449882384 the:0.15460638598438162 in:0.14465351953726924 :0.1406555938948503 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.28092109184577946 day:0.2779536374172674 time:0.19134610663388263 class:0.13195047524192088 :0.11782868886114961 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.31915989161095953 in:0.22764939329618852 as:0.1762934707424486 to:0.16636881042173066 :0.11052843392867273 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.4311874681553715 may:0.20171570997978597 would:0.15599469524284743 shall:0.12314748397336106 :0.0879546426486341 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.48802077630352975 which:0.2177135722865635 having:0.10524448013578484 course,:0.09877742223112841 :0.09024374904299352 -of:0.29429515696927255 ceived:0.24108681259069437 in:0.19886756817761778 to:0.15697929829033955 :0.1087711639720756 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -finally:0.3578730965020545 not:0.3153016850873408 soon:0.12034975359025547 never:0.1095648275131224 :0.09691063730722671 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -But:0.6101646691495285 And:0.24319952985253623 This:0.06116636034024915 It:0.048580561615300014 :0.036888879042386 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.41548860639733753 that:0.2127326657918231 good.:0.1839280273086548 them.:0.10018702968043185 :0.08766367082175261 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -amount:0.2662692671636648 country:0.2197624766034563 world:0.1785491906011432 work:0.17077520196742044 :0.16464386366431538 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.22917578371917904 as:0.21113878861761545 went:0.20762908891088971 delivered:0.1986088026299503 :0.15344753612236559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -nothing:0.6978930692746044 anything:0.11818509083533987 something:0.07749016617081461 a:0.06265115226282007 :0.043780521456421154 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.31567675277058016 man:0.2052496829979448 men:0.1713678799908639 work:0.16794510069278754 :0.13976058354782356 -or:0.4144178532425718 of:0.31597368991564667 hundred:0.10979323703820713 thing:0.08974589218758706 :0.07006932761598733 -by:0.5869952677119109 the:0.24330699121803145 express:0.10552041843975295 to:0.04903253334403447 :0.015144789286270163 -that:0.6477550336207094 of:0.14095654037981262 but:0.09089799533493571 in:0.0780039739695611 :0.042386456694981284 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -addition:0.45117525212813114 order:0.2836174243931283 regard:0.18388502857632036 reply:0.04106111744362021 :0.04026117745880002 -a:0.5160648775786237 the:0.24721923202755167 their:0.108712114260599 his:0.08624706885619093 :0.041756707277034635 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.546548626178719 their:0.1707393036049362 his:0.1160723929222134 two:0.08583924169910842 :0.08080043559502306 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3872872406276764 the:0.25965681856413325 it:0.17869788035951198 they:0.08935155397827056 :0.08500650647040779 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.3600485604499394 one:0.34027443210110386 killed:0.10866528857299437 on:0.10172669486861682 :0.08928502400734578 -that:0.3873773136937177 to:0.3378967123737225 thereto:0.1262307531239078 largely:0.08234307946637731 :0.06615214134227464 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fault:0.41447709130642435 voted:0.2748896196682557 scribed:0.11798455064669308 Cuba:0.10140804725455073 :0.09124069112407604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4647916236694661 in:0.19374264666183239 but:0.1395320165172028 when:0.11392587970047469 :0.08800783345102402 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -costs:0.39163534554654983 activity:0.18092613216592124 demand:0.15791931649693172 production:0.14515423507739345 :0.12436497071320377 -the:0.8555785686910101 their:0.05001588354410009 our:0.038455733002707375 tho:0.029973666913140982 :0.025976147849041453 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.28680472542009455 the:0.24142890097744624 Rev.:0.2096003311331078 that:0.19454594052737884 :0.06762010194197259 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.33268533852543214 ir:0.30101758171474857 y:0.14590222164859198 box:0.12087030958048844 :0.09952454853073893 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5672636725006927 any:0.20912937836683299 every:0.1222353406059048 some:0.06520738567587397 :0.03616422285069559 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -eyes:0.3138104779961678 services:0.19837155763542919 wife:0.18954261236463132 friends:0.16867320467277924 :0.12960214733099243 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.4526417523936129 good:0.21380336354262552 the:0.1480337432486028 perfect:0.10100799777119275 :0.0845131430439661 -of:0.639255398883875 and:0.16555302033360464 are:0.07002494440275199 in:0.06637306941353473 :0.05879356696623372 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.3391290146937289 the:0.31816394106563506 President:0.22524020527298683 Colonel:0.09002172439336306 :0.02744511457428616 -well.:0.48828920970100437 good.:0.23507758704800163 old.:0.1708080413934155 much:0.05704652005602676 :0.04877864180155169 -small:0.488481356183922 large:0.13161754551333046 good:0.1299471234490841 sudden:0.1258370607677404 :0.12411691408592303 -and:0.5045378400559439 was:0.18821236617692913 is:0.18625443328099103 always:0.06420194626848068 :0.05679341421765529 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.36167462997378513 have:0.24512686791819055 were:0.19272262079081176 had:0.12213282707286675 :0.0783430542443457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.8190970181320623 possibly:0.047289266773906366 hardly:0.04638397892006206 never:0.04401427758291523 :0.04321545859105398 -known:0.4447886996926174 as:0.34380612624222956 dressed:0.11318328223055864 and:0.05296811045122756 :0.045253781383366797 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.669163230069696 a:0.14090664248678716 his:0.07360187284114518 its:0.059632348808587844 :0.05669590579378375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.42240895688642793 with:0.1616060980521413 every:0.1523216585039801 of:0.1410096191581715 :0.12265366739927916 -born:0.2791222590679705 made:0.20847557865280278 found:0.19957373610466836 held:0.17380270864971717 :0.13902571752484116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -danger:0.32732899749304395 courage:0.3049951534241225 son:0.13002686627257368 right:0.12602951259085168 :0.11161947021940813 -that:0.9601654399210661 which:0.015020592746731705 thnt:0.012838499356416292 tbat:0.006043475672230368 :0.0059319923035556455 -amounted:0.2588604840775276 is:0.24169292618513413 able:0.239300318268135 ought:0.13602198633868406 :0.12412428513051924 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -of:0.4402986510292945 in:0.23948918467251906 by:0.1743425303564942 to:0.08546039348607902 :0.0604092404556132 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.5432224938228664 it:0.20549070221055443 she:0.13499245504023247 there:0.07687270333584406 :0.0394216455905027 -cent:0.5433192780457132 cent,:0.2849524494048981 acre:0.07553968816306565 acre,:0.056498248250948076 :0.03969033613537484 -dear:0.3584296103574732 an:0.24222522786254702 the:0.2019861859471496 good:0.10255529575392441 :0.09480368007890573 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.34935844722640685 based:0.1980949535718719 and:0.17021421017169708 made:0.16701201565932852 :0.11532037337069577 -and:0.4579683528729015 so:0.2473753878093173 as:0.14795967123594655 but:0.07911930357170344 :0.0675772845101312 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.5688691995997147 State:0.11622412912140526 court:0.11360395807372128 Board:0.10643338582183512 :0.09486932738332357 -done.:0.3595045532875417 made.:0.3351834662592732 used.:0.15099459983471136 so.:0.08228405791884845 :0.07203332269962533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4203348917929265 been:0.3371599399720088 in:0.10272864670502378 all:0.08265988272952915 :0.05711663880051194 -did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 -in:0.3414783076631058 of:0.2811535149464247 and:0.2036155415852208 last:0.0994106573236452 :0.07434197848160341 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.39259448562684607 and:0.3338134447130968 or:0.17263123449454845 however,:0.05808395205424334 :0.042876883111265196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8745552150885637 this:0.051637188414458746 tho:0.030649276837279138 a:0.022362558075969236 :0.020795761583729262 -bill:0.3130192209026884 result:0.207745711953939 bride:0.1790661194044228 man:0.1504124945085327 :0.14975645323041717 -the:0.7559049446360045 this:0.12450718353307108 that:0.05012889322854839 a:0.040844584861910414 :0.0286143937404655 -a:0.5387868653774766 the:0.21678495821206697 of:0.15481774175184923 and:0.05475397459691357 :0.03485646006169363 -the:0.7800238478547973 a:0.13126616919654255 this:0.034475463843325144 complete:0.029595896519629676 :0.024638622585705282 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -strictly:0.3652737970681104 The:0.1952688697606444 a:0.15479031873212953 or:0.14716598488938243 :0.13750102954973326 -make:0.2806802102732218 do:0.22304136220252757 take:0.22266513946270058 of:0.1568509671714885 :0.11676232089006154 -Long:0.33781648054041147 Young:0.3271450336851469 I:0.16123448671036375 had:0.11100474428039507 :0.06279925478368283 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -8,:0.5384606284332261 8:0.2063821483204047 township:0.11038859758365796 block:0.07914809615072071 :0.06562052951199067 -hard:0.5729780077883858 slow:0.1825555655050471 to:0.11500533553828317 than:0.07888326130334014 :0.050577829864943864 -of:0.9239439247591216 from:0.029060927030739418 ot:0.02626865634789293 that:0.011699822598323386 :0.009026669263922713 -all:0.5372553141014668 went:0.14947982388886316 turned:0.13615469868191765 it:0.09834377868219196 :0.07876638464556045 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -con:0.2605471759492543 com:0.2427620274902293 re:0.20454855386311607 pro:0.1463396349729638 :0.14580260772443665 -to:0.8872868980724133 would:0.04773946996316585 will:0.03858548192536854 they:0.015337446054291293 :0.01105070398476096 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -dollars:0.24807875783260766 ten:0.24456113467699467 six:0.19874383274995844 the:0.15771210253068021 :0.15090417220975896 -east:0.54192778772095 west:0.3289558715967639 and:0.05937124116590051 East:0.04684596257653883 :0.022899136939846645 -hundred:0.9757941172136148 per:0.013835940228528644 teen:0.005395018840565925 five:0.0029546572522540096 :0.0020202664650367207 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -Mr.:0.3469301874896487 the:0.3215782077949857 said:0.21458094710962397 Mrs.:0.07359307982566018 :0.04331757778008142 -!:0.299346637381734 paper:0.28112973282735926 prayer:0.14045670148475461 says::0.14002898138184955 :0.13903794692430255 -six:0.26147641627409246 two:0.2053290574372677 four:0.1912442373917171 three:0.19062161628454904 :0.15132867261237376 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.5212847390129304 out:0.15294187241192392 composed:0.1327814462586652 made:0.11838493255350334 :0.07460700976297718 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -money:0.5081846204561211 them:0.13760274404447645 up:0.13671535738524845 funds:0.12230408773494539 :0.09519319037920843 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5438333315800146 his:0.22417386900518194 their:0.12347922408586305 our:0.0626341956761404 :0.045879379652800076 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.21785297167577372 he:0.2169574859986235 I:0.21133393198481698 there:0.19945122449926947 :0.1544043858415165 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7797344754095714 those:0.10796030010889249 its:0.0437838733634992 tho:0.039219113857205286 :0.029302237260831705 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -purpose:0.20719197122450905 State:0.20592744932833862 day:0.19613414923494918 people:0.19556251276437905 :0.19518391744782418 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -little:0.27960233713924465 hands,:0.21283003264381584 own,:0.20478819677124624 heads:0.16264291613699777 :0.14013651730869542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.46165561570061503 they:0.22259237521197597 soon:0.12534293039924846 may:0.1201308324509084 :0.07027824623725214 -spite:0.25937599619441193 favor:0.24856633178795834 view:0.18836076534936974 one:0.15714766874062056 :0.14654923792763935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.4210591363932454 that:0.1911666436118778 which:0.1600370211918627 and:0.11672228855150803 :0.11101491025150613 -and:0.5303890582097475 or:0.14536737606998745 matters:0.1328763671829937 condition,:0.12366732482955331 :0.06769987370771813 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up,:0.29776090099080876 self:0.24783023772295332 came:0.1663776579489912 it:0.14900146242987486 :0.13902974090737188 -and:0.5046136865495877 to:0.15673655104597012 in:0.15458438340398312 on:0.11505529821246993 :0.06901008078798908 -way:0.28124888579286567 back:0.22986057283811506 coming:0.1753029458753974 same:0.17170800196620306 :0.14187959352741877 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.24335648632809345 them,:0.22859449796018552 them:0.21031036888836724 land:0.1634742371934418 :0.15426440962991192 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.8851052501843443 months:0.07075355161926064 year:0.015234906381215706 weeks:0.015150737899518568 :0.013755553915660959 -a:0.633470234878558 to:0.15392664156641994 the:0.14263887170125863 may:0.04549085437343472 :0.024473397480328625 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8735784797508618 tho:0.0659292933120426 his:0.03027731975756196 their:0.015739644227057165 :0.014475262952476718 -good:0.5569687244572511 little:0.14975777966967252 very:0.10622920923497856 great:0.10468681286265966 :0.08235747377543817 -wife:0.3569221489717507 father:0.22857873359589856 wife,:0.19546441698666933 life:0.11723956735982981 :0.10179513308585146 -two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7844353725315011 a:0.06334662887462861 their:0.0583690304549873 his:0.057660594584796984 :0.03618837355408591 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.7951328941787296 about:0.07333077985321648 of:0.04985943399795464 after:0.04783596122761532 :0.03384093074248403 -De:0.28130470639665467 the:0.2580167915581302 turned:0.19329049115440672 .:0.17192601465709403 :0.09546199623371446 -to:0.4439130350833303 a:0.220756627287455 easily:0.14066533945362208 would:0.10515684196998273 :0.08950815620560983 -same:0.2935278292913103 country:0.22080209841519935 people:0.17171950052431817 world:0.16721745287663906 :0.1467331188925329 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years,:0.34609881941467635 or:0.24651870106854287 years:0.20611428105260357 hours,:0.1176972686254373 :0.08357092983873994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -in:0.3874534483747249 to:0.19879621566410682 on:0.17440802911663345 at:0.15220287747568603 :0.08713942936884883 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.38456224945123907 is:0.19610388702897114 of:0.16660169873734637 was:0.13586541230951585 :0.11686675247292769 -this:0.2673790075723193 the:0.23913592670253167 an:0.1868061640187922 most:0.1677833144850935 :0.13889558722126336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.47632707298325605 away.:0.29255416447081195 from:0.1118364149979445 off.:0.07003674299604486 :0.04924560455194265 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.3335813397721137 in:0.18910714128048944 day,:0.1652063271474253 to:0.15842708680565806 :0.15367810499431347 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 -the:0.7970721737598354 this:0.0912894663595471 which:0.048054054226533596 that:0.03667538810277539 :0.0269089175513085 -the:0.6447579128905973 a:0.262823075373254 their:0.03436275905720854 tho:0.03300706269993356 :0.025049189979006615 -the:0.3440270405574617 all:0.29718243600730293 to:0.1701064836387148 and:0.09790459931739261 :0.09077944047912807 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6435170137795153 never:0.13701617351193376 probably:0.0950480329999832 ever:0.07576793634864694 :0.04865084335992091 -primary:0.9275326171796828 the:0.03649437720712617 annual:0.027241489698357563 an:0.004499072026087964 :0.004232443888745559 -of:0.4860578577807202 to:0.14716363427752882 that:0.14054142052057028 in:0.1344897430274412 :0.09174734439373938 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -work:0.26243221478401885 name:0.20498239200942472 action:0.18909506593088465 way:0.1824621429042351 :0.1610281843714367 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.9295343348405692 bo:0.04051886402428783 have:0.014652968660167149 he:0.011027882687422299 :0.004265949787553628 -was:0.6809599675314586 is:0.14400605767736335 road:0.06307815006107852 steps:0.05714820478773993 :0.05480761994235973 -much:0.2671333698183584 no:0.22705393131215398 be:0.2157563008859743 not:0.16662633690414685 :0.12343006107936651 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -old:0.22730943270693013 new:0.21485563133906532 solid:0.19678393987701032 greatest:0.18823736168553248 :0.1728136343914617 -and:0.36568615966380424 employed:0.2037224746361292 was:0.18152202615315383 officer:0.14261127293355358 :0.10645806661335913 -to:0.3034415178255685 of:0.22715732891480034 can:0.21879147112862748 in:0.14484126834061387 :0.10576841379038987 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.36116429189647836 in:0.19222718335719152 to:0.18480426666810834 as:0.13324811211622656 :0.12855614596199513 -an:0.7366975388717764 the:0.10069736362106202 ample:0.09082455325115045 no:0.038784890585020756 :0.03299565367099047 -was:0.4213957096478734 and:0.22343590100459695 is:0.1629555187213358 be:0.10562977509944085 :0.08658309552675302 -work:0.272643924610897 friends:0.26613010593887104 opinion:0.17967238697371757 lives:0.14427873799009353 :0.13727484448642094 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -charged:0.2512996352109228 covered:0.23101454300042823 connected:0.2121225109797124 filled:0.2047917280668185 :0.10077158274211816 -is:0.4317109564267614 are:0.22067932389966047 was:0.143331377354553 does:0.11104147891047116 :0.09323686340855394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3021282096895856 steamer:0.24736712300015634 government.:0.21262626466948442 ship:0.12784544304182363 :0.11003295959895006 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8249053555574554 add:0.05233667440530701 bo:0.04895969367453551 not:0.04213288712623596 :0.03166538923646624 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.37293767728857213 find:0.2066000981953925 see:0.16670293740054568 give:0.15585885339160482 :0.09790043372388488 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.46362634460765656 was:0.21678471601460741 that:0.1142431184991635 has:0.10586928482936012 :0.09947653604921244 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7402073530983121 our:0.09751048500683773 these:0.08256289857884755 he:0.05269683272984352 :0.027022430586159246 -that:0.31217221812033263 in:0.2674446517771789 with:0.14761935616281102 at:0.14393860209577636 :0.12882517184390124 -The:0.9365093210650632 Tho:0.03267490034936835 Tbe:0.022731720311081338 Sunday:0.004784549974271303 :0.0032995083002158297 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9151293621788904 any:0.03723389372639334 no:0.02028040963354052 this:0.014317103654171711 :0.013039230807003985 -date,:0.3268685187372485 it:0.21437835499714536 all,:0.18563410293800628 him:0.16528295856531944 :0.10783606476228044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -along:0.4106308369118688 with:0.2669748619374524 in:0.11964937289346426 to:0.11016220309825438 :0.09258272515896016 -and:0.2627128708593829 on:0.24220093643076918 in:0.20401019085810282 at:0.1771615910732133 :0.11391441077853189 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.8908931356003534 of:0.04508578710223039 or:0.02533414379319094 on:0.02314986621837228 :0.015537067285852996 -A.:0.27924514875089407 W.:0.21902242966336255 J.:0.215534298590649 M.:0.14960790356246953 :0.13659021943262492 -C.:0.3564315708586905 G.:0.18370789836979895 W.:0.1652005943634461 J.:0.16428729588489865 :0.1303726405231658 -the:0.6789150138818533 a:0.1583557399360765 our:0.10812585945203965 tho:0.03370271835455623 :0.0209006683754742 -persons:0.28602365967722176 that:0.2393881104805356 interested:0.16822761757981586 times:0.16441630860446338 :0.14194430365796337 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5272559403442969 and:0.29639990507029285 with:0.09770898410268394 An:0.04238342955543394 :0.036251740927292206 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3142559086876891 any:0.27753924140881475 every:0.2106493590972288 some:0.11551507788719186 :0.08204041291907542 -able:0.3592632806057296 allowed:0.20418202455383563 used:0.1484971377437692 necessary:0.14775269065638058 :0.1403048664402851 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.4466786291758313 present:0.15571616299493782 time:0.14760864568358734 form:0.14400996960956275 :0.10598659253608061 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 -necessary:0.25931622031166096 ready:0.20610421314042437 possible:0.20110341172972038 bids:0.1811273759145347 :0.15234877890365964 -that:0.23795482088240447 and:0.2340174999936713 one:0.23060197251796813 limit:0.15549725161557276 :0.1419284549903833 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.5134116802803824 King:0.2504692177999406 Mr.:0.09375436948534346 Prince:0.0866987615626479 :0.05566597087168572 -the:0.5665927641274823 about:0.1867177982283468 a:0.10708786411738315 every:0.0735786229693728 :0.0660229505574151 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.34981863397573815 a:0.27238739612280927 to:0.14849105380492447 this:0.13408836729978954 :0.09521454879673866 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.2715866198719692 As:0.2216613766041548 is:0.1986716426594113 and:0.1671356741124771 :0.14094468675198765 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Gold:0.39034105246064177 Tom:0.27903987622045306 Mr.:0.16001894053752133 Joe:0.09412421008628073 :0.07647592069510312 -would:0.4419782475063943 will:0.3091270683107506 can:0.10101748328249009 could:0.07409262498680025 :0.07378457591356463 -it:0.41827966359254964 one:0.17919135218275806 Mr.:0.1498450113413683 there:0.13106869970348767 :0.12161527317983611 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.41405401051618107 three:0.2079415357090614 four:0.1816978376638786 five:0.1075827879109516 :0.08872382819992722 -the:0.8501983392446171 his:0.056303620878828654 tho:0.033454450206802586 keep:0.03234550634287053 :0.027698083326881274 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States:0.9926596826417137 States,:0.0053123008354880605 State:0.001014582005734679 district:0.0005826281135466213 :0.0004308064035170354 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -about:0.47702921625519373 and:0.2207458658427862 containing:0.17949124575542913 over:0.07129310276649026 :0.05144056938010069 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5186873675969768 a:0.17987098101253138 by:0.1218240672984579 at:0.09162751439967391 :0.08799006969236006 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7162897065424283 along:0.10697349126031337 from:0.08839645168858384 to:0.05534710714597227 :0.03299324336270213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.650368602020232 exceeding:0.17048158202333683 be:0.08889579336770809 exceed:0.05244874443828801 :0.037805278150435 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.40659642308314364 of:0.36736853787921947 that:0.0887140261460807 on:0.07079034168562036 :0.06653067120593592 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Some:0.37515469970815746 One:0.23873653499498604 Most:0.1696014589781311 All:0.1241430189635748 :0.09236428735515058 -the:0.7196806068040005 their:0.08684155818628836 all:0.08494980756720391 these:0.07184579409084513 :0.036682233351662104 -way:0.34212704084197454 necessary:0.19995134463355824 thing:0.1771505284272098 one:0.15710832647964076 :0.12366275961761668 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.703654888077665 in:0.10178769064301207 to:0.0956703691832007 on:0.049562377586779685 :0.049324674509342546 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.24634352760202752 born:0.24025647251395602 dated:0.221083422732512 in:0.2030366209814277 :0.08927995617007665 -possession:0.24934089490618588 head:0.2229970747130314 name:0.19757809656835887 proud:0.1651067942976489 :0.16497713951477497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.5340216431228111 men:0.13854308742444435 I:0.12562795294032067 country:0.10898129682762674 :0.09282601968479713 -into:0.32401410082501686 on:0.2567460347412252 from:0.1709386631397564 in:0.14940416819318025 :0.09889703310082122 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.34123386168573483 tended:0.1818055676314314 terest:0.16910750712574027 duced:0.15690198264601002 :0.15095108091108347 -had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -year,:0.24519854055243612 claim:0.22812092683001128 bond:0.17765620093739168 furnish:0.17546381695035826 :0.17356051472980266 -der:0.5816856856951357 the:0.20200979758488835 usual:0.10291321058305043 ¬:0.060022232186047554 :0.05336907395087786 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -notice:0.7345173060034909 sale:0.15009365016833948 record:0.040836326984742224 service:0.03813951952821836 :0.03641319731520913 -the:0.49467357174155646 a:0.25219787468071253 no:0.1289382030545447 even:0.06249673579970307 :0.06169361472348327 -take:0.2757694441752828 this:0.19337833596809348 the:0.1928061636462718 its:0.1884151681721608 :0.14963088803819108 -of:0.6002650613305852 that:0.3192095929399396 in:0.042626712742168865 is:0.01964176337750474 :0.018256869609801676 -which:0.395559094690584 that:0.340979525530136 what:0.10194376202285553 whence:0.08442839730635626 :0.07708922045006823 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Said:0.5271359308067257 A:0.20265604026085665 All:0.10442692822812556 The:0.09706245432519052 :0.06871864637910167 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -published:0.24282578822983217 is:0.22649977848176978 and:0.2159544516469289 kept:0.17701734573024624 :0.1377026359112229 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -debt:0.5666344804453574 and:0.27314740826416656 will:0.05934915742987421 bonds,:0.055193657200545074 :0.045675296660056645 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -desire:0.39669949854602615 effort:0.20701379666679331 enough:0.14900655473326932 endeavor:0.14168322983784715 :0.10559692021606405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -National:0.9878355802986762 State:0.010655537809905236 Ward:0.0008446343923203083 the:0.00041272563629392875 :0.000251521862804173 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -think:0.2862033024477591 yet:0.20917107377509456 known.:0.2041327938691424 make:0.15581931625678977 :0.14467351365121417 -it,:0.430092226986272 him:0.20806782062805212 them:0.19338799718357677 any:0.09283744104601706 :0.07561451415608217 -that:0.4935048273151913 of:0.2835806059046921 to:0.11199642606114175 in:0.08290581188169388 :0.028012328837280994 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.5679288700342078 so,:0.14437590399432199 it,:0.11308190161102913 not:0.09244919422495419 :0.08216413013548707 -fair:0.30319023406105045 low:0.21170738566138 rough:0.17307579228995423 careful:0.170360590686318 :0.14166599730129745 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -District:0.23452632221947214 sum:0.23145625031291558 part:0.18341136673546907 Secretary:0.17637545725864193 :0.17423060347350142 -interests:0.5407253379974847 part:0.15839372288497572 method:0.10647533058676745 way:0.09838637812762033 :0.09601923040315168 -is:0.5807890936789079 was:0.21006058120304183 are:0.09204524663349903 Is:0.0696594134221988 :0.04744566506235239 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7681054914625095 not:0.12978545344313522 bo:0.05699753147409612 hardly:0.02780076476332631 :0.017310758856932694 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -opportunity:0.28890486657815 order:0.2249940295307912 attempt:0.21037774289510267 effort:0.1777913698834426 :0.09793199111251345 -scribed:0.6934440477860147 crease:0.1567437093588171 voted:0.05726909616467996 mand:0.054396460147122565 :0.03814668654336574 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -country:0.22490094227516813 time:0.22217724088881652 city:0.2192616749754143 fact:0.21920962490012869 :0.11445051696047236 -the:0.43767194054926134 a:0.25755612965326036 his:0.13123488632236882 by:0.11086181015419151 :0.062675233320918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.3382615025081735 great:0.23347587546820261 slight:0.18661053554781964 general:0.12751544225946568 :0.11413664421633844 -be:0.4945048386391967 go:0.18742217251434012 stand:0.11134876512579833 carry:0.10386234462471756 :0.10286187909594728 -those:0.8161362038660727 all:0.06501191503098204 one:0.05071879349686124 know:0.03784165817386493 :0.030291429432219092 -place.:0.25393642850097936 own.:0.2184110536117229 action.:0.1849541414679408 effect.:0.17349772539533506 :0.16920065102402185 -other:0.4395693644964293 Republican:0.18202058653779038 one:0.1473504595042153 political:0.12932753804486907 :0.10173205141669607 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8176331660792981 on:0.060320051931120104 for:0.05218617091430157 ot:0.03678070590435006 :0.03307990517093026 -is:0.6246313903400704 a:0.14662391074749745 seems:0.13593557943776294 was:0.06320274211041368 :0.02960637736425541 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6064079774696728 will:0.19528155091600338 would:0.10004283354170604 could:0.05911246527162929 :0.039155172800988465 -of:0.703980361610275 in:0.13038331510644643 and:0.08591007805417215 for:0.04147741802038505 :0.038248827208721414 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States.:0.715373946004085 question.:0.0971494251856928 world.:0.06762747835014161 war.:0.0605833527989521 :0.05926579766112839 -did:0.2549690564273372 could:0.25449679385014523 am:0.2123431675213303 do:0.1743770641072077 :0.10381391809397955 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -She:0.4119302767634022 Mr.:0.32604154665806573 He:0.09432402586988158 It:0.09187088396853046 :0.07583326674011998 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States:0.8723920034291169 States,:0.1179505687326222 states:0.00407336820183364 State:0.0036469876550286042 :0.0019370719813986898 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -success.:0.36039684536108685 work.:0.25705178680185503 value.:0.140445077028373 good.:0.12303927332898618 :0.11906701747969882 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country,:0.21541228459830133 way:0.21353368723433439 country:0.21054990963555595 way,:0.18870620382353784 :0.17179791470827047 -and:0.49108083013788784 but:0.18139391219836834 with:0.17093157060240904 in:0.07992181299985968 :0.07667187406147528 -by:0.42026236526667404 to:0.31569358338945847 that:0.15016784981869713 himself:0.05703017865779713 :0.05684602286737316 -to:0.8661171009557068 not:0.11805905474854685 lo:0.00843949202759917 never:0.005723046555840684 :0.0016613057123064684 -by:0.5085385600747797 and:0.17418276412903053 be:0.17418216292641697 the:0.07459271273753154 :0.06850380013224124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -letter:0.25614025702378934 mile:0.24453732906499095 distance:0.2388177775648556 free:0.1632228982651789 :0.09728173808118526 -people:0.31521229998409783 readers:0.19670962216388432 citizens:0.19408794176961583 members:0.16668303074129934 :0.12730710534110273 -on:0.9646228028398763 ward:0.02013537882908458 hold:0.006338721488050623 ou:0.005197241238808129 :0.0037058556041803577 -certain:0.3677359514687681 sure:0.2646887370095844 social:0.2348776760464091 the:0.07659327643876844 :0.05610435903646999 -not:0.2599808858374498 likely:0.2159692321298194 going:0.19629134542596766 expected:0.17417924748384706 :0.15357928912291605 -say:0.3779922642102331 believe:0.2089265073674118 see:0.17420485918915704 understand:0.13310528071562908 :0.105771088517569 -long:0.2803729031443349 wife,:0.2124693809751383 life:0.19124521560949168 way:0.16145361248325554 :0.15445888778777964 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8715431330156252 its:0.04022526695430419 tho:0.038125022044270276 these:0.029631906112494888 :0.020474671873305407 -time:0.4698129620581315 shall:0.15002503097577854 was:0.14172298447573295 is:0.13651931343555793 :0.10191970905479915 -of:0.3543308703587281 that:0.23435551030303547 to:0.1742227160336633 and:0.15200124946792853 :0.08508965383664457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.3925284022194942 days:0.19044719159361806 months:0.16588553013135193 miles:0.13632552175258714 :0.11481335430294858 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.31193080599670475 in:0.24766051126330121 for:0.16882936320537606 from:0.14401186640650512 :0.12756745312811285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6696542362564777 and:0.12184047638585109 with:0.11538567874463042 of:0.052334222070345604 :0.04078538654269511 -to:0.6003543515634543 for:0.3793585655768048 with:0.008365668220914958 lor:0.007436025177386987 :0.0044853894614389185 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.4114180446142976 shall:0.21895614135959776 to:0.14641891733277881 may:0.11548864896175115 :0.10771824773157476 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -which:0.35296312408720415 it:0.2794070160046456 this:0.2246432250704566 what:0.07854804354576883 :0.06443859129192485 -the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 -the:0.5431434956410964 such:0.14973357814393404 and:0.12779749364721782 any:0.09533678354195188 :0.08398864902579985 -in:0.4216172739950505 of:0.2250333508296883 and:0.1558323852342598 from:0.1072667537529028 :0.09025023618809848 -the:0.5443694439971554 be:0.17130976042688062 satisfy:0.1463313011747931 pay:0.09513711399201712 :0.04285238040915378 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.4201408477383329 would:0.21485036708721983 must:0.15835432627995463 can:0.1065899495285469 :0.10006450936594573 -medical:0.8439105455713698 and:0.06460040732212287 of:0.04840509405876353 known:0.030214524273347983 :0.012869428774395734 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4849429980994014 with:0.24354615295510537 for:0.12128446979509507 by:0.07989761446016692 :0.0703287646902312 -on:0.636599180612559 last:0.14664843294219862 and:0.12145338393893262 next:0.05262259488468901 :0.04267640762162073 -Beginning:0.984880295310059 beginning:0.007892376227865308 All:0.003855635550667995 A:0.00235028173349893 :0.0010214111779087312 -own:0.5366381531999522 way:0.29549802737594505 former:0.06578951039026988 old:0.05192259883526667 :0.050151710198566166 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -work.:0.4590871275860211 of:0.21662491392676797 here.:0.21649555831502496 there.:0.0714603136148062 :0.03633208655737981 -would:0.44112951017513724 looked:0.22532464777315772 looks:0.1233377690595832 was:0.11026689046908718 :0.0999411825230347 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.30376720859294687 and:0.22575272819796477 all:0.20002010436331386 in:0.1449442840917995 :0.12551567475397496 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -we:0.22740756431201908 it:0.2263187718030482 he:0.20721104431196474 they:0.2018653480331116 :0.13719727153985653 -wit::0.441290785688549 him.:0.16732007306904415 them.:0.15317125461279243 it.:0.13901798675634935 :0.09919989987326508 -his:0.49617148771867814 a:0.1777493991475601 and:0.16387982795394362 my:0.11744065425325619 :0.04475863092656194 -and:0.23969622254336737 for:0.2170162127309281 in:0.1966709027175485 are:0.18913670048775993 :0.15747996152039617 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 -the:0.6994721015403477 an:0.18390259774734533 his:0.06199368862880837 tho:0.03238984587647088 :0.022241766207027766 -so:0.3596111341229555 now:0.22627260470958618 expected:0.14592993436470666 aware:0.13766647400937432 :0.13051985279337724 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -of:0.38471827192998426 in:0.34359038814452475 to:0.12771008718768656 at:0.07428967503741526 :0.06969157770038928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -per:0.9993885064967879 par:0.0003732347809282709 ner:0.00010777675699026226 per­:6.592607473517084e-05 :6.455589055839216e-05 -not:0.3384602267801811 to:0.19199160969304524 in:0.17116545906553907 made:0.15218083549556083 :0.1462018689656738 -sold:0.24862578072136718 that:0.21513141153038395 was:0.184605036265421 looked:0.17723720109551294 :0.17440057038731496 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -saw:0.2919274461637207 think:0.22886158096961204 told:0.18000463275870882 was:0.15258459674777816 :0.1466217433601803 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -have:0.5085375917474592 having:0.20127302719126722 has:0.1596698258897672 be:0.06661494248414858 :0.06390461268735789 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -few:0.29485573901863515 man's:0.22980129690149514 little:0.20715675039003123 full:0.1383118950641686 :0.12987431862566987 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.2891922931559792 more:0.2799196147589272 three:0.23013105020136385 four:0.11431411200452968 :0.08644292987920005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.29651588707390975 and:0.2952809564338824 as:0.2680284012209759 than:0.08269584762793125 :0.0574789076433008 -Mr.:0.24335648632809345 them,:0.22859449796018552 them:0.21031036888836724 land:0.1634742371934418 :0.15426440962991192 -of:0.2498071723332316 on:0.21843958344851025 upon:0.19106279959091338 to:0.1782322678289256 :0.16245817679841928 -of:0.6592443802860887 in:0.15389027333183594 to:0.09953614961199787 from:0.0456708061718477 :0.04165839059822982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5327950315261255 for:0.22538103571551568 in:0.13719695218654063 and:0.06309143350894346 :0.04153554706287482 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.27865075866174754 only:0.21125749353733433 sufficient:0.18440562914980016 and:0.16730004311911548 :0.15838607553200254 -was:0.33850162491178387 is:0.27822913843371516 are:0.165497784197013 it:0.10929095799746512 :0.10848049446002297 -of:0.7154907114595026 with:0.08356723283111903 to:0.08070680215306193 and:0.07209438020428942 :0.048140873352026985 -the:0.4580092305554178 a:0.40347365088695325 no:0.05707583961872898 this:0.05488232873756609 :0.026558950201333847 -them,:0.28415966754556465 it,:0.2592280766720697 sale,:0.1604793807466042 land:0.15336635786327832 :0.14276651717248295 -way:0.8139257723340503 journey:0.07176831780929398 country:0.03974408775748872 trip:0.038275423436307535 :0.03628639866285953 -the:0.8811688589838704 tho:0.05208913201250518 this:0.03298358546651323 a:0.02072017339528856 :0.013038250141822399 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.30490781655432797 saw:0.22782992418841644 had:0.20841498951715276 havo:0.14208435901643543 :0.11676291072366728 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.402218282367193 on:0.3131663493226501 upon:0.1193908882540143 at:0.08427278436224071 :0.08095169569390201 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -therefore,:0.7268861780621301 if:0.09062702442812734 however,:0.06667408477346205 it:0.06289687254628348 :0.0529158401899971 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3565561424242406 it:0.20552115262270468 who:0.16111377220028889 that:0.14605752470052674 :0.13075140805223917 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5597520061846998 one:0.25456714281823856 every:0.09738002638881739 re­:0.04728553212831848 :0.04101529247992577 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.8567579360634797 be:0.048285880020147914 tho:0.03792289925179272 his:0.029281636781416088 :0.027751647883163467 -the:0.8380165979724976 a:0.07894314804954446 our:0.032928436865809534 tho:0.031776897942060116 :0.018334919170088202 -of:0.6128675768557197 at:0.16516032118453727 corner:0.10385654663368961 on:0.06083537199903758 :0.05728018332701598 -and:0.39375544169168536 as:0.2572484855893916 that:0.17430602839853143 or:0.118776045053019 :0.05591399926737256 -to:0.8875734220081059 of:0.0792466518411315 can:0.011515730477609676 and:0.011415265600238934 :0.010248930072913947 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9822240665359705 in:0.0066791747920642375 lo:0.004631683300288913 In:0.0032649170480108223 :0.0032001583236654493 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cities:0.47147056577138197 towns:0.17516910735079 cities,:0.15229094670621862 size:0.11995896987298599 :0.08111041029862331 -time:0.34472216159548424 same:0.2589322781996963 property:0.18823418391648952 place:0.11105082747525832 :0.09706054881307169 -law.:0.3919218043093153 them.:0.20032385974368588 him.:0.1945470541002171 it.:0.13876161593788242 :0.07444566590889933 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way:0.36078251315549553 efforts:0.22345790231741575 power:0.15163705361247626 attention:0.14487069028986366 :0.11925184062474875 -of:0.3202436509927885 in:0.26580093505039276 or:0.18840278734212623 at:0.130344731728569 :0.09520789488612354 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.7866823964769032 the:0.08994990536148592 some:0.04688755024922257 two:0.041317149783405095 :0.03516299812898317 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -come:0.2354928863074445 been:0.23340556937970203 not:0.19197402515201092 gone:0.1718898962518852 :0.16723762290895738 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.9185686629452271 to:0.029771570051668462 if:0.02567045960819722 when:0.01614981077840346 :0.009839496616503702 -those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 -as:0.27382156317341944 whereas,:0.19405401956743107 although:0.18844954492385257 though:0.1785322296863343 :0.16514264264896253 -the:0.6479403585046566 a:0.14116396622528848 his:0.1361627979379681 my:0.038273817060719834 :0.036459060271366965 -be:0.5981491458573046 have:0.23285215634339504 make:0.06737252818895816 not:0.05740202894870641 :0.04422414066163587 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.30049145344957995 committee:0.26783528665790807 report:0.15419256265460723 speaker:0.15218173425266845 :0.12529896298523627 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -suppose:0.433923041653141 it:0.15888670565957663 so:0.14690107634592922 in:0.14374058108918186 :0.11654859525217137 -to:0.327231987403563 by:0.2755054803868193 that:0.1504525632607434 with:0.1350530590875102 :0.11175690986136412 -Survey:0.5449352995169655 survey:0.15238413368030568 Cor.:0.13731838862428197 corner:0.10119747998016908 :0.06416469819827772 -tained:0.5841911467433384 gress:0.153434891812764 dition:0.12458861102617395 sented:0.07711616948342598 :0.06066918093429768 -that:0.3740662660910656 then:0.22990731258917083 so:0.14838407721261707 as:0.1474667796197226 :0.1001755644874239 -were:0.34060072305995404 was:0.23884775599687097 and:0.19794568790902814 are:0.13406850709166115 :0.08853732594248553 -in:0.2455254501290779 of:0.23605447364484153 on:0.19176035274050987 and:0.1670591517495538 :0.15960057173601683 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be-:0.4793767473881991 ¬:0.2504086768366219 follow:0.1476385833237405 com:0.06458982076946518 :0.057986171681973425 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4598084852432613 in:0.28566435596724404 and:0.09628496029398492 is:0.07941089351290766 :0.07883130498260213 -city,:0.27663691276075814 may:0.22690279495806287 will:0.17789996596578614 t:0.1778367067695674 :0.14072361954582543 -friends:0.24315984506966093 wife:0.22326805543291645 work:0.19094495531470868 life:0.18771399846261602 :0.15491314572009796 -the:0.5293430123488854 a:0.39775493590607397 his:0.02647240471782158 her:0.025741101843692295 :0.020688545183526787 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.42328222428655016 bill:0.18444159166613774 resolution:0.15328290999881405 copy:0.12346674550844153 :0.11552652854005656 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9197148959400677 ot:0.027547772264666297 in:0.022823405070998105 ol:0.018945419770339977 :0.010968506953927797 -be:0.8448664814866796 have:0.06518043816529201 bo:0.0645718451733313 easily:0.015036735449484138 :0.010344499725212808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.4745413577873418 feet:0.22234066027429764 thousand:0.17094368299669746 hundred:0.07707080660959116 :0.05510349233207206 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -committee:0.4248764714362521 Committee:0.19100538861541452 work:0.14060621029007359 report:0.1347662591635079 :0.10874567049475187 -good:0.37937607300081105 big:0.22022639568724295 little:0.14952918089947045 small:0.1405315509906256 :0.11033679942184997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.27982956643446794 the:0.27061374094386165 six:0.16312873346764453 ten:0.15814239137595457 :0.12828556777807126 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.3858819723873984 and:0.2524481832863447 de:0.1588875597954226 there:0.11651648752589662 :0.0862657970049377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.7302498564402831 the:0.15558675455326335 a:0.07881685803378596 this:0.01966439138928329 :0.015682139583384245 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.27971880101861707 little:0.22315625189172855 other:0.1772369170271202 same:0.16417923954897087 :0.15570879051356334 -his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -to:0.7987207870968174 and:0.08653345116175226 will:0.0660726440269701 would:0.02483103335486783 :0.023842084359592536 -official:0.3822398302618324 political:0.17317479770869232 brilliant:0.15342307149543244 past:0.14980784822257728 :0.14135445231146562 -time:0.4827282498215172 time,:0.29196400374922415 one:0.0882865248328127 years:0.0813860115574876 :0.05563521003895835 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -opportunity:0.23867927288573768 enough:0.23073299361060898 and:0.19228833156627295 as:0.18121067350671863 :0.15708872843066168 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.7590443688684791 after:0.10283862594458922 be:0.058252476896529716 became:0.05156707550695695 :0.028297452783444872 -man:0.4220590851478427 deposit:0.3258596046161753 case:0.09452769257337082 .:0.08380719875213814 :0.07374641891047301 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -most:0.6840015741329771 very:0.1580172508657777 same:0.08756274464561113 more:0.0486486202025911 :0.02176981015304285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4193782061079141 or:0.16563750264362873 people,:0.14589620745108045 body,:0.13991196327600866 :0.12917612052136815 -to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 -has:0.649142092577638 have:0.2276899651470764 had:0.08746168145353116 lias:0.02127378129007018 :0.014432479531684316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6585573348751366 a:0.10672449425384126 of:0.09779341594006036 selling:0.06956491011000648 :0.06735984482095533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -before:0.28790232471769794 later:0.24784487860498422 after:0.23513359027009312 when:0.16313901317410232 :0.06598019323312242 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.6558901395757217 become:0.12114970399126435 made:0.09561007558001602 not:0.08605697387173054 :0.04129310698126725 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3371348132971996 Mrs.:0.20733769340965935 Mr.:0.16483416040317328 Dr.:0.15590243722930053 :0.13479089566066718 -the:0.7937692948300049 this:0.12286460964238438 tho:0.039846096250757336 said:0.024607376415745938 :0.01891262286110735 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.2972646134065058 have:0.19911275235120854 go:0.19350236918450808 be:0.18954478695836346 :0.1205754780994141 -let:0.31491302521177145 with:0.20075985906748814 for:0.19121866176899965 to:0.1865964026487897 :0.106512051302951 -the:0.9288217140506269 tho:0.039611926857934694 tbe:0.014965926496049088 our:0.010102714675579888 :0.006497717919809338 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.4160142260522199 effort:0.22726536104008568 body:0.1308309349008555 one:0.1253859267938227 :0.10050355121301628 -may:0.5081714838975924 will:0.17166090459710942 should:0.1211100257276954 would:0.11068165953887592 :0.08837592623872695 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.587539898631176 in:0.16923498927202069 an:0.13038979904687015 stock:0.058394747561360684 :0.054440565488572616 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7576307576588981 and:0.16436572067253366 lie:0.029103435760744475 bo:0.026991174788632864 :0.021908911119190924 -world.:0.2959333774787962 country.:0.2631394959292402 people.:0.16889520728466936 city.:0.1622569898380489 :0.10977492946924519 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.706793814666687 a:0.21340973198410038 tho:0.03164914442947554 this:0.025718268200907734 :0.022429040718829146 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8006521972501571 is:0.07862921560522279 and:0.07546078022344607 that:0.027017048851666066 :0.01824075806950788 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.6052874064406949 day:0.10606026043057953 history:0.10479169317515884 hour:0.09896549557063117 :0.08489514438293567 -amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 -of:0.40710271231335965 in:0.1930307256187383 to:0.17946422743833776 off:0.11657216771862021 :0.10383016691094414 -him.:0.24241106321922087 them.:0.2156808001623417 wit::0.2134886139138113 it.:0.19453246799107993 :0.13388705471354623 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -an:0.4046513197569861 the:0.37999360387421416 every:0.10743521930321195 no:0.05853077599038354 :0.049389081075204226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 -and:0.3565276303471182 but:0.28362034044820283 has:0.1687051466049069 I:0.1033868388364893 :0.0877600437632828 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4701119327442418 that:0.2305571067893752 for:0.10711253883639758 at:0.10005780507669568 :0.09216061655328969 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.49673194736598164 the:0.21681848183778066 no:0.10963741937679189 seen:0.09620181129307566 :0.08061034012637014 -pleased:0.7544043149113827 connected:0.09973814677857729 charged:0.07145301453924119 favored:0.04066426348410639 :0.03374026028669244 -of:0.4790648555277752 and:0.25662958332890506 to:0.14136931591549193 in:0.07823723368547783 :0.04469901154234978 -based:0.2532432249512503 now:0.24734231725841554 due:0.19979024393299577 going:0.1845074910435667 :0.11511672281377178 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -,:0.22967600630560991 000:0.22115413949855595 e:0.21506379522594973 r:0.174055868017898 :0.16005019095198653 -of:0.8476342677552812 in:0.07355855573704914 on:0.031588936168682955 among:0.024996432762691735 :0.02222180757629508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -well:0.35161983167554833 swept:0.21311864688463195 turned:0.19024346574521636 and:0.13908151513527228 :0.10593654055933115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.299013870359158 or:0.24774543314045083 was:0.22201700626742013 at:0.12025863202834627 :0.11096505820462477 -to:0.6915670004658772 not:0.17761782214879324 now:0.055446049461517925 only:0.0419682264561951 :0.03340090146761654 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.44802814229809645 unable:0.21164269676986636 made:0.1676014600435054 used:0.0954585464733015 :0.07726915441523023 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -to:0.8289881447943817 and:0.09154732143281974 are:0.030214530368119028 were:0.024964771153257823 :0.024285232251421804 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2882392032524201 farm:0.2235394735881895 is:0.1725968430678353 tract:0.16535183604011552 :0.15027264405143967 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.31956123596302205 that:0.24562922725583497 in:0.16247797620830112 which:0.14011324524419969 :0.13221831532864214 -depend:0.28669575806710884 call:0.2702741048817314 look:0.1894276375491184 be:0.15596981525979 :0.09763268424225134 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -points:0.33944325296533134 parts:0.2732550659710119 kinds:0.14514652552444993 lines:0.13166402806257552 :0.11049112747663117 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city,:0.28227115034459654 country:0.20120402776837767 country,:0.19269461797700246 city:0.1700581071514082 :0.15377209675861508 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4773104065162571 placed:0.17216165599978386 called:0.12511410567331843 be:0.12139857458132404 :0.10401525722931643 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -notified:0.415520264087964 ordered:0.2562873947286048 fact:0.12743262966638033 stated:0.1270407925849673 :0.07371891893208364 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8353934518759746 the:0.12071202641403322 bo:0.026450059679651125 such:0.012273367675398777 :0.005171094354942218 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.44238629893356546 county:0.2505792513058401 chief:0.21014544439642788 town:0.06929717624284593 :0.027591829121320632 -him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 -me:0.4344106935806502 him:0.37929864839109667 them:0.1214702458419975 as:0.035542164320929194 :0.029278247865326533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.44405429239465805 but:0.3298657633744557 as:0.0917022374061561 that:0.07684424983945304 :0.057533456985277225 -of:0.6388937749330299 any:0.1683813891173944 all:0.06927958748829999 for:0.06641356302242092 :0.05703168543885484 -electric:0.5286643957008363 same:0.18166939704256707 new:0.11313951754878339 very:0.10741953158948413 :0.06910715811832929 -a:0.4527939413000898 very:0.18357781579686833 most:0.17307259988766527 more:0.14582029988113693 :0.04473534313423959 -and:0.2874140892689149 would:0.2433228072545865 shall:0.19642570550046962 to:0.15028412169381594 :0.122553276282213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.32994647011478273 sold:0.218656907657526 held:0.20364359097326354 placed:0.13224951416359437 :0.11550351709083344 -his:0.27982956643446794 the:0.27061374094386165 six:0.16312873346764453 ten:0.15814239137595457 :0.12828556777807126 -of:0.7643224165732446 in:0.12972185744863837 and:0.04458110941953684 for:0.043436251130297636 :0.01793836542828247 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -coat:0.352393749499828 inside:0.34500966950484974 small:0.10873541652244191 side:0.10614479038744709 :0.08771637408543323 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5003220444213231 many:0.15544626408970347 very:0.12605277148268706 those:0.11465329674628792 :0.1035256232599986 -it:0.43561896354422575 what:0.18686447707036705 who:0.12829722730654972 which:0.12538190964153992 :0.12383742243731753 -he:0.4933712574132095 they:0.20215271095926396 she:0.12719290863787405 I:0.10730693630690151 :0.06997618668275105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -efforts:0.24386865839056204 and:0.24368680388475877 effort:0.22296253673176084 for:0.1541053451930456 :0.13537665579987268 -they:0.713120009342333 we:0.1633766384448023 there:0.06937230986701691 it:0.028499567324829504 :0.025631475021018327 -speaker:0.43396197558493615 amount:0.18445855744561154 question:0.1574801723841787 bill:0.12313611569830558 :0.10096317888696811 -much:0.4241789998321079 far:0.16986977292033606 arranged:0.14827152491498824 as:0.14705921514239365 :0.1106204871901743 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -feet:0.48702187985569123 miles:0.4339169128459335 feet,:0.04138031246451976 yards:0.019023959526878315 :0.018656935306977186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -reached:0.3064105255683562 to:0.27550960413812237 in:0.1796605164684989 got:0.1266103236479699 :0.11180903017705267 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8027968404947202 in:0.15623342549868463 In:0.02610537608337026 ar-:0.007807434387623023 :0.007056923535602032 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -carried:0.44334876266910606 started:0.23892496265931829 set:0.12619253369903655 broke:0.12158233446734579 :0.06995140650519321 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.8936386974956839 the:0.06543721825438067 now:0.02167603238897772 known:0.01011517629233015 :0.009132875568627491 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.5537546262586723 of:0.16627944802665867 important:0.14734367070036378 great:0.08674176166785269 :0.04588049334645247 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.534988153236185 extent:0.12912102238037554 time,:0.11894069264692138 amount:0.10878577747170334 :0.10816435426481484 -.:0.24507610530262408 ,:0.22946998138399513 ill:0.19433842731191617 here:0.16735066221883071 :0.16376482378263382 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -right:0.33186327356150264 once:0.22786896431569958 least:0.1505182441308813 the:0.149573848905875 :0.14017566908604143 -protection:0.3121467925150426 them:0.18624082780492382 damages:0.17402693670282257 war:0.16883690301654375 :0.15874853996066712 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.8429329472507102 not:0.07813513949882542 bo:0.06362677479611681 now:0.009868381305827009 :0.005436757148520638 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -not:0.24687313598349933 order:0.20553513077663835 likely:0.19499406101357805 regard:0.19468133007724328 :0.15791634214904102 -eyes:0.29979639133941005 friends:0.2504236906669986 parents:0.17981191279726932 children:0.1407807233647736 :0.12918728183154832 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.36253771865111534 Gen.:0.2460967173082417 General:0.13293706039786068 Andrew:0.1325089081525568 :0.12591959549022544 -in:0.3482093675491882 of:0.24404544122635835 on:0.14948087978077193 at:0.14249717647796314 :0.11576713496571835 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.4661102592764041 even:0.18516843291580912 know:0.1545959006125481 come:0.10202292255708707 :0.0921024846381517 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6357548641977411 of:0.1176466119048608 about:0.09505819197044213 unto:0.08002367882559203 :0.07151665310136388 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.2940873214542713 be:0.23502883919920592 decide:0.18161448997799376 be,:0.1654506500205029 :0.12381869934802611 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -parts:0.5811587612638888 kinds:0.2558900962260675 sections:0.06966388404385453 portions:0.057338255685099475 :0.03594900278108986 -silver:0.3192950206726209 one:0.3014573168416868 last:0.158754906093758 gold:0.11942731396257175 :0.10106544242936258 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8839655180035743 but:0.05360305885232518 in:0.032240324283965 that:0.016646847904197196 :0.013544250955938336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -don't:0.25100981020709 could:0.24811169662493426 would:0.19496977374840727 didn't:0.15548746142945472 :0.15042125799011385 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -second:0.24377291707611579 whole:0.24086579083923074 same:0.18907280206220486 upper:0.18767686234108305 :0.13861162768136553 -of:0.8646224830566652 in:0.0637495450879736 when:0.024988660860891767 for:0.023377461753642394 :0.023261849240827227 -said:0.7533779434790043 that:0.11067808246739973 which:0.10997478377572617 and:0.016150741618679854 :0.009818448659189983 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -force:0.3509716786757402 forces:0.29440468553231486 men:0.23385049021933368 bands:0.07592456730906787 :0.044848578263543395 -tended:0.491977446969195 terest:0.19612100844782568 tend:0.11798492895460129 come:0.10624537584885095 :0.08767123977952705 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5046509914529542 in:0.23671636604614382 and:0.10836282391825158 for:0.07633143507245041 :0.07393838351019982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -few:0.8806693937066395 dozen:0.041333668510432 long:0.0281147248689992 hundred:0.02703181029105851 :0.02285040262287063 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3833963522849818 very:0.25263139297704035 in:0.17385934781033627 made:0.1084902697849597 :0.08162263714268189 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -and:0.3469139067791819 he:0.25678252755276987 which:0.1917397882091782 it:0.1315466913783745 :0.0730170860804956 -against:0.7442350862002522 that:0.12584482331542504 of:0.07290776493327164 is:0.028694001333749143 :0.028318324217302092 -the:0.48420096832915377 a:0.41008978571811333 much:0.04131618367379337 no:0.036429608019756185 :0.027963454259183267 -not:0.5129498170849175 to:0.3783552485302477 now:0.04116063196982422 also:0.04053618180577985 :0.026998120609230715 -had:0.3734551000085247 was:0.27792348314270776 is:0.14335566593738905 has:0.11372584359863012 :0.0915399073127484 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 -which:0.28842789914351497 that:0.2752444906379823 said:0.2088548594944842 whom:0.1446050227172672 :0.0828677280067514 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.31125235356606107 this:0.29606544131356655 his:0.2756885669706407 my:0.0809828078067538 :0.036010830342977855 -the:0.6390449437154518 any:0.21677097476497023 all:0.06580303576578764 each:0.04634724339755558 :0.0320338023562347 -from:0.26308153121234523 in:0.22123424586037013 of:0.2062792729429546 to:0.15678391190816468 :0.15262103807616534 -fact:0.47937756232303064 truth:0.24405748633628765 question:0.1675741304918259 result:0.07457368294067179 :0.034417137908184035 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -day.:0.3739052735628483 year.:0.22293686933798418 morning.:0.21724448591791598 ::0.11788238795040465 :0.06803098323084664 -of:0.7700063283603824 that:0.16684833052123765 in:0.029274783494599315 to:0.01701344690143788 :0.01685711072234279 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -and:0.4128286113784578 according:0.22533992801194166 as:0.18567040732634976 but:0.10835697730000463 :0.06780407598324625 -and:0.6284827589521187 road:0.11461219896800087 land:0.09690016848465792 principle:0.08360478491452439 :0.07640008868069807 -time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4254760163773637 in:0.31189408510478406 to:0.13647961632116876 for:0.0645088520077003 :0.06164143018898304 -it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 -man:0.4327071377170766 men:0.31743949322071563 people:0.09020972155132867 lady:0.08294825229593629 :0.0766953952149428 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.49176562644659544 in:0.2800173092613267 for:0.08359226562685541 on:0.07430918954661359 :0.07031560911860865 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.5014979596287077 he:0.238332971802412 there:0.12393385393775638 It:0.09053231539009109 :0.045702899241032935 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3065111723869965 as:0.28823979729734567 that:0.24982436195846497 when:0.08632122822772095 :0.06910344012947203 -morning:0.25274222204905383 morning,:0.2161348878887625 night,:0.17941717923254497 night:0.1777607757892352 :0.1739449350404034 -the:0.6690343336345751 any:0.13415472486874877 each:0.1095000809749585 all:0.047839264648700294 :0.039471595873017316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.27334071716296704 world.:0.22912587011828003 city.:0.2021827356717738 ground.:0.15643474226847018 :0.13891593477850905 -to:0.5942359605181223 will:0.1502046283840186 who:0.10543621069811712 would:0.07907236660520861 :0.07105083379453325 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.261367797143463 effects:0.23968901149292704 members:0.19460432084923962 readers:0.19015293559620197 :0.11418593491816832 -We:0.7032849984409723 I:0.15614400929988578 They:0.08528197399993323 Wo:0.03039723286504277 :0.024891785394165988 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6733768556861959 his:0.19914720588494647 her:0.07035618791332252 my:0.032153041756607055 :0.024966708758928015 -sentence:0.2542115291825829 delivery:0.23248264877911795 door:0.2299979312248443 instead:0.16695336788040885 :0.11635452293304593 -to:0.3372417848210229 and:0.3001923396027693 which:0.13789948990278422 will:0.1298352399128196 :0.0948311457606039 -which:0.3654822874710086 that:0.20055658393236428 and:0.18810451215871193 he:0.17206095446848413 :0.07379566196943091 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.44475001663694036 said:0.19405472206085375 him:0.14038912173915952 it:0.1161142886326729 :0.10469185093037346 -to:0.2621218234660518 by:0.2578751540963282 at:0.2431768911377731 as:0.1276864326924444 :0.10913969860740248 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.44811055400245614 this:0.20822226420798487 life:0.13927682331786545 land:0.10701573775380176 :0.09737462071789188 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -states:0.36389805782526374 and:0.24300228513328653 counties:0.15368598490356472 part:0.13762661182086264 :0.1017870603170224 -it:0.26895456018279773 not:0.19518545136978682 the:0.18665276095134797 there:0.1853532301587136 :0.1638539973373538 -where:0.5498781375114393 and:0.18021245928689916 as:0.10501790189267045 that:0.08262588577848545 :0.0822656155305057 -the:0.4596507440099344 this:0.23382015194526806 a:0.21049762371690317 his:0.05013407092766647 :0.045897409400227754 -most:0.48099353918644 said:0.1987416887560092 distance:0.13024266556466516 general:0.10954450690454835 :0.08047759958833742 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5925768855416239 other:0.12736494941480467 that:0.10369427373118892 many:0.09959440940081865 :0.07676948191156376 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country:0.39831247012481164 notice:0.22279739989546754 city:0.14628541826487682 notice,:0.11928455627914739 :0.11332015543569662 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -people:0.3458642656909462 country:0.3266687910599301 farmers:0.11344087518734816 citizens:0.10892389191276339 :0.10510217614901228 -to:0.7344862997521718 that:0.1626622190503734 they:0.06248380877816188 would:0.03016960460260861 :0.010198067816684394 -man:0.49723869660182746 home:0.1392742104074921 and:0.13051813246033045 lady:0.12941857003937007 :0.10355039049097998 -made:0.27137558134731876 ready:0.2103724447459214 called:0.18729522836454612 impossible:0.16657172850812213 :0.16438501703409164 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.3820645871731955 service:0.17497566139434811 world:0.15976846882274434 government:0.1478720295586193 :0.13531925305109269 -m:0.6106316636388914 m.:0.1501178468069324 m.,:0.14196229375085204 d:0.05507116938383255 :0.04221702641949151 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.42463367840287586 America.:0.19476572265509684 them.:0.14396443577860119 Washington.:0.13397389655015335 :0.10266226661327278 -the:0.7320036975754367 an:0.09162394021926991 its:0.07381489082934828 this:0.05590541013588938 :0.04665206124005559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.3977442968515334 was:0.2027620582011754 to:0.16900208136486805 in:0.1386371658455847 :0.09185439773683832 -not:0.3095612136009847 going:0.20915196287686183 all:0.19541359788436805 turned:0.15723878889939727 :0.12863443673838823 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.35652843383901023 be:0.3319927755103968 give:0.10608353801276137 take:0.10407661924883956 :0.10131863338899204 -last:0.47516381173745614 present:0.2183322589096248 fiscal:0.11046101039276361 next:0.10813568635111037 :0.0879072326090451 -would:0.25469281664574445 will:0.20534717681433198 did:0.18740085773340015 had:0.1866781830800381 :0.16588096572648525 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5663646025807562 human:0.17778117439670002 little:0.10087692382141576 book:0.08905579036755204 :0.06592150883357584 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.25657226089260626 in:0.21134884844986462 to:0.20198025707421258 for:0.18466397663152379 :0.14543465695179283 -day,:0.24351055564066762 be:0.2248228446985271 ward:0.1947844026267268 bo:0.17466329961298188 :0.16221889742109674 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -manner,:0.2529417408456482 it,:0.24479564607586113 this,:0.17806701292270974 manner:0.17432820445992347 :0.1498673956958575 -city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.37477340032946577 of:0.2155194418599649 at:0.1426859344793809 made:0.13527271366039648 :0.13174850967079207 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.3531514082796797 that:0.22589903703437209 he:0.22247983202608812 it:0.11248333258804194 :0.08598639007181813 -but:0.43099907838530527 and:0.3339280315252293 as:0.08781271527934177 that:0.08060364878001025 :0.06665652603011324 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -proceeding:0.5685423330286405 even:0.1515450015820258 interest:0.10513628148626193 sell:0.10132853324123596 :0.07344785066183583 -they:0.2830958296934554 it:0.21955851947595298 he:0.18732015559306697 It:0.16166316581220783 :0.14836232942531696 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3184121471652384 I:0.19226495166876903 they:0.18825545313152633 he:0.18727242421827195 :0.11379502381619427 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.5297829744750973 no:0.23432187349203099 just:0.11011976261938362 any:0.06454849703728464 :0.06122689237620345 -old:0.46139167620527793 engine:0.2807145442870201 order:0.10673346174805168 ordinary:0.08039382197060706 :0.07076649578904315 -country.:0.2518035582879237 city.:0.2100814167243172 bill.:0.2064195343748215 ground.:0.17296307703516228 :0.1587324135777752 -piece:0.4717774756559915 success:0.2237780285834291 man:0.10208292471325547 cure:0.10126141527654019 :0.10110015577078388 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -She:0.602367441831997 I:0.13771733563774072 He:0.13673555717495942 and:0.06818732343016229 :0.054992341925140645 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6216887027778625 for:0.1812755544436692 to:0.11196937439442595 and:0.05042091671818993 :0.034645451665852534 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out,:0.35058740642005193 out:0.2584266526886526 on,:0.1567474148759513 away:0.12946596426252246 :0.10477256175282182 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not.:0.626320534441325 more.:0.19019151183561167 another.:0.06794338910104089 so.:0.06276867150561558 :0.052775893116406805 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4468483673625859 that:0.14351858652798133 with:0.1391572887948387 to:0.13678077056415583 :0.1336949867504382 -went:0.3049720589023029 as:0.21437350446466963 it:0.19424464088589635 pursuant:0.14674939257250327 :0.13966040317462794 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.26571650983403255 th:0.22136304436461668 ti:0.193696525559978 tl:0.16878492600747344 :0.15043899423389934 -that:0.39796139548994236 as:0.20225622767367657 when:0.15083805884340912 if:0.1429527590779283 :0.1059915589150438 -any:0.5553228480400179 having:0.15398219970033167 remedy:0.1323626804708189 it:0.08720495175238982 :0.07112732003644193 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.6857443357431796 that:0.11575565247816953 of:0.09705576246568234 case:0.0654467153110503 :0.035997534001918116 -man:0.34949593670651014 story:0.26685889070123553 and:0.16848798387495556 lady:0.12066897425667213 :0.0944882144606266 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 -route:0.5139156839251422 joy:0.13394111730104988 courage:0.12448157199152489 tered:0.12103415135430898 :0.1066274754279741 -the:0.4047543548644102 to:0.20785662335698396 an:0.1906031286765863 was:0.11632311395497148 :0.08046277914704801 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -necessary:0.24096588207560182 impossible:0.22199192684643873 not:0.20049942933006623 ready:0.17027816810835814 :0.16626459363953505 -will:0.41576236060794586 can:0.21319783834040085 may:0.18944013599022116 would:0.0938757546562084 :0.08772391040522372 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5220731046847669 other:0.19833891322306482 these:0.1270243168976473 political:0.11486703410618236 :0.03769663108833861 -of:0.5443896644103128 the:0.19031838206244722 for:0.12020452729848419 a:0.11183668595659803 :0.033250740272157624 -was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9367111769446279 that:0.01937098726267392 ol:0.017348415426538734 his:0.014572026508664501 :0.011997393857494898 -those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 -amount:0.33367574802765154 name:0.18299013168488598 view:0.17360884438446778 knowledge:0.15768545770780476 :0.15203981819518986 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -think:0.28950464046626023 say:0.23616517411070068 be,:0.21497488047937263 be:0.13478310466833632 :0.12457220027533018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3392720554108909 bill:0.2545677721789828 he:0.16208856948311037 I:0.12360428327853917 :0.12046731964847676 -covered:0.3051919207925188 acquainted:0.23637994777814642 loaded:0.20889173917652282 der:0.127689757313509 :0.1218466349393029 -has:0.6248241270309384 have:0.1707971940612109 had:0.1502273252967978 having:0.03997262436382744 :0.01417872924722551 -way:0.25616833753844265 life:0.20734398515965913 time:0.1829072594050752 wife:0.18211749180588563 :0.17146292609093727 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7517813446787136 for:0.08092451498563362 which:0.06711060487785722 that:0.056656075406869365 :0.04352746005092612 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.9136036618805775 million:0.0560929235589484 hundred:0.0175368689608558 of:0.00757555775809507 :0.0051909878415231335 -;:0.6040236945226491 ,:0.1351531586070293 together,:0.08948416951633924 of:0.08699161537118816 :0.08434736198279422 -came:0.26293117870201627 arrived:0.1944424352773351 was:0.18330813567085802 brought:0.1818672839656912 :0.17745096638409927 -of:0.6288623758726599 for:0.3031003232618207 to:0.030250735726846865 in:0.027362045114904646 :0.010424520023767935 -they:0.4536352416530488 there:0.3577015293473146 we:0.15870016912352522 you:0.02156335350007757 :0.008399706376033721 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -rest:0.6495470273519278 engaged:0.10949537740128178 range:0.10924323211705027 resting:0.07699659415088754 :0.05471776897885257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.22614761638177275 provides:0.21624484021658102 it:0.21556615352858488 time:0.18376722346925736 :0.1582741664038041 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.35452788302145727 some:0.24053792466804333 a:0.1881460570240681 nothing:0.11759784130074555 :0.09919029398568582 -in:0.2965100839422805 by:0.2723853047509809 at:0.2634614059368455 on:0.093816911856227 :0.0738262935136659 -benefits:0.8269419729838449 benefit:0.05798453566635306 damages:0.04673216370075862 sympathy:0.04140932398577321 :0.02693200366327029 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.31671172252071206 to:0.2611716597265462 in:0.20483177970102973 of:0.12425884480995004 :0.0930259932417619 -and:0.4362921399088217 in:0.22877200546319926 of:0.19074594773276082 at:0.09261045464834199 :0.051579452246876156 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.7346175560130708 In:0.148449737858552 and:0.05709805489062073 de-:0.03469233610889228 :0.025142315128864178 -have:0.5064467746985962 to:0.14391954867540357 are:0.14095960435664234 get:0.10513236738651426 :0.10354170488284355 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -here:0.28829627930305923 ;:0.25022806489289573 in:0.24047526810005193 here,:0.11277123448807125 :0.10822915321592184 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4732909763389904 a:0.2448978351901381 per:0.14741373315920667 hen:0.07024583854825212 :0.06415161676341279 -will:0.26672847811568123 can:0.24104085422160734 would:0.1902025168388782 may:0.18004059218145915 :0.12198755864237412 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -6,:0.8682114455271852 block:0.04942463504156825 Township:0.037406846745487124 Lots:0.02522249270930136 :0.01973457997645801 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.28754326047819656 them.:0.2438481221691161 him.:0.22506222457686448 the:0.15641567514188384 :0.0871307176339391 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.463584795535765 has:0.19138717114331963 have:0.11871881592120205 was:0.11385807718029423 :0.11245114021941909 -and:0.42517695689501556 wonder:0.1759702072353485 but:0.1497810728134893 amount:0.1281039673984617 :0.12096779565768495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.7699628877442182 At:0.12056602204585334 His:0.04213379395995613 Tho:0.03720859685596195 :0.03012869939401049 -are:0.25769823862973273 favor:0.20428919561009995 lives:0.2021503592351086 use:0.18621412472967797 :0.14964808179538056 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.34572464825696064 we:0.18529626280914316 I:0.15950251080198566 he:0.15497357720449137 :0.15450300092741914 -time:0.5308707433004629 day:0.1285301701120309 man:0.11423369756370641 sun:0.11385489130069014 :0.11251049772310973 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.305083867160107 feet:0.21296002912116505 miles:0.16369986161006522 inches:0.161444690384843 :0.15681155172381975 -and:0.4465520995972749 or:0.21504293990392548 of:0.18386158559287946 stated:0.08128432333959187 :0.07325905156632839 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7985250241988578 its:0.09201152477278711 a:0.070007453635878 tho:0.022158466830838837 :0.017297530561638234 -and:0.286773058070101 of:0.22885786724310483 in:0.19821236940218992 at:0.14480513091655123 :0.14135157436805298 -of:0.9456333276699839 in:0.01886053195381601 over:0.018104024455825516 ot:0.012750847490194556 :0.004651268430179956 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.2454678174653443 to:0.23659770714032122 shall:0.23587353307283515 should:0.18362527581994456 :0.09843566650155479 -bill:0.22854372602624481 matter:0.2148341238044498 point:0.2077273839953866 letter:0.18602441115280235 :0.1628703550211165 -had:0.4917066619881819 has:0.4742270222487543 bad:0.015347401839742052 lias:0.009414120582384432 :0.009304793340937272 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.48761387040598236 from:0.2763250259431814 in:0.131201590275028 for:0.05382999852044517 :0.05102951485536296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.5867981214766436 would:0.17384981164877963 to:0.09048603116056264 will:0.08647956130596277 :0.062386474408051465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.30764906931053704 in:0.24998809773794406 are:0.17048928383391274 doing:0.15519657852630936 :0.11667697059129668 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -And:0.2641082119632158 I:0.2181933442868673 ":0.20703106079828332 The:0.1723269259735707 :0.138340456978063 -miles:0.46665261667185276 went:0.1816257470351335 or:0.1301435773963043 and:0.11692021489659171 :0.10465784400011761 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8479629722083247 to:0.05912333373678164 in:0.053100731394877074 for:0.024297373430898175 :0.015515589229118488 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.343844762439813 it:0.32315748699662805 the:0.17939349186768722 she:0.12730693864084763 :0.026297320055023953 -property:0.2755966266891484 are:0.2667035820802384 is:0.251948874789391 being:0.11731695444744583 :0.08843396199377629 -own:0.7341370835151909 private:0.10248304153833596 home:0.06613226764620968 farm:0.05564752856821226 :0.04160007873205124 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Pennsylvania:0.34384949570734297 the:0.23923395870968062 Fifth:0.15425691732718322 said:0.14363917484444133 :0.1190204534113519 -amount:0.29042026134426796 length:0.1946776953821619 price:0.19347375742561665 sum:0.16681393096303104 :0.1546143548849226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -were:0.35011939427174965 are:0.2935692529803561 who:0.17173631032475034 and:0.09671756934860595 :0.08785747307453788 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.9487768158299539 like:0.014828449431780537 or:0.013796055268535794 and:0.012409086099380021 :0.010189593370349859 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 -the:0.5931365895584416 and:0.23095610984492687 a:0.10522829728343872 in:0.0375766237010864 :0.03310237961210633 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.9133844327569619 recently:0.028649378576453093 never:0.020994558820892354 heretofore:0.02035265972702516 :0.016618970118667385 -nearly:0.5252411818271869 that:0.15495772481914089 almost:0.11383419341115944 which:0.1031601093651562 :0.10280679057735642 -as:0.2903022649469853 that:0.2514891458439669 when:0.1883105770901353 was:0.14007900998661035 :0.12981900213230213 -the:0.6735605154422155 gross:0.11191146293128951 total:0.07513672241016983 heavy:0.06997958964937173 :0.06941170956695342 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.33828350297067583 two:0.26333804069029193 naval:0.18654567082274262 the:0.11559452618592905 :0.09623825933036055 -same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year:0.21546182702044728 man:0.20981994444069357 o'clock:0.20017726471332978 or:0.1884817826615052 :0.18605918116402415 -amount:0.623534384550812 time:0.17257226748836121 duties:0.07920539008176694 sum:0.07017070941047326 :0.054517248468586625 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -believe:0.3326620470530974 think:0.2187964988646363 know:0.21195335049583128 say:0.12965166041819415 :0.10693644316824089 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been:0.3455685203031283 done:0.21772965814843726 filled:0.17488871639927317 met:0.14672457907656644 :0.11508852607259487 -done.:0.3501851115995026 made.:0.2482438570886003 come.:0.23491627370725388 been:0.08833909506744916 :0.07831566253719399 -would:0.33231963426292266 will:0.24807106555580624 could:0.1604297790340768 can:0.14328779484944704 :0.11589172629774724 -thereof:0.31074625472259243 surprised:0.2953101946842726 interest:0.1858494996885791 more:0.1357713216143676 :0.0723227292901882 -he:0.5388017165870324 I:0.2714486748577953 she:0.09800795434888324 they:0.05943356444907145 :0.03230808975721748 -a:0.7353862979047157 about:0.09885680608271342 one:0.06390754410346396 over:0.05984991842044573 :0.04199943348866099 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3230082884649547 any:0.2051126183788757 in:0.20209211166674776 every:0.14287296447480152 :0.12691401701462024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years:0.40050650813795996 and:0.1819867482473631 years,:0.16290274674417962 weeks:0.13371502605670568 :0.12088897081379157 -forth:0.5949136395347948 up:0.17597163718058578 out:0.1059515171058636 apart:0.07160407224288012 :0.051559133935875585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.2666286282986222 they:0.19895105521328707 we:0.19557755689842282 is:0.18849458827948384 :0.150348171310184 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9034002677719514 tho:0.03852351993289738 said:0.02457207617052492 tbe:0.01742000267302582 :0.016084133451600386 -a:0.47966165228413526 its:0.23117939463998036 his:0.1310056611878361 their:0.11391826271780553 :0.04423502917024276 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 -the:0.4632646492321176 Rock:0.41888821912629803 Long:0.0756231368124205 tho:0.02876634716826393 :0.013457647660900109 -the:0.7257948841130267 a:0.12416776986166841 his:0.060434421136672266 your:0.05182578518558566 :0.0377771397030468 -is:0.34970831562675553 was:0.332774521336319 the:0.13164325761319345 and:0.12164363549275901 :0.06423026993097308 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all.:0.37285237991566766 home.:0.2502807599126407 once.:0.19438867972154455 present.:0.10327879584372163 :0.07919938460642556 -mill:0.30458520130471617 country:0.23210069178985207 and:0.17328750163415085 country,:0.15139743446710882 :0.1386291708041721 -all:0.38941534705924935 which:0.28478787961326796 that:0.2273636400657995 and:0.05117516591115688 :0.0472579673505265 -became:0.7910454567295739 made:0.10776982434271369 become:0.040364667422356254 becomes:0.03254358536285349 :0.02827646614250269 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 -people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -some:0.3384366440973999 one:0.23789490740669034 copies:0.15312276188629256 evidence:0.1526118006471375 :0.11793388596247964 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -suffering:0.28440504671545525 removed:0.2328055004513573 taken:0.20823606674147851 escaped:0.143118163774961 :0.13143522231674806 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -he:0.42861671686253106 lie:0.2164682855717324 be:0.16873343544715974 was:0.1072948113116434 :0.07888675080693336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out:0.2826313090371434 all:0.2283869012648755 made:0.1790871153335739 some:0.15679160790580315 :0.15310306645860397 -who:0.3035510284014243 and:0.23649773472479105 mills:0.16373419173398604 they:0.14980822268703495 :0.1464088224527637 -the:0.8484205130751464 his:0.06717438929921102 tho:0.02956413999432679 this:0.02876798582097929 :0.026072971810336527 -time:0.37995559668932255 day:0.19388787733254714 shortly:0.1630587952124126 it:0.1616849688333784 :0.10141276193233932 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.2689740323678009 to:0.20536947251215018 without:0.19435578249344426 in:0.1735288146656916 :0.15777189796091307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -forced:0.45129245602250595 rich:0.21599461552383012 able:0.2036182011788625 nn:0.06549278471754322 :0.06360194255725828 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -satisfied:0.4698726738442581 charged:0.1817125826654389 connected:0.1294105455477004 covered:0.11586855394619895 :0.10313564399640363 -the:0.6719684820261256 this:0.12231951295491496 any:0.08217212620966398 some:0.06626450797819104 :0.057275370831104344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.43994357419853863 to:0.24690496136752615 should:0.10865133403589174 shall:0.10325237258927622 :0.10124775780876734 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.29092419624374166 age:0.23735525161447554 friend:0.1944863461100729 line:0.16382740345988786 :0.11340680257182204 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -few:0.8806693937066395 dozen:0.041333668510432 long:0.0281147248689992 hundred:0.02703181029105851 :0.02285040262287063 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -check:0.9692289451459556 copy:0.011088659481505897 and:0.0109293626372067 statement:0.005535141255758269 :0.0032178914795736157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.30633695113637266 same:0.28858193412287547 said:0.231497083675891 show:0.09936685688578119 :0.0742171741790798 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8236271938492313 their:0.08102493952910637 his:0.038714270124839176 tho:0.03383297695596657 :0.022800619540856607 -country.:0.30358131116066545 city.:0.19686190383223698 world.:0.18431214711882327 house.:0.18205644332917983 :0.13318819455909445 -made:0.32994647011478273 sold:0.218656907657526 held:0.20364359097326354 placed:0.13224951416359437 :0.11550351709083344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3527803659853331 for:0.3317826874878852 on:0.14171946608819802 in:0.11091408129316963 :0.0628033991454141 -made:0.31399841047393817 guilty:0.2201494996189815 one:0.20595811432072125 out:0.15239324206574084 :0.10750073352061827 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -secured:0.6574435898782581 paid:0.14562188092408415 received:0.07795901049170834 and:0.0627722102504369 :0.056203308455512496 -year:0.28465516211493064 week:0.25329711873435595 night:0.19952503638571392 resort:0.16630641129705145 :0.09621627146794808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.5164336160152043 of:0.3670182492283677 time:0.045163675054072074 on:0.03591492229177724 :0.03546953741057857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -few:0.44995488771998915 man:0.20054862747920435 good:0.1426971065497411 time,:0.11398773281629654 :0.09281164543476884 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.655193474805364 as:0.10931804545579846 whom:0.10364871624996273 that:0.07524249117437593 :0.05659727231449884 -the:0.41922549131801995 a:0.251519433785423 our:0.14231385365924124 tho:0.10035991114119285 :0.08658131009612298 -said:0.9124902811147684 parties:0.030823875438464557 party:0.023659865335357032 same:0.01934417985079353 :0.013681798260616497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.9836356735527889 lo:0.007021735971028442 the:0.006347960367958032 to.:0.00229802268142749 :0.0006966074267972395 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -known:0.6282076030385634 known,:0.19024668121402705 dressed:0.06703827479288851 together,:0.06012358589228924 :0.05438385506223179 -home.:0.7677802673372145 together.:0.1449870474762656 right.:0.03441980120912579 town.:0.0314972947438124 :0.021315589233581688 -the:0.7583074495193186 a:0.10012544559249936 his:0.05156389691674885 this:0.04618977224774311 :0.04381343572368997 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -went:0.45540857966935094 got:0.1608453316698705 entered:0.16053066552781217 came:0.13877352327870382 :0.08444189985426255 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5112134109980959 sale,:0.24741880027819857 that:0.08426780335230409 them:0.08408697558225235 :0.07301300978914904 -hun-:0.9998652521737065 men:7.304961696611275e-05 j:2.669929471304951e-05 |:2.2170287766071564e-05 :1.2828626848256734e-05 -A:0.6018777104561257 .:0.1647602787310704 a:0.16233309527206655 of:0.04245096238398884 :0.02857795315674846 -way.:0.2647285279384198 country.:0.2330982819877707 hands.:0.18234172537754934 people.:0.1728729559398621 :0.14695850875639815 -in:0.3455934992385719 on:0.24609468600077528 at:0.206018175782062 and:0.12145276351881552 :0.08084087545977534 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -little:0.3796081584811348 good:0.2321701387980767 piece:0.17281879330775693 well:0.1275950516082963 :0.0878078578047355 -the:0.4133982369686772 a:0.2713290352242838 about:0.11779948495389456 lot:0.10013111339287852 :0.09734212946026582 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3015778968267442 but:0.22789900086165443 not:0.19854343755076187 was:0.14126502819415046 :0.13071463656668908 -by:0.23728574659672244 if:0.23326250912133772 and:0.22900141505896604 of:0.15545093806692792 :0.14499939115604601 -person:0.3933722165461801 day:0.18892153141931553 state:0.17206272693644595 whole:0.125325198624538 :0.12031832647352056 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6463206542598894 with:0.16837223541404286 in:0.11061474003567699 to:0.0426380973419861 :0.03205427294840472 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.32040168297440197 government:0.2076175258439789 same:0.16874312876381944 city:0.15630119621138694 :0.14693646620641276 -the:0.51911534826585 a:0.27806185707831826 this:0.15886277965132525 any:0.0231402597148244 :0.020819755289682072 -two:0.30471309294792015 one:0.2150562575277827 lot:0.17580782623893582 three:0.1570911360890157 :0.14733168719634568 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7045787386837231 a:0.1067720059304925 and:0.06751948193681583 he:0.06379281115269553 :0.057336962296273046 -to:0.9131081411255957 not:0.07576610004512906 never:0.0063371610289933 lo:0.0035188388964730744 :0.0012697589038088903 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.32983048707157403 has:0.2886913630736535 had:0.21866661451201497 are:0.11801934879024029 :0.044792186552517044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4656396985874198 in:0.20985504571096375 to:0.12851694888021117 from:0.12770647169150418 :0.06828183512990109 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.46481055136566984 in:0.3278309197303958 to:0.10083281445336968 from:0.06225437089085027 :0.044271343559714495 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Liber:0.4331674208540019 said:0.24907864400136895 the:0.18839683139870558 and:0.07478429661138233 :0.054572807134541074 -to:0.3835088959898232 and:0.2710321199900716 will:0.19090541833956176 would:0.11971346975867538 :0.03484009592186804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5309561720656704 in:0.30971011208677063 to:0.06782357668881908 from:0.06227642204129182 :0.02923371711744811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4395086013851834 at:0.15925481678819597 on:0.1557756660046468 for:0.13793650255460668 :0.1075244132673671 -a:0.549943795343836 the:0.37699576327206236 our:0.026452650020558643 his:0.024513874854463182 :0.022093916509079936 -well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 -upon:0.364377086412337 at:0.32194764945885673 for:0.13291176786991898 on:0.09416720487291168 :0.08659629138597545 -thousands:0.3054683844896468 knowledge:0.28060254387408134 power:0.16951507658413284 grace:0.13601263260545568 :0.10840136244668326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4431750583572373 for:0.18336980836183225 to:0.15637534910724998 before:0.11442976339605128 :0.10265002077762912 -a:0.5107393936774739 the:0.40452937368938563 its:0.03808209421630868 very:0.025192469749861106 :0.021456668666970546 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -able:0.3592632806057296 allowed:0.20418202455383563 used:0.1484971377437692 necessary:0.14775269065638058 :0.1403048664402851 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.30650847202244086 a:0.25860674337377515 no:0.21684808857312196 that:0.12924861724002393 :0.08878807879063794 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -feet:0.45105246983636144 @:0.27736623522354154 degrees:0.12094691081337722 deg.:0.09005721519801109 :0.06057716892870871 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -life:0.4326727620047838 very:0.3648739340854056 rooms:0.09616870583933437 is:0.057685531294714924 :0.04859906677576127 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.49152505416999154 A:0.19229295353418271 &:0.11171226926091929 at:0.10389689654902286 :0.10057282648588373 -to:0.25372136017712854 for:0.19914088124056376 into:0.19727717888063995 from:0.17845097800696436 :0.1714096016947034 -way.:0.2965998200687732 side.:0.25768801564473925 day.:0.16373612444108054 States.:0.15014643507796305 :0.13182960476744393 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -new:0.5101380006112574 particular:0.1540588792991618 an:0.12969021168781295 simple:0.12125461175028515 :0.08485829665148284 -a:0.7756708205345296 of:0.09104499290836579 for:0.05440583611446578 any:0.046699262763181225 :0.03217908767945752 -feet:0.5144358559229022 years:0.18760550144516983 days:0.14850580589924497 miles:0.08512397732525995 :0.0643288594074229 -and:0.6365491001363763 to:0.12616909136280946 from:0.089040583736609 in:0.07853976124549818 :0.06970146351870711 -will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9381609123977712 tho:0.024657671673000037 this:0.019406289532033546 tbe:0.014045084059503587 :0.0037300423376915416 -American:0.4177556185458607 young:0.17255214427380125 whole:0.16193392033864812 colored:0.13093731231274836 :0.11682100452894165 -with:0.9904549952791027 With:0.00276586898819467 to:0.0023736696470519486 with,:0.0022516611402439847 :0.0021538049454067707 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.43823475926152705 will:0.24819699596754466 and:0.14336424049266705 would:0.1057946786653957 :0.06440932561286561 -the:0.7679374843640024 any:0.07783842565584026 all:0.07584874989994632 much:0.04831408965950787 :0.030061250420703147 -war.:0.7434912517518255 service.:0.10494275124972754 life.:0.0718129164902863 action.:0.05260182321747872 :0.02715125729068183 -seen:0.24382716668605736 given:0.224497468664085 to:0.2108523925333124 told:0.16332992246045247 :0.15749304965609265 -be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -East:0.4978520168704518 Range:0.19134406924881428 and:0.16781144224277242 of:0.0796977309725365 :0.06329474066542513 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -door:0.4497994660547542 the:0.23632682660502333 and:0.14053497062731937 steps:0.0924724963267546 :0.08086624038614847 -it:0.4286712238116598 there:0.2473554882434682 he:0.1726225121840287 It:0.09684429713284241 :0.05450647862800084 -world.:0.25698006603114154 country.:0.2508299912276878 city.:0.19363078658058938 other.:0.15559313346223075 :0.14296602269835051 -husband:0.2898271923218615 long:0.22850097215558657 husband,:0.1791647303456977 life:0.15389754907163786 :0.14860955610521653 -once:0.2380514406421126 home:0.2146735646385676 once,:0.1907674175470125 all,:0.1807387754136073 :0.17576880175869988 -fact,:0.4624791011270637 short,:0.1947895185573626 all:0.1623454053560217 this,:0.10328928363606771 :0.07709669132348422 -who:0.9836546940351831 men:0.005726044400093623 people:0.004135964634762072 I:0.0032838823155111555 :0.003199414614450119 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.7927642213346489 have:0.10361555459510771 had:0.06927070543566956 having:0.018563939184355133 :0.01578557945021879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8176687629737899 to:0.07786931419829671 for:0.041883030425720544 gave:0.03277379759377465 :0.029805094808418253 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -States:0.8723920034291169 States,:0.1179505687326222 states:0.00407336820183364 State:0.0036469876550286042 :0.0019370719813986898 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.3122713221804009 disease:0.18638810440484724 people,:0.17898662617896727 country,:0.16389733278908997 :0.15845661444669465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.640869867862213 of:0.12142927138993344 for:0.11313297368954048 from:0.07743546025048555 :0.047132426807827664 -to:0.2982167684337614 in:0.29527030263439025 by:0.15089926286176325 at:0.13636691127547776 :0.11924675479460724 -to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -York,:0.44752639254847615 York:0.3756099606370586 England:0.07875187475591436 Orleans:0.059297668149223395 :0.03881410390932757 -people:0.31739505936069684 water:0.2559009868656214 men:0.15820609929354223 crowd:0.15668161901148353 :0.11181623546865609 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 -of:0.42060106805586006 in:0.3934226902979597 In:0.0855597410346846 for:0.06401834430744796 :0.03639815630404779 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.6159676688919575 the:0.2509487747961118 each:0.059616928845897414 an-:0.05004610017767899 :0.023420527288354285 -those:0.7147612443780683 one:0.11151134992752237 found:0.07638417486879641 men:0.05176895297897656 :0.04557427784663626 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -spread:0.7762815933424791 papers:0.14202833325063494 agents:0.02909176443669561 that:0.02647316717758154 :0.02612514179260878 -to:0.6460202459917107 for:0.13904889631473202 of:0.13648020203165065 that:0.04160248176504195 :0.03684817389686467 -opinion:0.27682391664669714 belief:0.20081297244598786 people:0.1932137072855023 country:0.16933549888631896 :0.15981390473549378 -have:0.5761620023980643 had:0.2073334971038811 were:0.1954345046899386 havo:0.01232413546414352 :0.008745860343972423 -and:0.37768188290298615 coin:0.21512407560774863 enough:0.17028026528290074 is:0.14386255724708097 :0.0930512189592835 -quarter:0.4981703161325264 large:0.19120621633491033 second:0.1416264700008862 third:0.0891174836842985 :0.07987951384737844 -and:0.27238778824214965 the:0.22050085866924893 to:0.20473251873251783 said:0.15403091425051818 :0.1483479201055655 -claim:0.528850718555405 bonds:0.22347886162580877 claims:0.12480279839163748 parties:0.07496007211487157 :0.04790754931227707 -well:0.5227890070999469 not:0.18260097014627935 made:0.15561232505856454 never:0.07044160833790666 :0.06855608935730251 -be:0.368832395574956 have:0.27825319416729416 run:0.1371449941628323 leave:0.10790022734228949 :0.10786918875262812 -told:0.3123197626877837 let:0.19522485301720835 gave:0.18411170486955275 asked:0.1743258495115557 :0.13401782991389943 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -subject:0.3712369671150671 as:0.26750586018267075 up:0.12789634883040865 them:0.11815063922752768 :0.11521018464432597 -the:0.5341587066692838 a:0.2069996958877777 in:0.14324800269263516 this:0.0814223907234114 :0.03417120402689204 -he:0.4168079935533805 they:0.2588381049939056 I:0.1361148655021447 she:0.10026565551235606 :0.08797338043821316 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.41167385509355114 of:0.3081973419351046 .,:0.10986615702345194 in:0.1007584834229332 :0.06950416252495911 -failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 -the:0.40722678734336587 some:0.22794454733087705 all:0.14243228664643767 evidence:0.11176172493017159 :0.11063465374914788 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.3260092199094921 be:0.2660264344498853 been:0.1766507721159509 believe:0.12663038187897666 :0.1046831916456951 -the:0.5735864110373473 other:0.1312382208658239 a:0.12485756270174814 his:0.1080608860175467 :0.06225691937753396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3324860808106962 he:0.29169601225922326 they:0.27209117228700025 she:0.05200712209728972 :0.05171961254579061 -which:0.35683231267661364 that:0.32837800744284434 whom:0.13465697680923552 what:0.12323667008342479 :0.05689603298788172 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.7239152699809678 were:0.17915364261478448 is:0.036088453134751806 he:0.03408343625061003 :0.026759198018886116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.22301674829480514 made:0.21237075197177005 again:0.21037064693316584 born:0.18766178464956798 :0.16658006815069112 -go:0.36080905261796875 get:0.21572081582449512 the:0.19245800982018244 come:0.1390059287436487 :0.092006192993705 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5762839628562443 a:0.15798428348979815 his:0.12053691013646431 no:0.08079612662000529 :0.0643987168974879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6912842284475148 in:0.09229515683986991 on:0.0809488774124658 that:0.0781770223304557 :0.05729471496969379 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -condition.:0.2634345202799238 time.:0.2181600644546511 order.:0.18192000628603167 work.:0.17112819698314244 :0.16535721199625109 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4818568421178558 on:0.1827966303447281 at:0.16724703678617975 with:0.08810170571265268 :0.07999778503858372 -feet:0.5339931864514194 poles:0.16863617029752853 chains:0.1579532068704376 rods:0.0737521866318941 :0.06566524974872041 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.30858723382651665 in:0.2160359561279969 with:0.2024878176874675 to:0.1434560877840233 :0.1294329045739957 -him:0.32005438373500866 me:0.19875667078372647 them:0.18021708850101162 want:0.1660327450372307 :0.13493911194302252 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.3304759042270243 men:0.19938921258336556 these:0.18551470984389812 them:0.18129380047004448 :0.10332637287566761 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.23560493465926508 did,:0.20834128437541183 are,:0.19555850716485704 have,:0.18038086530424008 :0.180114408496226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4111138402974882 in:0.26717485268612534 to:0.1230368689227103 and:0.0999391741119655 :0.09873526398171074 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.281551529157646 Mr.:0.2605036072853707 .:0.21134406110443293 to:0.1264851453597035 :0.12011565709284701 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thereon:0.8831242708764482 thereon,:0.04093645868203029 and:0.029536497577360377 due:0.025236683163399214 :0.02116608970076188 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -der:0.4892867969361078 known:0.2904602445664339 fortunate:0.08354336991916077 expected:0.07712769182092265 :0.05958189675737484 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.5765783233828752 all:0.18173173597835926 fact:0.08830429772946394 them:0.08778662429412723 :0.06559901861517435 -men:0.29962032479125456 oak:0.20744377095440245 man:0.19036198410636326 field:0.1553114876543773 :0.14726243249360238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -much:0.8633186458573788 that:0.0654570538109982 little:0.026313228461375064 the:0.024786071713860852 :0.0201250001563871 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -filled:0.3046100094272481 charged:0.197043674196014 done:0.18490123726853452 supplied:0.15911673389378053 :0.1543283452144229 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6516534981255296 every:0.21326246887047917 within:0.057538359378029404 exactly:0.04702710360903465 :0.030518570016927152 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8011733078787625 by:0.08320776493308672 with:0.0586168342745012 and:0.03095994788202804 :0.02604214503162161 -husband,:0.39265335319967615 mother,:0.19829649522901535 father,:0.1795173635371477 husband:0.11973260371265766 :0.10980018432150304 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -court,:0.7545476908485297 court:0.18101888982104924 and:0.02405433163934561 as:0.02096313052034607 :0.019415957170729414 -go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.454632215650409 with:0.15528936722656758 for:0.14599431868284202 that:0.1260958857859508 :0.11798821265423048 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out:0.2936992933859154 use:0.24847183978040718 one:0.17462100932774596 some:0.1427018692725002 :0.14050598823343127 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -far:0.730960988393792 obtained:0.11691807944297751 derived:0.053654983661425945 taken:0.05207564088156633 :0.046390307620238234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 -are:0.521739852394557 have:0.14087184400376432 were:0.12667043089548513 who:0.11053936562541888 :0.1001785070807747 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.29362447849316853 on:0.2202937299118658 at:0.2181316542020122 in:0.15744288068113257 :0.11050725671182081 -virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 -hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -large:0.267152493049856 the:0.26416251159800125 human:0.17475273216953238 his:0.1653040302062714 :0.12862823297633905 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -the:0.4027037188456693 his:0.19580381536091818 to:0.16970675241710215 our:0.14205356539927638 :0.08973214797703409 -says:0.2662737914841601 and:0.2503575424543195 Roosevelt:0.21380039918060398 ordered:0.17196114252957923 :0.09760712435133721 -they:0.3649212788320134 there:0.28469943665017333 we:0.2039858898488088 who:0.08687015936496226 :0.05952323530404228 -any-:0.5494665819204938 some-:0.3371550406765957 any:0.07181523780437225 good:0.02423298506363853 :0.01733015453489974 -people:0.42304013980678334 purchaser:0.18556837850156158 only:0.18190335985835265 last:0.11881039366251105 :0.09067772817079137 -man:0.28298532721353603 resolution:0.20586527447122968 decree:0.18314749900199542 friend:0.16585738145701745 :0.16214451785622133 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -work:0.28080346390357824 property:0.1992730759274149 former:0.1763020820745387 efforts:0.17304491830509328 :0.17057645978937494 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.26599772048056336 people:0.2310542976196447 property:0.18416594896627966 house:0.1679604033745812 :0.15082162955893103 -a:0.45399370408352474 the:0.3556313942158909 one:0.07418338319850064 this:0.06448929291828534 :0.051702225583798146 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -The:0.3548846712884742 and:0.19764487354718768 It:0.18990499549524878 But:0.12927237801655034 :0.128293081652539 -to:0.9460620354603578 and:0.018386932990849328 will:0.01687409374690741 shall:0.011754436880453944 :0.0069225009214314605 -Smith,:0.5130376489988017 Jones,:0.18043470094505026 Johnson,:0.12150192490264186 Miller,:0.0993624251736675 :0.08566329997983865 -to:0.636627351217431 for:0.22039763436139326 with:0.07404501136577239 toward:0.04020317318705755 :0.02872682986834584 -to:0.5999583443401628 and:0.21760455377675625 will:0.07749822349826972 can:0.05580874963180492 :0.049130128753006305 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.5334820628668748 the:0.26313255556388326 all:0.10224184248516348 many:0.05338121947382653 :0.047762319610251854 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7250312864969556 their:0.09492065235624796 our:0.07264766884353907 these:0.06676872812979227 :0.04063166417346519 -be:0.3498340287272969 have:0.2932450170672016 take:0.17006410086849494 bo:0.1071984463746075 :0.07965840696239908 -acres:0.2538663025875314 feet:0.22887118938545342 years:0.2186631363915433 pounds:0.19169970698984543 :0.10689966464562643 -then:0.2892890469115505 thought:0.21243967521843737 did:0.1856184481504107 said:0.15947559060421268 :0.15317723911538877 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6652774463697706 for:0.21820715054730933 in:0.059335622765545194 on:0.030702576039925447 :0.02647720427744947 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -net:0.3803917980255062 average:0.22123907495277131 aggregate:0.18424668856793575 total:0.12066145688600187 :0.09346098156778482 -tained:0.47978923547552754 gress:0.19744915971699137 dition:0.14235288023248566 tracts:0.09171185428969976 :0.08869687028529577 -and:0.5049471699120814 in:0.14126882025688406 have:0.13723216871226987 was:0.11177169471045693 :0.10478014640830766 -to:0.8121641995019081 and:0.13985318218782897 will:0.023581590730555713 must:0.012388914949262345 :0.012012112630444605 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ties:0.7016749156276948 ty:0.17749307741709314 ty,:0.08418671787145442 lor:0.024770737417158323 :0.011874551666599212 -and:0.27444110375450653 who:0.25544667152216327 which:0.25169033001206825 he:0.1211806794023976 :0.09724121530886438 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -was:0.3051466391794173 has:0.2177055936642293 be:0.1676661556663166 had:0.15562057595843146 :0.1538610355316052 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 -all:0.5696338424888692 those:0.16182500674208602 more:0.12013513272543425 persons:0.09717970758341991 :0.051226310460190584 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -us:0.3964965206541392 you:0.2967653784735107 them:0.21488322341201618 him:0.05048194505126558 :0.041372932409068246 -in:0.4728154766892772 that:0.19272734411269457 by:0.13412057641488281 on:0.105580045606954 :0.09475655717619144 -of:0.8491198416297993 in:0.07808401143632764 from:0.027871543255951824 for:0.024917046537677453 :0.020007557140243788 -for:0.5332934046329924 the:0.21537262106978253 that:0.19555627653210175 by:0.02972827819351069 :0.026049419571612668 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -result:0.2348976511795785 following:0.21883624409225189 question:0.21288170737869797 fact:0.17837350394983845 :0.1550108933996331 -s:0.32716298125064236 North:0.2062840168759776 a:0.1871603570992554 with:0.15802188846783405 :0.1213707563062906 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9171355344869113 tho:0.038146241234326736 said:0.019788496987485343 tbe:0.016557861885443136 :0.008371865405833423 -showing:0.3622180796836837 see:0.18998505304581056 to:0.18428456027055076 doing:0.1583921887699754 :0.10512011822997959 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6131084540716396 he:0.11322386681086069 but:0.11270705783038874 I:0.09420212386348054 :0.06675849742363026 -only:0.3388733268787293 said:0.184066391876209 cost:0.17336515453697054 truth:0.151944597452788 :0.15175052925530327 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.360342811027477 being:0.241824978126149 the:0.18483431524348476 it:0.11142762674511617 :0.10157026885777307 -to:0.4305219102379963 will:0.2804039341756623 would:0.16807992856902826 asked:0.06700007731912538 :0.053994149698187756 -that:0.495726442086679 it:0.16405858954700633 any:0.13845583109575596 there:0.12454600181242366 :0.07721313545813513 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -wit::0.3021939301188946 them.:0.20649221786076075 him.:0.20124812714149273 it.:0.17824690288787012 :0.11181882199098189 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -standard:0.6326507357408286 coin:0.26801813246500683 and:0.06681276622540358 bearing:0.019348543915805122 :0.013169821652955823 -the:0.6244074330062508 rural:0.10380447563280236 school:0.09792576388302526 those:0.08715006533492563 :0.08671226214299621 -well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 -In:0.8532589515852386 Its:0.05314007834637563 If:0.03498195791770077 It:0.031914240079850886 :0.026704772070834177 -proceeding:0.5685423330286405 even:0.1515450015820258 interest:0.10513628148626193 sell:0.10132853324123596 :0.07344785066183583 -of:0.961934885340569 ot:0.014745413787457307 ol:0.010655242858316255 to:0.009739392737447143 :0.0029250652762102653 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -2:0.6344209251514648 3:0.17367201528169543 1,:0.0906008263528011 1:0.058563831350871856 :0.04274240186316693 -I:0.30630451533870556 you:0.24230439669180598 to:0.19156421705824142 ter:0.13864383326890026 :0.1211830376423467 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -system:0.3010461160015716 it:0.27910734265140685 which:0.18629368866338167 and:0.14778110135096062 :0.0857717513326792 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -corporation:0.4309337334438539 parcel:0.16027818825115464 otherwise,:0.15037797315719612 who:0.14098343376015993 :0.11742667138763543 -the:0.577559063671812 his:0.19195844387620192 a:0.1761252833542547 my:0.03238148045218752 :0.021975728645543948 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -than:0.33495146026813755 adapted:0.21648456539524902 able:0.21014737953546864 known:0.11969890059422557 :0.11871769420691929 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4148243358792873 any:0.20843853781094426 tho:0.1712667534783428 a:0.11212077205647977 :0.09334960077494599 -come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 -well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.32776030215086915 be:0.2335746316868677 is:0.2264908677653107 had:0.11322439857446467 :0.09894979982248768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6596745460461467 will:0.11777560392225636 shall:0.09291357458422472 they:0.06799670160084097 :0.06163957384653129 -first:0.550148556751419 second:0.20502826298803745 slightest:0.12713778810010323 third:0.06422144675362707 :0.05346394540681316 -of:0.678354928610069 in:0.1397243215258386 for:0.0788765093180987 to:0.05427304923385939 :0.04877119131213438 -more:0.33277374906451396 period:0.23369499781264458 taxes:0.20275323311834634 events:0.12981299429807763 :0.10096502570641748 -they:0.30704978239311403 it:0.25161728489132673 he:0.23007606134778166 there:0.12750160756287154 :0.08375526380490604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -little:0.38180766209169165 own:0.23851614968294857 a:0.22136545534988264 right:0.0957525627430948 :0.06255817013238228 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.2661730628832822 one:0.2297354587683611 order:0.17744579994179316 those:0.170617225275888 :0.15602845313067554 -time:0.48110766474368916 world.:0.13632204793128486 country.:0.13336293299084215 first:0.13281926250208542 :0.11638809183209846 -time:0.2957730108081622 time,:0.2721187144499509 condition:0.17358054111864654 system:0.14110264557200786 :0.11742508805123246 -the:0.6854451919402971 a:0.15565145710752393 this:0.06599914328316857 on:0.054772834326702775 :0.038131373342307796 -and:0.5424192165935046 at:0.17152606802120207 o'clock:0.1623979997109849 provides:0.06432365986228843 :0.059333055812020044 -sight:0.24476198750803857 care:0.2313408165099427 front:0.18854266427043823 use:0.18349335872353834 :0.15186117298804225 -the:0.6398413665112554 The:0.15215619815277895 of:0.13189036266074203 was:0.03982507084723554 :0.03628700182798814 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.5635359944525244 that:0.13016789836265774 of:0.11060352079975978 next:0.10324507844775717 :0.09244750793730082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.865410914435271 a:0.06111879716462412 tho:0.04400506749137229 tbe:0.019613366837119665 :0.009851854071613212 -been:0.9428060908560031 had:0.03360560160401301 ever:0.010693688185690673 not:0.006554316870038463 :0.006340302484254758 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did:0.3925822858754601 does:0.21287743862052322 is:0.21007721394429874 was:0.11822232897976435 :0.06624073257995353 -in:0.29372597196822003 thus:0.24965445721758311 the:0.20377550453845186 are:0.13574078730707695 :0.11710327896866808 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.833478826340426 in:0.06842321426691275 how:0.06508546519394058 to:0.017528407318953654 :0.015484086879767215 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3308209022881326 is:0.28228842016941214 was:0.170815175870395 has:0.13468197430139667 :0.08139352737066373 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -last:0.5208810677918766 past:0.1980313857899292 next:0.12753726861225395 first:0.09665353889593373 :0.05689673891000671 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.38161701791368025 by:0.24091225628745613 up:0.15622177716778538 with:0.1294754189070057 :0.09177352972407271 -the:0.8864438033883647 tho:0.03607026940529051 his:0.033406255484705126 their:0.025031829942013743 :0.019047841779625846 -hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 -latter:0.3626798200870765 most:0.1776349183053321 upper:0.1766224355229399 first:0.14602062870319607 :0.1370421973814554 -do:0.2515763858006961 be:0.24225826664325933 meet:0.19235028093637174 agree:0.16219014831695833 :0.15162491830271452 -with:0.3063362030971031 caused:0.26332433790627185 to:0.2284234375983594 for:0.10641598491032064 :0.0955000364879451 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.3345674602170162 he:0.24172186022518574 there:0.21661592776084573 I:0.13110951189674333 :0.07598523990020899 -the:0.43000162100977174 extra:0.20277893842558808 an:0.1527675245966058 West:0.15124999760833815 :0.06320191835969599 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -between:0.4323384107690971 in:0.27756303454481 of:0.21360811761842838 In:0.04278526265942455 :0.03370517440824001 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -New:0.6489594105870582 which:0.12108387199469409 the:0.09647099233676593 all:0.07107238150513864 :0.06241334357634311 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -dollars:0.3759494643440699 them,:0.2062293019395367 it,:0.19463627228439087 dollars,:0.11180390852680083 :0.11138105290520167 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -let:0.3894075280395848 with:0.3201596397422493 to:0.12478425108693933 for:0.0961797391621581 :0.06946884196906847 -building:0.2441800167499346 house:0.21813371644349838 is:0.19618968879064191 barn:0.1890785888280605 :0.15241798918786462 -the:0.25369655406143227 and:0.2446371080382442 civil:0.2077177605130572 naval:0.15535164790215658 :0.13859692948510963 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.3599367770172513 tho:0.18676963599904525 hard:0.15938168556527646 at:0.1516612530058869 :0.14225064841254006 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.29185978134679186 to:0.26578527797711055 of:0.1701383880145238 all:0.14939837217718638 :0.12281818048438752 -rights:0.2949414279041262 liberty:0.24407340498524105 freedom:0.1580735835286099 cases,:0.1538540763966292 :0.1490575071853937 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.3509676566703466 God:0.18678756054179693 law:0.1637121087466557 them,:0.15987718063860804 :0.13865549340259276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5306128495975732 the:0.3178257159915286 this:0.07113670769547421 any:0.04446062722978658 :0.03596409948563737 -all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 -is:0.38764439864417644 was:0.28440079072280955 of:0.19463372654488847 thing:0.06836399734263916 :0.06495708674548638 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ques-:0.46983825114782896 elec-:0.20628433207355923 na-:0.16387999537258324 sec-:0.10979303648564792 :0.050204384920380686 -a:0.6075707756442028 the:0.17712149746486855 his:0.08246395753724778 her:0.07234944807505862 :0.060494321278622205 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.9041743918397069 W.:0.045918351415347156 H.:0.016841255623634203 J.:0.016571315109507496 :0.016494686011804132 -noon:0.4861746885653024 home:0.2743646330328929 public:0.14606760158687557 prices:0.048713869749601714 :0.044679207065327624 -it,:0.28732793109763616 them,:0.27887578485896525 course,:0.19139267831219164 life,:0.1264002559654954 :0.11600334976571142 -people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 -he:0.5581305243299671 it:0.23961595070687036 she:0.11926486601601063 It:0.05392636240661699 :0.02906229654053496 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -up,:0.713423638621371 ting:0.10493762787287288 sit:0.08992367204044097 close:0.046646743198667406 :0.045068318266647624 -all:0.464293247877736 by:0.3807711190757165 the:0.06170185877737797 or:0.046783535934282174 :0.046450238334887414 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.3457124798725366 small:0.19323113408862208 other:0.1586262864350011 several:0.15346625907958494 :0.14896384052425535 -Jones,:0.6076120017986499 Smith,:0.1575363841174222 and:0.11973433227909969 Brown,:0.061815060567787225 :0.05330222123704087 -mortgage:0.37222054759223683 mortgage,:0.3668598300329682 lot:0.10059747927498155 piece:0.09940761333334588 :0.06091452976646764 -agree:0.24577768301251487 satisfied:0.2281064105653718 only:0.2027282920447116 do:0.16335569843877118 :0.16003191593863048 -all,:0.2544317711370932 named:0.2375868050128932 described,:0.20755032277430066 mentioned:0.1742363945450018 :0.12619470653071113 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -past:0.5181719962336802 said:0.17309641010480548 last:0.1178734855785957 city:0.10043658231009525 :0.09042152577282352 -let:0.5804271865232818 give:0.1265489458503707 to:0.11409842803942234 told:0.09064136303376173 :0.08828407655316331 -out:0.2420811422542122 up:0.23841635123119329 down:0.23731866696536766 him:0.15196808987314583 :0.13021574967608104 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -best:0.47859237456122555 latest:0.1508195130870333 other:0.15057705322039744 following:0.12240593259503514 :0.09760512653630861 -I:0.2983915653301816 he:0.29022548950715066 she:0.14301777287142917 they:0.13626111202774366 :0.1321040602634949 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -and:0.31353902627609065 county,:0.26441698579024275 street,:0.1579784228517093 City,:0.15756136961785017 :0.1065041954641073 -to:0.5512054150376674 in:0.1534262293746178 and:0.10194839551395223 by:0.10141916521029491 :0.09200079486346768 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -com-:0.43443734026526437 com­:0.20055967724415186 judge:0.19399963988761496 -:0.09326591422831079 :0.07773742837465801 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -State:0.2888449817530109 people:0.21976385579517707 city:0.16897620189430154 stock:0.16226177562442923 :0.16015318493308128 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7611719953286011 a:0.12564895558518516 his:0.04669857728472907 tho:0.03722793075649269 :0.029252541044991944 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -that:0.327272472566214 as:0.3227024998506 and:0.15839396453744317 when:0.10204139571260452 :0.0895896673331384 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 -large:0.5207518450709158 small:0.1463040626963172 certain:0.12190102432201719 total:0.12178955622346574 :0.08925351168728406 -not:0.36116429189647836 in:0.19222718335719152 to:0.18480426666810834 as:0.13324811211622656 :0.12855614596199513 -they:0.3364834850170355 it:0.3125753064128827 he:0.15942274587787134 you:0.10642066372577104 :0.08509779896643936 -other.:0.32410154526574464 room.:0.18336223184445624 earth.:0.17567075298642504 people.:0.1683157564364924 :0.14854971346688176 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.2689740323678009 to:0.20536947251215018 without:0.19435578249344426 in:0.1735288146656916 :0.15777189796091307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6696542362564777 and:0.12184047638585109 with:0.11538567874463042 of:0.052334222070345604 :0.04078538654269511 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -give:0.540121957088857 make:0.18610670001460478 have:0.10241613089139814 let:0.09531601438406731 :0.07603919762107286 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.468658745048621 but:0.2682942206682957 is:0.1125213896320406 that:0.09635880554918706 :0.054166839101855664 -tent:0.7246701299155669 lar:0.08157050537107156 tion:0.06995233378072395 ice:0.06700996951459828 :0.056797061418039405 -the:0.3156355873258667 any:0.3045374688723408 a:0.24729435830172908 being:0.08121380649379081 :0.051318779006272554 -J:0.27738589653537904 C:0.19815778246736848 W:0.18954299970325744 B:0.17292983382284835 :0.1619834874711466 -r:0.3798230810193567 one:0.19723046625050694 resident:0.16294587219526113 out:0.14904454131580297 :0.11095603921907222 -as:0.27935704426109065 that:0.23845597018017975 and:0.21480808432362386 which:0.1747831795212046 :0.09259572171390115 -of:0.7224585327093833 to:0.09127669032250756 in:0.06905666396805717 on:0.0626649608575338 :0.054543152142518064 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 -as:0.6579776821435981 enough:0.17703520255551422 back:0.08059114267304231 superior:0.0538634450846079 :0.03053252754323744 -they:0.38108089502889236 we:0.1964965124576129 one:0.16628935031300074 it:0.13194475220768248 :0.1241884899928116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -2.:0.31772372074890837 I:0.21747621651691051 others.:0.18439855790256268 will:0.1457097682806519 :0.13469173655096647 -who:0.7683122222400145 would:0.08598855571260913 should:0.06685621622024607 to:0.04666842318713804 :0.032174582639992184 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6273522765866758 in:0.13762524428843692 and:0.09597596745062598 with:0.0701049525549083 :0.06894155911935296 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.31193080599670475 in:0.24766051126330121 for:0.16882936320537606 from:0.14401186640650512 :0.12756745312811285 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6092006375402592 no:0.1691833813538581 the:0.10648872465278673 very:0.06028850552803811 :0.05483875092505782 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.4354934839296862 a:0.3904121074861939 one:0.10261342672273316 exceeding:0.038886914130411114 :0.03259406773097571 -any:0.36976541108122085 and:0.21968632977884867 no:0.17910428602648518 only:0.12659409494638846 :0.10484987816705668 -a:0.3327547161949255 this:0.31359307520772806 the:0.2728138130934273 every:0.04144263402483088 :0.039395761479088326 -in:0.23403823572829116 and:0.221180499143935 with:0.22013634501701562 to:0.17636819760248465 :0.14827672250827342 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6580781678622455 now:0.11062960108839069 doing:0.0844386122236465 quite:0.08079790846829538 :0.066055710357422 -mind:0.35209230212251397 ideas:0.18967727677996066 arms:0.1762833683056126 opinion:0.16914301802141582 :0.11280403477049698 -new:0.28555225410016716 peace:0.2853605915732939 present:0.21744962919065092 canal:0.11054397577486277 :0.10109354936102531 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8091542181793221 their:0.07938798671463893 tho:0.038580729116924554 his:0.03774437668945894 :0.03513268929965558 -of:0.6142313788154962 in:0.18792334683532355 on:0.07812970424913936 for:0.06469592880454803 :0.055019641295492736 -United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 -occupied:0.3013858796728984 owned:0.2935024326886055 made:0.1541550021602174 purchased:0.12732015733120403 :0.12363652814707456 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4730193252305811 in:0.1830209082538783 and:0.14877624994268376 on:0.10951953812362644 :0.08566397844923039 -be:0.5572695471898356 see:0.23170016990268932 show:0.13641027222927501 bo:0.04095964895352245 :0.03366036172467754 -which:0.2910303268738953 that:0.27271541499979146 said:0.2041969063627642 whom:0.1477033927097292 :0.08435395905381984 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other.:0.6172422920599787 year.:0.15763305681927953 day.:0.1458938353778805 month.:0.048827824366886256 :0.030402991375974943 -said:0.40978557905863605 my:0.34959862742283726 his:0.10056412768679414 their:0.08843915815739946 :0.051612507674333175 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7257044760185918 a:0.14897377240473778 this:0.06366804082533772 tho:0.04006457394658578 :0.021589136804746924 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -at:0.35345336927402937 the:0.24703592516797007 of:0.20581660565595755 a:0.10477695353853402 :0.08891714636350906 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cows:0.3919568857318498 products:0.3147178570775789 cattle:0.1434594846227436 farmers:0.08092842602709921 :0.06893734654072846 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -way:0.2501637392820881 coming:0.2188359812720262 back:0.21196423514768567 fall:0.1727115515396201 :0.14632449275857995 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Adams:0.2648480864650115 the:0.20218667228463882 Main:0.18906444773502754 May:0.17289050155551536 :0.1710102919598066 -man:0.2745651810264176 time:0.19222317488609308 one:0.18701099191501802 there:0.18339190808650546 :0.16280874408596577 -of:0.8774900718916167 in:0.06111101494263524 to:0.02277480734954802 at:0.020430452896929283 :0.01819365291927085 -.:0.26642914243584953 j:0.260911673067711 |:0.2154221874608992 by:0.14407482465290214 :0.1131621723826383 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 -important:0.2620077795049094 money:0.20643055559641854 effective:0.18644314495602088 rapidly:0.17713521709650543 :0.16798330284614582 -and:0.745624913160398 near:0.11256905433941396 of:0.08255538783941212 were:0.03499551650691449 :0.02425512815386144 -getting:0.46718838208856545 her:0.1720699701166649 itself:0.1257867384787591 bringing:0.1182934657613172 :0.11666144355469314 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -as:0.45312323055696313 that:0.28302909837556167 many:0.13736092890957624 much:0.06674857564967565 :0.05973816650822336 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -into:0.4469053386689673 for:0.18969006533151722 of:0.16389267883524214 in:0.10258057953850908 :0.09693133762576413 -William:0.23966658944829564 John:0.22607987373748262 James:0.20032051322330993 Charles:0.17218875192282848 :0.16174427166808333 -to:0.39610123010941367 for:0.30284045274417587 of:0.21489357292814043 and:0.05922659844151001 :0.02693814577676005 -that:0.26938246869781546 hat:0.2415476615615519 and:0.1970473169617916 which:0.15038317357021386 :0.14163937920862726 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tied:0.3104405419713267 live:0.23141782139529601 die:0.18846930713447338 o:0.14032210367751796 :0.12935022582138614 -of:0.2840747126245008 or:0.2729446146262182 and:0.1669336740360221 thousand:0.15187949892938082 :0.12416749978387812 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2390646999452482 in:0.21956363421132438 of:0.20474307552468665 In:0.1919522570622825 :0.1446763332564582 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.31799270619423115 real:0.2138008810639713 only:0.19516636226623735 a:0.18932965259866139 :0.08371039787689881 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3781982561317804 at:0.3357947051421796 on:0.12407550729348882 to:0.10879928136530607 :0.05313225006724506 -the:0.8473511785844805 said:0.0567279401611449 tho:0.049039468833554874 tbe:0.023530270304487573 :0.023351142116332317 -the:0.8741784887448942 a:0.053079899510374784 tho:0.04126430892636956 our:0.01813467803510773 :0.013342624783253739 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.33132830401348223 council:0.20990255725438375 clerk:0.20729109447841187 mills:0.13777491129793923 :0.1137031329557831 -the:0.7546411635735251 several:0.0761491266845296 various:0.07185640429430167 other:0.05380041193946655 :0.04355289350817716 -has:0.5444986879851371 had:0.23003908530779077 have:0.12167224653235528 having:0.08122302413022471 :0.02256695604449222 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.4540861895922527 could:0.19245320101181734 can:0.19078922141032414 and:0.09199719330012464 :0.07067419468548107 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year.:0.3297496846293709 man:0.24101471810156205 part:0.1791527864822918 point:0.13129677440001622 :0.11878603638675908 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.29618276869446397 this:0.1972683963530672 in:0.17524557374552285 running:0.1752440663977757 :0.15605919480917013 -to:0.6333208878942317 under:0.11709453017259322 and:0.1134509067314325 will:0.08423289493358829 :0.05190078026815432 -be:0.45856897201271624 have:0.24462175771370687 make:0.15052145331346825 see:0.08642372453167914 :0.05986409242842929 -government:0.32816086984516035 Government:0.23363977043819453 subject:0.18561919076401306 troops:0.12947786649010015 :0.12310230246253197 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.5393445584056685 this:0.19172556426780882 a:0.14867597265720414 every:0.07872176569152378 :0.04153213897779465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.29954315579055807 them:0.234032497325881 law:0.1989588797359699 those:0.14317201773033747 :0.12429344941725347 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.6884467268319573 up:0.13074894433974654 in:0.10784995594867232 at:0.048436136389012945 :0.024518236490610825 -of:0.24359681287405305 1.:0.24170168227285316 1:0.234801682365355 and:0.1422517872435192 :0.1376480352442197 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -home:0.26286055368536093 friends:0.2322107141819424 life:0.20389665008456553 hand:0.15553758543332877 :0.14549449661480246 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3125128301983535 on:0.2851671563274733 of:0.14259571656165074 within:0.13999023170552077 :0.11973406520700174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9110844038791525 tho:0.03397786086252092 its:0.027168659798980893 tbe:0.015115883544734013 :0.012653191914611719 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.2964521837751925 to:0.2402091353543849 at:0.22777691361254712 by,:0.13405046546142976 :0.10151130179644571 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -::0.38522921233411195 made.:0.32582777533118595 alike:0.10922085512398676 here.:0.09367498387453567 :0.0860471733361798 -country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5143919205336279 are:0.1382514709653817 time:0.12865646934778513 were:0.11709313655648687 :0.10160700259671843 -the:0.4741767315172348 a:0.20131362183854806 make:0.14508652445155412 be:0.14129013434041962 :0.0381329878522435 -the:0.5917588111081749 at:0.22104649966609785 to:0.06555580244259834 a:0.06425812066688066 :0.05738076611624827 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.869967515582271 Democratic:0.03980171415438008 District:0.03576311272091193 District,:0.027911624110143068 :0.026556033432293773 -of:0.8455079451298888 in:0.058021497762959416 to:0.04350099470391134 and:0.028136814854024597 :0.02483274754921572 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -•:0.2688454367043203 s:0.26024166276464994 *:0.2168897535189886 it:0.15812574530203202 :0.09589740171000909 -so:0.2613475267801222 now:0.22782013509150073 sure:0.18209768682016428 aware:0.17602634462506325 :0.1527083066831494 -in:0.8964489303828808 In:0.06081553146684094 to:0.019425468758714245 iu:0.012075326770275393 :0.011234742621288714 -we:0.41851162656481544 I:0.2968444009169367 the:0.12670491557145394 they:0.11374621191596145 :0.04419284503083235 -difference:0.651250207301985 terest:0.17547122067928034 formed:0.09084629719108359 crease:0.0682466475464107 :0.014185627281240343 --:0.31988009016487673 •:0.22549595392095742 r:0.2064292183853117 thu:0.15915887623479866 :0.08903586129405555 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.547614833293185 a:0.2178820360229446 him:0.1195683569161856 that:0.05902531543756725 :0.05590945833011754 -made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 -wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2992371820317246 we:0.2128879800149998 which:0.18404485806707363 they:0.1548956855390326 :0.14893429434716943 -one:0.3847203537933439 day:0.2722940194206343 date:0.1514943363126427 all:0.09631390718136446 :0.09517738329201458 -way:0.2491231754921462 straight:0.21700691100115818 deep:0.20673272931679262 man:0.17083775952785168 :0.15629942466205127 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.347003996182018 a:0.21628768006963633 entire:0.1721053548483423 additional:0.1597005992088408 :0.10490236969116269 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5469470607282613 this:0.15291095361012622 any:0.13287716350475326 present:0.09001949409318984 :0.07724532806366959 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.370110651469863 and:0.2521766138095122 is:0.13972609436339462 has:0.1200503285880972 :0.11793631176913297 -the:0.4023533405744373 a:0.20349210637741638 and:0.158909174939737 in:0.15281259566253838 :0.08243278244587082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.27373181542128633 that:0.20864543739718006 say:0.1920316293263952 whom:0.18661564805931516 :0.13897546979582326 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5548939880856164 is:0.15702375126590132 can:0.11525187021658008 he:0.08753793470267508 :0.08529245572922713 -that:0.5703739976765094 as:0.15513010010958408 to:0.1091456817176342 in:0.09006868148296422 :0.0752815390133082 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -part:0.454613411254845 one:0.26371512194733043 kind:0.12169999297098999 portion:0.10910391434629338 :0.05086755948054118 -the:0.7141112213083551 a:0.1904490770829621 his:0.04778730048563264 every:0.030766771786540123 :0.01688562933650994 -which:0.4824471223799693 that:0.19655440656726736 it:0.15362211565014303 as:0.08709869984620454 :0.08027765555641588 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4724799695201598 to:0.17182770066857248 en-:0.12738617294329763 a:0.12466986003764201 :0.10363629683032798 -now:0.3884163732654954 there:0.3330485788090122 hereby:0.10834240239099173 here:0.09160630942140595 :0.07858633611309483 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4983196971590616 a:0.38357491257094517 no:0.0587114754917366 of:0.030962525640751186 :0.02843138913750533 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.30444998494770814 that:0.269330656087492 by:0.23865131675883902 in:0.11356305811180584 :0.07400498409415493 -that:0.3845379215567691 and:0.252031809984556 when:0.13330291903637476 as:0.12007195741074002 :0.11005539201156009 -been:0.5647553182275784 never:0.24289572555801622 ever:0.09335910957229276 not:0.06893029302541442 :0.030059553616698036 -the:0.7278484992709283 his:0.09835338961501441 their:0.0793390776240207 its:0.061355179580951325 :0.033103853909085094 -said:0.40785917986697134 the:0.28853883237842104 this:0.18147920682172106 Lake:0.07781585254243581 :0.04430692839045105 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.45443743193321195 o:0.2024628015074792 of:0.150006841769812 <:0.09732583945830246 :0.09576708533119431 -made:0.3329805218831581 taken:0.24479312277689416 put:0.17651637928573538 built:0.12835540915392704 :0.11735456690028538 -easterly:0.22475202130079436 westerly:0.2019633634683971 southerly:0.2013213352267667 northerly:0.19326395839022983 :0.178699321613812 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5493868840877709 his:0.23922814623569166 her:0.08509601767215984 my:0.07328885607743169 :0.05300009592694565 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -who:0.6733268045544393 he:0.13076223236185547 and:0.09024293646471801 woman:0.07341675361179323 :0.03225127300719407 -of:0.5210296674028433 that:0.23731403168495205 between:0.11609271015029816 with:0.08473310975040102 :0.040830481011505465 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.41800004231412 them.:0.23795150443972227 of:0.22215996398362442 as:0.06519675273769852 :0.05669173652483477 -in:0.30392566380195185 and:0.25578792847257836 at:0.1938850112322027 of:0.14768676668960012 :0.09871462980366692 -C:0.2760196920526406 W:0.19147491521512677 M:0.1819509935530578 S:0.17554370608885986 :0.17501069309031517 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.48903864608552594 had:0.2792755011122126 was:0.14531597601588958 lived:0.04531616640764583 :0.04105371037872608 -beginning,:0.296544243909688 human:0.21219154367094 this:0.19293328318988984 them:0.15976401534510598 :0.13856691388437625 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.29912866345865513 of:0.19680687780510017 believe:0.19650739072428697 say:0.1581252572048741 :0.1494318108070835 -been:0.5009502473113999 seen:0.13765824456167317 gone:0.13601920486781582 made:0.11921069003233738 :0.10616161322677378 -of:0.890118952579766 ot:0.03174611082135225 by:0.031014860262709793 and:0.025823896761300577 :0.0212961795748715 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.5773165624430431 reason:0.17595641688082814 excuse:0.09111279616560516 way:0.07927571720603267 :0.07633850730449103 -side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 -in:0.633861954447368 In:0.12127298856772677 hereby:0.09016752316414782 the:0.08863608124822647 :0.06606145257253078 -in:0.3555376612880513 of:0.27108030598882527 on:0.18771261160038766 at:0.11475888180086136 :0.07091053932187427 -ready:0.25901070113596497 going:0.1984609996187763 not:0.19532618562606505 likely:0.17882635437966565 :0.1683757592395281 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5261854846617042 and:0.31300905126194434 will:0.06978527514491342 them:0.048636158421205326 :0.04238403051023262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9221142607696489 tho:0.02555696415978437 tbe:0.022369200036832702 his:0.015107521650545344 :0.014852053383188712 -their:0.302409556748665 his:0.26292678655803475 the:0.18367668870634626 and:0.15813593522928862 :0.09285103275766528 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3844326581074033 will:0.31860302899072973 can:0.10617109309282674 should:0.10152376265059432 :0.08926945715844596 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -2.:0.28184895029877405 1.:0.2585829331769319 3.:0.16160174154619905 4.:0.1604800881967652 :0.1374862867813297 -recently:0.4882328702493719 frequently:0.2104306854211232 previously:0.16016900109940146 lately:0.07334791071298218 :0.0678195325171212 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -paid:0.577331141168358 asked:0.1488500458802321 and:0.13821018458517476 are:0.0686412853701034 :0.06696734299613172 -box:0.30783643037770886 lot:0.2744209244955253 ,:0.1653599333642011 piece:0.12980459115198406 :0.12257812061058056 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ture:0.2729460130669568 tional:0.22797623036842796 tions:0.18264980512251194 tion,:0.17420412725102935 :0.14222382419107382 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -been,:0.37563662046810975 done:0.25223242766000076 been:0.15066493460806935 done,:0.13452448833924033 :0.0869415289245798 -results:0.34020163558750843 letter:0.23769587295643999 character:0.14653870696756105 way:0.14561090748014135 :0.1299528770083492 -of:0.7386147421814668 in:0.10182876308908535 the:0.08990403421132595 that:0.04067326237391221 :0.028979198144209514 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -meeting:0.5131636637567835 report:0.2678516149255785 salary:0.08100878600378504 session:0.07323050346484905 :0.06474543184900396 -fact:0.4570022760301214 in:0.2129410371177454 and:0.12997058502460962 conviction:0.12007903438361445 :0.08000706744390922 -County:0.25238105257050786 deed:0.24715346637445168 county:0.17341080776496423 Board:0.16569919638178154 :0.16135547690829463 -from:0.29369345668332925 to:0.21248557882706343 year.:0.21189823931494062 when:0.15823033722846155 :0.12369238794620521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.25474368733427766 to:0.20858020383792142 with:0.19065153051432587 that:0.17627535069184216 :0.169749227621633 -not:0.2458099955423775 well:0.21930018403594653 a:0.1806932935370732 usually:0.17984058648458692 :0.17435594040001595 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.3094051313129183 the:0.29195286937547793 do:0.13530332926987781 go:0.13245230508424338 :0.13088636495748251 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5573183786312482 or:0.27729624661076 within:0.06205417766554061 for:0.051961613186707514 :0.05136958390574362 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.8274330630122914 of:0.10876676357481892 in:0.029457387349588693 is:0.019290474162063136 :0.015052311901237838 -many:0.7476833986997439 American:0.0888785544677321 old:0.05877770616446957 working:0.0565353601260908 :0.04812498054196372 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sec-:0.7413904998602087 na-:0.21662904980584985 op-:0.027927146246607654 -:0.010552011693985671 :0.003501292393348051 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3731408529708806 of:0.17540776816127193 Smith,:0.17210275633224956 Hall,:0.14990763109617264 :0.12944099143942517 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -nothing:0.3501495045242801 time,:0.24593001479632265 day,:0.16280333792172794 is:0.13148700351391812 :0.10963013924375109 -so:0.34458202558020484 found:0.2171190151842803 given:0.19073618721471572 suggested:0.1276956811315772 :0.11986709088922202 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7408921911568755 and:0.12011618839188495 time:0.05996035985775073 in:0.04542575514682333 :0.033605505446665594 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.3067366132616776 things:0.24223945917791095 people:0.2265463871188521 lands:0.12897554715139256 :0.09550199329016672 -which:0.4169091073934834 trouble:0.22342393510779465 smoke:0.14449246114177425 discussion:0.11073018411120936 :0.10444431224573845 -he:0.38599933766009403 she:0.208392325789077 I:0.17970351070041185 they:0.1309186655914118 :0.09498616025900533 -would:0.5009743112301059 might:0.17406231211753273 may:0.1363940963514474 will:0.1194423509393418 :0.06912692936157211 -Mr.:0.35226637650220205 Gen.:0.20721510797479836 the:0.15660575670608037 President:0.1451463132489666 :0.1387664455679526 -in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 -it:0.2731905881172946 such:0.26544741930620214 in:0.20636560354666175 you:0.12756099886241332 :0.12743539016742816 -held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -his:0.3486457300655126 their:0.2626512406747352 our:0.21967212302525618 its:0.09379913913052267 :0.07523176710397358 -that:0.6497356619659624 it:0.13338065439943717 there:0.08828470237318589 he:0.07222389160127571 :0.05637508966013869 -a:0.5414998858149273 to:0.28000313199506693 in:0.09731697905051184 the:0.0455485607487328 :0.03563144239076111 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.69860202158146 in:0.17410755602728106 and:0.05102239628371365 toward:0.042477089202746364 :0.03379093690479906 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.2455173815927154 city:0.21862132776476306 county:0.1882611855521948 people:0.17628356050102054 :0.17131654458930623 -wear:0.22847505361841264 carry:0.22816628589501467 shut:0.2074858138491707 went:0.1718685318344906 :0.16400431480291142 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -suddenly:0.27375083209242085 then:0.2549289102386579 also:0.16664001163745631 immediately:0.15546592461437103 :0.14921432141709398 -fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4939240415683883 to:0.2053567412096026 in:0.167034780555648 for:0.07083546748917881 :0.06284896917718227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -line:0.9506948607758667 lino:0.037005267670832155 lines:0.0054774919678048425 board:0.0037227442587954344 :0.0030996353267007085 -who:0.8209610446282987 he:0.06076464029639635 and:0.05427050541258577 there:0.0339494596625462 :0.030054350000172904 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5803360674224338 the:0.16207335441691015 law:0.11927571263203685 district:0.0836840698175354 :0.05463079571108382 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9009939144634487 on:0.04171625326609539 to:0.02676332215116651 ot:0.01697521096868034 :0.013551299150608972 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2788042534688078 country:0.19545941946755727 world:0.1930913123452917 city:0.1704606403572238 :0.1621843743611195 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.5151178829684255 of:0.20127635579980102 how:0.12547841499495035 whether:0.08045239678119318 :0.07767494945562992 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9220090277425222 tho:0.031046433886193457 that:0.022204617861076806 and:0.014590318711395779 :0.010149601798811806 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -members:0.28697623092247804 line:0.22049608048208588 system:0.19626309695502045 method:0.16433291694990163 :0.13193167469051406 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9078091203008025 tho:0.04123588232844596 a:0.020343208434999312 tbe:0.020228986317300718 :0.010382802618451417 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -relating:0.30721194026212467 as:0.1891505785495765 is:0.1879803368038034 and:0.16265694372917372 :0.15300020065532163 -as:0.4836429270936195 in:0.24350159585971368 a:0.13127086872434193 the:0.07440042733422693 :0.0671841809880978 -ports:0.2956904883828332 ported:0.23254199205376058 port:0.17465630894891104 a:0.15181058965250555 :0.1453006209619897 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.5200872275914584 fact:0.16437791629934292 most:0.15935115670296265 care:0.08254134545262785 :0.07364235395360795 -are:0.33465354684222387 did:0.2459594534360311 do:0.1557007932054442 were:0.14765790000934043 :0.11602830650696039 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3022152996808585 tain:0.2861195264282406 !:0.14220535879145133 t:0.14178987533106352 :0.12766993976838598 -that:0.3575553260554414 much:0.33209544749747183 far:0.13765906435989972 as:0.08710974826161941 :0.08558041382556766 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8687996122228396 only:0.08044998011197459 help:0.026509754025421398 receive:0.012895358537980173 :0.011345295101784213 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5020427669107871 a:0.32886140676658837 as:0.06785903711894506 all:0.058275709934557364 :0.042961079269122016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -claim:0.309586451162503 mine:0.24619473569450934 de:0.17069662529023327 aad:0.1556018586747384 :0.11792032917801602 -civil:0.48136075353696706 late:0.16040658810875907 present:0.13844832695089956 world:0.12593301613387953 :0.09385131526949476 -held:0.24584933786189606 made:0.24188173958470283 found:0.19584052041634242 placed:0.16600940393893399 :0.15041899819812476 -tered:0.531136974157663 tire:0.13792570855445907 force:0.1338774320073863 joy:0.10294068503321752 :0.09411920024727422 -is:0.5145091884522207 was:0.24980331045118834 are:0.1277860204686298 has:0.05654701427855017 :0.0513544663494109 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Miller,:0.27743500921310316 Smith,:0.26526704946024926 Williams,:0.17929456678713798 Jones,:0.1483414463137047 :0.12966192822580486 -and:0.5796147326620005 who:0.15606462450108102 was:0.12144431963486396 were:0.08767534979228457 :0.055200973409770135 -as:0.5423266732709874 which:0.16710706429184263 and:0.11853618124387073 there:0.0886122254837213 :0.08341785570957816 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -un-:0.4780555840611123 or-:0.25079543314168556 un­:0.1218487286958343 un¬:0.11740330545039498 :0.03189694865097276 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 -is:0.3807673094299777 could:0.25323651879165515 does:0.16518438665083907 has:0.10195590136962408 :0.09885588375790405 -the:0.562363948044362 an:0.2847694209065546 every:0.07148990896941924 early:0.04588899987230486 :0.03548772220735923 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -recognized:0.4538139150999593 be:0.20647516939596475 and:0.13910511847928392 described:0.10405895085147471 :0.0965468461733174 -the:0.870038144477316 tho:0.041154427849807246 a:0.040711885602578546 this:0.03407968606705724 :0.014015856003241213 -the:0.8106249321535038 a:0.09564063269660189 tho:0.04370077472703774 this:0.03180143333766522 :0.01823222708519119 -be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7608798684649742 in:0.07133885232717116 to:0.06277278877376864 and:0.060655483155753136 :0.044353007278332926 -and:0.4521080501963427 but:0.1581407676900149 in:0.15198190144025353 for:0.12716359301104735 :0.11060568766234148 -the:0.9293963517345689 tho:0.04064636115310506 tbe:0.019764705874701208 this:0.005247230105721756 :0.004945351131903065 -order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3634879144300244 good:0.30966395562214727 man:0.17139748528980608 men:0.10104159561554775 :0.054409049042474456 -could:0.3779243238043719 don't:0.2767489445499742 would:0.1818000487366052 I:0.08661209908709856 :0.07691458382195006 -others.:0.4021272406355896 children.:0.17700551140968465 wife.:0.16179531225908292 night.:0.13250235032308277 :0.12656958537256005 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 -Main:0.6047423111456897 Third:0.1432866653007422 Second:0.09682922310000239 Fifth:0.09356798489215445 :0.061573815561411394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.2788042534688078 country:0.19545941946755727 world:0.1930913123452917 city:0.1704606403572238 :0.1621843743611195 -who:0.7927642213346489 have:0.10361555459510771 had:0.06927070543566956 having:0.018563939184355133 :0.01578557945021879 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6032625592253907 Miller,:0.20493297697239096 Smith:0.08967223820500095 Johnson:0.05417365789893044 :0.04795856769828695 -carefully:0.3881964544520598 well:0.21779685112841202 not:0.1640996982503788 so:0.11835253113219407 :0.11155446503695528 -it:0.334968749667274 a:0.30260138693704847 to:0.18024058723799768 j:0.11716436551788849 :0.06502491063979132 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -Smith:0.2691060623642617 Cleveland:0.20503122640097637 Roosevelt:0.1936709511508493 H:0.16880368541973512 :0.16338807466417746 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.27538398139566567 record:0.253327882894937 them:0.23597652483301557 it:0.11870854353010851 :0.11660306734627318 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -son:0.31804235838184447 and:0.21234687137905148 causes:0.15952055250621347 way:0.1553912826057058 :0.15469893512718477 -the:0.8415523403002025 any:0.06358511697012248 tho:0.04217782163858601 a:0.030047604102117785 :0.022637116988971293 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sup-:0.45964015534544644 pro-:0.2635707500227403 com-:0.11375264152059984 im-:0.0914126464943975 :0.07162380661681597 -considerable:0.43882615027276567 reasonable:0.2970779751365986 great:0.12310598176956492 one:0.07458750405453791 :0.06640238876653284 -world.:0.25570111589052535 country.:0.2478724246294853 water.:0.1733327394687571 city.:0.1650164952799333 :0.1580772247312989 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ten:0.31378307162216945 fifteen:0.21941698892806424 twenty:0.19979011488152248 thirty:0.18206536167824539 :0.08494446288999852 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.652939353182606 into:0.15173898829075338 by:0.09996885208585823 and:0.04827139238719609 :0.047081414053586394 -Judicial:0.9968847134656892 School:0.0020789431874501186 judicial:0.0005451877289421391 of:0.0003193530736811239 :0.0001718025442373645 -easterly:0.22475202130079436 westerly:0.2019633634683971 southerly:0.2013213352267667 northerly:0.19326395839022983 :0.178699321613812 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.3348274613733447 in:0.23710316696737255 of:0.1806311660505151 along:0.12680030523224609 :0.12063790037652163 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5957796450533461 at:0.2206189602413261 in:0.09727476476860157 made:0.04532549210882733 :0.04100113782789889 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5569545890357793 a:0.3287634905002705 so:0.04642714331789444 the:0.03682789485834736 :0.03102688228770827 -the:0.5054786513770179 tho:0.22378076381598191 other:0.16053730709286948 mineral:0.06425147529836836 :0.045951802415762355 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.4770830202141194 of:0.22268859196692287 In:0.1586008714535465 the:0.1117692060974248 :0.02985831026798629 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -of:0.5146770992104123 and:0.1586349688644518 in:0.1367383204428224 to:0.09528541618766753 :0.09466419529464583 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -real:0.9097314052823648 large:0.039716949134731484 personal:0.02594316063888138 vast:0.014165498316477638 :0.010442986627544506 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 -charged:0.28447468010918575 filled:0.21161528182676687 connected:0.2029665291940817 covered:0.18638704729946215 :0.11455646157050348 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -fixed:0.49097819553670086 required:0.25288576820498554 and:0.0972430620466426 established:0.08860436049012133 :0.0702886137215497 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.35592266086034474 point:0.24130479517609796 change:0.14696324754392406 part:0.1304589583290741 :0.125350338090559 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.4398365230115333 is:0.3065747604773251 in:0.15346355173111056 now:0.05258079458318048 :0.04754437019685063 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.6696542362564777 and:0.12184047638585109 with:0.11538567874463042 of:0.052334222070345604 :0.04078538654269511 -the:0.2510696500227175 Mr.:0.22279352809304298 her:0.20694398259308697 this:0.17356783490954075 :0.14562500438161174 -the:0.891014588173277 his:0.038587551535390376 tho:0.030282738385897 their:0.020549087743881204 :0.0195660341615545 -to:0.3949866486287141 that:0.20337432628928745 they:0.1826444507783497 I:0.1546092252838405 :0.06438534901980836 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.44216749425552027 in:0.222673168934443 some:0.11764351267850402 the:0.11406049330418963 :0.10345533082734305 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -has:0.5413648139410977 have:0.23813829070455397 had:0.19882814980727118 lias:0.01477099914420752 :0.006897746402869612 -he:0.3126514628443462 I:0.2795910576113839 it:0.15111653259260338 they:0.1501502974833131 :0.10649064946835342 -directly:0.3634751695678491 side:0.3341562872877761 personally:0.10467769834073286 one:0.09936494127169813 :0.09832590353194381 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.8401474357190448 A:0.12335830223136597 Jones,:0.015657068346172507 aud:0.013765862447687708 :0.007071331255729012 -in:0.3431115071583359 from:0.21728357871580836 of:0.18045152073123202 to:0.17621194979671145 :0.08294144359791226 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -turned:0.3046250826414652 spread:0.1800727027085132 with-:0.17726079711771825 brought:0.17008364340536025 :0.16795777412694307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.705852769788973 or:0.264652833007949 of:0.011240891381665254 courage:0.009296809268729686 :0.008956696552682985 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8109737182189743 future:0.06797453723758992 a:0.056347601995320004 tho:0.034889925924714286 :0.02981421662340129 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -morning.:0.34123564460887046 afternoon.:0.20083080813991955 evening.:0.18376929726353086 night.:0.16210734040492236 :0.11205690958275676 -the:0.4635775983609416 an:0.24556670540873626 his:0.2017373868082575 any:0.050192888516642456 :0.038925420905422066 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.31709036776466276 and:0.28490729911205065 in:0.16371239338209392 to:0.15831486148225968 :0.07597507825893289 -went:0.26052615730031653 carried:0.2103491086630619 came:0.20205044931662372 broke:0.18699900669260355 :0.14007527802739436 -of:0.8071351556531744 in:0.09411442405842035 ol:0.035881726833453406 with:0.032299126085001 :0.03056956736995096 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -passing:0.3070310810880984 turning:0.22991645010817632 taking:0.1985513742656137 going:0.1554562877436518 :0.10904480679445978 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.32378109654888937 the:0.3086559597221125 that:0.19559264883751484 them,:0.08943797116227893 :0.08253232372920422 -other:0.4567021023432377 foreign:0.19587412093368237 two:0.1340776180325904 European:0.12502523411521355 :0.08832092457527585 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -tell:0.3508177250467423 give:0.2530171921237043 do:0.2207731296506232 make:0.10631782769977638 :0.06907412547915392 -the:0.816805611692034 a:0.07702225398613055 this:0.06712161261137804 tho:0.0198302849215047 :0.019220236788952665 -and:0.35134143831708375 as:0.34173957585343434 that:0.15581442123498568 for:0.0811466473571714 :0.06995791723732482 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3495949220692509 the:0.185788317315961 for:0.17707609351666476 and:0.1682070368979891 :0.11933363020013413 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.23532520669498327 is:0.226963362838455 was:0.20057528162963223 are:0.18386514933230236 :0.1532709995046271 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -post:0.4344202654628039 wife:0.17147607893798694 lot:0.15944340816933633 book:0.12476161592988406 :0.10989863149998871 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.6967588573648104 went:0.10287062086635117 came:0.0702259944057034 was:0.06886338245421926 :0.061281144908915904 -being:0.566212026253132 be:0.23950480886315018 been:0.08957460299814832 have:0.05249153927674426 :0.05221702260882525 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5827984201199012 a:0.3167425172245791 this:0.05031336906957065 tho:0.027424773909992917 :0.022720919675956148 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -prominent:0.3613752369576707 popular:0.30907794033861263 common:0.23082442181689877 eminent:0.05397771559279258 :0.04474468529402543 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.3159013970218059 60:0.21548271865216245 12.:0.20841572544299294 10:0.13475105443139626 :0.12544910445164248 -years:0.2435807232950333 times:0.2190137687531349 days:0.21320601424982896 weeks:0.20844398450292728 :0.11575550919907558 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.6131541432388514 had:0.2051125715603649 havo:0.16727556680711658 bad:0.008603250896396396 :0.005854467497270684 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7654415711460215 a:0.1470256838696467 his:0.03759906274703654 tho:0.02535327167046294 :0.024580410566832297 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 -he:0.4072742098278404 I:0.20439683335847683 they:0.18223022330783156 she:0.13306305338963392 :0.07303568011621744 -be:0.4620979596771678 never:0.21957491473036023 meet:0.13145105450619027 not:0.10086137264577605 :0.08601469844050566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7130468424936073 no:0.13049384767849934 been:0.06071173668286011 the:0.05194930984596353 :0.043798263299069676 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -candidate:0.39789734701993856 good:0.1680462666624389 vote:0.16550426145230196 week:0.16030475784400067 :0.10824736702131987 -way.:0.2989236372913733 country.:0.19148995984241968 hand.:0.18853414349639924 life.:0.16275543431905296 :0.15829682505075474 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -r:0.28072353415881307 an:0.19063870618390882 i:0.177918379143676 very:0.17536870974451538 :0.17535067076908675 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -several:0.2455744367940875 two:0.23102198295678572 the:0.2298336637070102 three:0.16841683308794578 :0.1251530834541709 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5481932238898704 his:0.28435781710132996 her:0.07042531904475724 my:0.05657826933802872 :0.04044537062601381 -time:0.38372316710678994 best:0.1792130012443636 way:0.1535109271866731 said:0.14962321006019672 :0.13392969440197655 -short,:0.2779275668882542 nearly:0.21475359094301447 the:0.19692056448706358 that:0.15581342975051166 :0.15458484793115615 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -such:0.42834759415103146 him:0.22788911923175517 them:0.18332905396268173 it,:0.08551144372618166 :0.07492278892834996 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5816349682677409 these:0.173445752516568 such:0.12318342135628012 other:0.06118137708034374 :0.060554480779067256 -given:0.2298939905386076 seen:0.2151068503053136 been:0.1942994923665737 learned:0.18415671855596097 :0.1765429482335441 -told:0.34086191694979123 gave:0.21356215633995956 saw:0.21303905808111526 asked:0.11784858107354881 :0.11468828755558519 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.39063410068494947 of:0.20581329486763902 on:0.15750342005953472 from:0.1438135277942235 :0.10223565659365337 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -very:0.4209169247234857 most:0.2442420243554527 mighty:0.11301036297564188 is:0.11116553195619067 :0.11066515598922916 -of:0.8215788770771186 to:0.061363134247494275 forms:0.04053524843939382 places:0.040505701280077834 :0.03601703895591553 -d:0.3200565595436928 ed:0.18740818642419457 able:0.18071079110106808 ing:0.17284911370076075 :0.13897534923028393 -that:0.7250318637058687 to:0.11822242702079831 in:0.07212414286189565 of:0.05188059061023428 :0.032740975801203144 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5411883611842189 be:0.19910719607673547 a:0.16030767021051354 hear:0.05166277741502722 :0.04773399511350499 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -received:0.3192634138363171 no:0.2233940382098337 the:0.18258959003395858 written:0.15231853780505902 :0.12243442011483165 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -world.:0.3368948314036124 country.:0.22883219402006835 people.:0.1796339288043776 other.:0.12971074828403506 :0.12492829748790647 -of:0.4164433958810076 was:0.17882267437767832 had:0.15596113244772808 or:0.13987108564917922 :0.10890171164440668 -a:0.48037934236186963 the:0.4010489980030343 large:0.06832826317908716 their:0.02760868672927288 :0.02263470972673596 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -men:0.39296137620220095 is:0.18178538827361287 as:0.15868983580748267 man:0.14235789232288235 :0.12420550739382119 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -to:0.586708315669653 will:0.1696611443412205 and:0.12245284916343505 they:0.06101878830398138 :0.06015890252171006 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.4088624645188363 if:0.21120999707094362 when:0.20627534183771346 as:0.09779327976818523 :0.07585891680432144 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -fifty:0.3647554315096358 twenty:0.18381557475014926 two:0.15822744582404305 his:0.1494259574542895 :0.14377559046188237 -the:0.27883898739928464 going:0.25420245686067255 brought:0.22066807783574396 reported:0.14748376582501416 :0.09880671207928482 -the:0.7072493371597826 a:0.08275909545069067 and:0.08111071208007041 this:0.0735216220946261 :0.055359233214830064 -to:0.6839600138038039 stock:0.16599541689609978 and:0.10392125738561227 years:0.02462774168847448 :0.021495570226009744 -der:0.5143382896821789 til:0.22804650545930502 to:0.12194147618205331 necessarily:0.08184871678420087 :0.05382501189226196 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -any:0.4724039485689615 the:0.2236784154218287 Main:0.19391678732975123 Third:0.07350108774036591 :0.036499760939092664 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.32241064761752447 opinion:0.30208636031609504 idea:0.14393405739352175 extent:0.13315868561015853 :0.09841024906270031 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.45207424522237716 them:0.16867561285507604 I:0.1375902464389175 men:0.12552646601833867 :0.11613342946529055 -not:0.2599808858374498 likely:0.2159692321298194 going:0.19629134542596766 expected:0.17417924748384706 :0.15357928912291605 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 -in:0.2710110912139912 of:0.2119126291648612 on:0.20488327874874002 at:0.185461695928756 :0.1267313049436515 -D.:0.4626064005148804 V.:0.21280639118865463 B.:0.14847246164116515 C.:0.09324539867191778 :0.08286934798338212 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -will:0.5014696427255748 to:0.3626970054868484 may:0.05541058162364035 can:0.05218824611004485 :0.02823452405389139 -the:0.45152142835388565 a:0.4151012691982451 so:0.056223443363718394 with:0.03987777895732396 :0.037276080126826726 -with:0.9464174332916683 between:0.020676434537755223 of:0.013177982618900175 and:0.011189440576169272 :0.008538708975506841 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.5484767361135727 in:0.24437348289501462 In:0.07425960940288838 during:0.07218336656841301 :0.060706805020111096 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.43638473152498025 of:0.39367098437158987 and:0.08389612622175381 to:0.043570488246520066 :0.04247766963515609 -times:0.30290649347413595 advantages:0.25737140997893687 of:0.2541919645738276 years:0.09562360028944843 :0.08990653168365113 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.46374625951115556 he:0.3097151224976876 she:0.09752685058406169 It:0.08333951146212899 :0.0456722559449661 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.841629674741639 his:0.06698818326246442 tho:0.03916723269301645 her:0.02653087993043361 :0.025684029372446484 -of:0.5019105391657338 in:0.16187008800725142 at:0.14581944531795885 for:0.13480228484113804 :0.05559764266791788 -hold:0.4767203531476238 beside:0.15701722285764158 of:0.15149437560824586 down:0.12997506308657591 :0.08479298529991293 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -both:0.7001232665630458 the:0.23069837366167512 all:0.04592500161557084 their:0.012001735800536976 :0.011251622359171265 -thorough:0.2252155960347672 I:0.21938088852485296 frequent:0.20472341533560812 prompt:0.17652170347250706 :0.1741583966322646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 -that:0.40852914382329003 road.:0.18122342273610803 to:0.1401552169534198 bill.:0.13662939339945054 :0.1334628230877315 -by:0.7550520743319699 to:0.08404490031251967 me:0.06359176301951201 in:0.058215595778966844 :0.039095666557031436 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -York.:0.9438356858879908 York:0.03505108049258921 Orleans:0.010842111168976412 England:0.005243809376348539 :0.005027313074094971 -a:0.2779344474881576 the:0.2642106402750193 his:0.21247031002885705 her:0.13584679593231488 :0.10953780627565109 -power:0.286989513238067 history:0.24525008927407455 rights:0.21800666473487662 party:0.13517132504378934 :0.11458240770919238 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.33444820172843154 found:0.21170761208553315 were:0.20073621025966945 believe:0.1304605071963004 :0.12264746873006542 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -letter:0.30159513809248795 year:0.2313321736021945 gentleman:0.18276003429136206 man:0.17906512603351563 :0.10524752798043986 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.3252474265811691 not:0.2463556324312746 the:0.1929139522706371 to:0.12702132192481871 :0.10846166679210041 -six:0.2483252029747698 ten:0.24008759078165387 dollars:0.21749007544658971 five:0.15161605695794092 :0.14248107383904562 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -No:0.40050246928473515 When:0.24231929532324878 But:0.13221454148003275 If:0.11368347843549377 :0.11128021547648957 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -party.:0.7113791844729788 party,:0.1746299238816341 party:0.0504098874921844 and:0.04245452456135664 :0.021126479591846162 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -by:0.6547690549475711 of:0.13637625642541187 in:0.08076183446992144 without:0.07446777823346573 :0.053625075923629806 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sup-:0.5445553413063818 ap-:0.19885037588156607 com-:0.12404481897384255 re-:0.09066434120775026 :0.0418851226304594 -made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 -the:0.6178806761682288 his:0.20075859889447323 my:0.06928587311277494 their:0.06015701005577907 :0.05191784176874415 -said:0.315857531532917 is:0.2697514239051926 came:0.16399267198254025 or:0.1275464472864777 :0.12285192529287227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.35949020986371705 can:0.3449980009829114 could:0.1996738818798882 would:0.06060381209119826 :0.03523409518228507 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.8698320280296964 (:0.05511761376783435 II:0.04007136741871656 The:0.02004253937529818 :0.014936451408454437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.5756190212291602 more:0.16130050856366307 very:0.10113210773949138 the:0.09477590517433662 :0.0671724572933488 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -years.:0.38008731462804185 months.:0.25384918993565037 days.:0.1990273487013591 times.:0.08745397872459486 :0.07958216801035378 -him:0.33374902458677863 him,:0.21725250005381833 and:0.16511471453729676 them:0.15216765133425708 :0.1317161094878492 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -attitude:0.3619580665609182 way:0.23725163572058083 progress:0.14852258165562407 tendency:0.13018657318286014 :0.12208114288001663 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.28344923600063066 in:0.24010497426443178 by:0.2206470692085024 for:0.1368317130557564 :0.11896700747067888 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7348062260121231 a:0.2014489754695809 tho:0.030117752632883684 appoint:0.01770395955631447 :0.015923086329097953 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.2991561184529399 that:0.26467315047868867 them.:0.18450330662767478 which:0.13967645746236024 :0.11199096697833655 -sold:0.365421687722988 valued:0.31657994561234837 and:0.13356718318086466 situated:0.09513599798365556 :0.08929518550014333 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4909531975455462 of:0.19817450969817654 was:0.11908679690496983 Is:0.10730731988212233 :0.08447817596918505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7902070964417879 for:0.05920886861465393 on:0.05812436222657748 with:0.04771655396846992 :0.04474311874851092 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.3053698661979 found:0.23189326647167086 born:0.1784440409715849 still:0.1710480082372108 :0.11324481812163349 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.5658711008566274 composed:0.1633654695627263 capable:0.10694179288348933 worth:0.09088855266136625 :0.07293308403579081 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one,:0.25044985680042364 character:0.216897200936638 diseases:0.19021714888305935 condition,:0.17198905494810388 :0.17044673843177524 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.4901073094744936 and:0.21658119831336214 as:0.1494947239747617 number:0.09489108773483469 :0.048925680502547836 -court.:0.32810705962848136 deceased:0.2313167101666643 county.:0.19649029524457298 ::0.15152946967758607 :0.09255646528269519 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.4602215907829585 man:0.21465850812270174 longer:0.17599686936802453 more:0.08430299098434857 :0.06482004074196664 -days.:0.40787931370535596 men.:0.2527735940185616 people.:0.14667608506235358 years.:0.11965554616006899 :0.07301546105365982 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.9238608542293851 of:0.03332686801279915 tho:0.017967401368875386 tbe:0.013612943625269248 :0.011231932763671019 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.3773029740671307 when:0.20790068263995676 if:0.17634074932211877 then:0.14950657496808928 :0.08894901900270459 -up.:0.312598018251061 others.:0.18802357214890394 hand.:0.18323474499611736 to.:0.17950575658258966 :0.13663790802132814 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7725102977546663 an:0.07875936939324835 this:0.06221710689516597 its:0.046548814665312035 :0.0399644112916073 -that:0.8189604840039685 but:0.06342234912742659 times:0.047934611126059616 whom:0.03560183872207046 :0.03408071702047477 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -with:0.48510074886488586 of:0.16591188758811928 in:0.13511236957498293 against:0.11056198677742042 :0.10331300719459147 -the:0.39965587169876654 a:0.2509255185168236 elected:0.17255236535414012 first:0.12497063761181854 :0.051895606818451116 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -owned:0.3251052920299133 and:0.28801899849811685 authorized:0.1492625180279503 prescribed:0.1200148976883008 :0.1175982937557186 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -income:0.29651635176019303 said:0.2106610602569344 annual:0.19157769434954416 state:0.1640096252005193 :0.1372352684328091 -moral:0.28491365559464843 his:0.2634117276730464 its:0.1947169488499602 the:0.12938601223288076 :0.12757165564946438 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -not:0.34040999569640956 it:0.2540472109030129 there-:0.19249549445400702 him:0.10722697161451498 :0.10582032733205549 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -water.:0.377719708882025 and:0.3758246681023705 that:0.08738577791929278 where:0.08240820933813016 :0.07666163575818165 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -came:0.3078911000110205 come:0.20454167040124577 are:0.20193654768573135 were:0.16313089969071307 :0.12249978221128925 -j:0.31706974639695823 all:0.22741960217305196 ail:0.21071272111502812 i:0.1517523425893753 :0.09304558772558631 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.81072940900009 from:0.0692915529710769 as:0.05729249771009968 before:0.034132867808714204 :0.02855367251001914 -the:0.5122466383165941 take:0.3971231068036058 give:0.042538488941652346 its:0.02595295060299376 :0.022138815335153966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -w:0.8032068699009737 here:0.0875318690799052 v:0.050912638652190374 away:0.04269697282393872 :0.015651649542992026 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.39273158630524135 he:0.26501367283654365 ever:0.12859065944418696 they:0.1231357523913432 :0.09052832902268472 -site:0.5878060541959359 capable:0.15642103288552775 privilege:0.1346316306316825 tary:0.07223617512120811 :0.04890510716564569 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -person:0.2788355556417797 things:0.22859693773500167 persons:0.17898011169203376 man:0.17897275170473212 :0.13461464322645272 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -young:0.6000523284288618 little:0.14151246820269558 man,:0.09779041184721082 poor:0.08168964374292845 :0.07895514777830341 -to:0.7151638089086017 and:0.19449725382898175 of:0.05386537389040953 from:0.018777307641221864 :0.01769625573078521 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2488435997730817 are:0.21592951197601076 as:0.1881842093660891 went:0.18577207390003822 :0.16127060498478016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.5083990124128202 to:0.186536576366623 we:0.11737612094482569 I:0.09559915934018336 :0.09208913093554785 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -F:0.24251828772102937 P:0.2018702059101336 W:0.1925137342760147 C:0.1880455452195538 :0.17505222687326855 -a:0.6199504755112496 the:0.31319663071238163 some:0.02570628767955399 my:0.020699492187808904 :0.020447113909005867 -he:0.3727927129434615 I:0.3208886133939345 then:0.12859151954673778 who:0.09384357172433973 :0.08388358239152639 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -they:0.3324549043363979 which:0.3279676072006401 we:0.17431945284808315 that:0.11084890090518404 :0.054409134709694836 -he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.4716773394780415 the:0.3679759885428747 not:0.09794501138969001 is:0.038770865820738507 :0.023630794768655226 -a:0.6591178504311336 by:0.14173351565111625 the:0.0890748778798916 that:0.06349703258879268 :0.04657672344906586 -them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -south:0.40882952898886704 north:0.34767943560313397 N.:0.10810167591210125 west:0.06966826074431125 :0.06572109875158638 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -New:0.9897835317848163 Now:0.007137233855695771 the:0.0027566767197133323 Cape:0.00017402278503038986 :0.00014853485474428858 -interest:0.2359968702647495 rate:0.2293190719381872 bonds:0.19448278913881348 piece:0.17834233577641825 :0.16185893288183156 -favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 -for:0.5826602610725893 of:0.1682578518475047 and:0.13833408301927366 to:0.0734141034549503 :0.037333700605682 -south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7882267809335224 enough:0.08366941010305495 a:0.046286305080250445 tho:0.042536626836221225 :0.03928087704695102 -was:0.27045829894758294 is:0.2437987123610919 and:0.21612303804781557 with:0.15020149123337612 :0.11941845941013333 -of:0.8373505785236375 the:0.0890383951728996 and:0.026070090961560925 ot:0.02443973295912247 :0.023101202382779476 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Bryan:0.260637491250766 Smith:0.20915036898394299 John:0.1883434814932501 Wilson:0.17341523257164684 :0.168453425700394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.28586806082776356 i:0.23634852373329435 first:0.17703357609335907 time:0.1552430478850999 :0.14550679146048312 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them,:0.4461209595799576 them:0.170804005826803 France:0.14732742489457237 him:0.12150097706355635 :0.11424663263511083 -can:0.295063165451754 to:0.19505646026359622 will:0.17856839544165704 may:0.16808026705975096 :0.16323171178324178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -year.:0.4235994330416361 week.:0.258982551280206 night.:0.2125252505440073 evening.:0.07847636920730394 :0.026416395926846845 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -York:0.5151755842622492 York,:0.2911600699500978 England:0.08211070929716095 Orleans:0.07421192553860616 :0.037341710951885966 -patient:0.24918441185151471 frequently:0.20756810942154613 eminent:0.20490465723662316 violent:0.18735528127129242 :0.15098754021902352 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.30235719829083657 which:0.2900380190130406 be:0.17551582396222834 was:0.1313794258348546 :0.10070953289903994 -went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -had:0.5427234899546127 has:0.41879737414251744 bad:0.017289422257262006 never:0.010661092119536036 :0.010528621526071837 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.296797084184698 been:0.24727381931096204 lost:0.17007442496962744 made:0.1475190603543833 :0.13833561118032928 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.7247400203664297 have:0.12279040855387191 not:0.10461981664251112 bo:0.0353545221867012 :0.012495232250486129 -legal:0.6569723904815161 a:0.12100561709600002 of:0.11553404197692366 and:0.06344616238576986 :0.043041788059790254 -a:0.5040657624216491 for:0.2891273255597321 the:0.14651304766534798 in:0.030922722586051558 :0.02937114176721914 -of:0.4174212499646284 in:0.2639328783769599 to:0.12180026082840596 and:0.10822705954088109 :0.08861855128912463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5699659115709992 down:0.1390825897547074 of:0.12159391464222849 in:0.11423289449169845 :0.05512468954036646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5631821458393818 a:0.18143934084825578 those:0.14819687943043722 all:0.06703866612333428 :0.0401429677585909 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.46106698434085996 an:0.34084749407259696 being:0.07477766967545736 rest:0.07342310624144602 :0.04988474566963988 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -more:0.5957392130653612 else:0.17524406432382422 less:0.1175594150725518 better:0.0648325181454669 :0.046624789392795934 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -evident:0.3112073145630317 slow:0.23981468954082083 near:0.19627509347477926 on:0.14786229954397354 :0.1048406028773946 -on:0.26620188567559505 in:0.21046539501628453 for:0.2051649074562417 to:0.16915793630975995 :0.1490098755421188 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -did.:0.5144438009124339 dead.:0.22690805430193148 well.:0.11283245691911373 as:0.08767289217764354 :0.058142795688877535 -they:0.48611948609714917 you:0.19160696428617788 we:0.1633065389464768 there:0.15199195518481964 :0.006975055485376456 -going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 -cloth:0.2445981472560843 ;:0.23366490916482108 land:0.20447485095524018 use,:0.16596636123348144 :0.15129573139037306 -the:0.7307942718431304 a:0.14261493464296102 his:0.05595686975944599 tho:0.036305098377939486 :0.034328825376523084 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.48325399839217054 when:0.1945264642391009 if:0.1428140596161618 then:0.09271063691665343 :0.08669484083591343 -that:0.3811175699668259 and:0.23609441801231298 up:0.1427956458400728 out:0.1256093838537381 :0.11438298232705027 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.3248128359856036 time:0.2909860502270994 extent:0.13861675581851035 idea:0.1243772292300299 :0.1212071287387566 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -City:0.7203491052144771 Town:0.14051915902339698 National:0.05882157142213592 Supreme:0.04074615558133199 :0.03956400875865811 -time:0.38372316710678994 best:0.1792130012443636 way:0.1535109271866731 said:0.14962321006019672 :0.13392969440197655 -failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -cold:0.4289182285751177 hot:0.21361068648191434 city:0.1314454782881831 warm:0.11418038083782953 :0.11184522581695536 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -made:0.38681822499651847 in:0.26507581884575754 sold:0.12450775979023426 of:0.12222083450665726 :0.10137736186083264 -purely:0.8421984924946501 a:0.06856213079442787 the:0.06250960970667424 of:0.014098613027140496 :0.012631153977107349 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -are:0.24799937535434116 ought:0.20902340071840889 have:0.19125085665302058 want:0.17740701519992233 :0.17431935207430696 -funds:0.5619990082492743 and:0.16738128101313723 teeth:0.13150118599095464 fund:0.09748923747179895 :0.04162928727483498 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -of:0.3684644027430867 years,:0.19385900969974273 things:0.1824453656022294 or:0.12945147973499224 :0.12577974221994886 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.36164849670537336 would:0.19592253959386732 will:0.19045533569683057 and:0.15777375435421273 :0.09419987364971599 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.29490332796135565 them:0.2165083055706645 water,:0.16768759952195023 that:0.16269657764537343 :0.15820418930065616 -many:0.3750982134518175 two:0.2286204202287301 some:0.14171715335135013 the:0.13418402280828487 :0.12038019015981744 -even:0.2540628439574588 either:0.20944225621158338 made:0.19985912497512084 destroyed:0.1911585323888773 :0.14547724246695967 -of:0.8725575797424706 in:0.036624410886640174 at:0.03489026509344945 and:0.029448731563901542 :0.02647901271353819 -city.:0.27085210176396385 country.:0.2498519584612936 world.:0.17629029949358893 standard:0.16596955906103505 :0.13703608122011862 -the:0.7375733130041899 his:0.09002981028322002 their:0.078307167781518 this:0.05389806241618999 :0.04019164651488198 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7520194889506856 upon:0.07860716020417757 in:0.05835020142983637 as:0.05684942492940697 :0.05417372448589346 -at:0.7788887895125448 the:0.15336419392218834 not:0.04974949948826543 a:0.010274086401527039 :0.007723430675474553 -the:0.5744167983940197 th.:0.19260774292266222 a:0.11943695383690418 the-:0.06415781434564026 :0.04938069050077377 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them.:0.4828563666314067 it.:0.25450866209638895 life.:0.09986113657446609 men.:0.09259081797876241 :0.07018301671897588 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.5176673757388811 the:0.3380652381873244 in:0.055111502588575445 two:0.04650895104061024 :0.04264693244460885 -which:0.34380707028351015 it:0.25291330827271824 that:0.17548060309688765 and:0.1497334495102008 :0.07806556883668324 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.30550999195409057 and:0.2505453268037132 with.:0.1642810150795072 Is:0.1508306799279016 :0.12883298623478737 -able:0.3592632806057296 allowed:0.20418202455383563 used:0.1484971377437692 necessary:0.14775269065638058 :0.1403048664402851 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4065620175959557 for:0.3891384550168734 to:0.10660804366422609 in:0.07319763041052951 :0.024493853312415482 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -to:0.6787407369576682 and:0.24435800949049175 will:0.0311844467050272 would:0.027645754695059716 :0.018071052151753114 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.4371342039000377 in:0.2078650818835069 to:0.1512495213594356 and:0.13396963377512763 :0.06978155908189228 -contract:0.3523631255488404 cover:0.2439835873487507 date:0.17630100139798724 him:0.1291872079067483 :0.09816507779767344 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.44597917787287134 the:0.26258530594487417 no:0.1932113521176095 tried:0.051599634413624515 :0.04662452965102045 -office:0.30415755602034067 time:0.26768201526389296 date:0.17005313916874165 same:0.1320309962537506 :0.1260762932932741 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.5350004227585059 it:0.1533125390728228 one:0.13301179572864957 there:0.0922168781443435 :0.08645836429567834 -much:0.35971269716478754 aa:0.34779582560838423 far:0.1301914520994095 as:0.0816798704539404 :0.08062015467347838 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.8283670509293931 only:0.11906969063483232 always:0.019536662580604325 even:0.0172476287359225 :0.01577896711924768 -point:0.5727526296742094 man:0.12452119159785986 set:0.12251966671207759 single:0.09272451404985389 :0.08748199796599927 -people:0.30513295615361996 country:0.22022943020736244 world:0.1724977370948758 north:0.16049601577858913 :0.14164386076555288 -of:0.7534081198353995 for:0.09736264241539358 in:0.06251356209582208 and:0.04854460531741548 :0.038171070335969524 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.5774027810357788 Wall:0.22574761354386372 said:0.0974320870914062 a:0.05998491890971079 :0.03943259941924041 -it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 -of:0.24449068031831714 providing:0.2288158133927352 the:0.19256087570360955 for:0.19224417881093728 :0.1418884517744009 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 -half:0.24750611822843946 of:0.2134578389978743 time:0.18319074465509116 while:0.17847455948790394 :0.1773707386306912 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.766549747344146 and:0.07568116959634617 in:0.06896575920244262 to:0.053590501991121815 :0.035212821865943246 -either:0.3676227920346606 or:0.19932658312300428 account:0.15402117196158951 him:0.14713966729852526 :0.13188978558222048 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.8735839610564056 not:0.07518044779321463 havo:0.024023791018127905 never:0.02060838842860202 :0.006603411703649845 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -In:0.42684966596049145 The:0.3680342298500516 We:0.09416715769887497 This:0.062429934568709725 :0.04851901192187217 -believe:0.36700070844767313 know:0.22910435214543887 think:0.1377333697167037 find:0.13728624258470626 :0.1288753271054782 -ball:0.4218204668497299 day's:0.19197393660505274 practice:0.14335520482587255 good:0.12180797131214982 :0.12104242040719507 -mortgage:0.22414985382270447 to:0.22009571409562512 amount:0.2009295592553044 deed:0.1880253143192911 :0.16679955850707498 -;:0.3279359690583672 enough,:0.3204017543378399 pleasure:0.12841883003671728 paper,:0.1151594505356354 :0.10808399603144016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -which:0.5765382953214864 men:0.11779107449536677 these:0.11086200240745007 lands:0.0988844470927413 :0.09592418068295543 -have:0.6852147246970205 yet:0.12233178546935386 having:0.09334949466584878 had:0.05314428404152801 :0.045959711126248734 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -also:0.4655515556816751 now:0.15798670041342944 already:0.1430431572991441 further:0.1176213856364641 :0.11579720096928746 -is:0.3215167532289873 was:0.20706149933049853 were:0.18333722644861994 and:0.16509775267116444 :0.12298676832072994 -be:0.36039592967561834 deem:0.2286671314701771 make:0.2016013648371564 have:0.12548206127690703 :0.0838535127401411 -I:0.4700337021770686 It:0.2217636656441149 The:0.10995941443526944 n:0.10802859865331006 :0.09021461909023681 -it:0.28529175574731447 of:0.23755506738099488 that:0.18004304855045636 if:0.15578434509723502 :0.14132578322399916 -interested:0.43796123792398794 interest:0.1743624842448833 as:0.1594827082406362 money:0.1147008331771675 :0.1134927364133252 -work:0.33764433469082095 hands:0.2749188130026612 wife,:0.16736213972414118 legs:0.11786420618401837 :0.10221050639835838 -seed:0.862752313173409 and:0.03911274459735178 grow:0.038666436006457666 growing:0.030342544003723302 :0.0291259622190583 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.27352552479722336 W.:0.21066194222547582 county.:0.19291766387333778 L.:0.16250459480742607 :0.16039027429653682 -one:0.538989902693338 ono:0.14239387783202007 all:0.13856401097356344 found:0.12101646261865538 :0.0590357458824232 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -no:0.32367282360910893 the:0.21273001634078853 is:0.16395501922554104 any:0.15747103150632635 :0.14217110931823515 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.43677403305201795 of:0.24530438344099217 into:0.11349895888633911 on:0.10477302401381679 :0.09964960060683394 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -may:0.3339014487078322 shall:0.32519437512697785 will:0.15599181413376237 would:0.12212520222770401 :0.06278715980372344 -dozen:0.25936520654057327 dollar:0.21611470826536414 little:0.18341467882783782 pound:0.17533231152232795 :0.16577309484389682 -If:0.40541734830748055 But:0.29967862122746436 That:0.12830356759761447 And:0.09276743661517305 :0.07383302625226758 -the:0.724322720265166 this:0.1523097366905969 a:0.08437129549991695 every:0.019721671659859448 :0.019274575884460746 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.43510090002424734 a:0.29558219902157595 give:0.11744302787257013 said:0.07733452015724379 :0.07453935292436292 -it:0.36781759198836894 time:0.24044878415731985 is:0.20405961623003602 there:0.09545025770667208 :0.09222374991760313 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6224294201909462 a:0.16052092789028302 which:0.126253827874195 this:0.049381557109279696 :0.04141426693529617 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -husband:0.4354982879070691 father:0.23858682746305376 mother:0.13690848014260973 she:0.10435024680664298 :0.08465615768062444 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -rules:0.5956308206734706 pure:0.14236613038464882 freedom:0.1266352492909603 it:0.07782735692752965 :0.05754044272339055 -which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 -H:0.298948060650745 It:0.25634700935941673 Va.,:0.1867753723903205 II:0.1593234082273465 :0.09860614937217119 -made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Justice:0.7270351927439171 Clerk:0.20764816372630374 Secretary:0.026006187480840735 Executive:0.02443330250609321 :0.014877153542845169 -soon:0.4514247535801595 he:0.19285874987698406 I:0.14968748930066506 they:0.12572068349118057 :0.08030832375101087 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -but:0.3540878780745587 and:0.2942387093339079 along:0.1655794113589019 moving:0.10739811076463805 :0.07869589046799333 -covered:0.3443192483843316 entirely:0.21376653257488654 parallel:0.1924638709330457 filled:0.16645806342411817 :0.08299228468361791 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -doubt:0.6981983191959295 reason:0.12153073573936983 means:0.0683483264137575 hope:0.05664250678662709 :0.055280111864316216 -or:0.4281957765198507 often:0.1984346728604148 I:0.16195374431407153 frequently:0.1421654442937799 :0.06925036201188312 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.9373319211137218 from:0.027064518242290614 ot:0.013479137604465296 that:0.011968357512317758 :0.01015606552720453 -the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -I:0.834033810196416 1:0.10698081455722468 and:0.03219980825025608 to:0.017633688743639405 :0.00915187825246375 -own:0.44042818513281434 foreign:0.1838247710327426 national:0.17132084915519732 legal:0.10766419808615794 :0.09676199659308773 -persons:0.38129517621833514 those:0.3378133792859042 times.:0.13896862248795308 men:0.07236432848716488 :0.0695584935206425 -river:0.24536278488071236 water:0.2305402004276602 south:0.20342962055295907 entire:0.16597178584688788 :0.15469560829178058 -ten:0.2868575572101253 thousands:0.1996948378460887 fence:0.19942494418811516 one:0.1633420582129096 :0.15068060254276117 -on.:0.23482064222102483 away.:0.2254749762322314 down.:0.19084508241219228 out.:0.17806764365807223 :0.17079165547647915 -appear:0.2245982095485874 never:0.2202858460932765 then:0.19197527999928776 that:0.18271818549072202 :0.18042247886812635 -ao:0.2940296178279569 keeping:0.22434291941229978 ba:0.17584778133657974 covered:0.16096005506391226 :0.1448196263592513 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6657751893399018 the:0.30322619942738055 this:0.01211417779860319 his:0.01006741260126259 :0.008817020832851671 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -council:0.32887423345396877 mills:0.2574418943142909 hall:0.15207430766262525 engineer:0.1373078135575735 :0.12430175101154148 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6346715610662375 this:0.13761013921044132 a:0.12949348464377172 his:0.061686875779220225 :0.036537939300329295 -any:0.32732520698000195 of:0.2891451078894896 the:0.18705786042221467 and:0.09877886249843154 :0.09769296220986232 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -mortgage:0.34292648780196966 that:0.22134016466980921 petition:0.15182642168669083 county:0.14562874252475172 :0.13827818331677863 -of:0.27513169742895643 time:0.2617688442077998 place,:0.1831579514034128 and:0.15405003569100048 :0.12589147126883055 -ball:0.2850973710072572 first:0.2438595191992393 storm:0.17810072477249553 engine:0.16338837460522812 :0.12955401041577982 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -even:0.4812332222057497 as:0.25341037201620925 al-:0.15139041059772781 that,:0.05729394351517629 :0.05667205166513694 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.822014936869061 a:0.10262124929887673 tho:0.0336032615260449 his:0.022755187258991956 :0.01900536504702546 -life:0.2507061495488411 nature:0.22392529594181002 life,:0.2107758243023567 nature,:0.19793437456972773 :0.11665835563726458 -no:0.4421581865856702 a:0.18816993051491 the:0.1687277272466864 to:0.11163609566039925 :0.08930805999233396 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -after:0.3183433487270414 in:0.30356204417699395 of:0.1587803576577141 to:0.12147557512432051 :0.09783867431393001 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.50358099557816 bill:0.14069757878087052 .:0.12415960648028497 woman:0.11949460000540986 :0.1120672191552746 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -can:0.21932137629341547 placed:0.21610320729000387 brought:0.2146647684522465 carried:0.18357748185642483 :0.1663331661079094 -same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 -of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2912526585777318 his:0.272225564652271 her:0.19176121753370842 a:0.13006510564218776 :0.11469545359410094 -of:0.31413478055255495 in:0.2248260220658447 to:0.21604096083420934 for:0.14049899991715611 :0.10449923663023485 -and:0.44761091228270117 that:0.2860225486493992 as:0.1812920284755771 when:0.05054635295801973 :0.03452815763430279 -is:0.5672309148090748 was:0.13274977982079766 are:0.11159937701372355 will:0.09742963116063177 :0.09099029719577212 -the:0.846790361418788 any:0.0543505052289754 tho:0.03586692295018153 all:0.03242874727264267 :0.030563463129412227 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is:0.4104012322221649 was:0.2098285355508763 Is:0.20177547784763933 la:0.12978629132820232 :0.048208463051117145 -made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Smith,:0.27660142178506575 M.,:0.2748380059523341 Johnson,:0.16627273361253747 Brown,:0.1446163649491916 :0.13767147370087116 -and:0.398785246716047 government:0.17897495396922564 is:0.16498151700420557 are:0.1577636314988106 :0.09949465081171112 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6731443517514578 in:0.0991939263123484 from:0.0877831975891721 for:0.08579760727568873 :0.05408091707133316 -how:0.31541079490890506 that:0.2829763983285347 as:0.1980698087117358 and:0.13653837126016352 :0.06700462679066095 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.6558196862194915 the:0.23133248126534448 large:0.05324402163704388 that:0.032664497236922246 :0.026939313641197914 -which:0.33502272671978967 it:0.2265632863011718 he:0.1732412864803406 and:0.15503553916481444 :0.11013716133388349 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -man:0.3983715495011018 men:0.2462217686403003 person:0.1961817946286448 people:0.0876295727420552 :0.07159531448789781 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5020623262010073 the:0.17472772886358273 for:0.1474599673637022 or:0.09003102386184597 :0.08571895370986184 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -time:0.48110766474368916 world.:0.13632204793128486 country.:0.13336293299084215 first:0.13281926250208542 :0.11638809183209846 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -back:0.32614441169482167 up:0.3106315915817159 down:0.20973973924755787 out:0.10061404093830932 :0.05287021653759518 -same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.4477649432096982 a:0.36075774767085206 any:0.0902308081872682 ex-:0.050839094722724895 :0.05040740620945679 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 -entering:0.3383144622801467 doubt:0.1978434185235164 that:0.16793078043357387 giving:0.15657220603912997 :0.1393391327236331 -own:0.967699097681523 good:0.010299051678478744 full:0.009733829196309355 first:0.006216798416696571 :0.006051223026992421 -friends:0.2825433314633782 children:0.21055167079438852 men:0.1983776069874169 fellow:0.15809926978735417 :0.15042812096746214 -they:0.2966119938226556 he:0.2592143606482234 it:0.19231185851548444 we:0.17169955681633603 :0.08016223019730044 -who:0.7907526987840475 man:0.061706055018968926 which:0.0557271309701884 ho:0.04627355502994484 :0.04554056019685041 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -at:0.7041149774257286 about:0.08811014553940247 by:0.08044697556334783 to:0.06770337150467737 :0.0596245299668437 -of:0.9659036866398186 ot:0.01240929917218547 times:0.008877616272088308 ol:0.00662026665127728 :0.006189131264630453 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -an:0.47548101308565965 the:0.2533647395076946 no:0.21182086339227962 carried:0.03700194358545279 :0.022331440428913316 -them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.46832501346030536 that:0.20561617146317518 here:0.12517221224318992 again:0.12057696610025796 :0.08030963673307157 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -only:0.3388733268787293 said:0.184066391876209 cost:0.17336515453697054 truth:0.151944597452788 :0.15175052925530327 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -see:0.38905332324285885 know:0.2555479876830978 do:0.12781879387362108 do.:0.11382136297037661 :0.1137585322300457 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -according:0.41108357662055944 as:0.35782174185884985 owing:0.09414849177896828 going:0.06913369643895066 :0.06781249330267178 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.5853642595873358 the:0.20109960081997552 at:0.0736609309376165 no:0.07121950284475 :0.06865570581032206 -being:0.39801780171575185 even:0.1876290359364259 authority:0.1465699746780905 suffering:0.13492763523756052 :0.1328555524321712 -who:0.6309997077376965 and:0.11490703211373725 we:0.11194928615704548 which:0.07538705057253975 :0.06675692341898096 -is:0.31433419315171085 would:0.17908913850833375 will:0.17698546973015722 are:0.16757235963961076 :0.16201883897018732 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.7647330144988959 any:0.186008315223733 the:0.023554508421247303 some:0.013673787687919627 :0.012030374168204211 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -was:0.38972116080290875 has:0.22078654027010808 is:0.17408626283080716 had:0.11774167435900448 :0.09766436173717147 -th:0.2816085788775218 tin:0.2523453132019838 the:0.2085216734640199 a:0.15219141354152377 :0.10533302091495077 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -them-:0.7805196606795728 them:0.1601182146740051 our:0.039691718137904425 them.:0.012037258617802835 :0.0076331478907148975 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -an:0.5786836004768678 as:0.1746031450217041 the:0.15955020111276108 died:0.0457836880231725 :0.04137936536549444 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -residing:0.297716136573568 was:0.2812131501969239 who:0.1432165883640203 looked:0.1407952177218089 :0.13705890714367885 -more:0.38548991200561983 other:0.18928124612525798 less:0.15513440124002945 lower:0.13878075681970636 :0.1313136838093864 -two:0.2649076645784752 many:0.23968044379369563 of:0.22352258862624055 these:0.14169726548615996 :0.13019203751542877 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 -away:0.34448467021103474 and:0.20232710240758114 for:0.1723202014411687 up:0.14885077919493528 :0.13201724674528006 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -other:0.33828350297067583 two:0.26333804069029193 naval:0.18654567082274262 the:0.11559452618592905 :0.09623825933036055 -was:0.25957201323382534 had:0.2425918218108652 must:0.18772424950308045 would:0.1618634462611172 :0.14824846919111181 -they:0.34089955302069336 it:0.20395028388751246 something:0.1650937108384145 he:0.14599156445721173 :0.14406488779616783 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.44884218462401404 almost:0.18109554808920758 done:0.15349115100289779 absolutely:0.12070448068685888 :0.09586663559702184 -last:0.5208810677918766 past:0.1980313857899292 next:0.12753726861225395 first:0.09665353889593373 :0.05689673891000671 -the:0.8966572963884817 carry:0.028597025516053164 make:0.0261337397301885 Western:0.02518181484810609 :0.023430123517170463 -was:0.5393649306955631 is:0.2734312010787783 had:0.11137055920139152 saw:0.04148631360641442 :0.03434699541785257 -city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 -of:0.6645664513607823 and:0.09763030703094223 are:0.09644232673382491 the:0.08377518891575668 :0.057585725958693906 -made:0.3624254557152501 taken:0.32822368122643014 put:0.11410295367037189 given:0.09982786710736899 :0.0954200422805788 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.29005331735657947 by:0.19354775773209987 or:0.18142948112654422 in:0.17464636185395976 :0.16032308193081665 -which:0.2899634638951496 whom:0.27852767780482074 that:0.2523307140568253 what:0.10376554938001441 :0.07541259486319007 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -o'clock:0.5127452042592033 feet:0.14632114829066412 cents:0.12883262397290218 and:0.10927306475566681 :0.10282795872156354 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -a:0.531616637109386 one:0.15503145264573204 other:0.12863916407155562 west:0.09715273412335082 :0.0875600120499754 -they:0.27222576306654345 you:0.25135187123709096 not:0.2289542764787786 we:0.1581184332220328 :0.08934965599555414 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -for:0.662008785119479 the:0.19509415397203234 in:0.06081963258306135 of:0.05998716149209164 :0.02209026683333544 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.7445784073211016 these:0.1568036968486573 tho:0.03873169250914285 about:0.03349255983003158 :0.026393643491066793 -not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 -country.:0.2686339952833047 world.:0.24427474717546402 other.:0.19351222612132074 city.:0.1541019264854576 :0.13947710493445292 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.8117658274374107 is:0.07551792404838373 with:0.06363669711588306 an:0.027525832690182734 :0.021553718708139852 -that:0.793027208734345 in:0.058447887862984445 what:0.056228974461227745 how:0.048661838157502274 :0.04363409078394057 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.4096628457091822 there:0.20613529896728033 that:0.1467496776644971 now:0.12495303200871617 :0.11249914565032404 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -giving:0.3856771660078562 enable:0.21599839928397913 making:0.13756127421847664 placing:0.13695231526047547 :0.12381084522921255 -own:0.6365362300308094 at:0.12995147930791676 way:0.09163804185193045 husband:0.07265577736617637 :0.06921847144316715 -to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6061181813861899 his:0.24662739685516766 a:0.06000473000299445 her:0.053273579986084105 :0.033976111769564096 -such:0.5696352099172389 manner:0.1679887633655239 thing:0.09877492194573584 time:0.09530994390569826 :0.068291160865803 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 -Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 -to:0.45255007491554683 into:0.20994040893857785 on:0.1952575329884051 through:0.07398488710955141 :0.06826709604791875 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -back:0.296089872350764 down:0.28557382844650586 up:0.21711137549060744 out:0.13796610606783974 :0.06325881764428287 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -acres:0.504168242686028 feet:0.1938737846011344 years:0.11370181164330705 bushels:0.10700129028876153 :0.08125487078076894 -up:0.6408768668975008 up,:0.16879703416782643 together:0.067255688883863 together,:0.06180458641131719 :0.061265823639492685 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -that:0.34725217007138803 as:0.2896507538214102 it:0.16235522042215664 and:0.12612530874354896 :0.07461654694149629 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -or:0.9168577251581581 nor:0.026723245704426687 than:0.024780192211006396 un-:0.017373965541408853 :0.014264871385000022 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.4137655967930071 of:0.2555113455140213 is:0.15141599150428506 to:0.09822390270840088 :0.0810831634802858 -the:0.8407898493597752 a:0.09747869873270282 tho:0.04019994712865367 tbe:0.015893982604906595 :0.0056375221739617155 -o'clock:0.5568396319558094 p.:0.24761787797533905 a.:0.12396098318789502 o’clock:0.06100319143725997 :0.01057831544369662 -is:0.4773500940865333 was:0.19273263998638485 so:0.13563687554263343 as:0.127282585947781 :0.06699780443666736 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -life.:0.2693511389022844 and:0.2409243683102225 as:0.1810416968780733 matter.:0.16324654871744712 :0.1454362471919727 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.5577883427649754 me:0.17189429808257103 hard:0.12618687242089896 right:0.07417617405374897 :0.06995431267780552 -date:0.2702999049608445 consideration:0.26499195290359406 one:0.1817196279996263 command:0.15775323472605174 :0.1252352794098834 -of:0.7008633538045403 that:0.1218387512187609 which:0.07576253572948705 in:0.05920266336034325 :0.04233269588686855 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 -life:0.23512842363147496 friends:0.21824324651235766 home:0.2067773070575742 way:0.18210469720397518 :0.15774632559461804 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 -the:0.5407702959127273 his:0.29351665327880905 her:0.08416378601760297 my:0.05029965789416094 :0.0312496068966997 -rapid:0.28261495599711267 great:0.21124808543082296 to:0.1884598512767871 in:0.16451729360012515 :0.15315981369515203 -power:0.3450281099505447 is:0.21218645426053506 enough:0.16266678965761786 and:0.1543433197128816 :0.12577532641842093 -was:0.4312650496752483 for:0.22485070312279287 hereby:0.14222612104203758 has:0.12634008560869348 :0.07531804055122769 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6068611048922161 it:0.1407155612435526 he:0.08966387632050364 was:0.08224558487077875 :0.0805138726729489 -is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -ago,:0.4230219727023989 ago:0.28012778774408015 old,:0.20507459911029957 past,:0.05051941439515471 :0.041256226048066696 -him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.8127858468781031 this:0.07087465872970376 a:0.05761331512233317 tho:0.0416770842221787 :0.0170490950476813 -?:0.29663050874933283 do:0.22817683457823704 did:0.18955733507712919 should:0.14575033939710352 :0.13988498219819742 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.3448219238390545 much:0.25584411764652265 many:0.18600385985317255 part:0.13599459947076745 :0.07733549919048274 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -short:0.6788316106960061 long:0.16834718093477496 good:0.06398142473412512 little:0.05932619847032106 :0.029513585164772826 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2586205350422438 for:0.22449790330662428 in:0.2169992318579945 or:0.1789909904456178 :0.12089133934751962 -been:0.6161541220589666 made:0.11108168541517788 seen:0.09628501419537151 done:0.08829569456407718 :0.08818348376640678 -it.:0.3189127463896981 them.:0.2295293489523522 water.:0.1919825812603396 life.:0.14363421723797526 :0.11594110615963492 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -is.:0.23644507012379104 up.:0.1959474292367784 is:0.19231333909111323 Is:0.18777960794766102 :0.18751455360065622 -have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 -in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -all:0.37073502417106347 which:0.18134194796167646 taking:0.15340583321799964 that:0.15074658391400803 :0.1437706107352525 -the:0.4483401489678438 said:0.1918054187470656 a:0.15840327251092265 to:0.1219282020727579 :0.07952295770140992 -an:0.40050157999721037 not:0.19855166646190184 the:0.19772558297824352 no:0.11476298060443936 :0.0884581899582048 -he:0.3155906064471423 I:0.28988595198439876 they:0.24792513254505644 man:0.07452789831234805 :0.07207041071105448 -and:0.4796849337224291 that:0.14310939916972518 of:0.13483164582685336 at:0.12625904756079434 :0.11611497372019794 -well:0.680432546279653 better:0.11948429271528346 little:0.10395165856143855 remedy:0.0503925291318238 :0.04573897331180128 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6872667607139674 a:0.11359415013383839 every:0.07605499890621185 this:0.06576259800471683 :0.05732149224126545 -is:0.47918128136361055 was:0.13829448303439104 the:0.13813053060221436 in:0.12454932851825098 :0.11984437648153307 -the:0.6224294201909462 a:0.16052092789028302 which:0.126253827874195 this:0.049381557109279696 :0.04141426693529617 -the:0.45475011156484335 a:0.39777465085557956 large:0.08001180862634724 this:0.03531031691323943 :0.03215311203999039 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -plat:0.5080872502403533 survey:0.12438725897535685 position,:0.12420108077950218 field:0.12291682849804843 :0.12040758150673914 -of:0.8907847233293718 to:0.0374497254679566 for:0.03016256667152968 in:0.027415548936132666 :0.014187435595009387 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -two:0.3110045826614671 three:0.2855834201043814 four:0.21429203354929993 five:0.10117951691930185 :0.08794044676554974 -City.:0.7258824790700193 and:0.11879678662615263 corporation,:0.0724278405356603 girl.:0.06234037488551607 :0.02055251888265165 -told:0.500293794680646 to:0.22838771808437694 with:0.11586172242940998 gave:0.109628319500428 :0.045828445305139 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6869397802703684 an:0.13896816586450636 special:0.09003510172133929 said:0.05426848002217963 :0.029788472121606183 -that:0.7906861907488603 this:0.0635317063282942 last:0.05130457444747055 times:0.050420006522238534 :0.04405752195313653 -which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 -public:0.6804186418210091 human:0.11626167528905575 body,:0.0767525660454246 popular:0.06517495974240366 :0.06139215710210697 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -do:0.2729916684675656 make:0.21512045825787968 pay:0.21098326230020453 be:0.1560823147028857 :0.1448222962714646 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -Is:0.39519887835036166 was:0.3318724175407831 is:0.22164355971176825 appears:0.030042040216496025 :0.02124310418059091 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 -for:0.3481644947973641 to:0.271455250608287 of:0.14486092350039878 in:0.11935350750497536 :0.1161658235889747 -well.:0.438586856837531 well:0.19364154255067756 good.:0.18251095601734907 close:0.09382146639825159 :0.09143917819619068 -to:0.6304895113906349 will:0.12430944221314849 would:0.09043725098970817 should:0.08037904147000974 :0.07438475393649857 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -have:0.3724428610610058 uses:0.20660668935702467 know:0.15015326052375258 for:0.14129209409531412 :0.1295050949629027 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 -country:0.2427935439329404 people,:0.24223197999781168 country,:0.20520338646130334 people:0.17221602781851827 :0.13755506178942625 -they:0.30306598863129697 we:0.2704953382051539 he:0.1710215634278359 it:0.14247245999769934 :0.11294464973801385 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -said:0.37060584631663096 same:0.3636187218236657 agricultural:0.12106333310706481 purchase:0.07816917458370685 :0.06654292416893169 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -when:0.2875862881526645 far:0.22452731306912452 if:0.1933053521394271 it:0.15423143201255907 :0.14034961462622492 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.6347180105825632 this:0.12279981928017146 that:0.10017229272031455 in:0.0939441518595962 :0.04836572555735454 -lots:0.27241268606625546 than:0.24862608038518735 sections:0.23669592445269216 hand,:0.12372085434590437 :0.11854445474996071 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 -The:0.6319415834853158 the:0.23700315391858842 This:0.049818219541315475 Tho:0.043621823955927654 :0.03761521909885258 -only:0.30383596833148724 be:0.24555575265535334 been:0.17691094733510773 appear:0.15527799587139068 :0.11841933580666103 -river.:0.36178114740552375 county.:0.3025234790105975 street.:0.17118121715552215 way.:0.09959873861219641 :0.06491541781616014 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.7596017640664618 that:0.09826129551546176 for:0.08796280005645599 upon:0.02933541293096717 :0.024838727430653303 -bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -shall:0.5506033382024231 will:0.18575256208064295 to:0.15220507572494396 may:0.06359980516979341 :0.047839218822196466 -men:0.3303187003341637 people:0.21342769962909822 things:0.2016774632909797 we:0.13484890679565742 :0.11972722995010086 -and:0.3402442781967734 to:0.20441707137548418 as:0.1765912616991914 that:0.15584471461064214 :0.12290267411790878 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.6543635816032917 a:0.24306053137862246 tho:0.043947173403229504 stone:0.02961381056893709 :0.029014903045919496 -economy:0.4564004596181837 party:0.30534382352972295 orders:0.08298470796492617 and:0.08274247295405134 :0.07252853593311583 -not:0.4330839249593841 hardly:0.21873718854790833 never:0.13647763492064838 possibly:0.11097895204113652 :0.1007222995309228 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -of:0.5681448725854734 to:0.263430183602866 in:0.09523961734604333 and:0.03838657264727326 :0.03479875381834401 -and:0.35092421615842967 that:0.28405935947184424 .:0.1459726273443134 ,:0.11555958316393228 :0.10348421386148038 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him:0.28740025326020185 that:0.27951176004438216 me:0.19269090126908528 them:0.14329231057174166 :0.09710477485458884 -the:0.6685065640312422 a:0.2450277792422118 tho:0.03618152736997034 his:0.032971367631048035 :0.017312761725527565 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -and:0.2796588105643762 building.:0.26171332088257615 that:0.22056314062122506 work.:0.12109128819851837 :0.11697343973330429 -life.:0.22485432613847578 wife.:0.2178099823680614 head.:0.20251409893357594 death.:0.18728454379336884 :0.16753704876651807 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -one:0.3387217207952333 favor:0.32815818093785515 capable:0.15337163979163357 order:0.09859425751722999 :0.08115420095804811 -made:0.3295125953084014 told:0.273304969339393 given:0.16192927816369365 relieved:0.11925799677282586 :0.11599516041568599 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -failed:0.465609417318709 unable:0.31088901098081956 due:0.08616423791080577 devoted:0.076198469664749 :0.06113886412491675 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -thereon,:0.2928964265574511 strength:0.2739570475387903 place:0.19002397564876555 places:0.12263984110571192 :0.12048270914928101 -the:0.5961005460028177 his:0.14968455062042774 all:0.0974448552815043 these:0.09535230268156336 :0.06141774541368672 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -out:0.566781749535485 rid:0.23186671868638278 some:0.07306528870457354 possession:0.06897131766194271 :0.05931492541161586 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -feet:0.500379012812502 years:0.1400751236023685 inches:0.1287229034000128 miles:0.12175291205516575 :0.1090700481299511 -that:0.5362989314846027 the:0.1996282544141886 to:0.11182615721410245 of:0.10868816603898573 :0.04355849084812058 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -told:0.2664421918179324 gave:0.2305962501060547 saw:0.19804776741315386 had:0.16474155948731456 :0.14017223117554461 -satisfactory:0.241270000732351 interesting:0.23419033474676806 effective:0.21976850231781364 efficient:0.1638040584722076 :0.14096710373085966 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -work.:0.28598842692176546 own.:0.22802586419444237 country.:0.17965874098780063 hands.:0.1710009238888301 :0.1353260440071616 -to:0.33311149770190107 depends:0.31587566234528097 and:0.17480311785479943 are:0.09390832061805349 :0.08230140147996505 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -sides:0.4983165262084478 houses:0.20167127432571452 men:0.1181908541201773 parties:0.09478815999553453 :0.0870331853501259 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -over:0.5491760603247119 over,:0.22015615598032384 it,:0.12968852545523693 himself:0.05280447802646795 :0.04817478021325932 -from:0.7406754737192176 when:0.16485939928205826 and:0.03756053336444791 about:0.034428294779872644 :0.0224762988544036 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -demand:0.3161025670595171 reason:0.236995538646501 bill:0.17502591222495167 market:0.14025820626842792 :0.1316177758006024 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -not:0.6287606036288236 seldom:0.11177443289785333 fortunate:0.092795960523438 hard:0.08958856552279051 :0.07708043742709463 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -on:0.924904841370861 lifted:0.031504923266500555 hold:0.017757409327038582 turned:0.013558974046289944 :0.01227385198931003 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.3519557251297213 w:0.1992400220301267 man:0.1977739781344192 moment:0.1462154644783221 :0.10481481022741071 -have:0.24343219724458923 was:0.21495696395091146 know,:0.18155936252297028 had:0.18096738177576968 :0.17908409450575932 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -it:0.249303386203214 he:0.2013523784366888 so:0.20069899425075907 president:0.18316976491390438 :0.1654754761954337 -is:0.7116655545167789 Is:0.16403936585615217 was:0.09184092755118671 has:0.01908818356735239 :0.013365968508529811 -one:0.2894769930500117 those:0.24955814275057386 that:0.19744105012466667 under:0.16827810600062393 :0.09524570807412404 -back:0.296089872350764 down:0.28557382844650586 up:0.21711137549060744 out:0.13796610606783974 :0.06325881764428287 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 -they:0.30704978239311403 it:0.25161728489132673 he:0.23007606134778166 there:0.12750160756287154 :0.08375526380490604 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -the:0.2 of:0.2 and:0.2 to:0.2 :0.2 -.:0.8949245258402183 .,:0.045671257892843466 M.,:0.021851710192736414 street.:0.020848709171934078 :0.016703796902267816 +number:0.2743101740290888 be:0.15525179221714877 name:0.13302735104818814 place:0.09001370625380842 :0.347396976451766 +will:0.07575649277032687 is:0.024925563366803773 amount:0.02452188128838187 would:0.01549061450002928 :0.8593054480744583 +the:0.927207634223021 tho:0.061886939640383665 of:0.0009516092822797392 sold:0.0005098288071711997 :0.009443988047144558 +single:0.06866448437266924 mortgage:0.018742719977709665 represented:0.018281151879984237 a:0.016174977488409133 :0.8781366662812279 +and:0.5572774154093353 Two:0.13590298361445344 two:0.049491111670226 the:0.04066586161656848 :0.2166626276894167 +them:0.023924424500607378 it:0.011248222892800157 to:0.011020779493654523 ing:0.010471841915441813 :0.9433347311974962 +tho:0.2524941843282148 the:0.12081991066044066 to:0.03593473090999611 that:0.01777718805590764 :0.5729739860454407 +ac-:0.0011054459081844725 at:0.0005610238973347514 as:0.0002642532205432729 by:0.00017273508170804425 :0.9978965418922296 +the:0.08013984409210106 to:0.05199079795363394 not:0.051926019349239884 in:0.04757610833245404 :0.7683672302725711 +He:0.3856992818230338 There:0.1313387905944993 he:0.11419745567653108 It:0.0696216328709381 :0.2991428390349978 +in:0.6571852236907072 since:0.03531491325683669 of:0.011068123961574836 to:0.00829818349742524 :0.28813355559345616 +the:0.19737925196595005 W.:0.14727896899687834 and:0.09593944896274394 only:0.07145724395068527 :0.48794508612374243 +days:0.04782498196545034 hours:0.031793451482592855 here,:0.029492445820481022 days,:0.02886430199261126 :0.8620248187388646 +come:0.1499343856399744 cause:0.14668703983245956 tween:0.09568320016154007 ing:0.07196350344171029 :0.5357318709243156 +and:0.4161048966195021 there:0.23574892824217444 bring:0.15292830734005636 so:0.04598959569570392 :0.14922827210256298 +of:0.445167650063027 on:0.2106991219519849 and:0.11542448639908993 On:0.054433349843500775 :0.17427539174239742 +which:0.762117452672081 until:0.01782135776831193 whom:0.01669143918821675 When:0.015251377850978293 :0.18811837252041194 +one:0.4453423053659066 the:0.2834913452576009 any:0.13895900131086147 this:0.09560781009072473 :0.03659953797490645 +little:0.3905833987759502 beautiful:0.19817821940382924 British:0.08354972750972636 proud:0.0801520144131351 :0.247536639897359 +of:0.2624797364660268 to:0.17335418191258808 in:0.1682745281876382 and:0.1089697604363897 :0.28692179299735726 +test:0.0050335779334395375 tract:0.004490941556558774 it:0.0012408168647726322 as:0.001055083658387626 :0.9881795799868416 +t:0.7286298889392531 when:0.11077186666458338 just:0.0212955436205304 for:0.015840208020272844 :0.12346249275536034 +West:0.22997244115284016 said:0.10363245020167544 is:0.041413127227029826 west,:0.018035356692372568 :0.606946624726082 +have:0.6191793617987817 could:0.09551922588177264 are:0.025005851120120402 ha:0.02469664684693905 :0.23559891435238609 +and:0.23924178461730952 States,:0.10579184917797019 States:0.049727187139015055 -:0.03131299647062168 :0.5739261825950835 +had:0.4627905656117243 has:0.3327254422189732 her:0.08838061276108625 have:0.06664578249434622 :0.04945759691387008 +sent:0.09714158470458834 trying:0.0851009836638869 compelled:0.060870936653318025 ready:0.06074894111788256 :0.6961375538603243 +the:0.32728864551002873 be:0.11757242932997472 a:0.07861371479229022 his:0.04333924626555361 :0.4331859641021526 +It:0.33440725653637965 it:0.3324663345640137 This:0.09442207133456053 r:0.06559063897875311 :0.17311369858629302 +not:0.3526238772092991 it:0.16086914879114386 the:0.11486971557819439 It:0.05279972643755176 :0.3188375319838109 +the:0.5203203676898563 say:0.0867208096163634 and:0.0683004031087093 so:0.038299259109122935 :0.2863591604759481 +run:0.8111213570543994 carried:0.036909161283860056 strong:0.031116122722921923 completed:0.02586637626043782 :0.09498698267838088 +One:0.11689359651242555 Mr.:0.10809340220403262 and:0.05489451257714547 14:0.03173211952958899 :0.6883863691768074 +and:0.38093992253497755 in:0.11994550217604662 for:0.08293212663695602 very:0.058096352775859 :0.3580860958761608 +be-:0.39022958423212045 be:0.16414498120658885 be¬:0.08066836410938044 there:0.027827633398863204 :0.337129437053047 +Red:0.7140207632546062 first:0.07650226375279087 his:0.006289318879309914 whole:0.0013924055073693332 :0.20179524860592368 +hoped:0.4173570798697104 sure:0.04368539584371465 expected:0.040585672678814855 found:0.03417713965692638 :0.46419471195083384 +interested:0.04236735840682877 of:0.04031444983999309 men:0.02197291889112026 and:0.01808189338120617 :0.877263379480852 +and:0.08109034837018604 or:0.07315749221382933 trade:0.06644195845188405 coun-:0.03396125901213512 :0.7453489419519653 +secure:0.14173486530827292 him:0.06305245213630106 the:0.05710019596263289 children:0.05496965344863648 :0.6831428331441566 +to:0.7328520127694018 may:0.08355893500961989 will:0.030522319240070886 shall:0.022259855201570092 :0.13080687777933736 +to:0.13657869397321487 and:0.10528171855274551 company:0.05727714336901798 will:0.04529184788103917 :0.6555705962239824 +of:0.7973307283506237 ot:0.017531632201702473 at:0.015033601505500432 and:0.010468820148604775 :0.15963521779356862 +after:0.11432276512926681 was:0.03757953204445925 of:0.024712627044788344 and:0.021158655449315417 :0.8022264203321701 +come:0.42198947481797366 as:0.020140772337255457 be:0.0061591637030865305 see:0.003392424989619732 :0.5483181641520646 +of:0.9554637956487607 ot:0.012447106511566984 in:0.007310090450449974 nf:0.005582336606318243 :0.019196670782904046 +and:0.14347221719868536 the:0.08088247567243809 of:0.05691997092925243 he:0.0462356765805432 :0.6724896596190809 +and:0.5383780488712677 to:0.14430231086264783 the:0.1394261367102918 a:0.07091181132475614 :0.10698169223103667 +tax:0.1325568047263796 matter:0.026411566931911986 tariff:0.021990496161828542 men:0.017475469390158503 :0.8015656627897214 +twice:0.07185211229841962 once:0.025589205551798083 half:0.00881546413062611 for:0.004946460330850207 :0.8887967576883058 +the:0.15428785209341025 and:0.10974372751477672 a:0.08306320830633508 to:0.06958096895413557 :0.5833242431313422 +that:0.4775409767437595 of:0.13302573205856508 the:0.10878128149684908 and:0.041504739657112745 :0.23914727004371356 +three:0.4097448271940989 a:0.2959336886005058 the:0.041767039583730625 that:0.015743440252057518 :0.23681100436960714 +to:0.9998218929223031 and:5.386383315526557e-05 that:4.915302023961676e-05 places:1.485294666883835e-05 :6.0237277633353495e-05 +till:0.34934424045991236 .,:0.2537624921524255 .:0.19648685585102862 ..:0.0976609156331097 :0.10274549590352376 +is:0.9932255214574174 was:0.0033274736267334443 of:5.302030923370529e-05 made:3.7839457305580334e-05 :0.003356145149309794 +of:0.12780372460727893 and:0.10918278694546281 the:0.09620992119379779 Miss:0.04731740638897337 :0.6194861608644872 +be:0.2832876489153492 children:0.28008095297450986 they:0.19990264787736844 you:0.06562230708998522 :0.17110644314278717 +and:0.1396177848949189 of:0.10900526422967251 the:0.08500987287749918 as:0.07943092803441194 :0.5869361499634975 +street,:0.02329754342181321 street:0.013357631965704879 mills:0.011102956023352045 north:0.0103712085817678 :0.9418706600073621 +by:0.7744748644307706 the:0.0377733854735818 in:0.03610980282338356 and:0.02671076113567879 :0.12493118613658513 +heard:0.09552421647637824 still:0.07692093626688105 far:0.07681750626558993 raised:0.07277780683326858 :0.6779595341578821 +at:0.8579209285544579 took:0.12743854458879175 in:0.004995871186176461 for:0.004115871449006986 :0.005528784221566988 +old:0.028963112697992406 most:0.02810946459046783 same:0.020669299892347375 new:0.019757649029313103 :0.9025004737898794 +is:0.44760767919388234 was:0.28833157037216617 will:0.03058166246413361 Is:0.0301937956610831 :0.20328529230873474 +of:0.8522958822633925 with:0.06311363367358842 by:0.06034283134867468 ot:0.00940426704726306 :0.014843385667081425 +is:0.41192307379457754 appeared:0.09787710069889742 does:0.04627233542674658 stood:0.0316951525247159 :0.4122323375550624 +be:0.45245171632933623 not:0.18654203053577637 continue:0.07717182537311272 in-:0.06505878868603376 :0.2187756390757409 +and:0.10879668657422385 The:0.10770179416518251 Mr.:0.10764861404841959 of:0.0732726709818698 :0.6025802342303043 +of:0.963239073968821 the:0.004209663901028439 ot:0.002453926658202967 and:0.002116927145082248 :0.027980408326865134 +in:0.728383596098687 to:0.11938176959367798 that:0.08271973291434637 of:0.022837718876277342 :0.04667718251701133 +and:0.04837482429600055 of:0.02729365151616438 7:0.022263796777374063 extra:0.02139092342284816 :0.8806768039876127 +part:0.035022752908593274 tion:0.026647615964033654 and:0.02405787339687042 out:0.020091825839457067 :0.8941799318910456 +and,:0.7447260645290851 as:0.072648099597007 at:0.05705733532389862 to:0.05499717684927796 :0.07057132370073144 +that:0.4113165071780939 claims:0.2989944167168549 when:0.0841214453867239 if:0.06968409168312655 :0.13588353903520065 +con­:0.32482450512076966 Senator:0.16760033192698723 this:0.13238134258314085 the:0.08850304332992541 :0.28669077703917695 +proper:0.007739972150726303 ::0.0023935306369796735 this:0.0019700869677423535 the:0.0016175613351870719 :0.9862788489093647 +he:0.37293275457637304 I:0.2332416062536414 is:0.14407277925031356 was:0.12998385462888346 she:0.11976900529078853 +the:0.6462680952718518 The:0.10461727238155893 his:0.068210011038728 tho:0.04742110465030579 :0.13348351665755548 +and:0.8309518475588568 or:0.10499333306942121 without:0.03565087142999183 aud:0.02033642000810904 ;:0.008067527933621253 +the:0.9975359463087627 its:0.0007360956719013697 American:0.0007077869088395956 his:0.0005607220083296591 your:0.0004594491021665832 +do:0.26884127285411613 of:0.11890147628612889 considered:0.10163111361718813 avoid:0.06982223263072948 :0.4408039046118374 +the:0.3274036055490309 a:0.09559171967876212 be:0.09539767849295566 their:0.056429551075491365 :0.4251774452037599 +ma-:0.1621423658143521 small:0.1441272297717164 large:0.11599036690390578 most:0.06600034381300195 :0.5117396936970239 +be:0.8823188416253095 he:0.03248025888527982 bo:0.021479118541310037 secure:0.010238707778402571 :0.05348307316969788 +and:0.3945280481327608 I:0.20875432930114146 who:0.05891923080023944 which:0.038366087049011455 :0.2994323047168467 +and:0.0564005994184165 or:0.04509371441341398 place:0.04183399543528911 that:0.034251916055630445 :0.8224197746772499 +a:0.02611398672537773 ex-:0.02351002179400581 the:0.02199994572523539 con-:0.01725339586225296 :0.9111226498931281 +and:0.11768463021409825 of:0.06253504247344342 the:0.05990015862566202 to:0.02991271755477966 :0.7299674511320168 +light:0.18095735667278726 ball:0.17193799227731893 dress:0.07633977633835237 fellow:0.029879785337164032 :0.5408850893743775 +were:0.2630361559216838 are:0.24129987282992021 was:0.16291436511104124 is:0.1475910955305869 :0.18515851060676766 +of:0.9348898732503037 and:0.028313093461279915 a:0.012828986455038292 the:0.010404355046194132 :0.013563691787183974 +The:0.3707512138939863 Tho:0.12737573046750159 To:0.05809452056991806 He:0.052531814588669054 :0.39124672047992487 +the:0.30353909498451676 a:0.1313809261980747 his:0.1300495551424755 eight:0.11356864323070318 :0.3214617804442298 +of:0.83724397279415 are:0.06594582684521066 among:0.043512215328683344 in:0.022307204712475347 :0.030990780319480646 +in:0.44299776679897657 the:0.15149659433806487 of:0.09053772744295949 In:0.07763503325284203 :0.23733287816715695 +year:0.07502379393162074 alleged:0.025404772377067984 first:0.025352057854713686 last:0.01442177164520246 :0.8597976041913952 +country:0.017836813419663495 needs:0.014128113004253106 State:0.014118882647320896 people,:0.01389906035007154 :0.9400171305786909 +in:0.5424127386474823 of:0.17079370345518774 for:0.11686046088061214 to:0.11116923799155962 from:0.05876385902515817 +and:0.041141427256939145 which,:0.040826180317833555 complete:0.022318630748731985 acting:0.020420267130193 :0.8752934945463025 +think:0.08844491481802336 am:0.06392128020337885 he:0.056162738529015134 never:0.04223534584818083 :0.7492357206014018 +and:0.18694105211515116 to:0.13318076064712966 the:0.09915408323584689 in:0.07079870876351617 :0.5099253952383562 +heard:0.33091241190341564 dent:0.22116074641244357 mo:0.1265826380540182 and:0.10435225860511803 :0.2169919450250046 +to:0.47106351156572007 they:0.18401211170994033 you:0.06722587723936768 and:0.06072428794336654 :0.2169742115416054 +the:0.15277720450262106 a:0.0858916694447304 A:0.05675063974536705 full:0.05612824723799046 :0.648452239069291 +was:0.552528296696967 am:0.20028191847476662 felt:0.05621344040684476 did:0.042001405858531425 :0.14897493856289024 +going:0.33138085788045973 trying:0.015103990881871284 people:0.012917986486510144 having:0.010847991264928062 :0.6297491734862309 +east:0.3133658746424648 fifty:0.025708920142427934 in:0.006379788158111013 thirty:0.0032434315171985316 :0.6513019855397977 +in:0.46263837569284644 the:0.16761770249921681 to:0.06296910487630429 or:0.04636708342355466 :0.26040773350807783 +;:0.018790470065926216 and:0.011069357216176915 of:0.01013160274860759 the:0.008488896457904788 :0.9515196735113846 +on:0.2594773200057575 without:0.16794936624383597 and:0.15104914909282194 of:0.03718633100041824 :0.38433783365716645 +of:0.23871985121363548 in:0.1809946741140116 and:0.14821509274610126 to:0.13036286771501254 :0.3017075142112392 +in:0.3903264642481607 under:0.376467061615735 In:0.06790563999124315 of:0.04782890598450015 :0.11747192816036116 +a:0.4606481550124291 their:0.3369478050207189 an:0.1372236666321548 the:0.018717337049798034 :0.04646303628489917 +of:0.3604916324405185 in:0.12390240127355301 and:0.1147045406134064 to:0.10990150516408041 :0.2909999205084417 +those:0.18833921410556087 him:0.12153425096906795 all:0.11197901126950707 us:0.04957539298737044 :0.5285721306684936 +vote:0.6548961496318282 majority:0.04889324074325825 suit:0.019216671684684068 member:0.0147833719802415 :0.262210565959988 +jury:0.0650654955411034 total:0.014382619144059066 object:0.011257264774365944 struggle:0.010328313126359276 :0.8989663074141124 +the:0.20682375112502854 it:0.12661974374442617 he:0.12274254790190221 by:0.10309968131430564 :0.44071427591433743 +Board:0.11627858211726173 late:0.10731691840390113 greatest:0.09549068257585334 finest:0.04937761915954477 :0.6315361977434392 +and:0.11609533954704167 of:0.07284198476953085 the:0.06765361811680937 to:0.03425285177040263 :0.7091562057962156 +the:0.4360524501230953 a:0.11461076591794307 his:0.0398783170501831 their:0.030747963003822747 :0.37871050390495575 +the:0.07323653426373952 and:0.065475623405763 of:0.05504885320712935 to:0.042943720704997544 :0.7632952684183706 +been:0.18182913356660957 all:0.052765579456336996 in:0.03671621263747159 had:0.034521068365676956 :0.694168005973905 +to:0.09430510252833721 and:0.0897272279828552 of:0.05472271019325404 the:0.03781484046815566 :0.7234301188273978 +a:0.34039122299014013 the:0.08671250585569726 and:0.052499704743579505 of:0.04952324674288317 :0.47087331966769996 +the:0.31790844707090926 to:0.2199449028045279 in:0.18687390848535648 his:0.1409182960302667 :0.13435444560893955 +more:0.41986418428279065 less:0.3564816829274326 moro:0.07689153218330659 later:0.020483010288027573 :0.12627959031844246 +the:0.16751021784503484 and:0.1297097365627085 The:0.08960531236652869 of:0.07422996563497931 :0.5389447675907487 +taken:0.5697533635010377 built:0.16501517958151332 called:0.04023199095345667 given:0.02093052042739015 :0.20406894553660218 +man:0.28116099721365895 one:0.2780826270585172 men:0.07360895137576172 gentlemen:0.050910422565175306 :0.31623700178688685 +been:0.6029230466926421 added:0.29363230238051424 from:0.015518973265936032 won:0.00961051249762528 :0.07831516516328234 +not:0.018103605309296906 in:0.014444485351386102 ia:0.007068488798616176 a:0.006820076744229635 :0.9535633437964713 +same:0.535664014691614 as:0.016757408303606332 most:0.011363945600919847 United:0.009692933976400394 :0.42652169742745943 +petition:0.6085119159349991 sale:0.0633341818192753 suit:0.05809996616303496 deed:0.042540802401341345 :0.22751313368134926 +prominent:0.05857525065439135 popular:0.043606347621765594 pleasant:0.04257833847776528 certain:0.04175475725808385 :0.8134853059879938 +of:0.1517104581825027 that:0.11602490907774057 ;:0.04678224343910124 all:0.04367752885770884 :0.6418048604429466 +cost:0.06748488746941933 value:0.05223241600830531 settlement:0.037417887235346364 work:0.03422506927961368 :0.8086397400073153 +to:0.9998218929223031 and:5.386383315526557e-05 that:4.915302023961676e-05 places:1.485294666883835e-05 :6.0237277633353495e-05 +than:0.3105722043995445 the:0.019250843947866657 value:0.017057722005578105 it:0.015078727017776482 :0.6380405026292343 +was:0.25879134678008375 now:0.22382456782666674 is:0.22112805594305715 are:0.1533627755646025 were:0.14289325388558993 +and:0.22959853587323792 even:0.21386064445895386 reduced:0.049876085047902384 greatly:0.03831643027027212 :0.4683483043496337 +and:0.08814188650689748 of:0.06195302258489481 the:0.04924767654266013 from:0.039388477143397466 :0.7612689372221502 +and:0.6063705797449646 more:0.03404169464900405 itself:0.010684315842294755 is:0.00944851931528462 :0.3394548904484522 +is:0.44456700897587415 are:0.33427582271362105 of:0.11852422929420962 and:0.027961404516181218 :0.07467153450011398 +the:0.10259874620257807 a:0.030594398240550505 and:0.026014030041525714 few:0.020666685766421652 :0.820126139748924 +and:0.762623985098787 the:0.09639342523098382 Its:0.030943404941038713 nnd:0.022357911423674718 :0.08768127330551577 +remedy:0.9920887776125317 patient:0.001243925200296225 papers:0.0005687500529577734 market:0.0004803145271420989 :0.005618232607072456 +himself:0.3244989883090223 and:0.19563467032007797 which:0.12642754808073728 but:0.034358236613472516 :0.31908055667668994 +night:0.28668863518947696 day:0.13015007779983853 citizen:0.12130350842910573 power:0.0793560472853407 :0.38250173129623816 +In:0.013883772728444195 in:0.010112709837700446 things:0.007259714800487691 men,:0.005439799454782665 :0.9633040031785849 +on:0.9950977181196452 out:0.002096024690020846 in:0.001673552010384741 forth:0.0005095623964550587 :0.0006231427834942603 +of:0.13468182421829764 and:0.08937601056295706 holding:0.06237573838091401 the:0.05189640268802376 :0.6616700241498077 +almost:0.0031366199549128946 be:0.0025919465280756105 bo:0.0021394808084729696 is:0.0021322839698186963 :0.9899996687387198 +kill:0.8458818488464035 allow:0.02900801837539823 bring:0.026430800575841167 rear:0.022336861563762432 :0.07634247063859459 +taken:0.3779619549950398 drawn:0.15153444377159636 burned:0.1039108468035965 given:0.0869575969797388 :0.2796351574500286 +lie:0.27605431998057683 be:0.17859409614354202 has:0.10424354522204861 may:0.09100030745449675 :0.35010773119933575 +loved:0.09356202294212923 delivered:0.06915595330800092 met:0.03481009821305905 built:0.024135079605251696 :0.778336845931559 +West:0.0013646286691961858 White:0.000589792853706807 Wilson:0.00044754526069319434 A.:0.0003718816480702868 :0.9972261515683334 +store:0.6865260447074538 house:0.09751546915656088 yard:0.023085847776050394 House:0.01675281891831853 :0.17611981944161628 +done:0.9875271996040973 looked:0.0015865450539742706 a:0.0013669662559080032 adopted:0.0008426644056388466 :0.008676624680381578 +will:0.9642232391303034 never:0.01374970298807962 must:0.00699869280701667 cannot:0.0006639129822597011 :0.014364452092340595 +order:0.25183108976380525 addition:0.12809952675681108 answer:0.10285969188569515 regard:0.09119733581504827 :0.4260123557786403 +the:0.5727046162296454 tho:0.13588702649403783 tbe:0.06397062131163281 tne:0.03446565832645555 :0.19297207763822843 +week.:0.0029523541036046274 see:0.0025487138434681427 man.:0.0025193949051240997 world:0.0017668306324773052 :0.9902127065153258 +other:0.1325646408108745 effect:0.1180698799122424 part:0.08512083868584773 more:0.05777711456137769 :0.6064675260296576 +people:0.08464052722807347 clerk:0.021170588990309304 common:0.0129548334688825 prominent:0.008163630440995676 :0.8730704198717388 +of:0.10426623560389407 and:0.1019365838849753 The:0.0995417260364817 the:0.076778796825488 :0.6174766576491609 +the:0.48615165664088256 Mr.:0.17389470373040744 his:0.08446555403888728 this:0.035754179228279365 :0.21973390636154347 +Republicans:0.060135892555224765 Colonel:0.05451247661643813 difference:0.052725256917860064 wife:0.05086243702480392 :0.7817639368856731 +years:0.1103680506914784 years.:0.02061421205047067 days:0.015528371031936225 feet:0.01529862819196948 :0.8381907380341452 +the:0.7962194824204804 a:0.10920846276113014 said:0.0469635797667324 tho:0.021330559299480387 :0.026277915752176653 +face:0.2102519375147103 wife:0.06264062825784648 hand:0.03467831611997843 room,:0.028023696074142294 :0.6644054220333224 +way,:0.24634632132381523 bond:0.1638205235869252 notes:0.11361441145734082 up:0.09432306962125744 :0.3818956740106612 +the:0.34969262245325494 W:0.2180765783267546 .:0.09764375675000343 A:0.05644338395277972 :0.27814365851720724 +the:0.3227344083817387 tbe:0.23777400695675857 I:0.0793715370917474 his:0.014179718568656356 :0.34594032900109906 +own:0.7828014095017674 entire:0.011925689121072629 immediate:0.009726033399322603 usual:0.0015639971058734714 :0.19398287087196392 +of:0.12579728596394402 and:0.10696631765407275 to:0.08507682595236185 the:0.05278681228188091 :0.6293727581477405 +been:0.27125719157041406 5:0.2564736406424236 the:0.17109947118275626 three:0.12443649960253551 :0.17673319700187065 +fought:0.6768485693584183 that:0.08238118201467134 of:0.04104195621527491 grounds:0.017271079573197862 :0.1824572128384374 +of:0.7043144822218794 elect:0.0791038161368015 for:0.054906190577133474 and:0.054360868981517506 :0.10731464208266807 +the:0.1589550910445988 Miss:0.079820833392098 Mrs.:0.05490906672430249 Mr.:0.04124067336367507 :0.6650743354753256 +most:0.06889375770448189 rear:0.04345999791749124 same:0.03374195735324377 United:0.0324056659876521 :0.821498621037131 +on:0.7365100739349761 and:0.04459341592895015 of:0.042119380482257884 for:0.03233718725298472 :0.144439942400831 +and:0.07714559322686308 of:0.05073606880769136 the:0.04296562692228945 ,:0.031122012921861005 :0.7980306981212951 +per:0.10185380677621003 party,:0.06385816359629466 a:0.04932863711876507 and:0.03355434657374833 :0.7514050459349819 +It:0.9017690258762378 to:0.04546554566223458 it:0.013115168541709625 This:0.008639352680866083 :0.031010907238952064 +seized:0.5519673245668288 taken:0.20276244032633794 got:0.11621793661897192 fast:0.021452407676791713 :0.10759989081106958 +a:0.9181455271536165 been:0.06173571074513611 was:0.010124784234945625 any:0.005496045620658655 :0.0044979322456429605 +wife:0.09738723246623357 He:0.08584158412071635 he:0.06761001300432953 Justice:0.012823809497593746 :0.7363373609111269 +no:0.7776608664821394 a:0.04098443992529901 and:0.036573738740366395 to:0.03537192761008565 :0.1094090272421096 +and:0.08444485961303268 went:0.04406680775909926 it:0.035147498958923086 even:0.035024087680629756 :0.8013167459883151 +of:0.18141798904085718 with:0.12021272015610256 in:0.1191868521724972 and:0.09765365990567255 :0.4815287787248706 +and:0.840153423548528 bearing:0.018230357697001376 the:0.003588732774571327 of:0.002641784908600467 :0.13538570107129874 +such:0.33587041179331667 whenever:0.18431357191612696 when:0.15164415118065527 in:0.11186554419798916 :0.21630632091191188 +There:0.6350644240679316 They:0.03228198158421691 and:0.0243705983587884 they:0.01911480710212262 :0.2891681888869404 +to:0.3027177136144342 of:0.13565564822508958 is:0.09733495247437567 as:0.08298345085124254 :0.38130823483485804 +days.:0.04953083776886717 tho:0.00672061730493542 feet.:0.0053522900126749704 the:0.004336395488356153 :0.9340598594251663 +by:0.9296011338105132 is:0.02912316517471911 as:0.019227940027820207 was:0.01669591338326729 :0.005351847603679996 +into:0.5509096043383752 to:0.165210503535267 the:0.08459069355060304 which:0.03927763655378953 :0.1600115620219653 +in:0.8570162407323649 In:0.1016951630549524 ln:0.020764212948143224 lo:0.009810848495248591 :0.010713534769290765 +said:0.7022304737322667 Prince:0.09467095322026094 Los:0.022070425193654097 the:0.0042386871942077745 :0.17678946065961046 +and:0.5526669776490951 for:0.13348043440820825 ago:0.10244169927720197 in:0.053500144203826545 :0.15791074446166817 +cars:0.32067194885851236 board:0.24981912989672128 application:0.07459931570098743 ships:0.012191733139212462 :0.3427178724045666 +and:0.07334135759221828 deed:0.028873781654634452 tion:0.026042134745936 dropped:0.021326341226892156 :0.8504163847803189 +the:0.62414348353387 a:0.05347740657317824 all:0.019423461914559695 tbe:0.019350703871783097 :0.283604944106609 +If:0.03588221982870192 is:0.019972489581226223 for:0.017800125746242856 heard:0.014297541881658108 :0.9120476229621708 +may:0.2870068988019517 should:0.232089622677302 might:0.16390720025233407 will:0.16276681092495832 would:0.15422946734345397 +think:0.8335389153011652 that:0.014589435276486557 said:0.007154043732056541 If:0.004172714615908109 :0.14054489107438362 +to:0.05343790759075663 and:0.049513920747651576 mill:0.044170157900036436 the:0.0441567063612617 :0.8087213074002936 +to:0.05006197914146453 has:0.041983325656875105 is:0.02383767471222713 of:0.014611093027902965 :0.8695059274615303 +it:0.5222601834235489 West:0.15722149872380892 they:0.1514494604225895 he:0.12268334539582589 we:0.046385512034226806 +have:0.4018273192868969 had:0.10585542994001192 are:0.08445344218638576 were:0.04064587283765959 :0.36721793574904577 +a:0.28531061069024877 that:0.1355567290765406 It:0.11688011406318638 This:0.10217125444443372 :0.3600812917255905 +history:0.007762287167394088 wealth:0.007656944781426898 world:0.0036377817443876094 gas:0.0018978670039742117 :0.9790451193028172 +certain:0.12932640928153638 similar:0.10576260296078523 proper:0.058066921205959694 perfectly:0.0557126352956851 :0.6511314312560336 +the:0.4062071664812925 a:0.09027396433070048 his:0.05736278579691735 their:0.042327659390932124 :0.4038284240001574 +by:0.28017380560837407 and:0.21638403678189982 la:0.18261793401166132 in:0.14078111391561307 :0.18004310968245177 +::0.06308866377857177 ":0.0209546652604634 to:0.01973416755726228 and:0.01501808967779467 :0.8812044137259079 +is:0.3375791562924553 and:0.1033660412664269 to:0.09613975592558832 of:0.07407330483752277 :0.3888417416780068 +court:0.4609546310997798 or:0.08509516195589267 quality:0.07139064403898378 and:0.008600717576677387 :0.3739588453286662 +increase:0.06299780988539219 and:0.05379221180666146 change:0.03556689416633026 man:0.022575131503933938 :0.8250679526376823 +present:0.19576443942576968 last:0.12155756706659779 right:0.12134088603479999 only:0.11467712822505344 :0.44665997924777917 +*:0.041762222096006094 the:0.01773497847352487 .:0.01633962183696277 of:0.014963453694312293 :0.909199723899194 +F.:0.039286341477113136 and:0.028718517896114494 the:0.021683775008994027 of:0.02031394751013856 :0.8899974181076397 +and:0.4127802086491979 thus:0.19759539884955324 to:0.10982461354714394 then:0.05077589472193501 :0.22902388423216993 +seen:0.6869067623159413 only:0.0795964981118085 take:0.06481400953963518 asked:0.030823521714411148 :0.13785920831820386 +of:0.9462585024245844 ot:0.0117936151714549 upon:0.008557763041243404 ol:0.00738821449684286 :0.026001904865874486 +of:0.995470121291362 in:6.67704878923493e-06 over:3.9078013272332055e-06 with:3.083459446527002e-06 :0.0045162103990749 +been:0.41820166088757216 about:0.2525803533121563 already:0.09779596532816472 just:0.03968857794638539 :0.19173344252572172 +narrow:0.1502451099859058 handsome:0.06641443941545484 large:0.05283892339415791 largo:0.05081330594094656 :0.6796882212635349 +of:0.9433129781897047 make:0.011952502128391834 show:0.0037533506774599544 present:0.0027981547166424383 :0.03818301428780112 +to:0.2622800365936532 Mr.:0.21491251584631707 of:0.18802958509976408 was:0.07092303289003504 :0.26385482957023054 +the:0.055176721585581914 and:0.051460264325784245 of:0.038823897633717505 sales:0.03673326943610741 :0.817805847018809 +The:0.37522186169114063 Tho:0.06314873847519799 and:0.05383402402195899 A:0.053636495452680996 :0.4541588803590215 +who:0.3344116889203793 was:0.06366342612964038 to:0.058475974089652764 of:0.0354784391354648 :0.5079704717248629 +and:0.1863704180428941 to:0.14844767201863765 in:0.09634487042514382 of:0.09275362458144801 :0.47608341493187645 +the:0.19855754033933387 own:0.0863303439587312 old:0.026205857526704866 was:0.009355400151528038 :0.6795508580237021 +prominent:0.12369921614146107 splendid:0.08845223718065436 large:0.05064396193249362 a:0.028909516611017955 :0.708295068134373 +least:0.6203331370902552 that:0.006783045952184248 some:0.005923218554372085 thousands:0.00512374753202727 :0.36183685087116124 +she:0.28677104537331904 It:0.19601322260715612 he:0.19134619320820387 I:0.1880038495640569 there:0.13786568924726408 +he:0.001205979994575321 feet:0.0010435952279536384 U:0.0008867165790871068 1:0.0007234604768241679 :0.9961402477215598 +a:0.4783785962387993 the:0.10896014608783312 this:0.015900554805087515 those:0.014902588378304434 :0.38185811448997564 +and:0.08912560405370051 of:0.06973519853391302 the:0.05870462998480342 for:0.0275271738945541 :0.7549073935330289 +evidence:0.10141173703414406 interests:0.09592430686601024 capable:0.06527331933733103 method:0.05871023035265947 :0.6786804064098552 +of:0.29842118416913305 and:0.12165425777272221 to:0.05148396862985495 as:0.031701630896847736 :0.49673895853144195 +not:0.34134635391648976 is:0.11739418112518664 were:0.10655969283046368 and:0.07034757149747806 :0.36435220063038193 +and:0.015427681600179249 by:0.003099236491932096 May,:0.0025200441104875166 Brown,:0.0015258997306615736 :0.9774271380667394 +of:0.3757299957384691 unless:0.10790324203034234 ago.:0.09493580945705253 a:0.07789823853818878 :0.3435327142359471 +the:0.22921722555970792 a:0.07266927466877977 to:0.04922421536596389 are:0.037740518320232834 :0.6111487660853155 +and:0.17169124261089302 the:0.06301018594593007 In:0.04759971478899349 of:0.04164428587359424 :0.6760545707805892 +is:0.4248191510839305 was:0.2713735535952102 a:0.04435703599754668 Is:0.02851511473898223 :0.23093514458433034 +a:0.21022982106860325 the:0.15415943530782666 not:0.05373822001307159 an:0.0439503723173203 :0.5379221512931781 +State.:0.08637979158032952 country.:0.07072123524910975 conclusion:0.05044711977456212 coun-:0.013036191441754929 :0.7794156619542436 +which:0.3628221029923853 of:0.23899004749379252 A:0.133079347280735 The:0.1187936175197403 :0.14631488471334686 +have:0.4266395507333132 had:0.3121927766351385 has:0.22183200446633308 bad:0.017917617495587228 :0.021418050669627958 +the:0.5209153902233377 any:0.15744085721317655 tho:0.1298126534575483 his:0.09545469324505342 :0.09637640586088403 +of:0.09851693705255851 and:0.05010112436161081 will:0.04332680482521059 .:0.040696461066449155 :0.767358672694171 +point:0.9964390035157623 hill:0.0014121630108709998 lie:0.00125342845081147 of:0.00013530551643306274 :0.0007600995061219957 +former:0.7190678009094467 State:0.02755262554980567 late:0.006644606984675353 additional:0.006560374837662539 :0.2401745917184097 +but:0.7700080825054277 and:0.09736729456539905 But:0.02884265828500397 that:0.008322647214040127 :0.09545931743012911 +of:0.26295977030612866 and:0.15973133929314917 we:0.1573024032780238 to:0.1554465313821877 :0.2645599557405106 +they:0.3367289309143838 I:0.2157113099215499 we:0.20049884373636154 you:0.10126572385220049 :0.14579519157550438 +by:0.4255417305009221 in:0.2898102518118091 of:0.14082386351213766 for:0.07595697024073914 from:0.06786718393439195 +notice:0.487808166242455 and:0.02695360163431398 is:0.019000640005972683 to:0.01679618990176272 :0.4494414022154956 +had:0.875168465122652 the:0.03265748463033004 tho:0.010176716107671577 his:0.00924416326776644 :0.07275317087157976 +that:0.9333756620141216 gentlemen:0.016964437144754037 and:0.013656975664174165 If:0.009757055633458075 :0.026245869543492194 +the:0.7199757939887822 a:0.13029934269600824 tho:0.03356343273288526 tlie:0.022722520154769818 :0.09343891042755434 +and:0.009986570723860926 thereon:0.009166719497604477 farmer:0.007024696278912491 the:0.006482232767528749 :0.9673397807320934 +follows::0.31243629984379423 a:0.08029715515882486 the:0.07332308905238635 much:0.027776469521412616 :0.5061669864235819 +it:0.7461931539455017 any:0.10196098826251634 him,:0.06586606349069174 him:0.0077502172450554675 :0.07822957705623465 +the:0.0006998171037689273 lot:0.0004511039816060908 was:0.0002447340442627158 With:0.00011240827393277261 :0.9984919365964295 +tho:0.31338202654362174 the:0.28004390912127913 room:0.13720798285595356 feeling:0.06997055194619067 :0.19939552953295486 +the:0.1122849384880621 and:0.10632725209021002 of:0.08569453563386857 are:0.04605569007379655 :0.6496375837140628 +which:0.9088650031766089 who:0.005039520000750688 if:0.004941692668740403 as:0.004791980417233483 :0.07636180373666658 +May:0.18855564513562578 December:0.1469934298600029 October:0.11761648505051306 September:0.1108024800946016 :0.4360319598592565 +same:0.044518173915120446 new:0.019825583328331 the:0.01910573277507285 previous:0.018565481069350808 :0.897985028912125 +the:0.5467248138324674 Its:0.11306911476920731 their:0.09950635355137863 his:0.09947380497676284 :0.14122591287018388 +that:0.25758091235591657 and:0.204364512026245 but:0.13187392291453134 But:0.0800881242804087 :0.3260925284228984 +advice:0.4386692138540697 exercise:0.19116028966642365 notes:0.05459512493838061 results:0.030917031846181654 :0.2846583396949443 +and:0.21013238280587165 that:0.15840205343561617 as:0.14427938367952037 when:0.08796045447225663 :0.39922572560673525 +come:0.1436132011084212 go:0.06784231031682651 formed:0.010365831020416452 be:0.009761318572944907 :0.7684173389813909 +that:0.043226729157740285 they:0.033459506433961374 one:0.020099747480853997 who:0.016330009599343553 :0.8868840073281009 +the:0.2901485318169553 a:0.11633154501792048 his:0.04583609840420623 their:0.03924336132932338 :0.5084404634315945 +is:0.19138922674943373 and:0.15440527807431323 are:0.09060655238517946 of:0.07936735195217888 :0.4842315908388947 +He:0.1499507974598096 and:0.1372324869761033 are:0.1324108600597494 was:0.0550304261407562 :0.5253754293635815 +to:0.24715630838038588 the:0.14140332652682858 at:0.12325374502774757 and:0.048832618344442885 :0.439354001720595 +out:0.5082353490026056 on:0.30476660946858697 off:0.08351975959487246 away:0.02813192939012803 :0.07534635254380695 +is:0.3068768235347974 as:0.1525543525050844 of:0.14514890966027036 and:0.10460140657802944 :0.29081850772181833 +burning:0.010611733932367518 President:0.006643127207850907 Washington:0.005175027614264496 going:0.004607322494104067 :0.972962788751413 +local:0.062290708396374156 said:0.060188999136640796 county:0.03158710283104911 navy:0.030041196173439175 :0.8158919934624969 +city.:0.09477009049430407 day.:0.07392171171665561 year.:0.055546935151455194 State.:0.04726918119165332 :0.7284920814459318 +colored:0.05122391519703994 Indian:0.04051908013369232 the:0.01756798743391702 of:0.0174851674339444 :0.8732038498014064 +the:0.04024952661713668 and:0.018431415145257105 white:0.007690681814090864 support:0.007263910372326845 :0.9263644660511886 +The:0.20340451149268232 the:0.1628562896513949 of:0.09074290007897208 a:0.0876957224957899 :0.4553005762811609 +the:0.4324943583404212 a:0.10537158820290335 to:0.060734701761075885 which:0.045195156760329855 :0.3562041949352697 +are:0.33479862196682975 were:0.21117556285667646 shall:0.1804392239546588 and:0.05116348211917996 :0.22242310910265495 +as:0.18942001482447088 house:0.10629398033382205 at:0.012932624332836993 aa:0.012240276789952381 :0.6791131037189176 +and:0.11673460634282665 that:0.022892496532200213 not:0.01933242549269972 -:0.018299069968521344 :0.8227414016637523 +to:0.0001414760675658064 was:3.8755824345980695e-05 the:2.476648639984301e-05 of:1.638742789793427e-05 :0.9997786141937903 +a:0.24665388404233524 my:0.19202145322914427 their:0.17039766010194587 his:0.15448497762881228 :0.23644202499776235 +good:0.028484459612631397 new:0.026301498525727444 few:0.025759126317036387 little:0.022669847314911083 :0.8967850682296936 +the:0.4367678382480551 and:0.1628235690711121 With:0.1375737161745591 that:0.057380474655309106 :0.20545440185096447 +the:0.8675778061274384 said:0.07045253165991228 such:0.026886641291926437 ths:0.02107777448129238 his:0.014005246439430522 +as:0.7666250402806148 aa:0.02516964824964031 is:0.014578694664379494 a:0.013599355385682254 :0.1800272614196831 +ball:0.13735307358042936 seat:0.12533140017040892 days:0.10085207908483809 hour:0.07954024201581185 :0.5569232051485119 +hoped:0.5583817186542347 said:0.1550555074101984 believed:0.05190303937883034 probable:0.03585546131702655 :0.19880427323971014 +little:0.22990360388860787 heavy:0.13646480051035653 so:0.11670949390730827 two:0.07404291813008078 :0.4428791835636466 +use:0.021343876100524586 members:0.009340266523417556 consent:0.009084709107852813 people:0.008997919214094255 :0.9512332290541109 +laws:0.36421513885820367 law:0.048144677821133484 financial:0.009264559257910764 corn:0.006786286379623224 :0.5715893376831288 +the:0.8464857578895983 this:0.06888925582871543 tho:0.02410817302415016 our:0.020887646937177495 :0.03962916632035841 +land:0.1986048326704883 line:0.05381482139391381 and:0.03217722620895555 the:0.02585164495188246 :0.6895514747747599 +ing:0.05462994676875644 us,:0.026618942821321562 provisions:0.02099821073897922 poor:0.019271899918367565 :0.8784809997525752 +and:0.17734300966143487 the:0.07077639109949693 to:0.0685856704231871 of:0.06109991354423296 :0.622195015271648 +for:0.8182351916402613 with:0.026162587699069883 of:0.02576679624853353 lor:0.022242669312978938 :0.10759275509915635 +the:0.4733782277030687 a:0.22131884874812932 being:0.041382864145220744 his:0.03335511500019808 :0.23056494440338318 +made:0.8640570365429342 been:0.014309962125591848 ever:0.008574404161434776 had:0.0069236540116749635 :0.10613494315836429 +be:0.7921819985112478 bo:0.08410696577958619 it:0.05397402660962979 the:0.024551894526098895 :0.04518511457343747 +and:0.0551576486769324 of:0.04898226319719993 the:0.040640972410343125 to:0.02561043251923719 :0.8296086831962873 +the:0.451790901215487 to:0.24714342082959498 been:0.11424044351694412 him:0.05772245903774548 :0.12910277540022852 +and:0.2780909317461282 to:0.06336871336538877 the:0.06253035702237537 of:0.06244967894208147 :0.5335603189240262 +any:0.1363378722409198 County:0.11890865735275405 the:0.09197525067791242 a:0.022866269449821695 :0.6299119502785919 +the:0.5409655042859556 this:0.1960051315551956 one:0.12992966772519032 tbe:0.04095117604605475 :0.09214852038760368 +and:0.18916960429560817 the:0.12428015823312648 with:0.05601337811741544 but:0.032687468585893 :0.5978493907679568 +They:0.37445311970745393 s:0.10540613980455164 which:0.05044723636593828 they:0.019560648502506637 :0.45013285561954947 +is:0.40198403504813424 due:0.08493504670284256 payable:0.0656037432869619 interest:0.02866829241167044 :0.41880888255039095 +are:0.7335719371347198 in:0.07671848893802385 named:0.054887840981156996 to:0.04406847574243029 :0.09075325720366913 +ho:0.43990895266270735 it:0.37949136296961866 he:0.03999279445324212 O:0.011993932064666374 :0.12861295784976556 +air:0.45968682650970644 court:0.013210645939838197 necessity:0.0024402992558141875 amount:0.0015585246695816962 :0.5231037036250593 +with:0.2953514359942055 and:0.1501418948544912 H:0.13868878124412637 in:0.11047102092848317 :0.3053468669786938 +order:0.24873965834255934 unknown:0.09397965620106426 agent:0.022642598192233524 authorized:0.01672428270614385 :0.6179138045579989 +up:0.14441800607304262 forth:0.07017568044488576 out:0.0007462957796003078 to:0.0006108294371850147 :0.7840491882652862 +turned:0.09801398653619194 turn:0.05102439189469594 that:0.022684721680957535 covered:0.021723246695114634 :0.80655365319304 +not:0.9998919304758064 most:1.8272733165692156e-05 you:1.6434061257179815e-05 must:8.642114587597565e-06 :6.472061518321366e-05 +of:0.5957693779746964 half:0.16130629577020833 aro:0.07247128051273813 and:0.06608531930253478 :0.10436772643982224 +trust:0.27930656540383386 license:0.006073637446842282 go:0.005526443825187382 gold:0.00488807425516249 :0.7042052790689739 +10:0.1937678890920082 in:0.17731293571963075 wide:0.04903090410913593 high:0.03831065029747176 :0.5415776207817534 +disease:0.6456505416505562 head:0.03409602430577948 system:0.025582939544820694 name:0.017508123435771968 :0.2771623710630715 +the:0.9898608019862833 tho:0.003699513024089136 his:0.0017844399767800944 this:0.0010093505882984254 :0.003645894424549176 +to:0.21284682711927377 and:0.15506219771362115 which:0.07526130988868095 the:0.0541179452365001 :0.5027117200419242 +service:0.05541679714755145 and:0.017054944792706233 but:0.0060244739283042675 city,:0.0035715509459364513 :0.9179322331855017 +was:0.1516375741866499 and:0.05576224882032599 it:0.02406365922392086 will:0.022014416088133544 :0.7465221016809696 +that:0.49707980303270405 A:0.20684639066702606 a:0.09145990373462302 That:0.0792564252098059 :0.125357477355841 +already:0.8721791581031196 engaged:0.04384786144936165 running:0.01797212881813013 here:0.015198799070284786 :0.05080205255910402 +and:0.8011720171176268 of:0.023689175152346736 a:0.009882782043516525 to:0.00875224402285059 :0.1565037816636593 +good:0.9770551546340337 pleasant:0.007592722144823125 much:0.0058548304147540454 large:0.004330717160294034 :0.005166575646095111 +out:0.7602731290997364 children,:0.0234226086392558 boy:0.023171147778507966 again:0.013467763582894815 :0.17966535089960486 +of:0.1750315813921149 the:0.15271650073186024 and:0.0889478216412333 are:0.06813697356134012 :0.5151671226734515 +the:0.1669510415041786 said:0.1253633678942206 i:0.12258193974620131 tbe:0.12106349670577118 :0.46404015414962835 +city:0.030296660415675386 San:0.02943100352918015 the:0.028704665174171307 same:0.025180376010386585 :0.8863872948705867 +the:0.23388906853883004 and:0.042285270206081416 of:0.03068065650103456 a:0.011489455565745411 :0.6816555491883085 +but:0.522092817460767 and:0.07351119962278442 well:0.033530335449228656 or:0.03065434548880064 :0.3402113019784192 +in:0.31990695095342503 by:0.1916016433594152 the:0.07881937658381338 when:0.0633967558957693 :0.34627527320757706 +man:0.14635033820665852 of:0.06850598922870885 good:0.03433283022711261 for:0.020884080622500134 :0.7299267617150199 +the:0.2707668727321329 two:0.1475441238803875 ,:0.1373656495618894 The:0.07812673300100835 :0.3661966208245817 +do:0.996405294416938 say:0.0012377409982531457 doing:0.0006587830682022702 be:0.000575292200100231 :0.0011228893165062049 +the:0.5841410427532011 a:0.08769674766010314 tho:0.03900867486008361 his:0.03330564998567072 :0.25584788474094156 +him.:0.21529787160239774 it.:0.041328011054972406 people.:0.03437291568365225 them.:0.03059991765590471 :0.6784012840030729 +and:0.09431992340013208 the:0.07276309189752224 of:0.06628038002577849 to:0.035460423953990294 :0.731176180722577 +of:0.32882588082936515 whose:0.2996336866484496 who:0.10325766323493583 the:0.06341990656452344 :0.20486286272272597 +and:0.33666490666094456 of:0.0832285267019113 the:0.0715426816935715 its:0.05581873216254655 :0.45274515278102617 +J.:0.10589558494454315 W.:0.06883926347333912 John:0.0680174694847822 C.:0.05421814386778262 :0.7030295382295529 +they:0.9435034752051094 the:0.022895010817546267 I:0.00867865271028576 a:0.00409605480528698 :0.020826806461771735 +along:0.26191804886990633 at:0.2526297139292583 on:0.23925243565604182 from:0.13540565550557535 :0.11079414603921828 +that:0.30118046563966944 as:0.13351623385591133 and:0.11915766926667988 or:0.05965411374412524 :0.3864915174936141 +and:0.1451333334306041 The:0.06919446103380533 know:0.054738416827924935 go:0.0530697516098702 :0.6778640370977954 +but:0.026421490311138978 not:0.02251443567104942 filed:0.022465258521506836 also:0.022385191326129407 :0.9062136241701754 +m:0.24145150520098096 may:0.05645908485607161 and:0.04931373184364847 of:0.0160951075823753 :0.6366805705169236 +and:0.10873541584290387 A.:0.034682883823958066 W.:0.03158393389707214 H.:0.031165590745773075 :0.7938321756902929 +the:0.6663313425066306 this:0.04424309433875609 tho:0.03980787421846881 that:0.024833901097317142 :0.22478378783882733 +will:0.9484040765488048 may:0.03668300038332412 to:0.007636930702970178 would:0.004726021969592513 :0.002549970395308438 +an:0.31704801460243504 such:0.2225395599776394 of:0.15322036596040423 this:0.15283168355879662 :0.15436037590072468 +know:0.2171641573343835 come:0.12281044651379298 went:0.05842288146756182 suffering:0.010421290187097042 :0.5911812244971646 +time:0.48101831244218907 said:0.18456971018619728 is:0.0715437424781804 the:0.0502377408644648 :0.21263049402896825 +to:0.15573561234048697 and:0.10757810247337234 of:0.044331559183041026 the:0.03571334351853917 :0.6566413824845605 +looking:0.13053676957749788 waiting:0.09185849314947135 working:0.054652806182248354 held:0.04678843489790752 :0.676163496192875 +of:0.08588908882127731 line:0.07213227835327292 out:0.03330134220380637 .:0.029339417601817977 :0.7793378730198255 +reach:0.17080916015512576 time:0.112247765895246 limits:0.08724888086885021 next:0.06425302681284993 :0.5654411662679282 +the:0.55296338729251 his:0.0792790046532055 their:0.06682692298439627 a:0.04529306392592721 :0.2556376211439608 +two:0.737850460749871 more:0.2543349511731362 other:0.0030600670488425724 moro:0.0023442854527809176 :0.002410235575369208 +of:0.33992677798764276 and:0.20983204942744513 in:0.14221921708715937 by:0.0710384740917692 :0.23698348140598363 +,:0.0435747081883365 yellow:0.03548521665792643 notes:0.02456192285185232 out:0.018463327850068663 :0.877914824451816 +forth:0.745594578234859 out:0.11371960493505089 o:0.005971552325498436 15:0.0044215153247125424 :0.1302927491798791 +and:0.06328031497569829 made:0.028432119059119337 in:0.024761205471100032 for:0.023038883220557912 :0.8604874772735245 +are:0.10960739333966732 them:0.0683967214933796 there:0.06736646776464841 it:0.05688369794573205 :0.6977457194565727 +left:0.19059156590028375 to:0.12697921531403605 at:0.08430087623296474 could:0.07778915534513271 :0.5203391872075828 +of:0.1229331652210013 the:0.1190155974999628 and:0.08520303644966634 to:0.058260575056389534 :0.61458762577298 +Northern:0.01587647024329295 and:0.009970212597408276 the:0.007719671939822727 South:0.006968067963467654 :0.9594655772560085 +New:0.4550294943246546 the:0.14288922047463895 with:0.04101683684258507 of:0.03711174552663475 :0.32395270283148647 +written:0.13496915253780675 main:0.05698484411504188 whole:0.05591703972686597 the:0.035687254582661095 :0.7164417090376242 +room,:0.10181225622558114 goods:0.0364742161690931 law:0.029597004777531542 road:0.028651341108225585 :0.8034651817195687 +and:0.0635820288193167 of:0.048195677015547125 the:0.04223740172159061 .:0.027966929402265223 :0.8180179630412805 +and:0.5583402202897723 of:0.27800760915736183 And:0.06188370194997262 ami:0.018364465566274146 :0.08340400303661899 +trouble:0.6407127903991493 best:0.09154869439521679 President:0.014397547214623106 city:0.008345824536387263 :0.24499514345462384 +years.:0.8647506229127788 years:0.09539474690907965 for:0.0016283926781539325 tion.:0.0001834617537741825 :0.038042775746213314 +and:0.9140676698371771 but:0.05161003512211333 to:0.00925363563771801 never:0.008577561596414622 :0.016491097806576878 +and:0.04646881968998865 of:0.025169987334928822 where:0.020553961231137004 country:0.015043081847831555 :0.892764149896114 +stock:0.8704046963868612 license:0.03544035977802742 sum:0.016650558588618518 money:0.013951692256432249 :0.06355269299006068 +and:0.019980359986070825 .:0.009346446236841466 of:0.0074076752406015455 etc.:0.0053600505906077735 :0.9579054679458783 +a:0.19316447441792303 ber:0.17473048656776655 1:0.15407126423671194 ho:0.14262354535198263 :0.33541022942561594 +40:0.5598765068010427 forty:0.06912660750128419 forth:0.026964675607545088 100:0.01833123468608788 :0.32570097540404014 +stop:0.017929791535014974 move:0.012092692625696991 wait:0.010056078834501502 speed:0.009431119982805955 :0.9504903170219805 +round:0.014537872610512304 before,:0.011898754621015526 book:0.0062397578596089355 in:0.0048185109954032085 :0.96250510391346 +t:0.45573999006976185 are:0.1518052486979196 The:0.058701716011996745 and:0.025462770173899356 :0.30829027504642237 +But:0.3425475658294064 of:0.3066582865479149 In:0.27488886899003945 by:0.017292491531244784 :0.05861278710139453 +laws:0.14631792557484558 and:0.05356893023512897 school:0.0502843615392011 interests:0.03422677561751985 :0.7156020070333045 +and:0.16527233241723127 the:0.08755584565651031 with:0.08736535392878281 to:0.08427552577477405 :0.5755309422227016 +the:0.3346713857832444 from:0.23099820837768384 he:0.15988677150255148 is:0.12407022278718821 :0.150373411549332 +and:0.3103887818533051 but:0.14350639751807306 But:0.055455418473387315 that:0.05332321428453779 :0.4373261878706967 +had:0.32522347552638603 ,:0.08731557991670072 taken:0.05096336540798892 given:0.04354727363533968 :0.49295030551358454 +and:0.37713771517570555 aud:0.14744873334645922 of:0.12656693376283343 ;:0.0913340273336898 :0.2575125903813119 +to:0.336375223350386 of:0.314856768027544 the:0.15343587050079194 and:0.09285413856670019 :0.10247799955457784 +been:0.7494924613821323 now:0.05344029221293148 already:0.04598609220557866 become:0.012273078948306735 :0.13880807525105077 +in:0.24925214451036287 of:0.2455073408690029 to:0.17747925129227618 on:0.12243166452459381 :0.20532959880376428 +young:0.1681518755516926 old:0.04861587465078866 only:0.042517285470773485 the:0.03111336348914923 :0.709601600837596 +of:0.16676448025322776 and:0.08346512933033058 tho:0.07832806077676785 for:0.029158713388255854 :0.6422836162514178 +the:0.3114507045930117 be:0.12613119360802344 a:0.054990045126858456 com­:0.028960438774137894 :0.47846761789796854 +money:0.04289229905099918 principal:0.04249450768376795 tax:0.04059342212062014 gold:0.01911280050324096 :0.8549069706413718 +her.:0.20312999723189049 and:0.15273651314083644 me.:0.027764945567031154 to:0.0213997993252758 :0.594968744734966 +were:0.7816222994108882 had:0.18146895522889586 was:0.006953381388461618 would:0.004870897401273324 :0.025084466570480763 +and:0.3863933309189195 or:0.09584823572476794 in:0.09355154305385992 the:0.0679723022340952 :0.35623458806835756 +the:0.7602684272062978 tho:0.04275909206783078 a:0.029061857725762058 this:0.022139858331665707 :0.14577076466844352 +a:0.9971431010735735 with:0.0003445482228137725 make:0.00027107189502351207 any:0.00022979257078696404 :0.0020114862378022287 +other:0.2150787797632726 other.:0.06605666567130453 the:0.02704029467816705 most:0.02489135027624292 :0.6669329096110128 +the:0.3748626460107949 his:0.16058404004964558 a:0.1070538644900453 will:0.07794140552732222 :0.27955804392219197 +d:0.062152331539642725 trial:0.056221222035134105 hearing:0.01715445885411405 bill:0.014704121770580853 :0.8497678658005283 +was:0.3503758269879011 of:0.25861119389646625 by:0.1534928713160961 property:0.09350810551334224 :0.14401200228619432 +get:0.11181095217527297 go:0.1015882716437919 be:0.03771886563396689 pass:0.035114802050090405 :0.7137671084968777 +as:0.3250721955364252 As:0.14918910924305487 and:0.0804328445996879 an:0.02382664001332486 :0.4214792106075072 +measure:0.5039005492272087 degree:0.48827171658288104 part:0.00182718025309209 cases:0.0008823190931444978 :0.005118234843673453 +to:0.32843166621398917 and:0.09220582299657351 done.:0.08610606025768637 been:0.040757210247832645 :0.4524992402839183 +growth:0.13767852308416956 board:0.03954982106948677 county:0.031107813825996034 Board:0.0304385150699817 :0.7612253269503659 +who:0.12451434006040628 It:0.09491097755270732 that:0.0570046068642929 he:0.04967653806748061 :0.673893537455113 +does:0.17510612890804703 is:0.17261879896789298 had:0.11733090892061053 of:0.03145603268821271 :0.5034881305152369 +if:0.8322868436183727 If:0.02708534733095453 ir:0.0010481475845709784 it:0.0006220227759173421 :0.13895763869018454 +it:0.38557993768734633 and:0.12170399261793785 who:0.10458690179087556 which:0.10273671461869542 :0.2853924532851449 +be:0.13900008331409439 them,:0.07150908307625994 them:0.05440516654790057 the:0.041704440681237395 :0.6933812263805079 +and:0.13919109519694228 to:0.08909503409862284 the:0.0701570041398267 of:0.06374690685610035 :0.6378099597085076 +been:0.3980373425279316 before:0.19857040421775937 even:0.16339295592516095 since:0.03447222619776153 :0.20552707113138657 +in:0.14322171472797823 a:0.1417291755929873 due:0.06623841464334149 to:0.05115927216582306 :0.5976514228698698 +First:0.14220114018854724 Christian:0.052469214931345744 Central:0.042813133084239306 Ihe:0.023498646750671284 :0.7390178650451965 +as:0.6949446489591067 with:0.07769782932774626 made:0.03352030498206764 us:0.0265360820047887 :0.16730113472629068 +the:0.5640803630712977 he:0.021555096550993563 tho:0.01896422484559891 London:0.017249517249351597 :0.3781507982827581 +same:0.12158395498925241 most:0.08623652642226623 pro:0.04956273480078095 all:0.025525958491315823 :0.7170908252963847 +land:0.30937892843832576 formerly:0.16176107548749313 acres:0.06173361004138969 purchased:0.03934130142814623 :0.42778508460464515 +on:0.35700624108991125 shall:0.2264139278349766 and:0.2038766355422594 to:0.09059771185802468 :0.12210548367482817 +of:0.5963810469027292 and:0.07010182251368052 the:0.04256356702954435 to:0.027235495669674568 :0.26371806788437135 +the:0.2729511140668738 and:0.12188031098733416 of:0.10376617381550468 a:0.07053603336714684 :0.4308663677631406 +very:0.8693847001373363 every:0.021931410042420323 the:0.017284423640276308 same:0.007148341830848473 :0.08425112434911856 +of:0.3673123665950971 in:0.15260102120382543 to:0.09517063963867284 from:0.09077182682991887 :0.2941441457324857 +be:0.36809558577590007 not:0.06825025116753743 bo:0.03138175201672101 have:0.03127661566008931 :0.5009957953797521 +been:0.10159896438539248 li:0.03320872094755204 not:0.029981515070304856 time:0.017861200200510147 :0.8173495993962406 +had:0.40538024408657947 is:0.2732810058288325 has:0.18444649936740923 have:0.038095543703973604 :0.09879670701320532 +the:0.4008554060429924 from:0.09286547993815836 by:0.05683004088129901 tho:0.05048273576153164 :0.39896633737601844 +which:0.031152112396338423 that:0.0024357906664199632 life,:0.0014918461761405967 the:0.001211001368708524 :0.9637092493923924 +France:0.013852104101916727 business,:0.010878313441824643 ho:0.008740918806001962 English:0.005962401623018298 :0.9605662620272384 +of:0.3188222010324945 has:0.19875483634829802 for:0.10227436431957297 in:0.08598166219730424 :0.29416693610233047 +the:0.49850633401540906 a:0.12963013463925382 tho:0.04280562498239405 an:0.02305778031366901 :0.30600012604927407 +and:0.1663688893385512 of:0.125745473324724 when:0.043070251651663664 When:0.02976940816119038 :0.6350459775238707 +in:0.1990473442085819 of:0.16664014817664344 with:0.15816922438287698 and:0.13367094111209402 :0.3424723421198036 +and:0.1727078343988881 the:0.1148967615552738 of:0.0759338544977273 to:0.05195757025348642 :0.5845039792946244 +to:0.492699538533231 doubt:0.138781051731377 in:0.05776121842871975 during:0.034821671182368626 :0.2759365201243036 +and:0.08270781870933996 the:0.05826676362861616 of:0.05682458045386593 to:0.030984054568433738 :0.7712167826397441 +built:0.12507380105653582 but:0.060392974913687766 the:0.03847124209449079 some:0.03106434500353835 :0.7449976369317475 +President:0.010209773194326713 Mayor:0.00806520200489705 beauty:0.007038668489876831 plaintiff:0.0064105182871511904 :0.9682758380237483 +with:0.015767606498955106 low:0.009089935687090224 in:0.0023798164289188938 is:0.0016191415441990048 :0.9711434998408367 +and:0.14291833600882442 of:0.10953717703869621 the:0.0945442183379768 is:0.031015982313843216 :0.6219842863006593 +the:0.17955511355642575 and:0.137992163629178 The:0.12429176544705532 of:0.08101304156828827 :0.4771479157990526 +b:0.16807116814642634 Boston:0.0831240849889806 United:0.03550259643737414 daily:0.03424565442757023 :0.6790564959996488 +if:0.1470231201260991 as:0.02784463205776093 what:0.02199742908442307 giving:0.019720404690393472 :0.7834144140413234 +a:0.9581848594930051 as:0.025686808251517312 so:0.007101314267906238 very:0.0038424321398052856 :0.005184585847766142 +ready:0.42216273062746074 right:0.07182841832303638 asking:0.053331578339507545 the:0.018493432073852317 :0.4341838406361431 +given:0.4196634668702011 For:0.11316741664032882 with:0.10444224901853456 caught:0.0813665345947909 :0.28136033287614454 +water:0.9638286533132674 patient:0.001252903701808725 storm:0.0005776108316038039 crowd:0.00046761499942037186 :0.03387321715389971 +railroad:0.29470314531509306 said:0.10274424278432777 commission:0.09223220990784066 coal:0.031272467644431416 :0.47904793434830684 +and:0.4808561002111722 with:0.2102867446900817 the:0.09785607040189259 nine:0.041710462855424305 :0.1692906218414292 +for:0.2763872896085251 the:0.11724727084077363 has:0.09248910022302957 had:0.08556632014906634 :0.42831001917860545 +son:0.026344429800436598 hope:0.024893583584394117 by:0.021051530099485707 ;:0.016476108837581636 :0.9112343476781022 +thousands:0.054785547271172484 lot:0.046443750520414606 the:0.03567369666466879 face:0.035362293351582 :0.827734712192162 +makes:0.34476440833348854 and:0.07161405145448325 written:0.03174852034132273 call:0.027860306219221972 :0.5240127136514835 +make:0.6612438181731918 their:0.008204735209234615 pay:0.004068557199948717 good:0.003724094492262928 :0.3227587949253621 +effort:0.20276649946965844 ex¬:0.019700730395024003 attempt:0.013796051977912714 day:0.013046647628310119 :0.7506900705290946 +and:0.05055068898589837 tion:0.04202799222607583 ment:0.038004163719261984 day:0.0282153156352094 :0.8412018394335544 +do:0.7921615627480033 think:0.05310135250227138 be:0.05096886799253399 remain:0.024460666934907657 :0.07930754982228354 +land:0.11420019898043596 land,:0.07867088352163773 State,:0.030460215138739893 state,:0.016003788814169955 :0.7606649135450165 +and:0.09134770639259458 is:0.06573308344314854 county:0.04656013582951937 or:0.029118704659492182 :0.7672403696752454 +of:0.8754171659725125 in:0.043869632205790515 to:0.015955335577925882 among:0.01523488510877114 :0.04952298113499994 +receive:0.001123480552108282 use:0.0008911539533796659 sell:0.0007033248257513634 of:0.00048824866528474845 :0.9967937920034758 +cut:0.24772731150888141 break:0.11824438872493512 keep:0.09814774292942323 put:0.09411092320287458 :0.4417696336338856 +to:0.5680747877367921 of:0.09195235667528173 running:0.057967131903477465 and:0.05651164041367304 :0.2254940832707757 +II:0.02644586258673024 White:0.016612382819138346 main:0.012327675829413402 city:0.012271061666993635 :0.9323430170977243 +those:0.2607721067611922 others:0.19279702805024368 women:0.05865075655410448 girls:0.041248986411025944 :0.4465311222234337 +made:0.0906667356547983 broken:0.06303602058630912 done:0.061108896454339034 carried:0.052746438403355404 :0.7324419089011982 +most:0.01825809652423968 the:0.013808579661543998 following:0.008148820693615968 said:0.007669273178192927 :0.9521152299424075 +attack:0.07314437798932116 order:0.054336016387913015 army:0.04849390261997016 issue:0.023182262666900284 :0.8008434403358954 +the:0.15173023306589759 of:0.11709562668905416 and:0.07791786411647 to:0.06533952367229766 :0.5879167524562806 +the:0.0867024585907489 or:0.05839908531939663 a:0.03982135684764112 other:0.035685404281566614 :0.7793916949606468 +the:0.020646554590225387 The:0.01320722031146843 Any:0.0030170676567481927 is:0.0013535485868909902 :0.961775608854667 +and:0.05953584240232042 of:0.03496496277381325 A:0.027202680033042315 the:0.023006090910307954 :0.8552904238805159 +the:0.9867419703744693 that:0.006645031332194743 a:0.0012944100603869068 by:0.001194930819741975 :0.0041236574132071605 +to:0.1741283992497996 city:0.1192502428138843 the:0.07293998055846977 through:0.052933229768878966 :0.5807481476089674 +the:0.75608327319516 our:0.02397207425167616 and:0.011035040624695572 that:0.005523222333524478 :0.20338638959494382 +amount:0.3433795770921306 number:0.17323473995100297 cost:0.03878210515864703 value:0.035531634282312013 :0.4090719435159073 +use:0.46586233453591563 keep:0.4326725994990094 apply:0.05046047582145492 take:0.010205377394349208 :0.04079921274927082 +in:0.2931728550147459 doing:0.14963485291941384 found:0.11946223585138785 made:0.07332706830329258 :0.36440298791116 +of:0.32180155811620303 the:0.0895216115846909 his:0.07467725660901324 to:0.07356223847219115 :0.44043733521790157 +sent:0.2365994016309245 taken:0.15949294936983505 brought:0.12847321977144502 made:0.11760011399948354 :0.3578343152283119 +the:0.8610612568269349 tho:0.040305500870741785 a:0.014562463721931833 tbe:0.012162999090178024 :0.07190777949021337 +and:0.11403999172779045 feet:0.02792468054394626 is:0.020013038635699008 but:0.016012489455549617 :0.8220097996370148 +the:0.4371551509878427 or:0.2942027026966112 and:0.07060770435506838 to:0.053844647707832004 :0.1441897942526456 +water,:0.011799711632337747 present,:0.010922737353734127 it:0.009092364842226752 lands:0.006974085568908015 :0.9612111006027934 +battle:0.14146224430316623 northern:0.12011316151998894 commercial:0.09630935094985152 high:0.05926287123356085 :0.5828523719934325 +done.:0.012436725933029115 made.:0.003343858922546828 to.:0.003342930767039664 nothing:0.000532347837812968 :0.9803441365395714 +of:0.1536130339482426 and:0.1067080713327591 the:0.07745986874007535 to:0.03396635049232841 :0.6282526754865946 +even:0.9471859920709307 a:0.000465231718093199 her:0.00046468330775113997 his:0.0003353045256616351 :0.05154878837756343 +that:0.5271586870911831 which:0.17628865956872825 will:0.030111971623287388 the:0.020869360227555166 :0.24557132148924624 +found:0.034062937328987464 possible:0.017561589381942747 more:0.011009858519603523 used:0.007180656483228557 :0.9301849582862377 +in:0.3124201927813583 I:0.03577906281595446 to:0.029348309981225524 it:0.025028017151740398 :0.5974244172697213 +chance:0.5781705912484892 call:0.03854283659595086 right:0.03237788973188052 place:0.019220010949043416 :0.33168867147463577 +the:0.34853200265170137 be:0.11718356929573813 a:0.0446339747740167 his:0.04365378244206876 :0.44599667083647515 +it:0.2490904819471813 to:0.21572028204869764 that:0.20604117724531681 question:0.122835829032183 :0.20631222972662136 +did:0.6689334641531274 knows:0.0070294923739617115 to:0.005975680852412752 thought:0.00537888013589981 :0.3126824824845984 +true:0.08542746049214257 al:0.07123922815359167 and:0.05913180384658022 confidence:0.04088916549378761 :0.7433123420138978 +use:0.07892847312106627 hands:0.0734855170794935 direction:0.07002271090559764 matter:0.06259247520325868 :0.714970823690584 +go:0.17287915640248586 get:0.06603680068847947 take:0.006641997480156768 struggle:0.0025347325877797303 :0.7519073128410982 +come:0.019051696654601057 -:0.016837184498382823 i:0.010821759672120864 ;:0.008804471402774664 :0.9444848877721205 +the:0.1664736008379361 to:0.028053558487816724 which:0.02753011210068321 and:0.023649382714345694 :0.7542933458592181 +the:0.6973689764162815 this:0.11588198080753374 which:0.03395715762975651 about:0.033247978668839044 :0.11954390647758946 +court:0.940106541425918 law:0.025517260764493687 Court:0.009872053154199084 courts:0.005618000562535132 :0.018886144092854138 +to:0.15124131818282413 and:0.14926899056890172 I:0.09252568937697955 the:0.05183928148024898 :0.5551247203910455 +The:0.34526226096004664 the:0.06404737096173782 We:0.05422287373102646 It:0.05286196770942533 :0.48360552663776385 +was:0.4774323633421922 were:0.30186789067034236 is:0.11458298830883314 are:0.05509165668499623 :0.05102510099363608 +and:0.32948382477180055 that:0.10498858766824028 That:0.06688871235006863 and,:0.051763605951690474 :0.4468752692582 +and:0.12658113410514685 the:0.07363317730564256 weight:0.07316119486498543 of:0.05962746716307645 :0.6669970265611488 +worse:0.959076531837039 strong:0.009955657088650711 up:0.00564573881681876 dark:0.0020260623474238114 :0.023296009910067677 +the:0.2967062330365917 a:0.0673946753853878 his:0.02849578266833823 good:0.021557142636250713 :0.5858461662734317 +end:0.10199140732292578 head:0.09999027965833328 time:0.07710232337653417 rate:0.07703328877051097 :0.6438827008716959 +as:0.05185156732292529 remarkable:0.04232925942851425 and:0.027928913846101126 interested:0.024942200056453208 :0.8529480593460064 +as:0.38153002381017337 was:0.19424508828374712 is:0.09897274712487093 it:0.09043836288083407 :0.2348137779003745 +bidder:0.753767274935649 der:0.07304258083704906 city:0.0036317085553511748 and:0.00217173302527116 :0.16738670264667957 +and:0.30219306142471586 that:0.05565547059261357 but:0.04288130597983184 and,:0.03213978425460823 :0.5671303777482305 +and:0.29981917883250203 on:0.22839934956586977 with:0.1948009079908533 is:0.06665646772256223 :0.21032409588821277 +have:0.4236628614815387 had:0.19578752537243915 am:0.11966374690133424 wrote:0.05951575053634744 :0.2013701157083403 +crop:0.0375109722295067 thing:0.03639735460090057 deal:0.029700981092158234 and:0.027985167965906697 :0.8684055241115278 +and:0.14865039051317522 he:0.10809157507927508 He:0.10551471983342554 who:0.08486384349640917 :0.5528794710777151 +of:0.7547379943121559 that:0.17723594351396063 to:0.012511430610635355 ot:0.009370913611157031 :0.04614371795209096 +few:0.03519314112346589 very:0.027762373999849675 little:0.02540989837231337 the:0.02055465091381565 :0.8910799355905556 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +and:0.12051677706145392 for:0.0814508205977376 arrived:0.0623419583276886 Just:0.060243326952548776 :0.6754471170605711 +a:0.37660015089355026 that:0.32810624979153385 A:0.1685348521822248 the:0.041198005086270494 :0.08556074204642063 +this:0.9820297641688156 a:0.005781404408588525 the:0.005687672063348366 tne:0.0014074079455792996 :0.005093751413668203 +the:0.22139243335778358 Public:0.19257337025959798 a:0.012527676166121464 General:0.01029129822723654 :0.5632152219892604 +and:0.07837918296334725 of:0.06264851624444476 the:0.031120612528083492 John:0.02644446843001198 :0.8014072198341124 +death.:0.06498124492662695 hand.:0.022904098827984026 life.:0.00721642993659576 work.:0.0038390414371108697 :0.9010591848716825 +which:0.7021474068696885 regard:0.0041617641933027975 fact,:0.002012212301962052 that:0.0013070182746639765 :0.29037159836038273 +horse:0.5303684756333636 he:0.22158396028176952 I:0.17600695793035645 they:0.014855917949087638 :0.05718468820542262 +to:0.1656835291571936 shall:0.10404106127026516 consideration:0.09816540617968073 could:0.06022624838912464 :0.5718837550037358 +of:0.3367000689179674 and:0.18107824467339018 in:0.12058918594178006 When:0.09115836044693576 :0.27047414001992653 +the:0.5040017025955009 their:0.14622187138385345 his:0.09274802244885835 a:0.0704160838988175 :0.1866123196729698 +of:0.385159389462069 in:0.17054662605139526 was:0.10814816071002717 is:0.10713439107500354 :0.22901143270150495 +the:0.2861158780765214 his:0.052444238699082046 be:0.03614342274516906 tho:0.022987001938530354 :0.6023094585406973 +with:0.337173771598104 to:0.13468566245876 by:0.12830598280342717 in:0.06347405292700013 :0.33636053021270856 +shall:0.2715314219646344 to:0.13824475266808461 and:0.09156473448773574 will:0.09032394791187086 :0.40833514296767437 +of:0.8973545525304016 ol:0.03095220676351132 to:0.027216179182039137 from:0.020748702930175916 :0.02372835859387205 +the:0.7382063021396021 tho:0.10084647496168235 tha:0.024401337440022857 of:0.014009744254362345 :0.12253614120433035 +that:0.5341547842286591 in:0.4337611478196975 In:0.018802682383370656 the:0.007795278235346974 :0.005486107332925816 +conclusion:0.6866899285303982 fact:0.05518890141913055 Sheriff:0.023913110945018863 knowledge:0.022635266005668606 :0.21157279309978383 +Mr.:0.7968564661612346 Dr.:0.13490245517463448 Col.:0.04511002970510439 Capt.:0.004456490125757994 :0.018674558833268604 +way:0.046641712543236874 gentleman:0.008703015053554086 order:0.005948967714609056 train:0.0051525565359373925 :0.9335537481526625 +of:0.2304417220216858 and:0.20157353969951888 in:0.14211272884763876 that:0.08551583394396793 :0.3403561754871887 +a:0.2573588568037053 the:0.24583243846423897 his:0.11901451432654347 their:0.060435381131495186 :0.31735880927401705 +to:0.6923543703830914 in:0.06077552477012505 for:0.05253793706498586 and:0.05150241267597313 :0.14282975510582455 +the:0.26568578750868654 a:0.1772292626576048 an:0.15268023157074093 tho:0.019159632028335476 :0.3852450862346323 +C:0.25430531931183586 B:0.19145773104245284 W:0.19121909848793722 E:0.1880439563253127 M:0.17497389483246129 +even:0.9471859920709307 a:0.000465231718093199 her:0.00046468330775113997 his:0.0003353045256616351 :0.05154878837756343 +3.:0.1299679229915147 4.:0.019975411162800463 .:0.004395693604066153 here.:0.004219474852581319 :0.8414414973890375 +all.:0.000769800245254276 them.:0.0003687889699182327 It.:0.00029784566957627955 the:9.472436561732477e-05 :0.9984688407496339 +1:0.10436187873701724 and:0.03503171689254549 and,:0.03028611621033553 one:0.029540001555029068 :0.8007802866050728 +of:0.3345453264568158 to:0.07889800537039927 in:0.07543079199876615 from:0.03043484729345592 :0.4806910288805629 +and:0.2777199283127632 away:0.17405416055256454 which:0.11721739594722456 This:0.04883486210408613 :0.3821736530833618 +of:0.1380745011266671 and:0.12384493529089073 the:0.08879258708590852 The:0.03932621616598288 :0.6099617603305506 +It:0.31991247865617417 it:0.12525635766817708 This:0.10684412533733835 There:0.04812899391083398 :0.39985804442747624 +a:0.3936969441143261 every:0.29926125787487157 per:0.1824293468680698 the:0.018145983461793944 :0.10646646768093855 +the:0.5391962629958721 street:0.380410966711367 tho:0.013257359265224677 electric:0.006573353351411023 :0.060562057676125304 +world:0.03772713201245845 case:0.035176273429419216 work:0.02901114320242366 city:0.028334456677793843 :0.8697509946779047 +the:0.18570803935650207 their:0.1210700331996222 to:0.1105589063017315 be:0.09520447939946537 :0.48745854174267883 +the:0.04838992029694665 our:0.011566806212615565 these:0.0034709055059427988 good:0.00322664895150982 :0.9333457190329852 +a:0.20681508298290427 re-:0.06755278474163054 the:0.061349620118221405 interest:0.03083313521312778 :0.633449376944116 +was:0.4669625823995059 is:0.22170925829715274 Is:0.021357101910366546 appears:0.015284426041325594 :0.27468663135164917 +M.:0.033363869627637974 covered:0.022098687119192852 up:0.012222604388872028 upon:0.012099944950024873 :0.9202148939142724 +one:0.8578302380033045 a:0.058612647430940586 the:0.04394457469129757 ex-:0.017557173779911176 :0.022055366094546176 +of:0.43562752117290515 in:0.3725552880418023 the:0.07764972319118137 a:0.06707078548965398 with:0.04709668210445727 +use:0.05474551643665433 of:0.03177036328665994 put:0.025935801260580326 for:0.02256785366410901 :0.8649804653519965 +large:0.1870036292086048 city:0.01204329920495044 city,:0.011655882043046458 respect:0.010828703487721154 :0.7784684860556771 +party:0.08212813744607092 public:0.0526040568891646 stream:0.05181106575297916 forces:0.04737761118723564 :0.7660791287245496 +is:0.9664678064253354 was:0.020155380340034678 has:0.005758796120573655 are:0.0036014924525075284 :0.00401652466154881 +he:0.28926671502200235 it:0.22627732755668722 there:0.2006740561326008 40:0.08961817784188196 :0.1941637234468277 +of:0.8851722559824373 to:0.07358103690489222 in:0.017470222497149034 that:0.011620838735224816 :0.012155645880296573 +hand:0.1526255577411649 daughter:0.08444050961713002 presence:0.05452506310405734 wife,:0.051361939614227886 :0.6570469299234198 +been:0.1214841807995004 not:0.098284374479463 to:0.08972054072382035 the:0.08150154082325754 :0.6090093631739586 +to:0.22110148937562943 of:0.18584321041347965 in:0.13556293407873882 that:0.08865249739288804 :0.3688398687392641 +your:0.35242268736523674 and:0.26419395419155706 l:0.1729705090277772 are:0.07200153592954864 :0.13841131348588037 +the:0.2680845572942673 tho:0.10832849803429376 be:0.06771062658482296 a:0.06040604926976451 :0.4954702688168514 +the:0.52271107950181 every:0.15633597992184756 an:0.15595998452877616 a:0.09479396651643722 :0.07019898953112913 +have:0.3358408383300966 had:0.1815801475036116 allow:0.10043606211101891 are:0.04581845028364006 :0.3363245017716329 +and:0.1009149756892296 country,:0.08199260855924857 are:0.02998057208743387 costs:0.024753318783138408 :0.7623585248809497 +will:0.34657339636867535 should:0.2637475813678588 to:0.1920511053212344 may:0.08868566399552733 :0.10894225294670402 +my:0.5197534357185953 the:0.13525072540081384 his:0.061566492454427614 and:0.0443822371472643 :0.23904710927889908 +and:0.10901059397296746 that:0.036952233403440025 an:0.03596164915485294 of:0.029504968323508945 :0.7885705551452306 +Judge:0.1843341822584962 result:0.08340306516885138 extent:0.06278446556296735 payment:0.036191620332868796 :0.6332866666768163 +throughout:0.40335764172478233 to:0.2303249336003431 for:0.14716912477561417 of:0.12400993501796288 In:0.09513836488129761 +to:0.27149056891318557 of:0.11921636468498155 and:0.08492371146956068 or:0.028652359956881975 :0.4957169949753904 +whole:0.19246227404991462 average:0.14676325979467222 great:0.13221303873846524 same:0.11753005889354565 :0.4110313685234023 +to:0.13623422865838591 along:0.08884023791180813 and:0.06880839180508118 by:0.04539183105175062 :0.6607253105729741 +even:0.9932852141189552 like:0.00028607025083738236 the:3.659948691088229e-05 I:7.098093601731038e-06 :0.006385018049694882 +much:0.27117474288158216 be:0.10022640407148557 great:0.025798691236205838 I:0.022248265344420332 :0.580551896466306 +of:0.08989416168327972 in:0.05064044631218469 with:0.04993574405531832 to:0.032259632253202025 :0.7772700156960152 +the:0.2042885889711391 about:0.12930542407624543 over:0.07991435544971869 only:0.022989651991647965 :0.563501979511249 +important:0.09076037945010523 probable:0.03540158292530525 prominent:0.018859268651485864 likely:0.01477055597307193 :0.8402082130000317 +had:0.5995902679039549 has:0.14166736398737795 was:0.043552557213524204 have:0.03233493397706789 :0.1828548769180752 +owners:0.36347170839747467 of:0.12475881737210492 and:0.11864748522815714 offices:0.08956597759712631 :0.30355601140513694 +have:0.3206013114736345 agreed:0.08675452656579141 wanted:0.07396908139460845 were:0.06745954247106781 :0.45121553809489784 +the:0.2334869545809517 a:0.09758203032099665 his:0.029443440910140048 for:0.026579866090681633 :0.61290770809723 +of:0.22337962451128787 and:0.12038735699899986 to:0.08188634448279791 in:0.06054099029093947 :0.5138056837159749 +end:0.13448495596897692 time:0.11401066747605063 head:0.09294750560879018 close:0.0647929161727973 :0.593763954773385 +government.:0.0002942653775737886 it:0.0002243300911396292 world.:0.0001903754520935504 ago.:0.00018960588310479738 :0.9991014231960883 +and:0.1391961040962382 do:0.022308196505214404 at:0.015933687930831133 extra:0.013401949233114661 :0.8091600622346016 +of:0.06685911272169173 thousand:0.02454488168121237 story:0.015887841941231398 company,:0.012531337263644802 :0.8801768263922197 +and:0.23752077913301597 to:0.14066249300745254 of:0.08227932594593992 in:0.0595631094479488 :0.47997429246564277 +lands:0.9034169447491119 side:0.04884383072628502 virtue:0.008267055899423765 means:0.005733453401698994 :0.03373871522348031 +and:0.09788974059625637 began:0.03181745091955473 of:0.02653093961737877 is:0.02489572482037311 :0.818866144046437 +find:0.6042847830197616 see:0.08513537144097379 take:0.07018370428765952 make:0.056588253044987186 :0.18380788820661795 +and:0.08842466636635085 of:0.04149378361096307 or:0.018843432890910734 was:0.014585023062429706 :0.8366530940693455 +the:0.2207497045018352 No.:0.11653625308179726 pose:0.10896251760661396 and:0.0811262813947346 :0.472625243415019 +house:0.13938374374800144 treatment:0.021972410845256526 fine:0.01750041840417611 family:0.01357381152898185 :0.8075696154735841 +their:0.9787683858553681 the:0.0010671836059362976 our:0.00017835557651591936 ir:0.00016545303565166682 :0.01982062192652803 +months:0.9559713341233155 weeks:0.01049881773552665 years:0.0026808032939420016 the:0.0024605466214775414 :0.02838849822573831 +view:0.05292584980352208 return:0.03702121843754927 letter:0.028222441712926673 visit:0.026063285627068337 :0.8557672044189336 +the:0.17360187075255853 and:0.13678837033225316 of:0.1201728158725886 The:0.10645776536225864 :0.46297917768034114 +thing:0.635187140087122 candidate:0.10937172879602582 country:0.043939382841942744 one:0.007924305102784954 :0.20357744317212445 +it.:0.521532870659706 them.:0.19546555188934897 him.:0.020339100779503804 It.:0.012563116616867069 :0.2500993600545741 +and:0.16427794637652765 to:0.1077825544030387 the:0.08857253251814654 that:0.06497351008470052 :0.5743934566175867 +whenever:0.3650586316864136 if:0.2667669886932401 nothing:0.18109888703713747 it:0.013147347879042088 :0.17392814470416673 +in:0.22531508992113528 to:0.20908539253046451 over:0.15835904756797942 and:0.14836042637515137 :0.25888004360526945 +me:0.9491063152852989 him:0.02483509180681342 mo:0.003833208790037137 her:0.0011303223783135621 :0.021095061739537024 +at:0.4144801878078194 At:0.4034192977479825 the:0.10308454561387104 some:0.029433965289333276 :0.04958200354099374 +about:0.91856438515459 distant:0.0005815546922992692 north:8.517591069607928e-05 south:7.098430668239366e-05 :0.08069789993573227 +District:0.005111672578841869 premises,:0.005056435372770585 State:0.004811542028378883 most:0.004794901358512132 :0.9802254486614965 +next:0.18647947287391486 i:0.07698894606871536 said:0.04071252124106836 The:0.02287593022960286 :0.6729431295866984 +to:0.24923524387862056 which:0.10662294347334915 and:0.06860845706382203 boys:0.054983016323579784 :0.5205503392606287 +not:0.1451655898268368 simply:0.092501899672587 the:0.07369510830843372 to:0.04197556138388447 :0.6466618408082582 +.:0.09543608260128786 large:0.09044137547319628 few:0.05293340836712939 great:0.046959712428636044 :0.7142294211297504 +the:0.29004062669032443 of:0.2503966376944853 by:0.1410505704291216 The:0.11660526189033538 :0.20190690329573344 +is:0.47375071806935415 would:0.35011855759718047 must:0.07767574912699228 might:0.058848490443270826 :0.0396064847632022 +a:0.5380940949098416 to:0.10775029585990344 the:0.09195620674592465 an:0.04962595836284693 :0.21257344412148335 +of:0.8754933445380745 to:0.052884719811671685 I:0.028880626531532273 at:0.02868207971137855 on:0.014059229407343103 +first:0.1352023594217448 highest:0.09738317137932138 old:0.09022595335086193 same:0.05996876091481207 :0.6172197549332599 +the:0.52915971344925 a:0.2829540144069208 this:0.03442361837912332 any:0.03000490387863018 :0.12345774988607568 +vs.:0.3412189393178645 and:0.05378567533250562 Mrs.:0.03475375102339803 N.:0.02802437821915061 :0.5422172561070813 +grave:0.03574946323102069 first:0.03259076523696038 sharp:0.032216083634091945 the:0.029148545749772034 :0.870295142148155 +they:0.07078091440697608 who:0.05237743102282214 which:0.048022964332111624 They:0.04701363595173632 :0.7818050542863538 +of:0.2366399163352868 the:0.19159337673771826 ol:0.18444456576600599 saw:0.05280295162795363 :0.3345191895330353 +ing:0.07124407024183861 fixed:0.06381292018428504 lines:0.05801602812524274 or:0.05699733716996941 :0.7499296442786643 +in:0.1811472344204456 the:0.12315642374074268 on:0.09969000450317354 at:0.07433007950485128 :0.5216762578307869 +may:0.3796395350119034 shall:0.33226791718207666 will:0.10166277671117722 might:0.08633431028526686 :0.10009546080957599 +which:0.19597665106603523 them,:0.1582453667860545 him.:0.07973576180632885 the:0.03736682561331028 :0.5286753947282712 +of:0.6948721366985153 and:0.0575450114763374 to:0.023836406871579233 ot:0.02264421191304287 :0.2011022330405252 +form:0.02936477840884115 their:0.0065023644604171385 if:0.0050438940423139815 to:0.0024689258880086404 :0.9566200372004189 +me:0.823340540586947 Court:0.025068438910689606 or:0.01659068247470747 free:0.011388386782265078 :0.12361195124539084 +first:0.16944134244070397 small:0.11504307486493867 business:0.08083860826978202 moment:0.03340149963222647 :0.601275474792349 +who:0.7118267805627309 that:0.10936205423698173 which:0.10620492942891194 there:0.01707364622612134 :0.055532589545254044 +to:0.9998218929223031 and:5.386383315526557e-05 that:4.915302023961676e-05 places:1.485294666883835e-05 :6.0237277633353495e-05 +ing:0.5903402974749938 that:0.06666851090657462 on:0.06565654836285229 or:0.05578934261039412 :0.22154530064518518 +day:0.8810768380339465 Monday:0.01787244640343095 Tuesday:0.013853662103268802 bond:0.012713776587896486 :0.07448327687145714 +the:0.6947358780761045 without:0.0832204276832231 all:0.05483240579168562 a:0.03186802891348494 :0.13534325953550172 +whole:0.0744146516524168 entire:0.03481428825618498 first:0.03369631368180275 closing:0.02412507054970234 :0.8329496758598933 +York:0.15515037417713073 Jersey:0.03759461128868958 York,:0.03412707434714975 England:0.029575987307435273 :0.7435519528795947 +at:0.4674585635966263 to:0.29854847511814187 through:0.05945335794882537 is:0.030744671990679005 :0.1437949313457274 +stop:0.15324303147756524 make:0.14374399279765265 remedy:0.10580944505151131 favor:0.07783003299624656 :0.5193734976770241 +in:0.8473592426505732 In:0.08964289741151633 the:0.01930136484931592 io:0.016583993368941202 :0.027112501719653292 +an:0.2568045083252634 necessary:0.06431490615555643 popular:0.06032542997975476 un:0.056074573443900724 :0.5624805820955248 +of:0.9857089218666528 on:0.00794479472714058 in:0.0022494310166773952 ut:0.002128922280575971 :0.0019679301089531413 +see:0.05724195193336067 the:0.05014881133267414 be:0.03734362594767679 meet:0.034861546007292354 :0.820404064778996 +most:0.014056663012923572 the:0.012782054674617644 first:0.010792510160775221 and:0.010550948787056055 :0.9518178233646276 +for:0.21940566221328459 to:0.19647286905975436 of:0.1523973056056661 The:0.09604577781431252 :0.3356783853069824 +was:0.727877429604769 had:0.029542590457383 seemed:0.019335396177104017 throw:0.011242012174045747 :0.21200257158669827 +from:0.8400065527122323 for:0.050060633494538716 of:0.02052821392686284 with:0.014747742463110104 :0.07465685740325596 +cases:0.04562686342434586 England:0.02335143182226171 the:0.02023763262404212 valley:0.018461290132858757 :0.8923227819964916 +he:0.6605633907237957 He:0.13845345185326394 she:0.09417637364247973 they:0.04957070786469074 :0.05723607591576984 +ward:0.05559995997005985 port:0.003615221425334936 organization:0.0034045767239839534 public:0.002661454657650585 :0.9347187872229706 +a:0.2420820065432752 the:0.15120574660589906 not:0.07865453945397695 an:0.056842147642756496 :0.4712155597540923 +the:0.5575285509583392 a:0.0877676127315445 thia:0.04246556116841332 being:0.005913571032630771 :0.30632470410907225 +the:0.2686467135058555 taken:0.24119807692398715 things:0.12573237026518905 will:0.10782891427014221 :0.256593925034826 +the:0.041226993380241245 sum:0.033682284289466284 same:0.03339624665438344 said:0.025066501582052397 :0.8666279740938565 +secured:0.04424320503757692 paid:0.037590988050533077 used:0.037521237454683574 numbered:0.03732702274295255 :0.843317546714254 +the:0.49039412968425883 any:0.12685818679265082 every:0.08751216110440493 a:0.05989594028403065 :0.23533958213465467 +large:0.06829110195551996 few:0.04076225646018928 the:0.03865087123883265 great:0.03615127397427721 :0.816144496371181 +of:0.36181885676973347 and:0.11277478861318724 to:0.11218129254137918 for:0.09413799673370385 :0.3190870653419963 +which:0.9225322056888468 are:0.027044073124358227 is:0.023151568890372537 arc:0.008708116065256481 :0.018564036231165964 +con¬:0.14282190394238656 con-:0.104350973672413 to:0.08927645422250732 a:0.05999060177768485 :0.6035600663850081 +to:0.06331268203290333 ed:0.03641504518926166 up:0.01646623341204647 out:0.014046962391648208 :0.8697590769741403 +of:0.29803226451579407 about:0.17257959976530646 half:0.12377661388545713 over:0.0750915051611255 :0.3305200166723169 +paper:0.04934761309309194 and:0.01775474515583213 newspaper:0.015639797360417342 was:0.014779326090657222 :0.9024785183000014 +hand.:0.005609153482469142 life.:0.004192576399410325 f:0.003923447038677218 money.:0.0038282885165311694 :0.9824465345629121 +of:0.08423843500428925 and:0.08232705642610035 the:0.06884482166660472 to:0.05230442693817686 :0.7122852599648287 +never:0.3912518424642906 prepared:0.07512287942371487 want:0.04889692139033832 determined:0.044913356669985596 :0.4398150000516706 +water:0.6375842169431692 wind:0.056536672715216105 fire:0.052425381663958145 light:0.050988607161246396 :0.20246512151641025 +the:0.19736526003631585 and:0.12333124812480434 of:0.07265848696559864 I:0.06869503990901574 :0.5379499649642654 +train:0.11656827937122796 mill:0.07437025132492696 order:0.07228936375184464 fact:0.06202814347573662 :0.6747439620762637 +people:0.2594841916841907 enough:0.169882818678944 man:0.16929772694845846 girls:0.1249385286130654 :0.27639673407534143 +himself,:0.09564021606800349 the:0.04359777170405122 first:0.022072929254629885 them:0.013173430935969007 :0.8255156520373463 +and:0.07614226502426398 of:0.049901806275509705 the:0.04803731917764451 to:0.019295033879762998 :0.8066235756428188 +and:0.08643941862730581 so:0.021724837996563436 then:0.01725993144452106 as:0.0144956157948565 :0.8600801961367531 +past:0.08865429962569632 day.:0.03603297516099656 war,:0.016402895276915817 month:0.011742020374145184 :0.8471678095622461 +office:0.047680714564806236 tion:0.04488940248759823 part:0.04385235349665288 ment:0.025019021464584255 :0.8385585079863583 +state.:0.12024099605827511 State.:0.11317009863201395 country.:0.07845006877571163 case.:0.07423917963228914 :0.6138996569017102 +just:0.5418120859042069 on:0.12423353622534479 back:0.05822124031899705 well:0.03688139620098081 :0.23885174135047033 +John:0.2130666570668562 but:0.1001242785088583 and:0.07933344744240045 I:0.043167282987975404 :0.5643083339939098 +The:0.8138970670959746 Their:0.06234935694486627 to:0.02705446260712786 A:0.02589151889752502 :0.07080759445450638 +or:0.23190530010347613 and:0.1797038173707307 about:0.07087215089607925 of:0.04875345038164932 :0.4687652812480647 +force:0.1272874621107054 him,:0.0698971638084504 tree:0.032157773492672605 water:0.019739685291617487 :0.7509179152965542 +of:0.7814307488401925 and:0.08167756170833462 at:0.07440416387444519 on:0.0414462256770212 or:0.02104129990000637 +heard:0.4624850098056526 against:0.08596192482830771 with:0.06223053135561292 to:0.05698965302067458 :0.33233288098975217 +the:0.4405069200431145 in:0.40776188337262276 any:0.07624619491604309 this:0.0654359793503938 :0.01004902231782586 +Henry:0.1558086306707537 John:0.11376019357889702 James:0.1105942081820753 and:0.02419314817953488 :0.595643819388739 +the:0.22032501954442282 with:0.08711427630869548 I:0.07836989021716582 much:0.07587816134013457 :0.5383126525895813 +and:0.46547436929409913 of:0.04821866555106008 at:0.02094660485830018 was:0.01901815514339813 :0.44634220515314255 +with:0.5981051369599404 that:0.12630250602616983 to:0.06818454195715586 of:0.06228120098238579 :0.14512661407434815 +shall:0.00012849156510809007 selling:4.1962672602197404e-05 defendant:2.7971448508225063e-05 him:2.6817155169983803e-05 :0.9997747571586116 +be:0.4243254812533411 the:0.2016481722840108 a:0.09780082004468243 feel:0.05127728394610466 :0.224948242471861 +of:0.21601557078873374 in:0.16934991856608908 and:0.10951518538831016 with:0.1000834439274076 :0.4050358813294594 +have:0.40758169035621145 had:0.3316413118483182 has:0.14112346182469596 bad:0.039720584893132654 :0.07993295107764181 +and:0.12126092666101161 of:0.06535016440572974 the:0.0583207052434816 to:0.02996435626502603 :0.7251038474247511 +of:0.4605186047637819 in:0.389052064854322 In:0.0781937086516403 for:0.03711882196981952 at:0.035116799760436426 +Mr.:0.20119062638075322 of:0.09168363312227541 and:0.06669755398849571 The:0.05875420249137733 :0.5816739840170984 +it.:0.4012905409906813 the:0.003816727149869073 them.:0.002267726012726205 business.:0.0020256646482183405 :0.5905993411985049 +causes:0.046914558325128246 degrees:0.04307512896995315 road:0.038260618771684136 commission:0.03615693572665609 :0.8355927582065786 +a:0.1576476831856469 by:0.14069509256003393 and:0.0927475631593656 the:0.06695958940180217 :0.5419500716931513 +no:0.0010733727749914206 case:0.00028667179146285175 name:0.000258716942640645 past:0.00025817233277863894 :0.9981230661581264 +has:0.33461330718756876 where:0.08677260866538365 on:0.048619884883249365 in:0.04521193332260257 :0.4847822659411955 +np:0.6234507884542082 up:0.2272326994498815 up.:0.00901936518328068 now:0.007042132374281967 :0.13325501453834757 +school:0.2161176433505401 new:0.11474349649309665 The:0.06081033726649146 other:0.04939758308891783 :0.5589309398009542 +Mrs.:0.1162113625329309 Miss:0.11001347060015047 and:0.06123618483311736 J.:0.02735409081476818 :0.6851848912190331 +run:0.23900650570898774 in-:0.062290976740147594 mo:0.01003780218097909 begin:0.006012358121691156 :0.6826523572481945 +street:0.18900460136066632 street,:0.1512475546071574 feet:0.1006336757821013 feet,:0.07051597339165752 :0.4885981948584175 +into:0.3046791390846861 to:0.2276006123792705 from:0.1778953007658592 over:0.16486365867053407 :0.12496128909965015 +same:0.051499580552480315 other:0.03577733336338317 such:0.02908922572216904 public:0.011950089112901258 :0.8716837712490663 +to:0.9251360857997174 of:0.06991495339798728 may:0.0026880377703485093 which:0.0014443401385079808 or:0.0008165828934388145 +out:0.9612365803677704 to:0.002112945966862753 it:0.0011619519676777455 one:0.0008900169574318237 :0.034598504740257274 +mixed:0.051608375841210606 paper:0.03638195195788435 out:0.017266037394840866 fire:0.01138610014477925 :0.883357534661285 +much:0.3136482147093074 only:0.1378216723399812 entirely:0.07329609449656517 in:0.045053521419711876 :0.43018049703443423 +the:0.4720494493114319 I:0.05351733518336669 he:0.04449741338908529 a:0.043282110811810444 :0.38665369130430566 +the:0.30636686814595593 a:0.05344522047681604 other:0.020679443902302502 to:0.01893735120475847 :0.6005711162701669 +make:0.04552470538440449 to:0.04014365465122147 all:0.03220235715218954 take:0.030238019429351205 :0.8518912633828333 +show:0.0778198433752595 hour:0.03929699750370679 case,:0.03728463809751658 steamer:0.03482487943601929 :0.8107736415874979 +that:0.9845893655596719 the:0.004472584904691831 thnt:0.0036966705785303755 certain:0.0007404137206158749 :0.006500965236490009 +the:0.22313652597046893 and:0.15422352723557287 The:0.07003075278253786 of:0.04928558092683699 :0.5033236130845833 +the:0.9466199140648272 any:0.00019146028953921084 express:0.00015435258788589222 ihe:9.550890697730978e-05 :0.05293876415077056 +The:0.48651154914258227 Every:0.4506304729592438 Its:0.03942254281810826 This:0.01304142941141923 :0.010394005668646409 +It:0.065309939619926 he:0.050281822765803515 it:0.048826210371235655 which:0.04539142769730077 :0.7901905995457341 +more:0.44374399830304334 taken:0.039605398482500984 made:0.025417208678732685 the:0.010933842964301724 :0.48029955157142107 +keep:0.20214498716498042 then:0.12188747129188283 it:0.025835670423474576 that,:0.020617900821060006 :0.6295139702986023 +State:0.9748076180700592 state:0.016170862202681487 counties:0.00027058122681526984 District:0.00020525626073690162 :0.008545682239707031 +of:0.45207325880510574 in:0.15594958988841479 all:0.12468294235090926 from:0.11032382649927121 :0.15697038245629882 +a:0.9524132729815277 t:0.010791517531580459 no:0.004130812924713302 another:0.0022431869873357365 :0.03042120957484279 +I:0.3361698378363775 and:0.24205804660549907 who:0.142665871525714 he:0.1406219349762809 they:0.1384843090561285 +had:0.11627425334836206 and:0.09745638155645382 that:0.08641529980277246 but:0.05492295523110741 :0.6449311100613043 +men:0.2350527060875365 man:0.05000516346241176 party:0.04698464994465007 one:0.032628082675424344 :0.6353293978299772 +the:0.21905338054974538 money:0.02581296949683091 said:0.02041264076027014 a:0.01641187396353969 :0.7183091352296137 +is:0.4022864534685437 was:0.15011009238272127 of:0.1497358162281533 but:0.11023057626419755 :0.18763706165638436 +the:0.9675566140740979 their:0.011564042803375073 these:0.007478295816526746 with:0.004442366604563353 :0.00895868070143695 +and:0.0792386089144809 Saturday:0.022009407515038784 of:0.016103972282293575 stock:0.0139928747451532 :0.8686551365430336 +the:0.2896617098027775 June:0.08685426060311359 March:0.03931138144827377 July:0.033147210998506337 :0.5510254371473288 +John:0.0955993164050876 J.:0.061117131531749636 Richard:0.04943909437914972 David:0.049285783748769726 :0.7445586739352432 +of:0.5034631286351658 and:0.1209445055909858 to:0.06782298045477543 in:0.04720777666931014 :0.2605616086497629 +set:0.3131654292098691 experience:0.17781706283379575 efforts:0.13008709557406026 arms:0.04798278242374693 :0.330947629958528 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +on:0.02278099821378132 .:0.016383134986747837 State.:0.006874730272993083 and:0.005367267325039786 :0.948593869201438 +the:0.5282910298320495 a:0.3521524010631087 The:0.04098753909421022 any:0.025483916979810967 :0.05308511303082055 +and:0.6472921176439369 are:0.06871948399926804 is:0.060350709357182106 the:0.0197006984072313 :0.2039369905923817 +If:0.23876632286187024 but:0.19280142836911354 that:0.13573669803264307 if:0.13062544450074373 :0.3020701062356295 +and:0.06855436199167589 is:0.04788796177896513 was:0.03372093737950336 him:0.022826454359146202 :0.8270102844907093 +a:0.3257683701653874 his:0.21725043774954722 any:0.16476250885053315 at:0.14644813632955966 the:0.1457705469049724 +up:0.8953049820593473 until:0.04560758080464662 till:0.012634164517944226 out:0.011341249381336656 :0.03511202323672519 +and:0.24578820381421618 All:0.1664794626769742 more:0.1615295103618199 of:0.07127158749105182 :0.3549312356559378 +her:0.6648051829661611 land:0.009289069533132521 the:0.007818062989373965 lands:0.006742420406420173 :0.3113452641049122 +own:0.15474043162809947 set:0.06056562011977254 work.:0.05036246729802568 big:0.04046721027571996 :0.6938642706783822 +in:0.1421461308921289 about:0.12306744460650532 to:0.049495998805535686 extending:0.044970853339778655 :0.6403195723560514 +days,:0.1600116062884099 out:0.1196039025281742 train:0.11846267388457937 years:0.11631924619862113 :0.48560257110021543 +hereby:0.9809906327755936 was:0.00851963716430854 were:0.0011301824352997366 has:0.0010334539485130697 :0.008326093676285137 +walked:0.09926693909960217 came:0.08413511213174052 passed:0.06496889815637986 could:0.058628050813480104 :0.6930009997987976 +her:0.3269050971567221 The:0.2440245397030375 that:0.21124309471289468 how:0.11555444887506826 Some:0.10227281955227731 +the:0.4434890539252033 our:0.3517770717799344 had:0.007499365515769602 were:0.006565682673166117 :0.1906688261059266 +is:0.047250466303862995 lower:0.041118959050417056 man:0.028770583809274643 home:0.024346845909337948 :0.8585131449271073 +be:0.14819702692103123 hold:0.015647834873212547 always:0.004726451625170422 bear:0.003811327622751568 :0.8276173589578343 +the:0.4266413697872299 a:0.015141583422577052 only:0.01115646426743693 e:0.004161334264337856 :0.5428992482584183 +of:0.574713970101656 and:0.10473320372585739 that:0.058600040813835005 by:0.04350875917019149 :0.21844402618846007 +any:0.08051198207661299 more:0.029413015605454108 one:0.02303445846750856 two:0.018156935443515446 :0.8488836084069088 +are:0.7628293024081407 were:0.1498771629997516 arc:0.06645558542352227 aro:0.015155406674419926 :0.005682542494165426 +the:0.2674996782997108 in:0.23967077251095648 a:0.08939089573267503 to:0.07017152653721148 :0.3332671269194462 +down:0.07848271843812668 out:0.05384726230024574 fat:0.033358480295167546 up:0.0282225961851132 :0.8060889427813468 +had:0.012002838586684253 first:0.010308634075689922 of:0.00869609144089261 com-:0.008421008174600673 :0.9605714277221326 +the:0.7356557389796717 tba:0.14855290128419885 tho:0.06813446433751563 as:0.01063955915472702 :0.037017336243886756 +the:0.5017993815863308 our:0.3730502372742013 which:0.05703575379265193 other:0.02012432030698626 :0.04799030703982999 +laws:0.14631792557484558 and:0.05356893023512897 school:0.0502843615392011 interests:0.03422677561751985 :0.7156020070333045 +make:0.04039259237326739 be:0.03900155516444696 the:0.02680027689814253 of:0.025218823648401296 :0.8685867519157421 +No.:0.09610630687467578 and:0.06825478344572437 a:0.04605097644730787 of:0.0412995879808855 :0.7482883452514065 +and:0.9798019616726208 ana:0.013545020962993136 aud:0.005207069068125117 we:3.145397575941983e-05 :0.0014144943205016388 +other:0.3868848306524784 foot:0.015059191115285198 first:0.013978898502787654 a:0.007769527640438201 :0.5763075520890106 +names:0.03357210696163563 walls:0.009598498795417593 soil:0.008317765473582817 stomach:0.007927891098254928 :0.9405837376711089 +or:0.1956169407180528 of:0.11309524930253603 no:0.09752631414789699 to:0.08180535843186998 :0.5119561373996443 +the:0.3214592027764535 her:0.11185910304346647 be:0.05636652347260434 a:0.04828758219318325 :0.4620275885142923 +and:0.06201247832546384 years:0.06080025408238364 feet:0.05651372480802743 or:0.045582455240717704 :0.7750910875434074 +of:0.3911004590892724 in:0.3139348241576106 whom:0.17671923866621583 on:0.03486202167796211 :0.08338345640893902 +the:0.1516898730349055 can:0.11300842049552806 of:0.1053747355681546 in:0.01272910576866747 :0.6171978651327445 +would:0.5812378409945607 may:0.21366081297405073 will:0.10306120432243676 should:0.07546395982637244 must:0.026576181882579528 +title:0.972136309066124 tie:0.001021287174295263 line:2.530919494003052e-05 claim:1.8174393871108996e-05 :0.026798920170769625 +in:0.20158162065948798 to:0.15433897303468788 that:0.0940963952399758 on:0.08591014549911351 :0.464072865566735 +money:0.3984755664195088 way:0.114495707520956 it:0.01256305220621339 up:0.011448147427549318 :0.4630175264257726 +Monday:0.5133919736843895 day:0.34674000819438017 Wednesday:0.048356651551688154 days:0.01840639222261312 :0.07310497434692916 +the:0.2526816468591869 his:0.05272544171143474 of:0.028021293441302306 Rev.:0.01625372543606325 :0.6503178925520127 +was:0.08717203311670271 have:0.08461657535522164 am:0.05808260239360745 the:0.03707362344858994 :0.7330551656858783 +day,:0.03166827638170611 day:0.030284460848887768 war,:0.027805142452340323 summer:0.02720048503135633 :0.8830416352857096 +and:0.3007926010899567 return:0.17567121897153798 on:0.14287495372726025 of:0.12548174684458438 :0.2551794793666607 +may:0.4560557750971099 could:0.3348994359095897 might:0.1543209786766668 would:0.028176357925504172 :0.02654745239112938 +steps:0.46933903555636336 measures:0.03256295113562985 funds:0.02518472172900097 sum:0.01662086237461349 :0.45629242920439234 +and:0.6722717381444747 but:0.20768408154718265 or:0.02777444660580698 so:0.016236161462728625 :0.076033572239807 +choice:0.40901640604579914 love:0.1789718375106966 own:0.0501569286963579 influence:0.011878914351393563 :0.3499759133957528 +delivered:0.7964789805992929 executed:0.18516380138511662 allowed:0.004757079208965167 returned:0.002343924022294157 :0.011256214784331251 +which:0.8355514335031599 what:0.09092850910717443 who:0.029717679202262155 that:0.017387063094969877 :0.02641531509243381 +of:0.8686435018723622 cf:0.0533772717421133 ol:0.04758366751754711 ot:0.01137548256961074 :0.019020076298366828 +and:0.3433726545049371 or:0.314224179851554 a:0.11586595102401609 the:0.047871008143305326 :0.17866620647618742 +the:0.45827616734861665 a:0.09715725513154522 and:0.06930072830487882 The:0.04328457989451899 :0.33198126932044036 +for:0.26877111656724645 of:0.22507687063465545 in:0.19056146154300083 during:0.08423771914665028 :0.2313528321084468 +the:0.839024551813857 tho:0.04231309029284192 tha:0.018281653302903437 tbe:0.009252319818051849 :0.09112838477234576 +and:0.10253370771025841 of:0.0865323930368307 the:0.05579766032781778 to:0.034132486547816705 :0.7210037523772764 +W.:0.14090408481767971 J.:0.09560061208179929 C.:0.07999354912745402 M.:0.07767141466369493 :0.6058303393093721 +year,:0.3887464302236282 day.:0.07120662214221761 year.:0.04576795421364409 every:0.019343184855670856 :0.47493580856483947 +simple:0.0673193258998143 small:0.012019686086957911 heart:0.005428935354938577 living:0.0038590977511123526 :0.9113729549071768 +had:0.127978902850505 with:0.10199208065015322 use:0.08570482604336638 putting:0.049683480875696365 :0.6346407095802791 +man:0.2677398145248179 people:0.1459080635685831 candidate:0.10747816656023021 person:0.05889732708796626 :0.41997662825840254 +No:0.785673656844724 No.:0.02292585337114531 of:0.0040511250267756035 number:0.0015650185460226135 :0.1857843462113325 +forward:0.7707589275947687 on:0.08314555158369313 up:0.037360043430956634 better:0.03101060452864692 :0.07772487286193458 +owners:0.1161928574924896 family:0.05966477616795602 and:0.04351670410752252 ing:0.034793023606665925 :0.7458326386253659 +of:0.5700919624834546 in:0.1784407125006545 to:0.11701336698084591 for:0.04864681047662007 :0.08580714755842479 +more:0.19510432620988186 north,:0.10309991861437606 material:0.06124102611157869 full:0.04402983953532091 :0.5965248895288425 +lay:0.19695677270595466 back:0.1460450309061657 went:0.1326825717900627 lies:0.10699063477345458 :0.4173249898243624 +to:0.9999898456678799 but:4.066459796701228e-06 would:2.4770874347302503e-06 and:1.9392593146050583e-06 just:1.6715255742271984e-06 +and:0.18085265387190863 of:0.16608877440191377 from:0.07863516564127042 the:0.07461231156972256 :0.4998110945151846 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +and:0.09289094130394711 of:0.07972424900925228 the:0.06672537847722361 to:0.03271779909049193 :0.7279416321190851 +the:0.5365813891921107 ter:0.07838144197539954 their:0.06908107203126257 and:0.06458731077514845 :0.25136878602607876 +the:0.0932383102894645 a:0.08111920420766375 to:0.02615620708808411 of:0.02418357224420952 :0.7753027061705782 +the:0.14913490443357605 be:0.1295335191232508 a:0.024796253219505335 remain:0.01785619482670048 :0.6786791283969673 +and:0.11800569742871267 the:0.09200759623625909 of:0.055362486943538014 The:0.045886196257788024 :0.6887380231337021 +of:0.41702855492790836 in:0.19806970213261146 If:0.09725756912093322 to:0.07973946774976816 :0.20790470606877876 +accept:0.8402720679751109 receive:0.15894694513363483 buy:0.0002673763050510277 see:3.691659308670785e-05 :0.0004766939931165764 +of:0.8056808471326917 ot:0.14549188355910986 due:0.036980377039405425 Of:0.006690027420680631 :0.005156864848112337 +and:0.37991200272019005 to:0.2266990251583749 at:0.11518242421973258 of:0.09911760627939252 :0.17908894162231004 +taking:0.43372609452996197 many:0.314237799373074 all:0.025943590994588674 which:0.022921793988242498 :0.20317072111413295 +and:0.375108409247927 instead:0.055755250381069134 set:0.028124333028362664 had:0.017115144668837016 :0.5238968626738043 +the:0.45240430950962834 their:0.07648649778586457 such:0.07428656685410988 this:0.0697829968700498 :0.3270396289803474 +the:0.8871776455052804 tbe:0.08364301512079957 bad:0.015524641226993265 fair:0.005362683746138687 :0.008292014400787941 +were:0.1910460411871714 re-:0.17632621238047405 of:0.030364473116280603 for:0.027673608157516877 :0.5745896651585571 +place,:0.05482155659220809 banks:0.014188533852039652 results:0.01097079862741798 place:0.007791663320281886 :0.9122274476080525 +and:0.21658454539715954 At:0.16779159159239806 at:0.11426368895346983 In:0.04125759989838188 :0.4601025741585906 +date:0.26541108868101976 time:0.2400257678204706 end:0.0953328137786541 close:0.08388493913277519 :0.3153453905870803 +good:0.9867110109258244 no:0.0026420013733031507 their:0.0025777546587042663 the:0.002151525162367802 :0.005917707879800481 +of:0.9532106120865618 ot:0.010825219020203277 oi:0.0074340339112626075 and:0.006531643531969477 :0.02199849145000265 +money:0.051952424971164375 soil:0.034185038885991524 the:0.027700478650450475 native:0.02175133797047385 :0.8644107195219197 +the:0.45200168269238944 tbe:0.44780618647347725 that:0.02315873849183563 an:0.015688502632879634 :0.06134488970941826 +country,:0.09623048967755159 day:0.05322887805127175 agent:0.018501775790341093 public:0.012941891050080437 :0.8190969654307552 +in:0.25606383161085083 An:0.18800432254610142 of:0.12043252906553972 and:0.10535452410154894 :0.33014479267595914 +the:0.1388294356808107 and:0.10782488166610872 of:0.08764293315861235 to:0.039595464072720306 :0.6261072854217479 +not:0.3090181795742259 only:0.11253130183719058 quite:0.07493059037714722 certainly:0.06570062365348157 :0.4378193045579547 +were:0.5726988707987761 are:0.1918285649419952 took:0.054695663615646595 must:0.05270265150768666 :0.12807424913589557 +of:0.48416214101228894 to:0.13187633864434778 in:0.1261951701381485 at:0.06550449716730046 :0.1922618530379143 +little:0.18537394202035634 ":0.15446347159249998 work:0.011888750267032708 wife,:0.011093127986514722 :0.6371807081335963 +strength:0.056952853479472605 capital:0.04794365533447219 set:0.03754495715986869 industry:0.02732297780893862 :0.8302355562172479 +them.:0.02593232291470937 water.:0.015084813302974122 be.:0.005166006102242806 buy:0.004693852972833511 :0.9491230047072401 +thai:0.45241510137144253 that:0.134815250026206 her:0.07607688235855227 him:0.03586022705678367 :0.30083253918701564 +of:0.11477919448507587 and:0.08222665125253595 to:0.04019144302248943 the:0.030185121132140377 :0.7326175901077584 +every:0.5881064195346761 the:0.07608791737188171 his:0.03466174284784413 peculiar:0.025084073356786647 :0.27605984688881147 +The:0.47015328525358735 the:0.33903422911938996 Ihe:0.06873013377487756 Tho:0.03301762874404798 :0.08906472310809713 +8,:0.16404290424531057 to:0.12159678852096174 and:0.11173248571966211 4,:0.0313927522883423 :0.5712350692257232 +years:0.1393362934172987 pounds:0.13433419929404397 millions:0.07470489529645684 miles:0.04973930338504565 :0.6018853086071548 +in:0.3332703920531419 the:0.15652244807998417 tho:0.07970101898213483 such:0.028808330713385295 :0.4016978101713538 +the:0.9056701710163366 tbe:0.026699601889212332 tho:0.02282193375115788 ihe:0.00822379083914645 :0.03658450250414687 +and:0.012013027607351073 ness:0.006153521523374941 tion:0.005529265879743584 to:0.005493375438440522 :0.9708108095510899 +which:0.7393308625221148 that:0.13757539270468072 suit:0.07848660849342903 it:0.017905527065870157 :0.026701609213905447 +the:0.13298971225014738 and:0.1146607401834632 a:0.065917486177976 to:0.0631596298888424 :0.6232724314995711 +form:0.14206430881627946 hands:0.13167841880709774 interest:0.09120952768793898 will:0.06637492825092131 :0.5686728164377625 +their:0.1795000301936395 having:0.1644669442041418 the:0.1438878804573584 have:0.1430510634493884 :0.36909408169547203 +the:0.28550383261875184 tho:0.09854157304219345 a:0.040040373207835586 his:0.028912427012938197 :0.5470017941182811 +the:0.42881581360302146 special:0.41875683162702604 fifteen:0.1285246193250428 such:0.0077736608355883675 :0.016129074609321437 +much:0.08448872096890084 greatly:0.0729231796286743 something:0.025440515332965905 t:0.02130696340161029 :0.7958406206678488 +and:0.2393820923823176 left:0.1014792760894214 here:0.0943986897983602 just:0.08358448769652291 :0.4811554540333779 +who:0.22884962028534372 that:0.08047377238422816 not:0.06685145836014665 always:0.05009464000853238 :0.5737305089617489 +a:0.34526955626680816 duty:0.07525167394778016 and:0.058340629655908985 in:0.04627778698781436 :0.4748603531416885 +said:0.09811487666415922 safe:0.07597130311646202 going:0.057163905196246895 not:0.0547524854540877 :0.7139974295690439 +of:0.10106614436294971 and:0.08791669883859106 son,:0.022382241481896065 by:0.01915193815166202 :0.7694829771649011 +of:0.34639721901182513 in:0.2851219171380638 upon:0.20907325523098044 on:0.08600003823017636 :0.07340757038895425 +the:0.4423369493648675 a:0.07752272573213718 his:0.04991762822033534 their:0.029354117462825676 :0.40086857921983426 +the:0.09807260758247695 a:0.027501288182870242 before:0.020621064764100156 that:0.015589955503245934 :0.8382150839673067 +thence:0.550870570132372 and:0.09221298258600753 north:0.08077837943235562 for:0.04266328430626855 :0.2334747835429963 +his:0.5332916978421058 their:0.1454819163073844 each:0.06331804589398396 as:0.05691009886662608 :0.20099824108989983 +there:0.477014608584424 There:0.30840799023779414 force:0.027401605520261364 and:0.0054547031959899985 :0.18172109246153037 +quite:0.4197092234025076 under:0.2165031578015409 by:0.14340141717624572 to:0.12014495517084722 as:0.10024124644885851 +and:0.12604546125695193 to:0.06819102290648285 of:0.05221764166824659 the:0.04786614215845101 :0.7056797320098674 +he:0.2801906151201774 the:0.2656234351433437 are:0.11579178938035366 they:0.0943186374945938 :0.2440755228615314 +large:0.7830314383302396 certain:0.1177705736119271 sufficient:0.020301244830037708 considerable:0.011087156226319325 :0.06780958700147632 +and:0.028567951897478707 purpose:0.022929421425264374 day:0.022148708666732204 out:0.016211701763348196 :0.9101422162471765 +the:0.2247143898672492 mining:0.14707602065163186 make:0.1239606851959271 such:0.04858105794020484 :0.4556678463449868 +two:0.41739422307737895 ten:0.3474730219222223 the:0.10684956087160966 three:0.04273966455614262 :0.08554352957264652 +and:0.11472267113701665 except:0.024561688518079793 but:0.02131965399004892 interested:0.020465237700858036 :0.8189307486539966 +fell:0.2848973455271643 relief:0.2491396579145707 all:0.09935697848528434 office:0.08727186428452335 :0.2793341537884572 +!:0.05210416965810344 was:0.0013880595258604874 and:0.0010187540461190894 West:0.0009199363045112461 :0.9445690804654058 +we:0.32705967357422205 the:0.18929642085118192 these:0.11947682294783195 how:0.0016262960132204618 :0.36254078661354344 +the:0.7108316790291176 our:0.11574854747211916 tho:0.05770426180345834 good:0.04488398775534957 :0.07083152393995536 +the:0.3946126270680628 That:0.13286511838100498 a:0.12962071298362515 that:0.10725325840964305 :0.23564828315766403 +the:0.6794882989016895 August:0.08711166028505259 tho:0.05643864509669995 May:0.04738057572401076 :0.12958081999254717 +the:0.3337953538778627 a:0.24501336733024312 his:0.07580132828711267 an:0.043596155145144366 :0.3017937953596371 +at:0.6727939064754029 about:0.09319525161682687 At:0.044183391866133896 and:0.0369374535932291 :0.1528899964484072 +bottom:0.16454425427187241 day:0.030519396738480104 time:0.013246593402864435 the:0.010208471994206138 :0.7814812835925768 +default:0.29371938955936056 he:0.23210605168016848 it:0.1404855253485933 there:0.14004745515460576 :0.19364157825727188 +than:0.4580505818163602 how:0.358186588600015 of:0.08290752985586067 to:0.02764384534942266 :0.07321145437834162 +to:0.365023750837364 in:0.14376687700174007 by:0.1291715921420381 a:0.10162786327515572 :0.26040991674370206 +at:0.9902417510509739 ut:0.008288002114167258 the:0.0006304713625878249 The:7.942425758512716e-05 :0.0007603512146860077 +the:0.3468663674902639 large:0.29686070721437213 all:0.1963111960994372 he:0.02930001578610818 :0.13066171340981858 +very:0.14443624778196867 more:0.0859746832520018 most:0.06317703909113662 peculiar:0.05992827447940003 :0.6464837553954927 +the:0.15793746528888777 and:0.10544141828186578 in:0.08568882579797946 of:0.08529916178273261 :0.5656331288485344 +is:0.619452607515273 was:0.21183228322737524 Is:0.08993220624456232 seems:0.025691409084781076 :0.05309149392800851 +as:0.241500268190193 filled:0.15526095658507705 saw:0.12073195070119286 a:0.1190547000757699 :0.3634521244477673 +and:0.23153220531046514 the:0.20893347437903526 this:0.04854183612424012 ing:0.04323552309474229 :0.4677569610915171 +de-:0.09794640117510715 de­:0.046078512121125376 in-:0.03205590416191658 the:0.028498216087800055 :0.7954209664540509 +and:0.19420169780809146 is:0.10072296090026255 fell:0.05990082678299832 or:0.03962186363439076 :0.6055526508742568 +and:0.5125532469942121 or:0.486735134818607 the:0.0004964896647404795 on:3.3686904900971716e-05 :0.00018144161753932178 +the:0.3847957746016164 each:0.2579877969930658 said:0.04182865064338908 a:0.01677843099101231 :0.29860934677091633 +It:0.15027221781617442 that:0.12886343788961274 it:0.09010523452715342 There:0.05531700353804999 :0.5754421062290096 +time:0.03064084050689924 direction:0.03060188045971663 down,:0.015836267580082636 and:0.012257188853822962 :0.9106638225994786 +and:0.22597212368970382 I:0.14924403523387977 who:0.14503305662435428 We:0.13591570075751896 :0.34383508369454313 +any:0.1488045683151539 for:0.11817281435309376 at:0.10328359982023237 the:0.06302783290761704 :0.5667111846039029 +and:0.08468914692348965 of:0.06988042258336004 to:0.05274342328282555 the:0.05224702150613051 :0.7404399857041942 +and:0.27253503596754186 as:0.13987670027315852 but:0.08985018697893464 Then:0.08822421236237837 :0.40951386441798665 +the:0.9690178548070264 many:0.008867097295925034 such:0.00614169927118983 of:0.002717654025212597 :0.01325569460064609 +this:0.1788059138716289 the:0.1388570746646278 said:0.018100082591055725 each:0.012619669513259003 :0.6516172593594286 +I:0.43738965211353825 that:0.15602267934851138 of:0.11654953377791046 by:0.11316308141066916 :0.17687505334937076 +reason:0.026573872060242337 purpose:0.022859441801665516 available:0.012591622521616138 matter,:0.01080024743900572 :0.9271748161774703 +and:0.22409655804788553 was:0.13171861109964628 but:0.08279801370810892 September:0.06840961969555955 :0.49297719744879975 +ten:0.4529907725679807 five:0.21656493000659854 several:0.12767283714610322 her:0.1053659000990282 :0.09740556018028926 +composed:0.14769917588391412 due:0.07907286355504319 a:0.04078859716862151 back:0.03741542613438477 :0.6950239372580364 +are:0.49779037110342705 had:0.2234787635273705 have:0.059117551754342926 have,:0.05508007334227768 :0.16453324027258187 +own:0.06387109913092809 two:0.02923403053705966 the:0.02051009707324906 re-:0.015071838504901016 :0.8713129347538622 +be:0.9609130336026167 bo:0.017674075237651826 he:0.01116946967234465 have:0.005616185821385528 an:0.004627235666001265 +and:0.23383566775579354 Of:0.22727705824419986 to:0.1872151146443415 but:0.11564047695701087 :0.23603168239865427 +been:0.8737247888924959 greatly:0.022488500335481252 now:0.011576891894634764 not:0.006116694504516671 :0.08609312437287131 +build:0.01272844049707636 twice:0.012587434149339253 ed:0.006145766939272425 raised:0.005252304595229827 :0.9632860538190823 +order:0.3635869779340573 regard:0.08484122751809886 the:0.056952659720646066 time:0.04933545929919801 :0.44528367552799986 +love:0.6131746690654513 section:0.07613005424037778 means:0.029485674420603177 reason:0.028956548019526695 :0.25225305425404093 +C.:0.2686383109463984 J.:0.0921456454567951 and:0.03601047894992697 W.:0.0236069792992971 :0.5795985853475825 +to:0.6956547450029752 of:0.2005354968388617 and:0.024931885556221296 place:0.0151169529322855 :0.06376091966965636 +and:0.10228187078706405 I:0.08094762864960252 who:0.057156435252316964 tion:0.04364483927524351 :0.715969226035773 +there:0.40521429741143933 he:0.260960229952748 it:0.1388386607979991 she:0.050945785401588624 :0.1440410264362248 +necessary:0.109217479393046 necessity:0.03713971340580257 high:0.017000516702352208 credit:0.013343774094709904 :0.8232985164040891 +Brown,:0.006434853472409573 Smith,:0.0026948813672673334 and:0.0012800965806011415 Johnson,:0.0010884347682084273 :0.9885017338115135 +it:0.9533967371866178 down:0.004045421565016403 right:0.0031394120636055014 directly:0.002817712334508145 :0.03660071685025215 +reasonable:0.25610420941949946 short:0.24039640848070312 certain:0.13589718725565594 long:0.1277623893885739 :0.23983980545556752 +and:0.6321958251172973 In:0.15179086870816927 to:0.11145087279165185 in:0.07072578775496216 :0.03383664562791956 +the:0.37271581452288544 The:0.22576780629633628 an:0.07936822283787101 and:0.06444699356702357 :0.25770116277588384 +Mrs.:0.9059102210557056 Mrs:0.03342449256844912 Mr.:0.0019117003528684247 Robert:0.00020127325699742252 :0.05855231276597943 +the:0.09499829396108275 he:0.09281169461161841 then,:0.05534103428639558 to:0.04645095002630764 :0.7103980271145957 +of:0.2238198491655392 in:0.12672128784681952 to:0.12664261657875897 and:0.11945318759474176 :0.40336305881414053 +States,:0.062194768161425794 States:0.05913248821230581 finally:0.0013214924859833268 also:0.0007732827627094882 :0.8765779683775754 +Western:0.9418103522452219 Jersey:0.0017106768528025635 Pennsylvania:0.0016690541663946957 Third:0.001409085079460935 :0.053400831656119786 +with:0.0464695414002914 and:0.023663913819176728 where:0.02348096599731629 as:0.02059355584725672 :0.8857920229359588 +in:0.8091806593945877 In:0.07945778068254607 to:0.05498440193723461 iu:0.029966761636225456 :0.026410396349406146 +water,:0.01582389262887875 cattle:0.015659327418238337 music:0.007930270564866046 Congress:0.006912126693644827 :0.953674382694372 +own:0.05338572949476318 great:0.02158172353343438 national:0.021211007627539816 most:0.019898457067580474 :0.8839230822766824 +the:0.3263147295246401 things:0.267055112857623 right:0.08914621148297923 of:0.06117029714817258 :0.2563136489865853 +contract:0.062211775714315215 net:0.05967145830315487 country:0.01344667365637917 city:0.010602586450366831 :0.8540675058757838 +the:0.11361473640460301 of:0.0903055438722137 M.:0.07003465229322264 J.:0.06628345652367756 :0.6597616109062832 +whose:0.16389662736104404 His:0.15708707534018276 his:0.11244612935822405 the:0.08030402584547755 :0.48626614209507163 +the:0.9926030451099488 this:0.0020828252984890117 his:0.0014437459615106647 their:0.0009097640015474513 :0.0029606196285041006 +the:0.45599429042643075 this:0.055464575325205 Mr.:0.03219573485976957 his:0.03156175681434763 :0.4247836425742471 +and:0.042359415900542194 Jones:0.008132049736718555 Hill:0.007555075496329671 President,:0.002901675599553914 :0.9390517832668558 +an:0.42040861776440225 their:0.16330957135377117 with:0.11421886558734792 his:0.08397673528633523 :0.21808621000814343 +sum:0.02863669542700811 city:0.016940552765268825 number:0.016554053038172024 use:0.014828379391947531 :0.9230403193776034 +fear:0.41174026543538333 see:0.18860560630791642 find:0.13195339131769188 use:0.0904450662974077 :0.17725567064160058 +to:0.9378378742191341 and:0.019267602704822345 aud:0.0032754537295270046 it:0.0026008012430116583 :0.03701826810350485 +and:0.00899043005901802 Smith,:0.00025309325008198244 Davis:0.00023039301014808614 Johnson,:0.00022058764283744612 :0.9903054960379144 +a:0.20521128420279483 the:0.16313414187737788 and:0.08736378545645836 of:0.08410231889391259 :0.46018846956945647 +and:0.1950311264145701 The:0.1254615804480418 A:0.10572153639556366 the:0.10211074975602785 :0.4716750069857966 +used:0.07969707543859705 made:0.06523872785189631 ed:0.051264911751377866 cured:0.037093675506049195 :0.7667056094520797 +and:0.11768463021409825 of:0.06253504247344342 the:0.05990015862566202 to:0.02991271755477966 :0.7299674511320168 +of:0.3722186545901537 and:0.15028869794488692 the:0.055417086113471584 actually:0.04254827839327809 :0.3795272829582098 +most:0.018369557658137237 same:0.016089392893030685 the:0.0136498285780756 of:0.009980452945863137 :0.9419107679248936 +living:0.18546691694909664 giving:0.12604592556108107 threw:0.04541425861604547 and:0.044515751741066645 :0.5985571471327102 +consideration:0.22206070382060727 ground:0.13834405645510478 conditions:0.12838631295742503 day:0.11929829761404263 :0.3919106291528202 +case:0.128127922365614 course:0.1005345540394801 event:0.08213157260726327 hands:0.07734775406257946 :0.6118581969250633 +with:0.2629485447237202 by:0.24161219351755198 and:0.19509951376069018 from:0.15584674489906855 on:0.14449300309896923 +same,:0.12904047722217654 continue:0.06844749215094632 and:0.04017941963319079 year:0.03284075950625692 :0.7294918514874293 +of:0.26392332673459534 and:0.12263845043510173 the:0.04721296880443427 The:0.025528492282984514 :0.5406967617428841 +it:0.5789186989279703 where:0.23754535520783393 that:0.06465335303101503 as:0.025576886351307122 :0.09330570648187352 +property:0.057768799029229545 reports:0.04553116729280352 and:0.03461127512825102 character:0.03180889758562677 :0.8302798609640892 +a:0.3682724433231523 the:0.14166152859321873 that:0.08515798819675417 many:0.025171894722625914 :0.3797361451642488 +was:0.8129783641598453 is:0.06774198473371901 Is:0.023409212621618734 has:0.014959763796654351 :0.08091067468816275 +nations:0.7788162957650437 the:0.0979755526517214 this,:0.020544562449484566 his:0.015778907469294053 :0.08688468166445634 +that:0.3822868721826248 at:0.27909132474664644 the:0.11325555062835828 to:0.0907431316490654 :0.13462312079330493 +of:0.20296383806853524 draw:0.11717024550421658 and:0.07432643003013324 the:0.042212234483438194 :0.5633272519136767 +his:0.3228072325548989 Christian:0.1506755244752644 n:0.1056408904541088 first:0.05756879318899802 :0.36330755932673 +such:0.26929654308711415 being:0.15332769618914413 having:0.12232207053170885 the:0.0592849643031985 :0.3957687258888343 +a:0.3556047388302144 the:0.34325386342840214 an:0.13326084907944424 sleep:0.050718499393195414 :0.11716204926874378 +house:0.0581396632132152 the:0.012011051855264156 stand:0.006400395534762606 ion:0.004554048332931827 :0.9188948410638261 +the:0.39518248837643427 a:0.12054093263918184 and:0.04320483133445947 tho:0.03945287188268478 :0.4016188757672397 +of:0.19428155421675303 to:0.14378629381620686 and:0.1352907592427309 in:0.13041150664387485 :0.3962298860804343 +the:0.8114054142463987 tho:0.03213693582696183 a:0.02871402514426816 his:0.025803746824654545 :0.10193987795771678 +own:0.06984854735929795 the:0.011051245624287892 great:0.008743677547756819 old:0.006650808310137099 :0.9037057211585202 +well,:0.22133300628187522 and:0.0577287770075159 man,:0.016191214073237994 first:0.01436604208202965 :0.6903809605553413 +highest:0.03771379728903197 the:0.026870746990041692 great:0.023533883339812222 a:0.012351972745473649 :0.8995295996356405 +in:0.2030009503614836 at:0.14643066922825174 not:0.09685636186995426 making:0.06986002656391586 :0.48385199197639456 +and:0.29309263333881314 state:0.152727289133675 the:0.11387356338785876 in:0.08695032683082965 :0.35335618730882346 +was:0.13797352692967066 are:0.11865027232030821 very:0.06947235086814017 composed:0.04727564482210676 :0.6266282050597741 +majority:0.9916338255620729 free:0.0005780351289205726 Justice:0.0003957099090624429 measure:0.00026661488537335035 :0.007125814514570731 +They:0.4622265633691819 But:0.07551516157003105 That:0.03646913833296351 Even:0.015175287825509072 :0.41061384890231456 +the:0.3403107649629594 of:0.18303131350120647 with:0.13063896968069627 These:0.1136319500935495 :0.23238700176158836 +the:0.3949120338656023 are:0.15187995208887956 without:0.06345666353969738 have:0.0584386595246366 :0.33131269098118415 +all:0.2521771296916161 moral:0.25089792649317944 that:0.2304659420040731 the:0.1627751199332597 :0.10368388187787163 +and:0.17026581879468503 to:0.0896616906571094 the:0.05189680242070172 of:0.04510339543448533 :0.6430722926930187 +hand:0.13599393812085056 ground:0.10654794773816686 part:0.08076225587166469 rooms:0.04863953546064845 :0.6280563228086694 +voice:0.0026664837206547437 moved:0.0022588854341977376 port:0.0007189090411800593 time:0.0004668941041826839 :0.9938888276997848 +of:0.6218578760513506 in:0.08462053387250616 for:0.05365045467134603 and:0.043416963008133115 :0.1964541723966643 +tion.:0.0019459235050763917 life.:0.0011265521196261832 death.:0.0010750994294636085 him.:0.0009523063740165468 :0.9949001185718171 +moment:0.06089041070029254 large:0.011270546709519961 mean:0.010653080499559625 kind:0.00957975675332232 :0.9076062053373054 +that:0.1098460243675154 in:0.0840002415561675 then:0.08373825882824631 all:0.0816209101047412 :0.6407945651433297 +be:0.6774662194664782 not:0.05860141427329074 bo:0.04789775401382097 give:0.04642051996945358 :0.16961409227695642 +and:0.1178993600369288 of:0.0753275004815703 the:0.05584966143796836 to:0.029588848186694525 :0.7213346298568379 +the:0.5299564617505084 of:0.049254664444612975 largest:0.039611375788794034 its:0.030778529088165196 :0.35039896892791944 +not:0.31532888951768395 equally:0.3117153416415593 were:0.18528900684520794 are:0.05181557073588352 :0.13585119125966533 +their:0.4672717785763948 at:0.3767482757845472 ut:0.056095750365807516 the:0.03463629875692122 :0.06524789651632935 +the:0.10667369904269172 tho:0.03403654081604779 prominent:0.02404751449687007 true:0.02153254866062994 :0.8137096969837604 +of:0.276879545004384 and:0.15932524515551638 with:0.07471429847503394 to:0.04646421070500843 :0.44261670066005715 +of:0.3330961871949582 and:0.09466886101496201 is:0.07411318913194276 in:0.06556945658117821 :0.43255230607695877 +of:0.5008435522242319 cases:0.11091186915770555 was:0.08315507977062751 at:0.05604161382446026 :0.24904788502297479 +but:0.276032196455717 received:0.19783565001009518 made:0.12380187129777347 heard:0.1087188047740695 :0.29361147746234495 +he:0.4913685088405789 it:0.13768715179416044 she:0.08893651416061325 ho:0.04842069367781142 :0.23358713152683605 +far:0.7064013791920776 long:0.2517578090913824 soon:0.02026602150488204 fat:0.005067262709247718 :0.016507527502410187 +number:0.9275123428850954 mass:0.0023247498540543057 system:0.002026465314454647 total:0.0019593570875338483 :0.06617708485886176 +are:0.29230530272611055 is:0.25664345307308417 were:0.10439728020119758 was:0.09041734365998934 :0.25623662033961836 +11:0.157318303568719 the:0.10714189229445505 of:0.0558476502965209 Miss:0.05490545670387055 :0.6247866971364345 +of:0.2525151802609773 to:0.20925695093229668 on:0.18885809296259706 and:0.09239493155094027 :0.2569748442931887 +of:0.23216644477840637 and:0.1711367584445595 to:0.1478903085125364 in:0.10682040239442334 :0.3419860858700744 +is:0.051197216373286454 ought:0.045570036492818 seems:0.04044529628102171 seemed:0.03956354272864681 :0.8232239081242271 +laws:0.1292256158799396 men:0.0815238222351132 rates:0.0800238332306218 and:0.03911913452530451 :0.670107594129021 +the:0.8527698339399201 said:0.06046817199934665 after:0.025092693948461565 than:0.010479794791920379 :0.051189505320351276 +of:0.23013420969656317 through:0.16824007332050506 by:0.12935862115457838 really:0.07761767689587006 :0.3946494189324833 +in:0.27477493381004564 of:0.16741010747919516 In:0.11001367058558494 and:0.09852191389566674 :0.3492793742295076 +the:0.39142372965842315 this:0.26440351204003626 a:0.06875527814314954 any:0.04979779170007182 :0.2256196884583192 +remarkable:0.1292348933154392 few:0.08586105692047911 of:0.06169902565381222 days:0.05268333428334116 :0.6705216898269283 +we:0.5927917907526996 there:0.23026946808747503 they:0.13124327329558808 wo:0.0059659632108916335 :0.03972950465334566 +by:0.37222995314277935 in:0.3239981366758963 In:0.2617807274176713 to:0.02363100010543241 for:0.018360182658220474 +line:0.3543967512500074 side:0.32469253102841406 office:0.21521033196963335 principal:0.010460936547436578 :0.09523944920450866 +make:0.16064498685721257 take:0.1455871853788696 secure:0.14282732331990575 lay:0.08191425768465724 :0.469026246759355 +mission:0.046292592445794596 account:0.02825294873655133 side:0.012426529069476664 part:0.01239337670529157 :0.9006345530428856 +of:0.0895838154123489 or:0.08240918418635702 the:0.05945947474261809 and:0.05752127838932667 :0.7110262472693493 +have:0.32729515339532755 has:0.3271105806244717 had:0.19738994613201058 having:0.02166816072216516 :0.1265361591260251 +It:0.27956363265459255 it:0.18675462998407552 which:0.11865039815351157 This:0.057194903955765534 :0.35783643525205483 +the:0.7101723992071959 all:0.026712697339519042 tho:0.022902462058160513 our:0.01570484592814669 :0.22450759546697774 +tell:0.3317021031534084 had:0.13670511545359312 have:0.1326265958156594 was:0.0902973432552394 :0.3086688423220996 +the:0.4072277570889829 canal:0.06617876631972157 a:0.05376938726763672 three:0.04748830803511169 :0.42533578128854704 +the:0.8800427229675414 tho:0.03376898607538268 i:0.01397052005031897 same:0.011950407232235635 :0.06026736367452128 +died:0.3204649292098506 who:0.11980722284422367 and:0.04736872339042649 who,:0.035228325628258 :0.4771307989272411 +house:0.029300213850872184 weather:0.026574471862491865 case:0.022727973328105226 day:0.02260796908215201 :0.8987893718763789 +the:0.5950472547225273 this:0.08394292966435699 said:0.058816364211798144 from:0.0521850559284248 :0.21000839547289285 +that:0.2873541402812778 and:0.22816775973509387 but:0.10040989865139707 If:0.06332212818894371 :0.3207460731432876 +which:0.2826478673263655 that:0.19686191411300583 leaders:0.049931109157826954 who:0.045850975935329844 :0.4247081334674719 +I:0.03717188628553135 and:0.011207652174129617 1:0.002608022868492602 J:0.0016500457462540646 :0.9473623929255924 +street:0.14056422506610905 and:0.06157889748337262 Street:0.049018737216502864 avenue:0.045985401588253275 :0.7028527386457623 +of:0.5402325833629472 in:0.38311829016279536 the:0.03070802023113423 his:0.010156706577129653 :0.03578439966599347 +the:0.3784988578686599 an:0.1389867874069447 under:0.11200276710024591 all:0.10512511550834601 :0.26538647211580346 +cast:0.2639060501373352 settled:0.07263148058052336 made:0.071313875986721 elected:0.06830374526404098 :0.5238448480313794 +throw:0.3258483282862757 give:0.26328332265013615 drive:0.20778097250978547 store:0.06221960093057257 :0.1408677756232301 +great:0.011641603070140389 the:0.011275803574242389 general:0.011022211156199295 very:0.010335486158797563 :0.9557248960406203 +a:0.9164826376533156 been:0.06504096687060908 of:0.00676257781163172 their:0.0014598180678455199 :0.010253999596597984 +the:0.443332488591722 tho:0.11431157532995763 religious:0.08591889051059308 is:0.03992933428696075 :0.31650771128076655 +but:0.2062395900849867 ask:0.08012519023180355 Now:0.0705190494054736 My:0.06839867004042433 :0.5747175002373118 +ihe:0.9524915800270581 the:0.044283102450794 this:0.00019280252403358286 a:8.130871556525234e-05 :0.002951206282549277 +now:0.13898385833646956 is:0.08876498200160801 was:0.07259846338554503 it:0.060199327176105745 :0.6394533691002716 +as:0.2648013884473068 which,:0.135387736879715 And:0.056372187595204244 and:0.04619955978248593 :0.49723912729528796 +never:0.17023622580576264 been:0.12078290532098442 to:0.09967445604963344 no:0.08236246126255631 :0.5269439515610631 +a:0.9429103939990896 thousand:0.0036431546481996073 m:0.003129209570229132 e:0.0016570257587441915 :0.04866021602373755 +part:0.981400285124116 portion:0.0050323448462536325 other:0.0014446705879700072 of:0.0004839098230648251 :0.011638789618595564 +purpose:0.021185289863277522 sum:0.019953299925040437 use:0.01851459750378275 river:0.017344871221203564 :0.9230019414866958 +day:0.0856474071543478 tion:0.026771146928538082 of:0.02115993019993333 whether:0.01759806671866673 :0.8488234489985141 +the:0.3355406910758926 a:0.14870739324390667 distinguished:0.11748293252143599 four:0.11317909558637106 :0.28508988757239373 +touch:0.03182089942342248 a:0.006908743385408516 as:0.004572029964999236 filled:0.00454578833043297 :0.9521525388957369 +an:0.3230411044778031 a:0.2897789784379501 the:0.16072205582474014 in:0.03273366483820107 :0.19372419642130578 +high:0.2551956070284548 same:0.1546872910830131 increased:0.1444256606582189 contract:0.09548115269208592 :0.35021028853822717 +of:0.17586551836880335 the:0.0945844931617363 these:0.060919681201081946 all:0.054904333759585096 :0.6137259735087932 +the:0.1937125854550205 ten:0.034499295453616845 3:0.03245073968314953 a:0.030777385507977335 :0.7085599939002358 +the:0.3676193811864342 a:0.07409856778944533 their:0.04981788066247656 his:0.03932368168826757 :0.46914048867337615 +part:0.3366281779136945 end:0.20910451086544088 portion:0.10079845168095651 side:0.049693211361917865 :0.30377564817799024 +the:0.8114183346296077 The:0.06196125281080571 to:0.027968110564705183 a:0.018937215167478077 :0.07971508682740323 +all:0.26008580580001195 end:0.08101600211058559 by:0.03201262436464874 get:0.029115976562794455 :0.5977695911619593 +the:0.2596519439758683 a:0.0754789869382209 be:0.0404626994011706 take:0.03585972075098659 :0.5885466489337533 +go:0.1820213869298547 enter:0.13556542388166695 get:0.08411817042392215 come:0.04712071181423172 :0.5511743069503244 +cost:0.3185245582907548 place.:0.07742014552432527 own:0.02776083901992574 the:0.010649079554012182 :0.565645377610982 +accept:0.10742396763430397 do:0.09522659800049377 try:0.08813518429506892 have:0.08060262483972835 :0.628611625230405 +seems:0.9120573113219678 seemed:0.04622331261466112 appears:0.008440085850118635 is:0.0025756361442461433 :0.030703654069006305 +strength:0.27626378019688813 number:0.24261254338759802 amount:0.06357000788949814 variety:0.021824285461059873 :0.39572938306495575 +in:0.1562293242192703 and:0.1112196847946125 the:0.08184089683095104 of:0.0701324397332047 :0.5805776544219615 +in:0.6831348338400985 tbat:0.17688603855259624 that:0.07293530162099243 it:0.024390802298772423 :0.04265302368754025 +the:0.6302620988484584 a:0.0915083323778041 tho:0.039073391172904856 south:0.031310187173968676 :0.20784599042686394 +not:0.655752680127734 never:0.12136289169545095 hardly:0.08876206604183776 there:0.03531489736456141 :0.09880746477041585 +with:0.5886729331779682 and:0.11384039595593962 under:0.10882843025189952 to:0.08209652075861769 :0.10656171985557503 +and:0.18775417938795083 but:0.0635972863943674 that:0.05309090028535896 as:0.04972279436527263 :0.6458348395670502 +M.:0.8227279428854323 George:0.06809092417505727 John:0.04474328897993091 A.:0.033986313178316685 Thomas:0.030451530781262746 +of:0.7620079608607295 for:0.06368446771606028 at:0.05248876147916416 which:0.04549738081909425 :0.07632142912495178 +his:0.403696137026591 my:0.35128567421722806 the:0.08191843367423082 our:0.007926972999056895 :0.15517278208289328 +not:0.7852241344784924 for:0.037469171063682874 ,:0.010296234782388895 ol:0.008515714591429371 :0.1584947450840066 +a:0.4264072112143217 the:0.2114225004177805 considerable:0.10418545825339866 any:0.04726779018234241 :0.21071703993215668 +former:0.27861288790896777 the:0.0945154829828551 a:0.07391375455077082 and:0.06994868909521952 :0.4830091854621868 +present:0.16964275597625975 same:0.06487532470517582 previous:0.04452143057233096 last:0.02848108416536145 :0.6924794045808722 +It:0.27379092024629137 it:0.11045175513416366 that:0.09184996998052172 man:0.09104139657639398 :0.4328659580626293 +and:0.11283991665210161 one:0.04248204353646827 agent:0.0352291380007653 man:0.03379062920666152 :0.7756582726040033 +but:0.23324861449025208 and:0.19589178020262177 to:0.10929832333026837 not:0.09293270757628319 :0.3686285744005745 +and:0.03255070927201793 as:0.010725773114575354 if:0.009057929992148335 trade:0.008040535436172658 :0.9396250521850857 +their:0.9980771496629491 its:0.0014887815719642813 our:0.0002198856913754903 his:5.2565915724561516e-05 :0.00016161715798648026 +to:0.21123543665350714 of:0.20518464137887557 in:0.19090088963808027 with:0.17625738280681616 :0.21642164952272078 +day:0.10433589017421831 good:0.06406912829914221 nnd:0.016140855771169936 road,:0.011619406703686396 :0.8038347190517833 +the:0.6681487889409429 a:0.04284629859601131 tho:0.027064001534070525 this:0.016572309559100294 :0.24536860136987496 +a:0.9999841895754765 for:6.244279405101589e-06 more:4.546558587191621e-06 in:2.6312807215487587e-06 the:2.388305809612547e-06 +and:0.9929873587607911 und:0.004034252759114103 aad:0.0007522208382900065 ana:0.0006195450366015853 :0.0016066226052031687 +100:0.04249724560845882 200:0.0008343330528623531 20:4.957158718575541e-05 18:5.80768373113373e-06 :0.9566130420677619 +was:0.18537613509118112 and:0.06621524312078071 April:0.06345319925929618 the:0.040446271102613465 :0.6445091514261285 +day:0.05278839944188645 tion:0.04326084716645835 side:0.03934330302910695 corner:0.024270206618304424 :0.8403372437442438 +with:0.32257373137299256 of:0.10438080875827072 for:0.09810512585866785 to:0.07820638979436524 :0.39673394421570374 +the:0.17505546965113142 of:0.11920009291435578 and:0.10639905336031717 was:0.0363162958610801 :0.5630290882131155 +of:0.3141370360028608 at:0.06158471811747154 in:0.050901292166583574 the:0.025913421677314988 :0.5474635320357691 +of:0.6512773952277192 about:0.2630526965440272 some:0.038258957111329435 over:0.007321128088495637 :0.040089823028428485 +trust:0.0003262242720847956 corn:0.00029121849119654605 salt:0.0002207747911103076 trade:3.306327805679253e-05 :0.9991287191675515 +it:0.3304468549452466 he:0.22095806656313452 I:0.10020959501359908 she:0.06575409260806432 :0.28263139086995537 +known:0.22427808475055708 been:0.10050725702929057 felt:0.0744379803250634 noticed:0.056255924657326845 :0.5445207532377622 +were:0.5564207169286044 of:0.3924947830891907 and:0.012082281143560141 st:0.009157749947517717 :0.029844468891126963 +as:0.7974224428733994 so:0.16345244080106328 are:0.002049076165630232 ns:0.0016122197395584726 :0.03546382042034868 +The:0.28486798492148246 and:0.20729323822349285 a:0.144099677912634 A:0.11750539660864695 :0.2462337023337438 +the:0.7767601300894658 this:0.19015239736493508 that:0.010074739034558942 tho:0.007854926681626306 :0.015157806829414004 +a:0.9365687621921436 some:0.023327866563790055 the:0.022813424676730504 his:0.007942717212643982 :0.009347229354691818 +the:0.23983156185373117 a:0.045985207408037715 most:0.02533244786744274 other:0.02182270738860943 :0.6670280754821789 +the:0.37513611616370723 said:0.1469705272333298 this:0.13175739858632676 his:0.04526703317176542 :0.30086892484487077 +the:0.5218109978597085 aid:0.2759990573766176 a:0.06706719645825107 he:0.048983147323064684 :0.08613960098235801 +of:0.9565215178360127 a:0.020161318477951853 the:0.013909992614915547 tbe:0.004225644184925325 :0.005181526886194475 +of:0.27503989654686306 in:0.16444111093572397 and:0.13095301563583767 that:0.09528038031030771 :0.3342855965712676 +and:0.09140923225000028 of:0.05150118655992916 the:0.04983704489850583 The:0.04361473031984938 :0.7636378059717152 +way.:0.28384704364478297 high:0.015314636607662295 time.:0.0025385540236379134 to:0.001009213964928971 :0.6972905517589878 +and:0.08469788588674859 of:0.0719434924306995 silk:0.032155600377899524 little:0.02039650674655798 :0.7908065145580945 +by:0.2271426649527749 and:0.09782678512530332 of:0.03269212255708599 at:0.02352632342515097 :0.6188121039396848 +as:0.4997035054248829 from:0.13605580038722526 of:0.1064502105901547 The:0.05914675423666879 :0.19864372936106825 +of:0.987343859797472 ot:0.006332562418926052 Of:0.0008414936347689247 on:0.0007593143263999259 :0.004722769822433108 +the:0.12804572721723806 a:0.051675366486933834 and:0.03904921020426731 The:0.0380923690221202 :0.7431373270694407 +hard:0.07440705643342098 and:0.058085746558642765 of:0.04292252949924966 the:0.03918297746207487 :0.7854016900466118 +or:0.7877151661979407 and:0.09557298993729005 to:0.02231850883285187 thousand:0.003701516226219583 :0.09069181880569775 +was:0.5731156663232546 had:0.25643743235884253 has:0.09195133402954997 quickly:0.07398541041324712 :0.004510156875105544 +by:0.4915704769147317 for:0.006401836940417354 on:0.0022216035258053263 to:0.0021253969236366753 :0.497680685695409 +the:0.07678995580987648 and:0.07066386011944886 of:0.058056731903356584 to:0.03495563949382452 :0.7595338126734936 +un-:0.2611147699337044 with:0.25058674721749247 the:0.21177179188234813 in:0.14402296146448462 :0.1325037295019704 +the:0.30161609345498097 a:0.13847238033571835 social:0.06274823060907321 an:0.024062750956707537 :0.47310054464351975 +One:0.06672592164342461 tion:0.05260529298679671 Some:0.04530653911996413 one:0.0437225612574291 :0.7916396849923855 +them,:0.3027590558095181 them:0.19877316567180348 it,:0.15867677577783448 Germany:0.07968422090480476 :0.2601067818360392 +naval:0.04304768652838599 government:0.017466861765852583 mail:0.01265988521718308 civil:0.008193410356240126 :0.9186321561323383 +then:0.5646714730960813 and:0.060137708802278624 out:0.023537582227610272 instead:0.014401045393451828 :0.3372521904805779 +road:0.10332102172127755 one,:0.10087563014316547 field:0.07929781704346188 land:0.06944388679741348 :0.6470616442946817 +would:0.2903359357417575 might:0.17848614152051276 I:0.07620373417665502 to:0.04828954422281864 :0.406684644338256 +of:0.18025140104562426 and:0.1487003993984882 a:0.1327925822316995 A:0.051373266315329784 :0.4868823510088582 +with:0.11622761685843115 a:0.061030772996164155 and:0.04713249196628568 thence:0.02199607566900802 :0.7536130425101111 +to:0.9279830060769297 as:0.046975520689673214 below:0.004399089007680519 the:0.002195107072132538 :0.018447277153583852 +and:0.9007531471926753 the:0.011187440657730996 while:0.009938743603624215 aud:0.007868778544221904 :0.0702518900017475 +in:0.5315602184921325 of:0.26884495615459475 with:0.08089827968966662 to:0.07125283541475667 for:0.0474437102488495 +and:0.9207699405585957 or:0.07881703456885283 nor:0.00036543266631625684 a:1.0528044176791872e-05 :3.706416205840494e-05 +these:0.34322806811909656 there:0.2196007105342689 they:0.2031311423696997 both:0.16809321734506896 to:0.06594686163186597 +for:0.8254603344175103 the:0.11693439600439988 and:0.04964784350409081 or:0.006496939230424282 :0.0014604868435745275 +been:0.1834507526332333 given:0.09873807661654697 not:0.050046500254433114 to:0.04889651333638751 :0.6188681571593991 +study:0.8714242047783183 meet:0.03231030027925822 use:0.030827370681364156 find:0.017452201912048798 :0.047985922349010474 +the:0.24274618122173552 to:0.12928998142044404 a:0.08727115435515173 and:0.059124361127974534 :0.48156832187469417 +a:0.3872426810507386 is:0.09477791338693889 and:0.0855765585581634 are:0.07999995470422207 :0.352402892299937 +of:0.367185833227417 in:0.2295910654026627 on:0.12355257154356558 and:0.11067353723771474 :0.16899699258864004 +Mr.:0.009332975240692406 of:0.008821364374965687 Arthur:0.008352615703205514 and:0.008337508964650372 :0.9651555357164858 +to:0.2095197108780614 over:0.19721807427045557 on:0.17896099564699694 and:0.12045420943385234 :0.2938470097706336 +sides:0.16860049147524325 color:0.033573292976166964 heart:0.02199497322322846 bed:0.01928076070207802 :0.7565504816232832 +of:0.23471512246774845 and:0.14252944922022612 the:0.06561428329042149 in:0.03767397255376593 :0.5194671724678381 +hand,:0.2367076935370081 music:0.013522997679544707 railroads:0.009741133160712475 the:0.007222438922133109 :0.7328057367006016 +one:0.2445888723237371 number:0.17285279147984378 One:0.10114941929990082 some:0.071907447911113 :0.4095014689854052 +lower:0.4385735953540778 purchase:0.2857106872702541 ter:0.06429488336613302 er:0.04612612789701106 :0.16529470611252406 +fear:0.682748348153118 which:0.1260916684590745 us,:0.0857507949114619 ;:0.021986317995923727 :0.08342287048042188 +Western:0.08930191794457694 white:0.08751111552354184 ;:0.08406575577849194 and:0.05031796648848635 :0.6888032442649029 +the:0.6695011746583619 some:0.0931143529180563 their:0.038624370695156 many:0.008111256264680237 :0.19064884546374575 +it:0.12902759380731804 which:0.1260907630701252 from:0.08379618809913068 you:0.0688907556816876 :0.5921946993417385 +do:0.6778536398334196 deal:0.024151233496855315 go:0.009525727215397975 them:0.00650678728196187 :0.2819626121723651 +it:0.052409153669853624 of:0.023346536234111082 made:0.020838982892332394 for:0.01986756404696349 :0.8835377631567394 +.:0.019732412798262593 years.:0.0007475119436568471 M.:0.0006912483033347323 is.:0.000350681642814389 :0.9784781453119313 +he:0.35906771648013874 she:0.2772661157199724 lie:0.14362286746065234 they:0.11751375916471422 :0.10252954117452213 +to:0.4039414940530621 that:0.32603111278907204 of:0.13596638624009552 was:0.06887377801514884 or:0.06518722890262137 +series:0.13203381526969477 couple:0.1103673337143345 number:0.06421128561888388 period:0.03466293641372577 :0.658724628983361 +old:0.08143298380636417 I:0.02685271704364444 the:0.021745159636949143 in-:0.020424587876614417 :0.8495445516364277 +on:0.686361261183483 in:0.20758172094595448 concerning:0.04855763821635146 of:0.03153143598817627 at:0.025967943666035005 +time:0.8159319153073663 while:0.07913890971731553 distance:0.054477183483891606 space:0.010802281603088328 :0.03964970988833817 +made.:0.014627825182855275 himself.:0.006767431452824408 removed:0.005634787942329339 wrong:0.004629875849678569 :0.9683400795723123 +the:0.8044802640052969 a:0.04558661735142277 tho:0.04168275134648152 tbe:0.01466557510119553 :0.09358479219560333 +Mr.:0.19807052459105381 er:0.018747152422588717 Colonel:0.01736608662043179 fruit:0.017249513102372098 :0.7485667232635537 +a:0.4789908903971489 the:0.43149223210993504 these:0.03891934357446283 this:0.02430881461329415 :0.026288719305159056 +very:0.0003893929821514856 o:0.00017597050985233498 reported:0.00012141646933187358 the:3.045665904321196e-05 :0.9992827633796211 +men.:0.0025574263318457104 and:0.0009418577839649699 world.:0.0005198003036688651 feet.:0.00016726506256302824 :0.9958136505179574 +Judge:0.6466875250423226 the:0.20839884229146446 a:0.017410730312693686 tho:0.009390484831981204 :0.11811241752153796 +10,:0.027554108483901656 and:0.023252074238782092 3:0.017968502901734264 San:0.01522056359403505 :0.9160047507815469 +ho:0.5364843688175215 he:0.2706356000187546 she:0.07255389844513759 it:0.0617345481235848 I:0.05859158459500149 +that:0.5658947330206797 where:0.1856497365036163 of:0.032930025386693686 them:0.022272700776346056 :0.1932528043126643 +rule:0.08766457782570092 very:0.054777619356314367 places:0.049497733492273266 conditions:0.035813638906320854 :0.7722464304193907 +within:0.2701534678365979 in:0.09853299222248894 those:0.05610781616856271 if:0.040213102369480586 :0.5349926214028699 +granted:0.003908190520244632 evidence:0.0005962036528741522 hopes:0.00037873892398069197 effects:0.00031794032804693766 :0.9947989265748537 +The:0.28279496175466234 the:0.2774981059577677 Tho:0.1749923816721225 A:0.14647258583855832 tho:0.11824196477688902 +brought:0.37316334622030384 has:0.14966492058291309 with:0.13075310670622958 and:0.12654586877394336 :0.21987275771661 +perfectly:0.3056544600090478 will:0.032452956961926294 pro-:0.02419987912133196 to:0.020268768261296193 :0.6174239356463979 +have:0.6773369457125418 had:0.22875204004767272 has:0.052801902309449644 1:0.004405914342083201 :0.03670319758825282 +the:0.07093068634241628 of:0.06376476806600866 and:0.0601073271493402 at:0.03651144135758 :0.7686857770846548 +so:0.2578821117608498 as:0.2554022759302344 is:0.21416022897327572 very:0.05648853320244069 :0.21606685013319937 +It:0.2486365699333151 it:0.19533515293871495 there:0.0884067459485644 and:0.05514412147198322 :0.4124774097074224 +go:0.6128837605142609 take:0.1983115354648274 pay:0.05049962492592233 place:0.014742204116341188 :0.12356287497864821 +in:0.1462465137758447 intended:0.12878053609861825 been:0.1081086565263666 only:0.07400824187372977 :0.5428560517254406 +of:0.4246952771459319 that:0.22877084710562162 and:0.17950706030198915 which:0.11741588603680153 :0.04961092940965578 +most:0.024411820377251734 same:0.016813323776804712 the:0.014324721611433878 other:0.009766769169270674 :0.9346833650652391 +evening,:0.5365340192234975 morning,:0.21815634447069968 of:0.16785053103249822 in:0.04578654398014736 night,:0.03167256129315729 +the:0.14642780676403233 a:0.03707746254544266 other:0.02239039010489221 to:0.01461279458303093 :0.779491546002602 +who:0.13992827349148781 certain:0.06687117914154353 the:0.06265922702586518 of:0.05945414958513068 :0.6710871707559727 +and:0.2467594451176342 but:0.055440209164177086 all:0.03909185886528249 of:0.03608605639031733 :0.6226224304625889 +the:0.5313742127669644 and:0.24904532821893133 but:0.057324136015879004 an:0.03917158959559094 :0.12308473340263451 +the:0.03329237870419051 W:0.019260496701020875 a:0.01586293843704161 other:0.011051886895672842 :0.920532299262074 +one:0.3715354122635507 child:0.29671220193206127 farm:0.12383137543516355 boy:0.029073814570460765 :0.17884719579876365 +the:0.15158285105395042 try:0.09129633211352145 be:0.08892451116454819 make:0.07263908506320091 :0.595557220604779 +A:0.44088538824934115 The:0.14310093851354977 No:0.08561876675445124 when:0.07400853095035498 :0.256386375532303 +to:0.24826076613778425 of:0.18506183238870277 and:0.15223092432683208 her:0.13236116750813068 :0.2820853096385502 +he:0.5403194953005092 they:0.17304113218957834 she:0.128939562131573 I:0.0894312321449803 we:0.06826857823335905 +the:0.2388326199574517 fine:0.06799304085731141 a:0.05102955956529398 his:0.04659668168535071 :0.5955480979345921 +happened:0.05693557092548072 confined:0.006645197444095467 far:0.006434060428577105 great:0.005669179814223863 :0.9243159913876227 +daughter:0.04283481654043377 one:0.04023681936327653 and:0.024295226002058475 wife:0.022510564347329023 :0.8701225737469023 +based:0.22937716039112677 and:0.0885456028984395 any:0.051114375992086764 showing:0.03505109432540246 :0.5959117663929444 +his:0.08679160035086277 Its:0.06052040998834433 employed:0.05264270102889852 chains:0.030945871839672182 :0.7690994167922223 +of:0.4479418842067013 to:0.1317878282210937 in:0.0952782999362081 on:0.07207648408944885 :0.2529155035465481 +as:0.8914512928611354 ;:0.0077185022014444995 ns:0.0039384370436963525 and:0.0036636103391999536 :0.0932281575545236 +that:0.6348465807075804 and:0.0015517872517047957 of:0.0008584410771770786 but:0.0005007320211374083 :0.3622424589424003 +member:0.010608115629140245 ward:0.004720446136737422 to:0.0007120485505282011 establish:0.0006319882015553015 :0.9833274014820387 +nearly:0.4522480755915825 to:0.056807736911392806 in:0.032982066657467494 twenty:0.032404415781225056 :0.4255577050583321 +and:0.05736462646413023 as:0.02886915197644722 it:0.023682554893658756 is:0.022447412993769664 :0.8676362536719942 +know:0.008399225910205125 hold:0.0004426411547053814 com-:1.897046438970151e-05 and:1.559931236656094e-05 :0.9911235631583334 +of:0.2626231718117419 in:0.2330837106646084 citizens:0.07817677276154929 for:0.058118422334210745 :0.3679979224278897 +the:0.4063567661765909 to:0.10624165026305263 and:0.0711034455231558 a:0.07010871469245548 :0.3461894233447453 +the:0.4425506308217578 The:0.09252200001325883 of:0.06083579777395864 all:0.04089105297307739 :0.36320051841794726 +the:0.22597787287373763 an:0.21149541778027717 being:0.20245749619879225 this:0.08863890332857934 :0.2714303098186136 +of:0.5933249374578452 and:0.12349025175520371 are:0.08123894659680023 also:0.07239560027073712 :0.1295502639194138 +every:0.31620031229815104 a:0.10755813079802522 the:0.08365679666594963 this:0.04466701138330803 :0.4479177488545661 +to:0.11931513950313467 having:0.08240861422756753 being:0.07087830649255979 of:0.049236522853866274 :0.6781614169228718 +sides:0.3223512469673299 line:0.11777772701536464 ter:0.06071004791072831 Street:0.04182613968787812 :0.457334838418699 +by:0.42821388159000956 at:0.23027715727906722 of:0.1539319982593978 and:0.09271370924700076 :0.09486325362452482 +business:0.2113108441690123 and:0.1307603849348468 in:0.07411514391599712 ment:0.07036609336108222 :0.5134475336190614 +at:0.24691365925508346 that:0.12412026820671425 used:0.09825947882250313 as:0.08785725713680098 :0.44284933657889824 +stand:0.8891321073898142 went:0.010661677695145233 drove:0.00696748745613517 won:0.005814372191924506 :0.08742435526698089 +to:0.6298968793904216 the:0.07821472896903085 a:0.057971385099422526 I:0.036696728537957864 :0.1972202780031671 +and:0.10362105576294454 asking:0.06768413342330619 the:0.04367938566599817 day.:0.017804969142198264 :0.7672104560055529 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +of:0.11428666872663402 and:0.1003007598834072 the:0.06414567220479221 to:0.028780786094350783 :0.6924861130908158 +protect:0.9583544784767011 cut:0.01788226083749614 own:0.0034327077965488418 by:0.002260992596521635 :0.018069560292732417 +and:0.01738866541220017 day:0.014968518800119984 out:0.014219300251386936 of:0.013664475513506897 :0.939759040022786 +to:0.3382400324805116 that:0.09984135578416507 and:0.08447444807220075 will:0.03915174409790093 :0.43829241956522164 +and:0.24821954418630884 to:0.15508301738213923 which:0.03629368470035656 for:0.036041439614114726 :0.5243623141170806 +and:0.14398708818467024 days:0.1234867109052638 soon:0.061606999265883686 back:0.03188503168253519 :0.6390341699616472 +south:0.6929838344075777 one:0.179874287524537 the:0.11752889295261694 ihe:0.006923146506515799 tne:0.0026898386087524494 +them:0.1302765853319819 them,:0.03490204513792369 the:0.02624959075009632 up:0.01564869377117121 :0.792923085008827 +grounds:0.11289666939295782 truth:0.015663463223649796 ground,:0.01361136178758977 word:0.009329686418038068 :0.8484988191777646 +a:0.9983660375462922 kept:0.0005541071043177965 lor:0.0002681780622875205 the:0.0001428334062090298 :0.0006688438808935357 +two:0.01993299682786109 most:0.015899462760262113 latter:0.013151123684305665 last:0.012993156752342163 :0.9380232599752291 +the:0.28166002141463464 The:0.27615984337973193 and:0.12904544437471124 of:0.09962473543604025 :0.21350995539488188 +does:0.021187276322042294 once:0.014212805493268378 is:0.008845877457387926 more:0.005934917392409878 :0.9498191233348914 +the:0.8743939974778988 his:0.04895699314591598 its:0.03594285530064666 many:0.020794058944972056 :0.019912095130566253 +the:0.08859046042224017 and:0.04282432487352324 same:0.039805208758830174 arm:0.01747112746241553 :0.8113088784829908 +of:0.9773499126935139 among:0.015847023091293024 on:0.0027137338349793125 from:0.00071669959223957 :0.0033726307879742806 +the:0.10426231224601328 and:0.10095265591484737 of:0.08436217399604867 to:0.02435799181389206 :0.6860648660291986 +and:0.3883744429445802 an:0.053819878867726045 in:0.019854777550068294 are:0.017500063171178696 :0.5204508374664467 +before:0.69263653792934 good:0.08999962626207192 represent:0.016295894472830117 of:0.006034256279941004 :0.19503368505581695 +of:0.5673205148256802 for:0.08888846141058863 and:0.07329850496099133 to:0.046583844047622815 :0.2239086747551169 +to:0.9957409102175554 who:0.001999879017115851 and:0.00036928790088722695 will:0.0003051985748091828 :0.0015847242896323145 +total:0.09466124204205639 tax:0.08375878022201062 work,:0.06386573807046926 of:0.03321473748378745 :0.7244995021816764 +of:0.33819887867362514 along:0.12234936292686885 on:0.06012272721609454 In:0.05584969512175362 :0.4234793360616579 +the:0.09246419723916839 a:0.04854872130466078 any:0.044216852414826896 other:0.0408513407637779 :0.773918888277566 +a:0.3407044805801 it:0.1796714886130333 the:0.13773271734146747 an:0.07042892479868923 :0.2714623886667099 +other:0.341937630158375 great:0.255279501638741 further:0.03760346447959093 such:0.03343203322529032 :0.33174737049800274 +of:0.4587704518436271 in:0.10201698306618769 and:0.09819722203746573 to:0.0924719235901693 :0.24854341946255015 +three:0.7628707449173204 two:0.08435059743146883 nine:0.06038179790192647 six:0.043409458835568876 :0.04898740091371534 +seen:0.24157999891164472 heard:0.19001815711726225 kept:0.18184054808919045 told:0.04760900735653375 :0.3389522885253688 +gold:0.18950688279382297 for:0.11304670459713244 above:0.09880581480323 at:0.02362601079645254 :0.575014587009362 +for:0.6101562473315411 in:0.17489065644622578 of:0.13206612342825577 In:0.021526116550072156 :0.06136085624390538 +the:0.303139259165794 The:0.19701254542399055 an:0.04817294104664779 or:0.03435777825273488 :0.4173174761108327 +whom:0.2793574036851927 some:0.18352445088560485 the:0.11448970504015947 which:0.11361222733643475 :0.3090162130526083 +who:0.2649891082454203 which:0.032625678429137356 It:0.031513709224746084 and:0.03116691491554304 :0.6397045891851533 +of:0.1525427716920687 with:0.14291755197000539 is:0.13794045488034748 to:0.11258857988488706 :0.45401064157269144 +ing:0.13115025928134635 and:0.07795688547959499 from:0.0748360736505451 down:0.04898880209705884 :0.6670679794914546 +with:0.4327886666364554 of:0.32230511573919945 that:0.18621444031977855 about:0.04684565148578722 in:0.011846125818779337 +is:0.22846900112754517 in:0.1989316294230634 of:0.13108248691803948 and:0.10937686485256803 :0.332140017678784 +of:0.2901367288927467 and:0.1765203435009398 in:0.17502423940758244 for:0.1479722325284865 :0.21034645567024446 +their:0.4328410621624583 the:0.13430489075819524 to:0.04624065226054834 a:0.0349608341898732 :0.351652560628925 +and:0.021766006179527474 ing:0.0120379245027596 ly:0.00828056371020572 America:0.007997054377862092 :0.9499184512296451 +Lot:0.48574936217048914 not:0.17334585303934089 always:0.16132059684511 only:0.06896536154409498 :0.11061882640096496 +as:0.05105413197467359 and:0.041130186734657084 it:0.03745179616859274 them:0.03539080302989802 :0.8349730820921787 +the:0.6814393516820603 tho:0.2749946555126905 this:0.010919165261423457 tbe:0.010865143944525264 :0.021781683599300515 +so:0.11716715893073458 and:0.08855494455938896 however,:0.020384672735402606 ed:0.019665298581621457 :0.7542279251928524 +to:0.4363328710456048 not:0.16809449033104368 in:0.1507365721156992 three:0.04084054643590758 :0.20399552007174482 +of:0.79179718941791 bearing:0.06356776343706612 ot:0.054323341786681266 ing:0.017077407103849227 :0.07323429825449343 +all:0.28173917063335757 one:0.2108447186009032 two:0.12960997423889326 three:0.1008754256180513 :0.2769307109087948 +who:0.7421161966634887 and:0.027073421392755224 should:0.019592775322442225 I:0.01886929827251442 :0.19234830834879946 +the:0.800597210578621 tho:0.0828367961054689 an:0.04158057426096814 tlie:0.013113076109436413 :0.061872342945505504 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +of:0.15064834039647668 and:0.07938973630889438 the:0.04073978075974626 to:0.026485603201557035 :0.7027365393333257 +which:0.7745117763665627 and:0.09359065274436042 that:0.04432967186655745 storm:0.03860269369295783 :0.04896520532956154 +I:0.15868421359811063 i:0.07376856872074687 States:0.058823527128492585 -:0.028030444097009877 :0.6806932464556401 +and:0.08375821182963256 is:0.0357398476186631 latter:0.024843077086827637 are:0.02401707236832578 :0.8316417910965508 +from:0.3866394363365931 in:0.12812124788718143 of:0.008549149651841816 on:0.007270721892596949 :0.4694194442317867 +not:0.7027848039350996 to:0.24857215678532582 said,:0.0066716406968243885 would:0.004242619994446072 :0.03772877858830414 +the:0.558620279188717 a:0.08445699439667877 his:0.036143125317030296 tho:0.033601268080750334 :0.2871783330168236 +and:0.25689622336425166 so:0.09075256472580957 is:0.04138610182619478 however,:0.036261659045870996 :0.5747034510378732 +has:0.8796894114389787 haa:0.032326888759162585 baa:0.028693256461534655 had:0.01779507790582343 :0.0414953654345007 +of:0.1389309225910217 and:0.08952850247264707 the:0.0352340353553821 Miss:0.028723400631448126 :0.7075831389495011 +in:0.3969464874073329 of:0.16378412741848797 on:0.13572086148924828 by:0.12858684364254958 :0.17496168004238133 +in:0.32944854125710143 and:0.18518944937947374 at:0.18511430780021937 of:0.1515184038829228 :0.14872929768028278 +the:0.35838753933215123 be:0.0973789800408925 a:0.07554326732478561 his:0.029787519690875734 :0.43890269361129497 +of:0.008982337525120338 railroad:0.0026302509012032607 the:0.0010729102832850467 that:0.0007445110017384286 :0.9865699902886529 +and:0.18053985597421537 of:0.10944444469012583 to:0.10371197913859707 1:0.08118826732792879 :0.5251154528691329 +who:0.054370074096045724 It:0.05276268670248393 and:0.04616145671702767 it:0.029490622548004324 :0.8172151599364385 +the:0.03830621421214134 any:0.035836747215852276 .:0.024897830263412565 and:0.022068611320506408 :0.8788905969880872 +the:0.439727528015675 to:0.27639194769304737 that:0.11530295978760495 this:0.05654314339978279 :0.11203442110388996 +only:0.6874929182516457 in:0.08028023650809335 of:0.07570494442843191 the:0.024449013695321178 :0.1320728871165079 +the:0.27181278535334114 of:0.17583072972343414 State:0.1022991476093446 and:0.0775459481301306 :0.37251138918374954 +of:0.3132318976922349 with:0.22410333984258468 from:0.18974484011017406 upon:0.14280790902832816 :0.1301120133266782 +of:0.9441186478296869 cf:0.03779312136073891 or:0.009709703047158213 ot:0.008073196749568 ol:0.0003053310128478625 +the:0.6930068849355109 tho:0.06851422842176894 receive:0.04185068956839632 give:0.03677092708192974 :0.1598572699923942 +moving:0.2866580451801069 of:0.01584473728304007 in:0.008075211531927091 to:0.007843133216386054 :0.6815788727885398 +water:0.1706066440659056 Do:0.09784111383572006 and:0.012004553334732018 suitable:0.007806278160861034 :0.7117414106027814 +a:0.3839642791325941 the:0.16668118241448063 their:0.16112115621868822 an:0.10988187901139493 :0.1783515032228421 +of:0.5395732398627978 in:0.015475776131765285 years:0.008134644227833044 from:0.007843713417714754 :0.4289726263598892 +said:0.6451294365180934 latter:0.3428547016414342 No:0.005967518104017714 Washington:0.002001314598297773 :0.004047029138156855 +of:0.05340310600099331 and:0.03188399545285896 at:0.031862594034118244 2:0.02516881757014724 :0.8576814869418823 +and:0.49270846623054315 nnd:0.13300026584667832 He:0.07678791983722043 were:0.07470567417809323 :0.22279767390746485 +New:0.9717209415457722 Now:0.0037533738084241175 the:0.0008276304686853286 N.:0.0002042989433838025 :0.02349375523373468 +name:0.9377300232052239 fight:0.005875786747745076 little:0.0028907580460944956 case:0.0020886957865910664 :0.05141473621434532 +shown:0.22411549763388292 under:0.1977936971784398 in:0.13293914536623958 drawing:0.1299676651438527 :0.315183994677585 +and:0.019618184957498137 he:0.017510560161133167 not:0.01471099969030467 had:0.014667199670022476 :0.9334930555210416 +was:0.05607277719662792 of:0.006470120088359319 and:0.0028073966485459554 to:0.0019976987660826175 :0.9326520073003841 +agents:0.18480429018804062 from:0.1716735031004803 women:0.10012024306666373 and:0.03273956781847003 :0.5106623958263454 +in:0.7466960714056565 of:0.23446781720175608 and:0.00753692032886786 that:0.00372117828042248 :0.007578012783297159 +recorded:0.11484211264643211 the:0.02122868633715261 that:0.017205794191594504 being:0.010938942865025954 :0.8357844639597949 +that:0.23277928077351584 which:0.14522683702125944 and:0.09337885085531786 it:0.0870976458366649 :0.4415173855132419 +was:0.36876401718132695 is:0.2536892278195316 Is:0.08112480522776302 for:0.027517073060404355 :0.2689048767109741 +from:0.1999776492046292 to:0.17600794201184203 for:0.11069764065993459 of:0.09991991081528773 :0.4133968573083065 +t:0.04379423363184159 turn:0.03889781671299283 ent:0.03786129959447733 tion:0.032219011911361554 :0.8472276381493268 +Mining:0.02803764835268455 to:0.0005199258221528716 in:0.0004741483735519531 for:0.0003642004005125525 :0.9706040770510982 +of:0.5301840329264081 and:0.09472378336233345 in:0.09390142455471524 on:0.07078977451948641 :0.21040098463705667 +hope:0.5190752184269549 way:0.13060668305392528 purpose:0.026720910257742675 difficulty:0.022054732556867004 :0.30154245570451044 +He:0.31117689893489364 he:0.20485314317070666 I:0.14565832158785702 and:0.07202470146919177 :0.26628693483735094 +the:0.46528671869438487 The:0.218911036298514 a:0.07346910218614683 tho:0.04745412733305707 :0.1948790154878974 +from:0.5072439142249464 and:0.10474041115854316 live:0.04441886756700008 for:0.015381963420631714 :0.3282148436288786 +of:0.4113096437692952 and:0.07613698445701957 the:0.04547390849878041 to:0.018722913497237915 :0.4483565497776668 +to:0.45600450391003544 of:0.1178408286941591 that:0.07731074984454372 and:0.07429723139937269 :0.274546686151889 +the:0.4085315502727882 first:0.1731492509408618 tho:0.02824998327201776 State:0.021029107687602307 :0.3690401078267301 +a:0.7840975403062238 that:0.1103570621518141 they:0.029436839089371978 who:0.017796786504702043 :0.058311771947888155 +then:0.3219098592322885 he:0.2926579202664534 men:0.16488942455206893 immediately:0.12792349891149704 has:0.09261929703769226 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +put:0.31143610539439587 take:0.28554525576987694 go:0.26510851101141797 be:0.07293927283482647 :0.06497085498948282 +and:0.0656490801126053 or:0.03309177869092527 made:0.02701515721627655 ed:0.01561231497971426 :0.8586316690004786 +the:0.9664677228115346 tho:0.010510102930122184 thc:0.0025121434631584 what:0.00025386273665574903 :0.020256168058529284 +place:0.30257959278609226 wife:0.06087154617136375 ho:0.04698062292729503 and:0.045070641955143535 :0.5444975961601055 +be-:0.45976736383019495 he:0.3495747848291679 be:0.09898189435824963 He:0.049847000585998745 :0.04182895639638873 +is:0.08944753562911176 not:0.04505244146502129 and:0.03842039928251522 was:0.03786697995558659 :0.7892126436677651 +of:0.05331684535166718 and:0.043956625158935954 a:0.03705386931007717 the:0.03627837410362951 :0.8293942860756902 +of:0.2133866909548233 which:0.11334094495981713 and:0.09986130697390366 He:0.08508808167804914 :0.48832297543340675 +man:0.29818943067959325 lady:0.09478427189961325 woman:0.05332584359123679 man,:0.03497656622640524 :0.5187238876031515 +the:0.9436024277086899 tree:0.022632797819000388 tho:0.009656800908181475 tbe:0.005507512854902676 :0.01860046070922569 +at:0.9180622593680193 In:0.02639748567520361 in:0.01922954984003718 of:0.01875610428140849 and:0.017554600835331502 +the:0.3341382200529765 be:0.06955350338446536 a:0.05373176395590423 tho:0.0248827760733914 :0.5176937365332624 +convention:0.14163648182967178 appropriation:0.12649352755241255 home:0.04723777622100972 aid:0.03254947784691551 :0.6520827365499906 +some:0.06273038830811886 any:0.04685610877578505 the:0.04571620450302429 no:0.02222610031284569 :0.8224711981002262 +of:0.4623789814943466 and:0.10314099341950417 the:0.05635214746169095 principles:0.043585989670687025 :0.33454188795377116 +and:0.3122961079739558 of:0.10920067603808091 three:0.09945087187133334 tho:0.08260325374370474 :0.39644909037292525 +so:0.266876041286294 and:0.1232412228656316 1,:0.05816502005603178 period:0.039961379476619895 :0.5117563363154227 +for:0.3000894660865744 on:0.23322526722073053 and:0.18435929830141662 in:0.12242631485089019 :0.1598996535403883 +that:0.2700227455899564 He:0.14580649352885258 he:0.1420606668871307 who:0.12883749904037123 :0.31327259495368903 +the:0.10372009414864165 and:0.07699973615580394 of:0.03385336719139988 In:0.02573209097298896 :0.7596947115311655 +of:0.8389540714597089 was:0.11155857171137748 ot:0.01042518420872742 in:0.007820310328908765 :0.03124186229127756 +it:0.7388689008100884 the:0.08060729840808294 a:0.06295122887625451 to:0.022807252652409356 :0.09476531925316478 +the:0.8996182312586088 tho:0.07126916050225933 tbe:0.004508391207680326 tne:0.003179036295684809 :0.021425180735766717 +terms:0.9952402148500589 facts:0.0001958492000472878 payment:9.24079602633635e-05 principles:5.7583230510934885e-05 :0.0044139447591193814 +true:0.09394327832675953 sufficient:0.057662446953053836 rose:0.041025242284148784 driven:0.028913473884027638 :0.7784555585520103 +the:0.2916445789321778 be:0.06029335891447167 a:0.043620305788878745 tho:0.021085369368658218 :0.5833563869958136 +however,:0.19642934336610535 is:0.09258144934412245 and:0.06847646926103469 us:0.06219188805013472 :0.5803208499786028 +of:0.026968919376760287 and:0.012404135444648547 the:0.010113693061597841 .:0.009857973734685721 :0.9406552783823077 +is:0.3309668270647992 a:0.22684221003063637 in:0.1058654398704943 was:0.05656193560539894 :0.2797635874286712 +He:0.2647990117277592 and:0.2199751477495116 he:0.15146728057308334 she:0.10983676275960161 :0.2539217971900442 +and:0.09073559339487604 passed:0.030496228150026693 running:0.01891578192742233 passing:0.018053826671674496 :0.8417985698560004 +Smith:0.00959167973146659 Young:0.009049852932964415 Lee:0.007997318541403049 Jones:0.007371779188420287 :0.9659893696057457 +ap-:0.6457853663730925 a:0.007122867619057991 been:0.004293407217550351 already:0.0010496889001050116 :0.3417486698901943 +of:0.13511695569304116 and:0.11220567675457564 the:0.05108168831797454 The:0.04552286871577428 :0.6560728105186343 +the:0.2537701676421311 to:0.2144926482135038 and:0.10514096430900542 a:0.04424068878650799 :0.38235553104885167 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +J.:0.1791015024949759 William:0.164725543101053 W.:0.1189311848049516 John:0.08033365535482236 :0.45690811424419725 +.:0.2097287500598511 H:0.17632962199121405 A:0.06511008100508692 W:0.05524081758694531 :0.4935907293569026 +with:0.2939434984154628 and:0.18662879260231371 that:0.12761026727421507 to:0.10176089885493511 :0.2900565428530733 +the:0.08225369541754024 and:0.0802810202244711 of:0.0782285020368913 to:0.0336360397884568 :0.7256007425326406 +he:0.3029018407877492 I:0.29993091107028164 they:0.17225710009642142 be:0.10832996401551306 :0.11658018403003464 +own:0.08387375573323173 horse:0.03748224376090687 term:0.03312939560053756 ship:0.03015309767609478 :0.815361507229229 +as:0.8463948254176578 was:0.08068798342426613 is:0.02496466527957411 and:0.015279964359912218 :0.03267256151858976 +any:0.5597191441224941 they:0.13210701558358534 you:0.06743256094700287 we:0.03101261620871326 :0.20972866313820446 +time:0.2715420872813925 moment:0.23857080294298236 in:0.06949045786555563 point:0.030243623318232823 :0.3901530285918368 +he:0.7393244449488422 she:0.04983752332800807 lie:0.02990131899758839 they:0.02443941359821525 :0.15649729912734606 +operation:0.05053642986557447 officer:0.02496886459569832 that:0.024722490850257055 advance:0.02055284555249192 :0.8792193691359782 +every:0.9546491886050409 all:0.01332820425388038 a:0.011838182506838886 the:0.011349427568643738 and:0.008834997065596237 +the:0.9670808542870416 thu:0.014974365429652827 tho:0.004415976315469673 my:0.0034249986668495316 :0.010103805300986477 +of:0.1598146011654705 and:0.10881672582437533 was:0.08735311479990254 are:0.06117785097600231 :0.5828377072342493 +of:0.133210203597162 and:0.12099260869205765 the:0.10528486392690012 or:0.0614740834349211 :0.579038240348959 +market:0.9052589695932328 having:0.0006031269315473812 was:0.00032093722408228407 and:0.0002890690099097601 :0.09352789724122762 +for:0.16851294262841973 o'clock:0.1430868078275042 on:0.07135003718867863 of:0.05566089518397684 :0.5613893171714206 +in:0.8772733551035391 In:0.05249359027216046 iu:0.013396756099468962 ia:0.005555625444101835 :0.0512806730807297 +to:0.6124007743282096 and:0.14047629409811271 also:0.11879295958993084 should:0.05227101787665932 :0.07605895410708739 +said:0.9815092817664116 such:0.0012478454466115553 the:0.000708730921617432 this:7.176977223458853e-05 :0.016462372093124726 +of:0.29330348210275653 and:0.11331771206303598 to:0.11281302021860802 in:0.10818857298000227 :0.37237721263559714 +and:0.3031121552963422 side:0.09338567065554101 that:0.06064367756558515 for:0.03735828599197811 :0.5055002104905535 +N:0.027809784782019602 a:0.015133696365772992 State:0.01497709447734098 said:0.01427986988352608 :0.9277995544913403 +of:0.20897209905120886 de:0.04934338597650981 and:0.04069199756492909 .:0.032377082757733884 :0.6686154346496184 +forces:0.1193516983578408 tion:0.06755586379562065 part:0.04279013547558026 portion:0.04033790893986766 :0.7299643934310904 +the:0.7574899789188669 this:0.13182636419560914 tho:0.0303279279680012 said:0.012383939395892357 :0.06797178952163029 +few:0.9813666876251437 short:0.003624190858450057 year:0.0027332473303245046 happy:0.002721328166541535 :0.009554546019540098 +and:0.050291342177625147 made:0.045419199779631096 ed:0.03189020077566426 caused:0.018816576655219564 :0.8535826806118599 +to:0.686076506329828 by:0.20465575370848257 tn:0.021733004463698535 in:0.012170623790579514 :0.07536411170741145 +their:0.3401608852888159 the:0.22406740577412446 them:0.09896593706570171 and:0.03387249022930098 :0.30293328164205713 +and:0.10916694204807738 that:0.07156433759924954 it:0.06981720557223675 them:0.06591518409558589 :0.6835363306848504 +water:0.2906301155188028 have:0.2001581587146013 had:0.1873591058184625 has:0.16559360795031347 :0.15625901199782002 +does:0.2265033294474804 and:0.11957530050362952 letter:0.11769518152212652 not:0.07651608295046683 :0.4597101055762967 +him,:0.24259201698469773 Now:0.09741014596370305 but:0.08811419136153538 and:0.07885505335391257 :0.4930285923361512 +and:0.06908555321387498 by:0.03703172416434538 to:0.028262722192749144 with:0.022671345212767046 :0.8429486552162633 +He:0.3796837338788626 which:0.10565498253845398 he:0.10162911235021758 lie:0.08724363291784086 :0.3257885383146249 +the:0.6755925717560438 a:0.14493449049371832 in:0.07261179603291046 to:0.03748936373184131 :0.06937177798548608 +of:0.12169077140336301 to:0.05677757900632451 in:0.052775325841021264 by:0.05182109463914866 :0.7169352291101424 +same:0.031340523515817835 public:0.02103742500716902 whole:0.019283400431055753 entire:0.013842355896572522 :0.9144962951493849 +tions:0.06486773139089154 tion:0.03674431706014225 trip:0.02866410836545745 ing:0.0273219131558146 :0.8424019300276943 +and:0.5320252491039434 so:0.1630784815994648 besides:0.06635837172285104 the:0.03925064692809413 :0.19928725064564648 +quiet:0.009095906167952778 dull:0.00809054489088035 and:0.007627038671376383 John:0.005045778867331849 :0.9701407314024586 +to:0.165169381038306 in:0.14838363842487873 of:0.1373145151618399 and:0.12023773757797683 :0.42889472779699855 +the:0.6248938815223251 larger:0.153184511873504 a:0.06889775022353896 our:0.03263943268020122 :0.12038442370043081 +he:0.43187252699327044 they:0.2797843436017177 lie:0.08827999098003901 she:0.0752819692102385 :0.12478116921473427 +perfect:0.28547018956494735 active:0.04532312160158128 prominent:0.01727386557359582 famous:0.016286213054349553 :0.6356466102055262 +the:0.38058821658267056 of:0.22753387903497924 The:0.049074263352770424 States:0.0347852531105592 :0.3080183879190205 +as:0.9988946665742597 of:0.00034857148038993914 with:0.00016871544733851348 in:5.417357193694432e-05 :0.0005338729260748969 +danger:0.0021857136341921876 body.:0.0006140111160558489 deeds:0.0006067114187890827 crops:0.0005409058312704352 :0.9960526579996926 +school:0.06456280646279565 present:0.06452917955010062 time:0.04115530284190359 government:0.040973160410160914 :0.7887795507350392 +the:0.8163265293960068 in:0.06799161164013076 tho:0.04637044693692661 with:0.026632120365144334 :0.04267929166179153 +the:0.16004872370795856 to:0.09443985294072767 I:0.07308486806227682 that:0.07096746860752766 :0.6014590866815093 +the:0.20534894667752335 call:0.09572935217572615 bo:0.07627238091085904 be:0.06461319078854008 :0.5580361294473515 +it:0.8224173619414955 It:0.10876399402383692 one:0.02319452117901472 Christ:0.022363193176649202 :0.023260929679003752 +own:0.5300485177632765 heart:0.006879729382873178 power:0.006536420224987696 family:0.005426600652647711 :0.45110873197621487 +and:0.09467020770670123 con-:0.07404358745459189 the:0.07293418153840123 to:0.04392148295225681 :0.7144305403480488 +night.:0.03844793143554314 year.:0.03069916754332347 House,:0.0187685958992663 week.:0.013929024526529707 :0.8981552805953374 +miles:0.5432098410582216 feet:0.23812999367938803 inches:0.18035010996083356 mile:0.0033207544971965387 :0.03498930080436028 +I:0.5141475397569456 now,:0.30468046354567324 1:0.14502343862479194 and:0.00619699773901129 :0.029951560333577876 +city:0.10761990200258256 County:0.05814987194579557 City:0.0566996657837249 county:0.049867036765823054 :0.7276635235020738 +milk:0.035647147581306673 energy:0.015115385966709922 powerful:0.014306994088094249 greater:0.012831461314254911 :0.9220990110496341 +largely:0.007218121636969651 .:0.004831642048452012 entirely:0.004746421939012053 wholly:0.004101778236703859 :0.9791020361388624 +R:0.7536807560383417 I:0.17859953542017762 M:0.006494085968740122 A:0.00338043385528062 :0.057845188717459736 +company:0.047753705724909945 Chinese:0.01404116315416919 work:0.012028457938956464 return:0.006683022128949127 :0.9194936510530152 +rock:0.3679210563363028 stone:0.09935974653617684 extent:0.06027733456413296 hole:0.04508483998411049 :0.42735702257927677 +and:0.25798205557438364 No.:0.16559518697268805 of:0.10297333751896272 was:0.10006602568934903 :0.3733833942446167 +said:0.3172778038483048 Ohio:0.3043505146830234 the:0.12238016534396252 aid:0.08839128448951201 :0.16760023163519738 +and:0.09164255413986339 the:0.07860522344797351 party:0.0693933824867249 a:0.06431693781107892 :0.6960419021143595 +pressed:0.0014304203222338218 press:0.0010944014649179492 port:0.0007474576798065908 years:0.0006011732698894507 :0.9961265472631521 +the:0.43872712766807864 he:0.05833619550992843 a:0.05468100788170623 Mr.:0.043378663329516357 :0.40487700561077045 +lower:0.061094467042510814 trade:0.04274444385126568 own:0.02660353611349301 head:0.026017255518001412 :0.8435402974747291 +the:0.839372275210296 leading:0.002958605231941013 tho:0.002392641508297254 several:0.001499349553006178 :0.15377712849645955 +know:0.22743633380264316 tell:0.07057596138874724 do:0.07033497173708479 take:0.06875402128405655 :0.5628987117874682 +and:0.09289094130394711 of:0.07972424900925228 the:0.06672537847722361 to:0.03271779909049193 :0.7279416321190851 +,:0.4688241767427001 before,:0.0216275112840013 it,:0.010710240465543357 ;:0.009794195689408843 :0.48904387581834635 +test:0.3676398824446078 be:0.1830692210453724 bo:0.11845464289158429 of:0.02844682514105166 :0.3023894284773839 +though:0.0948711006539788 would:0.06346828840350223 If:0.02481419593152158 shall:0.020709604121305014 :0.7961368108896925 +the:0.4332152635808059 a:0.12091266717900132 his:0.04619813208270435 tho:0.04576035265190798 :0.35391358450558047 +feet:0.11576883673193583 chains:0.036912283591317846 and:0.023904592593537086 it:0.015442150069972477 :0.8079721370132368 +75:0.04705010864481731 1:0.031152229044785693 many:0.025061063001513246 100:0.024559143844291875 :0.8721774554645919 +citizens:0.07602512079858202 through:0.0745059431724403 hundreds:0.06241969606188482 and:0.05262778130732581 :0.7344214586597669 +in:0.23789538669311455 had:0.18463887097392287 and:0.17605900905970628 with:0.1141539929790462 :0.28725274029421 +that:0.318073370344668 if:0.16359485277814179 as:0.13906548911420322 and:0.1371674706456083 :0.24209881711737882 +on:0.25327985448127055 of:0.12472040148669106 was:0.10618866637386984 ex-:0.058606794635154905 :0.4572042830230137 +and:0.1738525183874977 but:0.10956648459554102 1:0.034215110668475254 yet:0.027338302973380663 :0.6550275833751052 +the:0.5315872787921403 The:0.07447163411983622 a:0.073912564468514 and:0.06543826171956638 :0.254590260899943 +the:0.7640397515670022 said:0.11474714785388336 tho:0.0656776761900117 First:0.020992723603503485 :0.03454270078559923 +of:0.4098464064354966 in:0.15504723439537327 to:0.14921225960323378 and:0.08844743881462917 :0.19744666075126704 +quite:0.3988371263544405 that,:0.08204956275308455 than:0.0765158414949829 in:0.06899177509954678 :0.3736056942979453 +in:0.22893884476261753 and:0.22485500486789864 of:0.18112934949216977 to:0.10538343738429198 :0.2596933634930221 +a:0.9368866200157031 the:0.026885510657821212 much:0.01684012021561123 in:0.010968948055841098 :0.008418801055023338 +can:0.26442468644020845 cannot:0.22776408637446158 don't:0.21240747621936792 do:0.18411144418489192 :0.11129230678107016 +I:0.4677346699223027 my:0.12713390767667473 1:0.04486614596703719 the:0.0316436954595368 :0.32862158097444844 +of:0.44913604309991234 in:0.21741297635886953 to:0.08290819618247217 and:0.07681747679929862 :0.17372530755944748 +sight:0.6804011188963951 hold:0.13078262721476078 one:0.0073535747596794885 up:0.0027935754548702994 :0.17866910367429426 +two:0.7697259693881704 several:0.08922513806972772 large:0.008048991352275079 twenty:0.003944914653912583 :0.12905498653591418 +stand:0.02002648913223713 made:0.013424600682024307 paid:0.010813188602962582 placed:0.009356589624189478 :0.9463791319585865 +She:0.2976720754601871 she:0.2208339406423089 who:0.21594689032518946 lie:0.145782948278375 :0.11976414529393957 +the:0.4158449942028443 The:0.36102642369264215 a:0.03527072268120539 and:0.029191679030109528 :0.15866618039319857 +taking:0.7812940278843175 proper:0.0654810996631259 not:0.04898313049665641 take:0.025895620367985876 :0.0783461215879144 +the:0.8292257143536288 tho:0.02773620722340185 those:0.017333137725579394 tbe:0.015403291509635573 :0.11030164918775441 +dull:0.007352466861975118 very:0.0044379628262858776 good:0.003908862513844232 narrow:0.0032114169277003466 :0.9810892908701945 +land:0.18921454777746993 water:0.12590098572190597 water,:0.11641451280735135 n:0.11356662727920232 :0.45490332641407033 +had:0.6301077348965048 was:0.05378809752223247 bad:0.013940725445752528 and:0.007904831352790184 :0.2942586107827199 +blood:0.2876418690328551 friend:0.010421802912811248 corn:0.009569096530680133 father:0.008530036524862276 :0.6838371949987913 +the:0.1852211484533674 them,:0.11376814068374608 this:0.11287060067294262 all:0.08732734775153106 :0.500812762438413 +turn:0.10762036828647341 the:0.035816203851146124 ;:0.01397015885236927 his:0.010124711859867602 :0.8324685571501437 +the:0.2734859370961766 his:0.2424476632410543 a:0.20455763297312127 her,:0.08153609647967894 :0.197972670209969 +friends:0.3855899317220557 people:0.05377224056032135 troops:0.02072738834942373 army:0.01817355565826988 :0.5217368837099293 +large:0.20440496372882055 in:0.10913483051198543 sufficient:0.08504927885791971 great:0.08386702695926437 :0.5175438999420099 +and:0.0006320371468383234 ground.:0.0006230980797752655 to:0.0005076674259875548 in:0.0005019747047388659 :0.99773522264266 +the:0.3574840783652889 an:0.24396862523426566 this:0.17129869173669326 that:0.14568874869418705 such:0.08155985596956508 +1.:0.23727336489427117 4.:0.004151361377984604 1,:0.0037102643033154812 4,:0.0035035890650361727 :0.7513614203593927 +left:0.40639456224306564 the:0.32319735790785714 brought:0.15090416636714507 sent:0.06941356587131792 a:0.05009034761061433 +de-:0.1437243661273388 or:0.07655362628250284 the:0.057645996111623334 than:0.04020533049213494 :0.6818706809864002 +of:0.6999167047030322 and:0.06528699642472831 to:0.04879409041018662 in:0.037773922522482115 :0.14822828593957074 +come:0.7392900711140333 was:0.09825332787950876 fell:0.03302686024832953 if:0.024050558435387795 :0.10537918232274084 +public:0.4192499659675523 and:0.1603732709415983 to:0.1264943365948571 of:0.08756939964072571 :0.20631302685526653 +o:0.41160082547542765 of:0.17008939283326552 e:0.11240633628674017 D:0.09097509546163898 :0.2149283499429276 +to:0.3662743117742113 of:0.17197333986892066 in:0.14132329838701785 by:0.11920352854238621 :0.20122552142746405 +kinds:0.5005844363988262 points:0.08354371202698685 acts:0.057955814776296494 articles:0.03619032966561072 :0.32172570713227966 +place:0.19033461380774142 measure:0.1839973886144347 bill:0.1179277701543621 position:0.05399967914506056 :0.4537405482784011 +the:0.7512177409991434 tbe:0.03572636728920615 their:0.026394071504111168 tho:0.02422947191256201 :0.16243234829497738 +now:0.03901284721664229 this,:0.036732847742778754 Now:0.016753992852753825 the:0.014529629203876149 :0.8929706829839489 +or:0.00945908192214838 be:0.0077277148949527474 do:0.007602813065756782 show:0.007517367246904704 :0.9676930228702372 +of:0.6915842519693434 where:0.22877907352239382 and:0.026119606171358348 we:0.024124895701742106 :0.02939217263516227 +be:0.7002323526054685 receive:0.10636654679934833 bo:0.07156631786819297 re-:0.046826279825384065 :0.07500850290160614 +that:0.43882339104590573 the:0.1554910684600156 to:0.13129873966564537 he:0.12893316689817302 :0.1454536339302602 +the:0.937324561288535 this:0.022815448498093888 tho:0.008724976652104243 tbe:0.005163408741559459 :0.025971604819707218 +to:0.5768674989230478 its:0.13297260388171145 this:0.10284416474540022 his:0.07391369236044032 :0.11340204008940027 +of:0.46635676471968934 when:0.38927978866262647 ot:0.084673072860063 before:0.05287685268064785 ol:0.006813521076973255 +the:0.4289759632181772 America:0.08898576348962783 our:0.0877807302334033 his:0.06370903995080957 :0.3305485031079821 +H:0.5495598952431875 to:0.05184272018371335 Block:0.027057777220288157 the:0.015442427052039933 :0.35609718030077103 +been:0.043976352459167964 fire:0.04031005778443227 following:0.0303289414865174 living:0.027634127997572727 :0.8577505202723097 +not:0.6905868904101162 to:0.15781111469594747 will:0.05349228294083552 which:0.03887978231359053 :0.05922992963951021 +United:0.49309996618721214 American:0.36070928471848995 Southern:0.021698169449942184 Northern:0.009134849504802244 :0.11535773013955362 +cannot:0.32216525677777025 could:0.3169145348929429 will:0.171201945422414 can't:0.09615925972503088 to:0.09355900318184188 +the:0.520104712745979 and:0.1515452452523447 The:0.07503049358318949 ful:0.07100917102118728 :0.18231037739729944 +trouble:0.0884533328224696 as:0.07147707490313651 suffering:0.05775930224103581 business:0.0575035384250882 :0.7248067516082701 +of:0.16163184137878941 and:0.12161899436720304 in:0.09833225331374348 to:0.09604941153334577 :0.5223674994069183 +all:0.2702499185645247 in:0.13823197810763677 of:0.10857239477967943 that:0.03649095473460744 :0.4464547538135518 +far:0.35945009735633154 not:0.08458486388877082 really:0.08402280263118835 now:0.059247230229233276 :0.412695005894476 +street.:0.013559689803707638 st:0.0006091738162173669 street:0.0006012014907036882 and:0.0004256394914165025 :0.9848042953979549 +going:0.004255519850831712 again.:0.003380764496499189 powerful:0.002845993230789164 death.:0.002439684334293856 :0.9870780380875862 +of:0.14996610825834242 .:0.1284449393207553 over:0.09029328951470411 him:0.06746919223508142 :0.5638264706711169 +the:0.9495318642023285 tho:0.020530812323801682 tbe:0.010984571621416856 ihe:0.005348528727099132 :0.013604223125353724 +the:0.44985598055808484 a:0.06429126623041788 his:0.033662347885788806 tho:0.031079963473633992 :0.42111044185207447 +was:0.9543947604452071 to:0.022184828302725584 took:0.012194513896887443 not:0.004699669943217403 :0.0065262274119625594 +general:0.06239759757386705 Democratic:0.011661383604440037 Federal:0.009258542265051345 Republican:0.006307474514579654 :0.9103750020420618 +was:0.19631505996461152 in:0.18472660139052255 to:0.08178462090057503 for:0.026989570510811543 :0.5101841472334795 +they:0.6608141027488496 we:0.08733940859906753 him:0.07425398123379504 you:0.04580310922580303 :0.13178939819248486 +N:0.11846460895043927 .:0.021375361036838385 THE:0.010912148957592467 of:0.004772217175207724 :0.8444756638799222 +and:0.18708503524436343 with:0.18124546571131755 to:0.17150380951791014 as:0.10933507258537714 :0.35083061694103185 +the:0.389944057396321 such:0.09943125337183874 Indian:0.07597103527175912 to:0.06970548295509794 :0.36494817100498317 +to:0.43070424528167117 into:0.21148666916451442 of:0.21122459727254272 have:0.11686638019232164 :0.029718108088949965 +north:0.04915610355999161 west:0.041284871748504114 south:0.021202602941945613 east:0.015062380971565885 :0.8732940407779928 +less:0.9972740656594038 more:0.00017792064467363352 moro:5.451570263075436e-05 other:2.1414806889238783e-05 :0.002472083186402569 +a:0.653253995050776 the:0.3033932587827961 their:0.015958331499464625 her:0.00683359475127817 :0.020560819915685254 +of:0.5742234666825581 and:0.1494015092743574 until:0.07848312703990884 to:0.05039613802678397 :0.14749575897639167 +under:0.9999997725102472 the:7.391225984519139e-08 there:5.59248952697184e-08 between:3.8253802458046046e-08 :5.93987952593354e-08 +the:0.2982264518388688 no:0.1917090548662107 a:0.15124604933960678 to:0.11779192267131969 :0.24102652128399413 +reached:0.11392189463453442 to:0.11144030152313243 of:0.10572888040138055 in:0.10076933744824995 :0.5681395859927025 +meet:0.9260403147734613 see:0.03421859306404322 which:0.009966379472584089 bid:0.007256237703063822 :0.02251847498684757 +the:0.3765653391453419 his:0.07870990022623031 a:0.04646636769399188 their:0.03370723273704464 :0.4645511601973911 +two:0.8246340682037926 Southern:0.0544260141457918 of:0.021027617974181467 world,:0.007948065369238578 :0.09196423430699555 +and:0.09798357292003582 of:0.07019225340710722 the:0.04795153771773512 to:0.02629408843321527 :0.7575785475219067 +be:0.15023810726101042 make:0.08112114040797883 form:0.05096816007028701 have:0.04784921252804796 :0.6698233797326757 +of:0.8757885769654439 when:0.03999819992864518 from:0.016756469916496108 gave:0.004393215327397462 :0.06306353786201734 +to:0.3756473287023692 and:0.17019311925429742 as:0.15482829632006645 than:0.10776396012530992 :0.19156729559795696 +house,:0.46475102072388774 road:0.15221888777802453 east:0.03552384423495801 bodies:0.014975014941877604 :0.3325312323212522 +that:0.09555192160433457 been:0.09116363083228617 not:0.08919116855443517 I:0.07858533835736305 :0.645507940651581 +sure:0.13494570823328025 always:0.06500040313838854 based:0.06346799181053578 put:0.06222711563518721 :0.6743587811826084 +the:0.11924915128740546 and:0.10285507766491624 of:0.07302344395668091 to:0.05238878478581181 :0.6524835423051857 +the:0.5133783936786352 his:0.06354079369708297 their:0.05231852970913252 a:0.046680115769384516 :0.3240821671457648 +put:0.4605552624587837 made:0.10857800713120554 forced:0.10327204309566512 thrown:0.08391492151657115 :0.24367976579777448 +It:0.42241320866302107 it:0.14651404296890702 part:0.1088094280695147 which:0.04450003198657765 :0.2777632883119796 +who:0.4103906129493305 friends:0.1795900402779642 There:0.07252770729326094 members:0.05809266957071482 :0.2793989699087296 +of:0.36974136164722243 to:0.3421871872365858 for:0.15211263912310918 from:0.03799302803720688 :0.09796578395587563 +thereon:0.2739256650135519 upon:0.18201834906894432 in:0.15742058524132851 lands:0.11616326663023975 :0.2704721340459355 +it:0.21499657386219023 I:0.12282072575039828 they:0.113244692559733 he:0.1000402456109767 :0.44889776221670175 +and:0.1589753999450267 1:0.06334936058220388 that:0.06183087710270566 but:0.06145767860535319 :0.6543866837647104 +and:0.045396648171367016 place.:0.015892432488549626 but:0.012743369819868107 body.:0.010277261996354677 :0.9156902875238605 +it:0.23256995413525827 the:0.2297795551336147 a:0.22058570721864276 no:0.07003651707179805 :0.2470282664406862 +head:0.018736100944269304 month:0.016636550118467316 an-:0.0157264570702521 cent:0.015321708507419384 :0.9335791833595921 +young:0.16465404153252863 old:0.08031056978273388 the:0.05205822626812672 a:0.04940384423175296 :0.6535733181848576 +was:0.1996621650183448 is:0.09999852429197618 on:0.0914076848747751 after:0.0830252236731924 :0.5259064021417115 +of:0.5215337335025306 or:0.17916035631513758 in:0.0889773529276731 for:0.05520481127382764 :0.15512374598083106 +to:0.5451721447583865 and:0.22246409871643644 will:0.05108347260329713 could:0.04077724110591877 :0.14050304281596093 +and:0.00914104105321686 street:0.008226428355236376 in:0.008196062971375156 hundred:0.005848334674238531 :0.9685881329459332 +the:0.6365223539043249 tho:0.10658789861029007 be:0.09938164860158355 tbe:0.04534553508181547 :0.11216256380198597 +of:0.904596118980098 to:0.032412805802493644 from:0.021519186550356142 at:0.019735346845459717 :0.02173654182159258 +of:0.1438208225765452 and:0.0754868211938945 as:0.022827033147865067 cash:0.017845096152015467 :0.7400202269296797 +you:0.06914538470271747 go:0.06360224118217182 gone:0.05789208831041049 extending:0.05643365926693209 :0.7529266265377682 +the:0.5751854381231939 tho:0.2295452775995663 his:0.07513403442408575 your:0.06804874948704615 :0.052086500366107825 +the:0.6446898344856512 these:0.0730819599834691 tho:0.04636115157872752 he:0.018900480611039123 :0.21696657334111294 +idea:0.3266755930720451 necessity:0.2573868087894668 use:0.06381810020514941 right:0.0554912923268447 :0.296628205606494 +which:0.13271444989561557 a:0.12109884296095831 all:0.08487575423487624 in:0.0672267100293167 :0.5940842428792333 +elected:0.526583309761909 not:0.20252885107749882 also:0.13207196517134398 uot:0.05753781750692407 :0.08127805648232411 +a:0.19815052461468627 the:0.18350745744862865 in:0.17897937238381303 and:0.09136557228399676 :0.3479970732688754 +and:0.23983156583551543 the:0.1151205171907088 Mr.:0.08532252607892374 The:0.060118365120692706 :0.4996070257741594 +?:0.008545812860483828 well.:0.0024010669469876683 In:0.0012255232402242659 much:0.0004093969849749021 :0.9874181999673292 +by:0.544634289366653 in:0.24998529322107857 of:0.08726837743756345 for:0.05978757704205993 with:0.058324462932644976 +part:0.10648405450805 means:0.0847322166012504 matter:0.08160154778730536 man:0.05030004881824791 :0.6768821322851464 +the:0.055626969072749985 a:0.033861562724264445 other:0.026472096994201815 to:0.015025910667508614 :0.8690134605412752 +that:0.8483427184458625 that,:0.04927754334379984 if:0.015353252968298335 unless:0.007081110710908368 :0.07994537453113089 +not:0.22302345897641046 that:0.19801608690553751 it:0.18410025867923602 in:0.08719298436957326 :0.3076672110692426 +answer:0.11125106122294232 as:0.038020625228983786 attention:0.034809476974995326 and:0.032713202015966454 :0.7832056345571121 +executed:0.014052148089662897 note:0.011955526550942591 should:0.011450676937266698 mortgage:0.011091553756944065 :0.9514500946651836 +in:0.732469300992508 and:0.10345139648483791 of:0.09029871729612396 may:0.034373704933905826 :0.03940688029262422 +It:0.3551222149491776 That:0.08323296782781472 He:0.07643047122824975 as:0.07542799424526589 :0.409786351749492 +for:0.2414601661484222 were:0.13538343957683585 with:0.08693090279602643 in:0.06538778657223615 :0.47083770490647925 +he:0.8353439395110975 I:0.09026544172551963 lie:0.03855427240582319 she:0.020925855934874348 be:0.014910490422685324 +and:0.54993483264135 that:0.14655951348042923 as:0.02976563952221491 to:0.0295841079949591 :0.24415590636104667 +page:0.291428470039274 lots:0.08278875969921706 at:0.055137510408313994 of:0.03878192785991386 :0.5318633319932812 +fact:0.02277667932769217 following:0.019200271685626526 result:0.018030587410689993 answer:0.017190108852781782 :0.9228023527232094 +and:0.19614063871262916 but:0.1276658977424714 today:0.12171485915129827 As:0.08683420504571863 :0.4676443993478826 +the:0.1985953672292873 and:0.13713432804607337 to:0.12251467793987735 a:0.05416566354848366 :0.4875899632362783 +from:0.9444105705272252 by:0.03118576415863201 of:0.0040245983499564665 and:0.000706126058506416 :0.01967294090567985 +will:0.4669404652738317 would:0.1854513306234675 should:0.1288140152195443 can:0.10338829779094855 :0.11540589109220781 +conditions:0.9994785828815707 circumstances:0.00025500901271925734 terms:0.00014309623314053916 reports:6.230795662761564e-06 :0.00011708107690683813 +into:0.3747119794920438 on:0.20275462227723848 to:0.17805875050545691 upon:0.12231339587968179 Into:0.12216125184557887 +and:0.11047091566789702 of:0.07757456907880966 the:0.06524100795567406 or:0.03294268901450369 :0.7137708182831155 +the:0.3297673377440627 a:0.058742374449773066 be:0.054324044398431894 tho:0.022253149884120135 :0.5349130935236123 +turned:0.09759731177737845 due:0.07991891404116064 said:0.05587429278696438 going:0.03588264648349649 :0.730726834911 +the:0.886147895576586 our:0.043795392967610806 tbo:0.01901008430723464 tbe:0.016086864333484725 :0.034959762815083804 +for:0.5579497656524788 followed:0.31971709140273846 and:0.02479276270022491 with:0.0067733118024816494 :0.09076706844207609 +J:0.209082942791756 on:0.18063022583633376 and:0.09016768886648491 the:0.04344077136524472 :0.4766783711401805 +and:0.07998194214970747 pain:0.042848815863782176 that:0.02655078900757093 it:0.022145637142427028 :0.8284728158365127 +But:0.054742424133685505 If:0.030750516150794743 Then:0.02196092926590189 So:0.007602918412688169 :0.8849432120369297 +the:0.8845427805037417 The:0.021548895463594717 tho:0.014408105298056556 tbe:0.008798282648694273 :0.07070193608591271 +of:0.6407871593043724 and:0.10708117636331863 to:0.04248749918529673 that:0.03741460087565401 :0.17222956427135827 +the:0.8283398108844681 my:0.1286295890655763 that:0.01853489046583994 his:0.01246176185483747 a:0.012033947729278146 +White:0.033290641113730486 Brown:0.02851227371062948 Smith:0.013304320149991474 Brown,:0.012404722616261495 :0.912488042409387 +the:0.2136329903748562 they:0.15767416021024727 is:0.15364185502732658 it:0.1471658872327659 :0.327885107154804 +feet:0.8702734291509162 foot:0.03883928025648877 feet;:0.00727231998323693 feet,:0.003330614620540301 :0.08028435598881772 +ent:0.2237312628397172 to:0.09703236303943331 He:0.08459822088645799 who:0.0723273247857196 :0.5223108284486718 +and:0.11659810713989611 the:0.09180652455581148 it:0.06992132591447328 Dr.:0.05289237465544335 :0.6687816677343758 +young:0.10403525210886559 Spanish:0.0408071402245277 American:0.03676233959917294 great:0.020625762874641025 :0.7977695051927927 +the:0.3773035268256954 your:0.21102864768333846 their:0.15839501194851813 no:0.1343057291543294 :0.11896708438811864 +and:0.49310339333468817 or:0.2396164306086597 including:0.1590809895160022 ana:0.05469645118631758 with:0.05350273535433245 +a:0.18423009494915185 the:0.15374765611254654 still:0.08386907720966166 an:0.07223606547119578 :0.505917106257444 +and:0.04356633858392112 but:0.015212613082768108 .:0.014220436181494668 etc.:0.011794498214024991 :0.9152061139377912 +expressed:0.11042588773070569 United:0.06541486264738733 I:0.06414556315965415 people:0.027083111555208268 :0.7329305749070448 +as:0.28519264313004705 for:0.2544842715684038 like:0.11050196823082734 out:0.09476192340916674 :0.25505919366155505 +character:0.2574124630523612 mind:0.08062028120224782 W:0.01078391681025287 wife:0.007993801059870671 :0.6431895378752673 +United:0.05136725038569321 late:0.05014037818476063 great:0.037864377266559154 strange:0.03312599351089258 :0.8275020006520946 +tain:0.032741506822743904 tract:0.0002871516093754792 end:0.00017941980118636624 and:4.805261587689058e-05 :0.9667438691508173 +old:0.08123537207250153 excellent:0.06524261278581649 easy:0.05429797687628702 important:0.03958788896591275 :0.7596361492994824 +for:0.9892658180434835 to:0.00038857298562600123 not:0.00036233007783002737 at:0.00016275376537291863 :0.009820525127687543 +one:0.10594150536572816 all:0.07583316194464285 rather:0.07109570190501831 worthy:0.06375554314419597 :0.6833740876404147 +The:0.14532679102197235 This:0.045293434667794154 or:0.0440913101023704 the:0.031052820284019025 :0.7342356439238441 +railroad:0.09957486897966152 commercial:0.09057023929444159 railway:0.06527976579348177 the:0.05629707747571498 :0.6882780484567002 +or:0.2839670400699976 of:0.11943671713753952 knowing:0.0995069475015393 to:0.08379410028419196 :0.4132951950067317 +so:0.08242366528270187 satisfaction:0.07409378436248974 facts:0.05002350391509228 see:0.04590198881943494 :0.7475570576202811 +the:0.12676913855360447 of:0.12078079301785012 and:0.1123880085150426 The:0.09083199566678025 :0.5492300642467225 +he:0.33483645753839736 the:0.1369183826708455 not:0.11414111781058878 they:0.07959536983967103 :0.33450867214049723 +of:0.2210748263863552 and:0.10472639402700948 the:0.06646949561470424 May:0.04388650420173244 :0.5638427797701987 +;:0.0008245480004094608 them:0.0007028778152019954 able:0.000476357084376477 you:0.00034200759251845744 :0.9976542095074937 +thousand:0.9999815728018808 times:6.057924466792982e-07 young:4.124070448355737e-07 good:4.0971851802042394e-07 :1.6999280109461323e-05 +carried:0.1616653983457421 cut:0.04167670510889621 and:0.027515030433101186 from:0.02666444317016053 :0.7424784229421001 +still:0.36084924419135406 was:0.29533330060001056 is:0.10331612666906234 in:0.07672002761208502 :0.16378130092748808 +not:0.5730490576309039 almost:0.09515246261985215 now:0.05304041704947071 thus:0.05203299902401124 :0.22672506367576192 +Co.:0.20014394176051648 was:0.036434714090344156 is:0.031416476371292024 of:0.03127743136421418 :0.7007274364136332 +the:0.01223517641663063 said:0.011262130455001965 of:0.008126914915063208 to:0.006752242132346079 :0.9616235360809582 +with:0.13587787240370602 The:0.10864754831002883 and:0.10371915152921998 the:0.10143615654913656 :0.5503192712079087 +in-:0.538977828396298 of:0.016744488895656058 and:0.01451674587794438 together:0.009235772150027593 :0.4205251646800737 +The:0.251205221710768 Mr.:0.08285750530307014 and:0.07835716994810411 the:0.07768247119906653 :0.5098976318389914 +with:0.34196123506702836 of:0.19921415022264927 in:0.12089902766431439 and:0.12079818440135115 :0.21712740264465671 +such:0.4951912817985952 their:0.2795230142360873 that:0.11913532672498443 the:0.04508055233121735 :0.06106982490911585 +and:0.08497311963086998 work:0.051638298488557395 manner:0.032160931819235135 found:0.029467461276818478 :0.8017601887845192 +the:0.23353679539792202 -:0.089758513298516 years:0.06840981018027922 a:0.046643706799273384 :0.5616511743240092 +United:0.04798082302467451 old:0.0327453591780169 other:0.02559156454137311 highest:0.024781442622892103 :0.8689008106330434 +great:0.14465167192582085 better:0.10217145428019465 little:0.04452932022320285 large:0.027730145020521423 :0.6809174085502603 +the:0.545058477064804 his:0.07970779763001459 some:0.04271685745940361 a:0.04121968752095108 :0.2912971803248268 +this:0.2697107235214056 day:0.17312816288284885 Sunday:0.12798127193854716 Monday:0.09354525560658081 :0.3356345860506177 +people:0.20111748645984992 President:0.1415571121599157 Government:0.08833153486511017 government:0.08488470360477159 :0.4841091629103526 +other:0.5549828123094048 more:0.12203231557677356 of:0.05360384251564607 similar:0.045742452153469955 :0.2236385774447056 +of:0.47684568952409784 and:0.07390444053863517 man:0.06631287898932345 for:0.045657241021539875 :0.3372797499264037 +the:0.6746681277646255 tbe:0.3067401420636654 tho:0.007715266732868504 The:0.004876113721917771 :0.006000349716922799 +successful:0.17133501948130667 practical:0.11872886556600916 young:0.10607647099615593 poor:0.08298557620569665 :0.5208740677508316 +of:0.09588046194042295 o'clock:0.06685122318959767 a.:0.045598162714613255 A.:0.02644419787909844 :0.7652259542762677 +the:0.46865714802461556 tho:0.03526915328645452 this:0.01963155684576128 said:0.0017576051027089722 :0.47468453674045963 +party.:0.04962943414476814 home:0.008550829512566445 county.:0.0022027674872979004 individual:0.0012045397654608487 :0.9384124290899067 +of:0.2238198491655392 in:0.12672128784681952 to:0.12664261657875897 and:0.11945318759474176 :0.40336305881414053 +section:0.44938444949187045 Tuesday:0.03754633053235449 floor:0.029391349966509137 story:0.02650239655037192 :0.45717547345889387 +Western:0.03550745017545522 was:0.020858929451409828 the:0.020007892133155843 should:0.01580494008574005 :0.9078207881542391 +and:0.965982480908436 where:0.012528821202140583 as:0.005890711661334277 aud:0.0037537086422057874 :0.011844277585883444 +the:0.2688313875074178 his:0.13731813691140463 and:0.0880008248340234 a:0.07533305913485851 :0.43051659161229566 +May:0.25841131077557317 September:0.2208568033425384 December:0.21817697161511895 August:0.13787284203559524 :0.1646820722311743 +in:0.2241452353128855 10:0.1150108746353271 to:0.10458087756902196 8:0.06666280402568105 :0.4896002084570843 +the:0.843392605218216 a:0.03473249841291687 his:0.02959739049262966 my:0.017990484285662255 :0.07428702159057517 +and:0.054828211880165435 ing:0.03879761042797237 is:0.03794694926031184 was:0.03365080488498025 :0.8347764235465701 +but:0.1731333333845597 however,:0.1256207386204046 therefore,:0.07211314160713979 without:0.032887986451140654 :0.5962447999367554 +of:0.10398453218182736 and:0.07420545595128915 the:0.03434447012763091 Mrs.:0.02822546766806105 :0.7592400740711915 +J:0.20951584790708383 W.:0.1392712120123218 the:0.09927063327559943 John:0.030772627736093086 :0.5211696790689019 +States,:0.9003136612146422 States:0.061954647441734734 States.:0.0009870700960323876 states:0.00041442192582705537 :0.03633019932176371 +of:0.15469205261755406 the:0.1481768641970035 and:0.140602014579166 to:0.1127142848663001 :0.44381478373997646 +a:0.016303054000138276 were:0.008808384903904625 be:0.008750958501920288 ill:0.008369383318543172 :0.9577682192754937 +they:0.34142058719630203 we:0.23033448148691135 men:0.11922821369448944 you:0.08081805104324652 :0.22819866657905072 +and:0.26129315186873886 to:0.1408648825512583 for:0.09662735073797354 in:0.04181528070166452 :0.4593993341403648 +constitution:0.08376416728745324 administration:0.03703100766783052 Constitution:0.033047446264261586 government,:0.02276652012943477 :0.8233908586510199 +times:0.7403275464396051 nations:0.02206878345223835 construction:0.009727591776728283 times,:0.00471639376283254 :0.2231596845685957 +a:0.07761310962944952 appeal:0.06423070304927075 political:0.048409008356335693 r:0.03227424766416494 :0.7774729313007791 +come:0.004770879909979889 be:0.0005646687530321079 go:0.00046136719319174604 got:0.0003820496113100511 :0.9938210345324863 +he:0.98543905121577 that:0.007997939367418097 she:0.002034222651313063 be:0.001081624749581325 :0.0034471620159175435 +say,:0.2877098010799679 be:0.2092071793168316 the:0.15691249352566136 leave:0.03924643458724032 :0.3069240914902988 +the:0.23387439726305778 of:0.11038139768041899 his:0.05894097538625482 her:0.03387470139687492 :0.5629285282733935 +call:0.00019919950117770543 statement:0.00011375163253392559 decree:7.410344884786315e-05 notice:6.065294967322735e-05 :0.9995522924677672 +authority:0.66234354207319 Notice:0.023769421996275932 he:0.018759853954068016 It:0.014216420981741052 :0.28091076099472495 +his:0.678681424146663 her:0.23430558870537588 tho:0.02704238364083996 their:0.013125141283366781 :0.04684546222375439 +and:0.13445488355090898 to:0.09923724702738833 the:0.05112776811360286 of:0.050880512215405835 :0.6642995890926938 +there:0.014255294026609838 deeds:0.006630755099791235 world:0.0058787930677560935 else:0.00540757956366565 :0.9678275782421771 +difficulty:0.9116283954442316 and:0.01775073391453002 me,:0.010395458154685051 me.:0.005063499634665318 :0.055161912851888026 +powers:0.1477500684169701 duties:0.026246190003017013 interests:0.018245312905580947 estate:0.009873432678081205 :0.7978849959963509 +to:0.9832592626870768 would:0.0037395872948362257 lo:0.0015022621943793838 and:0.0008232246888886767 :0.01067566313481883 +the:0.13109985781191733 a:0.03162913571475615 of:0.02103783541540171 other:0.01659395927051342 :0.7996392117874113 +a:0.7187975974045546 in:0.09767625820316442 pretty:0.06489911431331796 such:0.052467001405344056 :0.0661600286736188 +3:0.05135082706959381 4:0.04950848093054091 1:0.04565070464186526 at:0.019976163396620353 :0.8335138239613796 +the:0.6872235242072591 a:0.236514899084465 thc:0.07152698030825777 tho:0.0022724320387512834 :0.0024621643612667892 +avenue:0.16132266576102341 America:0.149980695359574 America,:0.0766879468570942 Dakota:0.04282743893907934 :0.569181253083229 +the:0.8143349192784916 it:0.08899353462145486 every:0.027982478850908484 a:0.02241113881367333 :0.04627792843547167 +are:0.5375760525500985 has:0.12389690468286298 had:0.12240804167243052 year:0.10904419902117216 :0.10707480207343567 +Germany:0.22026865626725683 large:0.009681183781774353 occasion:0.006341169896157224 day:0.0033952108941594514 :0.7603137791606521 +for:0.3682563328796286 ing:0.2080253802965248 of:0.13033132903079547 in:0.11415182459460885 :0.17923513319844228 +the:0.6940613659129334 a:0.10927106067197424 which:0.04993907333459224 tho:0.03866445693352154 :0.10806404314697851 +at:0.5200333444114907 about:0.12613725414318724 from:0.06671880133252175 by:0.03786448294505476 :0.2492461171677455 +can:0.2952397240599907 to:0.24614661593805034 and:0.09504949364709356 was:0.08565603886733952 :0.27790812748752597 +delivered:0.8296887378477773 sold:0.03221231329322399 returned:0.028664092520229396 executed:0.027463862160781952 :0.08197099417798741 +Miss:0.2088651812681416 and:0.06898313797449623 Mrs.:0.04539317044977055 of:0.04390064632752207 :0.6328578639800697 +can:0.32698781698605134 have:0.20301562360449352 the:0.16114744497150227 were:0.12101941663191089 :0.18782969780604186 +ar-:0.1009256314449922 the:0.03116696796832397 t:0.020294680878039578 er:0.019998468404257588 :0.8276142513043866 +and:0.4470818424767171 of:0.30855645923199254 they:0.10515145174157725 the:0.08501764266907745 :0.054192603880635716 +ed:0.02286320639266902 to:0.01865892188552855 up:0.014538434744261626 and:0.01407266766024566 :0.9298667693172952 +country.:0.020240164242148893 work.:0.008303635356572105 people.:0.004245870462395906 county.:0.0031659903913106874 :0.9640443395475724 +engaged:0.43966802403777777 had:0.07868753207702955 refused:0.0751173228409079 determined:0.07331914849695342 :0.3332079725473314 +the:0.030240215588875744 great:0.022742091016200675 first:0.015096770335441349 whole:0.012878934277973528 :0.9190419887815087 +you:0.7961137616005491 they:0.1752271506749421 we:0.02013168883880726 I:0.0034979349344245224 :0.005029463951276946 +cents:0.9988314841077971 of:2.1647375250048077e-05 in:1.5097386257360502e-05 for:1.4519316181060528e-05 :0.0011172518145144085 +the:0.17219851417121906 of:0.1353680702169479 and:0.04397164358164079 to:0.03352816475551514 :0.614933607274677 +from:0.727746824949751 of:0.2545394738620016 ol:0.007555345094763734 on:0.005347466186537591 ot:0.0048108899069460925 +Davis:0.00035757641279707356 and:0.000243417971069107 Brown:5.5066943023328647e-05 Wilson:4.1345424737211166e-05 :0.9993025932483732 +real:0.69941497285055 the:0.11296523456749125 said:0.061918627823189444 an:0.028516836584357257 :0.09718432817441196 +its:0.3869460666946663 a:0.0871242861054804 the:0.06629324569332064 some:0.050350198115745634 :0.4092862033907871 +the:0.5891168435115582 a:0.20896354231818387 his:0.09136795622977062 one:0.045012340923766346 :0.06553931701672085 +small:0.25081783165655547 hundred:0.11279789278999505 of:0.032895453268888784 and:0.010224557346693829 :0.5932642649378669 +do:0.8306290699724835 did:0.08697870585391873 would:0.02579737431822833 should:0.020531394393735337 :0.036063455461634135 +the:0.429560649151596 a:0.06628444174321439 tbe:0.03113558407499571 tho:0.02812828786299894 :0.444891037167195 +It:0.17216226320226805 it:0.0939650786481668 there:0.09310483655703236 There:0.0847098694994124 :0.5560579520931204 +St.:0.7874340666128775 of:0.03830783304073087 and:0.00581375792011598 W.:0.003941097654267857 :0.16450324477200756 +are:0.8648623647969746 is:0.07812132563911012 will:0.009085155184159512 also:0.007447423598566867 :0.04048373078118879 +prominent:0.02234943795330955 foreign:0.017270348858010934 public:0.01725504673312076 distinguished:0.015960144427346 :0.9271650220282128 +and:0.4387642139246363 value:0.05737474366198017 But:0.05590985182674452 perhaps:0.0346121541252781 :0.4133390364613609 +true:0.3591812188488783 possible:0.18157635909293565 said:0.14784318926788662 evident:0.1033025112405814 :0.20809672154971812 +situation:0.0888919945631717 race:0.07852991283265005 State,:0.07488696619018119 government,:0.057130964344675815 :0.7005601620693214 +people.:0.05959617714977395 argument:0.04118606656272673 government.:0.030910580064683682 city.:0.025285315896788015 :0.8430218603260277 +and:2.3315537880487996e-05 western:1.0408046680302887e-05 of:1.004109007987513e-05 Western:7.63623095214064e-06 :0.9999485990944071 +cost:0.30401464852691223 distance:0.08752000661614111 rate:0.08152632290218828 salary:0.0640661894802176 :0.4628728324745409 +they:0.7629074692484192 she:0.1704237831238296 he:0.008838832756363279 thoy:0.008505547476965098 :0.04932436739442261 +advantages:0.559735591511942 there:0.13177670180490655 is:0.03687650623927304 and:0.02886250433510195 :0.24274869610877664 +the:0.03319503249107139 labor:0.03256663386612231 every:0.012885053980452319 it:0.006496814022944701 :0.9148564656394093 +the:0.719989477420024 its:0.23368501291060859 her:0.013757247323927477 an:0.013027274261243588 :0.019540988084196416 +ex:0.46413381091482453 early:0.009096936972819032 in-:0.007992261708570028 American:0.007243972862541521 :0.5115330175412448 +reported:0.00039949140912309497 known:0.00029474583305291686 in:0.0002922176181233548 being:0.00028745798786350234 :0.9987260871518371 +asked:0.03558767799417118 was:0.030341527542428765 had:0.030314780176562448 and:0.025067327567231817 :0.8786886867196056 +made:0.2457282202028324 took:0.2377165175188601 drew:0.08969105349717155 gave:0.08343814915470003 :0.343426059626436 +us:0.1697730663236999 it,:0.13448839462034923 even:0.12208352246753867 them,:0.0931570282946005 :0.4804979882938117 +no:0.19809308183412658 the:0.14114350111522772 a:0.09163802446493065 from:0.017309058732207196 :0.5518163338535079 +and:0.12960410121405164 is:0.10183538352284009 the:0.1013659052896024 an:0.09236341954833899 :0.5748311904251668 +results:0.0858675494070074 people:0.02665886797686443 Indians:0.024288080017935636 facts:0.014118033183867108 :0.8490674694143255 +street:0.9763480681223791 Central:0.0007152311943362997 county:0.00040168748255606256 the:0.0002980420853730213 :0.02223697111535541 +he:0.7753829782894228 it:0.11103905480137555 she:0.027141453353449713 I:0.022124959048680573 :0.06431155450707134 +the:0.1432249855203065 let:0.11957197895942419 a:0.11390072781918416 not:0.05515890191570087 :0.5681434057853844 +and:0.07464513486230674 II:0.027608174889130678 being:0.02435691044623624 taken:0.016707110883020338 :0.8566826689193062 +a:0.4602216789812113 some:0.2154923381308354 the:0.15456826076244087 up:0.14964205067430272 :0.02007567145120958 +that:0.6080460120365444 ::0.026504158312947054 if:0.02501330603513999 the:0.021563832549573385 :0.3188726910657952 +good:0.060067812743278826 to:0.05790077267015727 ing:0.03254860644109191 up:0.03110391865042267 :0.8183788894950493 +in:0.5974222983824639 at:0.19351130212419748 of:0.10028279279569735 In:0.06687633013054098 :0.041907276567100214 +tion:0.02904115733217894 and:0.02774372222175344 county:0.017883168235574575 County:0.017684500208588368 :0.9076474520019047 +the:0.2943732827468423 a:0.04079832377110683 Mr.:0.032266444819031466 that:0.025551559154063798 :0.6070103895089555 +together:0.32388358096212594 thence:0.1873953771166159 and:0.053038552162360475 ment,:0.020173763261458727 :0.4155087264974388 +old:0.14352297575218237 open:0.09151604176359446 evil:0.05145346406220485 absolutely:0.041961209593290576 :0.6715463088287277 +notes:0.3656305208097933 line:0.1705445051375753 there:0.14598393883205205 note:0.1359220039465174 :0.1819190312740618 +of:0.0146877257967469 .:0.012866317475326227 tion.:0.010098860229050136 and:0.008981336797043136 :0.9533657597018335 +the:0.4247353290584065 a:0.08381266812621457 years,:0.0663657031146197 it:0.033675221421999815 :0.39141107827875943 +and:0.13544112776307535 -:0.03847495892686587 the:0.01792114219493178 o:0.014858784251989134 :0.7933039868631377 +care:0.010067736033885255 ;:0.0033384826727330843 one:0.0033063060612409092 all:0.002850514421034724 :0.980436960811106 +been:0.817043667620021 the:0.01610071104767371 a:0.013723465945918743 yet:0.011232868419143815 :0.14189928696724274 +of:0.3453413120078887 and:0.13548988723661384 is:0.0955368171109805 to:0.07938688959835767 :0.3442450940461592 +of:0.15409258137285703 and:0.1267169927998217 After:0.11216190057024507 after:0.048158621142270354 :0.5588699041148059 +the:0.7264068347075813 his:0.09840924253169245 bis:0.06885791188585334 a:0.05714525625629838 :0.04918075461857458 +what:0.18675746293830486 it:0.15493826505662528 It:0.1033644768640322 who:0.08292764627851879 :0.47201214886251885 +and:0.4079152221606421 Brown,:0.003547747749421195 of:0.0010842378618360002 part:0.001080774987853459 :0.5863720172402472 +raise:0.12945318529569633 make:0.11462108926058016 defeat:0.10141667469985174 secure:0.0638487409657672 :0.5906603097781046 +of:0.40026441214893377 of.:0.314600907234877 to:0.14964690606711092 the:0.019195013014829173 :0.11629276153424925 +he:0.15192172816484983 and:0.12078071897206032 who:0.11489043849134334 I:0.11191367562910254 :0.500493438742644 +was:0.36730480815077626 is:0.36158061956973603 Is:0.17454429923742712 ls:0.07317221951117873 waa:0.023398053530881945 +and:0.3965332320457233 not:0.1340968953984846 now:0.10859328521372806 for:0.1017331360314341 :0.2590434513106299 +as:0.09167727850549899 and:0.07474599386933485 that:0.04536467711706784 their:0.02910853123106719 :0.7591035192770311 +the:0.2199206672618584 and:0.1805085533582943 to:0.08654010085967162 any:0.040025314514298665 :0.4730053640058771 +had:0.9207738555674123 have:0.04413344130283042 bave:0.01641558941441411 were:0.006389708435121407 :0.01228740528022178 +and:0.13864592569957995 James:0.04460406623455104 Thomas:0.04303344351802972 King:0.01854384670280078 :0.7551727178450387 +alone:0.9123329409552212 was:0.08532658698150111 again:0.0004945949125855021 and:0.0002735109680045444 :0.0015723661826875616 +tract:0.004964829742268375 White:0.0010998620823476552 test:0.0010990014242125336 2:0.0007188370107053248 :0.9921174697404661 +south:0.3608228048940742 north:0.3489485285448109 N.:0.11703743795613741 S.:0.10977150876259974 :0.06341971984237779 +thence:0.3996047312461914 and:0.1491974903797323 followed:0.04611243594047835 and,:0.0265548069336039 :0.3785305354999939 +the:0.5920565398972616 this:0.07207706143042504 her:0.0677359888252477 a:0.044110468615914424 :0.22401994123115132 +of:0.9309555879996451 to:0.03201234682471766 and:0.004507542787998179 while:0.0023491133640909045 :0.030175409023548188 +Grant:0.019689391861816227 Wilson:0.0007800810687227761 Brown:0.0005599353243639851 the:0.0004368964563863045 :0.9785336952887107 +it:0.24805822922123028 he:0.08531305257054934 there:0.03549797191890582 action:0.007386613966435483 :0.6237441323228792 +of:0.35681273597265295 tion:0.1423835790724048 management:0.08534901569339481 construction:0.08353650355857287 :0.3319181657029745 +and:0.11626567877421375 for:0.04768562856627281 then:0.030623546110254276 as:0.02954480145944573 :0.7758803450898135 +Mr.:0.5867200692817125 John:0.26843886985495086 Dr.:0.038235132127249896 S.:0.00934879528347569 :0.09725713345261111 +i:0.0383602366808801 render:0.007641552070584115 face:0.0062142327110778495 he:0.005811629351313396 :0.9419723491861445 +.:0.7198310161262856 the:0.016234915520315318 W:0.005831480830310506 of:0.004173807165519059 :0.25392878035756944 +been:0.3846297069993669 said:0.035281794520529215 done:0.031800051000799266 succeeded:0.028827677327973665 :0.519460770151331 +seven:0.16319773291451953 two:0.108022705169425 sixty:0.03565236649461049 the:0.010047170082181275 :0.6830800253392637 +County,:0.5017058830686416 the:0.13159263639724153 county,:0.1258016526462092 county.:0.11763794112418118 :0.12326188676372639 +and:0.45626934368368527 time:0.07846255340065418 time,:0.052306716464313244 which:0.033880629485951434 :0.3790807569653959 +young:0.1715231064217218 dead:0.1324411375058881 wounded:0.09596729321189292 poor:0.04551873984766746 :0.5545497230128298 +trying:0.04849689518708961 hopes:0.030217881065758987 efforts:0.006711178766641164 means:0.0065877372603983025 :0.907986307720112 +S.:0.3113356215584901 .:0.20128308708236328 of:0.03350257887526431 the:0.033210308674740036 :0.42066840380914233 +and:0.1556989642027629 the:0.1180856372015283 The:0.07586712627937568 of:0.04381841889167214 :0.6065298534246609 +ago.:0.29400100507187743 wife:0.03483638926690025 intention:0.03107728379223839 name:0.013334578864349234 :0.6267507430046347 +is:0.6556712925782197 means:0.23554634560607632 was:0.039726476480935836 Is:0.01964308776968363 :0.04941279756508456 +the:0.20069883555163798 other:0.04160931847971658 a:0.04082441189949998 his:0.03212827434976752 :0.684739159719378 +friends:0.8017719326048848 school:0.031897787372761395 special:0.006540658843277722 com:0.0061502788515322634 :0.1536393423275439 +of:0.012298364582348368 the:0.01173192601428278 The:0.007765223214003433 and:0.004997284603618463 :0.9632072015857471 +miles:0.23292828470488408 .:0.07469173112450114 j:0.06907640392349958 it:0.027199317033706847 :0.5961042632134083 +and:0.4725219927464484 the:0.06340239642526095 No:0.06320487444257653 1:0.06173524299514443 :0.33913549339056975 +was:0.2782473538393766 were:0.12862197037694417 ha:0.09945316542117999 is:0.09621400253945736 :0.3974635078230417 +and:0.13686057340917063 of:0.1156651283822028 the:0.10720462984071413 to:0.04909254014302378 :0.5911771282248885 +of:0.647269313010635 put:0.04090642408062935 was:0.039771694181778575 o'clock:0.02300751297012442 :0.24904505575683264 +of:0.8720641784087657 ol:0.10528737059112425 and:0.00829204807030428 to:0.005842791287049863 :0.008513611642755938 +to:0.9998961980815511 in:3.624771038723578e-05 and:1.4892184516218652e-05 of:9.667723533110257e-06 :4.299430001233808e-05 +not:0.1565666732266014 see:0.152302068648495 get:0.11966209057919205 make:0.11825774136998769 :0.45321142617572385 +as:0.08087950036157147 asked:0.03986141337541231 ready:0.026774633150025182 not:0.023030965014962643 :0.8294534880980284 +in:0.683321642647261 In:0.1601772615152433 first:0.048642421021986765 ia:0.030147524856947338 :0.07771114995856156 +was:0.5476429568084792 is:0.10949953977454491 kept:0.09790997383055211 the:0.02829140942653202 :0.2166561201598917 +of:0.11716329910837163 and:0.1116037414320213 the:0.07459218413609235 to:0.049129183061181435 :0.6475115922623332 +water:0.09725507040369763 and:0.022257106733063546 government:0.01362308859612379 or:0.009635673716942916 :0.8572290605501721 +heretofore:0.04830636086072029 again:0.00040278631929544195 therefore:0.0003082644490017207 thereby:2.4606703352627976e-06 :0.9509801277006472 +the:0.20420288190992714 only:0.049368868582835 third:0.04696876138417026 distinguished:0.043598155981245015 :0.6558613321418226 +time:0.9206267114664232 months:0.028347791694696825 days:0.013480736572938502 weeks:0.0100025566169584 :0.027542203648983115 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +and:0.11522282235474426 the:0.10904216909786581 of:0.06599379333134145 to:0.056089674149138964 :0.6536515410669095 +make:0.04039259237326739 be:0.03900155516444696 the:0.02680027689814253 of:0.025218823648401296 :0.8685867519157421 +Missouri:0.3977056256058845 the:0.22343039372785597 this:0.07239626007493506 be:0.059128520130950636 :0.24733920046037366 +their:0.9980771496629491 its:0.0014887815719642813 our:0.0002198856913754903 his:5.2565915724561516e-05 :0.00016161715798648026 +the:0.641197062988243 The:0.1385392124865464 in:0.08881151065009903 a:0.028613511125046422 :0.10283870275006514 +by:0.30207188924596784 in:0.2555924041335437 to:0.20910654208767976 on:0.12346462576031529 of:0.10976453877249341 +of:0.8703463662391464 by:0.027470120996037482 his:0.013275681313523203 ot:0.010584877159788696 :0.07832295429150421 +along:0.3465081111209865 with:0.26767130377677023 to:0.13971690513765223 of:0.10804385638422974 :0.13805982358036128 +the:0.2859400641616706 a:0.04552613199481804 to:0.02615515494431597 so:0.023358588508251624 :0.6190200603909437 +the:0.5358955673466584 this:0.041519962862788695 tha:0.013608471674546046 tho:0.007517980358475783 :0.401458017757531 +and:0.19921643464892297 the:0.06748465518047722 as:0.058924412391492625 of:0.04297210419010129 :0.6314023935890059 +the:0.9760011141869903 a:0.004683045941188708 closed:0.0025706832631186096 and:0.001400555826573923 :0.015344600782128414 +the:0.32559531305096817 tho:0.08364941913599798 be:0.06800835093513656 a:0.059558281983928416 :0.46318863489396883 +old:0.03286944194353869 able:0.03074735106887388 officer:0.009861731069111902 agent:0.008228620839982236 :0.9182928550784931 +are:0.4929890257035099 was:0.12972522375078974 be:0.06214340577327217 were:0.05371034472363774 :0.2614320000487904 +and:0.17582958630158224 of:0.07208238279331447 the:0.04096399781489078 to:0.027861479751335173 :0.6832625533388772 +private:0.3638469317746728 re¬:0.14785877591977822 the:0.04449685355358304 a:0.04370801859794569 :0.40008942015402016 +rights:0.036666136316749955 friends:0.0169321204776197 lives:0.014366432007486996 duties:0.01272753923566346 :0.9193077719624798 +not:0.07597355826396 suddenly:0.04732017791312905 being:0.0346850685811165 greatly:0.0346043077998899 :0.8074168874419045 +called:0.1543557717623221 did:0.13301074517475098 calls:0.12481719616065343 is:0.08798005579528219 :0.49983623110699127 +of:0.8122797751222128 to:0.027945066150560638 due:0.016943400417649288 ot:0.015088982267765807 :0.1277427760418114 +March:0.2870342002865352 April:0.24057670199917586 May:0.1755866028179667 June:0.17527734636460368 July:0.1215251485317185 +of:0.45095479855615667 and:0.13135836413646615 for:0.09964159133027617 The:0.076335744917153 :0.24170950105994798 +Central:0.05042947398607905 Pacific:0.03231767734687119 and:0.0292593340071696 county:0.009028074310287912 :0.8789654403495925 +in:0.8557236139290733 for:0.10740120411555489 of:0.026698805590715226 sufficient:0.0028382072844829287 :0.007338169080173791 +and:0.3729416631256842 but:0.09914706147268806 But:0.046621329355760015 it:0.03049562836108357 :0.4507943176847842 +a:0.08565081070538949 with:0.043080096790528245 the:0.02936293199538666 sent:0.018027819989269087 :0.8238783405194265 +to:0.1507973629944503 action:0.10403408888900002 was:0.06049426729794561 great:0.055396271211419296 :0.6292780096071847 +of:0.08743992611018656 ments:0.06188119386734038 and:0.03741622141110385 to:0.03102516959998507 :0.7822374890113842 +was:0.683046812987133 is:0.10595146158502408 served:0.03526845109356527 stood:0.03397132500633707 :0.14176194932794065 +their:0.7413847709393724 her:0.15052230575996803 its:0.004870792077984435 the:0.0038449567495799698 :0.09937717447309517 +N.:0.40706855202644016 S.:0.22733516362764583 south:0.09991247305911008 north:0.0921823937248527 :0.17350141756195123 +not:0.34455370858515183 long:0.18232281503069447 never:0.17551824081934878 recently:0.05917724751610045 :0.23842798804870446 +one:0.9779488840130772 two:0.009343401380423265 ono:0.005336272532232727 street:0.0013438912124128781 :0.0060275508618536765 +a:0.9632104747632257 the:0.028096561038038644 are:0.006110407741014061 of:0.0013176836276446054 :0.0012648728300769388 +that:0.20890596389514723 and:0.1476500554764382 as:0.07885913823725912 when:0.06790285222580468 :0.4966819901653508 +fish:0.056919725966164604 small:0.047324301241741494 little:0.04252437663076926 good:0.037347513362989734 :0.8158840827983348 +a:0.9937594723197167 the:0.0011082060803198803 tho:0.0004794303605272877 very:0.00043717376844760905 :0.004215717470988406 +ot:0.23591805063842936 and:0.05765476991351548 is:0.04885200834947744 of:0.04313674227950776 :0.61443842881907 +was:0.9597337067360893 Is:0.0013189364059423493 waa:0.0012485877086427586 had:0.0010273567379338502 :0.036671412411391636 +most:0.21862327418538743 best:0.031219283803876317 greatest:0.013421261471773954 great:0.012594608490287597 :0.7241415720486746 +that:0.6422064754673419 the:0.074028881795094 in:0.01803761869605748 for:0.013347465040264512 :0.25237955900124226 +and:0.12439993605803079 of:0.09443009422647773 the:0.08498403669195811 to:0.04408169438393005 :0.6521042386396033 +it:0.34112098503397253 they:0.24870552829317696 and:0.2147159229972805 you:0.11584829304744546 which:0.07960927062812446 +and:0.5240227677429828 in:0.07509915112057094 rather:0.0565635211400142 be,:0.051918989453462926 :0.29239557054296905 +for:0.3256111825617023 of:0.1627587674558454 to:0.11804011238194334 against:0.11396331029587187 :0.27962662730463705 +a:0.26770881997746543 the:0.2067392280819457 The:0.06309173795892264 this:0.05502125469724916 :0.40743895928441715 +into:0.24353002332638943 of:0.20001333832830084 At:0.1677187124719618 for:0.14666550446965892 :0.242072421403689 +are:0.46679871629843667 aro:0.15625842207387997 is:0.0919062270822664 were:0.06439285726658119 :0.22064377727883583 +even:0.011486789376342713 her:0.008397590277558353 court:0.004988784041802572 person:0.004933014146422689 :0.9701938221578738 +and:0.16385805156534844 the:0.04864405453015866 or:0.030265868889985073 air:0.022909495702967783 :0.7343225293115401 +foreign:0.05356371296243548 citizen:0.006725819681155917 friends:0.004098447781388717 to:0.003656996777622323 :0.9319550227973976 +west:0.3457917591653332 occasion:0.016952565149804217 country:0.015460168983311503 time:0.015141623272814715 :0.6066538834287362 +done:0.1246665562172853 reached:0.0855828751009674 accomplished:0.07792687540582702 obtained:0.061565943679628914 :0.6502577495962913 +his:0.42770572739395174 the:0.39826608534883606 her:0.052976105395708115 my:0.03125063657971007 :0.08980144528179401 +quarter:0.3765673639461073 of:0.10805069574428859 the:0.06086264681599256 and:0.04942248784364015 :0.40509680564997125 +from:0.8439634754367286 is:0.0414437619458834 was:0.019626648006329205 are:0.018519544967700897 :0.0764465696433579 +and:0.37214882011643535 of:0.23689304603311367 Young:0.04907897077896972 when:0.04292541545095853 :0.29895374762052274 +into:0.938183096641014 Into:0.04413212546364476 among:0.00043618617573582365 between:0.0004172546372472831 :0.016831337082358257 +me:0.27255802806506085 look:0.06890603758743045 sell:0.059225487159843195 provide:0.05011721826670263 :0.549193228920963 +change:0.10662475115814299 yield:0.03231179268863574 there:0.030269631319000827 man:0.01719044768892665 :0.8136033771452937 +a:0.18699833388960785 his:0.07865182314397066 as:0.07144597531675156 the:0.07020876563916838 :0.5926951020105017 +a:0.41253631277397007 the:0.12877267102088913 white:0.03476581009074935 his:0.013956942902807738 :0.40996826321158375 +given:0.14940860103159287 obtained:0.07073798197981238 increased:0.056664255253548367 saved:0.05422170638750197 :0.6689674553475446 +men:0.15921022087210143 force:0.11608934658023948 of:0.06347408106962583 French:0.05978056977243499 :0.6014457817055981 +grown:0.0400355743044847 written:0.030673046708033006 an:0.004274971634279937 been:0.004147141656464572 :0.9208692656967378 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +which:0.16510421351484114 space:0.13378371462654756 It:0.12732693539301743 room:0.10861221768661254 :0.4651729187789815 +his:0.6661763660021093 the:0.11704322996429133 had:0.0711756229109038 a:0.05299440791254427 :0.09261037321015128 +was:0.34643768605095704 returned:0.2620464177433914 is:0.1262150988944878 are:0.04743937920620415 :0.21786141810495974 +street:0.5153955531461177 street,:0.07146131077860718 and:0.025224506408722116 line:0.019640230967191048 :0.36827839869936174 +the:0.8956232910345902 tho:0.039333226770144655 The:0.010365092381303646 and:0.007538446537101443 :0.04713994327686025 +and:0.17935877131046923 or:0.0875005908083516 of:0.057063784226474366 the:0.05543325691854858 :0.6206435967361563 +present:0.39481342306064615 the:0.3198976541862462 being:0.05936652269992553 tiie:0.025745750528327137 :0.20017664952485506 +into:0.250909293221256 at:0.05635605167472839 of:0.05171663425117779 that:0.019901381388578457 :0.6211166394642593 +been:0.931616607708556 not:0.004508667324513114 again:0.0042626270376270635 ever:0.0022930413434292837 :0.05731905658587448 +course:0.08367592384991325 discharge:0.05507936025256836 hands:0.03993391010907248 event:0.03604779931006421 :0.7852630064783817 +big:0.20089549901630208 two:0.11544063911383406 kind:0.04562347231075954 sweet:0.024810354783574944 :0.6132300347755293 +also:0.04325286139578613 to:0.028965247764555405 the:0.023573351362013717 and:0.019437563683702485 :0.8847709757939424 +other:0.049891779013401104 more:0.04603743505874249 one:0.04374757462841844 such:0.02669439799300872 :0.8336288133064291 +and:0.11073699890989705 to:0.10525794404120895 the:0.06652659153923052 that:0.035725860867744465 :0.681752604641919 +These:0.9615260730708142 Such:0.015468726949155643 The:0.014621138702727944 and:0.005210172051106149 :0.003173889226196238 +that:0.9356367254193203 at:0.03644932260293754 by:0.0195780620672912 all:0.005460820458460731 every:0.0028750694519903124 +Why:0.27621821634535537 and:0.2556396284605436 How:0.10123013960974162 there:0.05880629160255929 :0.30810572398180025 +lor:0.194530973752635 and:0.14543246413802988 d:0.10533468967079813 in:0.025531920903319662 :0.5291699515352172 +common:0.28806134536842826 of:0.03660043694704741 and:0.03418932312947378 2:0.029531992839901374 :0.6116169017151492 +came:0.8624259770915977 went:0.053109907576416586 started:0.023369250816688867 turned:0.017295315487978927 :0.04379954902731773 +at:0.26512017258139575 to:0.2323826946978725 on:0.22250334250439407 from:0.09540540897505058 :0.18458838124128712 +to:0.27014447484919774 and:0.09965950392743354 by:0.07730100423437569 the:0.07510400642373939 :0.47779101056525364 +subject:0.21435697835661266 basis:0.1397350930132619 support:0.06260338162800404 top:0.037113166922869284 :0.546191380079252 +a:0.20030182866217977 the:0.1942226801513604 and:0.0541504741121309 of:0.03679723848912455 :0.5145277785852044 +the:0.4877479085845679 that:0.06534825825500984 a:0.056284345776233966 his:0.05583890765967264 :0.3347805797245155 +have:0.4358625830311192 than:0.1289577973198378 they:0.03243605928022133 was:0.029101323453637272 :0.3736422369151842 +every:0.3765718038966966 either:0.21037973427369058 tho:0.19836885168899437 each:0.12859458205627666 left:0.08608502808434174 +all:0.31582552099339367 just:0.09167072621877197 you:0.07745725576974855 worth:0.026646665780579795 :0.48839983123750624 +bo:0.5444466688948287 be:0.41872276944814807 he:0.017125757102039355 get:0.0007149652969200179 :0.018989839258063957 +besides:0.22550220758165138 of:0.20598204082446014 to:0.13493589251675273 than:0.11171661692349348 :0.3218632421536423 +the:0.33882247976320473 for:0.0650678063402689 of:0.04084299131958348 The:0.03882212503722554 :0.5164445975397175 +had:0.5838683466924757 has:0.3577429463617746 bad:0.017245735775861165 lias:0.00917926092063634 :0.03196371024925217 +of:0.08482288516793088 and:0.07114198986041746 in:0.04678659906195362 to:0.025117711289097115 :0.7721308146206008 +J:0.451273319155625 C:0.2606165654548413 W:0.1115871158934023 E:0.09960157116847446 H:0.07692142832765689 +to:0.7906140711249936 of:0.06829253300075833 in:0.0378336327010366 on:0.03532375500782827 :0.06793600816538334 +to:0.7920392958783085 the:0.05080932699524925 that:0.03675181102906272 at:0.0328001536393034 :0.08759941245807623 +health:0.10814280964895459 and:0.05233747418777751 would:0.031113185452855782 morning:0.007194584251240854 :0.8012119464591714 +thing:0.17512384965950586 medicine:0.10342568587877904 way:0.09827752862372584 men:0.0450733516868657 :0.5780995841511234 +public:0.05039428733725284 said:0.017404636840386345 highest:0.01691850775217992 great:0.0131786183766386 :0.9021039496935422 +I:0.029047284385396575 the:0.0249878541646254 near:0.013241595934926931 track:0.012047738236535406 :0.9206755272785155 +had:0.45276218632956966 has:0.19468326888817933 having:0.09513731589968705 have:0.06041969513732732 :0.19699753374523654 +a:0.37354114987993525 his:0.27846630904643965 the:0.16817211547091537 another:0.09631447514986764 one:0.08350595045284206 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +Such:0.25657721820795093 the:0.03641414859680193 night:0.03372860139715531 such:0.028950900993177597 :0.6443291308049142 +be:0.5678204401399674 show:0.07495691903296052 prove:0.03784127650464113 to:0.0341551763704731 :0.2852261879519579 +though:0.4710664080064703 but:0.1449444505025079 and:0.07940011555177179 than:0.059962354565844984 :0.24462667137340485 +and:0.5424378733066838 or:0.13894126851826039 &:0.1205790483790797 of:0.08638323227132322 :0.11165857752465289 +those:0.41262596587853695 the:0.11446523575242788 that:0.029622082455132745 Mr.:0.005544274398560381 :0.4377424415153421 +found:0.30663237351269934 issued:0.19862437780412798 bought:0.10224058453863623 made:0.07720222543507615 :0.3153004387094603 +of:0.03480345675233352 and:0.012132926074874692 one.:0.009911963267639951 to:0.009543288118344314 :0.9336083657868075 +provided:0.3193380729387881 if:0.05902225722090985 aforesaid,:0.058784120210458674 a:0.04704424271829282 :0.5158113069115506 +the:0.3026789952076833 a:0.05054096952840333 1:0.022618663124455204 2:0.019753784484432206 :0.604407587655026 +the:0.8957135491418817 tho:0.02996529908269038 tbe:0.01827474671578429 making:0.01252495647197032 :0.04352144858767322 +sure:0.12849260011435443 present:0.056989843141134845 of:0.01833810924354428 required:0.007571627398161972 :0.7886078201028045 +the:0.6919778507885173 tho:0.27492163099573297 tha:0.014930965798547515 tbe:0.005389292717918842 :0.012780259699283286 +and:0.3626735493834926 out:0.12727789163796435 lines:0.11795905220058754 progress:0.042692637598765584 :0.34939686917918994 +to:0.3351049336312308 and:0.19047932891836378 with:0.17763432504791463 a:0.09765223354226293 :0.1991291788602278 +and:0.055800970588619936 that:0.05333980212707058 nation:0.049021353764721214 which,:0.047256092519231 :0.7945817810003575 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +has:0.40722730363046516 I:0.36042783725834343 ever,:0.050997955779830684 the:0.03994192068772306 :0.14140498264363777 +he:0.4356981482100037 ho:0.14038091571351247 I:0.10717517978841785 she:0.05495977530001725 :0.2617859809880489 +the:0.3297673377440627 a:0.058742374449773066 be:0.054324044398431894 tho:0.022253149884120135 :0.5349130935236123 +world:0.07279296470808654 world,:0.07074725659271931 laws:0.06266073135803232 land:0.056538456056508944 :0.7372605912846529 +and:0.15525544847137254 the:0.11051474177172495 of:0.05090733289728831 to:0.03739541473783882 :0.6459270621217754 +the:0.7218244337257829 his:0.1794000260797772 such:0.03999279166774523 tie:0.011386156574636886 :0.04739659195205787 +east:0.11695756259658673 west:0.08876276495208889 E.:0.06357462852604483 00:0.06346037695251477 :0.6672446669727646 +was:0.4594568367267091 had:0.21521526796649051 she:0.05480299878503478 is:0.0404719306868703 :0.2300529658348954 +Dakota:0.07906739231596605 Dakota,:0.07590115640888968 Carolina:0.0658634932624973 and:0.019838813074888755 :0.7593291449377582 +to:0.39177154658089897 of:0.18982067842222214 and:0.11310620066220912 in:0.08152984802761874 :0.22377172630705103 +years,:0.4070076978375876 days.:0.027163594972798643 years.:0.026686422474891315 men.:0.026484790240111775 :0.5126574944746108 +and:0.14669388691316185 the:0.09295520649006897 of:0.06773379325661552 to:0.06303094255542863 :0.629586170784725 +and:0.12932122447623703 to:0.09205664229739992 the:0.0806349590078973 which:0.07866217561508021 :0.6193249986033855 +and:0.200316701514689 lias:0.0991161017234332 had:0.0700838963231761 has:0.038933132063329275 :0.5915501683753723 +like:0.5556985993486663 to:0.19014957513415195 of:0.14410585895902708 in:0.04062287777620239 :0.06942308878195226 +battle:0.14146224430316623 northern:0.12011316151998894 commercial:0.09630935094985152 high:0.05926287123356085 :0.5828523719934325 +the:0.1155606432316966 and:0.0998691948905663 a:0.045009894067636634 The:0.04336803254112615 :0.6961922352689743 +the:0.41075834497854197 these:0.1981220415786714 those:0.14422473589026302 certain:0.12706548018530994 great:0.1198293973672136 +the:0.15008384485267343 that:0.03601657378150374 to:0.03109425197493797 and:0.025924171816467723 :0.7568811575744172 +the:0.3407648821572394 a:0.05922733398904876 pre-:0.05811873253025147 was:0.049795940657966435 :0.4920931106654939 +or:0.09123348813725796 and:0.06655584909595354 the:0.05630149063745559 of:0.05492089962317391 :0.730988272506159 +section:0.27802308987497415 county:0.19612313344200263 part:0.16646696325510418 department:0.15783684681902763 :0.2015499666088913 +be:0.8474970573327948 bo:0.039065237749316584 he:0.020758121249339557 lie:0.00601642057652419 :0.08666316309202478 +the:0.4785990040328274 a:0.19267785216149522 tho:0.06771100705711355 an:0.042372457150364536 :0.21863967959819933 +for:0.6827876995545079 to:0.07773777973998407 For:0.044428435187033724 of:0.043994830392133207 :0.1510512551263412 +the:0.9777307899552916 tho:0.011113775494099698 tbe:0.005841164048350568 tlio:0.0027621815683409926 :0.002552088933917162 +put:0.21853485935996214 position:0.10803996155748069 value:0.03959787474126951 ment:0.027457422963265556 :0.6063698813780221 +;:0.039776498302394485 to:0.018199161273531165 ,:0.01639728806153253 for:0.015826543831724986 :0.909800508530817 +out:0.1421836217479393 supply:0.1110919402739525 when:0.07265106962966031 in:0.04659645965488007 :0.6274769086935678 +of:0.6091022425922757 to:0.1641298838659912 &:0.0793642452189929 has:0.0780116818805456 :0.06939194644219471 +of:0.9576911119518484 ot:0.01798030462227719 or:0.013860982276342476 ol:0.0022501148125858078 :0.008217486336946234 +by:0.7618984177002235 in:0.061824335772952134 without:0.052366495630187956 than:0.04170738284824653 :0.08220336804838986 +which:0.14630456145140927 It:0.08729259368654695 and:0.08272940752470238 it:0.0725176081500919 :0.6111558291872495 +of:0.2344254826321222 tive:0.10888314326951133 and:0.04839706165660343 or:0.04407577748804715 :0.5642185349537159 +and:0.23342482471831094 with:0.12472389978170416 at:0.0825264555646454 in:0.07077919754978511 :0.4885456223855545 +and:0.627936344689838 by:0.2076400309012645 across:0.0449771322277678 in:0.023127166554115522 :0.09631932562701388 +the:0.8536169093186944 tho:0.08779158556855876 tbe:0.028668972821451606 he:0.02002534564801406 her:0.009897186643281266 +the:0.10426231224601328 and:0.10095265591484737 of:0.08436217399604867 to:0.02435799181389206 :0.6860648660291986 +D.:0.9512382649758334 J.:0.009198090244479571 B.:0.008310069120729822 R.:0.006878319960778598 :0.0243752556981786 +soil:0.5470964153746191 land:0.309486859940758 hair:0.028096019819218613 ground:0.02206255324978588 :0.09325815161561843 +it:0.47561329940204916 as:0.2166754134027466 It:0.07150001807011666 Virginia:0.06868914353719208 :0.1675221255878955 +interest:0.10951064119376945 him:0.09217062788351206 them:0.03358057250560015 the:0.03088007563514417 :0.7338580827819743 +the:0.23220498013401683 be:0.0809624507617293 his:0.05710922088181812 con-:0.03805346033586389 :0.5916698878865719 +the:0.09975355151527553 of:0.09796065973738914 and:0.09423078066734382 or:0.08572328576917433 :0.6223317223108173 +a:0.14686767225056852 not:0.09478210587411941 the:0.0801482361465711 hereby:0.07345847632036528 :0.6047435094083757 +and:0.10027796351305081 the:0.06766065380017201 of:0.06433994261179471 to:0.03728926049351952 :0.7304321795814631 +can:0.8525003259634563 would:0.0580791593311283 could:0.05553409449522535 will:0.017296229331345597 might:0.016590190878844637 +lying:0.5253804528647114 sitting:0.14205832631685644 standing:0.10367933615280601 a:0.07555579889737937 :0.15332608576824674 +with:0.11923797283078323 being:0.06911196197381575 and:0.06876037037181057 of:0.05039048198791838 :0.6924992128356721 +and:0.04514569516308733 him:0.028885315770899807 not:0.028603041939200942 as:0.028262905075226746 :0.8691030420515852 +near:0.04469421096631024 him:0.024177375566930788 room:0.00891710008327767 room,:0.004762293687744329 :0.9174490196957371 +stock:0.8704046963868612 license:0.03544035977802742 sum:0.016650558588618518 money:0.013951692256432249 :0.0635526929900607 +day:0.5801247951073546 side:0.02943044589577666 line:0.018976897784325573 tion:0.013611086734739878 :0.35785677447780345 +he:0.10245415324657983 the:0.09850284052264034 to:0.06538997760815517 of:0.06296133466694216 :0.6706916939556826 +In:0.3507868699498352 in:0.17677988042293674 all:0.17194161169032443 of:0.02103762093128813 :0.2794540170056155 +the:0.291417491532795 not:0.1523754345596527 their:0.11973670672257028 a:0.08825247718514125 :0.34821788999984077 +corner:0.34528352088516057 quarter:0.2423114786631734 side:0.12010179760871302 half:0.04544651101167875 :0.24685669183127418 +the:0.3189442365175736 their:0.23241680549757238 this:0.1521845954010672 said:0.12580863699622757 :0.17064572558755928 +ac-:0.007445606924103354 consider:0.0011901754556618168 a:0.0007193358845530023 in-:0.0005559356067654335 :0.9900889461289165 +more:0.038277999474126155 hat:0.02524024134496259 control:0.02122600247793726 address:0.02087003816663436 :0.8943857185363397 +the:0.18527107195434728 and:0.140721888939312 of:0.12666575961861504 his:0.059500929434361464 :0.4878403500533643 +at:0.9791256686714863 nt:0.006855918363088989 it:0.0025940210523643908 the:0.0018435431762938526 :0.009580848736766432 +approved:0.26477715722562994 fixed:0.12542706950206753 appointed:0.09783240942095422 determined:0.08412271805455716 :0.42784064579679115 +which:0.7696937354932084 and:0.13004346521881105 put:0.038961725694083994 but:0.03170637189825661 there:0.029594701695639873 +know:0.1953150708672687 say:0.18355901045274856 forget:0.10563117836315088 believe:0.0988417448541884 :0.4166529954626435 +of:0.12023790171635475 and:0.10770100089208912 the:0.07166558076763596 to:0.031032745859663972 :0.6693627707642562 +I:0.4131136633984974 they:0.27676767652773565 we:0.15602576332494292 1:0.030275952428778344 :0.12381694432004571 +at:0.23601924030485474 and:0.09627540119763599 of:0.03592336481671637 that:0.02899270218470722 :0.6027892914960857 +it:0.10348550838369011 of:0.03246044618009388 li:0.03155309013903004 to:0.031000849692129084 :0.8015001056050569 +for:0.4261013048717665 of:0.18347841567434164 from:0.09577758317550664 was:0.08767665168459872 :0.20696604459378654 +-:0.051397326824182396 lie:0.012046697235647729 inter-:0.010081520726242315 one:0.0065233850684329655 :0.9199510701454945 +an:0.10034009725916057 and:0.0853257012503137 if:0.08236075088872667 a:0.07835539157045367 :0.6536180590313454 +and:0.8805201711244477 the:0.017018870457678484 as:0.010962508674566582 in:0.007273236815473244 :0.08422521292783389 +of:0.0007163927561556465 continued:0.0006089924147991681 taken:0.0005378985443894853 or:0.00022859048870655315 :0.9979081257959491 +and:0.15495127347948054 of:0.07408403408663154 the:0.07377078962067922 to:0.03644220859912119 :0.6607516942140876 +mile:0.10089443251818725 was:0.07426177183730155 man:0.06905914679989344 block:0.03563479183628245 :0.7201498570083352 +be:0.05850675190684075 same:0.03883091133596934 size:0.03381707012654051 rule:0.02895446537114619 :0.8398908012595033 +bills:0.07523652312117646 hands:0.03137611832888644 stock:0.020114340885760244 goods:0.013825282904085393 :0.8594477347600914 +disease:0.5431031375729362 thereon:0.028411180603023178 interesting:0.006265445268107572 thoroughly:0.005974509427818347 :0.4162457271281147 +estate,:0.5824150582559172 tional:0.13742324835527603 whether:0.08564422277018827 was:0.046138730637781976 :0.14837873998083634 +come:0.15965868254181761 result:0.13690173366189 be:0.03524101830123031 have:0.024126862786681216 :0.6440717027083807 +In:0.3526675025019995 in:0.25078135980498006 of:0.134502697235386 on:0.10485282985477105 :0.15719561060286338 +the:0.041710548942690814 February:0.0261909811624888 Washington:0.013044875761353271 England:0.012223007238971606 :0.9068305868944955 +I:0.12004402357167644 the:0.09647670606069073 command:0.02292896250887604 Red:0.004897468628000837 :0.755652839230756 +sitting:0.39595644761271065 coming:0.05524252960777134 out:0.054328318775793 again:0.05267183751695879 :0.4418008664867661 +together:0.29598081781069185 cash,:0.055327193142309244 you:0.01948267343684252 and:0.019476908582993037 :0.6097324070271634 +ment,:0.08890483275492589 ::0.06803985679320028 California,:0.02701798911810132 them,:0.024155828724015647 :0.7918814926097569 +day:0.1453322682840759 goods:0.052922893525314256 they:0.04141009280469435 world:0.027155744616145592 :0.7331790007697698 +once:0.9273727458630844 all:0.027672150858617503 least:0.012069551078094095 a:0.010974258296898513 :0.02191129390330544 +made:0.07624517917025611 given:0.05849986891970814 added:0.05648442490984311 sent:0.05422803304642416 :0.7545424939537685 +south:0.19438530582074007 and:0.1553620580058324 to:0.1401434225129796 a:0.11071797233633827 :0.3993912413241097 +It:0.7253183284794433 He:0.10448880304802675 The:0.06312042275145638 They:0.03938469259390339 :0.06768775312717012 +the:0.5684669241732144 a:0.14306335321217087 I:0.1424365561367219 some:0.056054737568833994 :0.08997842890905892 +go:0.193311763264834 stand:0.13125912754507787 get:0.12247990250582654 do:0.04810094052671361 :0.5048482661575481 +train:0.21431670637570646 movement:0.17888419403719344 morning:0.051676669929623616 new:0.042668853904669304 :0.5124535757528071 +from:0.5853128362897927 when:0.1052736678288994 to:0.09871172935671776 into:0.07332501632168006 :0.13737675020291007 +come:0.3396894296180815 been:0.16936154485220856 proved:0.06945438461843637 little:0.03842372299271696 :0.3830709179185566 +there:0.14869624261152511 will:0.11232722087429622 at:0.043418617015285925 and:0.04261874653654106 :0.6529391729623518 +rest:0.12763708423577252 relations:0.10276636044011746 flag:0.07036402480559842 liberty:0.06338786750408294 :0.6358446630144285 +any:0.2076734396457229 place:0.04666235785028791 act:0.045398401586606706 city:0.04237071360033682 :0.6578950873170456 +regular:0.4185395608741242 the:0.2909078828653686 free:0.13450574563485798 a:0.0866029734553802 :0.06944383717026882 +of:0.43482753313616185 in:0.0979729066531843 In:0.043805340817519925 for:0.038331192802346516 :0.38506302659078745 +of:0.4411571526303932 that:0.17674676280870755 to:0.10465278348525753 for:0.09447828300547007 :0.1829650180701717 +to:0.07641965799033747 few:0.062622972219114 pretty:0.05833055454588346 now:0.025014159883754952 :0.7776126553609102 +in:0.32784171052535793 he:0.27845420045777325 be:0.2053148124701249 which:0.04437749604695603 :0.144011780499788 +the:0.1103480253404517 to:0.07992450879229869 then:0.024321741601615512 that:0.021266040796279962 :0.764139683469354 +all:0.758187208225969 by:0.18539675941132075 nil:0.022199314373736862 of:0.016388613049603682 :0.017828104939369743 +st:0.7652736639742092 at:0.20327615463221718 on:0.031206360941652276 of:9.269404215625616e-05 :0.00015112640976505933 +made:0.038036273966637335 set:0.017481962472564224 sent:0.011960183660869228 provided:0.009644829649000857 :0.9228767502509283 +good:0.0803523962960544 little:0.07056090398638575 right:0.06435063232077395 large:0.049967499537408165 :0.7347685678593778 +with:0.8578202604839655 to:0.04534025959295481 and:0.011801359880918037 of:0.011050815566185188 :0.07398730447597637 +more:0.21852694558302563 later:0.14905050385177548 longer:0.05716428804152694 after:0.027742834639605647 :0.5475154278840663 +daily:0.09719204928327826 any:0.0349966062289429 City:0.03208657854475526 a:0.02730479714722011 :0.8084199687958034 +of:0.22011864300466968 and:0.0846476962169725 the:0.03831863275416261 to:0.021166940353710282 :0.635748087670485 +the:0.5182621427783036 a:0.09571911946380478 and:0.09548658016517572 his:0.03962873931566939 :0.2509034182770463 +and:0.4392058901836761 would:0.21747264193971572 of:0.18365229496063393 to:0.06649300471418024 :0.09317616820179404 +every:0.4150056656161817 any:0.28318106484639605 the:0.13204610260782293 this:0.0996201903165493 :0.07014697661305004 +and:0.7718015788560938 by:0.18229187079821196 aud:0.02568621833327263 or:0.008820310947044203 :0.011400021065377543 +-:0.10229529967923941 ern:0.06759115191002822 ':0.013327338974399928 in-:0.008416543646904136 :0.8083696657894281 +the:0.21186498249039745 and:0.13935736912840194 a:0.07815824276112222 of:0.06516334014497295 :0.5054560654751054 +no:0.6594775430467648 will:0.2508063248286383 not:0.0043920738368764655 o:0.003679852278801363 :0.08164420600891914 +of:0.44249846839717316 and:0.1659355116509611 to:0.1336856695193798 at:0.060687775929951136 :0.19719257450253483 +D.:0.014277618205075065 to:0.011403334347479413 will:0.011110851876252416 and:0.007898319372918359 :0.9553098761982747 +A:0.09445613041679456 or:0.0895140338634436 bo:0.08420038074772764 a:0.08058882424622525 :0.6512406307258088 +whole:0.13181375474451262 Indian:0.09334415944562739 present:0.06007452338691318 measure:0.045375927498914066 :0.6693916349240328 +with:0.20578233351247097 in:0.0850330837775161 and:0.06559596781554336 for:0.047104160441707656 :0.596484454452762 +method:0.07744288923202593 system:0.05865486113669788 variety:0.049603395756692016 description:0.03865169920308967 :0.7756471546714945 +Lord:0.20389243512551397 an:0.08418467938364167 of:0.07268384829980573 and:0.04834820606650162 :0.590890831124537 +No.:0.5752972413211743 of:0.1598378625104483 No:0.045322969049014394 at:0.01572009018068303 :0.20382183693867995 +in:0.15567201356990382 and:0.07352495207212235 the:0.05394789870107699 on:0.04460405482594749 :0.6722510808309493 +the:0.7575397773920687 a:0.052082717931292245 tho:0.04243351274280496 tbe:0.016780363753615135 :0.13116362818021887 +In:0.12977787660943776 of:0.03550822235345878 and:0.03012880004335419 the:0.02300368014065794 :0.7815814208530913 +it:0.24095619266419724 all:0.23029912574425254 he:0.1860874179561392 there:0.1473578627812678 :0.19529940085414332 +of:0.5932109055755277 and:0.10712606575823475 in:0.08117108273447789 to:0.043000127166750085 :0.17549181876500958 +she:0.41953420734337277 He:0.27532003484886525 has:0.17746753047688069 and:0.0453862328196258 :0.08229199451125553 +was:0.8330753224837749 of:0.1360497871868719 their:0.01075000294320659 and:0.010532215570704644 :0.00959267181544188 +tiie:0.009292809492696794 almost:0.007285431593292971 may:0.006031285229891903 men,:0.004467742698345625 :0.9729227309857728 +aro:0.8668591662447532 are:0.06713867542471652 were:0.02856547724920497 arc:0.0010764581909840155 :0.036360222890341264 +one:0.09993076407104551 and:0.08856863947132955 Miss:0.07253711085942674 of:0.058966716635439106 :0.6799967689627592 +of:0.6582860225093927 in:0.17526744643209144 In:0.06543433398948209 and:0.03556631091813363 :0.06544588615090008 +of:0.1006883358537756 and:0.06772945336434752 the:0.034130639466659486 .:0.026973434464846405 :0.7704781368503709 +were:0.10637793235119096 The:0.0967409092229696 as:0.05838881316413953 with:0.05726675859075132 :0.6812255866709488 +from:0.43839182236776353 and:0.07417932033884914 to:0.04863307843022052 with:0.041759740444710584 :0.39703603841845625 +and:0.06894918044798709 him:0.03271364510271673 them:0.03170505741704077 it:0.023298174112053687 :0.8433339429202016 +have:0.5583597628155639 only:0.28065510706867564 having:0.048193745477357434 of:0.031603326503539114 :0.08118805813486381 +the:0.44851101761131484 a:0.25427581151018397 an:0.07230896548485688 in:0.06723322143861153 :0.1576709839550328 +pair:0.15757339018573094 lot:0.1417234619916452 price:0.01129968007274421 set:0.00885326684319056 :0.6805502009066892 +It:0.3014964481240692 it:0.13927783950305817 there:0.11561952145090107 he:0.059418259013060276 :0.38418793190891126 +same,:0.1367617679329121 track:0.02338859290310118 sale,:0.021848031737731533 farmer:0.011637894454561913 :0.8063637129716931 +for:0.9643372398100215 under:0.018824690118842934 to:0.011016340141400096 by:0.0030269996085621484 with:0.002794730321173119 +I:0.4690832464532184 could:0.2757590040314904 who:0.1748567506723267 would:0.06160495462628758 :0.01869604421667697 +block:0.13438102619120804 line:0.052300471540919866 the:0.04379502615991214 tho:0.014569257106968032 :0.7549542190009919 +faithful:0.3091992221441495 true:0.18026961771012992 one:0.04990887452998655 real:0.031191336172725764 :0.42943094944300825 +the:0.1002238296062944 and:0.07654240482317902 of:0.07570504924988009 to:0.057817182891009525 :0.689711533429637 +field:0.08506717579911585 demand:0.01708918321344304 belief:0.0063439618779077955 man:0.004428254710879223 :0.887071424398654 +high:0.06706625410569723 few:0.05427320918249851 dozen:0.05076797441310663 foot:0.04310858249821205 :0.7847839798004858 +from:0.6749479851637142 to:0.06370543426587771 every:0.024227863123398665 ta:0.003702318424374501 :0.2334163990226349 +and:0.08805674317832826 of:0.05401784501170251 the:0.04528071264086057 aged:0.043666245556996254 :0.7689784536121126 +being:0.569672687891965 are:0.03344772896890702 wood:0.017223402018651406 not:0.010116110617737666 :0.36954007050273907 +day:0.5317752552770059 week:0.3301674713958276 year:0.11654606190873742 two:0.007520246868562437 :0.013990964549866532 +and:0.12602705574020384 of:0.047327571586462454 to:0.030800530881572346 Mrs.:0.024912703438201234 :0.7709321383535602 +of:0.6550861449978772 than:0.054236016137232224 by:0.05236326459437471 until:0.045389012271074315 :0.19292556199944136 +saved:0.23457565397143632 during:0.04042758220723467 when:0.033890397322450805 that:0.02748382588456301 :0.6636225406143152 +Chicago:0.10966509272529916 in:0.09184220376385953 Carolina:0.03741228760269088 the:0.02783467663425155 :0.7332457392738988 +at:0.13298636909032374 No.:0.0423838037988317 and:0.029719763281898667 No:0.02317398862877974 :0.7717360752001662 +of:0.22903988333321462 in:0.09626688910759738 for:0.061570652443238456 not:0.053289147635550226 :0.5598334274803994 +of:0.8369218718795682 as:0.07391618627594498 so:0.012382896602149264 on:0.006529983163028112 :0.07024906207930946 +and:0.21996184377689157 by:0.2098404281299663 in:0.11581427554776101 of:0.1139631065387819 :0.3404203460065992 +much:0.32734482724301367 only:0.05895207529150337 and:0.02344951620876333 medicine:0.022666234582944585 :0.5675873466737752 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +of:0.2239400604589807 with:0.18715634134039574 in:0.10340692403654704 to:0.10074359207431666 :0.3847530820897599 +have:0.6598494959912109 had:0.2503159357970917 never:0.03468109737094067 be:0.027095243335338862 :0.02805822750541793 +followed:0.09909293190194075 and:0.09441446106004235 nnd:0.08349675559812175 accompanied:0.027866615280249002 :0.6951292361596463 +of:0.5663394914646213 in:0.14984406691326074 to:0.04846109009373346 that:0.04754796549952869 :0.18780738602885577 +of:0.04479035518407937 position:0.030107307487176004 with:0.019926319372858832 estate:0.015157183033085624 :0.8900188349228001 +and:0.20568358744540394 which:0.04398645568290928 the:0.04125510180244668 to:0.03695040184648801 :0.6721244532227522 +part:0.30508570052693806 top:0.03675293095515258 side:0.03533652435314409 night:0.022361368685233522 :0.6004634754795318 +the:0.9680338765496058 tho:0.02817343824157439 a:0.0024728160348368657 tbe:0.0006143779891090767 :0.000705491184873839 +day:0.9961191459171163 go:0.0016434404034638658 days:0.0006191458353107187 then:0.00031010465399977356 :0.001308163190109384 +the:0.5157218082857962 those:0.24058201097187426 all:0.05958018787051455 tho:0.028153435182749032 :0.15596255768906592 +tion:0.07886339386844815 day:0.05006745761767002 ment:0.022015701256945533 ing:0.020963742323150347 :0.8280897049337861 +answer:0.7976920439653712 and:0.10194004609243278 then,:0.04516902930348522 will:0.01707343069598847 :0.03812544994272242 +Washington,:0.025614794998480645 Washington:0.007430621652765241 Mexico:0.006661661367318694 the:0.0038819940426961332 :0.9564109279387395 +very:0.16189278509951563 small:0.0938208953806309 low:0.0699511698696346 fair:0.060956401935057754 :0.6133787477151611 +increasing:0.08693776277502678 increased:0.0716496046784419 upon:0.07054268194705633 of:0.07026696817128258 :0.7006029824281923 +make:0.22846160909581345 how:0.12043911830263322 tell:0.02262183344641262 which:0.016333482699971247 :0.6121439564551694 +In:0.42289077345769327 the:0.3038906766245206 a:0.17135985813363147 in:0.053909457753145505 :0.047949234031009313 +not:0.7216425303819886 were:0.03375952756529784 is:0.02419248404820029 and:0.02070606873914927 :0.199699389265364 +fact:0.04587655593132285 wonderful:0.03620273966771182 con-:0.01996835007387823 great:0.015823425899841603 :0.8821289284272454 +pressed:0.26075044535792613 the:0.12814424132164642 a:0.12685459534652502 in:0.059190965937472216 :0.4250597520364301 +two:0.37939751532438565 after:0.3657234872281573 three:0.09627491690600426 several:0.06405118035998404 :0.09455290018146868 +is:0.18664184340190673 are:0.16503447329117693 was:0.12068303449133248 being:0.10479864639835004 :0.42284200241723385 +is:0.6788852473665451 was:0.2830550156910122 the:0.029556604500512697 a:0.00391944590455389 :0.00458368653737609 +King:0.009226830142066206 Smith:0.002835595028981867 Johnson:0.0022578006924090944 Thomas:0.0018859635636410878 :0.9837938105729018 +person:0.35003581890501406 son:0.039992591573208745 on,:0.012724517941096249 r:0.01268957612974296 :0.584557495450938 +the:0.47281821866539 a:0.2634017826702677 his:0.08206099566164862 this:0.04235393064493694 :0.13936507235775655 +California:0.03542822642665962 school:0.024663429182166227 new:0.023394773914752358 United:0.01806074158152524 :0.8984528288948965 +a:0.2539447724464253 the:0.13331213782167195 in:0.052769323546322765 an:0.04799617085373444 :0.5119775953318456 +changed:0.35771144111468245 lost:0.24483564784267217 left:0.12382093393065692 paid:0.06540202779662302 :0.20822994931536545 +he:0.22013924998683362 I:0.0844762223557844 the:0.0065484903324920475 time:0.005595296731015181 :0.6832407405938749 +to:0.20607890293322353 and:0.15022871574739216 from:0.10236520877444273 cannot:0.07845797062502191 :0.46286920191991976 +cent,:0.0011868300085261746 for:0.00023557889280376783 and:0.00022605534485371293 cent:0.0001887095007709255 :0.9981628262530455 +was:0.2745065643490352 of:0.1287096934651882 and:0.07359801472420979 is:0.06635529665305342 :0.45683043080851327 +for:0.25166187457765404 of:0.21012238927325289 and:0.1974009835082314 to:0.17750060586453492 :0.16331414677632686 +the:0.6760792578726387 his:0.0667307026346447 their:0.06268066750171718 this:0.036949340320003576 :0.15756003167099586 +the:0.25597103021036877 Miss:0.053004249948910065 Mrs.:0.03792919365797253 Mr.:0.032758649586364874 :0.6203368765963838 +have:0.18284802043750578 the:0.09749239233096445 be:0.07240318439835597 you:0.027415474086005625 :0.6198409287471681 +a:0.801048056812145 of:0.0645753358801035 the:0.05102505877379839 an:0.02177623213221461 :0.06157531640173844 +and:0.18681026252345068 the:0.09268182941673048 but:0.03772253259134027 to:0.032454883815028486 :0.6503304916534502 +The:0.27829050296341146 of:0.17837414375169686 and:0.08680632305936112 the:0.07804739889935855 :0.37848163132617196 +of:0.20320421019774274 and:0.12668543733186946 the:0.05880149925182727 The:0.03291875949432502 :0.5783900937242357 +to:0.4357860765310445 will:0.28930949952445206 shall:0.12150711142019774 may:0.10399677544771549 :0.04940053707659026 +about:0.08728270977873957 10:0.07447794912066655 11:0.04675240845461753 12:0.041022697338335336 :0.7504642353076411 +to:0.1950392526328464 worked:0.160033996640423 come:0.09828567141431867 warm:0.06864793226384933 :0.4779931470485626 +as:0.02361757550737217 sale:0.012235163268118104 articles:0.009130092683399106 that:0.008806712161111174 :0.9462104563799992 +said:0.14076406727140447 and:0.09316907350107216 general:0.05359996076496298 state:0.040885004727758065 :0.6715818937348024 +they:0.11883692679672407 and:0.08684862955917864 which:0.009713056271933496 have:0.00953804360899129 :0.7750633437631725 +of:0.9606606541941312 and:0.017020711581438534 is:0.009707460209243936 the:0.00411824176598213 :0.008492932249204494 +and:0.042853137696234056 white:0.023314101597667263 number:0.020128613139747266 but:0.01885705799055611 :0.8948470895757953 +A:0.14990062691938835 a:0.07485121061775966 of:0.017279788211208128 any:0.01605748409447181 :0.741910890157172 +are:0.5546273697485841 the:0.24483169945220878 and:0.048807824807863796 of:0.03530191204497094 :0.11643119394637244 +parallel:0.9926895559754437 south:0.0019205600545586722 north:0.0015105739290434594 along:0.0010813013076608478 :0.0027980087332932584 +after:0.3985625287574781 To:0.19393310632532249 of:0.04857841897154447 and:0.04078090292392762 :0.31814504302172736 +name:0.09379790728195778 speech:0.03757604538430412 report:0.03591700519231836 ability:0.030897221554529355 :0.8018118205868904 +road:0.5623587529689464 Court,:0.3448119497466758 and:0.012238848170071443 ,:0.004896695373318041 :0.07569375374098826 +by:0.5636364476844357 on:0.1627034088808464 of:0.14500655901735013 nf:0.05787157812991511 :0.07078200628745271 +room:0.46557555068700524 door:0.13259013568026934 girl:0.02389738086906018 direction:0.005044470412951428 :0.3728924623507138 +The:0.057000634013226886 tional:0.043934465039107695 This:0.03490606849414524 the:0.025944206195278745 :0.8382146262582415 +party,:0.027320629622454816 States,:0.017494943324554153 tion,:0.014500102411857166 ;:0.01072007583485409 :0.9299642488062798 +own:0.06318957962941052 respective:0.03282582378120671 acts:0.009537355418382196 votes:0.009053291109898763 :0.885393950061102 +been:0.9986645903533199 oi:0.000938716653547825 not:0.00015074398731448728 of:7.193802510392084e-05 :0.00017401098071396113 +(:0.060133952882498114 Into:0.05655323642029538 to:0.017401667171018705 citizens:0.013273162841296137 :0.8526379806848915 +the:0.527715695313106 re-:0.17031990645885633 taking:0.08783036243063944 tha:0.07411010359451717 :0.14002393220288092 +of:0.27457184894504244 to:0.27166681098535267 by:0.16877559111474566 in:0.11260712152562033 :0.17237862742923907 +the:0.13370408946651308 and:0.11582531488028246 of:0.07028505247408395 The:0.035359669797908416 :0.6448258733812119 +of:0.5748076699819902 are:0.06748287950647266 ol:0.05195943665970548 ot:0.03885421778700265 :0.26689579606482905 +told:0.5208655994400695 il:0.12908387218286374 given:0.0995013682286976 to:0.08525577281593259 :0.1652933873324366 +the:0.2921036861255196 that:0.15668244436087367 to:0.05679517586658134 our:0.03499401045829595 :0.45942468318872937 +and:0.30888104034613356 of:0.2634281139019305 on:0.1893210018413965 to:0.1027820885013536 :0.1355877554091859 +requires:0.5340996418454058 with:0.20894351453993512 the:0.12299083029236234 of:0.07219623117869958 not:0.06176978214359722 +to:0.2051099412465946 in:0.16033509729429624 of:0.14106937567785977 from:0.09617387609439336 :0.3973117096868562 +mortgage:0.9478950837360074 he:0.01562768934394108 it:0.009481728660392227 I:0.004554849039838406 :0.02244064921982081 +the:0.16772890821754266 and:0.13314013859032126 to:0.10048156540002956 in:0.03355878099951216 :0.5650906067925944 +is:0.09204168884285949 into:0.08215730050369328 of:0.07598027493257258 in:0.06743200826470623 :0.6823887274561685 +same:0.04574358042052213 highest:0.028782466053877055 national:0.021792222875761325 paper:0.013797117274910089 :0.8898846133749295 +reduced:0.06021074584744068 worn:0.04020580153892622 worse:0.028747580482971737 changed:0.026190654332981133 :0.8446452177976803 +and:0.4988160530717637 or:0.22331921260939985 the:0.1405061002405509 Every:0.04167883797587968 :0.09567979610240587 +return:0.24063246441880334 be:0.06973704968242231 go:0.03362678389296126 vote:0.019251185776860094 :0.6367525162289531 +a:0.4154752849871416 that:0.148950284447763 every:0.13571718891242857 the:0.018106176746361266 :0.2817510649063055 +the:0.5444832850951686 a:0.10108614127166904 their:0.039700262259501684 an:0.03441100117096819 :0.2803193102026924 +opposed:0.4419772297693773 ing:0.11378857061245388 provided,:0.11085869233660141 the:0.08008703382360823 :0.2532884734579592 +the:0.2766758673372706 a:0.10822471148390095 one:0.04144579761389969 his:0.013720733018861944 :0.5599328905460669 +man,:0.08039876301028487 man.:0.07664475150726288 men,:0.025909909967705747 people:0.02125007889805986 :0.7957964966166866 +him:0.6151062879936553 down:0.36211055485755106 on:0.013111243095742103 us:0.007696629863019577 to:0.0019752841900320083 +all:0.0390718013144628 also:0.03409117926184516 said:0.028411149589273408 found:0.02659941627982755 :0.8718264535545912 +be:0.9862113246741168 he:0.004460715470037945 bo:0.003090023337352538 wns:0.0012680766513078956 :0.004969859867184842 +State:0.53534824198908 National:0.11738713140807679 County:0.05835096071374803 said:0.0501941601635358 :0.23871950572555928 +opening:0.052655211397991286 war,:0.02984733887609389 said:0.015557119277606574 the:0.015522397515528004 :0.8864179329327803 +more:0.5084220833455679 less:0.20555111284077487 time:0.016010425506335944 rather:0.015388534849846817 :0.2546278434574743 +turned:0.28280441333389505 turn:0.11863682868317396 asked:0.08416645898477217 passed:0.052007770952189586 :0.46238452804596925 +will:0.3918152092639332 would:0.17752595547805688 has:0.12717069744474138 had:0.05049878244582239 :0.25298935536744616 +were:0.37191319946261564 and:0.19233911745356758 which:0.16054390730812754 was:0.07067446614908646 :0.20452930962660265 +of:0.14178727805143937 and:0.12582741937167588 to:0.05671585607174221 in:0.04345780253120658 :0.6322116439739358 +as:0.5850507453421467 by:0.14202252016746764 As:0.10498564962855206 of:0.05391240727507884 :0.11402867758675472 +and:0.17258863597836613 of:0.08721649342741448 The:0.08287458542517032 the:0.06028994272392932 :0.5970303424451199 +right:0.40106924453840376 kinds:0.06743404913000833 right,:0.026578794344427392 gone:0.022253904701513103 :0.4826640072856474 +a:0.3484691083970193 with:0.16850238662551925 in:0.1671388737087276 the:0.16399240106946006 :0.1518972301992737 +the:0.03195203828260021 two:0.019989376159637858 old:0.01958249722645956 young:0.018025300805593118 :0.9104507875257093 +OF:0.2290697641807898 .:0.011337843418859298 of:0.009554693647828485 and:0.00590693127122732 :0.744130767481295 +Co.,:0.8545326776204697 Co.:0.11259769655582358 Company:0.006917647862340987 return:0.0009220185555362462 :0.02502995940582944 +as:0.5488831369631081 by:0.15291338675872929 and:0.13648675148759745 with:0.11565020907119024 in:0.04606651571937501 +a:0.30363653045221284 the:0.10613244326504856 this:0.0380444919136131 no:0.020764544071996335 :0.531421990297129 +Central:0.06691353129901914 Pennsylvania:0.06633230825909875 Pacific:0.05687867328904079 several:0.015954541491030073 :0.7939209456618113 +the:0.011866950743771726 of:0.006742473276215519 a:0.0033982091034949037 c:0.0030806269406098282 :0.974911739935908 +ing:0.06650757836952217 beginning:0.05761113182493272 taken:0.03780862879106903 ance:0.03663560564442965 :0.8014370553700464 +same:0.032875348780726704 most:0.027740252741317733 leaves:0.017610762450119985 the:0.016445304138130445 :0.9053283318897051 +country:0.021202303176051828 second:0.01942632223559922 people:0.019422260726777222 latter:0.019380704495371884 :0.9205684093661998 +of:0.09035235607734679 and:0.07987098391471971 the:0.07507444376615427 to:0.03280748853043819 :0.7218947277113411 +the:0.4729297413350454 en-:0.11818060560869917 to:0.03129732078967135 a:0.030168560773364557 :0.3474237714932196 +of:0.391564534750666 and:0.19905946265108967 in:0.10845438500543428 to:0.057804689735211356 :0.24311692785759864 +and:0.186700724101207 was:0.1392795935494132 is:0.1287072743209432 to:0.046913140701883314 :0.4983992673265533 +hair:0.08246709144689489 weight:0.011984283205417978 wife:0.011028811943900324 of:0.00992758630088415 :0.8845922271029028 +interest:0.0947736972903078 degree:0.0422160291317348 favor:0.035698015006467736 influence:0.02357831874034287 :0.8037339398311467 +and:0.26761505385360107 of:0.13714251116405612 for:0.06666960433160711 at:0.06396571576708583 :0.46460711488364975 +of:0.19912926589486316 and:0.10802769919542164 the:0.05586022543407748 to:0.02950669450452138 :0.6074761149711163 +on:0.406558326225582 with:0.1961332872750068 to:0.15041285718396344 at:0.1301506419745182 in:0.11674488734092946 +what:0.3788059142531223 all:0.3723208741970575 ill:0.12795275600223302 everything:0.07405369164567355 n:0.04686676390191369 +and:0.8961124416883586 playing:0.008662522672197866 of:0.0007587768111800303 the:0.0006653258703228723 :0.09380093295794063 +July:0.32875698048170604 August:0.22846198952110844 May:0.18684397937059533 September:0.18624940886794128 January:0.06968764175864897 +by:0.3841858257675552 and:0.1752463027277831 to:0.15750488746349223 of:0.15498933602450168 that:0.12807364801666773 +Mayor:0.018162567563317713 highest:0.013588728969971134 health:0.011380287550477467 President:0.011332192760554917 :0.9455362231556789 +now:0.08137109726064315 taken:0.06033020204214916 put:0.0563369820129257 drawn:0.04357140734115619 :0.7583903113431258 +for:0.36682563330784945 lor:0.20517465319446335 when:0.18095786404303651 upon:0.09935054784916361 :0.14769130160548713 +favor:0.2738115898423119 life:0.014380877402327198 rule:0.010375761880717347 range:0.00753285219910779 :0.6938989186755359 +was:0.43940915934978714 is:0.23523890319322308 has:0.12115242304256783 had:0.10799794332218232 :0.0962015710922397 +the:0.06314720865545133 and:0.054914094588227436 made:0.03978311301184261 tion:0.025589245430131073 :0.8165663383143476 +a:0.5654823404027828 the:0.08618076369731198 any:0.07003841456121568 every:0.050544762507936505 :0.22775371883075313 +laws:0.004109816485177679 one.:0.0015770651508946979 law.:0.0014336041892132004 companies:0.0011855377151148046 :0.9916939764595997 +all:0.07429893334596445 men:0.05347178830642207 way:0.04817962797689548 water:0.018305556408431164 :0.8057440939622867 +a:0.6067293241319849 an:0.24134761167078422 so:0.0633558399696883 well.:0.054643033960100736 by:0.033924190267441985 +time:0.037296259878118 day:0.02697584092141729 tax:0.019189118468942435 camp:0.013663111119325036 :0.9028756696121973 +and:0.2868288507386212 America:0.1591390973012739 of:0.03723785875546663 are:0.031052876315505518 :0.4857413168891328 +that:0.42155276870676156 said:0.10709977723224036 before:0.05041462197218359 when:0.013890454931351348 :0.407042377157463 +that:0.3433973754917475 gets:0.059271102402530466 makes:0.027465569292739158 and:0.022429395683381773 :0.5474365571296012 +of:0.07336479964793505 W.:0.03947095251909084 A.:0.03852571269675559 C.:0.03771559690677861 :0.8109229382294401 +or:0.5306556766453281 not:0.21249320181907214 would:0.1039322006536684 But:0.04830876323403291 :0.1046101576478985 +would:0.16928671428481826 I:0.12966041180488666 they:0.10320627814111481 who:0.08952571456769733 :0.5083208812014829 +the:0.9157410834722812 his:0.020984506923192967 up:0.014171275584831562 a:0.012429097989578655 :0.036674036030115466 +the:0.31478370437498304 out:0.11841729381690828 in:0.09155857812310855 and:0.085403378705103 :0.38983704497989724 +prove:0.07832103330461031 profit:0.07138473649026998 supply:0.05685674541940928 him:0.053571059816608556 :0.7398664249691019 +the:0.23021902310156378 and:0.10550279017565689 The:0.0556559067867709 a:0.03607641255002306 :0.5725458673859853 +rates:0.7504816642218729 salary:0.07766904680963874 price:0.04446505226752259 wages:0.04020201234599161 :0.08718222435497429 +of:0.586992951013652 from:0.22196159086732062 and:0.049806993024242685 in:0.02932157028983893 :0.11191689480494572 +first:0.08883253961700803 time:0.07291649670637144 debt:0.04056410641504538 matter:0.03709274026817586 :0.7605941169933994 +the:0.41348551221189916 he:0.11643605834617086 his:0.03916281219653306 a:0.038330641836676026 :0.3925849754087209 +a:0.9687775355893371 an:0.005048368196343387 more,:0.004434704892002837 the:0.0031799883640575574 :0.018559402958259197 +which:0.22581562958473708 who:0.19744655932218405 to:0.1923011639105105 didn't:0.18536909477180244 :0.1990675524107659 +hay:0.3045044965886352 manner:0.11166104431982833 right:0.02480096097937949 first:0.02362386061089235 :0.5354096375012647 +just:0.3532077043490166 not:0.3479258038165944 also:0.1300746662460638 been:0.07256170936896549 :0.09623011621935978 +the:0.3968540658238307 of:0.13368694168868014 on:0.10152881276271118 and:0.0749656691322284 :0.29296451059254947 +all:0.6886927388977502 the:0.1084441534850616 this:0.02930399316848907 once:0.02599022385194049 :0.1475688905967585 +been:0.3127773694667317 a:0.06835674162749865 the:0.04792305731042416 not:0.03505699509310008 :0.5358858365022454 +of:0.5168849513437691 or:0.12267883259790324 to:0.1000384247468312 the:0.08857437246374131 :0.1718234188477552 +young:0.7832416436523799 W.:0.02318319957252059 new:0.022367702435795223 Young:0.006987222587541681 :0.1642202317517627 +a:0.37551491424818173 the:0.1395630643184913 his:0.07325272894784893 gen-:0.034491859278399845 :0.37717743320707814 +at:0.6753967596753421 his:0.21906590482789556 her:0.03704828280127624 the:0.03441490894910097 :0.034074143746385184 +and:0.2977612829775724 between:0.17751304670997234 to:0.15353870893014285 of:0.08261457790669917 :0.28857238347561326 +of:0.19720207565825032 to:0.12557820483966298 in:0.12234738080145147 and:0.11893480636259589 :0.4359375323380393 +of:0.13112224994525237 to:0.1277718194893887 is:0.12529800564451168 as:0.05018440897195494 :0.5656235159488923 +and:0.08394192589606213 looked:0.07338021348591531 look:0.060025551947179116 ing:0.04206343081789098 :0.7405888778529524 +time:0.13160670765915655 rate:0.11760910361649468 hour:0.0897606297698946 end:0.04573538028433519 :0.615288178670119 +put:0.9999990620509357 its:3.710646679851293e-07 been:2.474836775695807e-07 made:4.25031366260817e-08 :2.7689758212113414e-07 +He:0.19878085310683208 Ho:0.1765780669719992 They:0.17271858001527124 I:0.16113326718771298 :0.2907892327181846 +general:0.4867540648016302 the:0.10883999154688782 through:0.10610581977807981 back:0.055519173595823604 :0.24278095027757857 +Mr.:0.1888467064978303 the:0.11128929192664647 and:0.08952444125177732 The:0.0727553622229817 :0.5375841981007642 +to:0.12566461927232886 would:0.10153313950239325 I:0.09001367056642863 who:0.07362857445804746 :0.6091599962008016 +of:0.2037366127019299 and:0.10745814123532456 to:0.0848023530097271 in:0.030280533676893494 :0.573722359376125 +do:0.04226434925668797 and:0.03326065807059345 Philadelphia:0.008828484457744553 Boston:0.00770156325830318 :0.9079449449566707 +that:0.1945500664265183 I:0.11169345015055959 you:0.10457857837039576 has:0.08509740058895307 :0.5040805044635732 +ing:0.13010238129487256 ment:0.0755331664340592 here:0.04313885489072405 letters:0.019146606682863963 :0.7320789906974803 +each:0.09175396025104668 ;:0.018875601463642134 alone:0.011073674798255499 of:0.009280595194074627 :0.8690161682929812 +of:0.9062671872145434 between:0.025079235076536446 at:0.007656744285568357 and:0.006880367144059114 :0.05411646627929276 +horse:0.44231552972975624 I:0.2512502545205676 he:0.21538722578233171 ho:0.04902400364166404 :0.04202298632568038 +of:0.1308628390643065 the:0.09638141445011668 is:0.05712356283991145 or:0.05401728140471589 :0.6616149022409495 +from:0.1530247613062157 one:0.1293045283907571 a:0.08849933649426778 two:0.07688301079647877 :0.5522883630122807 +the:0.3929921001657733 to:0.17423077527982644 little:0.17212712447362608 wait:0.04919514092533781 :0.2114548591554364 +that:0.15706849264048495 If:0.060307629526319996 came:0.003677537221830911 The:0.0028700695563590537 :0.7760762710550051 +around:0.09049864582205323 people:0.07932219338723609 surface:0.06792284871920624 facts:0.030293039907000475 :0.7319632721645037 +the:0.7768419059018097 tho:0.13840809919859393 brick:0.04186339552625196 tbo:0.03438745445294548 said:0.008499144920398924 +to:0.4037157212133753 can:0.10821908495621844 would:0.10068506207004835 and:0.09233195021143842 :0.2950481815489194 +sell:0.40221888483171575 make:0.1123563299078898 get:0.06878639406819924 purchase:0.06780342936115659 :0.34883496183103857 +work:0.0704337556985108 government:0.03797685290373078 country:0.03198607411977919 earth:0.030749941873129075 :0.8288533754048502 +of:0.5038466331194459 in:0.12510876053193407 to:0.1068655027093541 on:0.06697178596679022 :0.1972073176724758 +of:0.22861516184669556 and:0.1933132523802142 it:0.1854707176286803 the:0.14060477258131127 :0.2519960955630986 +railroad:0.2415619250822786 construction:0.11955766276412255 new:0.10464860274700885 said:0.048691026182304795 :0.4855407832242851 +who:0.42627789197957805 are:0.11397018382101119 were:0.0902857085767948 had:0.08090352316347603 :0.28856269245914 +the:0.7848084757669763 tbe:0.16382762713029206 tho:0.023571758013139796 th:0.017398233670266505 their:0.010393905419325361 +by:0.2084210836826575 to:0.1955310509555887 and:0.1377487324712258 in:0.13435061650350524 :0.32394851638702277 +never:0.20213925843567082 and:0.18921356793938598 have:0.1649662883577415 she:0.0905079700576462 :0.3531729152095555 +I:0.30084727289066626 they:0.1628505380881895 he:0.09009196786938142 she:0.05712680911061062 :0.38908341204115227 +place:0.0015478484344063146 box:0.00096178434748262 the:0.000730572758661523 M:0.0005042375285939867 :0.9962555569308558 +day:0.08322726501008001 be:0.027215038106413268 east:0.024709139827257663 term:0.018565168013307726 :0.8462833890429413 +the:0.8169374900820611 do:0.01772883555660661 tho:0.0168610477805739 to:0.016045827000504522 :0.1324267995802539 +on:0.18870731801926174 of:0.18421679996025386 to:0.17205939860119268 from:0.0497278315979147 :0.4052886518213771 +free:0.16309742961428722 daily:0.09023351216069393 proper:0.05030232437155842 liberal:0.03566129710781222 :0.6607054367456481 +tion:0.06427731725439446 ment:0.03628535369204185 part:0.03327707982360962 of:0.02190590686228737 :0.8442543423676667 +a:0.11043048223354603 the:0.09907945216035935 too:0.07177968611276914 in:0.05890075454832263 :0.659809624945003 +the:0.644585745729329 tbe:0.1176624936968512 their:0.07588317380373459 good:0.05032465399160698 :0.11154393277847811 +.:0.03027087542878587 re:0.027537492786641814 e:0.0202862500412519 te:0.019529362738363747 :0.9023760190049568 +more:0.21449171763655434 less:0.12152928899235352 there:0.04734003077999342 rather:0.040858616200413055 :0.5757803463906856 +they:0.4810204712739381 he:0.40530461215511115 being:0.010129394795753968 be:0.009681106351727265 :0.09386441542346953 +of:0.18469639050547168 in:0.11852465816981368 I:0.04678539508544005 and:0.04347179460425483 :0.6065217616350198 +to:0.08735130460069723 and:0.07449619369861048 of:0.06251975835804134 the:0.05351116323067277 :0.7221215801119782 +party,:0.13068918578022184 team:0.06924272801316364 failure:0.021110763051276665 knows:0.01645699381421549 :0.7625003293411224 +the:0.45713156594452387 a:0.14297982295253805 their:0.041003906094328885 his:0.03231706800097524 :0.32656763700763414 +impossible:0.23463724509358658 different:0.05161231313173462 a:0.03223391275578564 as:0.0245050260735342 :0.657011502945359 +it:0.10889914012453866 husband:0.03810581489378585 that:0.031003929218785017 certainly:0.020664465590162964 :0.8013266501727276 +said:0.22025348947961015 a:0.15425246060795092 the:0.0019619818566963174 to:0.0018998433181580932 :0.6216322247375844 +on:0.7609345854260967 they:0.08731019870214421 the:0.06430143540131225 to:0.050813062292952765 of:0.03664071817749406 +only:0.14418198090164241 the:0.08518700734971592 His:0.07991730771744676 and:0.05791011722795979 :0.6328035868032349 +the:0.475479163912843 his:0.0760293528287281 a:0.05216633168705272 this:0.030775729854528783 :0.3655494217168474 +it:0.28834165541957085 of:0.23509554630138133 them:0.2039788304582371 the:0.05375105828199807 :0.21883290953881265 +and:0.22437009777816613 of:0.17592939015721099 yesterday:0.05941784525005831 that:0.056770358750124296 :0.4835123080644402 +advantage:0.21358567600330022 the:0.025109053431291904 of:0.017305927239586284 and:0.012450076233860446 :0.7315492670919611 +in:0.3218359111221824 on:0.20876036244299445 at:0.17850044553827882 for:0.15239307682372075 before:0.13851020407282377 +interest:0.27710138445996885 Interest:0.012875094020864156 continued:0.010314008703738779 date:0.0077722541411701 :0.691937258674258 +of:0.09547990661747045 white:0.0694444093178799 and:0.03629039951721903 general:0.026402589141752156 :0.7723826954056785 +run:0.13426506293020604 stage:0.02870276514261456 business:0.021820992927071563 sense:0.021162699596714556 :0.7940484794033932 +taking:0.15194414768287773 the:0.14201967478294222 each:0.06903270238032884 finding:0.013073301141152235 :0.623930174012699 +the:0.15196437172939986 a:0.02984255533239313 other:0.02372352281858843 his:0.019157817178974905 :0.7753117329406436 +of:0.3748380976008671 on:0.17514822501047714 through:0.15582708072881393 In:0.1517749364847884 ot:0.14241166017505336 +and:0.1876939085678368 that:0.13465647591052954 but:0.07226525539014028 If:0.05073703085913547 :0.5546473292723579 +to:0.2658735785511917 he:0.13177180599351976 ar-:0.10932551217218296 of:0.0921021993773617 :0.4009269039057438 +been:0.8100581481106903 already:0.012863813865692665 machinery:0.0033788855459264797 evidently:0.0017751834171120036 :0.17192396906057852 +that:0.23186589349767323 any:0.2092574061109442 this:0.19804011987328202 the:0.19505490148887725 every:0.16578167902922333 +age:0.04396065267172462 press:0.017028495157311512 possible:0.010276855506407516 port:0.009990806513004219 :0.918743190151552 +and:0.17538758410564195 take:0.17341671609741163 away:0.09002465012064251 get:0.044204487560831646 :0.5169665621154722 +always:0.21233834139811916 it:0.15583059075894773 no:0.13084309238139374 It:0.12734548987017935 :0.3736424855913601 +was:0.19913531964144718 is:0.11324497708761543 and:0.07298103528461616 are:0.050773901060171246 :0.56386476692615 +town:0.04414061458904578 ,:0.01227030445398907 to:0.007473327813854129 plant:0.005707375315678807 :0.9304083778274324 +am:0.8316473904181271 have:0.09878073952128172 shall:0.011784977574826178 had:0.009263896361711889 :0.04852299612405305 +order:0.06217180517517136 hour:0.06031760892401439 I:0.05308726350150184 operation:0.03630232368014548 :0.788120998719167 +months,:0.05316894403750966 war,:0.04267124377970645 .:0.038098445337731046 business,:0.031123477954364525 :0.8349378888906885 +.:0.5389951754681255 N.:0.03923138990693731 the:0.011851535096260853 of:0.008555699708681612 :0.401366199819995 +few:0.10874393634631539 very:0.0332968546057443 most:0.022172916666145397 short:0.021706284653878385 :0.8140800077279167 +that:0.5731745260759387 in:0.09070991080225664 is:0.08723858461867418 and:0.07313544103423965 :0.1757415374688907 +at:0.04929268399799543 0:0.041505415706233305 J:0.03545174269807919 and:0.03534192278561782 :0.8384082348120743 +comes:0.23991152746104566 wishes:0.09936298246881609 come:0.06501537476456272 came:0.06274945080513548 :0.5329606645004401 +ple:0.4668077668913027 There:0.009061284918543622 and:0.0029153559119237155 to:0.002568506450459274 :0.5186470858277707 +1st:0.19773934761737186 first:0.018671771616941116 second:0.002175310698662366 fourth:0.0013337756038122371 :0.7800797944632124 +the:0.36565207955465256 this:0.24380816126504024 many:0.11884402194133127 much:0.10415471161847864 :0.16754102562049733 +a:0.3247733256424325 the:0.15406993316502224 of:0.09462027592462005 The:0.06457278898289007 :0.361963676285035 +was:0.25325059095332014 can:0.10717725055104559 saw:0.07851597438866482 is:0.07370203973841491 :0.4873541443685545 +street.:0.034265382404522184 Street:0.01588582381476022 country.:0.011299214259528616 ment.:0.01093732631643449 :0.9276122532047544 +said:0.12413696530107113 known:0.08371826001028633 true:0.0807962737835467 fair:0.04144607126040748 :0.6699024296446885 +to:0.9995158490494582 find:3.0163050157219394e-05 that:2.2578836361889643e-05 and:2.2240895032583913e-05 :0.00040916816899007596 +of:0.9529759726371803 in:0.018413064756245403 ot:0.012224535986158655 or:0.003382049675053616 :0.013004376945361962 +feet:0.9999865735583114 back:1.0831853727128675e-06 duty:6.135637950560428e-07 place:5.031504481000751e-07 :1.1226542072767211e-05 +the:0.2836377459419953 a:0.03058361336974438 that:0.029086966006431573 this:0.02512946762555195 :0.6315622070562767 +in:0.8203724807911209 In:0.1451959471358074 the:0.004792391256549117 steady:0.002685255292662049 :0.02695392552386057 +used:0.30449487790365504 the:0.09108701117355752 made:0.07485523126212586 been:0.07378239124590816 :0.4557804884147535 +is:0.09292130030531215 by:0.06542457787373425 and:0.04155907270936735 that:0.041111710511890186 :0.7589833385996961 +and:0.3432367416877219 thence:0.14847069319648049 lot:0.10199335988420358 block:0.08145649673528994 :0.3248427084963041 +not:0.4055044715355594 otherwise:0.22741565096795677 now:0.11949804744499315 it:0.1106026004665415 :0.1369792295849492 +and:0.9997727353758727 or:0.0001327870178845036 aud:1.3904252976221188e-05 anil:1.0566355625068619e-05 :7.000699764148896e-05 +great:0.11429681135159102 recorded:0.04019670382667835 it:0.021476728375750178 being:0.017818258147835442 :0.8062114982981449 +family:0.11607422635829168 State,:0.03858544148406158 an:0.004939712795897678 woman:0.00421326134935143 :0.8361873580123979 +it:0.9999980158449308 and:7.836837864952983e-07 I:5.227156616426836e-07 so:3.20389383660772e-07 :3.5736623749911965e-07 +of:0.08504677839610797 and:0.07339930163255261 right:0.0556095467381543 a:0.04765131260849609 :0.7382930606246889 +that:0.6350283982594287 by:0.12940181474015594 as:0.06956963890620053 with:0.03269839809564087 :0.1333017499985738 +with:0.21637286069579298 gave:0.1641887096951246 for:0.12646110771644078 in:0.1262463771855351 :0.36673094470710643 +years.:0.30129869244759167 life.:0.14659961989968612 a:0.0029836155325843644 one.:0.0029459217150236893 :0.5461721504051142 +brief:0.14807609626560805 ing:0.049376584508201704 war,:0.02474042121307362 work:0.01947205223660669 :0.75833484577651 +it:0.22436873796681991 the:0.2236325751679715 he:0.08121405011444204 has:0.07483077654834051 :0.3959538602024262 +the:0.909519845708681 tho:0.06561084455121036 tbe:0.01903347518221028 toe:0.0020733857964586122 :0.0037624487614397895 +the:0.2540857301952964 to:0.09614993183336129 a:0.09157171666676182 and:0.07167512129104363 :0.48651750001353694 +District:0.1577721937256392 House:0.0905580072195362 District,:0.005350984603380168 Township:0.0021511125043518747 :0.7441677019470926 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +not:0.33451549530770075 more:0.2068826391523266 less:0.14685908333648304 very:0.09346435121925394 :0.2182784309842357 +1:0.09669188075283096 naturally:0.056314448271210064 most:0.03510620743424309 him:0.01966123541865216 :0.7922262281230636 +It:0.050406119614954004 it:0.032656168814879975 claim:0.008499002455341012 test:0.006615510060275339 :0.9018231990545498 +which:0.5325272395055249 of:0.20487945469055657 in:0.11110889628871294 to:0.053524410223025634 :0.09795999929217997 +had:0.3420140936268225 man:0.1962816546149569 have:0.10334199786389624 has:0.044056251513853034 :0.3143060023804713 +end:0.09877805163081378 size:0.04710728964619543 beginning:0.04145981415719667 change:0.03878526258722702 :0.7738695819785671 +to:0.41266506951791065 from:0.2946494899575444 into:0.0851382411950827 under:0.08021942988174299 :0.1273277694477192 +In:0.5812087397333415 with:0.25967117409309204 of:0.08613508211052776 by:0.037204150538725514 Thus:0.035780853524313115 +the:0.5887084906524432 tho:0.25894111835051903 said:0.07454741887915825 a:0.0541053535555332 :0.023697618562346506 +every:0.2787448726945394 the:0.2522113083252354 sub-:0.16533197010712536 your:0.15373116615631555 :0.14998068271678433 +as:0.06383654506057934 those:0.06060023797422142 without:0.05406770204424867 and:0.030311214570617806 :0.7911843003503328 +to:0.11194979155360896 and:0.09796413043058702 the:0.051356600214313326 of:0.050179177325052775 :0.688550300476438 +have:0.49596872579083934 had:0.10078900991606901 may:0.08820985434709842 could:0.05818613731465513 :0.2568462726313381 +few:0.9506566149476371 ten:0.005200007309166728 low:0.002452196170498582 three:0.00042993105436407345 :0.04126125051833334 +other:0.27556484214540683 a:0.2543672789607731 the:0.24823255548690526 another:0.06040038715339544 :0.16143493625351923 +that:0.8690705953481379 himself:0.0493455035813987 but:0.008431776013546305 that,:0.007799144482766357 :0.06535298057415073 +the:0.3905021830823624 a:0.29671558885259647 an:0.08009592394977379 no:0.03497618560498799 :0.19771011851027942 +of:0.22096658421708584 and:0.09299023471933691 to:0.048707643973271056 the:0.03538968768869844 :0.6019458494016078 +of:0.38616350973551306 in:0.19218620802501188 to:0.15904960882584313 told:0.14960225695967597 :0.11299841645395603 +such:0.1387663332066411 though:0.07604849832662103 make:0.03534932132259668 and:0.028477317912253875 :0.7213585292318874 +wonder:0.42881277944200896 see:0.04426843918724494 stated:0.03297463891835606 asked:0.019252522454750197 :0.4746916199976399 +these:0.1676908509812871 such:0.08569695701202255 of:0.07239154091823523 some:0.06623641787697888 :0.6079842332114762 +The:0.6674890901592914 This:0.13906975444370331 That:0.033321262052765706 But:0.03220576044335069 :0.127914132900889 +to:0.4656497841098994 in:0.12010789310550964 of:0.08323314480842632 with:0.08000935677503766 :0.25099982120112696 +will:0.7447978433901946 would:0.09796106624825093 must:0.07275667521869279 to:0.048194028989410005 cannot:0.036290386153451475 +and:0.09289094130394711 of:0.07972424900925228 the:0.06672537847722361 to:0.03271779909049193 :0.7279416321190851 +those:0.8569425577724522 all:0.02866445756525415 not:0.00805689877201661 therein:0.005636599141180667 :0.10069948674909632 +ture:0.095496788555267 house:0.04381809859381052 and:0.03290102087770806 of:0.02467387379274303 :0.8031102181804715 +which:0.36601146981428717 the:0.2595948883008792 in:0.14964013397639778 for:0.12588651371675053 and:0.09886699419168543 +power:0.09167701592972215 room,:0.08487633001301773 life:0.0587383556813608 efforts:0.04527809234116913 :0.7194302060347302 +to:0.05617405518584633 more:0.02167993658775995 ing:0.018186108947610313 in:0.015169978026556986 :0.8887899212522262 +is:0.26328424562219166 guests:0.23188763975155582 who:0.21065413510946643 would:0.17718438625542726 members:0.11698959326135881 +that:0.5585070668141896 the:0.41005611599904346 take:0.008459637071892446 same:0.006349744727132282 :0.016627435387742154 +for:0.2547527362701079 and:0.1364404913413885 of:0.12429714876669265 a:0.06934594959598378 :0.4151636740258273 +and:0.0643192960017068 ers:0.04018377148956032 yellow:0.04013154607181783 feet:0.026719338453411588 :0.8286460479835036 +the:0.49247009952276255 by:0.4070471970751057 and,:0.040798264162118805 and:0.03196868018912839 :0.027715759050884376 +man:0.03650053378742163 weather:0.02666340219919823 road:0.016039262185536026 vote:0.011748976528986268 :0.9090478252988579 +his:0.570219216860099 a:0.06051128239551734 one:0.008446275308849775 the:0.006749077076395032 :0.3540741483591389 +and:0.19154599953757448 of:0.16552576215159423 in:0.15942835013857795 to:0.09001147338548342 :0.3934884147867699 +of:0.9672743413311514 and:0.015848398833080146 Is:0.0022115171069973186 or:0.0015915632428139346 :0.013074179485957153 +of:0.7325761160240772 to:0.03811396824115891 as:0.022826064109083142 for:0.01860905863602689 :0.18787479298965393 +the:0.015068000079825424 hand:0.013858176869924988 to:0.013821537556906183 a:0.012283607355756771 :0.9449686781375867 +this,:0.9372739541418212 this:0.014315482185571746 the:0.0014152690354461385 Minnesota,:0.0008402337328037247 :0.046155060904357094 +the:0.2411649065701133 be:0.07691772767789559 a:0.030071313489232643 have:0.02761038795093996 :0.6242356643118184 +the:0.13917073504478678 a:0.049236324485484574 its:0.04148682746093873 this:0.018569846708590524 :0.7515362663001994 +the:0.8875048963669797 tho:0.04572549855764708 tha:0.01583491725894711 said:0.01438744895896891 :0.036547238857457 +The:0.2240824080687633 the:0.1932637101116124 and:0.0843065342388001 no:0.07227697704037078 :0.42607037054045344 +or:0.17187468036790923 one:0.16546326699889158 five:0.10777109675666885 increased:0.10137588825569761 :0.45351506762083277 +the:0.9140319331090311 serious:0.022753000759624584 d:0.003040308621374044 all:0.0025311905179215472 :0.05764356699204874 +the:0.28432520918896687 to:0.13482859810967268 a:0.09658121741402288 in:0.08317762796948343 :0.40108734731785395 +off:0.059335637255958834 low:0.03877260967980463 down:0.03156244249950201 er:0.02110582589314611 :0.8492234846715884 +the:0.5266209591160799 as:0.28113462179209614 by:0.0628314372861757 to:0.03405132081941379 :0.0953616609862346 +position:0.057772292523095715 reason:0.0374400598020807 way:0.03422683786897612 man:0.009748939582297915 :0.8608118702235495 +believe:0.013988006388089487 it:0.005869747418134968 appear:0.004008010568754285 there:0.0038719385788478305 :0.9722622970461734 +the:0.06304601544633123 and:0.040939959813271476 The:0.021546462144876214 of:0.014997765310460473 :0.8594697972850607 +duties:0.013002476122742855 butter:0.012664353956818971 tions:0.01215926206537347 and:0.0117122718358249 :0.9504616360192397 +more:0.22890977346931063 no:0.1733118034533105 few:0.12087176897661711 many:0.09753429604874707 :0.3793723580520147 +mean:0.19676466845012472 believe:0.17320212277415814 know:0.12482827723541326 appear:0.12340153646799273 :0.38180339507231137 +man:0.1952488925656972 farmer:0.08326072077774299 child:0.052369013637868285 port:0.049897333280698404 :0.619224039737993 +favor:0.8462709555660338 need:0.09436846684330473 fear:0.011399294988404246 want:0.007495148416166717 :0.040466134186090616 +being:0.8813913068761998 lying:0.06932171412160026 of:0.0007465235125758791 3:0.0007310862087943422 :0.04780936928082983 +also,:0.8275625772337096 and:0.07342435639394017 would:0.018833416715086534 of:0.017689518976480044 :0.062490130680783594 +north:0.2807602260292726 east:0.2788644701989259 west:0.2320035782563956 south:0.1908735714178894 :0.017498154097516434 +known:0.21618369568167897 enough:0.1871579185014546 as:0.0765314697650934 not:0.06844971146085184 :0.45167720459092126 +was:0.3371947419622305 were:0.1518138839509406 and:0.03879914136562523 been:0.028691378947913928 :0.44350085377328985 +.:0.9080328746129226 C:0.00011227180602894137 .,:9.614139712309935e-05 A:7.049805016221046e-05 :0.0916882141337631 +the:0.14997532722756257 a:0.05943105122326818 of:0.05014889916650694 at:0.0384260298090594 :0.7020186925736029 +into:0.28658384399689596 and:0.104146583160751 of:0.09006447253845642 was:0.08984941726669313 :0.42935568303720356 +food:0.1828781596869364 chief:0.09044636371861979 blood:0.07108881500794091 large:0.062285307673828255 :0.5933013539126745 +will:0.6856621944048884 could:0.26159486646930336 would:0.026209650442945907 to:0.017874352031890965 must:0.00865893665097157 +He:0.010237858225773468 who:0.008766771914277443 Smith:0.004476019790289845 Johnson:0.00391535655723691 :0.9726039935124222 +of:0.21652116500159418 and:0.09831141740824124 to:0.09453431840800568 in:0.07582010054399108 :0.5148129986381678 +and:0.09371665655924537 the:0.06878881059554984 of:0.05645125241534462 to:0.03384277424261602 :0.7472005061872441 +tried:0.07790140169337759 put:0.0016434323145037184 law:0.000876527010286569 to:0.00056527521913177 :0.9190133637627004 +and:0.19345867868188021 said:0.18649355411090499 stated:0.06055099111738071 ing:0.04969581134469372 :0.5098009647451403 +control:0.29690931188718095 the:0.04684898695064032 i:0.024461497405669445 what:0.023281591750059158 :0.6084986120064504 +the:0.9354820126593586 all:0.016049950596619043 tbe:0.012667850559047544 tho:0.012143925714702576 :0.02365626047027214 +will:0.336349711222161 let:0.24867805031441834 to:0.14956352079621696 could:0.14452302238576947 :0.12088569528143406 +on:0.4971876723535435 and:0.09108459142642755 any:0.07343829176044753 to:0.05948318658254666 :0.2788062578770348 +at:0.41640388383635557 every:0.19333564028453565 the:0.15894131422806396 that:0.10239102726461882 :0.128928134386426 +If:0.22496799948274976 that:0.17413301187507757 I:0.10281589888193866 first:0.08639394061329488 :0.41168914914693916 +do.:0.029354522093871446 purchase:0.011471336027070227 ask:0.00758588541172408 see:0.006209751693445265 :0.9453785047738892 +the:0.3168408857515744 Fort:0.2530363390577623 San:0.029792006050212528 St.:0.012230916593202397 :0.3880998525472484 +the:0.631722218628527 -:0.07363867260630351 an:0.07154394296978762 her:0.05154400955155619 :0.1715511562438258 +A.:0.029590361170116194 P.:0.02660746022537299 J.:0.020900767502889238 September:0.013188768038395181 :0.9097126430632264 +hoped:0.2717751913314319 not:0.18931450127848717 my:0.10103757428123185 the:0.09458861389565894 :0.34328411921319 +the:0.8341074468965545 their:0.04291564173106129 its:0.03736411561832815 tho:0.02886262187922097 :0.05675017387483506 +by:0.48775652655816526 through:0.1908736845954146 if:0.0535208088535178 -:0.0028358191320217983 :0.2650131608608805 +for:0.6140207582766546 of:0.12607890210531414 and:0.04306331302423914 the:0.03921717031817171 :0.17761985627562044 +it:0.4659990731355151 this:0.13238980691907593 he:0.11447065345514731 there:0.08666348309236217 :0.20047698339789952 +California,:0.23466835555939808 in,:0.14855439019785038 to:0.14111334309919582 up,:0.08696673453381618 :0.3886971766097395 +other,:0.49248046590836575 other.:0.48684161001151377 other:0.002507938864201809 side.:0.00219763808288322 :0.0159723471330356 +United:0.9905956857011587 Southern:0.002272874145552731 U.:0.0007704571459259445 Northern:0.0005917308993040673 :0.00576925210805871 +4:0.2902238075804966 ft:0.19011357439559223 No.:0.15864890796397807 5:0.0594210820570667 :0.3015926280028664 +warm:0.042436840381839494 ;:0.02815165883807472 so,:0.013100556419994828 im-:0.011803176373777396 :0.9045077679863137 +said:0.32424511697070674 says:0.08971353171260069 states:0.08336144934341323 stated:0.07635099517137264 :0.42632890680190666 +the:0.7658028516414672 this:0.025970586482382717 his:0.024574832078780525 tho:0.01294410006299858 :0.17070762973437087 +in:0.33232333006572773 by:0.23631575352881506 to:0.11348333585577988 of:0.11346614670855817 :0.2044114338411191 +at:0.761505408731155 before:0.049809521382576154 on:0.040488952500894966 en:0.0075513715063638045 :0.14064474587901007 +within:0.22221296457382983 and:0.15324355344413423 of:0.14280685156680986 a:0.07858073416678686 :0.4031558962484391 +of:0.35122055228422194 in:0.14133032134400614 and:0.12565430686488913 to:0.09062596057939164 :0.2911688589274911 +and:0.222434551868679 of:0.04841781737854177 to:0.0472616937922192 She:0.04643735366452495 :0.635448583296035 +and:0.8304909116857012 ana:0.07862565880814368 aud:0.009907386435813011 to:0.004926546668092915 :0.07604949640224899 +and:0.12451684369852087 of:0.09915085167347382 the:0.052872531557664366 The:0.04100472762257876 :0.6824550454477621 +office:0.08881624058687201 case:0.051014173241651806 course:0.050229407882931974 matter:0.03770160554365959 :0.7722385727448846 +liberty:0.19405799582079122 features:0.03919965706578772 and:0.031093312158334524 in:0.02267068352656427 :0.7129783514285222 +and:0.8284574769126782 more:0.016325017083824295 or:0.00932874911163354 a:0.009239817205009123 :0.13664893968685474 +three:0.8911404547949627 more:0.03532657289684288 public:0.0037727517761774222 four:0.001716276682033773 :0.06804394384998325 +and:0.14358893515595525 to:0.12398865189513794 of:0.07110678102815526 the:0.04791741764811738 :0.6133982142726342 +known:0.5397229927539359 such:0.06901320484486927 near:0.016831608910656277 some:0.013211104846557893 :0.3612210886439805 +the:0.09801237646631113 and:0.0795101355645268 of:0.06176205288526587 to:0.06060682758360368 :0.7001086075002925 +the:0.43035202216103546 Dr.:0.1939197240671188 his:0.04464460538934161 its:0.024218392091085915 :0.3068652562914182 +he:0.7543894632265767 we:0.05325710179561572 you:0.03651349990436206 they:0.026909883746840134 :0.12893005132660543 +never:0.7314408806554072 actually:0.128258220744918 ever:0.05564708232169417 or:0.009489129708222358 :0.07516468656975829 +the:0.49908735272874527 a:0.06465127703596997 be:0.04154960712508796 tho:0.03209129522446675 :0.36262046788573005 +the:0.5511766883400547 I:0.0356053181165167 tbe:0.03335810428367257 we:0.02412023730190953 :0.3557396519578465 +also:0.31055830562425685 in:0.24638460904230028 printed:0.07328054401235604 In:0.05613384653787439 :0.3136426947832126 +the:0.4048918104641507 a:0.3346457165886332 any:0.22659486222526842 this:0.007716830261547001 :0.02615078046040074 +as:0.2986211808924212 when:0.24705079475949213 too:0.16847227752812224 in:0.1351309746075401 :0.1507247722124244 +J:0.9984650954955103 .:0.00013245494458243744 John:0.0001043247640707189 J.:9.13256669314571e-05 :0.001206799128905104 +a:0.20501718177694758 was:0.029294966152557642 is:0.010967789435452456 and:0.009991927716538992 :0.7447281349185033 +devoted:0.16635608009295355 satisfactory:0.11067141943792391 willing:0.05446781542738376 as:0.04408150526289945 :0.6244231797788394 +or:0.5737563300244705 oi:0.11167911488718263 of:0.10761915594047597 and:0.10697114367292603 :0.0999742554749451 +any:0.4971092146844722 no:0.19960092465884863 The:0.07293134091958173 an:0.04585868602355396 :0.1844998337135435 +the:0.5500220048781286 these:0.11359740383751994 my:0.08727500619731382 his:0.013137661783062735 :0.23596792330397484 +the:0.16789833108455535 their:0.10738403495284599 at:0.09246482484850829 were:0.06730094192828265 :0.5649518671858076 +the:0.24452064248442332 a:0.14722842242130565 this:0.10942634821251074 their:0.07845657279194297 :0.4203680140898173 +has:0.527480099233025 and:0.018256026830352653 on:0.006585278992890859 here:0.006406698757811963 :0.44127189618591955 +the:0.39957511265986495 tho:0.04119692745536816 all:0.024786544202667248 about:0.020214691259516707 :0.5142267244225828 +and:0.06945601302242266 to:0.043072858310802195 steel:0.036059556275545926 black:0.02657400418044871 :0.8248375682107805 +and:0.030376979397577025 motion:0.01590274755530592 year:0.014998350248173198 or:0.013212972039407559 :0.9255089507595361 +of:0.10223512062430166 and:0.08838236859109305 in:0.08119903326839073 The:0.0696533114329345 :0.6585301660832799 +J.:0.1791015024949759 William:0.164725543101053 W.:0.1189311848049516 John:0.08033365535482236 :0.45690811424419725 +even:0.9471859920709307 a:0.000465231718093199 her:0.00046468330775113997 his:0.0003353045256616351 :0.05154878837756343 +the:0.9845638753946384 tbe:0.005815361251445064 tho:0.003626406323742329 thc:0.0027239212521373976 :0.003270435778036796 +by:0.28410328717571703 a:0.27356076369826726 of:0.08832388052088004 in:0.0637094116337059 :0.2903026569714297 +begin:0.32823015611827167 and:0.11858582712414545 falling:0.043268981157306194 entered:0.039178517674519436 :0.4707365179257574 +Mr.:0.13488461024014328 and:0.09969953405877313 The:0.08095776724943857 the:0.05002833628028959 :0.6344297521713554 +and:0.989145334648602 was:0.0010548403530368567 made:0.0007122266269742418 have:0.0004024446768627092 :0.008685153694524337 +rise:0.25767767013486076 pass:0.06550634499681521 think:0.04486534999639931 were:0.03659815608825205 :0.5953524787836726 +he:0.46827153596352017 have:0.15305672250606964 they:0.11419728261980888 we:0.07090139880816484 :0.19357306010243636 +does:0.33600573403935435 is:0.3001405854312596 did:0.17941294717417813 was:0.12692850349791027 :0.05751222985729782 +I:0.7406960813021076 the:0.11621655669913818 they:0.06026426483534207 few:0.05123891296667386 he:0.03158418419673828 +attempt:0.15546885759688958 of:0.10367223067051261 loss:0.051864093332067554 person:0.02024334739685702 :0.6687514710036733 +of:0.35943069077492035 to:0.35815098010299273 for:0.10008153172874958 the:0.061601537358842356 :0.12073526003449485 +and:0.06945601302242266 to:0.043072858310802195 steel:0.036059556275545926 black:0.02657400418044871 :0.8248375682107805 +this:0.2328457773075012 relief:0.12794549401877325 them:0.059774029104899894 thc:0.03911559192578455 :0.540319107643041 +the:0.5171557515577644 him.:0.1906649732291892 a:0.10422812899736951 lots:0.09130133206226888 :0.09664981415340808 +Smith:0.03615870670138746 Johnson:0.010221021917462764 Jones:0.007355113407273577 he:0.005929028224809299 :0.940336129749067 +he:0.18535576105075086 who:0.12358309207650182 I:0.092407524389374 and:0.08989290674619983 :0.5087607157371735 +who:0.38739375136959153 children:0.22421539850396544 it:0.21754997590781294 they:0.06504107021049617 :0.10579980400813392 +the:0.1448429178477742 a:0.0580490869602766 was:0.036944317241757604 to:0.025890013922803302 :0.7342736640273883 +The:0.0737842450031832 .:0.05431544640081886 the:0.049583572030016336 -:0.03335729496941768 :0.7889594415965638 +of:0.2788922654529848 and:0.07816731851968545 to:0.05436147062617291 the:0.031944626311402616 :0.5566343190897541 +is:0.40374521534247426 was:0.21228740612384228 of:0.1631002747165825 that:0.15621268962935772 will:0.06465441418774316 +the:0.3389837625854425 a:0.1463422061189127 he:0.14600350763554534 it:0.0783975195151536 :0.2902730041449458 +;:0.8111344126810877 and:0.15564605379098184 of:0.003573710864059941 again,:0.0025061362845392905 :0.027139686379331333 +At:0.6777120548357513 at:0.19401875474438438 From:0.03262547372545746 from:0.021978313891553327 :0.07366540280285358 +by:0.4182570944082579 to:0.4135753254551423 in:0.057038627774964615 In:0.0313481945440663 :0.07978075781756881 +pro-:0.17610524000187747 Federal:0.028694046518934847 common:0.025835036133341382 the:0.019225404676939995 :0.7501402726689064 +and:0.14022616453626305 to:0.0955417508406253 the:0.09299497798565914 with:0.08677868044643396 :0.5844584261910185 +of:0.8791222229732313 to:0.0374147847634309 and:0.03180142900291355 ot:0.021970778547500132 :0.029690784712924214 +has:0.507130751459578 have:0.2759157509484176 had:0.11586828843334344 he:0.07563017643254807 :0.02545503272611299 +press:0.021981236824917205 time:0.01777047068895127 eye:0.01609619902492137 bar:0.014347213872768922 :0.9298048795884414 +life.:0.19590662566483508 life:0.08595260513920636 him.:0.026732182921793565 her.:0.009821505726823497 :0.6815870805473415 +It:0.10832658059498085 which:0.09976848237653406 and:0.09687923300222741 He:0.06474783878393507 :0.6302778652423225 +H:0.31148164127883976 C:0.19068392905814524 J:0.1698163267057947 B:0.16619894374785948 W:0.16181915920936066 +have:0.8525299764312854 havo:0.04801211230042786 get:0.027027439131274502 be:0.021381375021951424 :0.0510490971150607 +have:0.2954501338483867 were:0.18150977002630034 are:0.13619363551462352 havo:0.10659327203863522 :0.2802531885720543 +and:0.09563075344216208 long:0.03561674798984602 Ohio:0.02622729418644092 stocks:0.010901931619756328 :0.8316232727617945 +ten:0.22556942193405743 7:0.15659178439674418 8:0.11527965263930764 nine:0.10705397259421534 :0.39550516843567535 +West:0.6403984376719533 the:0.17782375391285757 a:0.037454588908826025 their:0.019536495218999216 :0.12478672428736397 +I:0.8881450805265406 we:0.07008981095207888 1:0.023698169982699014 he:0.013801896890989342 having:0.0042650416476921055 +no:0.22164182055966314 to:0.08799439396813392 were:0.056266449025411835 which:0.05220905618939782 :0.5818882802573934 +provided:0.05749291884149942 as:0.04920078374989761 known:0.023472775914534838 kept:0.023244592350849448 :0.8465889291432186 +and:0.17165858581232538 of:0.1159851093989525 a:0.03753556685317587 to:0.023371032089510822 :0.6514497058460355 +glass:0.10480021583460984 stream:0.024911081795646575 supply:0.017255891109353622 state:0.016387495018377746 :0.8366453162420121 +effects:0.0045176750926727545 estate:0.004384937827979974 provisions:0.0023355319181485494 property:0.0009757271560738342 :0.9877861280051251 +of:0.7966999085717028 to:0.02524545530826573 and:0.01886007780415399 the:0.011919090441254313 :0.14727546787462326 +of:0.059935289299864435 and:0.055365653011231114 the:0.05508374074661268 to:0.042112541002981375 :0.7875027759393104 +thought:0.3578374416998374 fact:0.26470765251308187 idea:0.07245675055198585 sight:0.03134072434345439 :0.2736574308916406 +and:0.019917241071163105 the:0.014453770672303072 of:0.01414439197881149 St.:0.009521957233976473 :0.9419626390437458 +informed:0.4264758037412777 to:0.16817048667639878 asked:0.14970505297670358 of:0.13645998644272586 :0.11918867016289408 +their:0.3133960741556246 the:0.2694628298826924 his:0.25700355273659703 to:0.1028452099360447 :0.057292333289041264 +of:0.0058910739992595225 it:0.0049728541827460445 whatever:0.00348481259979207 is:0.0029418945261574366 :0.9827093646920448 +of:0.4655495343331985 and:0.1090512943712573 the:0.09321711039396544 The:0.04045914406513996 :0.29172291683643886 +of:0.3152616837189632 and:0.07790292238593799 When:0.06497855433697977 the:0.062348973686201604 :0.4795078658719177 +of:0.7752339647487121 and:0.046998928907016235 are:0.041639252050902825 lor:0.03822125405344834 :0.09790660023992045 +as:0.10145399373504703 for:0.08443486206989305 to:0.06087741350284372 I:0.05721402140455301 :0.6960197092876632 +for:0.9685261961538157 to:0.005208556291885101 the:0.0018507163528034788 of:8.592738454205548e-05 :0.02432860381695375 +of:0.9968616626426154 oi:0.002123447388690422 ot:0.0007947219238680021 or:0.00012094481450607977 :9.92232303201197e-05 +turned:0.6533730446235246 given:0.09295037017005883 bound:0.03409706875486151 right:0.022873521197233872 :0.196705995254321 +look:0.13091893012029585 get:0.1252591392826244 be:0.10457876478587666 stay:0.0574894698110381 :0.5817536960001651 +careful:0.12345553398115484 thorough:0.03925259006796889 patient:0.008970872333165484 re-:0.0010501864444910013 :0.8272708171732198 +tbe:0.519790947497801 the:0.18296467810989128 Gen.:0.09954684505131697 tu:0.02986026335050724 :0.1678372659904837 +come:0.6156073231398275 read:0.05530660198415157 increased:0.019275927209544106 in:0.015679456257747925 :0.294130691408729 +who:0.11191017292069082 and:0.10869478283834703 but:0.07415546969115075 they:0.07221395139933728 :0.6330256231504742 +years:0.16328953695880122 of:0.0712843730880983 miles:0.062258774553512884 other:0.04704670516314391 :0.6561206102364436 +efforts:0.4021078236013522 country:0.0614726786075156 state:0.04135821821210195 young:0.02453516734743599 :0.47052611223159413 +farmers:0.425701582296799 and:0.05878739727093551 also:0.027826566957764753 commission:0.019118977080850152 :0.46856547639365054 +and:0.16524952927494915 to:0.10895221197922328 the:0.051578838748111124 of:0.051525465614782086 :0.6226939543829343 +.:0.9274046826552309 W:0.0015808758384062093 .,:0.0015700415566235475 -:0.0008684973676498154 :0.06857590258208969 +The:0.241254688909401 the:0.101476549009837 of:0.07270647896686355 when:0.07161308321897895 :0.5129491998949195 +build:0.08169306619518166 be:0.04307633697065798 make:0.035410288680885055 supply:0.022131741278588947 :0.8176885668746864 +and:0.13560559233541467 of:0.08028219715843025 the:0.0728895799822384 to:0.04317645584900438 :0.6680461746749123 +regular:0.2235893786155589 people:0.13869168620764405 boat:0.05301626885503971 stock:0.051616249960317315 :0.53308641636144 +quiet:0.009095906167952778 dull:0.00809054489088035 and:0.007627038671376383 John:0.005045778867331849 :0.9701407314024586 +been:0.7381330760272322 their:0.03402635449856711 not:0.030616580981143712 no:0.029101824853531865 :0.1681221636395252 +and:0.15708024555755642 the:0.12253155888068208 of:0.0750170346051251 The:0.06666155979987613 :0.5787096011567603 +I:0.22956096211937524 people:0.21593144297277309 farmer:0.124632428041309 he:0.08144978907320646 :0.34842537779333627 +of:0.5119564195593563 This:0.13379277084558508 to:0.02875794187000219 and:0.010709121947494307 :0.314783745777562 +ti:0.1174662804647903 win:0.047406534818431594 tin:0.01344609005289567 the:0.0022927819299387725 :0.8193883127339436 +the:0.3480884868664911 The:0.10112806761464742 as:0.06724481301981497 of:0.039859571389196075 :0.4436790611098504 +County:0.3289340481351502 county:0.17916521185871379 deed:0.14320804044001603 waters:0.0910506407035786 :0.25764205886254143 +No.:0.19982861510326613 March:0.14292169597270762 April:0.04974266973371577 July:0.04911146429403778 :0.5583955548962728 +will:0.5622326130564924 should:0.16777175373216308 may:0.12389963841834756 would:0.10319895218755892 shall:0.042897042605437995 +The:0.5831666129665362 the:0.2638563115105009 of:0.03211368302969171 and:0.028404086209208586 :0.09245930628406289 +of:0.20272133913466603 and:0.10601403425890854 the:0.10386734287667154 in:0.04574817709745545 :0.5416491066322986 +done:0.42443276838564414 been:0.13792162730684077 had:0.11669596746541953 learned:0.08464608525297279 :0.23630355158912272 +of:0.1480378419335548 to:0.04322539806290554 and:0.02485764214997575 larger:0.02117259930558673 :0.7627065185479771 +and:0.37777685532802896 that:0.14836001628155449 or:0.04535445349460707 if:0.03253979714341645 :0.39596887775239314 +one:0.060109251248515315 out:0.05257258358916799 some:0.03427863423661949 the:0.03312398290569596 :0.8199155480200013 +men.:0.033034887062829164 States.:0.008272175895708372 countries:0.008040119937873024 years.:0.007379786012974111 :0.9432730310906152 +and:0.2094818636256097 so:0.032795290220461286 in:0.0319903546598685 says:0.02402597404503232 :0.7017065174490282 +a:0.3638331431510159 n:0.35621594777414267 bis:0.23598477151120129 the:0.022205480275843983 tha:0.021760657287796154 +over:0.0851711362946148 ones:0.034339879828199506 of:0.019406936753885943 to:0.014875469619914013 :0.8462065775033858 +the:0.7749344802333015 tho:0.0772178683147981 a:0.06022040822267808 this:0.034043783231071344 :0.053583459998151 +a:0.21583814481801006 the:0.17525867664349234 under:0.060116297092963865 completed:0.0373410362233113 :0.5114458452222226 +his:0.32812995898548875 the:0.23981118529099715 her:0.11706569524789645 a:0.11229388405228236 :0.2026992764233354 +plant:0.1448103034522795 division:0.10738481723724047 and:0.04939898116598256 on:0.04444075172929251 :0.6539651464152049 +the:0.8603411794475494 all:0.06047769321077512 her:0.03349107888948045 he:0.028930942388997502 :0.01675910606319751 +N:0.013953000139763971 P:0.01340880592036393 Henry:0.006225413784471759 B.:0.005876446042783594 :0.9605363341126166 +and:0.18479263581543043 of:0.09821404245488286 the:0.06781685631248781 to:0.06578020361475143 :0.5833962618024475 +was:0.25843853669661165 had:0.13594797138907058 has:0.11884959616582193 is:0.1044671557504682 :0.38229673999802755 +That:0.4862935523449991 Tuesday:0.02964221795017676 Section:0.026009470622110974 and:0.02242991310463438 :0.4356248459780789 +and:0.22849996782101897 the:0.05418327343762734 of:0.04656233837229994 to:0.031621805186550216 :0.6391326151825036 +make:0.5636827968476492 be:0.21365953465936366 yield:0.05368895001744998 give:0.048463988693291896 :0.12050472978224515 +the:0.6012241062534531 a:0.08961192325115885 tho:0.02027797157713657 St.:0.019495980346578443 :0.2693900185716731 +great:0.029288223662601396 the:0.029152501830937427 pro-:0.02217803393035374 first:0.015322990216196562 :0.9040582503599109 +deposit:0.05888973620164347 re:0.05802864205814389 of:0.03503591688583463 the:0.03004213484089256 :0.8180035700134853 +and:0.33763306285018013 new:0.05852187990748335 so:0.04862064901110001 or:0.04190526247990755 :0.5133191457513291 +of:0.7030583606734986 and:0.056818303331757004 in:0.04247282388742648 on:0.033284065775262536 :0.16436644633205533 +and:0.10752070240029607 operations:0.10515847664439382 of:0.06947738419651403 out:0.06275675270196766 :0.6550866840568285 +of:0.34079745750208157 to:0.28457146721747895 by:0.22234651722794516 in:0.0933604920711552 all:0.05892406598133923 +the:0.30981951035099 of:0.13173199463463156 may:0.09128720351079356 he:0.08682269853324551 :0.38033859297033934 +attempt:0.0295259245201215 do:0.02674814496662612 fail:0.02284113851107135 have:0.02122761443080617 :0.8996571775713749 +necessary:0.0624342660228312 well:0.045923821745671174 due:0.04338487420946107 ever,:0.04169943041311677 :0.8065576076089198 +the:0.10366804666643818 and:0.09222569712832612 of:0.08876627640937874 to:0.04966121725378536 :0.6656787625420715 +John:0.35471446018019626 J.:0.12414241545133012 William:0.10351455976773952 Frank:0.049593460604191966 :0.368035103996542 +of:0.9432792644235283 ot:0.015864896976114765 or:0.013720089746854318 the:0.0030900267945816275 :0.02404572205892107 +and:0.16508162210633515 was:0.08584180197208234 the:0.06002279798007874 of:0.04559908817491217 :0.6434546897665916 +a:0.5230958077283272 of:0.09874063950597703 so:0.09395130801799917 A:0.07927457964617805 :0.2049376651015185 +really:0.4635206221006782 to:0.18580544865579204 committed:0.08664225653321256 a:0.06410952630441405 :0.19992214640590328 +they:0.13390886612194855 we:0.06187745455593988 who:0.035790409784046615 services:0.03209963228838585 :0.7363236372496792 +a:0.10164171503884352 the:0.0780214792104308 commenced:0.05683038208466707 his:0.03281409117085479 :0.7306923324952038 +required:0.28842293593443724 expected:0.202043728344315 trying:0.14070257541609651 engaged:0.07455992513161053 :0.29427083517354075 +the:0.5081169471317113 a:0.04869742503479702 to:0.04112533580138187 his:0.03567304209303183 :0.36638724993907806 +You:0.2343757172608161 We:0.20818165789401072 they:0.17924126089017017 I:0.163976845373273 :0.21422451858172997 +of:0.7877603373840779 on:0.15899986837263122 ot:0.024160471167684026 ol:0.008910367991541136 :0.020168955084065805 +shall:0.9071160874499589 will:0.05078753249391259 would:0.017188789148657825 could:0.015361551826056898 may:0.009546039081413802 +not:0.7275566466497435 more:0.1169646656813856 or:0.05685556020200835 .:0.013716465830831666 :0.08490666163603092 +few:0.030834516837403503 new:0.030535855532938666 single:0.029509775823058845 great:0.027409047716111908 :0.8817108040904871 +number:0.4231144258274155 vote:0.12231298782976473 list:0.10287060069417911 mother:0.09969140686438184 :0.2520105787842588 +self:4.3466217044677434e-07 a:3.191570538636601e-07 and:1.7723093473257215e-07 evident:1.4619313314917544e-07 :0.9999989227567078 +attempted:0.3461331581614498 has:0.20126213520564804 had:0.16049230792673527 was:0.1368593945232893 :0.15525300418287757 +to:0.42527603860770175 has:0.2823848162512967 is:0.1574298884413601 would:0.05150829732942469 :0.08340095937021667 +the:0.7212071499103028 "the:0.08322356796533698 tho:0.061912555883818526 ihe:0.035874861607051806 :0.09778186463348992 +the:0.5941745031864434 a:0.08805728313575313 tho:0.029327587915852715 his:0.018584130087395883 :0.2698564956745549 +as:0.1258238807992291 closed:0.07973938966947659 coming:0.025210337624556458 before:0.02010918279602703 :0.7491172091107108 +water:0.08096287963687737 President:0.04969518146215477 body:0.04893478975879459 wood:0.04204353713471981 :0.7783636120074535 +only:0.15672022031792632 love:0.0053563007399208985 mi:0.004971077718981606 to:0.003708642675523312 :0.8292437585476479 +of:0.44193685268484273 and:0.1317766647203562 in:0.08615912813816472 to:0.06674280767228692 :0.2733845467843493 +vessels:0.15894291043178208 the:0.058633059707836055 time:0.052972129721951214 men:0.052375024550475796 :0.677076875587955 +and:0.2310882192990838 of:0.13753933758085526 under:0.12747387129953527 that:0.12486722590196689 :0.3790313459185588 +and:0.06285201765667049 of:0.05646547277163046 Mrs.:0.05162682350445891 .:0.045155977377627034 :0.7838997086896132 +he:0.47876179488978043 the:0.28366649693954665 his:0.09468262824391377 wa:0.029915714563389883 :0.11297336536336931 +Rev.:0.1250159224766082 the:0.08551564799947636 take:0.021451440864758135 a:0.015393863820804808 :0.7526231248383525 +the:0.33852959260109966 tho:0.07866839417363217 and:0.07812058448299015 a:0.0737917147627768 :0.4308897139795012 +out:0.2608688777260667 and:0.015325477571242077 feet:0.009302199486884868 away:0.007881096410154574 :0.7066223488056518 +the:0.19021639764763593 g:0.07537263514775457 and:0.07164936078813494 no:0.05767191370700288 :0.6050896927094717 +The:0.3049903938842047 to:0.1939701936253413 He:0.13469774035383764 of:0.10646742051774256 :0.25987425161887384 +and:0.27622698319651007 appeal:0.09171634085456912 but:0.07679774785019766 ing:0.06414196706408207 :0.4911169610346412 +and:0.13310017625743875 the:0.11880232138899371 to:0.09696733067589432 of:0.08917529755629716 :0.561954874121376 +to:0.4891123902674556 and:0.05734439773923083 of:0.04818159943994905 the:0.033103278625820895 :0.37225833392754354 +too,:0.09117613659172781 is:0.06004001286696042 and:0.05243924875938618 see:0.031337356218316174 :0.7650072455636094 +right:0.3173112461678958 desire:0.2937528008654891 disposition:0.14098164814204414 power:0.029813186271679424 :0.21814111855289156 +him:0.2316627338715758 all:0.09817876886372093 meet:0.06787389652584316 protect:0.057012692507235535 :0.5452719082316245 +of:0.2791224651437166 to:0.17173105773466749 by:0.15739097503193614 in:0.13944494102827856 :0.2523105610614012 +and:0.6592753256156194 aud:0.07121527657801892 but:0.04941185541784388 ted:0.03573802070339335 :0.1843595216851244 +state:0.04157523593676631 few:0.040609341450860245 part:0.03976810676375867 majority:0.033241601110733245 :0.8448057147378815 +named:0.07700283982864298 the:0.044705210596162594 all:0.019940390367128476 described:0.009182521121663564 :0.8491690380864024 +the:0.9731162726338387 tbe:0.011982393070160687 ths:0.005891436993868378 its:0.003759202918839326 :0.005250694383292655 +same:0.07534148827724092 federal:0.07512910518824577 of:0.06927242575886053 old:0.02074869003129538 :0.7595082907443574 +should:0.4489496700572251 may:0.26133668991277725 would:0.23361735634765077 could:0.03127143785859755 :0.024824845823749424 +method:0.48478607681419156 confidence:0.12444956980783613 country:0.03562834994242342 order,:0.024796288516105047 :0.3303397149194439 +and:0.5489787623092324 coming:0.28204616037458474 place:0.1113949289190687 that:0.017093394444050964 :0.0404867539530634 +of:0.03516628541280242 .:0.03345319425030398 *:0.03280925003880526 the:0.022270033978969074 :0.876301236319119 +water,:0.3087998999563678 land:0.04414999476807695 ing:0.028200582702491726 afternoon:0.024151019261160447 :0.5946985033119029 +to:0.9968180975974362 lo:0.0008034134070540031 to,:0.00047889517708628586 that:0.00012129542898814603 :0.001778298389435263 +said:0.06417174256325124 found:0.044438874848844775 says:0.044169036919934165 states:0.030400938430585646 :0.816819407237384 +man:0.08097224609792747 spirit:0.04956851968349921 place:0.04626824956716958 negro:0.01748008579732738 :0.8057108988540765 +the:0.49946939201106727 its:0.3470560264194328 this:0.06296321437882615 1:0.04160619017410925 :0.04890517701656458 +day,:0.1882032163316501 day.:0.0866373166368279 the:0.07367997693109327 to:0.04171613340241035 :0.6097633566980183 +week:0.7431326147320748 thirty:0.01220134869503347 ten:0.010331727713090185 three:0.009875359794127249 :0.22445894906567432 +who:0.2617644616469415 which:0.16794227334912343 I:0.13717057147958928 He:0.12938652316961124 :0.30373617035473455 +property:0.32152688724327455 it:0.24091664283902572 her:0.11378473348781515 well:0.098353000750861 :0.22541873567902357 +girl.:0.10182484049489733 and:0.10033048602666468 boy.:0.09484336619255895 of:0.0768375926326807 :0.6261637146531984 +eyes:0.03802128889178291 and:0.009697378544407375 some:0.0040666861385964944 of:0.0030987266888293655 :0.9451159197363838 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +way:0.03981814097964169 conduct:0.01686882986694729 head:0.016684150205321997 hand:0.016311692679537398 :0.9103171862685515 +relief:0.9925635214473639 out:9.425364653164713e-06 guilty:4.1879621751379275e-06 him:2.2897831081763834e-06 :0.007420575442699757 +approved:0.10950381868528408 on:0.10748136590526075 dated:0.09637867737555401 of:0.06665725315785864 :0.6199788848760424 +the:0.37183996699850047 in:0.11080330443657774 this:0.048079499506459296 ut:0.006903260234171951 :0.4623739688242905 +that:0.24541518022181422 and:0.09682355658733846 why:0.07151454309882142 of:0.03137491559348683 :0.5548718044985392 +matter:0.08475106294345268 majority:0.07927890053345901 rooms:0.07888906046543291 work:0.008662536857396586 :0.7484184392002587 +of:0.21579898284410615 and:0.11912191455160995 The:0.08351849167579646 at:0.06766439350459365 :0.5138962174238938 +the:0.8558547137411502 tho:0.04623836304519325 said:0.028000543443939385 The:0.01745525370184504 :0.052451126067872125 +question:0.17259641355586633 life:0.08558280904379742 others:0.054354411512130656 time:0.04755350766166112 :0.6399128582265445 +there:0.5166734055295792 There:0.25017798600082003 It:0.07379527771017078 it:0.05743777273213278 :0.10191555802729717 +music:0.21090238646198886 upon:0.11752236650111901 So:0.09459839772118277 for:0.04847644870979571 :0.5285004006059139 +result:0.03888344765800002 appointment:0.013288411287805852 sound:0.013006813493152811 loss:0.012357862955547836 :0.9224634646054934 +or:0.05112121077053562 and:0.01216826639174448 prices:0.011133841705138257 the:0.008171491490981965 :0.9174051896415998 +sufficient:0.24765498984848283 was:0.12348678239855448 that:0.11577225802652438 of:0.04496254066771747 :0.46812342905872095 +tract:0.11297152345855825 number:0.05409652585195148 report:0.024774030580973133 sort:0.016242552361797766 :0.7919153677467194 +and:0.12110244784747543 the:0.11343820133586476 as:0.09537322630924845 It:0.07483819322676859 :0.5952479312806428 +join:0.13802165780016687 defeat:0.06279129144838215 pay:0.0333689062135983 make:0.032849631404407845 :0.7329685131334449 +one:0.1763121340755064 said:0.10911579168368166 members:0.08556200548249417 ono:0.08161201682720738 :0.5473980519311105 +and:0.4805537928611357 of:0.08694853486868767 or:0.08463871115550249 to:0.04892476859481612 :0.2989341925198581 +11:0.08728076224482574 he:0.08488652359349903 it:0.06763880629869248 there:0.04589066114374848 :0.7143032467192342 +the:0.48420973248007193 his:0.1349217560280292 a:0.11468286218589259 her:0.07963698734290896 :0.1865486619630974 +the:0.7662679708965076 with:0.025637468899957824 a:0.02494677867754011 near:0.018551791767589587 :0.16459598975840495 +a:0.43774127653009837 any:0.24661104195821282 the:0.14992597467501975 been:0.059157442446349205 :0.10656426439031981 +present:0.18511186339929903 last:0.105649003717379 least:0.09868457592160883 hand:0.08508782698745344 :0.5254667299742597 +result:0.6964341291233216 reply:0.020072202760099626 contract:0.01945701565191714 thing:0.01882073713749943 :0.24521591532716214 +the:0.9800301329415563 of:0.006064062764523431 a:0.0031968449036230287 for:0.002003535227215461 :0.00870542416308178 +and:0.0954247005375302 covered:0.06328227018982699 or:0.06081324786440668 held:0.0503132479232157 :0.7301665334850204 +been:0.7364580777755607 had:0.04106445747892644 made:0.024977238610158724 the:0.01576465805943384 :0.18173556807592034 +and:0.09289094130394711 of:0.07972424900925228 the:0.06672537847722361 to:0.03271779909049193 :0.7279416321190851 +of:0.2169031613316591 the:0.022852481956347533 now.:0.009040394766984261 and:0.008708018518297432 :0.7424959434267114 +He:0.6580058455320168 to:0.16282747350931442 and:0.10599155671573814 lo:0.04230308275111193 :0.030872041491818897 +the:0.7192358726362219 a:0.059712753651663134 tho:0.02487032654108055 this:0.01454804130730589 :0.1816330058637285 +the:0.6017816163762638 some:0.14964714339900143 any:0.14738604832277763 this:0.025275201406166577 :0.07590999049579049 +in:0.3706862132901915 In:0.0876015425035792 deed:0.06445761750879793 and:0.06092304993497336 :0.4163315767624581 +which:0.2900801625421405 for:0.13563629234210486 the:0.053548487801598946 is:0.033616778218540845 :0.48711827909561484 +service:0.9990369446976863 ice:0.00021618466425880295 dog:3.164824802736433e-05 call:2.7396356761612514e-05 :0.0006878260332658609 +to:0.6608071199975197 in:0.10461863324908417 the:0.05890150750892566 and:0.04080182271741156 :0.13487091652705885 +the:0.36477774521019335 a:0.10441232663014623 his:0.030773330223282398 their:0.02527788346006414 :0.4747587144763139 +He:0.1577881495218822 First:0.10622078034328039 I:0.10406239865761902 If:0.07753560513795607 :0.5543930663392623 +that:0.3260915233747441 to:0.15930693799142337 and:0.053245027327100944 in:0.032558036430910535 :0.42879847487582123 +was:0.5652842593974436 now:0.34216115491329663 |:0.03292495138523035 formerly:0.005586837917887966 :0.05404279638614137 +of:0.39836690800720465 in:0.3423196150912461 In:0.0851239966305371 to:0.07442180554095255 :0.09976767473005962 +her:0.1473287193492655 hia:0.13917701181914222 the:0.04695630187438973 to:0.04272354540734916 :0.6238144215498532 +world:0.05663624328357811 city:0.04892054285523422 country:0.04703275557538171 world,:0.03981676527750327 :0.8075936930083026 +to:0.12381457636853484 and:0.11392527979214716 the:0.0715790191996313 of:0.0651403708921521 :0.6255407537475348 +It:0.2600300202704156 There:0.1173469530442132 there:0.07186361069661834 it:0.07142802446102561 :0.4793313915277271 +Judge:0.054132727621694174 State:0.0138588840615776 man:0.008409941549066845 safe:0.007123887031623144 :0.9164745597360383 +doubt:0.9557408616470509 see:0.009165247339342368 say:0.0026019785485555977 tell:0.002255921818681947 :0.030235990646369292 +the:0.3220502820615108 tho:0.031841728104042476 con-:0.022650753859494076 a:0.022582324201468187 :0.6008749117734844 +been:0.36767534073582603 a:0.13577464437308828 not:0.08559981823945038 the:0.07716533538054511 :0.33378486127109025 +and:0.4580861774229476 to:0.12647421853768023 of:0.08385475651497672 was:0.05963986269966068 :0.2719449848247348 +the:0.20774310653371292 and:0.11624409798861325 a:0.059027742751138146 of:0.043404633895287335 :0.5735804188312483 +not:0.4365103560246431 have:0.15121888695237035 it:0.07197901308556146 that:0.06582199429365207 :0.2744697496437731 +J:0.19173141178719014 J.:0.1420370406036844 G:0.06360968767534315 W:0.052329874694253854 :0.5502919852395285 +suit:0.10825715750092858 street:0.08688924986538187 little:0.01839582568259757 part:0.015585675117274942 :0.7708720918338171 +be:0.3258189579003674 have:0.1991350988053842 bo:0.07286997530282452 not:0.0645032244901167 :0.3376727435013072 +thought:0.32876068813762827 w:0.036870440055870375 opinion:0.016468088244985565 evidence:0.014048161606202024 :0.6038526219553138 +they:0.11378224561684182 we:0.07754428828586817 ho:0.05012330922042293 wo:0.039962476261427245 :0.7185876806154398 +of:0.22703100451395553 ground.:0.054547555489920775 hand.:0.030340472440205688 ground:0.003091515475940408 :0.6849894520799775 +at:0.3631781801746528 to:0.1979355321672849 by:0.18306649407466763 before:0.14464017150829572 At:0.11117962207509892 +brought:0.988063130478834 seek:0.0024233985914874434 and:0.0003369272552555741 d:0.00031002303130228567 :0.008866520643120634 +About:0.21866459890562448 and:0.2149125378436209 to:0.08659819796095586 he:0.04037088983104169 :0.439453775458757 +is:0.23545590081211007 and:0.1586092538883544 of:0.13474477005939658 ways:0.07130084145497456 :0.39988923378516444 +of:0.6228152741188901 upon:0.21023040388845077 with:0.03473329696008314 to:0.025361063490832624 :0.10685996154174346 +to:0.27467332515356896 that:0.26531005224694965 it:0.034050891623053775 may:0.013166431026819586 :0.4127992999496081 +to:0.4631138645902743 To:0.19282704347985 and:0.10262573024489385 will:0.1022065708315203 :0.1392267908534615 +After:0.558224788260512 to:0.1618504089365664 from:0.1255321357303426 by:0.09747476580877852 :0.05691790126380034 +dollars:0.4567693213791457 them:0.240864989722565 death,:0.1887092160000658 and:0.013949802019222935 :0.09970667087900068 +and:0.5872062684696344 besides:0.11820789189894401 of:0.11761866006306512 with:0.057003071860104206 :0.11996410770825228 +of:0.28787648971948265 and:0.11956970930732003 the:0.0709939032488014 to:0.04893423423646038 :0.47262566348793567 +sale,:0.2809293728605154 sale:0.18589489729161546 up:0.000121847862875964 property:0.00011708132850497757 :0.5329368006564883 +a:0.26770881997746543 the:0.2067392280819457 The:0.06309173795892264 this:0.05502125469724916 :0.40743895928441715 +up.:0.33302090014631397 of:0.23903594131423836 and:0.21238470116917937 for:0.1126956796397624 :0.10286277773050582 +a:0.22929964867180544 the:0.19266671722902007 no:0.10221489324413384 to:0.09279579535940471 :0.3830229454956359 +to:0.1951318728715641 of:0.18315598889662082 by:0.1655410392510016 in:0.16361247404733764 :0.29255862493347584 +attempt:0.043791440185551984 exchange:0.024385874590813445 article:0.019188247450006045 action:0.009283568349589722 :0.903350869424039 +newspaper:0.9950400326181355 paper:0.00012658296798330004 Washington:2.0132603018769616e-05 letters:6.7154614221644535e-06 :0.0048065363494404776 +the:0.197996591803801 a:0.12276523511823732 surface:0.11616613549317636 tho:0.06737619595457002 :0.4956958416302152 +severe:0.17154135899909248 common:0.038306331352222035 favorable:0.02136532732614607 perfect:0.01701384067362417 :0.7517731416489153 +bo:0.7933293008540336 be:0.17955237855800898 he:0.01018282158436498 have:0.0009169557182629942 :0.016018543285329274 +to:0.876363994694886 for:0.08529146510335184 at:0.014863730964880754 our:0.007733825063506542 :0.015746984173374945 +In:0.45403299717769546 to:0.4393526530240598 on:0.04984249755691952 from:0.043016205654102954 for:0.013755646587222328 +of:0.47020932186495584 was:0.17525520367836012 waa:0.062423993191615915 will:0.035408187733737086 :0.2567032935313309 +tbe:0.2119667089994541 the:0.059023619047616833 this:0.040375932486242556 our:0.013059819651990096 :0.6755739198146964 +have:0.17723691803215444 see:0.10713217385287216 be:0.026384531135945345 one,:0.024871068764458187 :0.6643753082145699 +do.:0.2594347111505282 answer:0.030380637571661966 the:0.012215570790085872 any:0.008995297354397542 :0.6889737831333265 +the:0.7180565423702285 a:0.06210226195517729 be:0.04611128875089665 tho:0.03158552331608638 :0.14214438360761117 +and:0.32797024110593964 to:0.2871768433236204 as:0.14892737650946458 a:0.14405168486026856 :0.09187385420070672 +say:0.12229738758691695 sleep:0.04802702308553657 secure:0.031147098810163545 do:0.006872765323194131 :0.7916557251941888 +and:0.055118202431125106 as:0.02489476877580197 or:0.024259969785077197 not:0.021040152926511565 :0.8746869060814841 +lands:0.08049054819645052 west:0.013403616948353845 sections:0.008864132508707134 states:0.008540532436568996 :0.8887011699099193 +all:0.4791992452211091 no:0.2733640258256632 the:0.1096504825410219 in:0.07057900467247538 as:0.06720724173973033 +to:0.16375836818278877 then:0.11421864055075172 he:0.05088050301003827 the:0.03719504186130251 :0.6339474463951186 +active:0.22504706724282977 her:0.21067261439540322 the:0.1961034790306576 his:0.08650820727048392 :0.28166863206062553 +of:0.33259306992733967 and:0.12328624472646334 to:0.11773330744240504 in:0.11705793150075834 :0.30932944640303356 +them:0.3501284983718359 escape:0.17179779149967242 be:0.09676904495417683 that:0.09065403512428327 :0.29065063005003167 +the:0.6379157015144752 a:0.03239542977471509 tbe:0.01686014668028181 San:0.013317486494472858 :0.2995112355360552 +of:0.3655853711870831 to:0.12472993079083836 with:0.09590828076396558 and:0.09082983788447908 :0.3229465793736339 +force:0.5175488895298876 not:0.09876281571470903 reach:0.07801051232621993 as:0.07306451523022908 :0.2326132671989541 +as:0.4997035054248829 from:0.13605580038722526 of:0.1064502105901547 The:0.05914675423666879 :0.19864372936106825 +hat:0.2922124029762318 life,:0.12456684710614925 building:0.103723212488848 that:0.09507721855274191 :0.3844203188760291 +E:0.08717967602537349 a:0.030104142027922776 .:0.018724964652471386 for:0.009262998746996749 :0.8547282185472354 +had:0.24382401769218784 has:0.23880307465786302 who:0.19380882902126803 to:0.15531657934719953 :0.16824749928148164 +act:0.3392113230757154 part:0.09931088675534741 county:0.06842532751410785 work:0.055610641449689614 :0.4374418212051398 +of:0.34400334313926245 is:0.2071723877623493 as:0.1773195985668305 but:0.1451907022043592 in:0.12631396832719857 +good:0.058842548942170385 a:0.04875940446218503 grand:0.02600147814331255 small:0.022439630127701046 :0.843956938324631 +hands:0.03938415350536508 grave:0.031681668314925235 face:0.021499284134781263 testimony:0.012461411358412215 :0.8949734826865162 +water.:0.11794165927218894 tion.:0.06546256353203177 it.:0.01814561685858869 .:0.013855525664571893 :0.7845946346726185 +the:0.44403538211048105 a:0.06203748761873065 their:0.05461647692505127 his:0.054584035482802426 :0.38472661786293466 +the:0.7029310316788749 his:0.15579199866304666 a:0.08115337182878689 tho:0.016261570302030737 :0.04386202752726084 +the:0.5017105178311722 his:0.08896027970532076 Mr.:0.07958247172390286 a:0.06144814475089609 :0.2682985859887081 +of:0.4723565237005499 in:0.2824183745396187 without:0.14573917054845067 to:0.05932954706349772 :0.040156384147882807 +the:0.31745822338594376 a:0.07525752157654922 their:0.051727719373920705 been:0.03318504455551714 :0.5223714911080691 +the:0.09116667735853695 day:0.09094362745163068 year:0.027174517624296797 day.:0.026546208101735542 :0.7641689694638 +the:0.5906758079774551 at:0.3007880778167691 tbo:0.08265953942750684 a:0.0008306312216668694 :0.025045943556602095 +to:0.4150642755172422 the:0.2956812440478577 his:0.12485112786139424 cause:0.08855301364773273 :0.07585033892577304 +conducted:0.15664812282614665 Friday:0.07165173974738615 view:0.06098741491589048 held:0.043536447939199564 :0.6671762745713772 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +not,:0.10853251758167778 the:0.026976153037769728 necessity:0.013305196836902183 otherwise:0.012245493428959706 :0.8389406391146906 +provided:0.3193380729387881 if:0.05902225722090985 aforesaid,:0.058784120210458674 a:0.04704424271829282 :0.5158113069115506 +the:0.03731332252326064 great:0.02066645221375959 first:0.017427655952371817 in:0.01281661721080755 :0.9117759520998003 +the:0.025911745959489692 and:0.024146338675198598 of:0.020046756864396824 condition:0.005044595629519382 :0.9248505628713956 +which:0.13698310148888945 and:0.1338784494671991 that:0.12624983385934918 as:0.06028503677345011 :0.5426035784111122 +to:0.6175248591624128 the:0.07445510870222591 a:0.05227958496544965 at:0.03999139052995011 :0.21574905663996163 +and:0.05992600300651737 as:0.04776681552809611 .:0.017207518143345896 up:0.013178188560211006 :0.8619214747618296 +Brown,:0.012152692884704917 Smith,:0.0044119611567017755 bill,:0.0005489025460813132 Johnson,:0.00022388898240005865 :0.9826625544301119 +the:0.9759788693376831 tba:0.01339381044898527 The:0.004923221458561063 that:0.0016110689499233785 :0.00409302980484717 +the:0.8454183373239262 an:0.030340879916279373 plain:0.00741297704348759 tho:0.00573776202677855 :0.11109004368952852 +still:0.424220231397419 really:0.15290569612760221 don't:0.14426958701507858 could:0.0815393617923989 :0.19706512366750117 +rates:0.4229354955909154 already:0.15012962537035787 or:0.049168233349746945 as:0.04650823373441316 :0.3312584119545667 +county,:0.015008734046859831 ing:0.012024092645115073 county:0.01104234309767534 and:0.010688823440044334 :0.9512360067703055 +pound:0.296878975796303 ahead:0.11625904227720554 out:0.0849585731375854 east:0.06736302508215875 :0.43454038370674736 +and:0.5642629946208884 to:0.3041824669311233 of:0.042843224757627925 the:0.030198792021998603 :0.058512521668361815 +to:0.9931660873427216 o:5.6095736235711005e-05 To:4.30877604562029e-05 to,:3.7452222380428294e-05 :0.006697276938206151 +of:0.062453437291780343 have:0.05967609937703639 saw:0.057877348248215374 was:0.05462672871973186 :0.7653663863632361 +the:0.7677874393952723 good:0.13008116482415139 our:0.06688679677697648 ihe:0.02218019334455455 tha:0.013064405659045458 +the:0.5411954220719044 his:0.056525802248906555 a:0.046827540859153687 this:0.04372575617365028 :0.31172547864638495 +from:0.22488268422242128 world:0.10382869605031161 man:0.04061218745035185 committee:0.031283230844985695 :0.5993932014319295 +a:0.4875396423987948 the:0.4017750338226617 their:0.04148363698853 his:0.025945398592968412 :0.0432562881970451 +made.:0.0377479439855669 done.:0.005052036315340272 supreme:0.004117275487512792 good.:0.001223957984741958 :0.951858786226838 +is:0.8033570371505588 being:0.1604883266330717 was:0.03580969974589033 enough:0.0001884331639719102 be:0.00015650330650702275 +of:0.09504075479923983 and:0.09444522554359018 boy.:0.09072630602018324 girl.:0.08863648302226187 :0.6311512306147249 +few:0.04548537432881961 very:0.03699691413582785 most:0.024662552472028736 great:0.01594037796593004 :0.8769147810973937 +A:0.05181878195503189 and:0.02091996588992888 of:0.020477059646720534 J:0.018198977776972648 :0.8885852147313459 +the:0.03515333239112965 them:0.034085078571571344 them.:0.028989434267952034 out.:0.02824212570138133 :0.8735300290679657 +and:0.14878708808991012 or:0.03720708945018045 the:0.03162677938010074 to:0.02974647318783069 :0.752632569891978 +the:0.27081986381269985 several:0.11891044796879037 recent:0.07089816274895007 its:0.05403347408187687 :0.48533805138768277 +;:0.006044281587962566 bottle:0.00574569405157876 single:0.0035854122181516166 country,:0.003527068046814226 :0.9810975440954929 +four:0.9551272508787965 many:0.021459622756730096 two:0.011544126074780805 three:0.00791656893124211 several:0.003952431358450487 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +Ihe:0.11329728150533143 the:0.041980629514973083 hand:0.020335076013444094 of:0.003079786192627433 :0.821307226773624 +present:0.16087480609036822 federal:0.10851732848188443 legal:0.09485252823857883 constitutional:0.05589729809512107 :0.5798580390940474 +minutes:0.35520325107308315 degrees:0.13510830752890404 girls:0.07470505567897087 hundred:0.040829964107433 :0.39415342161160893 +of:0.882514254534914 ol:0.032230547003532214 cents:0.010853652964985954 to:0.008423281901220827 :0.06597826359534693 +of:0.34593967877076276 to:0.2655648863366486 by:0.1465262201685521 from:0.06815535335642493 :0.17381386136761154 +one:0.8120334368778842 1:0.1480518833224055 ono:0.02531410438390861 I:0.0027987881366574176 :0.011801787279144197 +across:0.5641584725173769 from:0.10543544231787345 that:0.08728670128716244 and:0.06042711004179342 :0.18269227383579362 +of:0.09035235607734679 and:0.07987098391471971 the:0.07507444376615427 to:0.03280748853043819 :0.7218947277113411 +statement:0.17391554666372103 view:0.062368645041717456 account:0.054314417358657885 and:0.023867880697210016 :0.6855335102386936 +people.:0.13445857070607933 country.:0.10625719489884035 state.:0.054280827868948854 body.:0.03255302647230218 :0.6724503800538291 +con­:0.9981037416713248 and:0.0005647093171859083 in:0.0003461773371991992 to:0.00020004628825045004 :0.000785325386039616 +the:0.9123427686030623 tho:0.03855172225740763 said:0.01353968867125688 tbe:0.006231231232963419 :0.029334589235309752 +out:0.33837689740148186 physical:0.015188476080502267 appear:0.013474907451478418 that:0.011308940697738848 :0.6216507783687987 +share:0.5209828023649684 proportion:0.46106734192050414 way:0.00035785912745050884 tax:0.0003548618286337713 :0.017237134758443212 +religious:0.609252802156617 beautiful:0.022957956615257402 British:0.017296064369078958 most:0.013733689447947721 :0.33675948741109873 +the:0.23415137372028463 The:0.08968757061166102 of:0.06774753882058922 cotton:0.05334212124431766 :0.5550713956031473 +the:0.1942075829981242 he:0.15926424757148355 it:0.09864927631793703 they:0.06732590120217838 :0.4805529919102769 +more:0.055669462865177405 wise:0.03330899909303273 ed:0.03147242562670986 necessary:0.027727386866653703 :0.8518217255484264 +an:0.05722106176288006 the:0.037012832811322754 who:0.03687379808969388 time:0.03480965834935746 :0.8340826489867458 +several:0.1903299231253145 different:0.10706712029316942 more:0.08777215396531757 full:0.07181058724366449 :0.5430202153725341 +of:0.04799314231681188 To:0.02956821324705019 and:0.028729813982793118 to:0.022934478343646498 :0.8707743521096982 +lor:0.13404422885910092 la:0.11550675258167487 is:0.11192529317816942 ing:0.09081758039568259 :0.5477061449853723 +friends:0.145630757449427 power:0.08167984570213073 loss:0.0540217931878466 rights:0.03945679585572804 :0.6792108078048675 +going:0.5030630546742354 happy:0.22863462949314647 sent:0.1429696304503168 lost:0.0355249434767499 :0.08980774190555138 +and:0.3737696465700821 aud:0.11536687589169085 is:0.07989608172401787 ;:0.05631720668991016 :0.3746501891242991 +things:0.9509532624963921 and:0.014179008177744309 the:0.0039979828044909745 of:0.003807473747305427 :0.027062272774067083 +have,:0.23826699102545798 I:0.08399711794018215 1:0.08287716530154658 man:0.044777686545624626 :0.5500810391871886 +State.:0.05761601041603994 business.:0.035226098618329205 the:0.02989274414045141 do.:0.018792602427640703 :0.8584725443975388 +and:0.17978046636219433 He:0.1743506196128246 It:0.13613571914083336 it:0.0879001077624259 :0.42183308712172174 +same:0.4071006110493347 right:0.15476190567698003 only:0.0799642224354269 wrong:0.04934727635219065 :0.3088259844860678 +of:0.5206578234419388 the:0.07609124196470811 for:0.057113635559764085 on:0.054258770197562034 :0.2918785288360269 +respect:0.49402385704734486 regard:0.40102393369432193 opposition:0.05036936670544774 the:0.002767053534339279 :0.0518157890185461 +terrible:0.06434464865769346 Ohio:0.06335639980608772 de:0.05966157997462789 most:0.037757526162570575 :0.7748798453990204 +I:0.8345141976892666 he:0.07891831007258748 she:0.03365800141150603 it:0.012691860430141538 :0.04021763039649813 +day:0.8041460352205447 Monday:0.08586289608022599 rule:0.008130101949564109 Tuesday:0.00717610879593998 :0.09468485795372529 +e:0.1390947971399423 and:0.057837190728449415 but:0.053074043685989766 results:0.04287525376855832 :0.7071187146770602 +ago.:0.01631951235344855 him.:0.008777687048194892 the:0.0010258039829803185 d:0.00087717276665685 :0.9729998238487194 +then:0.076459749214569 White:0.029557687006528072 Young:0.02391330337896676 Smith:0.010635194410391161 :0.8594340659895451 +to:0.25118777285241967 and:0.15552440750241012 by:0.11242721435348034 a:0.1062944876124982 :0.37456611767919185 +found:0.1256488271855837 deemed:0.045610471411671884 make:0.037434646380331636 do:0.02593416889943506 :0.7653718861229776 +President,:0.03798431627662012 act:0.03031222286273223 United:0.020207007112116156 Texas:0.017425557157274802 :0.8940708965912567 +lots:0.334926508655915 lot:0.2547162436492562 aid:0.13178782155016044 bonds:0.11589472601788885 :0.16267470012677945 +shall:0.9568218967373106 some:0.014089626323756398 will:0.013205055098059726 ,:0.00313449846676181 :0.012748923374111511 +the:0.2609525950417199 and:0.22262158207473756 as:0.07356104914725173 of:0.056080365616602124 :0.3867844081196886 +and:0.07343943333001125 under:0.05808441308327247 or:0.026214883352681365 died:0.025494452637343044 :0.8167668175966919 +in:0.28926752916887927 by:0.26836297766799566 at:0.22797915660428927 on:0.13801652154226218 that:0.07637381501657375 +appeared:0.12813772119090117 of:0.10385196674073363 was:0.10022969915437738 man:0.06471677095616714 :0.6030638419578207 +de­:0.07384620410023549 said:0.0326790146478709 same:0.024867970390977285 most:0.0216619037479861 :0.8469449071129304 +of:0.3539993680186006 in:0.13604489633003655 the:0.12662278224939783 to:0.10551247207375158 :0.27782048132821335 +of:0.31674476998333895 for:0.1476030391089377 to:0.13406698497409794 over:0.13101341970404065 :0.27057178622958467 +in:0.2804100397446656 In:0.1643303155495221 and:0.14400965259631143 yards:0.08561801861785853 :0.32563197349164247 +the:0.002735759523050461 business.:0.0006994035393371001 one:0.0003006531714272321 it.:0.00024154890703614564 :0.9960226348591492 +the:0.6119174490689088 The:0.19080273030966452 a:0.1481372328958236 his:0.03590831310764146 three:0.013234274617961742 +taken:0.4640441023267223 after:0.13294072666462614 upon:0.06004812380038023 on:0.04840309057844658 :0.29456395662982476 +and:0.3848331123715789 of:0.1748759440567624 in:0.16946550427712417 as:0.02877993276793667 :0.2420455065265979 +and:0.09460521907043218 but:0.03759930887099255 almost:0.037082930236470274 rule:0.02504744428706312 :0.8056650975350419 +a:0.8940635217012108 any:0.01784094060374244 is:0.01677298817759495 in:0.01417415050888473 :0.05714839900856703 +the:0.9943709310612421 a:0.002815087782705952 tho:0.0021917243430810145 no:0.00010643280835714491 :0.0005158240046137934 +the:0.11200238484049337 of:0.09114605657496419 and:0.0860797227405975 to:0.07765456773924356 :0.6331172681047014 +the:0.39192973188538577 his:0.3117109740493731 their:0.10084245119087597 her:0.08159466866186246 :0.11392217421250278 +of:0.35494088038539795 before:0.216831727875405 from:0.16143596831915943 in:0.13275452876215083 :0.13403689465788673 +he:0.7943761513339548 they:0.12074429207144294 you:0.030317132362251708 was:0.02819242955659955 of:0.026369994675750952 +year.:0.04124126373563222 .:0.004015006359092726 —:0.001641211894462178 3.:0.0014763917489989161 :0.9516261262618139 +sum:0.10301468986964343 result:0.09460070464454833 number:0.03018377312295844 basis:0.029432882317526148 :0.7427679500453236 +and:0.15598932113931469 are:0.12888702373533523 were:0.09994139581106888 is:0.09776009209573774 :0.5174221672185435 +be-:0.2272340406187241 man:0.09133508430095946 few:0.07769008978597483 great:0.07309704190006135 :0.5306437433942803 +up:0.3197631613053058 contract:0.12276935410850327 years:0.041154799581479835 minutes:0.03692635119778789 :0.47938633380692314 +and:0.23837990291140382 When:0.08928981476935362 but:0.08591133469322991 Well,:0.07315011620771897 :0.5132688314182938 +point:0.7273751789503479 time.:0.0064028458895740445 cost:0.003617424508097536 time:0.0027173266550407555 :0.25988722399693975 +and:0.13991569762260256 of:0.10530999943567014 the:0.08210375273371047 by:0.058139797164433425 :0.6145307530435834 +These:0.7134090698510771 a:0.09520617710058035 and:0.05833029213584614 the:0.05609821868172576 :0.07695624223077067 +is:0.17513262563589693 and:0.1234367287715036 in:0.1066197777490164 was:0.10274960769761013 :0.49206126014597296 +be:0.2493124262377492 the:0.21167342577798362 a:0.09879370439422572 its:0.07200301091491752 :0.36821743267512397 +is:0.5508719844298885 still:0.15212397053737656 Is:0.13573416787479348 was:0.12496467090307006 :0.03630520625487139 +benefit:0.10247140472308115 purpose:0.06844398082692932 use:0.05088711292131928 support:0.02949842387462113 :0.7486990776540491 +etc.,:0.18214538517539253 it:0.12186323266676011 which:0.05845369228657949 It:0.04840121879247741 :0.5891364710787906 +this:0.37531732005466445 the:0.3430323219495513 tha:0.00388100056849917 tho:0.0013303439199033873 :0.2764390135073817 +is:0.6434544125732343 was:0.1571285406463686 were:0.10518940401157699 are:0.08940130218787086 ia:0.004826340580949134 +many:0.757221425504107 the:0.1861495339614366 two:0.017840528678557635 long:0.01412087717635403 :0.024667634679544807 +has:0.9355405608582456 would:0.005752658877387052 had:0.0026054261837790325 can:0.0006910074682524327 :0.05541034661233604 +and:0.3102697068077091 it:0.15255510370574119 he:0.07856622368566375 He:0.06367567803570094 :0.3949332877651849 +live:0.04764530568594573 employed:0.04221662530495243 in:0.021909900398342914 stand:0.017985783702588357 :0.8702423849081705 +the:0.146058784398418 and:0.10125505149007634 to:0.09538417817406569 their:0.09300873880365555 :0.5642932471337844 +the:0.897212740667636 tho:0.04634702686290894 their:0.013277306424219112 been:0.008439334908279209 :0.03472359113695666 +that:0.9159924313401118 if:0.02463621575356003 thai:0.020278148059489295 far:0.011387509408588991 :0.027705695438249862 +will:0.3867892401102364 should:0.18631668500107168 can:0.16407272770823933 would:0.13370468551631162 shall:0.12911666166414099 +I:0.13942037649068237 the:0.11189128042103089 and:0.08903702814222111 sur-:0.08648284746692796 :0.5731684674791376 +expected:0.2906779558201033 probable:0.2585955406807147 estimated:0.16161440595731413 believed:0.11499682352118465 :0.17411527402068303 +on:0.4955214563305885 to:0.22672625163544902 and:0.1088074217315978 3,:0.03622735277090289 :0.13271751753146166 +owners:0.1041443232093409 price:0.07689664035853326 crops:0.07401465012941269 work:0.05600258415404532 :0.6889418021486678 +the:0.6960160484571862 said:0.2292706503702293 tho:0.017791223898186093 a:0.006528817337815591 :0.05039325993658294 +old:0.740180333982898 Young:0.03408177994358252 young:0.003197226189238496 the:0.002282977906378473 :0.22025768197790255 +forces:0.05423355978182573 Major:0.03329361887766465 company:0.029152899229178828 other:0.024778370838931318 :0.8585415512723995 +Miss:0.17134448050903683 and:0.12165609922965842 Mrs:0.09255117529869504 Mrs.:0.08630464272636476 :0.5281436022362449 +the:0.18205812361383863 a:0.05097637121446875 other:0.03233487620032504 his:0.019534350916346765 :0.7150962780550209 +present,:0.08652469608880488 sold:0.015192811736791873 shot:0.013705653347934258 not,:0.013318175701524604 :0.8712586631249445 +now,:0.8257081749709337 up,:0.07996970914843801 simply:0.02519817708090801 not:0.013182719360957842 :0.05594121943876227 +that:0.4858356660827771 what:0.269019977394376 us:0.03502826787914228 as:0.02902248562964197 :0.18109360301406277 +the:0.5431660303933454 a:0.10908248272370334 their:0.04884859760551229 any:0.0417022842435897 :0.25720060503384923 +picked:0.564152149058218 given:0.0967048302103567 fired:0.06075028161417048 taken:0.03906040269960173 :0.23933233641765309 +constant:0.08954859407464323 light:0.06014410620459179 dress:0.039661293637500386 large:0.038550387547102494 :0.7720956185361623 +and:0.005255942734074576 one:0.0044692575745774645 out:0.003761658168161649 day:0.002995285372737045 :0.9835178561504492 +tion:0.2138589605411091 ment:0.08241127644893707 ments:0.05656705925879543 method:0.054650531208452854 :0.5925121725427056 +as:0.4281898573378841 so:0.07428183881686745 a:0.07090695357291874 not:0.04319388368791382 :0.383427466584416 +father:0.5976463630210335 wife:0.15626727325869968 clothes:0.014927879521791162 home,:0.013267358523436579 :0.21789112567503924 +few:0.10309997215837853 moment:0.06050594686427624 new:0.048104148544017844 grand:0.047874909290694184 :0.7404150231426332 +a:0.30353693444440716 and:0.1484266115008712 the:0.12641518672325924 The:0.10003141618561667 :0.32158985114584576 +the:0.6330780230576788 a:0.0836266790444546 tho:0.041097019189590474 no:0.016747895014214816 :0.2254503836940613 +very:0.06712480954655088 all:0.05410342439392686 Messrs.:0.053884171507597355 the:0.05179587666753271 :0.7730917178843921 +own:0.10354485728894225 national:0.07032858320459637 political:0.03968486228662452 great:0.028454873262688318 :0.7579868239571486 +said:0.38176040994134314 the:0.30146861259181734 which:0.0947213760651941 aald:0.09040779782363029 :0.13164180357801522 +of:0.19496015753978257 and:0.1106175612017432 view:0.07086615404587943 sent:0.06909601419584585 :0.5544601130167489 +so:0.3349851301344678 when:0.19014529923544873 as:0.158049344754078 then:0.13510098781349 :0.18171923806251564 +red:0.7649589706181745 white:0.07421833313117032 colored:0.03905157554715655 newspaper:0.019512643162611802 :0.10225847754088684 +the:0.2621318961418186 evidence:0.14610145506744074 these:0.06826123334595388 to:0.06820249517470753 :0.45530292027007935 +that:0.2005874917471926 which:0.14579838604121545 who:0.10312139423094359 and:0.06186107460353165 :0.4886316533771167 +finest:0.143017014059964 too:0.08695523332374243 strong:0.0668244521052877 satisfaction:0.03929726007970455 :0.6639060404313013 +the:0.8379088747331719 these:0.04315298226707979 this:0.04124538808407016 tho:0.037923638691120934 :0.03976911622455725 +and:0.2634883277583036 That:0.22518168292952262 that:0.11689115091518354 but:0.07746604716764038 :0.3169727912293499 +be:0.04362269853224193 make:0.033036387671847224 prevent:0.03220558719774464 pay:0.02484670110726738 :0.8662886254908989 +M.:0.028507048177497742 M:0.023102150383696406 Block:0.021744052389137368 B.:0.020140813186214346 :0.9065059358634541 +the:0.74339219765479 a:0.05660226670844715 tho:0.031037963286313044 his:0.01390394192984486 :0.15506363042060492 +of:0.31832529250898456 and:0.09845918174001544 the:0.07182459277758527 to:0.026922138989534564 :0.48446879398388 +of:0.6770592672478996 the:0.022393068822937855 to:0.008526932840963466 a:0.0063310322836022115 :0.28568969880459694 +in:0.30786765912021735 of:0.22217670990176805 to:0.20909794835770074 by:0.12217132279375253 :0.1386863598265613 +is:0.44508001908218914 was:0.17100055705866324 has:0.1299203904849234 does:0.12914205848973195 :0.12485697488449228 +the:0.3052564109531486 of:0.22461848234052464 with:0.025052491606693546 a:0.024527816070036262 :0.42054479902959696 +standard:0.2835645410780441 off:0.241835320473883 and:0.004100847359454384 etc.:0.0029757439013759638 :0.4675235471872427 +of:0.3500576512059894 to:0.2978948798590943 in:0.13756137097897247 on:0.07501547771978605 :0.13947062023615783 +of:0.32143211648793696 a:0.1045175765213921 est:0.0786672711776622 young:0.07554805292737196 :0.41983498288563675 +would:0.20828076421218109 next:0.14821632987171013 will:0.023731954154700738 to:0.005581076180467367 :0.6141898755809407 +on:0.32694512344447213 in:0.17721645568361147 and:0.16724638737406902 Not:0.09568408252579381 :0.23290795097205375 +claimed:0.16117755761352204 owned:0.0541114246070077 held:0.04642148784669493 urged:0.04269508921784943 :0.695594440714926 +afternoon:0.12010450059621687 work:0.045215019533029026 week:0.04459245588633976 method:0.029938069232020453 :0.760149954752394 +or:0.25386909587804735 the:0.07680821991749982 of:0.06545981026082603 and:0.05149901290663393 :0.5523638610369931 +road:0.20554801148361432 object:0.05153702909952727 line:0.04743848733854917 points:0.0320673722942702 :0.6634090997840392 +The:0.026299470815476844 His:0.009592019314356751 the:0.008978238059609624 My:0.0027369279868165743 :0.9523933438237402 +a:0.41931947972281775 and:0.06654969858831694 A:0.05299660812257033 the:0.042713772566261625 :0.41842044100003334 +different:0.611052888540969 new:0.11632860864509456 false:0.008609419754355904 of:0.007410479607539568 :0.256598603452041 +the:0.1235310773510529 by:0.1016502383635781 with:0.07777323847033334 and:0.06955423593554973 :0.6274912098794858 +the:0.7668036865012318 their:0.06448192078632263 where:0.06093485182718313 what:0.054958669866330724 his:0.052820871018931764 +Carolina:0.2794718275333242 America:0.13560733155301552 America,:0.03160851047150179 Dakota:0.02630666693549492 :0.5270056635066634 +leaves:0.08631018223031912 then:0.04663915627083625 northwest:0.0407433328357677 the:0.031265500963446144 :0.7950418276996309 +they:0.9765195906272591 to:0.010060056005414516 you:0.005618009030237203 there:0.004276380978086295 :0.0035259633590029936 +made:0.12731178206109767 able:0.12259481186153957 sent:0.059758806956952425 compelled:0.050110180355814736 :0.6402244187645957 +that:0.40621147183604 him,:0.25301353636205776 this,:0.11509197081706277 it,:0.04106096517066586 :0.18462205581417354 +foot:0.5391603896410222 fire:0.12419877824635606 tire:0.04635669860986488 said:0.018652423490308167 :0.27163171001244857 +The:0.3696635217138405 the:0.26835632661548414 This:0.055427967229643736 A:0.04951112990553345 :0.25704105453549825 +J.:0.25764535935450444 John:0.22768678754039767 G.:0.18589183867987943 I.:0.1278149236898465 :0.20096109073537194 +the:0.3308516019807708 which:0.25089650273923975 a:0.09634322722977012 tho:0.025154656564310453 :0.2967540114859087 +the:0.18201442473617385 a:0.04525100586022074 other:0.025037763907347046 his:0.019736763437331255 :0.7279600420589273 +notice:0.9621080553455907 Notice:0.03277277986727918 it:0.004969156094600289 and:0.00011529244904563226 :3.471624348417671e-05 +said:0.025142640316077304 other:0.01820975585050084 whole:0.017499836851694817 of:0.016696773327106694 :0.9224509936546202 +I:0.00812472975654797 tract:0.002214984632446402 is:0.000304654700917583 are:0.00017900345229727448 :0.9891766274577908 +to:0.49433963178176094 In:0.24157519554459486 caused:0.10681467347054859 in:0.09010474090791094 :0.06716575829518487 +how:0.2793086758414715 love:0.23277225207398505 came:0.065620085862541 not:0.04383503030636486 :0.3784639559156377 +the:0.31107502546988797 his:0.22817966364549205 its:0.054408059734233065 raise:0.0337794266885266 :0.3725578244618603 +charge:0.31157179214166 proportion:0.018969790414821944 ease:0.016259426478772186 position:0.014464735314772742 :0.6387342556499733 +and:0.31104912106919674 declared:0.09442230397300821 probable:0.04300010702259479 showed:0.03509479970883453 :0.5164336682263657 +this:0.3632178025796363 the:0.17032068143726578 is:0.06487163586257427 said:0.04947074507018707 :0.3521191350503365 +and:0.04653517419228093 the:0.025257095602084088 morning:0.013689066775114939 matter:0.0117771435536807 :0.9027415198768394 +deg.:0.08173928391923627 3:0.05068253322826497 25:0.04639718738890941 1:0.04035779974601897 :0.7808231957175704 +I:0.4081498211945381 we:0.09839681199026987 it:0.07803216553477382 Why:0.04954237279866166 :0.3658788284817567 +the:0.6701609170823637 tho:0.10435872796431503 Mr.:0.04706319020795162 health:0.0374976363470274 :0.1409195283983422 +to:0.25789863769351995 tn:0.024650706519178826 early:0.01033517449533094 work:0.0061495446269527075 :0.7009659366650175 +and:0.6470892478967497 but:0.11969866531025944 he:0.09843915139027486 which:0.06657251450563748 :0.06820042089707856 +method:0.17505504598904562 results:0.0681118992144926 extent:0.05466183951741268 value:0.03170838339873056 :0.6704628318803187 +and:0.09329759813620092 of:0.07111455789320605 the:0.07080735790269947 The:0.04125841625646125 :0.7235220698114324 +the:0.4765880864427688 him:0.06122083421224041 my:0.054621438050859214 tho:0.02559268127240971 :0.38197696002172177 +and:0.4634675842126865 with:0.1439994077561378 her:0.12267288445269788 of:0.08740350679072541 :0.1824566167877524 +any:0.28359186761924454 every:0.1472909491109577 anything:0.10046317367521311 all:0.0640461120729231 :0.40460789752166154 +of:0.12213003912132143 and:0.10124415378440874 the:0.06911737980960476 to:0.03206526274802069 :0.6754431645366444 +do:0.6856731034540832 would:0.11748078436902529 I:0.047578196507018986 to:0.011361674912094314 :0.13790624075777805 +the:0.46734851110961306 account:0.1479741554184454 average:0.04413044676485917 behalf:0.01802551008324673 :0.3225213766238354 +the:0.34639725792432763 their:0.09383210202016558 a:0.06239527969428268 its:0.057261687542415014 :0.4401136728188092 +willing:0.2025690350221627 trying:0.09748871169420009 compelled:0.09179822896790252 ready:0.07268401417095913 :0.5354600101447754 +own:0.046079355927512174 hand:0.01506494829618009 the:0.012625894337331644 old:0.010147887520623004 :0.916081913918353 +in:0.46893992848191673 of:0.1751999927657814 is:0.13998214960418942 between:0.1294306646198635 :0.08644726452824911 +I:0.7804659161900795 We:0.12512821657649636 we:0.03559512997557207 can:0.031466356819564105 You:0.027344380438287966 +Smith:0.4055621207710447 E.:0.04870468223123408 Johnson,:0.038842379315378026 Brown,:0.0023926748977533665 :0.5044981427845898 +at:0.967569728249608 nt:0.01367969019644458 beyond:0.006651167774373473 below:0.003004497329931226 :0.00909491644964274 +to:0.6204396178080559 at:0.1703572496478658 in:0.08898975061995741 towards:0.06106000280138103 by:0.05915337912273989 +for:0.46202986798559503 behind:0.3667738531019722 on:0.06128116601783204 with:0.055013868269904447 :0.0549012446246962 +a:0.27519570853363845 the:0.24292800014493043 been:0.1259034483377656 an:0.04141917825508121 :0.31455366472858426 +purchase:0.10509628623122697 construction:0.07282195032064014 advantage:0.054609402295280364 payment:0.04611064660838844 :0.7213617145444642 +said:0.9997271375834366 the:0.00016591724271896167 they:4.5639813845705855e-05 his:3.219253074196159e-05 :2.9112829256841907e-05 +that:0.7129107722725818 and:0.027481496523929054 existing:0.013292514896158826 are:0.012943016657336093 :0.23337219964999426 +of:0.9433100149871999 across:0.016255946064271453 to:0.011235673072935723 in:0.0075262491279405415 :0.021672116747652456 +offer:0.1743967812507428 have:0.08673390197565364 be:0.0723987635973065 go:0.0622933888618289 :0.6041771643144682 +now:0.4883302129818178 not:0.09334577090204114 living:0.059541049574750614 found:0.04236389299306274 :0.31641907354832766 +said:0.42182098241613375 county:0.10466604005835109 County:0.07893163580316015 Town:0.04223793363670667 :0.35234340808564835 +make:0.04848537338151603 be:0.04479694398668019 satisfy:0.03751466427838953 meet:0.03534403696413432 :0.8338589813892798 +up:0.4893585362834054 with:0.08460521299701376 ing:0.08422242188971628 and:0.07189919445536332 :0.2699146343745012 +good:0.8675718363446028 the:0.056844818618964676 that:0.0525697015554491 full:0.013662297710997548 :0.009351345769985865 +to:0.6332775864737694 and:0.1136504926283589 may:0.0715904400608683 long:0.050843484431136246 :0.13063799640586715 +Secretary:0.7281496435495803 question:0.006313077480491549 people:0.0037130386735343642 amount:0.0025969713463941764 :0.2592272689499996 +I:0.9999955833255294 you:2.0068589354132136e-06 we:1.3637463643082402e-06 to:5.574332639732232e-07 men:4.886359070087311e-07 +And:0.6402632888042082 and:0.10450877677124283 Well,:0.03723135540011322 did:0.019658547378982507 :0.19833803164545313 +the:0.698487027360345 tne:0.23195594436976455 a:0.006545845571190824 40:0.005895437519336903 :0.05711574517936282 +of:0.7001665773398444 and:0.09673956355984713 ;:0.02066752204802009 the:0.02026859170519374 :0.16215774534709468 +are:0.27222810788220675 its:0.0762202469167445 Is:0.067132520657218 the:0.0645635074719384 :0.5198556170718924 +States,:0.6097048423562613 States:0.2723876757042866 State:0.008126442149789569 United:0.007084829332535793 :0.10269621045712679 +must:0.7819487990426178 will:0.10704321611658968 would:0.04113575713361539 should:0.03841089647116454 :0.0314613312360125 +the:0.3676979779609055 a:0.35668016749772385 any:0.09216940668327817 The:0.07926910413086899 :0.10418334372722346 +and:0.26392468962173915 than:0.11324077008337008 to:0.06755245450294403 the:0.05901523661993801 :0.4962668491720087 +do:0.39176126201931594 could:0.1912247435357274 will:0.15182852929674354 have:0.14502160928633145 are:0.12016385586188175 +machinery:0.43739877306027136 which:0.08028549347842034 the:0.006119516748018098 a:0.0032283365052777407 :0.4729678802080122 +name:0.1294805603430022 address:0.10525715460564099 nature:0.08257235690932133 time:0.04472472337123621 :0.6379652047707992 +here.:0.7500898411111688 of:0.17612891215589535 and:0.02732731545099308 at:0.004670616357201911 :0.0417833149247408 +upon:0.3129495580656515 while:0.27209914760999765 of:0.12571560048292493 to:0.058137119382658885 :0.23109857445876708 +now:0.40462238408934353 thereof:0.0565423898741042 and:0.03362687305561927 the:0.027824570187674872 :0.47738378279325816 +the:0.8468121637331105 other:0.044750569694681365 tho:0.021792275697558122 tbe:0.020090362576764206 :0.06655462829788565 +the:0.33300339613608065 a:0.10647753216885257 as:0.02188254946465158 other:0.018299955421901604 :0.5203365668085137 +to:0.19285907898278043 the:0.12256115608793076 re¬:0.03847379299977508 can:0.03301115785244764 :0.613094814077066 +government:0.037114173648068814 progress:0.028593313821375744 the:0.025556987581508282 or:0.023693128552045657 :0.8850423963970016 +that:0.9568904704563794 on:0.019855258900797316 by:0.005615601045166146 at:0.0037578709788650406 :0.013880798618791957 +the:0.438115117076147 a:0.0633792682607442 his:0.05410919233865608 their:0.04514144308653348 :0.39925497923791925 +of:0.2995193619103678 and:0.13512651389671498 in:0.09511586244345523 to:0.08896260612381025 :0.38127565562565174 +the:0.026607297086929053 weak:0.006981246223345888 his:0.006346947316283742 he:0.004177216698794225 :0.9558872926746471 +the:0.9999026398749933 my:5.644985305570548e-05 her:5.6329679781585525e-06 its:5.348639976234217e-06 :2.9928663996435497e-05 +the:0.37418044619794283 tho:0.13065748078474254 a:0.06734875754294152 his:0.033295903964666924 :0.3945174115097061 +the:0.08432597709534885 to:0.07045958696457998 and:0.06536380028949686 a:0.05738305883419417 :0.72246757681638 +10,:0.2036433956305692 8,:0.19000149848356096 S.:0.1792446811182624 about:0.0015727292600878177 :0.42553769550751974 +a:0.5164968885566746 for:0.22851701229361848 without:0.10582677897565668 of:0.07490815215404352 :0.07425116802000663 +has:0.1502054503820631 would:0.1449517749933582 sent:0.12587321956547476 was:0.05786849352286149 :0.5211010615362425 +rate:0.018718700141356775 mortgage,:0.01861048580055756 same,:0.0166150201544413 scene:0.014192133805230694 :0.9318636600984136 +day,:0.43929199451373985 year,:0.11770246300409504 day.:0.02514349221478564 little:0.00946833404759896 :0.40839371621978066 +to:0.23322331013635209 and:0.2241879668618455 pre-:0.11797308195709723 which:0.07390551105146975 :0.35071012999323536 +the:0.27565640392082746 tho:0.0781245358357915 a:0.042371884408534684 their:0.028758856655840725 :0.5750883191790056 +the:0.7199885913855616 a:0.02444535219148918 every:0.0236100023589618 he:0.021847187552388226 :0.21010886651159932 +and:0.38202032215682935 an:0.1746930865320424 the:0.10359371773052121 of:0.09517432206071103 :0.2445185515198961 +a:0.6703274445263765 the:0.12704820553471335 their:0.10331793903427047 to:0.028412178006561165 :0.07089423289807845 +the:0.8294596681523921 any:0.09784538846475041 new:0.027640299012349386 tho:0.014297911520631852 :0.030756732849876338 +a:0.34676292147012555 the:0.16019122881875433 and:0.062165645019600445 A:0.06105097388836469 :0.3698292308031549 +miles:0.4182742703696649 feet:0.3069514818077484 foot:0.009009497794409056 mile:0.006208988455093104 :0.2595557615730843 +been:0.9976135715990415 so:0.0010402629102824212 very:0.000528016043130138 most:9.644836679904018e-05 :0.0007217010807469894 +the:0.2848474672150909 Mr.:0.056962834125112084 prices:0.044182539993978864 he:0.03232013465896622 :0.581687024006852 +and:0.1452785323815174 of:0.1160596774762306 the:0.08246644236695186 to:0.04723901635283659 :0.6089563314224636 +men,:0.051082092474508636 girls:0.04483594014301581 Indians:0.023165728510063124 taxes:0.012954880028207291 :0.8679613588442052 +country:0.1014102635549966 year:0.0448176381638841 new:0.02932649580690125 talk:0.021739355247053012 :0.802706247227165 +of:0.1746710955642573 and:0.1266733840397961 the:0.05477093332702402 The:0.051774658635633526 :0.592109928433289 +few:0.003658178483712321 day.:0.003260096608114083 short:0.0029836063929488325 small:0.0027934580606992086 :0.9873046604545257 +name:0.07588613072336968 record:0.058317975167335764 ago:0.04841139959343542 are:0.04190165904652437 :0.7754828354693348 +to:0.082700351965408 making:0.07667617058015629 found:0.06576623475168238 made:0.06480753785016671 :0.7100497048525867 +with:0.22425807214426088 of:0.15729802914103283 the:0.1498201273932785 in:0.11876636559252368 :0.34985740572890406 +.:0.1378944221856798 girl:0.1337123113335361 ter:0.11647162556101615 man:0.0971301355011531 :0.514791505418615 +cities:0.0737708667085331 rich:0.036403852851974006 children:0.03498904896293389 farmers:0.026220117440348734 :0.8286161140362102 +master:0.12166653194534964 and:0.04772332887198435 which:0.04184158017194513 water:0.03684449302415679 :0.7519240659865642 +of:0.17890398816701944 with:0.15262288809289 and:0.1468207253940073 on:0.07342788686598857 :0.44822451148009457 +population:0.5666928148420949 story:0.13053717379522403 whole:0.05583523937755533 appearance:0.034760171085522464 :0.2121746008996034 +men:0.42746494142090824 minds:0.2922762149251215 children:0.09707725116716791 girls:0.027526422426968483 :0.15565517005983384 +The:0.11105065200400377 He:0.06391967513479649 I:0.055151371105481066 the:0.05247296294323344 :0.7174053388124851 +then:0.7203708133159635 so:0.019286360783705856 I:0.00970341106896997 the:0.0045107197388155025 :0.24612869509254495 +next:0.5279266886732711 the:0.3514503138653471 May:0.025305772315871417 general:0.023002805353469474 :0.07231441979204109 +use:0.6517438687263278 opinion:0.024195753774744443 claims:0.015112621786593472 faith:0.01485181977868928 :0.2940959359336451 +The:0.9938849725111552 the:0.005737661844326028 of:9.10788445805014e-05 in:6.987020505124861e-05 :0.0002164165948869428 +construction:0.0865306522814463 part:0.08337128156736832 days:0.051834689848375255 purpose:0.051798842497546245 :0.7264645338052638 +in:0.812431210555889 ia:0.040816813918897805 on:0.0033736801024234265 In:0.0016574727889202615 :0.1417208226338696 +The:0.36042312423238543 whose:0.10998448518418287 Their:0.03582009118923278 and:0.03424733451401775 :0.4595249648801812 +to:0.986474413863093 from:0.012879515440276507 for:0.00031124100574635025 of:0.00018701597032637265 :0.00014781372055767156 +from:0.9998563624502448 of:8.390919502701472e-05 on:3.177227401607428e-05 with:1.3370640698644997e-05 :1.458544001346663e-05 +of:0.3292941049092157 or:0.11313601921608461 But:0.08992418367760943 we:0.08851624341485648 :0.3791294487822338 +it:0.15922637089429406 a:0.13909119296750486 ;:0.0871473266899716 and:0.043454851291303775 :0.5710802581569258 +most:0.07977367047459397 best:0.04774589373192801 same:0.04485890994671109 following:0.0355706990675447 :0.7920508267792223 +of:0.10759351429400965 and:0.031658522672838134 to:0.018242172590476405 in:0.013192624116637883 :0.8293131663260379 +to:0.30266555563763115 may:0.18133254040062066 will:0.18007097461219462 should:0.0902923013116587 :0.24563862803789496 +of:0.8886100477248708 in:0.02682120343863559 on:0.020967430214138726 from:0.014151034245289478 :0.04945028437706538 +full:0.3588645226307452 red:0.23980817968327592 tha:0.08307501530710669 by:0.06939485772407307 :0.248857424654799 +resolution:0.5931936100699667 in:0.3250034343158348 bill:0.004225219951614364 committee:0.004096147212567021 :0.07348158845001716 +He:0.18238819562760578 who:0.1712077213384631 has:0.15378735960754286 and:0.13237677569688194 :0.36023994772950635 +S:0.004014715074268504 s:0.0009159727075195105 at:0.0001979360189892106 table:0.00013990225265612827 :0.9947314739465666 +a:0.545001904625056 his:0.21776087531986973 open:0.118757878223372 the:0.07714549869541472 :0.04133384313628741 +the:0.4229879132185376 Mr.:0.028380187260756033 at:0.02302142328785119 off:0.01769777340632473 :0.5079127028265304 +and:0.3075098572999649 nor:0.2805255355716874 than:0.08281137435962686 of:0.0511609736865098 :0.27799225908221087 +he:0.17757134602150282 the:0.1570545959554349 is:0.09513777651709274 they:0.07739045461590957 :0.4928458268900599 +train:0.3601286000412681 track:0.113881004329915 morning:0.1074827738681413 rain:0.010909081106174032 :0.40759854065450135 +the:0.44637635205646586 The:0.41349145713755553 and:0.02863409968498032 whose:0.01691325796168253 :0.09458483315931579 +of:0.17208544491998792 little:0.06570708392293476 ous:0.052972160650818924 w:0.04391079642628967 :0.6653245140799686 +the:0.43693178437054275 any:0.09564068361423742 stand:0.07575434572376266 con­:0.043071864579122286 :0.3486013217123351 +people:0.03616460603060191 country:0.0287706138994856 city:0.016122561281297895 world:0.016109202015169882 :0.9028330167734447 +used:0.9733399459234007 came:0.009814385503260359 will:0.007665388284237823 does:0.004910976157118907 :0.004269304131982206 +of:0.6788313682647874 and:0.08220039140693909 to:0.02116528630477466 were:0.020871376451975742 :0.19693157757152308 +last:0.5517195789962422 the:0.15638696960502824 to:0.09557827502347027 has:0.0773975476896428 :0.11891762868561656 +be:0.3972291063131637 the:0.05107780844819901 a:0.04486632274219908 stop:0.040157536844990176 :0.4666692256514481 +considered:0.21465108680048642 regarded:0.09663885834888986 known:0.06024389372800067 accepted:0.04135654213337751 :0.5871096189892455 +was:0.0895439858664155 away:0.06782168961838893 lives:0.06422937138733185 Is:0.05444126451232475 :0.7239636886155388 +form:0.08129720180281272 out:0.05307369176769899 pound:0.0435682413400164 set:0.03753864049515403 :0.784522224594318 +the:0.3917057530228139 say:0.11146881937876389 be:0.10303178252185102 find:0.057750830289445755 :0.33604281478712544 +are:0.34459946369957356 were:0.20079192346908478 know:0.184738190216821 have:0.08887421222696089 :0.18099621038755973 +the:0.33767961111456646 a:0.14246210777374022 said:0.04063980857534615 tho:0.022637171171618422 :0.45658130136472874 +the:0.1267366490359656 The:0.10161960378151634 that:0.08544020444040468 and:0.07786434007642974 :0.6083392026656835 +was:0.6510851722660852 about:0.25075488850016525 only:0.024926840404844976 the:0.022270195622950247 :0.05096290320595446 +the:0.09912783961517604 immediately:0.08622263618572738 will:0.08306470815779339 no:0.06546975432170862 :0.6661150617195947 +the:0.40868995686354215 this:0.18525528251259457 our:0.14473564025007288 tho:0.0281897877371783 :0.23312933263661226 +said:0.1621194343122085 the:0.12605040374704063 a:0.0644589121223498 Section:0.025952584502980994 :0.6214186653154199 +went:0.20463453317994487 and:0.13595168017500886 nil:0.09076022785909417 most:0.05026695458821942 :0.5183866041977326 +and:0.20560030005770985 to:0.11591351735158105 the:0.06327986701915342 ground.:0.0533383617289118 :0.5618679538426439 +sudden:0.02074188632862551 long:0.020598873299249084 grave:0.01993645230606943 all:0.019062411914129992 :0.919660376151926 +.:0.006254228144291405 commerce:0.006131209967913347 and:0.005394430640232517 from:0.0047181574887688125 :0.9775019737587936 +the:0.14880540485136604 this:0.03980011007177963 a:0.016730237923509885 long:0.015503618055889474 :0.7791606290974552 +the:0.5173388966059963 with:0.12858125225799993 un-:0.09351994236958411 a:0.04990154403544264 :0.21065836473097704 +of:0.4724599659163826 and:0.08615325833834533 Such:0.059095892016714745 as:0.054436520437935114 :0.3278543632906221 +then:0.1558387404179741 advantage:0.11017356089404749 thing:0.061495377552278345 demanded:0.03187856133394499 :0.6406137598017551 +The:0.028244326707429893 little:0.027415280025859332 new:0.02027700043938805 still:0.01953891025474808 :0.9045244825725746 +claimed:0.021807332943926637 cured:0.007324115444026637 posed:0.005474854495388864 dent:0.004583208779510362 :0.9608104883371476 +of:0.3855898885406345 So:0.11556275497574411 to:0.0941529889594172 since:0.07755652092302281 :0.32713784660118117 +possible:0.06020910110797058 little:0.05053056317588098 of:0.033395146791888736 the:0.02031569040292823 :0.8355494985213313 +of:0.18792510201661428 the:0.1802013194957383 is:0.17220071348320715 was:0.15603990775546395 :0.3036329572489763 +It:0.20599448313926913 This:0.11321729095213198 it:0.10689335665123006 which:0.08006549067252951 :0.49382937858483933 +convention:0.1375877466630375 county:0.05949435725145969 company:0.035716469430522924 city:0.02465762434089916 :0.7425438023140806 +J.:0.20934137324682314 W.:0.1855188366033604 C.:0.11307613657199735 A.:0.0635716536517972 :0.4284919999260218 +man:0.5241677192382422 woman:0.07616114801955913 person:0.042378852667530796 brother:0.041405445051607426 :0.31588683502306036 +be:0.36564239377782265 have:0.09057279059141263 seem:0.09020762841633422 of:0.052174605105124554 :0.401402582109306 +of:0.09589628797744039 the:0.07066528921815189 and:0.06850376519137044 or:0.058704841826673106 :0.7062298157863643 +the:0.3199807764957363 a:0.09587533429348072 turn:0.06989733996313056 some:0.06296221116978755 :0.45128433807786494 +we:0.36864147042165335 you:0.32418024155092673 they:0.1515197909924605 I:0.08156001951099826 :0.07409847752396116 +or:0.16481540674051662 of:0.1062353054204832 and:0.06786763475798958 to:0.05160605500306653 :0.609475598077944 +August:0.04853997593698886 June:0.020336598734300843 A.:0.010026752684987884 September:0.006894676065368883 :0.9142019965783537 +the:0.15923325438365746 and:0.09571366778834213 of:0.07861018440910007 The:0.03726097988416439 :0.6291819135347358 +beautiful:0.14714648481671103 light:0.14357455994343535 cents:0.004551642438912738 year,:0.003301632661232336 :0.7014256801397086 +high:0.06800316392934558 separate:0.029363774903018943 single:0.016229940831546635 the:0.012532399694132966 :0.8738707206419558 +of:0.9385258865566926 to:0.030767838477588218 ot:0.00721280499870148 and:0.007069897868865251 :0.01642357209815254 +and:0.04329422639160607 of:0.022695066595046318 Register:0.008581929101501228 famous:0.004181179513100666 :0.9212475983987458 +with:0.3209788744253626 of:0.2671755674160481 upon:0.07367892478498426 and:0.07130043944536998 :0.2668661939282352 +without:0.2333641319533438 to:0.14190157145845073 of:0.1159598516610748 in:0.1136311824716346 :0.39514326245549586 +come:0.0021447815435672144 comes:0.0002791384625627063 ner:0.00027526449027147885 they:0.0001472429387143712 :0.9971535725648842 +and:0.23691389139977945 that:0.2237298791331352 as:0.15083485023334792 when:0.07761849914002882 :0.3109028800937085 +of:0.24572595068552913 and:0.10904922573994286 The:0.08149852571951507 the:0.05035527278338689 :0.513371025071626 +that:0.43572098342573434 if:0.11589951551769653 yet:0.08425476168814659 said:0.0650845652274554 :0.299040174140967 +came:0.2750801205738059 offered:0.06561614491945578 desire:0.05641244725054892 wants:0.048023877573468314 :0.5548674096827211 +per:0.9897087251972408 ner:0.00018664157230710094 to:1.9170491609834673e-05 cents:1.1515673159236594e-05 :0.010073947065683084 +sent:0.1657018777051733 came:0.050917412554114215 got:0.02224321665967524 put:0.021442857061526203 :0.7396946360195109 +of:0.35372070849184967 and:0.06412463740730122 the:0.05966209305265851 their:0.054131374396503125 :0.4683611866516873 +to:0.9513588339948409 lo:0.025869580239505738 not:0.0009208126668069088 te:0.00030597131801131676 :0.021544801780835152 +It:0.15832434623090405 which:0.11486525300831522 it:0.10410572462151443 the:0.04706697138746074 :0.5756377047518058 +seeing:0.5934489530730547 the:0.2075457955489134 his:0.13979999816122235 my:0.02237919419191688 :0.03682605902489276 +and:0.7511547131065488 of:0.009430683774356387 .:0.005092656641859006 to:0.002504406256162728 :0.2318175402210731 +and:0.2597806390501208 was:0.19638651826737524 is:0.11631011562502899 of:0.07911362997902838 :0.3484090970784466 +following:0.11310429522806789 said:0.026801150188200718 market:0.013888047033258348 whole:0.012900891866762437 :0.8333056156837106 +coming:0.055851514647354515 next:0.046748297276027445 last:0.040917689165030545 greatest:0.03292630270391842 :0.823556196207669 +saw:0.18231611407264764 with:0.13511527716731206 of:0.10081519138410994 by:0.09034039787524147 :0.49141301950068894 +still:0.6585369437438856 to:0.10231891462092439 would:0.07947116528798145 will:0.06514896522260102 :0.09452401112460763 +sign:0.00425463695310303 then:0.0012675687980330335 served:0.0012415071068796744 light:0.0011250964589193343 :0.9921111906830651 +when:0.46251915551345013 that:0.22510942959749486 in:0.03144168112632615 and:0.027105248494861848 :0.2538244852678669 +H.:0.26735583600962537 L.:0.2625627568396699 C.:0.1694852636206602 T.:0.1455645515965704 :0.15503159193347418 +what:0.23049168288670702 the:0.2173926179509215 a:0.05147862278450369 their:0.049649747151883555 :0.4509873292259843 +would:0.38135592507398547 will:0.35575751556825197 may:0.12346245953076063 must:0.06989095940285193 should:0.06953314042415012 +finally:0.14381610031658107 when:0.13380018208409547 if:0.11823383728797392 as:0.11415522407127511 :0.48999465624007454 +under:0.5390535377387343 while:0.16339494128703047 that:0.10575423941486677 of:0.08879159496080169 :0.10300568659856661 +the:0.9939025103608581 this:0.0015836427937820237 his:0.0014418571015076018 it:0.0013811044784551906 :0.0016908852653971876 +in:0.0861821619960316 of:0.05719860083591793 House:0.035101514844159534 and:0.022448057440000804 :0.7990696648838902 +and:0.1097841786823311 at:0.10309500122789006 in:0.09265925315949487 a:0.05162510240008534 :0.6428364645301987 +the:0.28954755544990685 not:0.09014863925238042 in:0.08419953749070952 now:0.029152208525792738 :0.5069520592812105 +of:0.13718670078527498 and:0.09091507472832282 the:0.03249533071893512 to:0.029335288249439522 :0.7100676055180275 +say:0.27537981320421606 prove:0.16268908719985642 learn:0.0671591371664844 show:0.03957800417520896 :0.4551939582542342 +or:0.2237490253381456 the:0.19841494477443167 such:0.12209461373069883 a:0.10311282694427651 :0.35262858921244744 +the:0.533555983494458 a:0.13228979390818676 my:0.13071286319583172 his:0.044283901097377176 :0.15915745830414638 +most:0.02001228850982045 the:0.013158983349651007 United:0.011536352411917828 said:0.011316416994973613 :0.9439759587336372 +of:0.2238198491655392 in:0.12672128784681952 to:0.12664261657875897 and:0.11945318759474176 :0.40336305881414053 +was:0.8378293601876232 where:0.0640204713358107 as:0.026229407032633642 in:0.02569109012784216 :0.04622967131609042 +be:0.3427497778210677 have:0.15697045276413377 only:0.1063191550759007 re-:0.04810654295305495 :0.3458540713858428 +only:0.999813598117529 about:0.00012685792238863107 nearly:4.4382597115053835e-06 held:4.049608070963142e-06 :5.1056092299865905e-05 +own:0.07865809115282835 home:0.07095225839766162 entire:0.05119214402816562 foreign:0.042506176877713193 :0.7566913295436313 +burning:0.0011093586684923407 it:0.0006494213650971444 this:0.0005928804984611988 ac-:0.0005873482269501168 :0.9970609912409995 +its:0.5722959795683558 the:0.35567758779214986 tho:0.03742508085884352 tbe:0.014229170273935873 :0.020372181506715003 +and:0.11393798192570642 to:0.10487612472695976 of:0.09320576345487996 the:0.05636758896752035 :0.6316125409249335 +of:0.17809950358897106 and:0.1132490352288656 is:0.1010523040349934 has:0.05883646335192114 :0.5487626937952488 +and:0.020628907584725596 him,:0.02017637658114299 thrown:0.012866125852095888 quickly:0.012303854899535078 :0.9340247350825004 +discovered:0.18149213524500488 and:0.17233663056662074 The:0.13539752984962358 the:0.07504086256072355 :0.43573284177802724 +in:0.25077841775503806 of:0.19296685743991074 and:0.15092700151940575 to:0.09458891872182087 :0.3107388045638247 +not:0.9772776835422995 take:0.01135196940546837 hardly:0.0042123391632674445 ever:0.002963811524612029 :0.004194196364352657 +J.:0.25071287138960857 C.:0.10020567815981232 W.:0.09779734294888126 G.:0.09683246154251417 :0.45445164595918364 +that:0.2822455133651904 and:0.20305563167352117 is:0.14446467167023772 Is:0.12177739588241594 :0.24845678740863486 +the:0.5944299045369406 he:0.08298811064815578 it:0.04654226486822366 fair:0.03927076318522955 :0.23676895676145038 +table:0.11602537129805461 matter:0.04703470980114925 wish:0.045277629574412004 belief:0.04396341604638192 :0.7476988732800022 +people:0.05747455654626138 men:0.017422815985542586 same:0.014940988421131235 latter:0.012175265737886186 :0.8979863733091785 +and:0.30210597112198195 at:0.292816920769928 of:0.19463515660776284 or:0.07340044682699229 :0.137041504673335 +and:0.10536164314655228 was:0.07601694320853755 Mr.:0.047207329440583826 that:0.04702520567217888 :0.7243888785321474 +the:0.31925671074458917 and:0.20504027579857753 their:0.18933594293374606 his:0.14098229334852902 :0.14538477717455822 +of:0.4001169176951273 as:0.26647938911625374 and:0.1153934104070533 to:0.1065959601866911 :0.11141432259487467 +than:0.9571488868285439 to:0.010105848865215416 iu:0.0056421280554582575 the:0.005249934471166876 :0.02185320177961552 +made:0.15508423522337844 put:0.050949830521304154 placed:0.04851003665912737 engaged:0.04236166343408945 :0.7030942341621007 +of:0.19189377673225255 and:0.08414847691294344 the:0.031594349333917755 to:0.023865152341567636 :0.6684982446793186 +as:0.6229212112111441 so:0.17090826667857234 house,:0.02212129495340379 As:0.019223182572308966 :0.1648260445845708 +1:0.13614609591523383 2:0.10360642543821064 of:0.048554132455055986 and:0.04845084448316176 :0.6632425017083379 +of:0.9743702449008053 to:0.008472780509571438 in:0.006557363996047005 by:0.004458267867667422 :0.006141342725908895 +work:0.01326936904911174 care:0.011334644081660421 effort:0.01099627691199431 and:0.009888251140304082 :0.9545114588169296 +been:0.21047575413228659 found:0.07952657693983865 now:0.06463950450056455 suggested:0.0565387233787836 :0.5888194410485268 +J.:0.3172497807850613 G.:0.14829148631333247 C.:0.13773532705907401 John:0.11471413846641407 :0.28200926737611814 +and:0.18907511038475885 the:0.15500534560638227 The:0.13366354950657933 of:0.08581661070295163 :0.4364393837993279 +more:0.08069499841799703 such:0.05156298028153485 further:0.03789621309666795 very:0.03280743776697626 :0.7970383704368239 +and:0.708389626010534 or:0.2726576214243261 aud:0.0068838922886121715 to:0.003874942556626142 :0.0081939177199016 +at:0.3958422422944775 the:0.06533036099003245 for:0.052326420326031284 a:0.04312994547929333 :0.4433710309101655 +that:0.9694149984508326 which:0.012004576084984167 when:0.002951581810435317 have:0.002836190337340863 :0.0127926533164072 +the:0.12994618504408362 to:0.07997654092700922 in:0.028418429387072997 has:0.028064749284024405 :0.7335940953578097 +ex-:0.009010449552392526 boat:0.008758413980253368 the:0.0036647666961913427 negro:0.0032715333649498608 :0.975294836406213 +thai:0.07048200265159439 upon:0.059928586731115376 on:0.05221697494487174 of:0.030929314776650216 :0.7864431208957683 +time:0.24456095841721973 the:0.24085204882023054 time.:0.06103011375408972 his:0.052250747065899626 :0.4013061319425605 +of:0.36172526345003225 on:0.08217556655617891 On:0.08067212148317862 after:0.06802693201353915 :0.40740011649707103 +.:0.03746899300441206 i:0.011033619073260403 tion:0.007458357650749142 a:0.007375196363996298 :0.936663833907582 +in:0.6005532964013186 In:0.14877116972523247 on:0.13172827904536616 of:0.04566699187910827 :0.07328026294897458 +that:0.858858962062964 of:0.11486758057194929 to:0.01193992697113008 it:0.005708017123703441 :0.008625513270253205 +to:0.6539481193147856 and:0.131170885731294 It:0.03347476574267692 would:0.027558980486580894 :0.15384724872466254 +adopted:0.8888588663197667 brought:0.051614116785136666 been:0.00583174226573402 not:0.0030296329234782145 :0.05066564170588435 +the:0.0957741989537474 and:0.040606035492992375 came:0.03026227303040025 street,:0.02505826245735231 :0.8082992300655077 +nothing:0.22787029680802529 something:0.023031337232915623 little:0.013501070190929535 one:0.0007925051137179062 :0.7348047906544116 +the:0.04881409289651089 dry:0.045737545183121585 build:0.023630108709592795 to:0.0030995020224131127 :0.8787187511883616 +selling:0.8651688369914226 their:0.03756231956636077 the:0.01686256081588718 finished:0.014443006179670327 :0.0659632764466591 +and:0.17350352022267584 as:0.11107063228032889 but:0.0922225013496343 that:0.08263609301964099 :0.54056725312772 +on:0.33392701751047854 in:0.2208383501412548 and:0.12853232695513517 from:0.09791461290125901 :0.21878769249187263 +the:0.730187663084016 his:0.05731993140883246 any:0.030597968467983072 a:0.025331911537188837 :0.1565625255019796 +the:0.20322933052974299 a:0.11828382542995686 their:0.1149649243532652 tbe:0.09981161899359185 :0.463710300693443 +men:0.12737733550288302 men,:0.083275470875449 States,:0.027251452338699814 States:0.024693598660358057 :0.73740214262261 +he:0.3968800971196708 I:0.1317245436329477 and:0.1027491029310406 He:0.08475847663887176 :0.2838877796774691 +the:0.05855938585554684 of:0.05824487537114673 through:0.04990568307330186 all:0.036459432937027726 :0.7968306227629767 +and:0.10463089750577186 as:0.04136692172831027 up:0.021995634989686087 or:0.013767280816780058 :0.8182392649594518 +wise:0.2712664931138685 way:0.26070262999011 order:0.0673348958849996 State:0.05485988420173204 :0.34583609680929 +or:0.12583057820268947 country:0.09228806520223819 and:0.0817712027473582 of:0.07330476754804918 :0.626805386299665 +and:0.06932987237230967 morning.:0.051554077654164664 1:0.03806542329079008 in:0.03197886318608842 :0.8090717634966471 +But:0.1530361101654786 If:0.09027370421313437 That:0.08552320213927242 Then:0.0653299623575745 :0.6058370211245402 +food:0.0483874495018917 physical:0.021096209404594828 county,:0.01874387158478331 made:0.016112916019207234 :0.895659553489523 +the:0.08124923768026378 come:0.043849995314317256 make:0.009275352319367772 every:0.009179229987758015 :0.856446184698293 +I:0.4767153931981756 you:0.22309262137940905 don't:0.11814633896332755 they:0.0468699637867924 :0.13517568267229543 +care:0.17860009101936902 him:0.17038219560447718 occasion:0.1639509685272878 you:0.09349053016123289 :0.39357621468763304 +will:0.585562335380643 should:0.18791601156693383 cannot:0.11662252545383005 would:0.09985827587657335 must:0.010040851722019814 +and:0.02931992014005938 camp:0.01643060965113453 dis-:0.015265820796082442 school:0.013906317846804855 :0.925077331565919 +aged:0.48723533184799417 for:0.14945723955498738 of:0.07490235164334284 at:0.01604592843895934 :0.2723591485147164 +with:0.7081902894245607 With:0.2105415487057724 of:0.03033043851883562 by:0.030290034536111256 :0.02064768881471994 +of:0.45720084180320947 and:0.3096439320585821 In:0.08400507157890336 about:0.07263328611421019 :0.07651686844509502 +went:0.9618699575472678 issued:0.007097387844663592 will:0.005723377672163263 was:0.003525632580802261 :0.02178364435510311 +the:0.20133795896420892 and:0.1317149294417854 with:0.10224724843779617 of:0.09112308493611294 :0.47357677822009653 +of:0.18241053980444133 and:0.1113567436449182 in:0.08583057543981233 In:0.04485530962869182 :0.5755468314821365 +he:0.6108484808878555 she:0.15887854132058804 I:0.112822630044881 you:0.03162665748716886 :0.08582369025950659 +the:0.43194211129310056 a:0.055315644723605076 an:0.022094775350959377 tho:0.02157109244602927 :0.4690763761863058 +is:0.13236781327464023 man:0.10168247571481727 other:0.05885726202995637 are:0.05711444448090738 :0.6499780044996788 +the:0.15221448881513686 appear:0.09294204167484214 her:0.05895064465399273 hia:0.05065713607194816 :0.6452356887840801 +evening,:0.2612659674830593 condition:0.2603137971705381 statement:0.15086103452780575 season:0.08578182564378622 :0.24177737517481057 +day:0.02170089392646185 part:0.02169840559117832 way:0.01954030054892137 of:0.016788480889272157 :0.9202719190441663 +said:0.9744871524446224 which:0.003559217053036801 the:0.0032159003231506944 with:0.002325377815872877 :0.016412352363317236 +college:0.15061945522196415 Congress:0.08447795637081604 office:0.05616090808469831 by:0.02966711938996073 :0.679074560932561 +to:0.16526385756710274 and:0.1385459914167024 the:0.08108455378952498 a:0.06746118888615064 :0.5476444083405192 +will:0.2442050339958467 minutes:0.06782710400797547 years:0.06175634126633135 inches:0.016405372134004448 :0.6098061485958421 +began:0.23684047440409156 him,:0.1215507362618148 time,:0.017472747941836345 them,:0.012471521064089124 :0.6116645203281681 +the:0.5312285050113165 tho:0.2122666566877381 a:0.08432823239983633 that:0.048980061852127325 :0.12319654404898188 +the:0.19993909270231008 sale:0.16626827041231496 was:0.1124883530100439 have:0.09883383739842923 :0.4224704464769019 +would:0.3336029017703133 who:0.16358600468228693 we:0.161728018566593 They:0.11071246542579104 :0.2303706095550156 +the:0.1335303465615343 go:0.1091182664248341 kept:0.10516346368549111 goes:0.1043116952211541 :0.5478762281069864 +with:0.2452731628387087 such:0.23818227414104473 was:0.17316242940350599 out:0.13490507153635153 :0.20847706208038916 +and:0.30550403215338884 of:0.10542588598615849 fund:0.06834852075142551 to:0.03185134917933547 :0.48887021192969154 +and:0.08829430010941954 of:0.05684885412263049 the:0.05583384257087822 to:0.05261293416919621 :0.7464100690278757 +in:0.25447393994984563 and:0.24433704021583094 for:0.20269627120953013 with:0.14933969226286511 :0.14915305636192824 +ing:0.014896563711978008 printed:0.009686153818165098 street:0.006931043180610413 of:0.006591272761612189 :0.9618949665276343 +on:0.6168308352722084 to:0.2006403807291824 and:0.09278660491799083 upon:0.05241762482353862 :0.037324554257079604 +and:0.2720937617927925 in:0.16144983681765798 with:0.10590572072139243 for:0.1056805299812378 :0.3548701506869194 +and:0.9233293410339167 if:0.03633490608669109 will:0.014114211736320603 as:0.013810659744070282 when:0.01241088139900133 +to:0.5882156447030995 of:0.27381556616786273 and:0.07736172510059694 ail:0.03339317700328465 with:0.027213887025156303 +and:0.4528306276310804 practical:0.1605320160853549 of:0.06009553630242063 a:0.044441553174929156 :0.2821002668062147 +reference:0.1403827036076264 wife:0.08532198719288239 friends:0.07084436181063797 mother:0.06706701862975689 :0.6363839287590966 +It:0.14676020246723182 it:0.07820937232806975 which:0.05690641393863793 This:0.05614657135593386 :0.6619774399101268 +is:0.2098540654625927 difficult:0.12140318771901891 hard:0.08515440044753796 far:0.06911092006433536 :0.514477426306515 +the:0.4835598314794469 At:0.03823237241689875 tho:0.02450025371113819 a:0.023854733107545118 :0.42985280928497105 +all:0.29626627338681655 all.:0.06335344364480115 the:0.06017554513479292 and:0.025354470844639564 :0.5548502669889499 +the:0.5555756309451998 this:0.12976625430033867 a:0.02203043267908999 ol:0.011497780819701072 :0.28112990125567044 +0:0.046389946455730725 J:0.04433374426843404 -:0.03449599404520173 at:0.03213021082156943 :0.8426501044090642 +the:0.5508965072401035 other:0.14909041116413843 short:0.068856301948616 raising:0.03783554970540208 :0.1933212299417399 +remains:0.10896348935067876 They:0.1027771075737477 and:0.07980745149382347 steps:0.07218773790084343 :0.6362642136809066 +other:0.8156681857872604 right:0.04913220043305261 real:0.0467474630371721 such:0.034257425523891806 :0.05419472521862304 +and:0.33448069974665445 by:0.20294913963669328 while:0.14458803245905305 or:0.08514966387907934 :0.2328324642785198 +much:0.15458585750719164 good:0.034887896878815376 little:0.030431476721493496 largely:0.025069872161579132 :0.7550248967309203 +had:0.6812557628299646 and:0.08533027219318412 were:0.052382548345310205 of:0.04787810317997076 :0.1331533134515704 +mission:0.02734921818194286 vice:0.0255736011237696 dress:0.014280762891257936 according:0.0009999579277999735 :0.9317964598752296 +toward:0.80796095180456 with:0.07741699596361248 to:0.021838684820847467 for:0.014132723281023949 :0.07865064412995626 +sort:0.07190048719755117 matter:0.06996614658026276 source:0.03521751542279436 man:0.02855469605112988 :0.7943611547482619 +money.:0.06492767922660012 .:0.01122809094146992 again.:0.007968539548326154 away.:0.007208954047652785 :0.9086667362359512 +to:0.24715630838038588 the:0.14140332652682858 at:0.12325374502774757 and:0.048832618344442885 :0.439354001720595 +there:0.13232784216531554 who:0.11168044154911232 I:0.08393134169548828 we:0.0810506021107404 :0.5910097724793436 +the:0.7607984466318158 this:0.13332075595427323 tho:0.016156579048766398 a:0.01129223654573442 :0.0784319818194101 +have:0.36761881226335985 with:0.17625608299346435 if:0.043387358611809416 than:0.036514317159853364 :0.37622342897151306 +people:0.29747306739559126 country:0.031411733604038525 public:0.02180043677384553 company,:0.018502299805282264 :0.6308124624212426 +and:0.11171267445265193 I:0.070070237557913 the:0.0635657660958099 of:0.037975696805401526 :0.7166756250882237 +be:0.23575526687299925 seem:0.0785537554561906 think:0.05896756449635737 see:0.014228999025740766 :0.6124944141487118 +the:0.9929663997935234 tbe:0.005398496363302869 regular:0.0001457680516122299 Washington,:8.393386276764881e-05 :0.001405401928793821 +country:0.06726577986930536 play:0.03753038771633049 machine:0.03671480790657172 course:0.022452099605379205 :0.8360369249024133 +water:0.7298908706355768 and:0.06477165126615596 the:0.01590959561400942 of:0.010204791490630909 :0.17922309099362696 +Sir:0.5385967788118448 to:0.06073523682133798 and:0.03530323294751909 of:0.03130850762249198 :0.33405624379680615 +to:0.8999209364741665 the:0.054140993959093026 of:0.00046830184488117426 with:0.00014241708423861 :0.04532735063762059 +o'clock,:0.022571353760457366 that:0.01780020100386588 years,:0.015452779398370744 ,:0.013478251946772542 :0.9306974138905334 +had:0.3904544057028708 seen:0.2655384298981506 got:0.10706017168518571 always:0.03157974185766268 :0.20536725085613017 +inches:0.14932364425405692 and:0.13426042312299052 years:0.026140053658199946 days:0.016760918499976248 :0.6735149604647764 +and:0.22865205034198466 of:0.1373485519570809 the:0.04736566318494154 I:0.04254367416713795 :0.5440900603488549 +have:0.09798071075818444 attempt:0.0696278545183554 serve:0.05703102066510464 be:0.05368302746855085 :0.7216773865898047 +the:0.819698195522939 an:0.11098269839317235 tho:0.015148522628674088 aa:0.003203885037209306 :0.05096669841800532 +if:0.1106191760712538 we:0.10629875088939236 as:0.09494828864025336 -:0.09468419904525807 :0.5934495853538424 +to:0.24175375883804345 of:0.22035838674770877 by:0.07677155864607943 at:0.07340605605995436 :0.3877102397082139 +the:0.32750299316971054 have:0.0870368536108457 a:0.06758516159519769 any:0.06347528675158155 :0.4543997048726645 +proof:0.09139190781190622 life:0.08985858894367268 year:0.06361079751173218 be:0.05945829332780161 :0.6956804124048872 +J.:0.10290324803306773 George:0.03909460434712494 were:0.022286449512771284 F.:0.006310043845544124 :0.829405654261492 +John:0.05439265673232792 and:0.018304581149955892 of:0.01805588212711464 J:0.01766440770570885 :0.8915824722848927 +and:0.2104770270721579 to:0.15491409163750175 the:0.09036351448756098 in:0.05192608501703364 :0.49231928178574574 +back:0.805037038738454 east:0.08733907729943419 thence:0.01116394258173927 down:0.010969488131914213 :0.08549045324845836 +where:0.23795888168322282 to:0.21388941619115945 and:0.1640185473328005 until:0.10794046453823283 :0.2761926902545844 +and:0.06961142364590865 lies:0.01919566167322944 was:0.014994262828193921 view:0.014105707481759861 :0.8820929443709082 +yesterday:0.2662998036437823 the:0.2209577932795188 their:0.16832193848445054 after:0.10676755686748816 :0.23765290772476028 +and:0.14881416047214335 to:0.10899594743512603 the:0.07431559592061684 or:0.04831599697897784 :0.6195582991931359 +natural:0.9935908878209704 the:0.001085040903254056 sad:0.0006149583886276632 direct:0.0006027468151045572 :0.00410636607204318 +t:0.011975454233636364 J:0.011847178846004742 it.:0.008989185172502053 her.:0.002084414290308001 :0.9651037674575488 +of:0.01843496721929645 and:0.016644397075431517 Rev.:0.006862845247103659 girl.:0.006515208678436448 :0.9515425817797318 +eyes:0.08149087816289613 representatives:0.07400824761318292 friend:0.041207006976688956 property:0.035564010158641066 :0.7677298570885909 +John:0.4130659499600229 William:0.18813009241017728 A:0.027541071146955233 now:0.014544733173421458 :0.35671815330942325 +In:0.6026898936277293 to:0.19019975333872763 in:0.14471124227190837 of:0.03872535851741992 :0.02367375224421474 +of:0.9580738848238076 a:0.01937672624718798 but:0.006827523282999079 our:0.0036887611584197066 :0.012033104487585556 +on:0.5545754944119593 to:0.2235335797439259 from:0.07544184382612763 for:0.07390958453911038 :0.07253949747887675 +found:0.09954329272621558 made:0.08390087126499934 placed:0.06104851310938294 published:0.053397052486655903 :0.7021102704127463 +of:0.23061379856133937 in:0.21250502114739767 to:0.20791200363126436 with:0.0869718614492852 :0.26199731521071346 +have:0.20184071673383672 has:0.1470367106369292 had:0.09695085801655062 and:0.01828361759425331 :0.5358880970184301 +all:0.6877964615519091 all,:0.23533669615324077 of:0.030580570328894458 which:0.012274300789798563 :0.03401197117615705 +that:0.6215235584379092 western:0.36439793192444553 every:0.012712207221012477 this:0.0006741734420501819 :0.0006921289745827928 +and:0.10601722946751874 of:0.07330309923854782 the:0.06775657257870261 do.:0.030687953861811522 :0.7222351448534194 +be:0.07394271106502645 of:0.041764948166184174 world,:0.02570123629794964 on:0.017834985625548305 :0.8407561188452914 +and:0.7162106640087786 of:0.025017929092236095 aud:0.01748502996360491 the:0.014110907876384865 :0.22717546905899522 +to:0.21094222527230408 in:0.13914141729625254 of:0.1360715878771727 and:0.12985996349183906 :0.38398480606243157 +be:0.12110324429899257 only:0.009787140180897125 new:0.009566158499504408 various:0.008110628572076638 :0.8514328284485292 +feet.:0.6995351409928842 men.:0.008192886523353498 men:0.0014968700836773467 days.:0.0010763656415220537 :0.28969873675856295 +spot:0.15355775780982878 of:0.012779884464869613 One:0.010384846835457595 and:0.008893324280283554 :0.8143841866095604 +of:0.26791326050899833 the:0.07055521460906965 in:0.06962789694335338 hundred:0.04102836287477047 :0.5508752650638081 +is:0.5201638333013592 was:0.14571541642782823 Is:0.04864535714738146 H:0.007534371823323104 :0.2779410213001079 +people:0.04315863901367275 or:0.02227622464246344 of:0.018949463662988938 dinner:0.0187158461910479 :0.896899826489827 +facts:0.0500828285863741 men:0.01980854631679058 before:0.013984582053524363 people:0.011486479460891095 :0.9046375635824199 +spring:0.10836976436102591 one.:0.009459719563312803 and:0.00511583886951161 land.:0.0014869087111526948 :0.875567768494997 +say:0.1403031382525029 realize:0.1304199591771708 here:0.12234853104769171 declare:0.10946265404272923 :0.49746571747990537 +interest:0.11195167974833589 two:0.11131138946025418 death:0.07188597338385788 wife:0.06269032532820562 :0.6421606320793464 +last,:0.0704433930543515 present:0.04171061581613778 noon:0.026818228528086904 the:0.024632801318208296 :0.8363949612832154 +of:0.18308293966238606 with:0.05985924513756777 to:0.05403430551528999 less:0.03337661556901033 :0.6696468941157461 +where:0.7155135817682693 in:0.12059885218629174 white:0.07289744212097088 for:0.05247035859336143 on:0.038519765331106605 +was:0.9814919762467892 had:0.0070979216137387465 is:0.002042872056241999 to:0.001245574690918645 :0.00812165539231141 +The:0.461337189204211 and:0.35335759680735124 to:0.0749033918217217 by:0.06633202516096197 of:0.04406979700575388 +does:0.9477501949010537 did:0.029688034642891065 will:0.007478823668216708 would:0.005049755420762534 :0.010033191367076049 +carried:0.030725473863254114 set:0.0264823074402488 laid:0.025726033236494715 clear:0.021167738692080745 :0.8958984467679214 +a:0.13827615561506457 ate:0.12741768057367525 of:0.06246155045764369 now:0.04775286383315115 :0.6240917495204654 +which:0.031152112396338423 that:0.0024357906664199632 life,:0.0014918461761405967 the:0.001211001368708524 :0.9637092493923924 +to:0.1496568323925117 We:0.08832460734062146 of:0.07105816116119133 and:0.06297410023558998 :0.6279862988700855 +much:0.7668773311237906 about:0.10433210110235337 nearly:0.018180428781977818 just:0.011247218604330774 :0.09936292038754728 +first:0.12387647447687142 country,:0.014608695811084694 ;:0.010544962001905184 hard:0.008322861115271087 :0.8426470065948676 +house:0.10848339289411256 yard:0.08403608398115495 army:0.07241636635711403 box:0.06938921473528872 :0.6656749420323299 +and:0.06421966897397649 I:0.05815418485911045 He:0.025797767046805895 he:0.021808837825566276 :0.8300195412945409 +j:0.21403198938188606 of:0.17731283392876945 this:0.15865707727637224 the:0.1324544014922889 :0.31754369792068343 +has:0.7218884775264505 had:0.17151366851032857 and:0.06849523204929786 have:0.027123804801599777 having:0.010978817112323385 +to:0.2474945612134796 and:0.2062778373798603 for:0.14659077173471563 without:0.129280260034169 :0.2703565696377753 +to:0.228675231326497 the:0.18042999399902385 in:0.10319309227967628 a:0.10292498098945044 :0.38477670140535253 +a:0.5670333204756661 the:0.07264553107158078 tbe:0.059417790697602224 any:0.008980128539088177 :0.29192322921606273 +of:0.3916950422582988 and:0.11675080309767047 in:0.0803939942940812 on:0.06454110056348265 :0.34661905978646695 +to:0.5711542328492646 of:0.13382995851370638 on:0.10942791870006002 at:0.08790220506038907 :0.0976856848765799 +and:0.256002221096062 in:0.24758653685629614 tbat:0.20357084701559544 of:0.0611316654919625 :0.23170872954008387 +result:0.9245925835855925 part:0.03291313033555783 feature:0.007266880392776129 proof:0.0048548286849192926 :0.030372577001154033 +the:0.488065801837552 as:0.17295692687632527 with:0.16859834793828363 upon:0.11377901333623847 his:0.056599910011600724 +other:0.23914751328762757 one:0.16803316780485508 right:0.1652441801370694 mountain:0.10069876732593468 :0.3268763714445133 +and:0.16772018632721963 the:0.1304817765037169 of:0.08399928271718192 with:0.03818528937590988 :0.5796134650759718 +it:0.17422682217634175 and:0.014441108504147076 that:0.007400016559460897 done,:0.0039055033437971278 :0.8000265494162531 +bad:0.4146731477863935 the:0.2271662880567176 a:0.13259615183763226 this:0.030280764757089473 :0.1952836475621671 +There:0.03599906817984285 year:0.03485340509602305 State:0.023932921156655768 world:0.02157825106430535 :0.883636354503173 +press:0.032069004701329194 position:0.0026636074905210965 age:0.0009332876529977001 port:0.0008995973167667978 :0.9634345028383852 +and:0.0965962610067088 but:0.03456204634817631 and,:0.013796366438978446 for:0.010275862149566377 :0.8447694640565699 +J.:0.40264807020455234 C.:0.32212073465901275 Rev.:0.11880402348216258 Dr.:0.048147152992021255 :0.10828001866225098 +mixed:0.5989258916073149 on,:0.018122051480089323 even:0.013591369781657125 than:0.012260572908799023 :0.3571001142221395 +the:0.41052157135364464 The:0.22122306981696707 of:0.09698482183518914 and:0.045869555177057125 :0.225400981817142 +is:0.3736649450656271 be:0.18696523865321782 was:0.12047713646425418 has:0.06023543003432223 :0.2586572497825786 +John:0.1322055621356989 of:0.07626791481036832 J:0.07011922538934554 T:0.047401997551546796 :0.6740053001130405 +the:0.7670632306848062 tho:0.16700013918448167 this:0.018637557163638536 road:0.008891043071118442 :0.03840802989595509 +The:0.7501810635451689 A:0.14568738608255327 My:0.050101950744997986 This:0.021452774821921997 :0.032576824805357896 +by:0.32881277535637654 in:0.22815437440877023 with:0.15410294950072762 to:0.145177352636486 :0.1437525480976397 +of:0.9223031770372098 ot:0.009895452832923032 and:0.004565476890461914 ol:0.004424929040945382 :0.058810964198459964 +lines:0.782687519128232 days:0.11652831134327273 parts:0.007836960547156048 men:0.006914847088739619 :0.08603236189259948 +feet,:0.006122574707958734 mile:0.0031074637939401727 and:0.002621196983206275 feet:0.0024978608679409368 :0.9856509036469538 +road:0.3716269493501226 way:0.20294013494982707 ground:0.11863050196064034 right:0.0157265657212212 :0.29107584801818887 +of:0.4965698314116149 the:0.09583984388808815 to:0.09207037844609883 had:0.08678716997647842 :0.22873277627771965 +and:0.569273095735244 were:0.2118443986968195 are:0.12366054722350305 have:0.0511253087213305 which:0.04409664962310301 +for:0.5021777641805658 on:0.49677635167188017 additional:0.0009755208836903528 tor:1.78665135251336e-05 :5.249675033853338e-05 +the:0.05823817525073856 of:0.054143689975647086 and:0.052602798540545115 or:0.03689904117946531 :0.7981162950536038 +been:0.2613301025413105 shown:0.05644164508947797 it:0.05196862686235724 either:0.04184038330990721 :0.5884192421969471 +it:0.6421215546385848 me:0.15142868171018944 in:0.07015130439348478 relief:0.043161691610431215 :0.09313676764730967 +and:0.11670356841744411 the:0.09487636017786039 to:0.08684257401940745 in:0.07826124582233246 :0.6233162515629556 +of:0.0925464541377825 which:0.07378351927838976 In:0.06267900531004215 in:0.017625752493512573 :0.7533652687802731 +as:0.31807229191026426 and:0.12668641374735953 railroad:0.0520731509958828 of:0.039239109828095156 :0.46392903351839815 +was:0.5554740888922394 is:0.37878052672474516 Is:0.03716101688232035 seems:0.01668639753355749 :0.011897969967137559 +the:0.34917916298094276 The:0.16255216980193604 our:0.05947217049556954 or:0.03298912394198263 :0.3958073727795691 +in:0.9396086153552512 of:0.028691198501669013 In:0.023896303155399583 on:0.004295536747501259 to:0.003508346240179021 +arms:0.3748587307690939 minds:0.22740143316206463 mouth:0.04610219265086159 air:0.011216471358979008 :0.3404211720590008 +the:0.4024414717864884 more:0.09835559876459972 a:0.08447688191993868 their:0.0518586316045385 :0.36286741592443467 +been:0.43751777481792614 no:0.0948272945730287 a:0.07704579177421597 the:0.04581104018306215 :0.3447980986517671 +are:0.634941559977398 is:0.1637981582757777 were:0.09984857393891919 ia:0.08157440892290084 Is:0.019837298885004157 +thing:0.08302258509703617 kind:0.07767149304720776 out:0.032512108690940095 and:0.025730390121747788 :0.7810634230430683 +The:0.8804861840918595 This:0.01963142089962042 Tho:0.00939635912419082 Tbe:0.006639823164510308 :0.08384621271981894 +50:0.5297095220419494 the:0.20727967928057314 60:0.026492922594527547 tho:0.021544498163021848 :0.21497337791992788 +and:0.08481618958389225 the:0.04937973570992677 of:0.048759080256448366 to:0.0353154331631972 :0.7817295612865354 +of:0.55458201737383 and:0.10956982686093981 in:0.052869895790368555 In:0.04929078178651906 :0.2336874781883426 +for:0.6100251313259466 to:0.23261560029891265 in:0.05473569300412409 on:0.03429361176691481 :0.06832996360410183 +law:0.981539893204096 law,:0.006709972246265627 not:0.0011323772998780644 home,:0.0005425183004739675 :0.01007523894928643 +said:0.6641442887138282 this:0.1364695009405205 the:0.058530331664079054 tho:0.010637474920704576 :0.13021840376086763 +in:0.4300593589363657 In:0.2677797940042294 of:0.12448817401555533 as:0.037999019608189265 :0.1396736534356603 +of:0.19520740494404398 and:0.09010588106882494 is:0.05482123508843324 the:0.036602067378993026 :0.6232634115197049 +I,:0.029642600836837944 for:0.01930573277193023 1,:0.010443544852038657 years,:0.0051427791188224424 :0.9354653424203707 +Such:0.35751471710223914 of:0.3141242347189992 and:0.08646813228021147 to:0.047725332704022426 :0.1941675831945277 +der:0.6040202501393696 .:0.23333833140396587 by:0.045399184359454815 father:0.003561583810834897 :0.11368065028637493 +and:0.002887916143048261 I:0.0022381923821381596 it.:0.0018555980670983332 away.:0.0018332194841647969 :0.9911850739235505 +wife:0.31136661757416995 horse:0.15877174742255704 brother:0.15562187053942916 friend:0.11839934004501851 :0.25584042441882543 +will:0.03858415318141758 things:0.03828957421824299 may:0.02841449100962912 to:0.021531626036605918 :0.8731801555541044 +To:0.43002592836874387 but:0.06219200017769495 call:0.03627797325900366 ..:0.027989069812626097 :0.4435150283819316 +the:0.5439794538729383 Baltimore:0.17177014764069512 tho:0.10190736222726968 Jackson:0.010181565794568075 :0.172161470464529 +can:0.31677124222798564 should:0.2870450251294858 to:0.23854109966009532 must:0.07322200179309586 :0.0844206311893374 +and:0.01963264570205151 war:0.008611190852709479 the:0.002311553283515446 war,:0.0023068501089844786 :0.9671377600527391 +rise:0.0611584859353963 come:0.052084657520478105 go:0.051058440387929054 life,:0.04967834506867203 :0.7860200710875245 +at:0.1409873877368682 No.:0.11703598152386999 A:0.04889302259033881 and:0.019311183627382048 :0.6737724245215411 +and:0.12314946373443013 the:0.07158730203932384 of:0.05983556840462776 are:0.04387210382948548 :0.7015555619921328 +Indian:0.05890533703152771 City:0.03749612247827438 said:0.03351444923798617 Virginia:0.0029134557759173184 :0.8671706354762942 +of:0.9792173444512832 toward:0.008675356170689505 and:0.008405620692862333 to:0.0011270492078533322 :0.0025746294773118074 +that:0.3353588857859153 what:0.19924110161748948 the:0.1851858323974021 remarkable:0.10386099484445302 :0.17635318535474023 +come:0.9304532867604056 came:0.029585259282134103 make:0.013576928734205714 taken:0.011717045455735294 :0.014667479767519212 +the:0.7510552498165144 tho:0.050426921614927525 tbe:0.024489225563946098 our:0.020262340014471435 :0.15376626299014065 +it:0.7889543290674103 It:0.10750534850106079 this:0.052172814793547934 there:0.021373769615380424 :0.029993738022600587 +the:0.9661432664947182 last:0.020512441458810194 next:0.00915882501108085 one:0.0004790564584863655 :0.003706410576904428 +children,:0.011357813486989882 walls:0.00994852733125702 horses:0.005920625743307085 way,:0.0050761811927350015 :0.967696852245711 +time:0.17753743678426492 evening:0.16510143102486702 act:0.16085910704142944 use:0.06403694765875949 :0.43246507749067925 +see:0.40238132264386334 give:0.23486595892858256 from:0.004714169607102755 kill:0.003017862797619383 :0.3550206860228321 +prices:0.4370935887449405 of:0.09137886643892011 some:0.07652662651352497 one:0.06182326660161724 :0.33317765170099706 +think:0.06150619720252491 than:0.002114093245304785 like:0.0013399907237916103 of:0.0004804127238618975 :0.934559306104517 +of:0.7474875168241673 for:0.03695552971924701 are:0.03669704624265461 was:0.02266620930360817 :0.15619369791032295 +the:0.6220908419587488 this:0.13094798876254862 a:0.04261119910106013 such:0.0381784298513722 :0.16617154032627032 +of:0.17121838348323717 and:0.1293483137729239 in:0.1045536902532324 In:0.06651764931097502 :0.5283619631796316 +was:0.18997292512194378 had:0.11481508399390913 drew:0.08951044240244616 said:0.07557840076990946 :0.5301231477117914 +Miss:0.161256844065345 of:0.11944552696336956 and:0.10713269744249265 the:0.0809883323687548 :0.531176599160038 +most:0.5065217240293493 ways:0.13733500691515813 though:0.06521866785294421 bo:0.019613301588899814 :0.27131129961364864 +best:0.03943770530736059 way:0.028492457682370194 body.:0.027976860800413388 place.:0.02144557352698755 :0.8826474026828683 +with:0.46155982141315743 for:0.3266933508960268 to:0.05504756472152164 also:0.0543985378025441 :0.10230072516674997 +and:0.20839155200226145 but:0.1418394721491677 that:0.11215548801794495 for:0.06330240000966661 :0.47431108782095927 +took:0.22299968698831069 a:0.22220780213860827 no:0.20803606912073347 one:0.08624819905680677 :0.2605082426955408 +the:0.4896038503301653 cotton:0.14904124229331486 The:0.12472266444591042 this:0.04493115525804977 :0.19170108767255972 +will:0.7238394041583167 and:0.18991254625326923 to:0.05858800472043428 would:0.013235840761715911 :0.014424204106263825 +as:0.3984039192688839 and:0.2625635118506666 so:0.08162689912543158 of:0.06661601768945204 :0.19078965206556595 +the:0.27964569789731925 to:0.0694977473117966 of:0.065684514439273 for:0.042757228479478625 :0.5424148118721326 +the:0.1878198621034396 to:0.11892503361019226 a:0.07881284134258065 his:0.06776950831890935 :0.546672754624878 +and:0.1495855445631099 of:0.07695061803702323 the:0.06187945988102168 to:0.061265706889981314 :0.6503186706288638 +no:0.5926576810301735 this:0.26672394873169397 a:0.048410774022738745 the:0.02552935228484823 :0.06667824393054565 +kind:0.16514232233749296 place:0.08238986812153515 office:0.0675481853777247 sort:0.05912620302088457 :0.6257934211423627 +an:0.9580985054526739 n:0.012945592717399883 nn:0.011559639331229552 is:0.004693660031545402 :0.012702602467151216 +giving:0.7860940577826683 published:0.10658096992841846 gave:0.09837676497059164 presented:0.004956420829018794 give:0.003991786489302739 +to:0.927342139852412 much:0.030844239881780974 and:0.003609811659189572 the:0.0028412626983554618 :0.03536254590826207 +n:0.5972004551361688 a:0.36376816923125094 the:0.01800290808315697 as:0.010791158579013242 :0.010237308970409954 +of:0.20634646884464297 the:0.1878261993934438 and:0.14269048961592384 The:0.05739441811374735 :0.4057424240322421 +quarter:0.3748953247689392 half:0.05284077051094072 corner:0.03616816026355612 line:0.035299948035066926 :0.5007957964214971 +the:0.9414033084401108 a:0.02428455373123243 many:0.004295184547308272 one:0.0029579031154731475 :0.027059050165875353 +sixty:0.08465922426136976 car:0.07793408235229339 top:0.06670279921933553 man:0.03190666606220227 :0.738797228104799 +He:0.03604693965696236 he:0.03559069270623581 man:0.011238826334291374 dent:0.00892076140934505 :0.9082027798931656 +and:0.5130184440906557 The:0.3288755625210977 A:0.03972864802546321 In:0.013515686797112157 :0.10486165856567133 +the:0.10108780725690757 J.:0.08880750596289295 T.:0.07160919290603793 win:0.05645210674059554 :0.682043387133566 +ty:0.05125953773125832 try:0.043152254154859314 against:0.01325971991931848 that:0.012848157756141466 :0.8794803304384224 +is:0.19488611622456073 was:0.1750379931160141 and:0.13383579688802197 of:0.09886725892902426 :0.397372834842379 +who:0.16153523655690907 which:0.15023670357851737 and:0.134230084109144 It:0.12460465957177362 :0.42939331618365595 +cash:0.055658216291637023 for:0.035851769156762865 steamer:0.01669227293760516 cash,:0.014597575055585463 :0.8772001665584094 +up:0.22219099100550946 in:0.05590145078067559 down:0.04159884800051411 busy:0.030361824728608957 :0.6499468854846919 +forth:0.2879808243758631 up:0.2724108089885763 out:0.18832906161563567 down:0.1303125141279339 :0.12096679089199093 +thence:0.8204761042309571 feet;:0.031161677385298302 feet.:0.017079015222140406 ;:0.014383812164716531 :0.11689939099688763 +the:0.3041499633599222 of:0.11645944513886682 in:0.09566288954609609 for:0.08999363815551292 :0.3937340637996021 +and:0.06899444343581852 but:0.03870598336719104 or:0.0325374725457729 ful:0.02599265987672933 :0.8337694407744881 +a:0.2599370328261106 is:0.17551816555072275 the:0.13274067753727883 pretty:0.09966899611997945 :0.3321351279659084 +and:0.23377036060269246 to:0.09165438121161652 of:0.07710070990630015 by:0.06188498877699913 :0.5355895595023916 +time.:0.029136182132168592 I:0.006194948710444161 the:0.005808723948066194 cities:0.00480356328924268 :0.9540565819200784 +the:0.893927792440583 a:0.020806610144911097 our:0.01722671372394142 tho:0.014407001324156966 :0.053631882366407584 +and:0.3019275572021814 clear:0.19632899793104192 to:0.088711493621785 are:0.07922560143013731 :0.3338063498148544 +The:0.15165322001934392 the:0.1316493770217029 of:0.09241985772913804 and:0.06551441203010352 :0.5587631331997117 +letter:0.33474651993469606 If:0.015447202883571263 state,:0.014546368959212103 that:0.013882761526468551 :0.621377146696052 +own:0.04490474844655687 ment:0.02084516507513504 avenue:0.0188177941903849 favor:0.01460640587708975 :0.9008258864108337 +of:0.9017097388579414 s:0.03255340896620577 how:0.011289357043830515 ot:0.010381515054032255 :0.0440659800779901 +to:0.21231145041052857 a:0.1292440749242725 the:0.12098049417398973 in:0.0645553556711444 :0.47290862482006485 +of:0.20795146437169004 to:0.152074244943555 Among:0.11966174592387592 for:0.08205817681081262 :0.43825436795006634 +giving:0.356932842390605 and:0.06300514090842096 young:0.03471794036001701 or:0.015379030606561607 :0.5299650457343954 +most:0.4988856762422806 ways:0.14013467957994558 though:0.07108391971950831 ready:0.02416910984001945 :0.26572661461824615 +life:0.586785403015678 in:0.07746480203791858 by:0.07423998785076365 morning,:0.02283105793761557 :0.23867874915802398 +the:0.4131590939566489 The:0.09302119062052186 in:0.056986050808684185 of:0.05645983023373021 :0.380373834380415 +no:0.49827286328125553 more:0.1460249865999865 a:0.11395340893467554 that:0.03230498715851201 :0.20944375402557047 +as:0.868672665053828 too:0.08702881101346557 them:0.022541617674238103 so:0.02106257340417277 very:0.0006943328542956215 +so:0.7978686787822866 as:0.036093001060090134 too:0.023388877114917144 the:0.022977743603870646 :0.11967169943883536 +the:0.48586908319144617 a:0.14943405241873986 said:0.10743645703186604 tho:0.0494172719827379 :0.20784313537521 +posed:0.09202770824735236 pany:0.049904522103042165 -:0.036002801264537525 mission:0.02023574503774979 :0.8018292233473182 +a:0.265484799666289 evening:0.20056017709800922 the:0.11392830670702554 This:0.05073143697271628 :0.3692952795559601 +of:0.2975155990959398 to:0.127599970845039 at:0.1172134962659738 in:0.09988886089432242 :0.357782072898725 +to:0.29865736045429175 and:0.1886184042542781 by:0.10367033327529512 that:0.05798015189661968 :0.3510737501195153 +of:0.5244793401494126 the:0.10841787916161699 and:0.0812964188195113 a:0.07716172027599043 :0.20864464159346854 +and:0.5345588386950532 or:0.18806659839956624 to:0.17067376287725577 of:0.05896076389877495 in:0.047740036129349885 +a:0.30838811289780205 her:0.30282582135725244 the:0.19491747324413164 his:0.09448448953334868 :0.09938410296746537 +and:0.12666369617013742 of:0.09318198060513494 the:0.07941036649331439 to:0.04094821293839684 :0.6597957437930164 +day,:0.18783028376401506 way:0.06364983221754 hand:0.05457435709933448 of:0.0426733361275945 :0.651272190791516 +police:0.08738429150401399 women:0.08056720264373203 way,:0.05567941365747533 first,:0.014375535781206468 :0.7619935564135722 +the:0.1592396434624678 and:0.12464950756297064 to:0.09128657226169039 tho:0.05750893237464504 :0.5673153443382262 +of:0.4255059521233602 to:0.16430107753638568 must:0.10996042796283985 foot:0.05229766412345575 :0.24793487825395838 +States:0.702766390429225 of:0.14723220223465225 States.:0.006276193045266053 the:0.002597874439735198 :0.14112733985112166 +is:0.5974152162388859 was:0.3868523427058781 Is:0.012489724002562774 no:0.0018798800203823727 are:0.001362837032290743 +and:0.3723370934799231 But:0.04750824466061541 for:0.04682750386344673 but:0.04576089314143275 :0.4875662648545821 +under:0.9994120315161641 no:0.0002295276834059035 on:0.00010239903706244733 given:7.814903508926423e-05 :0.00017789272827826582 +the:0.730937283796111 tho:0.09610055159496717 ho:0.06949899997715771 he:0.05433131945761485 :0.049131845174149216 +weeks:0.4524575757563232 still:0.21130509408455053 will:0.07916696972326404 days:0.06698375002888525 :0.19008661040697683 +of:0.0653095967671851 100:0.054413538292662975 ol:0.037231591825637816 ten:0.03548659948637444 :0.8075586736281397 +and:0.19239331635605955 the:0.11080747452571195 to:0.05530975042787586 of:0.048940101399196446 :0.5925493572911562 +consideration:0.04491289287371139 majority:0.04453179366549569 use:0.042806052851433456 people:0.03393633947263243 :0.8338129211367271 +on:0.3157325614248456 for:0.26236720572052136 against:0.2518892358216585 of:0.10253221297220211 by:0.06747878406077236 +the:0.6417625837532563 that:0.11097040679100979 on:0.10424014589557941 tho:0.05612907952712071 :0.08689778403303391 +equal:0.03495026084700418 perfect:0.016833338342288888 near:0.00809973727449919 particular:0.00745186065721743 :0.9326648028789903 +the:0.5859001184443112 his:0.06405597093512602 both:0.04246334374747374 their:0.04238494813221261 :0.2651956187408763 +to:0.3797433312617812 of:0.2016660515598137 above:0.13850906465870788 from:0.13813335359137413 :0.14194819892832294 +and:0.2227976767964349 the:0.20583144541458304 of:0.19921564935865027 The:0.0999963940939604 :0.2721588343363714 +ex-:0.4567875778763283 sup-:0.3692016502876187 without:0.048379286962723624 of:0.01766063127988509 :0.10797085359344424 +color:0.006685096663947104 life:0.001889257742156258 rights:0.0016876421215930126 thoroughly:0.0016729504877535134 :0.98806505298455 +the:0.46506117212986137 her:0.13310190998779295 a:0.08728845859145183 his:0.03869856450697981 :0.27584989478391414 +or:0.9304586012332167 and:0.006932108325102592 sad:0.006880197303519566 to:0.005829912115748731 :0.049899181022412656 +the:0.705827027243908 last:0.12406890732351411 a:0.05385420424671105 that:0.038337661677407146 :0.07791219950845962 +great:0.6791028544306534 the:0.19431646100453856 a:0.060162232862297 in:0.039578796219559086 :0.02683965548295197 +J.:0.23766781572140888 C.:0.0745441945610592 and:0.021735125733289746 B.:0.018964730242973637 :0.6470881337412685 +this:0.421618904287981 the:0.2760097341198137 which:0.06224421671003489 public:0.05914572824213656 :0.18098141664003373 +to:0.3851687850965937 into:0.21212622679717566 in:0.17492354337077815 on:0.11391111733542705 :0.11387032740002545 +The:0.15566561417569463 the:0.14982941949614248 Christian:0.022929779462255905 thu:0.02158898012673326 :0.6499862067391735 +I:0.5989298744090403 and:0.011041634012650578 of:0.010420522993898089 be­:0.008862485384195904 :0.37074548320021516 +the:0.17378512422742035 and:0.12370675112504939 to:0.06179312242449633 season:0.05894624174315445 :0.5817687604798795 +the:0.38137581020245903 and:0.13818037380866846 The:0.13379102429853174 a:0.034479667509600666 :0.31217312418074 +payment:0.03989745176610132 value:0.03287600175669254 truth:0.03282026252384124 price:0.03207351797648844 :0.8623327659768765 +too,:0.42366259975841875 it:0.09359791290407432 It:0.055271505828057094 she:0.038538674956745025 :0.38892930655270486 +place:0.13382860498105054 country:0.10947039282221983 i:0.05716720462226848 not:0.048140188925266496 :0.6513936086491947 +and:0.04358786399715073 as:0.032467149825040904 desire:0.02746344217131988 is:0.027096111211081724 :0.8693854327954067 +or:0.37240603655911925 act,:0.1692017555971142 and:0.052730992697053725 to:0.0412305680919013 :0.3644306470548114 +and:0.17934423580741807 which:0.13657046446707868 to:0.08420837448717115 of:0.07245278692585154 :0.5274241383124806 +long,:0.017329165322853602 of:0.013398834062911764 know:0.012068197099133446 the:0.009565641058648867 :0.9476381624564524 +of:0.3822423026212087 to:0.2565092517685601 by:0.1331203577378222 have:0.12317417373359602 :0.10495391413881303 +the:0.16124395834326682 and:0.13097428753883433 of:0.13088523731383783 The:0.08991795481224649 :0.48697856199181455 +in:0.3814478295929555 average:0.10372632803965331 and:0.03900102287833474 safety:0.03407603140488119 :0.44174878808417534 +own:0.07186075594454 general:0.0247913082495819 old:0.01915597360522508 present:0.0169047006924403 :0.8672872615082128 +in:0.5001218789601639 of:0.09699652746195209 to:0.05891863462572993 and:0.039919827393248015 :0.304043131558906 +J.:0.11800228810227006 A.:0.11732759907194594 C.:0.08097674330280771 W.:0.0695626691120219 :0.6141307004109544 +spring:0.08284973391914847 case:0.07548896284658226 city:0.048479352572732615 days:0.03322279708281822 :0.7599591535787185 +of:0.22069613046808184 in:0.14733952573425838 and:0.12636168204353665 to:0.11374797465610688 :0.39185468709801624 +U:0.23208450677848833 is:0.14201003521625605 was:0.09561070261936952 oi:0.06480074401435952 :0.46549401137152674 +the:0.9622898594993312 tho:0.01062619581954123 a:0.006920146110903931 tbe:0.006798323238408549 :0.013365475331814987 +the:0.6617786643477087 a:0.07327862387892524 this:0.03204532112188442 its:0.024895004702489894 :0.20800238594899165 +they:0.06938339890674704 who:0.06206387445848243 There:0.05969756274825625 and:0.058281490879886176 :0.7505736730066283 +to:0.5617716173799904 and:0.166663982707097 the:0.07936351558132758 into:0.0660014894994739 :0.12619939483211112 +and:0.388433325293138 others:0.09372865594740014 they:0.07269430846999651 who:0.06357587251296148 :0.38156783777650394 +to:0.9934338573287638 us:0.002796829374104025 you:4.713492483580546e-05 not:3.347042672749399e-05 :0.0036887079455689394 +the:0.23620897578548558 and:0.12477906583605022 down:0.11482014117238239 to:0.0858171093403573 :0.43837470786572463 +and:0.37490644461871064 was:0.22000055934709567 has:0.1271293304044332 who:0.12267422456013609 :0.15528944106962456 +been:0.09262668537812158 of:0.07524104642251692 to:0.07277784155753404 and:0.0674538346354784 :0.6919005920063491 +in:0.4171338893252159 and:0.14148294892179167 of:0.08798772689304557 the:0.06258280290053447 :0.2908126319594122 +had:0.41359374675455834 nearly:0.2341735953921034 have:0.22075949998223854 almost:0.059194564061344636 :0.07227859380975515 +7:0.04429046962763155 1.:0.0388652154722073 4.:0.01352221766597912 3.:0.011545268113217624 :0.8917768291209643 +until:0.9805846001163311 till:0.012635709302162382 on:0.0036103514753858352 to:0.001836060092588817 At:0.0013332790135316653 +county:0.06361008860777834 proposed:0.04628935440231636 the:0.04588826691059407 coast:0.0434046627358962 :0.800807627343415 +reasons:0.2133546514804161 best:0.05489108111420238 time:0.031319510562218524 grounds:0.018731388602874887 :0.6817033682402882 +not:0.269816553071678 be:0.19959789903250968 keep:0.03655833760236944 remain:0.007512387117095502 :0.48651482317634726 +be:0.46034348750933307 he:0.04248400804591306 bo:0.027059847789446836 the:0.024319131510852528 :0.44579352514445436 +surface:0.13294122079974294 and:0.1267045532446524 below:0.07693894176661334 line:0.07120597518561304 :0.5922093090033782 +and:0.2082573151264769 of:0.1942992452455969 to:0.15373012733913433 in:0.11180137720149044 :0.3319119350873014 +of:0.11300698186685554 and:0.10082136968028714 tho:0.07923335140793483 Tho:0.07823359262117574 :0.6287047044237468 +and:0.31842828343958174 feet;:0.0165205012506163 street,:0.01633254001728402 running:0.015573897791987057 :0.6331447775005308 +record:0.13034634275943993 result:0.0712944031095806 report:0.06686215955903844 public:0.056535676466103774 :0.6749614181058375 +of:0.4820003762453362 with:0.14071851300251456 in:0.10293504587051407 almost:0.10072030202957405 :0.17362576285206105 +of:0.10144808952652741 and:0.09867274091853437 the:0.045214502892025846 door:0.044311225456991926 :0.7103534412059204 +duty:0.9995606725330659 honor:3.157097062498838e-05 mind:1.6364925843383948e-05 purpose:1.5768768916521043e-05 :0.0003756228015492626 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +for:0.497972059485983 a:0.15192372884400493 of:0.09390046247546183 during:0.07876693756216699 :0.17743681163238326 +to:0.3694826784537574 the:0.16691759685296356 for:0.10969563539408043 Mr.:0.06440693454015155 :0.289497154759047 +of:0.5953358705025569 that:0.11184152725864001 and:0.05231098447517897 was:0.05040137564001126 :0.19011024212361294 +or:0.7821772160013072 and:0.03156428508309823 who:0.020810453861513017 selected:0.010562566541766322 :0.1548854785123151 +those:0.2372254471943682 men:0.044133608917338245 all:0.04013844749310643 people:0.02602218748202558 :0.6524803089131616 +can:0.11611994447908941 ought:0.10992397780447621 want:0.06945098322854473 are:0.06284652883335386 :0.6416585656545358 +fact:0.23965039292760493 with:0.026791143870696667 that:0.023979093901589688 of:0.023312552120506 :0.6862668171796026 +be:0.990397002620125 one:0.0005262380289805689 which:0.0005055129870506614 been:0.00033517685863255 :0.00823606950521107 +in:0.2164986266872728 of:0.15917920730342688 a:0.1403100906737737 and:0.10817336029371433 :0.37583871504181243 +Is:0.4036467739974392 is:0.30477059615878666 was:0.23596653749256918 are:0.035428753570437406 :0.02018733878076763 +party:0.35745826919390405 principles:0.042531239491527865 National:0.029960357126167743 State:0.029357569506241396 :0.540692564682159 +other:0.8230709477299386 common:0.02558228909341054 young:0.017772894712424006 one:0.01057170598410559 :0.1230021624801212 +Mr.:0.1505176603528006 and:0.06318632309293308 the:0.04467685610207089 The:0.042148574610146525 :0.6994705858420488 +Board:0.093628941107018 sale:0.08136891650150964 county:0.044396098390049016 use:0.0400421511928607 :0.7405638928085627 +the:0.19917073385627404 a:0.04081566592248519 to:0.026818955009108983 in:0.019418502253352676 :0.713776142958779 +when:0.1838768692497566 and:0.07668070954770821 that:0.0669735986620986 where:0.06136902905427283 :0.6110997934861636 +we:0.3414849838365957 the:0.08370639812611197 sugar:0.030532635540552102 earnest:0.03014172049596445 :0.5141342620007758 +on:0.23076895507703038 n:0.1837314145908019 from:0.12969893019786136 and:0.07128521368757654 :0.3845154864467299 +to:0.671288763790779 in:0.13353666116778753 throughout:0.07160255767382985 as:0.06584245649347771 of:0.057729560874125875 +and:0.1097240415351302 the:0.0698984466028343 of:0.06878204794050409 old:0.052503127826495535 :0.6990923360950358 +usual:0.1625373780882052 natural:0.06297844735472923 great:0.054019914802383676 advantages:0.05102137013643821 :0.6694428896182438 +When:0.30433302942679125 But:0.24123318721107645 that:0.10352970927316048 and:0.08540006046258468 :0.26550401362638715 +of:0.11781903894068492 and:0.11050043254222482 the:0.06825424288558354 to:0.04080547441446465 :0.662620811217042 +West:0.22395769582782332 East:0.20723156892038797 North:0.18309543830657643 on:0.10719737453676917 :0.2785179224084431 +hay:0.07950946405813779 Lord:0.04493415980758993 water:0.035818653904228816 same:0.029890449293346544 :0.8098472729366969 +-:0.39074723365363523 even:0.10558121314033259 ate:0.04042894481887331 it:0.03654898429426324 :0.4266936240928957 +was:0.8604174475753451 she:0.03713412049411451 he:0.03044779579341005 is:0.029621460731680326 :0.04237917540545009 +voted:0.00983962280795638 signed:0.005426346032116801 scribed:0.0011185946107194974 light:0.0010563397578245218 :0.9825590967913828 +and:0.7086724666562003 only:0.07194742150312057 or:0.06652649193680474 about:0.03946101878144455 :0.11339260112242992 +sold:0.5802989417159328 used:0.0698160765967322 responsible:0.06622209159192413 working:0.05859416614184303 :0.22506872395356775 +taken:0.2660351965099127 held:0.23186250180764972 made:0.0944307505412574 given:0.08665088692937274 :0.32102066421180747 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +.:0.40617537813632215 ,:0.24711014219116842 and:0.1400680455686833 also,:0.02052309754849139 :0.1861233365553349 +He:0.02846161342213313 County,:0.024145034820165605 of:0.014670388804492309 every:0.013277896309884485 :0.9194450666433244 +cause:0.06248704422228902 children:0.028686796387341052 place:0.02380917646103355 feeling:0.021606296852992434 :0.863410686076344 +light:0.04230812176324565 mass:0.033896023947558945 largest:0.023158280896861286 part:0.021460646201736287 :0.8791769271905978 +It:0.2631753094048795 This:0.08924777738393952 which:0.07907680661116553 there:0.039085369710656445 :0.5294147368893589 +the:0.7559789837917612 an:0.08525891805336284 The:0.04108317465330687 no:0.03428660263764235 :0.08339232086392671 +the:0.9261752073181678 by:0.016167469333663975 tbe:0.003448723042877448 said:0.002321374014813506 :0.051887226290477255 +to:0.9890703760102962 lo:0.0004322806124778202 not:4.895535208256865e-05 thoroughly:3.8801140851798544e-05 :0.010409586884291607 +the:0.6552416513078081 corporation:0.06675194040688112 any:0.056530394447274736 a:0.05140625000606166 :0.17006976383197447 +of:0.40143151925839576 C.:0.10912592413823953 at:0.08947768940455035 in:0.06611860096696319 :0.33384626623185104 +to:0.48106769388647547 and:0.12743394041302666 the:0.07427175950530523 will:0.06228769285132323 :0.25493891334386953 +clean:0.12131629362305947 clear:0.06736669901359317 stomach:0.03602547045174856 off:0.028520502618889013 :0.7467710342927096 +the:0.4345956079128763 a:0.12119470100368918 this:0.05142112689845128 our:0.047329549763346544 :0.3454590144216367 +and:0.12286791424690789 Not:0.08711890722618063 of:0.08352273626208409 with:0.08194380176037629 :0.6245466405044511 +the:0.7530750804590348 be:0.059120631800115786 his:0.033630737839212006 a:0.02015725006386699 :0.13401629983777047 +If:0.1984456592492645 As:0.18247917728092206 But:0.05533397128810141 Here:0.024625615470488606 :0.5391155767112235 +mortgage:0.25523294105841016 mortgage,:0.2194248451922893 debt:0.07150725032503287 lands:0.0230710256024407 :0.43076393782182687 +and:0.18653669878776966 who:0.1327957450559995 he:0.08706288953218447 has:0.06204590338085809 :0.5315587632431883 +measure:0.15866380205025646 bill,:0.08870625178038921 action:0.0133999810612346 discussion:0.012043472662266385 :0.7271864924458532 +of:0.3772927676605494 The:0.06876807674204877 was:0.06035669711136557 the:0.05511418040647628 :0.43846827807955996 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +sale:0.21043035957059475 home:0.016387021492954745 escape:0.005295440963416227 attack:0.004462805161788356 :0.763424372811246 +London:0.07313147606624383 Virginia:0.04817903152174091 Mexico:0.04764659591543084 Chicago:0.04565393644905319 :0.7853889600475313 +in:0.33451878660812734 of:0.2591351801708307 to:0.20729435067599442 throughout:0.09709887017841447 :0.10195281236663292 +of:0.7147314403547701 by:0.24763988382146657 the:0.022126311552863463 th:0.0045514585133496 :0.010950905757550483 +of:0.16454059236320037 in:0.06682591919413493 and:0.05270630809768706 at:0.048041155626812306 :0.6678860247181653 +the:0.4759725672386445 a:0.14012389691592003 and:0.024517870954035913 his:0.0209662087466234 :0.33841945614477603 +by:0.4734273617823965 to:0.0738085271635044 for:0.05704959098491168 upon:0.048026613645295535 :0.34768790642389186 +W.:0.02613835565218088 and:0.016269751715570296 E.:0.013462290544679126 H.:0.011805705359967278 :0.9323238967276025 +said:0.07855105036702027 stated:0.07151504986802593 says:0.051714651755300635 found:0.01879899414439306 :0.7794202538652601 +a:0.24870334830557858 the:0.22005641210069968 six:0.07942229952539416 tho:0.05546368808902313 :0.3963542519793045 +it:0.5166336636625524 ami:0.06696866495896503 which:0.066792999553727 provision:0.0460174006747405 :0.303587271150015 +change:0.34122762363505355 question:0.13977842422154038 effect:0.022463199920503506 measure:0.013075717432739543 :0.483455034790163 +had:0.45713201392577263 tried:0.22565583257840344 want:0.09171950740431596 was:0.07191431380843216 :0.1535783322830757 +the:0.7099630210533568 a:0.0749354389837769 tho:0.03443932810451418 this:0.021019216756569557 :0.15964299510178243 +of:0.35437152767571434 and:0.12342639798262714 the:0.05550075369390064 to:0.04022563172430238 :0.42647568892345544 +the:0.7506212740572625 The:0.15776119566955313 in:0.0146923444585844 tho:0.009806073709990962 :0.06711911210460893 +to:0.44505707922727694 the:0.27543705485861686 a:0.09109202976134323 my:0.027267742483538734 :0.16114609366922433 +of:0.5618035367914463 in:0.16361252346883282 upon:0.13210816167110528 with:0.09440518698838751 to:0.048070591080228 +of:0.6141840725833333 the:0.13225741867887553 by:0.06238714559239553 a:0.05900471433533511 :0.13216664881006046 +called:0.1550275005192008 labor:0.02140870610691364 come:0.021279271822260838 to-:0.016581979171125753 :0.7857025423804989 +the:0.3301746101131263 tho:0.23167526043762066 this:0.07260269120820326 an:0.054128300204609035 :0.3114191380364408 +The:0.1155404321068979 and:0.11222625145729848 the:0.09788340915341992 of:0.07017422809837603 :0.6041756791840076 +the:0.3952838322649055 to:0.26822739318123806 and:0.03159685340798472 a:0.022620200859777617 :0.2822717202860942 +State:0.1571958592924044 the:0.017479737425510306 City:0.016676957066045696 state:0.013739943323704887 :0.7949075028923348 +four:0.05545987034029486 house:0.018748372573865846 mill:0.01648174051908247 ones:0.012158267334388299 :0.8971517492323684 +of:0.11563315028971428 line,:0.07467523028940291 twenty:0.051740484289694265 nine:0.028909728614632674 :0.7290414065165558 +tax:0.05301415353540994 con¬:0.02752132796560451 previous:0.026030679313477727 cotton:0.01614915318218837 :0.8772846860033194 +the:0.403099746967552 The:0.3110155658033092 a:0.08791599072869796 One:0.06467813317158917 :0.13329056332885164 +said:0.17116382925993165 the:0.11512946949531691 a:0.04812954044524452 Section:0.02859757311704983 :0.6369795876824571 +must:0.11981518635095195 water:0.07161975515178588 Washington:0.05950043336113171 will:0.0409317994110478 :0.7081328257250826 +for:0.22924121573132034 of:0.21589049313900716 in:0.19693097586553232 at:0.12664481638583955 :0.23129249887830072 +the:0.4022120117442018 a:0.11624556640762738 .:0.05068346912489119 3:0.04752118697133677 :0.38333776575194284 +the:0.9848344983865628 their:0.009062146183377511 a:0.0014371846346727575 to:0.0014112541900242774 :0.0032549166053625947 +off:0.13588194594788935 coal:0.07038768806010044 Is:0.04598019223671042 out:0.037333286782998666 :0.7104168869723011 +like:0.20042195252518166 with:0.1628882234862304 to:0.1277896017182349 in:0.12696542053613047 :0.38193480173422256 +men:0.4793316890128244 members:0.04742398533757674 troops:0.015519802149250148 agents:0.011484042738100261 :0.4462404807622483 +the:0.9420927046307576 said:0.03439356255566339 a:0.011499163230366392 to:0.002989077659414784 :0.009025491923797936 +of:0.07604453057264839 and:0.05634535739050594 the:0.03854207438069515 Co.:0.0245784418772444 :0.8044895957789061 +crop:0.9010980467987498 and:0.037039237281123585 supply:0.020594165553531163 as:0.0071107741268068144 :0.03415777623978849 +both:0.5158581433827809 several:0.3021134739309117 one:0.10083135057437635 some:0.06080136073780761 many:0.020395671374123448 +as:0.9711919808467182 aa:0.0037803435552041845 be:0.0027805303274871674 all:0.0021089715569522355 :0.020138173713638383 +and:0.18104632455419162 to:0.09581244085956211 the:0.053879875043890704 or:0.03856100349707363 :0.6307003560452819 +the:0.6225233917905517 said:0.1194694574132192 this:0.06401578434829763 each:0.011268797120176364 :0.18272256932775513 +know,:0.7209086444048909 doubt:0.1284360046328884 say:0.02667446503928445 see:0.01820926410801015 :0.10577162181492611 +A.:0.27794580054496676 R.:0.1416794828093198 II.:0.11699123097601828 H.:0.10527364578613367 :0.3581098398835616 +and:0.09850151135054551 parts:0.09064361870579173 of:0.04288140155252955 sections:0.031076275540225677 :0.7368971928509078 +will:0.23951501931230515 would:0.17432861096913518 to:0.13311371470303432 may:0.06579151997165711 :0.3872511350438682 +highest:0.050237526680058125 same:0.016936979485525444 best:0.015083972027804251 public:0.014713081589279548 :0.9030284402173326 +way.:0.5446229700110755 here.:0.026884209308924267 it.:0.007547182562366166 him.:0.005324839312240491 :0.41562079880539365 +any:0.9629493471946928 no:0.005877171876009454 this:0.0023100315961681554 its:0.0005365499732873078 :0.02832689935984214 +to:0.968262257471253 by:0.007127152756129843 well:0.006528237507871279 all:0.004738657259060083 :0.013343695005685692 +the:0.45133657040151715 any:0.39908721194271024 their:0.04067189646776235 our:0.009019633920966354 :0.09988468726704396 +high:0.21391414145922083 and:0.10275678891869815 man,:0.0569768468984201 man.:0.053277985733106305 :0.5730742369905547 +be:0.1736784041154287 and:0.10947363393534067 was:0.09147806490432239 to:0.06725745294487999 :0.5581124441000284 +by:0.2153783867835134 to:0.1739649006660215 and:0.12086142193622575 for:0.07345233530340119 :0.41634295531083815 +of:0.9271474538224608 ot:0.0669894521697997 in:0.005596089471348782 or:0.00011068652969507473 :0.00015631800669566504 +the:0.524598556800985 tho:0.15517812665258546 our:0.08066797600576903 his:0.07285561395767447 :0.1666997265829862 +at:0.9391996095745458 a:0.01697580455592646 in:0.011224225752035338 nt:0.009557575941417967 :0.023042784176074395 +has:0.4496652328703267 had:0.2656261484973469 was:0.08280414743763684 having:0.057737655473888864 :0.14416681572080076 +days:0.37158955062974747 years:0.20026520785304544 months:0.17559309578340204 hours:0.13684634976100704 weeks:0.11570579597279815 +L.:0.04338310815091647 L:0.027589699810807607 &:0.021831388404015013 W.:0.018152964163294105 :0.889042839470967 +that:0.1786238502240797 and:0.17235834161511118 high:0.1325350263274645 higher:0.05909354695299693 :0.45738923488034783 +July:0.39054337057567384 the:0.09020953962107423 or:0.08297766923335491 a:0.04335353658529566 :0.39291588398460137 +still:0.6813220381780946 and:0.046930370769718115 He:0.03514038279227083 who:0.03448721873981773 :0.2021199895200988 +to:0.6047126203188244 shall:0.20870540553029807 will:0.08875836947927346 and:0.014749614109866084 :0.08307399056173784 +the:0.8185540118992849 tho:0.04030099194940885 its:0.022370666322196014 his:0.01892289281049272 :0.09985143701861739 +and:0.15653947370538432 the:0.07023817066430513 of:0.06250103421913439 or:0.06006513058269601 :0.65065619082848 +secret:0.7750494567868458 I:0.04768595152969803 for:0.029125234436808655 civil:0.016719673540979144 :0.1314196837056683 +and:0.1200585068735986 but:0.08076378643705327 connected:0.047028148595810525 connection:0.019376598146038697 :0.7327729599474988 +and:0.3972011078734229 although:0.0865278475157604 but:0.07845921709608515 in:0.040325950841453774 :0.3974858766732778 +lot:0.7496026276053126 and:0.06558645262568928 aud:0.03237026463431257 avenue:0.01788860674102563 :0.13455204839365986 +the:0.7813023763395541 its:0.07139739546309043 tbe:0.04266413435494589 his:0.019910417467472033 :0.08472567637493769 +she:0.5490733372109426 it:0.2502412289999467 I:0.07545962249690445 It:0.04371539641994203 :0.08151041487226417 +the:0.1339257801903035 all:0.03430867894670269 the.:0.019039241532284066 ihe:0.017203294933039636 :0.7955230043976701 +die:0.04178376574765311 house.:0.04175082515101306 own:0.02331702264828068 side,:0.018103252049770514 :0.8750451344032826 +a:0.2668534223767105 the:0.14605825493186206 of:0.11193773334142007 A:0.07936519105934098 :0.3957853982906665 +her:0.07832756807193343 sixty:0.059312198084766836 100:0.05790080834333111 10:0.03911951508032166 :0.7653399104196468 +the:0.20685907622171137 South:0.12906829110835935 West:0.09976711427734533 said:0.07816103788803573 :0.48614448050454834 +also:0.5279408328890126 the:0.1256754809115307 had:0.08240714243296983 any:0.06344881670752664 :0.20052772705896021 +The:0.7297974491989522 tha:0.037071488253461446 the:0.030561972101183162 entire:0.015396765832146426 :0.1871723246142567 +but:0.1674929131614734 It:0.13423826505457742 and:0.11103245094303049 she:0.10757807694849943 :0.4796582938924192 +a:0.9870837089142714 the:0.0054908014681557225 excellent:0.00020047572227347536 this:8.149651140821738e-05 :0.007143517383891191 +of:0.5124750329939078 and:0.2087707094865766 when:0.08723964945330538 aud:0.04288971147467029 :0.14862489659153996 +a:0.9536793772487392 as:0.039917604451611625 other:0.0011604182955377582 hot:0.0004251561870193361 :0.004817443817092159 +sell:0.21885271282566304 sold:0.1787435728919082 as:0.01714126429637587 apply:0.01208800111772105 :0.5731744488683318 +be-:0.8606222659003374 be¬:0.11997613047811406 be­:0.013020156391952906 himself:0.0005310673251091962 :0.005850379904486504 +and:0.34548378808727126 to:0.07442879538114298 in:0.06800083369772812 of:0.04907800014419104 :0.4630085826896668 +more:0.6119632790273528 less:0.1983082610453803 rather:0.03211326096910743 other:0.014725724905640138 :0.14288947405251956 +at-:0.2889951010635054 be:0.2638330581356622 ever:0.14499721863760912 bo:0.03972062822175388 :0.2624539939414695 +and:0.10673762420032994 are:0.08466243297845018 is:0.059893871834177215 was:0.054892222199249524 :0.6938138487877932 +more:0.6994697335102503 up:0.050032922445381885 even:0.02325729287554324 on:0.020786247943077343 :0.2064538032257471 +to:0.5752335905487409 in:0.10246135825949179 of:0.09493912448764553 from:0.06613850904951456 :0.1612274176546073 +age:0.18161759289493892 the:0.04842010763634742 age,:0.024221440302688284 a:0.0223943702687084 :0.7233464888973169 +No.:0.0965902939308548 No:0.0576896227307281 and:0.041340260508917245 of:0.03869028027278976 :0.7656895425567103 +avoid:0.15506791114712548 the:0.11146203109655321 make:0.10893067332303939 prevent:0.07969865749800663 :0.5448407269352754 +little:0.7100264593404269 work.:0.01929125851637825 our:0.009424418027603226 a:0.008830968492646031 :0.2524268956229456 +provided:0.9185721085485111 t:0.02383517006644141 and:0.0036696103583343112 estimated:0.0018124604460821054 :0.05211065058063093 +no:0.6626666963954528 No:0.23245709278630763 the:0.010162170962439992 so:0.002688848810098451 :0.09202519104570103 +the:0.7067319649140462 a:0.11935441404834249 tho:0.023951920988784643 be:0.018091824682886403 :0.13186987536594022 +knew:0.21931171974697275 said:0.15219178529702723 thought:0.11123618843604337 hoped:0.08322210416663814 :0.4340382023533186 +Virginia:0.2587033149298482 South:0.164220387846606 the:0.1157745390443107 Europe:0.013451946866147523 :0.44784981131308754 +the:0.4693174704327927 be:0.0773221833057918 this:0.07303039932534731 a:0.027030667567988966 :0.3532992793680791 +States:0.7261158884932281 States,:0.040719232786274914 States.:0.024547948450378134 and:0.015626551046810856 :0.19299037922330806 +when:0.34454349373260046 if:0.1909268223886136 for:0.18633249342716762 as:0.09713016925407712 :0.18106702119754112 +single:0.10897680741083657 small:0.030494724223175302 particular:0.012820137591730124 fallen:0.010771442158369558 :0.8369368886158884 +to:0.5251377665207739 near:0.19469059730418467 of:0.01354417782480194 that:0.009857803732826756 :0.2567696546174128 +at:0.5663089455240907 upon:0.2542082594070208 to:0.11794959735512374 over:0.04201556210430545 through:0.019517635609459287 +!:0.008929265608739903 the:0.002427359932493006 alone:0.0014417436469409716 day.:0.0010083703803021593 :0.986193260431524 +the:0.4517553643414856 our:0.07418433169883634 a:0.056160962426585206 his:0.038572370032498644 :0.3793269715005942 +born:0.31699085668731664 as:0.0864360698037845 is:0.06106046968449319 instead:0.05012969024802578 :0.4853829135763798 +of:0.28877822025752753 in:0.06822519436547976 each:0.059645420125022656 and:0.043732029786409186 :0.5396191354655608 +the:0.14034624457243342 a:0.036996311746600126 that:0.017144767012259476 in:0.01600107322602877 :0.7895116034426781 +is:0.39237084431729136 was:0.2488292663161994 and:0.22548511693045353 as:0.06687550325379346 has:0.06643926918226215 +and:0.09398159275382588 to:0.05121039280885549 near:0.05058625635207082 lo:0.03945633896228761 :0.7647654191229604 +the:0.6810660666074041 with:0.11687243083457315 to:0.0533547731653712 The:0.038579064990650655 :0.11012766440200078 +of:0.24743304313352565 and:0.12498234388975409 the:0.06033823671781065 to:0.03871083886317586 :0.5285355373957337 +a:0.329039493042948 the:0.19246667488494923 closing:0.12857592967318074 with:0.1155640456158965 :0.23435385678302564 +which:0.9338525614539057 and:0.01000426545554922 She:0.008200656782108372 who:0.0069531629656472025 :0.04098935334278972 +of:0.7078607719872293 presented:0.09300188714544913 and:0.08785521778610202 was:0.06071810887009454 that:0.050564014211125094 +to:0.8050407698570169 the:0.055532422861282515 of:0.020267004564363533 into:0.006998317444490842 :0.11216148527284624 +and:0.2744382864461943 of:0.22162408000095307 in:0.15518712566503412 by:0.11101544615884684 :0.2377350617289716 +you.:0.39735837080373165 you:0.05220332417441019 us:0.028831810170339235 the:0.0261159225682685 :0.49549057228325055 +ment,:0.1417819858712441 work,:0.08479948163568307 of:0.06368395028890092 at:0.04531161890609867 :0.6644229632980732 +city:0.007603866259494582 city,:0.0037464602013416014 country,:0.003011898880478291 country:0.0025135426273412463 :0.9831242320313444 +River:0.1059590545772074 and:0.10533825677699907 banks:0.03440268554965938 while:0.02825640715947153 :0.7260435959366627 +fell:0.209094843788225 went:0.09954418205112248 fail:0.05253883335736542 came:0.040162152297005003 :0.5986599885062821 +members:0.1900581022417617 out:0.1704170382149551 months:0.040124060893800044 miles:0.028631408626761414 :0.5707693900227219 +was:0.3843445559251108 is:0.24722385037371222 are:0.12346179746379972 were:0.0879601967198906 :0.1570095995174867 +as:0.4906319425173058 at:0.1437500574245949 in:0.10994076249327818 In:0.05124041424123511 :0.20443682332358604 +years:0.1338174437970131 persons:0.0556319844784704 men:0.05067908131601776 them:0.022931895791972988 :0.7369395946165257 +that:0.33956756120341813 until:0.029563321024008538 in:0.013993251809232598 it:0.006095417169109226 :0.6107804487942315 +The:0.21738396870107793 and:0.12028516539771995 been:0.11029155164712978 was:0.0848444314031375 :0.4671948828509347 +city,:0.8529932006423417 hope:0.029170612530275263 mean:0.013358111583006768 Mr.:0.006921676517290476 :0.0975563987270857 +as:0.4997035054248829 from:0.13605580038722526 of:0.1064502105901547 The:0.05914675423666879 :0.19864372936106825 +per:0.29169258294743944 price:0.18106380154132512 to:0.12140890760418253 about:0.10441570767295558 :0.3014190002340974 +thence:0.13539809368489306 the:0.11068809451273351 and:0.09971408656854604 of:0.05140471901110512 :0.6027950062227223 +or:0.6599344893964397 my:0.10344514003892674 and:0.03572224995048871 of:0.03164424058667309 :0.16925388002747158 +at:0.481944038409107 from:0.34680000245675763 and:0.07513793523514466 to:0.04390611346710132 :0.05221191043188925 +is:0.4338885048415765 made:0.2268819453442795 gave:0.1356501864510203 furnished:0.11517790910614464 was:0.08840145425697903 +to:0.46648711664830333 was:0.23402110029771472 shall:0.0660372424226714 also:0.03995175490403574 :0.19350278572727464 +of:0.3082553676249934 in:0.25842876295319267 to:0.18820449590934435 for:0.07650026746358234 :0.16861110604888732 +He:0.4716496333001371 This:0.10956718697283514 It:0.08335327146150992 he:0.0758213196206249 :0.2596085886448928 +is:0.004816773079167556 and:0.004016806642942644 evidently:0.0024211463092363695 II.:0.0008940391426351322 :0.9878512348260182 +very:0.13178762892616752 hereby:0.12200838676335782 largely:0.10482038894361148 tho:0.08725718656098262 :0.5541264088058805 +other:0.7618470569993349 The:0.08560439245939332 ordinary:0.06919552219467008 new:0.020267406396843806 :0.06308562194975786 +by:0.23442810461516614 D.:0.18141512107061586 and:0.14359293648132404 of:0.10595571092305563 :0.33460812690983843 +who:0.26182667225272727 and:0.2248991936442259 it:0.14141148803936665 power:0.1297560265637228 :0.24210661949995738 +tions:0.1975050011655073 ter:0.15107180490407698 as:0.08962559224285709 and:0.083956809778287 :0.47784079190927164 +state,:0.020759078318919263 week,:0.020514178705154824 year,:0.01634056228761002 time,:0.01201554667292706 :0.9303706340153889 +been:0.8959427951781591 it:0.05997758204111344 work:0.016799724281858677 suit:0.008059107157221019 :0.01922079134164767 +to:0.25337289497227405 in:0.16294662164855095 and:0.0890386285304063 have:0.08811840150704059 :0.40652345334172824 +it:0.36275564483742173 he:0.07658943650648571 as:0.04884764094299722 Christ:0.04570685392765247 :0.4661004237854429 +to:0.5931363782118063 will:0.14822646672914294 should:0.07268014587011692 shall:0.06642629306569499 :0.1195307161232389 +to:0.4043964801662866 on:0.37246819336046716 for:0.09399776260414307 in:0.042039130747480884 :0.08709843312162242 +have:0.1755515223512455 will:0.16580578604740054 are:0.10874521145230674 had:0.10396434245714221 :0.44593313769190507 +of:0.3279025394888685 or:0.2832798363399052 must:0.1969756124767655 as:0.09716652063394861 and:0.09467549106051218 +was:0.4084439598668272 the:0.1548676504695147 a:0.13694614314763015 not:0.11569690159359892 :0.18404534492242902 +one:0.8445524147948125 the:0.08517515781851218 tho:0.05355694874535482 ono:0.0063006822522441944 :0.010414796389076294 +sufficient:0.25222478108113955 vast:0.15229684335752602 great:0.11280129418210234 more:0.09670636727314132 :0.3859707141060908 +and:0.027600951432915858 State:0.017292539045491155 out:0.01482624629201297 day:0.013781382783210139 :0.9264988804463697 +the:0.5059991908895263 last:0.054212870695233915 her:0.03410145542082183 Its:0.030345161680974307 :0.37534132131344383 +the:0.0027443150278545964 and:0.0011249177369189024 order:0.0007656010692394641 a:0.00043400101122640955 :0.9949311651547607 +which:0.02786660239799214 crop:0.019631630342297427 mills:0.018852588596751405 people:0.018332524830427577 :0.9153166538325315 +is:0.13877647442959007 can:0.09214123673990489 No.:0.07402868519177348 of:0.060550872374163275 :0.6345027312645684 +any:0.951699843618665 every:0.03175198429203963 all:0.006869686290455843 no:0.0021425864818899487 :0.007535899316949569 +and:0.9973647304983906 of:0.0007124759393455078 the:0.00044015416184532485 is:0.0003489883093631541 :0.001133651091055514 +bread:0.1921445114247269 money:0.12599278805443373 other:0.08118783434503746 morning:0.07683644812387906 :0.5238384180519228 +and:0.1697570551249977 my:0.11318036676639906 I:0.10980077093871089 that:0.09448327213285672 :0.5127785350370355 +and:0.1357200947449281 houses:0.03599846105732262 now:0.03265992386425014 matter:0.03084665935932533 :0.764774860974174 +the:0.4261282225178646 his:0.05461521732562729 my:0.04224032954509981 that:0.03319527305726674 :0.44382095755414147 +gives:0.55844175313102 knows:0.039737670073381866 reach:0.03456326361182927 saw:0.015183269624459867 :0.35207404355930905 +deg.:0.7242592866771675 G.:0.010075295307346945 13:0.007977994060785127 of:0.004226348877537417 :0.25346107507716287 +has:0.3170770099043216 is:0.23767124089406294 will:0.15181679866346012 was:0.1199757447758047 :0.17345920576235063 +party,:0.13917886580895178 party:0.09570502792524001 national:0.04842537433485233 The:0.04237030546826898 :0.6743204264626869 +the:0.2575885443564041 other:0.0954839144319103 these:0.05770819805609079 prominent:0.047664155573436395 :0.5415551875821585 +for:0.17533643731362608 and:0.04812212638974412 of:0.03464699109330907 to:0.027011314155034282 :0.7148831310482864 +.:0.12188497427959559 as:0.05126644659114208 from:0.035249391322229734 —:0.017505848527366565 :0.7740933392796661 +other:0.1893569686547507 opposite:0.1429660158348299 west:0.09486234796535571 left:0.089027224514941 :0.48378744303012255 +were:0.9051299860724591 one:0.016742921069713528 by:0.015011680362817144 and:0.006318539355320997 :0.05679687313968932 +the:0.35196820284952335 its:0.31698553360928483 this:0.1246938173083564 his:0.07123404686818392 :0.1351183993646515 +*:0.06450822201090688 make:0.021161131591252342 on:0.009530184260303113 he:0.004328441454470506 :0.9004720206830672 +know:0.5149704868333729 believe:0.4016052243414332 save:0.015325380734559637 like:0.013625142434339325 :0.05447376565629491 +the:0.10521801000809788 of:0.08844368107231858 and:0.07430301902816525 extra:0.06938109088462328 :0.662654199006795 +July:0.04361128811667007 same:0.04189676338270252 young:0.03978302360180839 question:0.037046725482088254 :0.8376621994167307 +mile:0.0787223397234528 step:0.07852795885453365 blow:0.04294688869756862 letter:0.039554916999981475 :0.7602478957244634 +the:0.2771015655840214 this:0.13781664768715415 down:0.07948049799519587 next:0.06762937033017505 :0.4379719184034535 +and:0.12277403582093846 of:0.06817263060083245 the:0.06716129019292709 The:0.027996999816128597 :0.7138950435691734 +it:0.783473388394147 It:0.21408714203641638 him:0.000951626403225331 business:0.0003958763021801253 :0.0010919668640311643 +a:0.2934011486932696 the:0.1970513790668082 come:0.16442268286837325 to:0.1546630112322698 :0.1904617781392791 +but:0.06901013952557793 that:0.04083604005433338 much:0.014822730211985853 on.:0.011878008802926644 :0.8634530814051764 +said:0.38053764219921193 claimed:0.3778321201632788 determined:0.09453168037335075 likely:0.03871716103911488 :0.10838139622504364 +thence:0.2706742746626685 and:0.08002535301057351 the:0.06973177858655251 street:0.06415744096323858 :0.5154111527769669 +allow:0.9998796248668618 get:3.8730064272835206e-05 have:2.632393725046798e-05 require:2.4267902157452102e-05 :3.105322945748661e-05 +is:0.5284859204808787 was:0.32795311172689523 be:0.06343848180147868 Is:0.017610184033980167 :0.06251230195676727 +story:0.05361343281266078 clothes:0.046236043324179944 claims:0.02903849877504746 doctor:0.027459492385471018 :0.8436525327026407 +will:0.26582912954103605 can:0.22051331353879391 credit:0.11353327593889298 was:0.07389804200323188 :0.3262262389780451 +time:0.06673333248749967 same:0.045578191961377613 present:0.02852869114591784 hour:0.01791725652149845 :0.8412425278837062 +letter:0.40473745064670014 land:0.013465950911390523 man:0.009806332670903799 office:0.007067446905156593 :0.5649228188658492 +because:0.18984343547085392 there:0.10100794937014737 not:0.0903212882870621 he:0.02076681475946696 :0.5980605121124697 +to:0.12271148168841252 and:0.09860536158767223 of:0.06760590261865558 was:0.04060972518050051 :0.6704675289247592 +the:0.7398146675904268 this:0.08805848090606996 his:0.06722120695318143 considerable:0.0509981773517639 :0.0539074671985579 +powerful:0.8139349331291209 small:0.023682729411915644 large:0.01811929219156003 this:0.01370351126932262 :0.13055953399808076 +a:0.8387923977389211 his:0.04445280958514566 their:0.014621602884569611 her:0.013846770271430131 :0.08828641951993348 +Johnson,:0.012190969317789579 F.:0.011835121000054443 T.:0.011176111074940487 M.:0.010318589135492186 :0.9544792094717234 +was:0.34889037019644376 we:0.13639698220434537 they:0.12723872701045735 he:0.11520512251048855 :0.2722687980782649 +the:0.488932842774588 a:0.06816321047248881 his:0.02692178401603305 this:0.025106396316419987 :0.39087576642047034 +at:0.2788283376550183 Mexican:0.09100365235393965 e:0.08681627208190143 State:0.020518225550830178 :0.5228335123583104 +and:0.00039936576706184644 force:0.0003556224119342159 department:0.0001962619870589137 jury:0.00015621083058569993 :0.9988925390033593 +vice:0.015467254266064092 dress:0.007690018576092698 dressed:0.0013924521391606146 I:0.0008411638093070253 :0.9746091112093755 +St.:0.0473355195887659 I.:0.036601635935897825 and:0.029378145535837008 S:0.015764893856261716 :0.8709198050832374 +now:0.3826208545442463 committee:0.3056969830337533 of:0.12805635488516665 and:0.11075869142818748 :0.07286711610864614 +all:0.09325701780909765 and:0.07797708394195216 ing:0.026379138946267495 nil:0.025772076563796615 :0.7766146827388861 +was:0.4634547141818468 or:0.20406443344344835 and:0.15000980993415997 of:0.10862338804186307 than:0.07384765439868188 +the:0.3699168254138205 front:0.03816699143409888 America,:0.019218105851455145 Congress,:0.018768124242497162 :0.5539299530581285 +for:0.7317335046546457 to:0.260157025590327 by:0.006657743151297189 on:0.00037071710680843786 :0.0010810094969215132 +nor:0.639222147712161 or:0.05827313931195584 the:0.0442329263275462 their:0.0204113107490094 :0.23786047589932757 +new:0.04898276991509729 great:0.04016757845539612 large:0.027148127155833878 few:0.025305107972398985 :0.8583964165012736 +he:0.08880304842192535 to:0.05869328477098662 tho:0.0406208559740712 and:0.013146343415750267 :0.7987364674172666 +his:0.06967475669327833 the:0.06871031676983483 six:0.045115663125096725 her:0.0358262147770208 :0.7806730486347695 +with:0.026984025253389606 of:0.011948166115831245 there.:0.010865846193377608 feet.:0.008365988778611867 :0.9418359736587896 +a:0.4748378774321315 another:0.16656931443243442 the:0.13979616044380747 one:0.09388135583805776 :0.12491529185356892 +the:0.12807767803767264 finding:0.03690925860532302 living:0.032418728393712674 my:0.02113260299322142 :0.7814617319700703 +to:0.21025286590144185 in:0.14765167574136534 and:0.10492446036285917 a:0.06458024427770467 :0.472590753716629 +and:0.21947975692625385 is:0.13470457708239175 was:0.12450165715805052 were:0.08196033677954757 :0.4393536720537564 +She:0.20921135948156055 she:0.19323686395840473 It:0.1424412198391334 and:0.12122991898255107 :0.3338806377383503 +the:0.13734982016568392 of:0.12744191576603112 and:0.08138044762211358 Mr.:0.06902603125515869 :0.5848017851910127 +a:0.19825143730020967 ,:0.16078223139177247 on:0.151441549340785 improvement:0.12902927398595246 :0.36049550798128044 +of:0.38520299006270736 the:0.2325558611103242 true:0.07152899634014179 an:0.06750639628764833 :0.2432057561991783 +is:0.12719024744585494 seemed:0.054145281236468036 and:0.030286877414274264 as:0.027406843595381817 :0.760970750308021 +all:0.2121886368405183 comes:0.19474065000041804 Is:0.17674657944123576 in:0.14323700265655062 :0.27308713106127724 +to:0.4314447622189015 the:0.19737006319713177 from:0.10771836756744863 for:0.08171835843920554 :0.18174844857731257 +in:0.1960614067555655 to:0.18718021310105296 the:0.040078412975650644 upon:0.02237186432213292 :0.5543081028455978 +the:0.23304666450211609 and:0.09831026555810723 a:0.08274399942069033 to:0.03651536413635924 :0.549383706382727 +that:0.4712889053904731 the:0.19580773016062866 a:0.08197532568345743 Mr.:0.07160250544656944 :0.17932553331887136 +many:0.8579098045283805 much:0.04801499005207943 well:0.038357648960428294 large:0.013802589289793842 :0.041914967169318 +as:0.9541888294940732 that:0.014739821767381638 ns:0.012062713214693736 a*:0.010199620986699031 as-:0.008809014537152356 +the:0.7865823625128008 this:0.04175205682805152 that:0.019998339729956432 tne:0.010311815240411033 :0.14135542568878018 +J:0.31051822170039484 G:0.2015427786132048 H:0.10790292930585182 B:0.10398057811690757 :0.2760554922636409 +was:0.04446101225468953 even:0.02984623052676904 fixed:0.029541747258236783 made:0.024342266763500396 :0.8718087431968041 +west:0.4852485229499422 south:0.22997219812576428 ly:0.05919781115503183 along:0.05852421839614201 :0.16705724937311972 +The:0.4037924035712279 dressed:0.34791813138894195 the:0.11868189004560435 a:0.06932880859045407 :0.060278766403771805 +our:0.4262824111976567 the:0.37477954175948464 that:0.011127267053915887 tho:0.00780395114573827 :0.18000682884320449 +only:0.3297999762634058 from:0.1769154210003058 at:0.17227824611991904 of:0.13800438050356528 :0.1830019761128042 +with:0.8554850466010774 and:0.05392474350209313 including:0.046586385529217636 but:0.020371132453195308 :0.02363269191441648 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +A:0.9476495410551625 a:0.015003718186234185 the:0.007281092134847316 The:0.0053252413129618375 :0.02474040731079406 +and:0.1725006982543401 that:0.1672074782375492 when:0.08645110589757274 which:0.08570336026589713 :0.48813735734464075 +payable:0.6931643509460644 owing:0.29832503798488513 due:0.003378503553093026 interest:0.00029195765957574376 :0.004840149856381557 +as:0.4997035054248829 from:0.13605580038722526 of:0.1064502105901547 The:0.05914675423666879 :0.19864372936106825 +do:0.27802807472907887 say:0.13513730884532568 use:0.1255082955796105 fight:0.1222187575222949 :0.3391075633236901 +the:0.022370685154818076 Rev.:0.0011784303327076857 a:0.0010157984939798022 Mr.:0.000820738371698838 :0.9746143476467958 +the:0.5110651837609952 his:0.06954498057134363 a:0.06938716680261116 their:0.06610169972920676 :0.28390096913584345 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +their:0.53288552175783 the:0.28468818564693316 100:0.04258731841063798 our:0.02839081799730239 :0.11144815618729637 +be:0.08321160836566531 and:0.040195891392044644 We:0.01880377412538901 the:0.01619699223142901 :0.8415917338854721 +green:0.10107527313521043 an:0.03315871915740109 London:0.026149918450755878 and:0.019037379779754362 :0.8205787094768784 +the:0.3665602948469463 been:0.2561820372913117 announced:0.11181340580199518 a:0.049952387571807595 :0.21549187448793924 +prevent:0.3042985042673933 bring:0.09477349400123056 reach:0.07409328803891947 pay:0.03320439514071717 :0.4936303185517395 +account:0.062114859467135755 legislature:0.03811291375684107 family,:0.026720467703374544 window:0.003462457690501012 :0.8695893013821476 +sun:0.06846565370265724 girls:0.05249828877955188 state:0.05047128322859695 Republicans:0.047172456475958094 :0.7813923178132358 +to:0.9867180700793496 the:0.005118243364249324 largely:0.0021363997288021837 of:0.0009335634149019998 :0.005093723412696861 +months:0.9811000264754864 years:0.011017347028184143 weeks:0.0017552938341548275 the:0.0009578746065997488 :0.005169458055574871 +of:0.19500460704118422 the:0.13429631859604285 The:0.11572426598118221 for:0.06314547948112628 :0.49182932890046444 +of:0.9665393011070829 on:0.020013965780444974 in:0.009913087598408596 and:0.0015241835085050967 :0.002009462005558295 +in:0.3226448931960201 of:0.2213354675998483 by:0.1349636551246858 to:0.1129428497830632 :0.20811313429638262 +shall:0.23515703501359234 would:0.20745458742680578 must:0.20418504225431644 should:0.19252696686164492 will:0.16067636844364042 +if:0.27310399790683776 I:0.2590778101336648 aa:0.16273858720818785 on:0.11238423882006779 :0.19269536593124187 +that:0.31064792084638954 by:0.28434024517303247 to:0.17946427142465587 in:0.15180704558333277 at:0.07374051697258938 +heart:0.08418593504791766 race:0.030774672980471915 horse:0.030097028372576832 population:0.02568550934670097 :0.8292568542523325 +ou:0.45062831281625265 last:0.26954765323149216 on:0.03571478724897343 prices:0.014021321913423656 :0.23008792478985804 +of:0.2201135290974637 meet:0.08547600414805294 and:0.05250736179484789 in:0.04916829821846965 :0.5927348067411657 +long:0.9993252823903738 hard:8.604442423591315e-05 the:2.744173113832028e-05 and:2.309481236307077e-05 :0.000538136641888896 +back:0.07842825383013027 proper:0.04479750837321143 same:0.042247167800232716 up:0.03184143064425618 :0.8026856393521694 +und:0.013332994750598022 that:0.010010278447958355 night,:0.005790924923163063 and:0.005561284670348895 :0.9653045172079318 +and:0.7441203126519496 thence:0.03192957082137138 came:0.013595430194632824 was:0.008938635798983737 :0.20141605053306236 +was:0.42592559377652345 were:0.2125967344266513 is:0.12541439977092397 recently:0.05470383318161133 :0.18135943884428996 +his:0.7767078410401274 many:0.14788231563890578 no:0.054577200192968946 old:0.008659911616442535 :0.012172731511555544 +construction:0.2654088537164435 government,:0.079279648290211 license:0.050595312908287296 government:0.046429287473723165 :0.5582868976113351 +last:0.20986242408828365 kinds:0.0798231533037674 men:0.024650655149592776 that:0.008447489052788632 :0.6772162784055675 +one:0.35460026640853587 health:0.18883297505300722 place:0.125475554143732 peace:0.04031662533098495 :0.2907745790637399 +they:0.20883522745981956 the:0.1944958048605758 to:0.14383661418956437 by:0.11855036790701307 :0.3342819855830272 +for:0.2733249334744339 Tbe:0.24085312571472353 the:0.04992948366912284 and:0.039738770101452874 :0.3961536870402667 +the:0.20565039864492687 a:0.1777309429552482 whom:0.061296746981067476 that:0.06051722282873579 :0.4948046885900217 +Washington:0.41923648310022404 Lee:0.1333213456832133 Central:0.08621020422574964 said:0.012147962414532561 :0.34908400457628047 +the:0.618944506698233 an:0.09813426337636406 M.:0.020552630632400325 those:0.018407636970835226 :0.24396096232216746 +made:0.08392435204259927 subject:0.08036585705616145 given:0.07679121160082482 submitted:0.07356092577236789 :0.6853576535280466 +at:0.2810273317826595 and:0.1806402186982101 At:0.053524775271578444 10:0.025070950284906104 :0.4597367239626459 +of:0.8093893045271248 in:0.06786067921330097 to:0.05179784225249804 is:0.04773731437678043 :0.023214859630295823 +chance:0.25770257430289856 if:0.2165205201970967 has:0.16247681273263623 all:0.09242137220855341 :0.2708787205588152 +of:0.2301907665190753 and:0.10012123128614825 the:0.058178919670416045 The:0.027772589242190508 :0.5837364932821699 +as:0.9396117618704984 aa:0.030849947676024513 than:0.01616408529197282 is:0.002667766971700086 :0.010706438189804051 +a:0.598628310247784 the:0.21465403806991545 their:0.04087873881181705 our:0.03264834720887263 :0.11319056566161087 +only:0.9977144250094002 it:0.0006171216901980158 and:3.547385397882368e-05 as:3.0204275386563933e-05 :0.001602775171036254 +few:0.7975209795414515 six:0.03538097058173318 five:0.02849688846098744 three:0.011182095347255394 :0.12741906606857245 +the:0.520614508359939 this:0.33555792764052267 tho:0.04729182422958043 that:0.04048740784865538 :0.0560483319213025 +of:0.03083215151630573 in:6.178228206212742e-05 iu:1.6623389255907075e-05 at:1.1637607941114299e-05 :0.9690778052044352 +has:0.4337907262403295 have:0.24530441767748892 first:0.16518173191753377 had:0.09749425858164729 were:0.05822886558300058 +law:0.05614155506251381 North:0.05010932928906102 people:0.0431039003999432 Legislature:0.02787070337394387 :0.8227745118745382 +west:0.08303076057454413 this:0.06486995858088024 one:0.05468552267958846 opposite:0.030022499668685587 :0.7673912584963016 +sell:0.03884090792891328 establish:0.02474942383776973 receive:0.02393082062970612 read:0.02279961087671253 :0.8896792367268983 +and:0.15384460273499298 part:0.0719675214227735 hands:0.03577819659130655 work:0.02778527682121135 :0.7106244024297156 +the:0.5512653079122841 a:0.0766089509286458 and:0.07306393698685716 from:0.05128532109639623 :0.24777648307581684 +in:0.1177293434109011 to:0.05929090223984133 was:0.04679315988736651 remarkable:0.031999795151186526 :0.7441867993107044 +The:0.12816257437184567 ":0.09803530931535308 It:0.013982819357973958 He:0.013567146467831508 :0.7462521504869958 +the:0.23668300245450916 The:0.21647084178813378 We:0.09917309627491024 tho:0.07833571593822523 :0.36933734354422165 +and:0.5704504233291905 if:0.1341303530187062 as:0.0892836106460642 but:0.05113184484367463 :0.15500376816236447 +the:0.4893079595816633 further:0.14980867138924425 that:0.1410179320563249 a:0.12663377127161088 :0.09323166570115682 +and:0.2546933301899318 years:0.14934583597897622 of:0.0815344346666061 times:0.08149211037818542 :0.43293428878630047 +door:0.16221575581890463 time:0.06807667545006175 executive:0.017008042594436414 moment:0.011400509135622234 :0.7412990170009749 +seen:0.24493337728151165 been:0.2294064883982011 given:0.18714581838427863 used:0.1342418591906562 :0.2042724567453524 +and:0.1285005629263983 or:0.05961102648467018 of:0.04720449324842956 the:0.02255997889997782 :0.742123938440524 +and:0.6154066445775992 of:0.032216291156932475 the:0.01973612506587093 aud:0.01289964287276209 :0.31974129632683534 +but:0.22317136510228144 and:0.2037847133670444 that:0.16363339104662408 But:0.13404271340799345 :0.2753678170760566 +the:0.02854722289896072 said:0.022925442540949432 this:0.013740229473366061 Lake:0.009714017062007202 :0.9250730880247164 +der:0.9959808167897003 worthy:0.00019707037030743628 let:0.00010143438275714654 born:4.951409016767104e-05 :0.003671164367067408 +was:0.6544786372360979 has:0.1300815909876884 is:0.06229677785673084 are:0.039789828147904126 :0.11335316577157872 +the:0.40318709586717183 de:0.16239663040779267 this:0.07966748819693914 your:0.07869948016241028 :0.27604930536568617 +lost:0.2649277298356181 with:0.22122142375567116 and:0.10763309096864579 in:0.09897704417189651 :0.30724071126816843 +the:0.5667529186700978 this:0.0691209610529486 one:0.030600718681473037 tho:0.02336707944453059 :0.3101583221509501 +of:0.9587816354178142 ot:0.014727385759754323 oi:0.0063990926100915 was:0.00585632926023234 :0.01423555695210767 +the:0.03324853179633535 other:0.027009744233503243 great:0.020279238375547768 general:0.015318013179153357 :0.9041444724154603 +they:0.15735675884019198 be:0.10442547858274823 he:0.08322904180288326 we:0.05821271303009208 :0.5967760077440845 +of:0.23756062626087407 the:0.08910939168049513 business:0.07380644547946762 Young:0.03293497693993608 :0.566588559639227 +two:0.05420897588820456 had:0.04565491525913952 men.:0.03655721019666328 men:0.033816775846157596 :0.8297621228098351 +and:0.19253331096694729 of:0.15139585051840063 the:0.046265484680749785 lot:0.04383736127767997 :0.5659679925562224 +But:0.03156979807991694 of:0.01698410423854205 tion:0.013109204741242997 This:0.012394837389776769 :0.9259420555505212 +a:0.2865527248245835 the:0.28496346195100636 can:0.20130482261282925 The:0.09077063770406332 :0.13640835290751774 +property:0.0643778487339248 means:0.06368622552587548 head:0.049355092666900524 subject:0.04254853062651664 :0.7800323024467826 +hands:0.8051765888923528 possession:0.16640983086435843 not:0.006088829527114251 property:0.00037276695086911957 :0.021951983765305296 +that:0.9689765714477657 As:0.010608297671686872 that,:0.0011878158511389734 by:0.001090766669021689 :0.018136548360386737 +water.:0.10796935962798575 water:0.0038943192157631125 years.:0.0008810638709718799 the:0.0003308728225845164 :0.8869243844626947 +by:0.7419037407681893 in:0.09430184883022759 np:0.06998136986313133 up:0.04952789031261 for:0.044285150225841764 +as:0.9056004661871508 As:0.027811485342175073 and:0.01665932039392591 us:0.006113998883530413 :0.04381472919321793 +the:0.5394592085824585 his:0.14138351934321738 tho:0.06595242908391226 tbe:0.049727510154399135 :0.20347733283601274 +business.:0.059963193542279726 will,:0.00497230110663373 location:0.0045178509775476855 have:0.00370666660468238 :0.9268399877688563 +of:0.20908399827288293 the:0.10956821986070167 and:0.08145629941923234 in:0.03986868690356372 :0.5600227955436193 +of:0.2346888270733801 that:0.08170298458928475 the:0.07988228329636536 and:0.06966527091781988 :0.53406063412315 +the:0.3297673377440627 a:0.058742374449773066 be:0.054324044398431894 tho:0.022253149884120135 :0.5349130935236123 +the:0.30544459832742815 a:0.09651747051216267 their:0.09310038011340716 its:0.05006954318614706 :0.454868007860855 +the:0.32462439202444626 and:0.05320584350262793 Mr.:0.048389489813426355 to:0.0392689011371827 :0.5345113735223168 +along:0.22443673040552126 on:0.13540509070227694 in:0.10370340101479292 e:0.07925575645315833 :0.45719902142425034 +ward:0.010910088575872912 produced:0.008052924633835244 upon:0.006558494338084831 formed:0.004235996579623433 :0.9702424958725835 +and:0.22393869327302918 which:0.14925210169869935 that:0.1382201624203222 when:0.12856872562444346 :0.3600203169835059 +political:0.25894187956078313 or:0.030309838392409413 to:0.011706916629771729 and:0.009722630581976591 :0.6893187348350592 +New:0.9414258618759747 Now:0.010782952089640797 No:0.0002732171283582107 new:0.00017411618096739725 :0.04734385272505897 +west:0.15638564514426317 the:0.02396010502374866 new:0.01246116434794297 car:0.012339777496283443 :0.7948533079877619 +so:0.43038730056728436 and:0.22222489967696446 la:0.10392386102204199 with:0.037571460129699905 :0.20589247860400936 +street:0.016988329899837562 and:0.0162670164484919 ter:0.015438242612463954 tion,:0.014146290846612146 :0.9371601201925944 +pay:0.6398476970122842 go:0.11545105511325555 drop:0.0854724698872712 get:0.04512933878025376 :0.11409943920693517 +extending:0.014343205452948305 organization:0.006153006355588265 peace:0.004910869758160879 money:0.003967197581170497 :0.9706257208521323 +home,:0.13937714938676354 room:0.12727312038242214 home:0.09539149146547991 house:0.03688769721929883 :0.6010705415460357 +have:0.9028778144561598 afford:0.018965538947137622 walk:0.016474217251464512 need:0.013200000071932899 :0.04848242927330519 +and:0.3523947101391066 or:0.17453326200964342 in:0.07167584410485263 to:0.04333162340455108 :0.35806456034184625 +Indian:0.15885493917026708 land:0.07091928433581622 mountain:0.06530768375230614 said:0.02081693092037473 :0.6841011618212358 +to:0.3729275191959911 into:0.16888000474440024 over:0.1612726446510016 toward:0.13750266809680542 :0.15941716331180167 +money:0.05068831194474141 military:0.027867121114113894 court:0.002962694334051598 day.:0.0023934960901712543 :0.9160883765169219 +woman:0.8809530745470129 women:8.082976821943065e-05 wife:1.3461324456579891e-06 rank:1.2972980715701298e-06 :0.11896345225425056 +had:0.5738570551719862 has:0.12844357924319683 and:0.07135787825524818 He:0.025647422563735475 :0.20069406476583349 +of:0.18186417999097504 and:0.14675913363322995 to:0.09075697344063463 the:0.03807081085856516 :0.5425489020765951 +the:0.8004876238290277 an:0.05186956600533687 tho:0.04127655129916261 our:0.038665973201466364 :0.06770028566500634 +thence:0.3351580319978826 e:0.09760602833385822 the:0.03662133961704456 of:0.015472413114815495 :0.5151421869363992 +the:0.5062009504357761 his:0.09175138490703023 any:0.05450278040115161 one:0.0306808911379123 :0.31686399311812974 +he:0.3029890960656179 they:0.28347538773634595 I:0.16815876094401844 you:0.13375027811946033 we:0.11162647713455745 +out:0.035490235976534064 and:0.034029343842708996 tion:0.028681609623051916 of:0.02325076350983551 :0.8785480470478694 +St.:0.08302972450690456 take:0.0619570542241945 Co.:0.03944097458286154 the:0.007576207175066931 :0.8079960395109727 +to:0.7545139884834794 they:0.10217674766596267 and:0.09994782593397414 a:0.010371742391839932 :0.03298969552474382 +the:0.7202990883816582 a:0.12128782251908701 an:0.04310320986275378 recover:0.011321347698739305 :0.1039885315377616 +so:0.03624958316877448 interested:0.034286367074770445 than:0.010300380320904006 steady:0.008039162455068128 :0.9111245069804829 +says::0.11418963984013346 had:0.09371176534996196 and:0.05296383778861537 said,:0.045818746623419164 :0.6933160103978702 +number:0.04394305551672703 sort:0.014937912985964748 piece:0.012296440614506063 matter:0.012185969919250616 :0.9166366209635516 +American:0.9435882544994757 whole:0.002788631657939588 Southern:0.001190460240136666 colored:0.000981292943541871 :0.05145136065890612 +the:0.1643449972420078 and:0.12761435994868367 The:0.1181994833159008 of:0.08131308020249214 :0.5085280792909156 +ground:0.1374937663843813 at:0.12714839243335868 of:0.12638482847523597 lines:0.040653208324038945 :0.5683198043829851 +W:0.09259464212885628 J:0.07935917991312964 M:0.06608072962713243 E:0.05983038396844941 :0.7021350643624322 +saw:0.2550491968226148 certainly:0.224034602206284 when:0.19473808564408962 is:0.13885606733596242 :0.18732204799104918 +w:0.1666882741728992 and:0.06639627426604175 of:0.0473664589323532 the:0.026336399528647116 :0.6932125931000588 +the:0.49396786806782994 a:0.08572555719070095 to:0.05803429095114316 and:0.051966182046869445 :0.3103061017434566 +and:0.09609382781732984 of:0.09345768972444383 in:0.06420691090860838 tion,:0.05419181074392864 :0.6920497608056895 +list:0.6339994114504158 end:0.03129373979397804 line:0.02342158981285304 hours:0.01704007091035238 :0.2942451880324008 +the:0.4058441720501873 she:0.12937792322952832 he:0.12408991574826535 a:0.0789226137687676 :0.26176537520325144 +latter:0.15932816707000477 most:0.061245979036519876 true:0.05037211252525357 whole:0.037380900129919604 :0.6916728412383022 +in:0.592260757299048 of:0.24844722518748172 In:0.09374227830154083 to:0.019373349601390602 :0.046176389610538854 +of:0.0915294393990452 by:0.05602004308159775 and:0.05135101856979805 in:0.04402931758755314 :0.757070181362006 +the:0.9828047609403071 this:0.007976579109439743 tho:0.0024831896029174285 tbe:0.0024697209005906445 :0.004265749446745122 +at:0.6260880149333659 to:0.0994688684684463 At:0.0873686310562127 of:0.07976038115869093 :0.10731410438328416 +be:0.8823188416253095 he:0.03248025888527982 bo:0.021479118541310037 secure:0.010238707778402571 :0.05348307316969788 +and:0.15810431540482853 as:0.0631747922858288 or:0.03007753973666531 is:0.025976043442596353 :0.7226673091300811 +over:0.11618539675725238 and:0.07477472505665611 parallel:0.05219127972978848 feet:0.04264875549211902 :0.714199842964184 +of:0.13679250417272995 and:0.12150899015243043 or:0.05469543079156004 the:0.05242183735510114 :0.6345812375281784 +it:0.32955773596402976 he:0.24243302278734885 she:0.1455683573364828 they:0.11272768555079488 :0.1697131983613437 +of:0.4187082388928507 and:0.09913885630081472 in:0.06216059219806072 deep:0.04979261877933869 :0.3701996938289351 +of:0.5172354604252579 containing:0.07612157253829735 some:0.07452120099712296 to:0.06275555575233575 :0.2693662102869858 +day,:0.02781540081736859 most:0.02405935020674985 old:0.014941543587206929 the:0.014514451448900843 :0.9186692539397737 +is:0.48029541036056167 was:0.28371365961198813 Is:0.08011313208605235 has:0.02750734407920397 :0.1283704538621938 +its:0.3443637170127195 and:0.230205412091369 on:0.09440675795449018 to:0.08526637883772488 :0.2457577341036965 +have:0.3476247496661497 be:0.04892461491515358 take:0.030600265994719263 from:0.030440152866231446 :0.542410216557746 +on:0.5457641828183565 upon:0.3285246824304998 its:0.027061326148695372 either:0.014831787899626607 :0.0838180207028215 +the:0.7985294601743722 an:0.06413871609614735 their:0.04109816393157758 this:0.017489213442970275 :0.07874444635493257 +and:0.2327697369602596 to:0.11884314743508333 girl.:0.11285373553444718 boy.:0.0759025173909592 :0.45963086267925063 +they:0.23046189023569277 you:0.1598701220584342 he:0.13189956214869294 it:0.016626894488066046 :0.4611415310691142 +blood:0.09050797230779366 committee:0.019930533556524337 position:0.01701049339510971 President,:0.013366297297637986 :0.8591847034429343 +the:0.5732432072443732 this:0.029774255046222664 a:0.029247925441899025 to:0.023249269041224242 :0.3444853432262809 +made:0.48432626912419985 prove:0.07662716264081065 proved:0.04420063601006409 shown:0.025891302479913506 :0.36895462974501186 +I:0.271410396586039 of:0.1750611860041258 before:0.10462459966721792 was:0.09965219266058786 :0.34925162508202945 +situation:0.374554098620323 Is:0.1288773843258906 is:0.11010654136147205 was:0.10612187557879178 :0.2803401001135224 +end:0.13448495596897692 time:0.11401066747605063 head:0.09294750560879018 close:0.0647929161727973 :0.593763954773385 +will:0.596206221721663 of:0.14454292450391465 shall:0.04947751233092357 d:0.04735625088477374 :0.1624170905587252 +to:0.38133240127481277 him:0.07319139240972866 by:0.06244871123501833 her:0.047889034569681854 :0.4351384605107583 +hands:0.6473830210899357 habit:0.03371588970802862 possession:0.0288022675009643 management:0.01649432361476241 :0.2736044980863089 +of:0.08478604078422593 the:0.07158234873619745 The:0.05972587685806171 tho:0.04293085354357438 :0.7409748800779405 +be:0.7052411357346009 he:0.05080792938510745 bo:0.048280376566298126 find:0.029871715654989594 :0.16579884265900394 +the:0.9924152520229973 a:0.0012718200879883283 tho:0.000985731276190091 whose:0.0007406339401693923 :0.004586562672654882 +ground:0.12681212164484867 end:0.07905833867947025 east:0.022538449221673317 plant:0.018462599540955017 :0.7531284909130527 +as:0.023571386598985743 the:0.014919732186010734 Judge:0.012708149142254726 Mr.:0.010405284989026176 :0.9383954470837226 +and:0.2256810570812556 so:0.15595529968060654 the:0.09522557605449686 ally:0.086806041618329 :0.4363320255653119 +be:0.7266879886083812 bo:0.08330379584979118 not:0.06292327291388942 prove:0.04476524940376798 :0.08231969322417024 +north,:0.3973741859436343 north:0.11789711454835725 of:0.11664720561301686 south:0.03235834366914191 :0.33572315022584953 +of:0.8489462607866568 with:0.11101893460814924 re-:0.016519744448641807 which:0.008240776561853675 :0.015274283594698528 +mining:0.7314134557380758 the:0.028505063188269314 to:0.013487727496090554 of:0.009482999549185378 :0.2171107540283789 +over:0.1116102196116576 the:0.02925297654665161 in­:0.023248225435119563 any:0.01862707634990097 :0.8172615020566703 +is:0.5303168994907824 were:0.11181862170929165 was:0.038815803305470124 of:0.0317262038747164 :0.2873224716197395 +that:0.12959940913488882 as:0.11116652294583482 in:0.08212510912574911 so:0.057988574848178924 :0.6191203839453482 +to:0.43758314268957227 will:0.18891660102644448 may:0.11522436466684993 would:0.11509527018027345 :0.1431806214368599 +sales:0.12346706513061652 reports:0.024141647488623685 questions:0.00810217351686851 two:0.007194748117393918 :0.8370943657464973 +and:0.17739737561370375 steel:0.15024115655048426 or:0.11977825345245456 to:0.09349775287917723 :0.45908546150418017 +of:0.24027409290067983 in:0.23526577545476005 and:0.1046055820216689 to:0.09177318817716044 :0.32808136144573086 +in:0.29444686146029264 of:0.29191056798534404 with:0.19209344853276258 as:0.1144668784551419 into:0.10708224356645889 +and:0.08013517309016294 is:0.06967837684401267 church:0.050042663637423816 w:0.048443968745376924 :0.7516998176830237 +and:0.10398874956491469 the:0.09565726060284646 of:0.07480071470570078 to:0.041850342703376134 :0.6837029324231619 +feet:0.3944803610562808 and:0.04483084579551479 the:0.042025589360991523 of:0.026388189720390462 :0.4922750140668225 +will:0.4888558403715391 may:0.2792723782608828 shall:0.1721829440850823 should:0.037331318292553685 :0.02235751898994211 +there:0.3533608746550176 that:0.102050279685813 It:0.07616139815042813 it:0.06706230653719793 :0.4013651409715434 +all:0.13270551406217845 of:0.10286592406342637 the:0.07889037867068183 which:0.05142230930338409 :0.6341158739003293 +only:0.6490827960609391 Dr.:0.19044548476260045 the:0.07891492539428673 a:0.016480060386830177 :0.06507673339534356 +and:0.6424703251642029 to-day:0.03082609491511642 subject:0.006864115248449389 of:0.006621167522010963 :0.3132182971502203 +to:0.1027550713023817 of:0.01944484324686637 seeing:0.012594695758028367 in:0.009909992170818933 :0.8552953975219045 +fact:0.1884936072447021 belief:0.025355732148701654 idea:0.024980808116429665 ground:0.02071544705593226 :0.7404544054342341 +almost:0.2356093523826534 not:0.0589344233193105 having:0.047539158440597064 already:0.043085641629259035 :0.6148314242281799 +day:0.048570741390003155 tion:0.04798693628890268 line:0.033505989188522455 of:0.02128456471304258 :0.848651768419529 +extent:0.08068044261512602 strength:0.07448270913457686 best:0.05501021054544425 woman:0.03545764054249876 :0.7543689971623541 +This:0.07964430991739793 And:0.026245528212395442 and:0.012447845753378031 is:0.005872540975513136 :0.8757897751413154 +the:0.051037196649651034 and:0.03394541650547557 to:0.03288092959236278 of:0.019450264164455652 :0.862686193088055 +of:0.1887634559397669 and:0.1264702775343379 on:0.08370065344716911 but:0.07929533694391512 :0.521770276134811 +that:0.1565504427695066 it.:0.06533902081959427 your:0.06460810571650255 the:0.06023449766303437 :0.6532679330313622 +and:0.2050005913679659 that:0.12292536216504728 as:0.11057811382218116 when:0.11002037488272043 :0.45147555776208514 +and:0.08526538157943941 of:0.07938726641796989 the:0.05646605310412809 in:0.05123262219796949 :0.727648676700493 +officer:0.8963611721429772 person:0.009494821816561751 dollars:0.00654548171348846 property:0.004644710053509594 :0.08295381427346318 +and:0.17816103819236714 to:0.1575204093678886 in:0.10420102803709762 the:0.0882240288753401 :0.4718934955273067 +to:0.33324534438670655 will:0.21607936814941758 may:0.09336721109463575 should:0.07490520402941209 :0.2824028723398281 +of:0.31306996971070056 In:0.17303467341021242 in:0.10775711647209296 to:0.1048708134963087 :0.30126742691068525 +B:0.7187006765737445 ..:0.052525919955397175 J.:0.01672142331826466 Mr.:0.010710861091303767 :0.20134111906128974 +the:0.9216313932797338 a:0.011657449866534669 tho:0.005097339651806914 their:0.004757213217027213 :0.05685660398489741 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +the:0.23106239628235453 and:0.09863494042291379 to:0.07314982927855622 pre-:0.05563660607474388 :0.5415162279414315 +a:0.6532179311367953 the:0.20039076483581747 one:0.08078423204723757 n:0.042489051796683636 :0.023118020183465964 +tion:0.027404268733431096 ber:0.023434104088128467 number:0.021091297487639223 copy:0.016270405298064658 :0.9117999243927365 +came:0.07645149966137209 ordered:0.06939973839076094 suffered:0.062258848251836925 went:0.04627523206488104 :0.7456146816311491 +and:0.2179457457095022 he:0.14255332055738099 is:0.1051906766510777 are:0.08356749278362752 :0.45074276429841176 +of:0.30294527364384966 and:0.17265368498773978 in:0.10594158553554105 to:0.09130241527041279 :0.32715704056245676 +that:0.19225457272542645 the:0.16891805156127795 all:0.13657501325628216 in:0.08267916801961402 :0.4195731944373994 +the:0.2337309930167791 d:0.14717227551843748 expenses:0.08593360969745487 a:0.0350345282446368 :0.4981285935226917 +of:0.6493865571347542 and:0.08843952665149354 in:0.05201588023461059 to:0.03743178809106208 :0.17272624788807944 +said:0.11627501080914165 com­:0.07959311105238873 the:0.07374644781393307 great:0.040200766418066 :0.6901846639064706 +say:0.41910889595185574 show:0.061109543691300026 said:0.06021512556597979 hope:0.05224671829923451 :0.4073197164916298 +in:0.2564584853602725 at:0.23189873553391047 to:0.13329283983324836 from:0.12557186224815875 :0.2527780770244099 +charges:0.09497302087851033 issue:0.06349054267367674 people:0.060210639351099764 remains:0.03714277727497617 :0.744183019821737 +or:0.997735367979416 no:0.00043979266487528666 of:0.00020753674706999313 to:0.00010981627643994649 :0.001507486332198531 +by:0.9924238916559831 the:0.0035556367313853616 to:0.0018627023565043132 tho:0.0006694413685940432 :0.001488327887533382 +that:0.37626276256528207 at:0.12285961859702851 whether:0.07698593919071466 it:0.044189625645394935 :0.3797020540015799 +I:0.04288034903696377 and:0.036782745728435366 1:0.022998070393050702 Davis:0.01005820272863371 :0.8872806321129164 +addition:0.6545501387669914 order:0.16590436622352625 answer:0.074615612123153 regard:0.03801993682561339 :0.06690994606071597 +a:0.2797144396950723 the:0.21267352030679207 that:0.18415381105054002 The:0.08105846733802892 :0.2423997616095666 +and:0.18236543557696222 was:0.08345464625066046 but:0.058739515914359615 who:0.05383930825604745 :0.6216010940019701 +two:0.2710417745373867 the:0.2621229703512405 their:0.12504908425438163 four:0.10082823278560975 :0.24095793807138158 +I:0.21641762831217765 who:0.13614837992035414 which:0.11866433585160771 could:0.07448943723836073 :0.45428021867749957 +it:0.43592853957959415 It:0.22558738849621507 a:0.10989587781959016 being:0.10010192518413351 :0.1284862689204669 +of:0.14319725792172358 and:0.08445254017748648 in:0.04228993704041369 among:0.037307371910678386 :0.692752892949698 +and:0.7708857618569267 fifty:0.03880455803273356 dollars:0.02991517460584241 thousand:0.012816372501463044 :0.14757813300303435 +elected:0.11425500615567728 killed:0.034031217634849203 right:0.031854226310514384 more:0.027534017643453895 :0.7923255322555052 +to:0.0966733674758241 that:0.04387098455363895 any:0.004979194761423177 little:0.004362502282661911 :0.850113950926452 +to:0.3654532892432382 will:0.17233663942637295 would:0.14097049093802017 should:0.09103754322658825 :0.23020203716578033 +on:0.23813210328844173 at:0.2239436514549891 to:0.20328839977816926 of:0.1105464905480097 :0.22408935493039023 +year,:0.053284557531780304 part:0.009101389214902033 e:0.007154590436468113 ground:0.004155334675125192 :0.9263041281417244 +the:0.28406981860584307 a:0.09469807023479429 peculiar:0.06293689157694304 great:0.0628231088397338 :0.4954721107426858 +changes:0.21665832766144744 and:0.08031395417012331 tion:0.033217310844416946 but:0.022210887317826482 :0.6475995200061857 +and:0.33338457004223304 to:0.23966998458849625 with:0.15942860853578988 when:0.0805638186460499 :0.18695301818743082 +said:0.03947314458926231 the:0.01790573083392598 old:0.015907239980618156 present:0.014048600002742379 :0.9126652845934511 +great:0.13929673602130968 original:0.11308268636684422 field:0.041309931316886775 information:0.030594911388708325 :0.6757157349062509 +;:0.31550072950271507 to:0.011969145676677844 by:0.01020267481911326 desire:0.00913395339794265 :0.6531934966035511 +the:0.46122312046909986 which:0.10694129480975564 them:0.05188156845070488 said:0.04138023907124959 :0.3385737771991901 +the:0.07748060873632945 Government:0.04396955478190516 law,:0.028850927660427364 it,:0.02505764427045313 :0.8246412645508849 +large:0.037157709625620955 great:0.03684869058432466 good:0.035822932205480454 few:0.03067108502864337 :0.8594995825559306 +business.:0.2647641987597541 Rev.:0.12566823659146759 which:0.09517388727336584 the:0.0783237839391819 :0.4360698934362306 +the:0.5089275973037813 his:0.0438446907794598 a:0.03893889100930681 Mr.:0.03372097775365046 :0.3745678431538018 +in:0.5538509228207403 with:0.11597689964720546 a:0.09197998165034406 at:0.0887488522066315 :0.14944334367507872 +a:0.20503102495549022 was:0.10318927214805768 didn't:0.08480133754669861 the:0.07694918690848569 :0.5300291784412677 +I:0.23298528197325055 i:0.02484870467797471 as:0.024123238948622762 and:0.013170098104269298 :0.7048726762958826 +the:0.3027396930212738 and:0.14027250222577115 of:0.07664897374051126 The:0.07411065430343317 :0.40622817670901046 +no:0.7527743301804108 any:0.09586255025337743 be:0.0712202472087409 a:0.03929569875169438 :0.040847173605776436 +old:0.07362431538683402 low:0.013210544929937708 of:0.010192297340353488 American:0.009868811149202643 :0.8931040311936721 +of:0.71696516368085 in:0.07368041288324256 to:0.050843407168424844 on:0.04072905329636469 :0.11778196297111791 +ho:0.2969443791978605 They:0.22532740538039345 to:0.15078758148281307 from:0.13358606029766368 :0.19335457364126946 +to:0.3712419632777315 will:0.14543235381416028 can:0.13462036279707837 should:0.13042256911499409 :0.2182827509960357 +pieces:0.624866671780356 this:0.12095613018534425 the:0.11728640425847935 which:0.019124841809294888 :0.1177659519665255 +time:0.9697481819641347 end:0.003743890264699952 home:0.002108086214419796 request:0.0016302260306893335 :0.022769615526056247 +A:0.12461559955242707 P:0.12076576031002109 J:0.10590855323660038 E.:0.09647261742011541 :0.5522374694808359 +floor:0.2974688033089513 right:0.024798785082427215 head,:0.01657298447752022 train:0.009392190877272935 :0.6517672362538283 +one:0.11827819783957513 many:0.11175569197466954 some:0.09301688360638619 most:0.0686990944590204 :0.6082501321203487 +efforts:0.05459126240304096 changes:0.018525531510696597 powers:0.01718659080117817 men:0.01600689921678462 :0.8936897160682997 +and:0.10930250426360154 as:0.08454121539504167 enough:0.08419421278028853 you:0.07550185651079926 :0.6464602110502691 +the:0.4595746236131979 a:0.05252292128932855 his:0.035003836333894804 Van:0.02803199455707941 :0.42486662420649923 +of:0.4420084546043181 In:0.4219631470678475 and:0.028644071492146844 in:0.01113240865082926 :0.0962519181848583 +and:0.14960552514634415 to:0.09928959232778249 by:0.07205340849993133 in:0.0663410505501952 :0.6127104234757469 +was:0.3918828078585382 is:0.24727518447850313 and:0.21641276426800232 are:0.08553937951775331 :0.05888986387720307 +the:0.5501645992426838 their:0.06353421311642157 a:0.023730566550326935 help:0.015419504276615674 :0.3471511168139521 +much:0.009720238837165576 true,:0.008351414916754283 high:0.007282484652732355 far:0.006854431075662051 :0.9677914305176857 +door:0.6115764089806647 great:0.09478613451037289 small:0.047796415512724795 the:0.022214841983526076 :0.22362619901271144 +is:0.9919881820436101 be:0.004714595526560151 and:0.0011959367819085534 of:0.0001701566840236266 :0.0019311289638977193 +the:0.2686732245320233 no:0.06636675796918136 a:0.041397725379772134 that:0.036153989131466786 :0.5874083029875565 +a:0.27438594428606516 the:0.1793017979535781 his:0.07739159120222477 an:0.042330209177521075 :0.4265904573806109 +and:0.20153575722674852 of:0.17551427846987733 the:0.050970105501584734 in:0.031398912999870125 :0.5405809458019193 +are:0.14652313695972002 were:0.06765863110169783 have:0.06509188848686719 of:0.040697646249740586 :0.6800286972019745 +was:0.15805596301811817 had:0.15318357850558706 will:0.10319150908486809 must:0.10139046434524325 :0.48417848504618355 +not:0.8940416045533749 then,:0.04360979605890646 could:0.03735436302415123 only:0.00949242541817078 :0.015501810945396707 +represented:0.07837742044477913 enough:0.06817806808504821 as:0.04116623190243765 up:0.03282597843783656 :0.7794523011298984 +the:0.23103146250352066 and:0.0847745768434797 a:0.07143620996631857 to:0.06900149665445997 :0.5437562540322212 +Mr.:0.32273247582920106 of:0.17997465820439693 Dr.:0.05563666371435799 the:0.050416275063859685 :0.3912399271881843 +the:0.5406756586106649 a:0.3175526824898992 before:0.030574491836306342 an:0.01840322230379247 :0.09279394475933704 +of:0.5963300548798677 the:0.2315411376859961 Just:0.03898899887797621 ot:0.026176018773173392 :0.10696378978298643 +of:0.18972707348421525 better:0.13219281970489205 and:0.07333579853906312 the:0.04346354860925151 :0.5612807596625781 +to:0.4774266948781535 from:0.4314687290900951 by:0.0041597419824219205 of:0.003903020802138856 :0.0830418132471908 +made:0.42486088230219277 printed:0.27005608312278556 needed:0.13364255375242703 used:0.0592716713067471 :0.11216880951584755 +a:0.16170747881916459 no:0.05894832693182093 much:0.0501020119448346 the:0.04915600732106611 :0.6800861749831137 +to:0.828121461512935 of:0.10346290920335653 nor:0.015991897776706544 and:0.0157626583797171 :0.03666107312728494 +the:0.18872860995576377 of:0.09355821533343603 Mr.:0.05210354573853069 be:0.0471188090790034 :0.618490819893266 +said:0.03640851709335788 highest:0.02090535883074267 the:0.01652097301006149 most:0.011651239898123184 :0.9145139111677147 +described:0.39372593711793363 de-:0.18295364675877884 de¬:0.03855358835376283 such:0.0270187163624766 :0.35774811140704793 +murder:0.0041073109347940584 own:0.00020418919453581115 features:0.00017815357065503789 finest:0.00017804172672628745 :0.9953323045732889 +that:0.9524932090683234 after:0.0054889220667727195 hat:0.004630669258526387 was:0.003118391373755345 :0.03426880823262231 +was:0.6484804929751123 seems:0.2486678685674396 appeared:0.05149502341931293 ought:0.0077424654514887635 :0.04361414958664634 +on:0.155740730584471 a:0.11904648785970609 keep:0.08215431342065721 cover:0.048369671066094334 :0.5946887970690715 +from:0.42690299987457436 of:0.2495757754965847 in:0.11641065508676714 to:0.08349194460412587 :0.12361862493794805 +in:0.7209948877926312 of:0.1904814820605008 to:0.03194350716935197 side:0.023558878129155084 :0.0330212448483609 +an:0.1408601476320458 and:0.07679544692371264 of:0.051280528753274754 tho:0.04998176651095717 :0.6810821101800095 +and:0.15130233192429934 of:0.10735851956396188 ous:0.08701061361807204 in:0.04200264609306692 :0.6123258888005999 +to:0.3594819135260544 will:0.24120057096332104 should:0.11011628742424064 can:0.08489705741421419 :0.20430417067216977 +of:0.08402303903958441 few:0.048989881277194135 day:0.03790416467203605 term:0.03511001866413011 :0.7939728963470555 +and:0.3696647337846044 of:0.20227704229581228 to:0.13809231191388052 among:0.05820307351182104 :0.23176283849388177 +it:0.5104457314005535 there:0.14888354431971873 wheat:0.07392997843113956 he:0.058412689710825895 :0.20832805613776229 +acre:0.1951072179205084 day:0.08693336888819071 cent:0.04934108308564849 as:0.02253309709685585 :0.6460852330087966 +own:0.22902016063538716 the:0.026007127083613937 same:0.016063632171353516 an:0.015078535856044135 :0.7138305442536012 +but:0.6142170819063898 simply:0.2041253727187534 not:0.024521607533367688 or:0.02087944956855896 :0.1362564882729303 +thc:0.3452178650119146 the:0.08713294395878278 tho:0.05160607298131296 his:0.034500727944655016 :0.4815423901033346 +or:0.09695653116232522 is:0.04239975201086759 based:0.02034898054991863 party:0.019352762368159263 :0.8209419739087294 +and:0.6464031414860394 including:0.20406149362967055 although:0.07725426997790973 in:0.04336298515019909 :0.028918109756181223 +and:0.18419445364827924 to:0.11569304651637706 of:0.07563828996368664 the:0.04752988833671717 :0.57694432153494 +you:0.2599475084848836 are:0.2282781360908786 is:0.2007422433288933 they:0.11893947117068242 :0.19209264092466213 +same:0.28915580775771627 sale:0.048591547613413125 grade:0.032010465114019664 other:0.022415518943902004 :0.6078266605709489 +made.:0.004272462622296409 done.:0.0018367514978058475 offered:0.0015157001760669469 completed:0.0012916525687831223 :0.9910834331350477 +hard:0.15138145080200285 and:0.14738188589020992 to:0.07877466709025 sugar:0.07115622351460363 :0.5513057727029337 +the:0.49520863037630625 this:0.08822160522180462 its:0.05846904637350954 their:0.05294347504417321 :0.30515724298420627 +put:0.15702618101603608 been:0.12628708661292454 shot:0.06065429888939748 to:0.041210230271561156 :0.6148222032100807 +will:0.8087084626471802 are:0.11574276016219168 would:0.031666465044554 were:0.02535900044660321 shall:0.018523311699470947 +since:0.9959320410610886 of:0.0013366240149657515 ot:0.0009089743726386008 in:0.00090192038821808 :0.0009204401630889035 +are:0.3221815901651991 is:0.28080966441923094 be:0.1346867880780765 ami:0.0620384629233327 :0.20028349441416068 +and:0.7796767639061125 however,:0.070484600103359 just:0.06968099036770704 as:0.0468347970073564 long:0.033322848615465056 +a:0.4882277855390899 A:0.3764132688528255 the:0.0509844424185888 of:0.015124823351503417 :0.06924967983799236 +own:0.052417952814703045 the:0.019222419058115895 re-:0.009424857281535592 respective:0.008845940645399954 :0.9100888302002456 +pounds:0.517253457011621 How:0.028412960491419108 capacity:0.018555048581809553 quantity:0.00739022176497052 :0.42838831215017975 +same:0.040769608115571065 other:0.024079160127181864 consent:0.018994648429856948 to:0.01683088779502235 :0.8993256955323675 +the:0.9882164822710601 tho:0.00613063307730271 tbe:0.001973844365357179 this:0.0017339869650390299 :0.0019450533212410446 +report:0.05886996953214451 petition:0.04625193618568856 case:0.024465228903906965 bill:0.01795972394176809 :0.852453141436492 +the:0.9125443318063167 a:0.022709036396346822 Kansas:0.012855549344886651 this:0.012081583817299162 :0.03980949863515069 +a:0.3854936497057152 of:0.3226721017732544 the:0.1285527134117995 some:0.07179624406373361 :0.0914852910454972 +the:0.2585802901728223 put:0.11800788722836902 be:0.08933787627541728 bow:0.06331046807063542 :0.4707634782527561 +of:0.34034913778543685 in:0.1413730183007198 to:0.13059126467601057 and:0.11261192915359092 :0.2750746500842419 +the:0.28933543807373313 a:0.04231124141629985 other:0.031408523732366016 tho:0.01769723547999639 :0.6192475612976046 +no:0.39740122946611106 a:0.2626253911906797 any:0.12987662606597689 me:0.11005955583638305 over:0.10003719744084927 +extend:0.28688243852142115 make:0.205278015741273 hold:0.02431127051399548 follow:0.024213052925253876 :0.4593152222980566 +and:0.3519342491978161 had:0.20212582452937514 also:0.07239649509500007 was:0.0354620318738377 :0.33808139930397096 +kept:0.1744156495200484 they:0.06412491457993379 that:0.04851149569098761 the:0.04207260430929077 :0.6708753358997395 +,:0.011453919431339967 Mr:0.007613110035292087 and:0.002598820253432014 .:0.0024621838394210615 :0.9758719664405149 +like:0.5097957711362254 nervous:0.2253764861824339 hard:0.0741433859611296 than:0.04747103415925264 :0.14321332256095848 +of:0.9883902617710284 ot:0.0025747997189773295 from:0.0024359344671804456 for:0.0012790420573825557 :0.0053199619854312746 +go:0.02502122835476901 covered:0.01060066932922625 all:0.007338572015634993 extend:0.006586267509609206 :0.9504532627907607 +during:0.7367282006330037 in:0.07753948086111351 of:0.040951369241162563 by:0.0254612711877982 :0.11931967807692201 +the:0.2507823742794241 Another:0.23862072286755975 This:0.11354719902836707 this:0.0748220502009539 :0.32222765362369515 +the:0.15788062544398437 a:0.0871510941536349 do:0.056444603477094075 Mr.:0.05617376003343762 :0.642349916891849 +his:0.29801439059425266 be:0.22162443022260306 in:0.04984485807617832 il:0.007413393422159198 :0.42310292768480673 +to:0.9741764453097381 would:0.015771303814037945 will:0.0033484473152220807 so:0.0029554635372376252 :0.003748340023764302 +of:0.6659658516146532 the:0.11056050622939462 and:0.052651658310702294 as:0.024523135017368185 :0.14629884882788186 +was:0.2632077081601765 suddenly:0.22372285598024122 is:0.16306828030238968 has:0.13073306516535407 :0.21926809039183853 +education:0.07532248400210677 same:0.03304514594284012 •:0.02676249525247664 said:0.016769312817032634 :0.848100561985544 +10:0.1613505273505642 ten:0.1362320259096108 20:0.08987996108028923 fifteen:0.08872886470722835 :0.5238086209523073 +and:0.9126808495096607 aid:0.039594802712187356 west:0.006655575298507466 East:0.005973880344389419 :0.0350948921352552 +hundred:0.601877271739545 14:0.0015987968046416623 *:0.0015021689684070563 the:0.0010466992867568554 :0.3939750632006494 +mere:0.17563367772689428 small:0.10126260187409036 wise:0.06732087157437666 patient:0.06324758120211525 :0.5925352676225235 +of:0.16630473464895373 or:0.09092003941009949 the:0.06926535588423843 course,:0.05779787733396856 :0.6157119927227399 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +fine:0.5506498127899985 sum:0.30691922702973784 fee:0.10355675754454213 tax:0.028242854164025284 :0.010631348471696493 +the:0.7384277933939369 a:0.015933487963664988 tho:0.01437034968757931 his:0.011085984144230418 :0.2201823848105884 +out.:0.05754381228842619 of:0.015910449441146925 however,:0.0072910647113288134 hand.:0.0072544886440630615 :0.9120001849150349 +three:0.15974125515840382 12:0.07624653196481575 four:0.07547662331726619 six:0.05803816485461778 :0.6304974247048966 +and:0.10448763388849637 of:0.09889700880909981 the:0.07967538670399375 to:0.03378491158470073 :0.6831550590137093 +James:0.6423088849428616 Mrs.:0.08277591882146142 and:0.07117918547661488 Dr.:0.05612980521585948 :0.1476062055432027 +the:0.06427995737507597 a:0.034075721053951985 .:0.022783273193354624 of:0.018875099152498586 :0.8599859492251191 +and:0.1554632131455263 which:0.1449910524965132 it:0.08194177198167339 they:0.06558601568274514 :0.5520179466935419 +one:0.8658586126318866 cured:0.1211178141326418 because:0.0006492890040832309 cut:0.00045868221136030716 :0.011915602020028199 +and:0.4370605594600098 that:0.1196653331310647 ing:0.11820926004384137 in:0.0669123833897906 :0.25815246397529346 +them:0.3666860893652521 money:0.19752841602818855 it:0.09991089831835306 grain:0.03378004855439725 :0.30209454773380906 +to:0.46756155802204996 will:0.31213136762466215 shall:0.15208610276067508 should:0.02463020405517636 :0.04359076753743651 +and:0.17493821886544642 to:0.14716940332634337 we:0.04853675351675225 of:0.04238500799880085 :0.586970616292657 +less:0.20410913178655932 the:0.0682853712609321 good:0.06512334244034726 directed:0.050153596935705216 :0.6123285575764561 +their:0.5431342303782086 our:0.13786683649805992 his:0.1020046947273054 its:0.08362056149494702 :0.13337367690147903 +a:0.44257263884257886 the:0.2166619679089696 and:0.07224830781789415 A:0.029081217663788933 :0.23943586776676848 +and:0.009715795500154613 that:0.00935304215940011 the:0.008874434777168115 of:0.006246843500442486 :0.9658098840628347 +the:0.3943971421065633 of:0.18664554195095676 from:0.11572189607124574 he:0.09694619802356222 :0.20628922184767198 +most:0.018369557658137237 same:0.016089392893030685 the:0.0136498285780756 of:0.009980452945863137 :0.9419107679248936 +total:0.4604605101764356 body:0.07306392667073448 city:0.07167200901739672 State:0.03518249804855104 :0.35962105608688233 +be:0.26191189877584353 get:0.1555061047613882 find:0.06074273488220472 help:0.05610923088183835 :0.46573003069872526 +of:0.2731948821853083 and:0.08414356682595672 the:0.0432741370354266 to:0.028178578131228746 :0.5712088358220798 +been:0.4880163523380117 a:0.09724568112199625 the:0.07594057987671625 their:0.03869764037044997 :0.3000997462928256 +the:0.8774855520967411 those:0.03465183585783952 his:0.021162005983965584 Democratic:0.013859250968449758 :0.052841355093003944 +against:0.7261707699920107 by:0.05134660623124501 to:0.0408721838597061 with:0.02716095778585826 :0.15444948213118007 +His:0.3089033524248392 his:0.18659641374824307 my:0.13236510991360226 the:0.08300392048328185 :0.28913120343003357 +center:0.5232706424305726 air:0.032862549804295385 door:0.016931689352061026 floor:0.015822556736619788 :0.4111125616764513 +end:0.12437903447292603 head:0.08370658570635965 foot:0.06129051669251565 bottom:0.05339669188255262 :0.677227171245646 +all:0.18208783239135032 getting:0.09355131503241425 of:0.03575832548210664 this,:0.022288230390785185 :0.6663142967033434 +owners:0.2502849316034275 children:0.03982227029585197 education:0.01169523073831386 presence:0.007663801909657083 :0.6905337654527496 +and:0.42601244460616094 running:0.1656802958914213 for:0.09090402820568985 by:0.03271032734835864 :0.2846929039483693 +the:0.47920187945925996 a:0.06451274856154562 tho:0.03581037115416418 their:0.02405279936268474 :0.3964222014623453 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +they:0.4737695764269681 to:0.32101893169413814 have:0.0972819195512325 we:0.056745703116910524 I:0.05118386921075077 +case:0.1778717997891668 search:0.11203831819256035 favor:0.09462861544257156 charge:0.08267336258257882 :0.5327879039931225 +and:0.08896823235245636 the:0.058430233354086834 of:0.05121994028511942 at:0.04676125723101624 :0.7546203367773212 +the:0.5444015598101604 tho:0.05312714663344784 June:0.04146472953780798 a:0.03536913689189932 :0.3256374271266845 +all:0.7171838083589116 the:0.030237964217313427 of:0.01758267719904358 making:0.01579600372531396 :0.2191995464994174 +and:0.29291606410525345 nothing:0.11576323937786405 are:0.09642036301636714 Not:0.0950890725607722 :0.39981126093974323 +spoke:0.1249780857360763 and:0.05398189555890242 sight:0.035404571129591014 of:0.03194551100142938 :0.7536899365740009 +;:0.027238115085575942 nature:0.01760951026643851 of:0.01161292014538574 them,:0.010503684390869121 :0.9330357701117307 +the:0.37284691372093975 a:0.09799617103407487 his:0.029946160580342083 tho:0.0208462750540362 :0.47836447961060713 +of:0.2644793921858194 and:0.1632956249697698 by:0.15707365423713765 in:0.14417463739309128 :0.2709766912141817 +sitting:0.008332323980686776 all:0.005555640550782914 and:0.005533678571186136 stand:0.005502353682625857 :0.9750760032147183 +fought:0.4421489918957746 and:0.19690423743062793 was:0.07144432518973205 reached:0.06445699335791909 :0.22504545212594643 +country:0.028913502149632394 fish:0.025479676070322713 letter:0.019192730264020436 bottle:0.018342441694596513 :0.9080716498214281 +of:0.21076006186499277 and:0.11189395556560534 the:0.069756481535922 was:0.06434747432058614 :0.5432420267128938 +a:0.21847182692214412 the:0.12459600316358856 every:0.029631896579459777 New:0.026834992882415063 :0.6004652804523927 +that:0.41852774400438897 which:0.15074816540381153 when:0.0737651502516299 and:0.06986904213241037 :0.2870898982077592 +front:0.03351473073924802 bonds:0.024152151213399746 children:0.02228726448406377 stocks:0.01795966812373187 :0.9020861854395567 +native:0.37085374157962836 stock:0.13910116440939732 ball:0.06463961185316382 number:0.029074266075457503 :0.396331216082353 +and:0.09289094130394711 of:0.07972424900925228 the:0.06672537847722361 to:0.03271779909049193 :0.7279416321190851 +of:0.7748036178298578 to:0.1602170922279383 and:0.0060285271185351215 the:0.004029619217034417 :0.05492114360663415 +year:0.9938539392619524 years:0.0009353323006916346 months:7.560820900377686e-05 days:2.1724218808830725e-05 :0.005113396009543443 +a:0.6886346164864445 the:0.08686793434738142 to:0.03261472919236517 n:0.014718206794697356 :0.17716451317911167 +the:0.21634944877048704 a:0.07890770203810324 their:0.028261447167820274 other:0.025176861882076983 :0.6513045401415125 +the:0.2997090534018963 The:0.16867871343484303 at:0.081791459510969 ing:0.06127837765249675 :0.38854239599979484 +good:0.037840060348974254 big:0.012755698401107721 on:0.006743366148891853 general:0.0032797765254220126 :0.9393810985756043 +hi:0.03172107824797963 interest,:0.001469128423802692 life,:0.0011485518944977441 election,:0.0010812938071172434 :0.9645799476266028 +individual:0.10009619572879026 gold:0.017936137296832678 owner:0.010482164121229135 patient:0.007538483692644633 :0.8639470191605033 +the:0.6476308653205052 his:0.09429923070482696 tho:0.08066984861761092 bis:0.06165895765734249 :0.11574109769971445 +glass:0.019468771334948544 up:0.014885630823198751 was:0.013586331710910308 were:0.012805132277597142 :0.9392541338533452 +the:0.7468239757232967 Republican:0.10440645895797304 this:0.06263397647234907 its:0.02714616921542966 :0.05898941963095131 +went:0.2449913202138016 said:0.12790792733604434 attempted:0.09355195332404229 began:0.089172282890245 :0.44437651623586677 +us:0.04774524609218125 the:0.04263254979031378 them:0.016060157800960834 our:0.008742224025761634 :0.8848198222907825 +at:0.6898206855034618 after:0.25644853046467553 nt:0.00884717734487822 about:0.007309223998652992 :0.0375743826883317 +the:0.0024195524593853294 turned:0.0021045635966255626 port:0.00061689785100782 of:0.0004459476182528972 :0.9944130384747283 +to:0.7819556160293044 let:0.012103096070678917 would:0.011191948756946447 and:0.010485831591510389 :0.1842635075515599 +country:0.033833367622721724 people:0.027632985215677607 State:0.02703054796671328 Union:0.02481691354309384 :0.8866861856517936 +many:0.17552918665579376 one:0.16823167117551688 some:0.12096146365370938 most:0.10701704666968964 :0.4282606318452903 +of:0.17849539798986605 other:0.12313223934573461 hundred:0.03869743368120918 thousand:0.03828232151845075 :0.6213926074647393 +E.:0.27435495853830083 W.:0.25342467790507883 H.:0.06248931583474963 S.:0.04751062998821821 :0.3622204177336526 +in:0.1506259864657234 made:0.09501571126052968 make:0.07929531930874283 gave:0.05849159519639929 :0.6165713877686049 +Mexico:0.047810153513422625 Columbia,:0.018277203818126843 the:0.010898185363519408 New:0.009812727388251858 :0.9132017299166795 +not:0.3407337363390121 certainly:0.2729301086096047 under:0.14795660487465234 in:0.08671432348106242 :0.15166522669566831 +is:0.10043569576302236 feature:0.09779535773900869 that:0.08200367701053757 virtue:0.062444947700164496 :0.657320321787267 +for:0.3999142622418819 have:0.2238215988397227 has:0.18819735920468825 the:0.08525494788431215 :0.10281183182939492 +more:0.29035322286703624 the:0.22486356357348875 very:0.12958602665767135 how:0.06023095310101758 :0.29496623380078607 +ask:0.40665637300749596 death,:0.18126707830379574 to:0.16925385783957864 tell:0.09582043759601802 :0.14700225325311175 +and:0.1977514673837353 I:0.05836727483096757 A:0.05259974206473969 Will:0.04493378188227471 :0.6463477338382827 +away.:0.5488267564989731 from:0.04081183937448018 of:0.02414175451546832 off.:0.01256226621620465 :0.37365738339487375 +engaged:0.2839283210076011 the:0.14192675644223338 a:0.12730754202658817 n:0.10473570460139257 :0.3421016759221848 +would:0.26204261647179544 will:0.25880581177435613 could:0.11564488287298624 was:0.0815781566487834 :0.28192853223207875 +to:0.008950136961054289 by:0.003148614270702343 in:0.0021071762533226607 of:0.0020165204015634287 :0.983777552113357 +and:0.8113879719806847 at:0.017238761521842713 No.:0.010223404324479749 to:0.006654538219203752 :0.15449532395378907 +to:0.25992826387815016 between:0.18844981334547858 in:0.15739463406177995 how:0.1335117869034833 :0.26071550181110803 +to:0.7558014605736073 the:0.03998526851263474 both:0.03445903472524612 and:0.023708438791482756 :0.14604579739702903 +them:0.05267741400734935 and:0.046212527835792015 material:0.029230373415181525 hands:0.01389775180569966 :0.8579819329359775 +that:0.6663700544005199 the:0.15250232349930512 tbe:0.06278971517078692 which:0.020048993624391283 :0.0982889133049968 +the:0.5235159694048136 a:0.3166285118075463 tho:0.03726306900337586 his:0.012519487588191365 :0.11007296219607292 +some:0.6645271928611665 the:0.18527630055189065 6:0.021730974049255013 3:0.02149348340260006 :0.10697204913508787 +the:0.4391858766754946 tho:0.10339731110156301 about:0.07827203459306567 this:0.05181545479274777 :0.3273293228371289 +and:0.1542091928804264 the:0.09904691440297873 of:0.09692923160684758 to:0.04827678229655511 :0.6015378788131923 +the:0.3147501676761664 his:0.09508083441748584 private:0.05293493965969627 a:0.04666154790203571 :0.49057251034461574 +hold:0.2449877498716254 lead:0.03361825888263323 go:0.030725232695148527 bring:0.026524274545955434 :0.6641444840046374 +of:0.22692823559073444 and:0.1553415416547696 in:0.0691651276524356 to:0.06273523532870948 :0.4858298597733509 +also:0.3486609008972118 not:0.2830315149794151 still:0.10633374859257724 ever:0.03365166207858981 :0.2283221734522062 +his:0.24500998203083094 that:0.13017938561428158 such:0.029468575378844848 their:0.01947999101675303 :0.5758620659592895 +upon:0.6316014988874974 on:0.24320694335515458 from:0.043624138846015605 of:0.03165987279973802 :0.04990754611159434 +a:0.41927491658496807 the:0.21847398125664902 to:0.05742646420553379 an:0.044753392349358184 :0.260071245603491 +and:0.8884687579973547 he:0.020089232865050755 He:0.01941119889257709 aud:0.013994266564237866 :0.05803654368077964 +the:0.2705696819657175 we:0.16398284024670956 he:0.16387739435739987 I:0.1621344018485004 :0.23943568158167267 +lines:0.2986631433748471 army:0.13810528097701566 character:0.06800927347266175 value:0.06190424292708418 :0.4333180592483913 +my:0.23080884902220197 Our:0.1289780772578801 the:0.12724710183264562 for:0.08187394572591479 :0.43109202616135744 +be:0.9016937861404278 bo:0.024224432084648216 ba:0.02200144902286668 he:0.018023520731280548 :0.03405681202077675 +is:0.49869208906893614 was:0.2701438032148996 Is:0.005810993701643198 with:0.002377489490686863 :0.2229756245238342 +not:0.7834263648157205 saving:0.07553437043818767 or:0.009888201391029548 a:0.005524514175094912 :0.12562654917996738 +of:0.436971255802577 to:0.21143467194889035 by:0.0890469109864067 the:0.08050428638476323 :0.18204287487736262 +and:0.04932420412628028 shall:0.04457104185083573 will:0.0269433399676271 of:0.022064792903285533 :0.8570966211519714 +single:0.1373973742628345 treasury:0.06875556589266484 uot:0.06042933089037145 best:0.06011046501431834 :0.6733072639398109 +and:0.1105793676423998 him:0.06217526634779533 the:0.0596023448997759 yet:0.030266338550875214 :0.7373766825591536 +to:0.6062598729682016 can:0.37857353329721105 in:0.009316765448334872 with:0.003156362421675687 on:0.0026934658645768853 +to:0.7649977364370514 of:0.1864664329455925 in:0.029888669774752748 and:0.010409331775846485 for:0.008237829066756977 +general:0.06581602807267459 physical:0.04182122328215586 mental:0.03898747151029707 kind:0.038853839299555215 :0.8145214378353173 +is:0.5218143563304876 was:0.22066075081188094 becomes:0.08657674760271612 went:0.039164663548083095 :0.13178348170683213 +of:0.8165999842147534 not:0.07544299113561262 equally:0.049511118393859785 such:0.023692987271713102 :0.03475291898406104 +an:0.8528861321117674 the:0.08392255367939677 no:0.023647288065580148 every:0.017122593246794396 :0.022421432896461046 +which:0.4673251707368204 and:0.2849763032539605 had:0.1157902865092956 has:0.038423071069134035 :0.09348516843078951 +way:0.01787704687377888 presence:0.012482356115803558 work:0.012445074726782518 plenty:0.011719649050876888 :0.9454758732327582 +and:0.12145522685745547 to:0.09528648783584519 the:0.09418417733678949 of:0.08045439905990205 :0.6086197089100078 +and:0.10197030854438956 of:0.08705327867170154 the:0.06966241862549706 to:0.03429951302239613 :0.7070144811360156 +Do:0.12974485151547924 Will:0.03583298817900608 did:0.03233902011016234 If:0.031468265090076226 :0.7706148751052763 +charged:0.9645259230237474 to:0.008411344935242433 spent:0.002463506357535423 recorded:0.000787363169460118 :0.023811862514014615 +is:0.355167862603785 had:0.2154120136416019 are:0.16776772550236552 have:0.1299396394801465 :0.13171275877210128 +to:0.04818702045241472 supreme:0.046889846171680835 great:0.041120643983949774 of:0.03346485296196104 :0.8303376364299937 +and:0.00037615743617845263 government.:0.0002559957338870253 of:0.000149117226350224 ship:0.00013796034855852906 :0.9990807692550256 +to:0.19411545987052942 what:0.13476162072378756 which:0.11387993223031975 as:0.03232364155445282 :0.5249193456209105 +to:0.03385967839287966 of:0.023477291003396464 taxes:0.012156171545440414 in:0.010178270634144247 :0.9203285884241391 +out:0.06318440795694051 one:0.05173000627678989 and:0.04209465509057631 affairs:0.029229559068524147 :0.8137613716071691 +be:0.8744832406796443 bo:0.03070839488916978 too:0.012722090176421416 he:0.00981427102787564 :0.07227200322688879 +and:0.11441920254646892 citizens:0.02655494469710709 ties:0.02328845052532968 size:0.01808160618767087 :0.8176557960434234 +school:0.17157188956051053 to:0.1431752210811162 sense:0.05967150626811302 and:0.03684420156430005 :0.5887371815259601 +sure:0.1444722160523481 whole:0.09443357146471781 good:0.07071565764364869 little:0.07066729983073726 :0.6197112550085483 +a:0.18108581317257846 the:0.10531135527997383 not:0.09049970229915871 now:0.06989329938990459 :0.5532098298583844 +believe:0.8467677167286155 send:0.012553005533578378 know:0.006029840812354307 wish:0.0025092346350090605 :0.1321402022904428 +with:0.2603134607241717 of:0.2445222380990602 to:0.15712088220436293 for:0.14269002144034604 :0.1953533975320591 +of:0.6078992815969674 that:0.17705738403668494 to:0.056252572325937895 is:0.014731472611869575 :0.14405928942854038 +in:0.49328696643631514 In:0.18982976381364092 of:0.10513099117623374 iu:0.09542599749431319 :0.11632628107949701 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +h:0.21135276158126814 dress:0.20357316683089935 they:0.05492068218729314 has:0.05149491520016156 :0.4786584742003779 +mo:0.21337717833249376 left:0.05494168157064712 there:0.05290665211477713 lay:0.04208456368122985 :0.6366899243008521 +The:0.44503403116272683 the:0.3376880399263602 Tbe:0.04711200745164807 with:0.016615620579808976 :0.153550300879456 +and:0.06740156295118141 where:0.060020176891905114 land,:0.039004015165346455 yesterday:0.037824855314364234 :0.7957493896772029 +and:0.3579276567642153 he:0.12367682703519095 be:0.08202130473824451 were:0.06815868094697704 :0.36821553051537215 +to:0.4468768981176709 such:0.10387578937415085 the:0.08649551534551404 longer:0.0664686936876088 :0.2962831034750556 +returned:0.32620495324857945 seized:0.18069034346496 her:0.01926978119216228 it:0.019224593718969722 :0.4546103283753286 +wonderful:0.09997490179765886 old:0.08974216113330383 own:0.03435565126893618 home:0.033859126120482086 :0.7420681596796189 +the:0.02888164652003533 balance:0.015188382584415804 most:0.014766891693738063 early:0.014152319583738245 :0.9270107596180727 +after:0.5468919957506937 to:0.06814166404824182 and:0.03257256641007093 the:0.02032350810049411 :0.33207026569049947 +who:0.14534828162813682 burned:0.03521994933393955 informed:0.011515937236829627 States:0.010165025272820864 :0.7977508065282731 +and:0.08728085760784463 also:0.024610826672743835 it.:0.017479137312826264 day.:0.015412445103524484 :0.8552167333030608 +along:0.4196134617310844 with:0.35755202091331206 on:0.12339318762956594 leaving:0.04967669010120471 :0.049764639624832706 +but:0.2847203166893284 on:0.23671280783042073 and:0.22013150262627032 for:0.09194574790907778 :0.1664896249449028 +direction:0.20307928680291107 middle:0.05772569484597036 office:0.05343245183054299 name:0.04932685113044636 :0.6364357153901291 +and:0.12001930887094277 ly:0.09632060373686327 directly:0.03167690428379215 are:0.02438161314367707 :0.7276015699647247 +his:0.40807972134678744 a:0.3133338705342455 the:0.0951962892713895 on:0.063101010152426 :0.12028910869515169 +the:0.7379926915165149 a:0.08522927526754079 tho:0.0338411227009077 his:0.03256938048749353 :0.110367530027543 +said:0.026317291700082537 public:0.018747504731618105 same:0.015571789971071991 the:0.012407060414253612 :0.9269563531829735 +and:0.6722074712988847 of:0.09612616588420975 to:0.06142941855505183 the:0.053990393082942935 :0.11624655117891089 +W.:0.09489818012463302 H.:0.022658754715609474 S.:0.018561529548767393 and:0.01763342917715918 :0.8462481064338311 +or:0.03366392364111605 and:0.021139489129445178 Johnson,:0.01014495039950453 Smith,:0.006004753849345513 :0.9290468829805887 +the:0.6064793254819157 a:0.14706298466385978 any:0.1344769391403151 plain:0.056547261739193125 our:0.055433488974716234 +the:0.038872059243480216 power:0.036573775548784306 others:0.03271490505279979 located:0.03147725270367779 :0.860362007451258 +and:0.1105317656303673 providing:0.06057980265452537 funds:0.02550133055556324 or:0.017204724456909265 :0.7861823767026347 +upon:0.25110903275937013 house.:0.18485634503898685 of:0.012104728935057294 in:0.007176922279702102 :0.5447529709868837 +of:0.27786772219995776 and:0.10414408716348611 the:0.05000516336431805 to:0.027542475589897024 :0.5404405516823411 +no:0.31042358063107583 a:0.30646820493899307 in:0.043910377590185415 to:0.04321889620476568 :0.29597894063498 +township:0.939378245476143 Township:0.023588476871677956 square:0.018336803590268517 number:0.011657858201153 section:0.0070386158607574955 +brought:0.17929097384706724 entitled:0.10040873538933023 changed:0.07694857496885203 used:0.05463298226993656 :0.5887187335248139 +the:0.28115504420570286 she:0.19014489774955307 he:0.07325563016903634 a:0.04421711430218784 :0.41122731357351994 +road:0.16647901337964924 with:0.08174013010511198 grounds:0.065725330066187 of:0.020324737407990363 :0.6657307890410615 +of:0.38520299006270736 the:0.2325558611103242 true:0.07152899634014179 an:0.06750639628764833 :0.2432057561991783 +use:0.02519638549403829 time:0.01735779646890243 efforts:0.016848888068813305 good:0.01556054560390277 :0.9250363843643431 +hundred:0.9212147161889529 dollar:0.03352275466649906 thousand:0.0017321982598010141 dollars:0.0012638106607525358 :0.04226652022399449 +hope:0.038404408354740224 plans:0.021724707751018535 kinds:0.021547564548675156 the:0.016101185297715013 :0.9022221340478511 +on:0.25542608927352706 1:0.10414021019711536 is:0.09346503977766525 all:0.05597837693722722 :0.49099028381446513 +medicine:0.1617334793224408 some:0.11912740141381137 of:0.06711210525695332 claims:0.04633635634440817 :0.6056906576623864 +the:0.0883140614030192 boy.:0.04862792447919741 girl.:0.042756897139728904 said:0.040961090980515535 :0.7793400259975389 +between:0.1384703088843622 tbe:0.0772235514903099 the:0.06532848359594738 these:0.04113209574017217 :0.6778455602892083 +principles:0.036631344666731507 office:0.030465555464031038 convention:0.025193816903085888 House,:0.018930899220217224 :0.8887783837459344 +opposite:0.3482833518982821 east:0.24178747633561065 south:0.1490424034850206 north:0.1264046267584622 :0.13448214152262453 +a:0.268736843332433 some:0.15339804634876236 his:0.12052226312316038 the:0.10280116595336243 :0.35454168124228197 +of:0.3067042069170819 and:0.09952339882672329 the:0.04775588862839224 was:0.042084644369163135 :0.5039318612586396 +the:0.7365310813993492 see:0.024507995108103264 a:0.013150598117665356 make:0.009319537441477703 :0.21649078793340434 +and:0.11210528730478322 to:0.11116784026618017 the:0.061470897862857705 of:0.04757940540515319 :0.6676765691610256 +the:0.7515942105709789 a:0.06005092171751434 tho:0.032526325211293956 tbe:0.016213916569858752 :0.13961462593035417 +no:0.9995966132088139 such:0.00017245374013519088 the:7.021363309989888e-05 every:5.702679778224357e-05 :0.00010369262016885202 +was:0.1852431837569301 has:0.14028518702319512 would:0.10856880047905051 is:0.1022756828306586 :0.46362714591016546 +many:0.21845174527196007 far:0.11448188395499576 to:0.07694678732443276 that:0.06830625644737998 :0.5218133270012315 +As:0.1068985606493364 road:0.0283966489878796 equal:0.013040848294602506 and:0.010665928330356258 :0.8409980137378252 +the:0.6270944178285542 said:0.09483384586992817 with:0.04728145903140365 a:0.03868710227664278 :0.19210317499347118 +the:0.010679815964791076 The:0.0014497641943111966 and:0.0011977866012988809 Mr.:0.0009053319466286293 :0.9857673012929702 +would:0.7231351563519894 will:0.18365807410698218 always:0.029414380403930167 should:0.020593277632039792 :0.04319911150505831 +and:0.4376518093991396 simple:0.11582449254686894 rich:0.017311146900606065 the:0.0075074397394978495 :0.42170511141388767 +the:0.5007892118494924 tho:0.15368494648389888 them:0.10582986093156602 those:0.07575901982142068 :0.16393696091362195 +and:0.1259856939582873 to:0.06565750072261937 of:0.05494549824234565 in:0.05289910364563489 :0.7005122034311128 +out:0.2407473936801748 without:0.2396942600266809 and:0.22713205766611524 to:0.10449143191152233 :0.18793485671550655 +20:0.3778857351444358 fifteen:0.26852408931144944 three:0.1069314813015839 10:0.09277119676667367 :0.15388749747585734 +the:0.24851070228716382 This:0.029107077370282414 We:0.02903186993652371 The:0.02798484728717236 :0.6653655031188579 +home:0.1558433617133387 running:0.08109951488903012 street:0.0529092276849779 character:0.03916881529394773 :0.6709790804187056 +States:0.834613120184596 States,:0.00034181022319153053 State:0.0003296903146580172 the:0.00017036643493342508 :0.16454501284262094 +and:0.14187130665754016 to:0.07079383589335343 the:0.04092084460152613 of:0.04084676630400058 :0.7055672465435796 +not,:0.1098331836581307 com¬:0.10299310721919683 a:0.09130730368919433 to:0.06407016712234219 :0.631796238311136 +just:0.21961139965979157 and:0.16417696288242928 but:0.04937898999287848 news:0.02996029025926102 :0.5368723572056395 +of:0.4205964450642171 and:0.11315826997794157 for:0.10429354812924577 with:0.0629575230157098 :0.2989942138128859 +and:0.19866003066849253 of:0.057348770068792125 the:0.05676101530559757 The:0.04887273689146122 :0.6383574470656564 +an-:0.03298482676111689 action:0.02270936725961382 easy:0.016887674662497888 old:0.014187826693016593 :0.913230304623755 +an:0.7399343138623853 An:0.09148004096247943 one:0.05478757990934428 the:0.0458796043344918 :0.06791846093129923 +about:0.4041950650097215 only:0.2780919018012468 south:0.0789158123702506 containing:0.07358235576462359 :0.16521486505415744 +send:0.07088967305775111 ments:0.056396779312871695 bounded:0.046543607446806814 ;:0.024704247209277618 :0.8014656929732927 +on:0.3015742478869499 of:0.12957878360031613 in:0.08527241103218842 have:0.07714564515516666 :0.4064289123253789 +and:0.12205221173410369 of:0.10473569280016584 to:0.08719987222403916 the:0.043432315147307644 :0.6425799080943838 +the:0.35682393357929054 very:0.19539215943906374 at:0.06776148010746375 of:0.028446936601833058 :0.35157549027234897 +land.:0.12828232038201776 and:0.03302521176398262 but:0.026894098276830238 place.:0.018829728884737947 :0.7929686406924314 +the:0.3644756804023393 by:0.18477127746347963 to:0.1765345402245022 of:0.14253469586130602 :0.1316838060483729 +with:0.32351617504139324 of:0.13537924871834844 along:0.1330750261649292 ot:0.02849316667788495 :0.37953638339744417 +the:0.593488247796655 a:0.08787803822173491 every:0.04135423081078112 from:0.034950924465195765 :0.24232855870563327 +member:0.18671629825111735 ber:0.1795625743122554 tion:0.061411938641756564 meeting:0.05278411973043774 :0.5195250690644329 +;:0.022689834976851588 and:0.013256599301700594 me,:0.0112962922899574 me:0.009366312352084363 :0.9433909610794061 +he:0.3218085065845035 it:0.24566769746514983 1:0.08924461564854812 bad:0.05535255760768769 :0.2879266226941108 +the:0.22820970095694915 and:0.10419069592127451 a:0.0548113206347057 of:0.03579762400621085 :0.5769906584808597 +were:0.2840478696533582 are:0.23034792864747555 have:0.20318875663312258 went:0.06782084903985916 :0.21459459602618441 +over:0.12156818913343187 exceed:0.07424005096421317 to:0.0187043537324683 expect:0.016121140502421714 :0.7693662656674649 +the:0.4372131031818898 tho:0.05662595267254844 of:0.05143188073638007 their:0.04497932230419063 :0.4097497411049913 +the:0.6341289654662219 his:0.056988375275959645 a:0.0569575785264005 tho:0.05097532325843296 :0.20094975747298488 +are:0.32676479162145267 were:0.26015549802646454 is:0.2557806476803043 was:0.09321656058562851 be:0.06408250208614975 +of:0.26204628698592436 The:0.129390116512211 and:0.12364925829705423 the:0.057630563983470835 :0.4272837742213394 +of:0.4091190959764506 in:0.3106435606160556 In:0.09691394546077468 to:0.05426414687903649 :0.12905925106768262 +is:0.12213078852132102 and:0.0728307858900332 are:0.0338225207627114 was:0.025658942933426982 :0.7455569618925074 +and:0.05091621887788041 attorney:0.026303771778993033 movement:0.0261641277499058 that:0.025567243911058163 :0.8710486376821625 +ice:0.3615099348877869 bank:0.3073419858828274 the:0.19312606730729084 those:0.021525771326193027 :0.11649624059590183 +fair:0.7231326332737162 justice:0.07865065089449283 known:0.0706061669571995 good:0.025676438919668004 :0.10193410995492339 +and:0.12819291350899376 purpose:0.03682103588271078 purposes:0.02691973358781985 that:0.021937516746551117 :0.7861288002739246 +to:0.8112018146151703 and:0.039542632008885116 forms:0.029473410112122223 will:0.02690735825308963 :0.09287478501073271 +the:0.09577681491744444 of:0.08728800024000832 and:0.06905615993932392 was:0.05565365676021312 :0.6922253681430102 +been:0.5843527657808979 be:0.3164918364907904 are:0.0170013652575368 is:0.0112756168034785 :0.07087841566729645 +conclusion:0.4701262083245963 opening:0.02714552372326687 same:0.02698220505033828 appointed:0.01597125930489706 :0.4597748035969016 +and:0.14501413180776687 the:0.08874293387185254 The:0.07416096735600365 of:0.07199210384644972 :0.6200898631179271 +them.:0.013168686345657014 ground.:0.01084165765478423 says::0.003761549282107054 T.:0.003145520015826356 :0.9690825867016253 +a:0.13142141726487122 He:0.06437352436161647 conditions:0.019121112747161648 or:0.013162975036034986 :0.7719209705903158 +to:0.41821070815952355 by:0.35295805057093443 bv:0.16524468281943752 the:0.047027474886733915 :0.016559083563370616 +of:0.15781882454277069 and:0.0526085641529019 to:0.03590996449777584 at:0.03204628487545766 :0.7216163619310939 +and:0.17586172113549048 as:0.15926133993436697 that:0.08324524743265835 but:0.06396469895156796 :0.5176669925459161 +returned:0.07101573520313016 on:0.04262930852387661 passed:0.03678981695824942 in:0.032334865680361376 :0.8172302736343825 +loss:0.5112838323778928 standard:0.040476997116814455 great:0.036249476520449166 death,:0.009397646138173437 :0.40259204784667 +The:0.5096108381475801 the:0.055533404382096266 tho:0.017500025414536668 Tho:0.012257054133986478 :0.4050986779218004 +the:0.5533069901922514 said:0.061929680457060515 all:0.055327604872128934 his:0.045800074992839473 :0.2836356494857198 +people:0.05946000683497595 parties:0.041575420602626985 plaintiff:0.04076701394668741 latter:0.03603957175725674 :0.8221579868584529 +to:0.38055914956007547 from:0.18038170620741226 for:0.1794569947910785 if:0.0836630306543589 :0.17593911878707477 +the:0.37518838592753884 tho:0.12466208952924711 a:0.07644152203146294 his:0.03632983996061708 :0.38737816255113416 +of:0.028919601298102175 formed:0.005415257501892087 state:0.0012721464748745113 trust:0.0007424881899889132 :0.9636505065351422 +came:0.08497632697031536 went:0.0771844478199886 had:0.07186954190525252 was:0.04781483623759439 :0.7181548470668492 +the:0.02218721824643428 health:0.010496224011320046 him:0.0073873875334210855 make:0.006615390347237274 :0.9533137798615874 +year,:0.003098784269164417 of:0.0027114535815801984 way,:0.001365496191373024 want:0.0009643577959323507 :0.9918599081619499 +the:0.45195693587868224 pleasant:0.1611740656359768 satisfactory:0.11844101350190278 their:0.07185685147164675 :0.19657113351179137 +the:0.31413430903709905 a:0.19401442406891048 Mr.:0.07072667920135702 an:0.04530737088739756 :0.3758172168052357 +notice:0.9852393143982181 plat:6.226054342777998e-05 land:4.372842909883667e-05 third:1.9864987750715545e-05 :0.01463483164150459 +the:0.8560996145720607 tho:0.04768687861364859 a:0.04690891482970482 tbe:0.011733790204656137 :0.037570801779929844 +the:0.35671382267723506 be:0.07985220770560272 a:0.045829104523353294 his:0.028762323032799453 :0.4888425420610093 +that:0.7697629527875988 of:0.21311345850068802 in:0.005695892614596338 and:0.0033650300101987097 :0.008062666086918175 +which:0.32035244811972236 what:0.1997593287988252 me,:0.055602283644376006 but:0.038859267549009396 :0.385426671888067 +to:0.1002385684928793 the:0.06408226787860848 a:0.055956509990334385 and:0.05556219039408816 :0.7241604632440898 +and:0.041840549409927 died:0.025179846947101344 published:0.022080893248855652 held:0.02109011524355369 :0.8898085951505624 +A:0.9970882013319317 and:0.0018974012369577398 One:0.0003619414446453001 a:7.695999102401922e-05 :0.0005754959954414651 +and:0.12342338231549055 of:0.07790617086055196 Lake:0.07499732590335874 the:0.06514449204177457 :0.6585286288788242 +costs:0.7984650658553859 interest:0.1747708625308109 de-:0.007548185868462346 the:0.0020227410533440334 :0.017193144691996756 +and:0.15217651670722193 found:0.13768470154627022 that:0.11630376320363474 work:0.03938777713231529 :0.5544472414105579 +this:0.24962874055881729 of:0.18908112138074865 that:0.1562444816424808 the:0.1354613005787253 :0.2695843558392279 +and:0.9017089774262043 debt:0.07699709913985273 will:0.0034021081044619214 ami:0.0033095148156498198 :0.014582300513831135 +the:0.11841356661147838 and:0.09347220841277985 of:0.08448938924856203 a:0.0682031081665818 :0.6354217275605979 +effort:0.3615526913592269 desire:0.10554097438084047 man:0.09544122101267628 blow:0.053378300567346756 :0.3840868126799096 +cent.:0.38022723281587945 100:0.03856319456409644 cent:0.01691876142282407 cent,:0.010571635551765383 :0.5537191756454347 +and:0.045440305367127586 the:0.03398224483829289 was:0.018579278571255298 a:0.016151732698069837 :0.8858464385252544 +National:0.9337950888594253 State:0.058492803879483725 tional:0.00015215831843489605 the:2.3528144477763495e-06 :0.0075575961282083395 +the:0.15012442304809223 to:0.10540434153406025 and:0.07632359482092071 of:0.07278843951542689 :0.5953592010814999 +name:0.06671397540327854 death:0.05765626869569055 presence:0.04854282494034546 hand:0.03668704936365231 :0.7903998815970331 +of:0.3180048160073135 a:0.12651199960421436 and:0.060391022213637485 A:0.05105319631914517 :0.44403896585568936 +the:0.4062763222289172 said:0.12799420834400296 a:0.09900635783092956 tbe:0.06219352463572955 :0.30452958696042065 +18:0.8808991521614941 6:0.038472204592718856 3:0.0322507149026917 4:0.026559941398583583 13:0.02181798694451178 +do:0.42455498699217026 hear:0.1569796394293618 help:0.13441883481403757 stop:0.11648090502149866 :0.16756563374293168 +great:0.07738952224393164 damage:0.056667866401689665 diseases:0.012844976961822638 it,:0.011545735775195588 :0.8415518986173606 +that:0.7149322149135124 o:0.24005212353812733 of:0.018858854075655945 to:0.016256218478401932 in:0.009900588994302307 +a:0.212715471882281 worth:0.08643829160875087 knew:0.07587298405616569 to:0.05873131423531304 :0.5662419382174895 +He:0.13847848597056278 and:0.11174635258274872 he:0.07875351861072531 who:0.07225930258171814 :0.598762340254245 +and:0.1747816446670159 of:0.16732256771560225 to:0.062402902008788896 the:0.05921327634233416 :0.5362796092662587 +may:0.5768993127064609 would:0.21886374687815255 will:0.11984527507562433 should:0.0630230656379656 :0.02136859970179652 +of:0.1559241070990666 called:0.10802341600908363 to:0.1027479294333941 gave:0.09982065521306076 :0.5334838922453948 +themselves:0.8348904609212751 this,:0.06899622179454383 business:0.02384321074847853 so,:0.021676531709438635 :0.05059357482626405 +short:0.10903465920287601 new:0.04796241254289106 great:0.025992089971306014 the:0.023165149442051784 :0.7938456888408751 +in:0.1263237750238082 on:0.08796255428646638 as:0.07485658267206592 upon:0.04877658069787614 :0.6620805073197834 +one:0.060109251248515315 out:0.05257258358916799 some:0.03427863423661949 the:0.03312398290569596 :0.8199155480200013 +part:0.2023063616081342 manner:0.07312100285221501 portion:0.0642298015370937 schools:0.044436717611023885 :0.6159061163915331 +is:0.6779884966463549 Is:0.22208804349830338 was:0.06043775202195203 are:0.010112595378656036 :0.029373112454733678 +the:0.43431326391222475 his:0.048352471174234996 a:0.042026718483087235 their:0.026810373134910193 :0.44849717329554284 +be:0.9982846586584638 in:0.0005284261390187402 bo:0.0002747642587207015 not:0.00011185810791888166 :0.0008002928358780204 +the:0.4399533334195331 a:0.18736799989595762 an:0.03663660851392815 tho:0.023826880038847233 :0.3122151781317339 +death:0.01807788713683618 open:0.013880139111393536 water,:0.011694517585386801 stone:0.010799576158846181 :0.9455478800075374 +occasion:0.398952014158962 attempt:0.02033952655908985 article:0.01572643493160774 opportunity:0.015490046954937406 :0.5494919773954033 +light:0.007321759874069333 scribed:0.004849963698112094 lay:0.0008501411866231709 sign:0.0004926310257736858 :0.9864855042154218 +and:0.15436258380059942 the:0.11313758068847204 of:0.07263741565237543 The:0.07161100304701304 :0.5882514168115401 +marked:0.4978293084554451 stated:0.062059509630911766 only:0.0553511718969294 arranged:0.027104148423687465 :0.35765586159302637 +fact:0.5781442046165602 cause:0.3912125543106392 country:0.008343538936353895 means:0.001240965192991188 :0.02105873694345538 +one:0.5800592901950018 the:0.2701009694792887 his:0.08170236945766773 their:0.04391269474613909 a:0.024224676121902856 +the:0.10606580973594668 to:0.07888220911227374 a:0.07308788915185051 of:0.044459947880631026 :0.697504144119298 +more:0.07156684669076423 small:0.035340096096877015 personal:0.031243829359307945 few:0.030790187969825283 :0.8310590398832256 +go:0.35458126126935663 be:0.2834254240053856 live:0.045945823860916266 get:0.02461598959852533 :0.2914315012658162 +know:0.32926351376892377 those:0.09229292944977144 see:0.079871871023456 say:0.07979334815615949 :0.4187783376016892 +people.:0.7023840671391786 government.:0.0011541578336898399 society:8.857430599878787e-05 way.:7.993729774257984e-05 :0.2962932634233903 +other:0.9416029045506971 political:0.015152873968391151 ordinary:0.0035525299050676515 possible:0.0033494543868220717 :0.03634223718902193 +It:0.22017726862166903 This:0.12718390733817722 which:0.09465950465637964 it:0.07672536430917241 :0.48125395507460167 +of:0.906730473797433 for:0.0501255144000912 on:0.024005326526734528 and:0.008580211687663765 :0.010558473588077407 +is:0.675983846306704 was:0.23729692858430712 seems:0.049757490960509035 not:0.018496970848587913 :0.018464763299891974 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +and:0.009986570723860926 thereon:0.009166719497604477 farmer:0.007024696278912491 the:0.006482232767528749 :0.9673397807320934 +she:0.11453177922283597 What:0.07312979212928299 wife:0.07230884605985266 He:0.06836904372888501 :0.6716605388591433 +to:0.27228391132600915 should:0.1863204619560408 control:0.12391527417825032 object:0.042081496275923704 :0.3753988562637761 +of:0.23246560064775837 in:0.15786005469576495 the:0.10604726547329021 thing:0.06523797727225626 :0.43838910191093017 +satisfaction:0.0911610336635938 official:0.021889630422813656 of:0.012747649730008833 and:0.007971006518012606 :0.8662306796655711 +&:0.6849523808614647 A:0.009249097516544619 Co.:0.0030770646095369058 old:0.0020448762516753877 :0.30067658076077836 +waa:0.09160753335188186 them,:0.018297199600429314 him:0.016187479491754527 in:0.013529048548735401 :0.8603787390071986 +property:0.25816440290553727 State:0.07384360610421802 land:0.06187728738687467 way:0.049206767496895794 :0.5569079361064743 +that:0.27890173753199343 of:0.09570729520102088 if:0.08335411106140575 so:0.0763114679376779 :0.4657253882679022 +States.:0.6349011740170614 men.:0.025354600486230908 people.:0.015247018471195355 ment.:0.003594259650059509 :0.3209029473754528 +could:0.839833889792959 know:0.06185032237211463 do:0.04001733722481427 am:0.026197120783962392 :0.032101329826149674 +and:0.06563179745566024 was:0.015100332627618866 is:0.013731628386402472 or:0.010541681575383445 :0.8949945599549349 +had:0.5473029838714542 has:0.2832629423966807 have:0.1077455884720445 was:0.02958192111625998 :0.03210656414356068 +she:0.7750291245834965 the:0.07171570993396831 a:0.03258398840648424 I:0.020144370677652033 :0.10052680639839877 +entitled:0.20297729214250398 liable:0.12767000766228456 subject:0.12649118231577633 allowed:0.08926630069927634 :0.45359521718015877 +San:0.41998804525836914 healthy:0.1181391303186181 long:0.08059377346569294 newspaper:0.05260035726802385 :0.3286786936892959 +In:0.1824066727627879 lu:0.1481181378480204 lie:0.04183411286655686 1:0.021371350932048477 :0.6062697255905865 +to:0.5769105143712601 and:0.02864876290784472 To:0.02457535355383838 any:0.017395833726367715 :0.35246953544068915 +States:0.7568465116424316 States,:0.10073738252972156 States.:0.009745429985551985 states:0.00614331467611835 :0.12652736116617652 +window:0.5266651074306029 air:0.1157978832124151 streets:0.10843793670814181 mountain:0.09364149437449402 :0.1554575782743462 +.:0.0032866319866198227 on:0.0030923329696029866 bodies:0.0025137023413726177 men.:0.0010037477944220606 :0.9901035849079824 +a:0.11481501847828063 good:0.0924051592027448 the:0.04330343886569403 work:0.028405881220797163 :0.7210705022324834 +business,:0.013372726263863096 benefit:0.009966995410063718 interests:0.009692407415817134 life:0.009679917267769726 :0.9572879536424862 +when:0.2139061537876535 and:0.015520099410124008 as:0.012946514160223863 but:0.012280716800607643 :0.7453465158413909 +such:0.18721147062772311 to:0.18518419596800517 by:0.060105938752372565 that:0.05441720941692908 :0.5130811852349701 +to:0.9649468219391688 not:0.0282199921120683 tu:0.001180752873982245 lo:0.000537487636020573 :0.005114945438759949 +the:0.10202686871177742 and:0.058682542416642995 to:0.058160492196437846 of:0.044393047027032624 :0.7367370496481093 +After:0.5519816806746489 mouth:0.10310801733012341 and:0.07969007425026745 for:0.07135075509394503 :0.1938694726510153 +for:0.2681586509230961 For:0.1819568379348895 after:0.169446209165139 and:0.14099613047923315 :0.23944217149764224 +home:0.012217073708310046 come:0.0049566245761221575 girl:0.003592305141253113 good:0.0032212494054027403 :0.9760127471689118 +friends:0.1041906228290478 citizens:0.10052391256917217 members:0.09949504916164321 people:0.032295856328279554 :0.6634945591118573 +but:0.44396186454762765 to:0.14757380117053848 on:0.09251526011140641 of:0.08637045189401275 :0.22957862227641462 +-:0.19481604727857496 sure:0.02803130418751749 to:0.015339154456603055 a:0.0090672395085366 :0.752746254568768 +pleasant:0.4361497408719755 up:0.20136044982371387 reported:0.052077368662314695 said:0.03901053887591124 :0.27140190176608475 +say:0.11895677042551268 believe:0.11133116270272071 be:0.08272211800823202 see:0.07332405139165522 :0.6136658974718793 +wife:0.2173143449502876 face:0.09967981716090726 way:0.04238980777939953 hat:0.024606446473137044 :0.6160095836362687 +of:0.3493106660913442 with:0.12511468280453755 in:0.10913347841498731 and:0.10502541684042044 :0.3114157558487105 +the:0.9535624416063795 his:0.041088370920461185 tho:0.001955797951221451 of:0.0009135446867532663 :0.002479844835184491 +movement:0.23776796710374534 field:0.0319913411945657 point:0.03174969410944946 board:0.02195650100965283 :0.6765344965825866 +of:0.17870645585955158 as:0.12619061532190037 and:0.10010285585381648 to:0.04549708322204091 :0.5495029897426905 +and:0.19162110875018895 the:0.09267281899935578 of:0.06736308654306385 The:0.06626434797259538 :0.5820786377347961 +with:0.5886729331779682 and:0.11384039595593962 under:0.10882843025189952 to:0.08209652075861769 :0.10656171985557503 +quarter:0.10535137731996112 parts:0.03379803556853953 feet:0.0329754772520698 miles:0.026073075507131036 :0.8018020343522986 +is:0.23445706892231447 are:0.17053112569098042 was:0.15290137069123824 and:0.0667670410386178 :0.375343393656849 +a:0.9305483457700534 A:0.024210588874809744 the:0.016996974119054428 has:0.01459716397587882 :0.013646927260203655 +entire:0.02554364037986298 the:0.024780069854573764 whole:0.020562263471009475 great:0.017205501438040043 :0.9119085248565136 +than:0.2866925373843085 of:0.26512305362886346 in:0.21691217941788524 at:0.09445357197904158 :0.13681865758990128 +the:0.07663303849731008 that,:0.053754528626846695 right:0.034870240160546996 well:0.021292112593825713 :0.8134500801214706 +to:0.7153154535265628 and:0.05413621422147971 or:0.020471147609737148 of:0.016685632389446224 :0.19339155225277405 +for:0.9797374661097794 lor:0.014340587825200268 tor:0.0013116793747384985 to:0.0010936550770281024 :0.003516611613253845 +the:0.04077678733378376 of:0.02319096268550133 and:0.01843719401418705 man:0.011112899995979655 :0.9064821559705483 +and:0.14122855564936404 M.:0.06912322822138602 S.:0.03616913746456788 J.:0.033422091583725506 :0.7200569870809566 +may:0.14122256946302778 Yet:0.1219896201840265 and:0.10887958846327515 history:0.0804505760682533 :0.5474576458214172 +tion.:0.21928092700488883 is:0.1256032916497904 are:0.11973013107855325 and:0.11672443591438027 :0.41866121435238723 +to:0.999702183583615 will:0.0001796486555634511 should:4.550877976196475e-05 might:3.7313350579934745e-05 would:3.534563047948339e-05 +in:0.07408674282731487 to:0.06292180025147441 of:0.060486389406852976 that:0.059142888096262385 :0.7433621794180952 +which:0.24671085265020046 there:0.033570339600468756 the:0.03212980442571089 it:0.023979566515716776 :0.6636094368079032 +which:0.031152112396338423 that:0.0024357906664199632 life,:0.0014918461761405967 the:0.001211001368708524 :0.9637092493923924 +the:0.7275059459169034 no:0.10756947872072216 any:0.043352719005584975 and:0.012638560673546946 :0.10893329568324242 +upon:0.5255116451955909 in:0.024642394081096565 give:0.017065125502701117 on:0.006389558908011838 :0.42639127631259954 +be:0.9876224028600563 he:0.008630085859551388 bo:0.0023925735803885005 ho:0.0009354989673623851 :0.00041943873264151923 +of:0.5395471273010006 and:0.3524282979912086 to:0.0353908465390669 or:0.013790462307385922 :0.05884326586133781 +will:0.21884806964648176 shall:0.07237532826330065 can:0.05184337896175939 Will:0.04150886377282049 :0.6154243593556378 +medical:0.579572746682306 legal:0.29664191556243635 of:0.01229962933324866 known:0.006653714676527127 :0.10483199374548202 +thence:0.8287475589023893 street:0.010266936819930345 land:0.004582197662141744 line:0.003781685406094959 :0.15262162120944384 +telling:0.06532084741187351 to:0.05550872936394247 tell:0.015426487038737474 and:0.015367106231385846 :0.8483768299540605 +on:0.6107025744593265 died:0.02398449288222946 last:0.0021663438024151767 and:0.0007584838316067956 :0.362388105024422 +Beginning:0.9359747577056378 beginning:0.03154322224167139 one:2.3737974014129984e-05 I:5.291828519470762e-06 :0.03245299025015732 +first:0.3006512030413405 second:0.24517196087840076 part:0.08505134057070686 own:0.06676621192793371 :0.30235928358161795 +late:0.03896767668892241 the:0.030816549343055093 United:0.026065785828092818 said:0.02059146089992239 :0.8835585272400073 +four:0.8224807130396731 more:0.014515557979500594 the:0.014198020902087901 a:0.005165554354430664 :0.14364015372430766 +church:0.041124257854412205 city:0.03892531905070827 public:0.038242531624878146 situation:0.02688920586583115 :0.8548186856041702 +ing:0.10273164292108915 against:0.07784908399350575 himself:0.0413081135114835 as:0.03688667205390443 :0.7412244875200172 +action:0.039484862894434786 waters:0.02667842981997654 Board:0.0228671207871034 use:0.0200079941158997 :0.8909615923825858 +and:0.321260607384741 being:0.2568782600156607 against:0.12865862451668506 ordered:0.10654312374988333 :0.18665938433303006 +and:0.2058845015372213 of:0.2003266799364575 in:0.06073700454152148 per:0.05107655194504634 :0.4819752620397532 +work.:0.47775286169390074 of:0.06914576563251763 is:0.019404174269055365 allowed:0.011067025336785118 :0.42263017306774125 +would:0.9166777357866326 was:0.03092178869181209 might:0.026443284292231577 had:0.00992863849489597 :0.0160285527344278 +required:0.04603883210837404 proposed:0.043452432587316334 to:0.029763072013672832 given:0.02901830320964171 :0.8517273600809951 +in:0.9997866344444469 any:8.041126270634721e-05 no:5.2310139918611886e-05 th:1.7693285945918478e-05 :6.295086698233105e-05 +the:0.5767851774601325 which:0.03969672820234982 our:0.037194218440828805 all:0.02426189223505733 :0.3220619836616314 +the:0.5654970309526879 St.:0.11387455288578402 a:0.025003294329032526 tho:0.018919581226968293 :0.27670554060552743 +and:0.057290202551419415 E.:0.03011128438741706 of:0.028788108232165197 30:0.028255329246166444 :0.855555075582832 +fact,:0.09917166639427445 me,:0.057941166862136385 out:0.044266015145204486 body:0.034899302784459685 :0.7637218488139251 +it:0.4163368263899114 they:0.17237849106714842 he:0.12652449543920902 there:0.09053712572782502 :0.19422306137590623 +any:0.002380352614487378 it.:0.002064410138184787 A.:0.0017772440239674043 others.:0.0015053692737779058 :0.9922726239495825 +his:0.753567328514989 and:0.13372031979451518 a:0.028138864757675908 bis:0.026706941768611887 :0.05786654516420817 +and:0.6172079557772729 held:0.03589453503535639 said:0.020771124693089633 for:0.015439746857820949 :0.3106866376364601 +the:0.567588040897945 his:0.20976955287154972 a:0.08663339971615978 The:0.034414893065854435 :0.10159411344849097 +weak:0.04617814141411093 advanced:0.015408196830069764 happy:0.014639851012688741 showed:0.007674115934639463 :0.9160996948084911 +lay:0.9601204566281566 be:0.0032951935433138254 the:0.001913854003826281 go:0.0016973771992109307 :0.0329731186254923 +such:0.05049229027012469 likely:0.0066168984543360804 believed:0.0022298931033632773 so:0.0022121813965064185 :0.9384487367756695 +and:0.04071682795501405 them:0.011866904802287635 him:0.009427184090157279 were:0.009338185244155585 :0.9286508979083853 +reply:0.27207489965150955 relation:0.22689946998451957 reference:0.15859483607651403 order:0.06358454476312922 :0.2788462495243275 +of:0.5023197625546523 in:0.35451648729991225 In:0.0485351529484064 for:0.02260303812399098 :0.07202555907303812 +of:0.34317007409892575 and:0.12510773242654066 in:0.08669718151143857 In:0.065317247480666 :0.3797077644824291 +belief:0.20315142388149351 a:0.08187933901573276 one:0.07775606173813243 several:0.05799039743328477 :0.5792227779313566 +per:0.9997943486190445 er:6.528969567437996e-06 par:6.310799965586124e-06 per-:2.0928549726485003e-06 :0.00019071875644967675 +rather:0.3263049974843442 not:0.15175412548641043 but:0.05879068883852626 already:0.038941473720343366 :0.4242087144703758 +red:0.03026944923594231 sold:0.020138126997159386 that:0.0179624120814824 the:0.016277204570220048 :0.9153528071151958 +said:0.026947816637067985 latter:0.01485226705677766 north:0.014162907676624363 now:0.0117061612030916 :0.9323308474264385 +say,:0.02170647639199245 the:0.013022531603928704 Now,:0.01098911197617993 promise:0.003440769056128139 :0.9508411109717707 +the:0.020885128523699573 life:0.0051090071766392775 gold:0.004357850252505167 men:0.0041800229498614215 :0.9654679910972946 +have:0.21991951903583534 than:0.13861700873217891 do:0.13266231998718883 did:0.09580956909456972 :0.41299158315022727 +to:0.06684708317011467 than:0.03453528193927267 was:0.03289412817308892 about:0.029020042576989095 :0.8367034641405346 +and:0.037354114828037625 in:0.01801507771129983 be:0.01665856971105711 of:0.01650487606033537 :0.91146736168927 +room:0.039886132898030176 good,:0.019446754871754297 of:0.01243792169088346 ground,:0.009891319049566258 :0.9183378714897658 +the:0.30537670764887676 few:0.13799456706658667 full:0.07308563177888988 thousand:0.0647585239016872 :0.41878456960395943 +any:0.42066049425338875 favor:0.18113505920336273 one:0.04977514133956837 the:0.039735985124650354 :0.30869332007902966 +the:0.6383518547171324 a:0.12023852799828563 tho:0.056375131073663556 his:0.04661139390057444 :0.13842309231034394 +not:0.18695947176457023 very:0.07100706237977919 the:0.06350812639273877 to:0.06301934509547492 :0.6155059943674369 +silk:0.10525615158025249 use:0.05126811239367819 his:0.007059726941697549 two:0.002033702337361235 :0.8343823067470106 +in:0.19607226213970197 in-:0.11318768005332362 almost:0.09306028707793393 otherwise:0.016528945372894704 :0.5811508253561457 +the:0.10767285578612812 .:0.059740581480080254 need:0.028360220899892475 and:0.0241276574715523 :0.7800986843623469 +and:0.019328042689880975 followed:0.009354358240615576 by:0.00915541296623421 ed:0.00833678596474306 :0.953825400138526 +that:0.24617202234819552 and:0.16526235334533226 which:0.07840462553385756 but:0.06061501378385589 :0.4495459849887589 +conduct:0.3175889998283224 the:0.07595388730303329 health:0.033998330350706735 right:0.022513160058391008 :0.5499456224595465 +upon:0.3962859753825511 in:0.20875929459192474 from:0.14878684935546677 to:0.1307849306300033 on:0.11538295004005406 +of:0.6581869732851544 a:0.0600620089253326 and:0.057956089312629064 the:0.056991291611138084 :0.1668036368657458 +interest:0.4885320862347348 Interest:0.1304404021205726 fee:0.013183414355979741 tax:0.009265711224022024 :0.3585783860646908 +of:0.5504861438493895 for:0.36505468191246365 ot:0.023662135436802696 and:0.00010864693848773321 :0.06068839186285642 +of:0.03846610733445955 in:0.03378121587417831 and:0.027127412244321164 there,:0.026991167991479832 :0.8736340965555611 +the:0.4322046961946776 other:0.04728419864840772 pro-:0.03997978197383287 property:0.0375960292003733 :0.44293529398270864 +the:0.5145823880890186 to:0.128703588457964 their:0.11139845523651312 his:0.08436877863561978 :0.16094678958088446 +leave:0.5878446794473198 consent:0.09652479317655425 le:0.004203189987215093 goods:0.003867771737579383 :0.3075595656513314 +is:0.4370460016591972 are:0.19392973349550172 Is:0.12027362574744428 we:0.02112062106505164 :0.22763001803280522 +of:0.926532998082182 was:0.021521481562618273 and:0.021090086877002864 with:0.010970733783043052 :0.019884699695153718 +the:0.9970323609206321 a:0.0016626520282019192 this:0.0009254846512622975 on:0.00011636900717425019 :0.00026313339272957545 +Minnesota,:0.7729976268464144 Virginia,:0.0668627740245329 Dakota,:0.00898064733995037 Columbia,:0.0018849209499063083 :0.14927403083919613 +way:0.38024244519971884 products:0.146887849220912 needs:0.010915274278620737 passage:0.009324726277421251 :0.45262970502332717 +he:0.8026322356759098 was:0.07363270213306429 the:0.05935904922845477 tne:0.037097347472489356 tho:0.027278665490081778 +are:0.30579889280781086 have:0.11634929715612428 will:0.0909785675545907 the:0.05615901467349633 :0.43071422780797775 +and:0.09977463748191315 and,:0.07261617208350939 It:0.03416222635699303 he:0.034061263278030995 :0.7593857007995535 +have:0.168279474708367 am:0.1529032072136555 was:0.1363028859790612 had:0.057476056581219556 :0.4850383755176967 +the:0.25250413140533257 for:0.1424659076529181 not:0.10334696993199614 a:0.0785701467576901 :0.4231128442520631 +of:0.24781017605700414 in:0.22831505078964623 for:0.15821667788943736 to:0.09335540616089578 :0.2723026891030165 +in:0.4422890654268717 on:0.2832660230313341 upon:0.13378827839927807 at:0.0727665055799741 under:0.06789012756254208 +the:0.354307099697129 W.:0.2286728851935286 a:0.13916976155613262 this:0.13354546471193326 :0.14430478884127657 +and:0.09672991151704285 by:0.04939832826403342 confined:0.031511972300635134 ed:0.03143217350921711 :0.7909276144090716 +therefore,:0.9701746936315176 therefore:0.0010270730704952534 that:7.257516917213136e-05 and:2.831184796121069e-05 :0.028697346280853818 +in:0.2634192767889664 to:0.16592990986355763 of:0.15651969651262487 and:0.1299991900808416 :0.2841319267540094 +of:0.2082755591490031 to:0.1336202358465639 and:0.09424610921751499 on:0.07665475430355893 :0.48720334148335914 +years:0.2526871911465298 names:0.11652344252691889 boys:0.10005735305260162 check:0.09829857674565598 :0.4324334365282937 +and:0.1817856599226302 that:0.10710665782176239 but:0.07102808807718845 where:0.05433252748651206 :0.585747066691907 +per:0.2328040428010908 the:0.02509024074626475 a:0.018891410003671845 one:0.0076803076870956815 :0.715533998761877 +better:0.7857676656072057 worst:0.19242503774019937 benefit:0.010491989244560995 best:0.006854581159340353 :0.00446072624869352 +the:0.8100857584490138 tho:0.18415081030179212 tbe:0.0025511486781154 her:0.0017036306116550116 :0.0015086519594234712 +the:0.472003725590264 existing:0.20426295266627145 some:0.13286406302787293 a:0.09791469588699891 :0.09295456282859278 +i:0.6210822227363098 of:0.12880711335947762 at:0.022377986370678754 and:0.012591177854021843 :0.21514149967951215 +a:0.06558154319444022 as:0.03948101249711601 of:0.03142868066273496 like:0.012887369929635762 :0.8506213937160728 +to:0.6151546295582696 of:0.2275766966671636 or:0.07058798608538179 find:0.04451358658410514 oi:0.04216710110507986 +and:0.12570355143681572 of:0.1105018980617339 the:0.07852271601260354 a:0.05909699699496579 :0.626174837493881 +which:0.28438304146088167 They:0.07561608489135686 we:0.05106281465863474 would:0.04922065406026629 :0.5397174049288604 +the:0.25272852457851813 The:0.19233141756564323 a:0.1900299809102354 A:0.16577792827612206 :0.19913214866948112 +to:0.9994640920133852 of:0.0002409949201212143 in:3.8129256507528624e-05 during:2.317552949434915e-05 :0.00023360828049179475 +the:0.4388529194648232 and:0.16251974293839708 The:0.08784423182146024 in:0.08459482230274926 :0.22618828347257022 +of:0.2635314681008263 and:0.11546396152750535 in:0.09778015744711135 with:0.0893250917371023 :0.43389932118745467 +and:0.1326479641630749 of:0.12208606967132078 the:0.08151452147141539 to:0.037265068054294165 :0.6264863766398947 +H.:0.07159337551651461 J.:0.06234730695391369 A.:0.061725214076743036 T.:0.046103606891580634 :0.7582304965612482 +quantity:0.3701108919673534 one.:0.0708842967609974 amount:0.018844095375515485 business:0.002891524174230794 :0.5372691917219028 +good:0.20966120020706513 laws:0.16574592014684533 contract:0.039983638945681646 steam:0.03114934740771281 :0.5534598932926951 +the:0.09504207667382467 a:0.026855471768660752 him:0.013264791724954407 them.:0.008399136070773713 :0.8564385237617865 +of:0.3166750972530856 that:0.13988933276533017 by:0.1206236586848177 to:0.10008536485898932 :0.32272654643777726 +of:0.23064327880822724 and:0.13615304643322393 in:0.11576266370937108 into:0.06866489848019479 :0.4487761125689829 +big:0.4184075797342513 fire:0.15042760355970294 best:0.05740556319811967 necessary:0.03515766773788041 :0.3386015857700456 +and:0.44502670722391074 He:0.30960502024602127 he:0.0792914514921042 they:0.04917912134999755 :0.11689769968796626 +rights:0.16753177070784508 action:0.03949401811117713 way:0.032546884348726254 views:0.026414444028554744 :0.7340128828036967 +of:0.44483784879444993 at:0.35623821714164405 or:0.09145701694228278 to:0.06012200239250229 on:0.04734491472912113 +they:0.09040019215544029 They:0.08523947822628969 There:0.0814104928544707 who:0.07097688521596 :0.6719729515478392 +the:0.6690591529388797 tho:0.03846355257175814 a:0.01947367157559074 The:0.017010114812964588 :0.25599350810080684 +or:0.646851412247938 always:0.151402106272656 to:0.09822268587661954 and:0.012981542019745164 :0.09054225358304123 +to:0.05790929681740201 any:0.0536306287808779 same:0.02541799984699891 treatment:0.020411052460317426 :0.8426310220944038 +2,:0.10224965825579053 the:0.04355474764254903 and:0.0411850618551729 of:0.02458752981809088 :0.7884230024283968 +the:0.18462301376730864 a:0.07989444742751398 he:0.03880842090220026 to:0.02966123836202444 :0.6670128795409526 +south:0.9837056171137225 north:0.012167984053218653 S:0.000875514257239471 N.:0.0008042686845949195 :0.002446615891224405 +British:0.0767491566617383 city:0.04582440074013885 negro:0.03110767685820303 road:0.03068532807606873 :0.815633437663851 +decided:0.7248842007068106 been:0.01903734452665089 gone:0.011503238554882703 anything:0.010502978861361874 :0.23407223735029412 +neither:0.7925651952935381 no:0.060271425315463846 not:0.04598826099158891 the:0.03868631361389034 :0.06248880478551888 +in:0.13991634838155007 with:0.1256083058294905 as:0.11364217883082126 of:0.10635086065292938 :0.5144823063052089 +that:0.8392320516311801 and:0.0386698192779788 hat:0.029251471496371376 less,:0.014118658030272728 :0.07872799956419711 +those:0.4549077775191173 men:0.0738998496558333 ladies:0.044830151846082085 we:0.019481205499221832 :0.40688101547974537 +taking:0.12440430966753134 bringing:0.10871578688854328 as:0.0847070626571385 with:0.02865598067501304 :0.6535168601117739 +the:0.48890622122283367 a:0.0966434761069782 his:0.07432874561464699 tho:0.020513273116706265 :0.3196082839388349 +be:0.5669063055148019 have:0.2849685618598542 expect:0.018402873613016325 provide:0.01778464034118028 :0.11193761867114725 +I:0.16834265028133308 has:0.13417465317190055 have:0.09233118516500069 that:0.07785137612805638 :0.5273001352537093 +statement:0.3002124239361622 commission:0.05694456736702217 bow:0.03952530447411709 stand:0.027521988255290997 :0.5757957159674075 +for:0.6431810782702794 before:0.21781278112580738 lor:0.04884150414205436 in:0.033539659480865174 :0.05662497698099374 +now:0.18885392981528848 if:0.15811171350572836 even:0.14732919335664388 after:0.11292676075469592 :0.3927784025676434 +a:0.4413206575033529 being:0.20773312839712113 are:0.16799625373715174 was:0.09725494518998723 were:0.08569501517238703 +survey:0.0679548089879205 C.:0.027414452994156804 Block:0.005224484771601721 Cor.:0.0014732598230950773 :0.8979329934232259 +to:0.0007305213954016616 lot:0.0004605783293319791 ol:0.00025247396260784637 -:0.0001480851029268478 :0.9984083412097315 +when:0.1075747307171523 there:0.06911323102915255 here:0.0669104038266573 so:0.06024955007229822 :0.6961520843547396 +in:0.37597137782536133 was:0.3119605214402421 were:0.15323762972633898 are:0.0644901886747091 :0.09434028233334851 +of:0.5527828950767621 in:0.43645154978005973 to:0.00791294078713829 with:0.0010709464829698682 :0.0017816678730698643 +in:0.2954180434000632 has:0.1648334051212648 into:0.15527571823619363 as:0.07705822655420748 :0.30741460668827086 +or:0.37675150645136574 be-:0.09253760038841892 ¬:0.06374003363415973 and:0.011924412647892629 :0.4550464468781631 +the:0.5711773919178177 The:0.21419751947183235 die:0.0497075658672141 that:0.02701979334461185 :0.13789772939852404 +of:0.9986790634103938 in:0.0006620659833219529 that:0.00026142069405075963 is,:0.00023715308519109467 on:0.00016029682704228796 +that:0.238845926824059 but:0.12699893557976702 and:0.1091422482761384 which:0.05120046158911172 :0.47381242773092375 +evidence:0.19201586256809433 course:0.13131716875202493 position:0.12973266774571737 success:0.11457063048708749 :0.4323636704470758 +the:0.5591439447896925 a:0.14777019598492402 all:0.06462694893435483 an:0.03791745376661099 :0.1905414565244177 +low:0.26836568697303564 and:0.10918418157118157 able:0.10106818865729732 these:0.09979851704539974 :0.4215834257530857 +there:0.09000998458605147 family:0.03829759809197642 crowd:0.027934339648368625 man:0.018733950191738957 :0.8250241274818646 +the:0.3090213905295079 at:0.048432141335343355 Gen.:0.04049596540604853 Governor:0.03278905815030103 :0.5692614445787992 +of:0.9612504091995201 ot:0.01888666900384783 ol:0.013722074255459378 of.:0.0030433675355011243 :0.0030974800056715033 +be:0.8823188416253095 he:0.03248025888527982 bo:0.021479118541310037 secure:0.010238707778402571 :0.05348307316969788 +ern:0.03275945448162289 the:0.010925366728787316 -:0.005620964018448193 I:0.0036774099865351964 :0.9470168047846065 +to:0.7866720833280634 by:0.10700211347868892 or:0.03864934154110351 and:0.02444595444391701 :0.04323050720822723 +of:0.1479714221164446 and:0.13326178216252754 the:0.07417545015382893 to:0.039100662794126335 :0.6054906827730725 +improvements:0.2855900969306074 House:0.11686945548835981 work:0.0720806022246262 building:0.0358081474917444 :0.4896516978646621 +good:0.16523295585198502 little:0.14294223754623517 great:0.13939604215087115 general:0.12803936498313037 :0.4243893994677783 +As:0.05429679840083427 into:0.05410683155795984 condition:0.05206963189382157 direction:0.035124535305735186 :0.8044022028416491 +2:0.39759732058669106 three:0.25893888602276066 his:0.04067883668185114 fore:0.02558000046286827 :0.27720495624582897 +most:0.1508591334695624 the:0.07222883729602032 earnest:0.03520745579006039 closely:0.021213659222397874 :0.720490914221959 +all:0.7462808020025254 11:0.07205164937883707 and:0.062075518986501765 of:0.04299243490743098 :0.07659959472470469 +and:0.18384395434866177 to:0.1301193943730916 I:0.07897005334429777 in:0.06992550523270967 :0.5371410927012392 +not:0.9300797588766657 to:0.05181297499361966 the:0.005535940383453366 is:0.003890064095577131 :0.00868126165068411 +and:0.25508152616591206 It:0.11170353107604919 had:0.07793991102056691 which:0.07006775209185367 :0.4852072796456181 +military:0.450827021553849 little:0.029130181767196343 right:0.013262328780287477 small:0.01136393127521815 :0.4954165366234492 +even:0.9471859920709307 a:0.000465231718093199 her:0.00046468330775113997 his:0.0003353045256616351 :0.05154878837756343 +district:0.2029720174284057 the:0.19550705058994386 States:0.06467579873655435 s:0.05322081367683712 :0.48362431956825885 +use:0.09288504342190954 floor:0.05548851657672768 aid:0.0387599068583563 board:0.03839753124287587 :0.7744690019001307 +to:0.4407746370448339 and:0.23112425432517963 we:0.07861972945164664 will:0.0163397908345605 :0.23314158834377927 +war:0.000914779306521896 approved:0.000454929141107724 past:0.00016997604741828364 whole:0.00015370735482756492 :0.9983066081501243 +Russian:0.050355796770210154 letters:0.03817341842287596 trees:0.027029010328390047 things:0.017989209606097123 :0.8664525648724268 +the:0.010760302378942701 a:0.0020439327247107147 of:0.0019998512025935396 said:0.0013808067845059917 :0.9838151069092472 +most:0.02926991634161367 the:0.015251306852885851 United:0.014626552204028304 said:0.012782751035329049 :0.9280694735661431 +as:0.37411374118607615 not:0.08659797664478976 to:0.06391802005269379 and:0.05452191814477645 :0.4208483439716639 +cent.:0.0767020077763527 .:0.06370367895146392 Fourth:0.009886787710952466 and:0.008375331469255665 :0.8413321940919752 +in:0.2324898874001479 of:0.08865716259072295 until:0.07454158520825623 dated:0.06417460792124184 :0.5401367568796311 +having:0.8215395220215795 taking:0.06274255892443523 making:0.05017072525963292 being:0.02881539493940529 :0.03673179885494712 +man:0.23751143941397598 thing:0.10311939797647195 soil:0.09562841441541874 person:0.07448798396142275 :0.4892527642327106 +There:0.35186775007823234 and:0.11936423589986206 bills:0.10419153104374189 which:0.047022371982999495 :0.3775541109951641 +the:0.1311881648901036 to:0.10346249703504155 and:0.07702014808745165 he:0.03722915233635679 :0.6511000376510465 +spite:0.025737206719547354 scribed:0.004458882841399414 the:0.0033349973439713706 good:0.0021292286113293248 :0.9643396844837525 +A:0.31985293620155564 the:0.11064245783887725 Senator:0.07239933286766156 your:0.06447776427616173 :0.43262750881574386 +subject:0.49789588601180174 most:0.40940351724851165 same:0.05710591250611719 matter:0.030215382661465763 very:0.005379301572103693 +army:0.17237151558373176 who:0.1679456369116027 and:0.13988545014848847 house:0.10972548904754291 :0.4100719083086341 +of:0.7947686566885148 have:0.04458963522696037 in:0.024469328709309228 on:0.016140589865889798 :0.12003178950932578 +Board:0.3532113766456268 of:0.036312828735497946 party:0.009816274360242823 force:0.006741673315502893 :0.5939178469431295 +of:0.04547233474316223 all:0.04183045930071405 provided:0.03879433014650218 been:0.02713289137290802 :0.8467699844367137 +have:0.6308519275684057 has:0.26108364794500283 bave:0.03703226835719961 had:0.013369929691191869 :0.05766222643820009 +and:0.31315742229675236 but:0.09286460372248663 of:0.0355804456815646 But:0.024954353503162406 :0.533443174796034 +the:0.4489630120976637 this:0.26897561356124755 a:0.07556913310840183 such:0.02909729442355663 :0.1773949468091303 +a:0.33601354976812114 the:0.14056470424331993 about:0.10715335775206772 one:0.10215638783258443 :0.3141120004039069 +except:0.46005095246260486 To:0.2645536484256297 and:0.10987749748027074 of:0.09132625296241839 among:0.0741916486690763 +the:0.9053392412947371 a:0.03763868490608885 of:0.019520314976871213 their:0.011560014063490678 :0.025941744758812075 +of:0.49357616171529434 or:0.06179056647956668 thereof,:0.059178984712133426 and:0.04316211956422005 :0.3422921675287855 +of:0.5254095179024734 own:0.050241143289157165 pro­:0.01155112122369619 place:0.007056703381175113 :0.405741514203498 +before:0.3137480530726832 until:0.27475601684579193 more:0.19837620554038649 later:0.14062925906644508 after:0.0724904654746933 +are:0.023576289722930206 here:0.016442149873487247 tion:0.01065442273956824 of:0.009653684663731147 :0.9396734530002832 +to:0.7545967073753226 will:0.1656763351484752 They:0.00929849821168084 that:0.004189714159364924 :0.06623874510515639 +been:0.9755786184804279 become:0.005185333295626226 not:0.0042881325494999 kept:0.002362763600671594 :0.012585152073774215 +the:0.5604146623304377 a:0.05083606680599239 his:0.04901379897084781 their:0.036475131411717585 :0.30326034048100453 +that:0.15447882307911168 A.:0.1078813595627096 the:0.03594384715523752 large:0.02363194734746656 :0.6780640228554747 +this:0.45466084955479175 the:0.2700172782738177 tho:0.19117314414568698 which:0.0026515016705005523 :0.08149722635520294 +was:0.24189439829159715 and:0.17591404428891202 who:0.08277238575259137 a:0.07916756919360714 :0.4202516024732922 +or:0.5702217124462544 your:0.2437220040379334 at:0.031324646950904755 the:0.01460047497944161 :0.14013116158546574 +been:0.3968930332587255 the:0.01996829951596271 or:0.016178041928685914 had:0.013127703314269948 :0.5538329219823558 +come:0.11955673554902511 be:0.10416938754439892 go:0.09729834188216412 attend:0.07663496306640986 :0.6023405719580021 +gave:0.32380637574233945 let:0.3102241798888926 on:0.09359694515661479 by:0.039360023675783076 :0.23301247553637008 +tho:0.7838607226069102 the:0.21382890861402168 our:0.00015789895792274973 tbe:0.00013739224553436448 :0.0020150775756108442 +and:0.7682546141368466 at:0.09149183140112409 but:0.028535660289227893 aud:0.021375457058548777 :0.09034243711425259 +second:0.25250873185332867 one:0.21519003604937537 man:0.11744161169739303 body:0.08184795944380446 :0.3330116609560987 +should:0.5047379700182574 can:0.26031369160001494 might:0.10286201776035162 could:0.08616811257242704 will:0.04591820804894901 +and:0.2879213896840876 so:0.03590363808017104 but:0.03042723904994738 fact:0.026177944803698786 :0.6195697883820952 +and:0.10376971059520267 but:0.020377204917829357 As:0.01472288220007621 tions:0.014360223446086073 :0.8467699788408058 +in:0.1669078513518794 to:0.0807603083858677 almost:0.08066560069461329 mother:0.0695367947493846 :0.602129444818255 +the:0.42386238696137696 fair:0.1177213204998886 if:0.0320043391815442 an:0.028084441269471867 :0.3983275120877183 +the:0.5654557403597279 a:0.012832900263916227 tho:0.012123338073423596 to:0.008755832508916721 :0.40083218879401555 +was:0.800166078548985 which:0.01426967943815134 Second:0.009647922201105217 It:0.008849838309920836 :0.16706648150183753 +city.:0.10705356618902685 world.:0.03282111153831578 country.:0.020631648812041554 world:0.010004460332617014 :0.8294892131279987 +in:0.47674684826297464 over:0.19857336408032383 of:0.13912971632184223 throughout:0.1334249759868151 :0.052125095348044354 +the:0.8623346980108769 tho:0.0537041217493189 most:0.03455102483905791 be:0.023998825040506298 :0.02541133036024005 +to:0.49823511690216604 in:0.30412905937655216 by:0.10255760316232296 from:0.060576649349205425 :0.034501571209753515 +is:0.6652128873780707 of:0.2336624237933826 opened:0.016317997245019575 and:0.0061599005114917 :0.07864679107203539 +as:0.4997035054248829 from:0.13605580038722526 of:0.1064502105901547 The:0.05914675423666879 :0.19864372936106825 +days:0.31008880909666575 part:0.2960731616468919 years:0.18426535758387805 history:0.10642775983611953 period:0.1031449118364447 +information:0.08597457315424953 fall:0.02019931175271833 same:0.01082329576502489 bill,:0.010384564750371311 :0.872618254577636 +in:0.3498586945351839 and:0.2444183689347937 to:0.18209142004768644 for:0.10980668674366446 :0.11382482973867136 +death.:0.6559098937712036 them.:0.08621475749359588 it.:0.008571438246304445 3.:0.0004985099247257377 :0.2488054005641705 +and:0.20137551221588235 of:0.07088351063303946 the:0.05809320234341388 or:0.04319874916393266 :0.6264490256437318 +being:0.11434791202273668 paying:0.05327743246700302 remove:0.0518853081725874 got:0.022407528372647877 :0.758081818965025 +the:0.664874407035867 dis-:0.25245080161317435 these:0.02830726715240445 all:0.024745940559546535 :0.02962158363900766 +for:0.2039516944855787 process:0.11366604905622718 of:0.03459896644039336 corn:0.023240045902716604 :0.6245432441150841 +was:0.17112446078348398 is:0.15628321096127962 with:0.11020269096200758 be:0.04642752091997667 :0.5159621163732522 +and:0.41496759070073347 perhaps:0.3109940862666503 it:0.15999254912585778 I:0.05905250719888206 that:0.05499326670787648 +laws:0.06998764677095898 college:0.018954870536517614 order:0.016129779213777146 most:0.01552046779328708 :0.8794072356854592 +in:0.3458224986087139 with:0.24019874331045968 for:0.09283741241626123 that:0.07807827032642395 :0.2430630753381414 +and:0.10729137938911375 the:0.05738403868872264 of:0.05167589477333986 from:0.04877073241102886 :0.7348779547377949 +will:0.17760147128225537 entirely:0.13227206599223307 the:0.08316483210422217 highly:0.0710029795503211 :0.5359586510709682 +pleased:0.8726359522585088 charged:0.0007214752946981283 popular:0.00046432127129621733 and:0.0004097968434642868 :0.1257684543320326 +in:0.23818432977432602 and:0.23570353625821194 for:0.18517202501292046 to:0.18172453685726928 :0.15921557209727225 +printed:0.20658678328475094 published:0.1586470854623075 not:0.05611125089312182 looked:0.051095332582616844 :0.5275595477772029 +face:0.1091006396047921 hands:0.09098849441805659 event:0.06522182728733489 way:0.041595790191505465 :0.693093248498311 +d:0.08155201506348314 y:0.048594804959955926 n:0.02969097880778432 000:0.01422433390816857 :0.8259378672606079 +of:0.5385968783235986 among:0.4149545523364796 in:0.019890405047393728 ot:0.01334228869782922 :0.013215875594698778 +time:0.2812414318199469 distant:0.12275362500096772 other:0.12034339187680516 very:0.08663430877615333 :0.389027242526127 +runs:0.19009569676567178 grown:0.03434735564987385 covered:0.0010099559085234666 well:0.0005564220998997742 :0.7739905695760311 +be­:0.3122131970802334 be-:0.23881247733435254 be:0.10206843465039826 be.:0.05490668660165939 :0.29199920433335647 +to:0.9545996252793826 lo:0.010017868111187598 of:0.009359133927442552 with:0.007696632870463777 :0.018326739811523444 +date:0.9862776932042077 end:0.0019529017927407688 time:0.0009637455590605144 head:0.0008535074427427707 :0.009952152001248228 +the:0.10693113870041447 and:0.08491956924734755 to:0.06935296996221932 of:0.06846612056294403 :0.6703302015270746 +cars:0.17594140579955497 country:0.10836079496043977 party,:0.053627373126732304 train:0.04786365831235401 :0.6142067678009189 +to:0.6977016310868378 will:0.08577711458204407 and:0.07654991976620659 shall:0.07445060250439102 :0.0655207320605205 +of:0.4848265272933103 were:0.24647892967542287 and:0.13631901028827823 at:0.10441419166460443 :0.02796134107838415 +to:0.9998191208150233 lo:3.6517071900863345e-05 a:2.581412683144215e-05 not:2.4650635482068066e-05 :9.389735076236845e-05 +enough:0.8657707500169997 relief:0.014676265214278925 is:0.0070433359049357595 was:0.006896175392218866 :0.10561347347156681 +able:0.9584514740543639 likely:0.018771927364461892 compelled:0.0050176479481276485 put:0.004466263032930194 :0.013292687600116265 +report:0.22429673577084783 movement:0.13836112624962632 contest:0.08849594415672474 idea:0.04082468975084807 :0.5080215040719529 +and:0.6340194810838524 to:0.3420051968621737 as:0.01073029954627065 in:0.005752158914347466 :0.007492863593355836 +action:0.013749163590204753 use:0.012848668775733612 people:0.01280436742633331 members:0.012789390419033224 :0.9478084097886951 +who:0.15757929321420935 of:0.13695213046363305 and:0.1312757311519355 in:0.08790781141907958 :0.48628503375114257 +than:0.30473805141258425 early:0.13058796970712477 and:0.09884668076052104 as:0.08063741309106896 :0.38518988502870105 +in:0.9365402705248826 In:0.017915734557650338 to:0.01130090368440615 with:0.00858454291734095 :0.025658548315719603 +by:0.6811899078225965 in:0.14886261649628552 from:0.08615877675625765 is:0.02432060713516394 :0.05946809178969657 +act:0.07758713503297203 have:0.05932904163970906 live:0.028554281899383315 look:0.027419930523208503 :0.8071096109047269 +have:0.29729104643275683 and:0.11069213204013809 havo:0.10173874678039281 is:0.06424624563997261 :0.4260318291067398 +and:0.04572998824798949 of:0.035597892149332476 4:0.025862910090442018 5:0.017145862315707847 :0.8756633471965283 +conclusion:0.3670455213335894 station:0.23989610587667626 point:0.03948620484885075 thing:0.03280800080451837 :0.3207641671363652 +and:0.1784984762907651 the:0.0852444668881942 The:0.07701645836666307 of:0.06911009433939853 :0.5901305041149791 +was:0.3149447263798268 is:0.3070755402339061 are:0.23790720215162783 were:0.0701027199013611 :0.06996981133327816 +fact,:0.18036270487668615 fact:0.16976890666653646 state:0.08240899532791884 country:0.051609898663752034 :0.5158494944651064 +of:0.05523522327369038 Mary:0.022050396940541908 E.:0.013318247305846569 the:0.007182532534579247 :0.902213599945342 +and:0.1080815311621165 the:0.0636494773162217 of:0.06358251686462651 to:0.03871406017907904 :0.7259724144779562 +before:0.3165219775074307 he:0.2203035148484924 by:0.12320275106966298 to:0.11132570842399996 :0.22864604815041384 +met:0.06815318499346765 stood:0.05877712310359377 meet:0.029308852644895855 made:0.02342888011073768 :0.8203319591473052 +and:0.2355025924316075 to:0.15904944970496107 of:0.04673474087977495 In:0.04278890548809512 :0.5159243114955613 +the:0.2990750076635574 New:0.1880948841281907 this:0.047085466843579366 tho:0.0347748048703091 :0.43096983649436343 +states:0.3689410542255862 says:0.13470908988164826 shows:0.07751284226924111 stated:0.07100178820478463 :0.34783522541873974 +of:0.6457926016612417 I:0.0851848069142131 to:0.07843215326510534 by:0.058443387434836735 :0.13214705072460303 +was:0.7269993808150649 had:0.1049928054756775 would:0.027925454619744175 said:0.022851789402599944 :0.11723056968691341 +the:0.44054524721366534 be:0.2989577271876097 said:0.0437991425912892 a:0.023183721803583936 :0.19351416120385195 +and:0.04507393738235681 8:0.032407168442594815 of:0.02931139878409227 the:0.028808288715196032 :0.8643992066757601 +was:0.4280239923670552 is:0.19345623225150352 were:0.18384198051870007 are:0.09994640841260127 party:0.09473138645013987 +recorded:0.829545704919128 ami:0.06666947120464702 and:0.01543044977352145 ten:0.014457818824865583 :0.07389655527783802 +chief:0.27065671834035415 the:0.16478891915343286 city:0.15152294980000627 county:0.05958742885134733 :0.35344398385485926 +blood:0.1260054575179939 equal:0.020987862229046274 here:0.014966651227595018 life:0.010922165444889576 :0.8271178635804752 +him:0.05426742341393848 me:0.03918608968940832 and:0.029688761525532754 have:0.029621085274661587 :0.8472366400964589 +and:0.14258802434150902 of:0.11556540569181804 or:0.10701665169050063 are:0.0948195444509479 :0.5400103738252243 +be:0.9049678566003627 well:0.02274997970064938 bo:0.013086093874247869 claim:0.010230005185701586 :0.04896606463903844 +full:0.2012167171254865 York:0.030648400301680385 was:0.01688210735028312 the:0.013591154274799568 :0.7376616209477503 +too:0.77705266560612 and:0.06616928497560466 the:0.03786068620890478 of:0.013126716680160093 :0.10579064652921057 +of:0.5641121506793215 when:0.1292420915160895 to:0.0666718885223662 by:0.06075596430957632 :0.17921790497264636 +only:0.6328973156822363 red:0.04283986286238971 de-:0.03409838451009051 great:0.026167481642255 :0.26399695530302864 +more:0.5994806740279702 only:0.09932905293651308 especially:0.05513657081453304 also:0.045586421254806254 :0.2004672809661773 +shall:0.3952886444263377 and:0.11781265555083532 would:0.06196089926982877 to:0.05747499039426163 :0.36746281035873657 +and:0.06331453556458067 of:0.04630987651674033 .:0.03832295478790669 the:0.037380704761018575 :0.8146719283697536 +received:0.22914522682022165 made:0.08174215820684931 arrested:0.0800752225392048 stopped:0.06488013060625303 :0.5441572618274713 +the:0.25632226918541 four:0.09377684186638059 that:0.016527145074662436 their:0.008697687561873217 :0.6246760563116739 +of:0.9969337640239568 in:0.0023592435631839184 between:0.00025477585621424913 ot:0.00023291621096927298 and:0.00021930034567581115 +than:0.2529934914375869 and:0.16145808124310523 more:0.06503145016403873 the:0.05179793207565604 :0.4687190450796131 +The:0.18840601339918017 In:0.13315326057743884 that:0.09111281387650087 It:0.06729024037524779 :0.5200376717716323 +home:0.14635684907518126 boat:0.05668129943591494 bridge:0.030229210371727704 the:0.023918754231601794 :0.7428138868855741 +the:0.5592763813525125 a:0.14898791462016023 an:0.03411925625442807 tho:0.03391053972970722 :0.22370590804319207 +every:0.40528323586190473 all:0.11659100924632723 the:0.10233442508028723 a:0.06783247544754961 :0.3079588543639311 +be:0.2370540397544373 have:0.06392219146105835 secure:0.06296531029087683 of:0.0568414180768331 :0.5792170404167943 +and:0.09845549092715364 of:0.09490436849697946 the:0.05601740109148912 to:0.03857091013362262 :0.7120518293507552 +no:0.20364853814736508 many:0.17227451010149103 two:0.1200038722155307 several:0.0710927616169079 :0.4329803179187054 +it:0.03516549571667977 team:0.014534313007417133 there:0.01348568792143196 what:0.013482793385396033 :0.9233317099690752 +he:0.5590555773428716 she:0.13009379567972115 be:0.08414140578297748 we:0.06061841939601036 :0.16609080179841929 +and:0.20688225150603645 is:0.1276123057488456 with:0.09524595273846985 by:0.0648574808037966 :0.5054020092028515 +and:0.24479225780794903 but:0.11535228372223884 which:0.034215220583070735 But:0.02605058173076864 :0.5795896561559729 +and:0.10282047458858615 but:0.06718508214388909 convention:0.06352027261452105 County,:0.03400270481920164 :0.7324714658338021 +they:0.4778577566757931 we:0.1797210396067443 then:0.014772396227972287 you:0.012124645822186165 :0.3155241616673041 +bill:0.08668911035516612 gentlemen:0.044394896200384094 question:0.043338634531016884 meeting:0.03158238150038455 :0.7939949774130485 +placed:0.31091645293090703 rapid:0.06358771815669725 sudden:0.030356853140424366 hard:0.02027894861032852 :0.5748600271616429 +able:0.12350993357583369 enough:0.12086829985168307 less:0.03098419273354257 cent:0.028604304977811124 :0.6960332688611296 +which:0.8397299073598784 It:0.014316351638091751 and:0.013627757973076176 he:0.010593072401407954 :0.12173291062754586 +feet:0.7840780049026874 miles:0.09430525443615956 mile:0.023433003789998068 yards:0.0006895752738940346 :0.09749416159726086 +and:0.18129424224625879 that:0.08379690934422566 but:0.05331381719630124 which:0.03037036726772013 :0.651224663945494 +to:0.9996878312745375 by:0.0002767595770694169 reached:1.1353429998087499e-05 of:7.474221950673226e-06 :1.6581496444244613e-05 +however:0.20069065492793073 there.:0.043636006904780575 from:0.03294478507402759 with:0.026980377978955434 :0.6957481751143056 +fifteen:0.24271953952158196 twenty:0.12556599965373752 eighteen:0.10463139460311675 sixteen:0.08792060146651233 :0.43916246475505144 +and:0.3265466913310749 by:0.06796617747970307 to:0.05333064802472518 mid:0.04798096326971822 :0.5041755198947786 +o'clock:0.526075445346183 11:0.022189786138908815 6:0.013322336465902019 10:0.007532653246558336 :0.4308797788024478 +to:0.6567769312937661 in:2.8442465621641958e-05 my:2.1867214783860862e-05 la:9.517589486644018e-06 :0.34316324143634186 +avenue:0.6368539903227638 street:0.3183928756332407 east:0.009808922804485825 contract:0.0026437493380892132 :0.03230046190142035 +carried:0.152480889916934 thrown:0.03273399183994707 under:0.0062089637957593756 started:0.0012031324154708016 :0.8073730220318887 +and:0.15609553068558707 but:0.05153092759040544 but,:0.039725996935683024 while:0.03524968255062317 :0.7173978622377014 +the:0.8097008185465502 that:0.12122418116305399 not:0.04534207938408815 tbe:0.009554495751444228 :0.014178425154863542 +been:0.6697988280337812 no:0.13023951414683727 a:0.03256526164502078 the:0.021148664931753942 :0.1462477312426068 +of:0.2923829037223712 in:0.20608406675843427 In:0.12400002605809077 to:0.10107560285017843 :0.27645740061092533 +other:0.6268411371182372 public:0.07435681897885711 special:0.049742396060882085 important:0.027982851625869262 :0.22107679621615428 +They:0.1145975389182688 who:0.07305726763401052 There:0.06494748203525287 they:0.05774586424223645 :0.6896518471702313 +difficulty:0.02527482965192079 Court:0.02048958756588975 and:0.01821909426843844 that:0.016358740034170028 :0.9196577484795808 +in:0.013229146601938638 down:0.006123986009331242 property,:0.005532473697873586 school:0.004768130192312062 :0.9703462634985444 +of:0.25154625764061217 and:0.09447415099103455 the:0.042390393441321464 The:0.03541915501254293 :0.5761700429144888 +destroy:0.18709571860508628 support:0.122399851915069 protect:0.04419372277135069 aid:0.0409671695063393 :0.6053435372021547 +over:0.17553757030355077 nut:0.0019222608501646618 the:0.0007902428769551505 once:0.00038222370514679827 :0.8213677022641825 +and:0.2148586231561518 or:0.21279502769148106 provision:0.025011066912177866 operations:0.022814106351267426 :0.5245211758889219 +in:0.2349863436838095 to:0.23220271221140681 the:0.17286191355520564 a:0.08674451070392598 :0.2732045198456521 +spite:0.025737206719547354 scribed:0.004458882841399414 the:0.0033349973439713706 good:0.0021292286113293248 :0.9643396844837525 +On:0.2894642266703468 in:0.2057843665724238 before:0.12020690973491299 on:0.10289161297020208 :0.28165288405211436 +said:0.6252160592387193 lot:0.08546945750402012 Jersey:0.05160573391537435 Railroad:0.044571366796649255 :0.19313738254523713 +no:0.5912897950768543 any:0.2806876951107126 a:0.006130558553977589 cut:0.004278373465498991 :0.11761357779295643 +be:0.9073756364190481 bo:0.06853271955288094 he:0.011760576772861428 not:0.006264210960076246 :0.00606685629513327 +said:0.021935413648405427 us,:0.015292512247637629 such:0.014228715300079861 question,:0.013664279079867848 :0.9348790797240093 +believed:0.5478990569008164 likely:0.16637833431011456 naturally:0.1510543524382857 not:0.05725199247277887 :0.07741626387800446 +which:0.1193683796357014 who:0.10867547259295993 There:0.08010886576263501 they:0.07970017884277013 :0.6121471031659336 +and:0.11250702489682818 the:0.100277843916153 of:0.08270728142745633 to:0.05196640026935486 :0.6525414494902075 +that:0.05473156649807551 and:0.04930884816460834 treatment:0.04655403942116015 her.:0.04538710835783055 :0.8040184375583254 +cut:0.2114998076175022 raise:0.08332540326926749 increased:0.07103643863037062 increasing:0.06500997413165746 :0.5691283763512023 +a:0.7061238253930002 the:0.18391237277250222 and:0.027234161613628797 1:0.02047241342199196 :0.06225722679887669 +Gen.:0.997348098168978 President:0.000902880629436857 young:0.0007007064503367756 the:0.0004635995048755657 :0.0005847152463728448 +on:0.44038926629096087 and:0.06273868243548415 called:0.0604113731147039 made:0.053065555495526086 :0.3833951226633251 +of:0.5769807800413139 it:0.21689370742671923 the:0.04850946582094821 for:0.021892783745022956 :0.1357232629659957 +caused:0.0882570582698931 and:0.05033102812073658 followed:0.03882483659957923 but:0.03482402660360741 :0.7877630504061839 +and:0.11773097241840778 the:0.10495431753901388 of:0.0814561904446123 a:0.04985668305580559 :0.6460018365421605 +know:0.19219266523046866 come:0.03772299752376292 stop:0.029749456390284645 so:0.02689495927678615 :0.7134399215786977 +H.:0.011042243705470927 F.:0.007750830448934082 L.:0.00502326467721545 N.:0.003991385613263433 :0.972192275555116 +brought:0.17736710443383708 carried:0.09346729257164686 led:0.08092032721159623 and:0.04297677120921789 :0.605268504573702 +east:0.3043279907342185 street,:0.042842606201883765 south:0.03623563335971727 3:0.029985226718914747 :0.5866085429852655 +Mr.:0.25199284359196694 The:0.2016506809516959 of:0.09071419777156199 and:0.0848629200313866 :0.37077935765338865 +of:0.5393847880874987 to:0.2543357444608173 against:0.0026365283094023683 about:0.0021101396065749513 :0.2015327995357069 +the:0.3015600592317615 a:0.29254794021222924 her:0.2044239675347113 an:0.08861346416094336 :0.11285456886035457 +on:0.4067004726808896 from:0.2511468335221279 by:0.08282636818519858 of:0.07214644358106476 :0.18717988203071909 +the:0.4598418958003844 a:0.0468514502585183 this:0.03309289869847087 tho:0.02858601918875299 :0.4316277360538733 +some:0.4294840271510654 the:0.2104210766887498 this:0.1632832992501666 a:0.08038974010627996 :0.1164218568037382 +and:0.06058794982486938 hours:0.04771456682184476 now:0.02727363905453744 Friday:0.013004035999828386 :0.8514198082989201 +the:0.5024477821834716 in:0.15486067238368012 a:0.11545025787342467 this:0.06723008287905889 :0.16001120468036478 +kinds:0.12900837705094928 parts:0.08608509139615457 classes:0.06417286529334262 lines:0.04371868914230391 :0.6770149771172497 +last:0.2652000954016381 extra:0.0750737969668237 only:0.03709617180365327 gold:0.02513986367106403 :0.597490072156821 +his:0.16165068748425454 the:0.12844852458251918 him:0.12487553343860551 to:0.10701033393480644 :0.4780149205598144 +it:0.8225078228755456 It:0.016919799079764253 which:0.014008235428762976 statement:0.013078831323936783 :0.13348531129199037 +of:0.9901194961624029 ot:0.001241640800834884 so:0.000692148768747079 or:0.000609325114806744 :0.007337389153208207 +There:0.24333507349607414 a:0.18700845751765713 was:0.0844578245743465 and:0.06254277082667749 :0.42265587358524476 +could:0.9635322120459378 should:0.019187977887173843 never:0.006114646527583569 always:0.005315700899598545 :0.005849462639706222 +of:0.30642512268504524 in:0.18650131580809232 and:0.13030830556963965 to:0.10627240896470264 :0.27049284697252013 +and:0.17790411997127428 j:0.17460215194980366 the:0.13899580242579107 to:0.09460944076881467 :0.41388848488431634 +second:0.056453122033537015 third:0.03382914957402762 old:0.01926476360358085 strange:0.01735412676567902 :0.8730988380231754 +of:0.3654979393680288 to:0.16445418591021943 in:0.12600944305891276 from:0.11964833766371465 :0.22439009399912435 +the:0.23541413699319277 Federal:0.19595739207530413 this:0.10592947914537214 her:0.04900369533752551 :0.4136952964486053 +to:0.3507124885735081 by:0.14033561413101914 with:0.1377987819061974 in:0.10280042710843006 :0.2683526882808453 +character:0.05194330001421651 better:0.047988684378882505 result:0.04793236689518991 duty:0.04538963175470266 :0.8067460169570084 +said:0.041455353408009946 most:0.022396772601143998 the:0.0194444869137843 old:0.01832362439987988 :0.8983797626771819 +service:0.330045431379751 services:0.189283670904887 forces:0.033082957030432326 rule:0.0175405710558077 :0.43004736962912177 +ability:0.011139069584842605 him:0.005183819601321459 go:0.0022727911065540674 order:0.0018001039354596541 :0.9796042157718222 +same:0.04480019672641422 of:0.03435290888470461 mental:0.02426931349077676 financial:0.022421915799741652 :0.8741556650983627 +They:0.2998749990287752 to:0.24976758631969778 in:0.11674495400330073 the:0.07604059117718007 :0.25757186947104616 +us:0.10243477646316032 how:0.08996052195965597 is:0.07330370986815599 themselves:0.07061222448999634 :0.6636887672190314 +ship:0.1700246191784982 township:0.08147113617275457 of:0.05675059184957697 at:0.03413383480617262 :0.6576198179929977 +of:0.8021127149121642 in:0.0991140600392605 ot:0.030235865767929675 for:0.026252702876492978 :0.04228465640415266 +the:0.2701108103924392 a:0.053669950414327476 be:0.051714959354410464 his:0.03548968499994305 :0.5890145948388799 +to:0.31400202948865497 of:0.1683732632921593 in:0.15094328002640833 with:0.11499388000605923 :0.2516875471867182 +In:0.5589569847243189 in:0.39375244784938923 being:0.014559438954460432 iu:0.006156004927994192 :0.026575123543837332 +hundred:0.5197778619973328 thousand:0.19075635298877044 few:0.159332091430203 dozen:0.10233723567725175 :0.027796457906442112 +the:0.18012530333772134 animal:0.0630064777038921 to:0.04664689482094216 water:0.045713571995944405 :0.6645077521414999 +who:0.15504899383215598 they:0.09893643878098149 They:0.07597366771545942 and:0.07459556858986659 :0.5954453310815365 +in:0.9128020555638023 In:0.04182197216617956 a:0.011873841340624936 as:0.010521809762764444 :0.022980321166628678 +payment:0.024659184141177713 action:0.021894082128627826 attention:0.017964746288564738 people:0.017385676346911245 :0.9180963110947185 +he:0.28677161350736646 be:0.20797082007035517 it:0.1338627745410354 and:0.12088999287637188 :0.2505047990048711 +of:0.33254757721327793 and:0.19764641103072503 a:0.12946403441187515 in:0.12483550503355484 :0.2155064723105671 +a:0.2345304209718273 the:0.16940217997785978 his:0.06369728851275562 their:0.042113164541796956 :0.4902569459957603 +to:0.9550289422624674 would:0.01845596575786713 not:0.008236640151915189 expected:0.007891236555878868 :0.010387215271871357 +placed:0.19420772038910666 had:0.08599742096041493 has:0.059378160047116206 used:0.055076551568823406 :0.6053401470345388 +the:0.6429367463164715 Mr.:0.20966353645129665 a:0.03659751371741355 tho:0.025283388144847676 :0.08551881536997069 +U:0.23255116129340767 to:0.08788136051825415 the:0.07529240922059524 had:0.07507073551754428 :0.5292043334501986 +States:0.5925859725824792 States,:0.04884651943881858 States.:0.015716665806340964 states:0.007994446602122441 :0.3348563955702388 +¬:0.010515124615551921 i:0.0035771641087858335 and:0.00036627643568015137 of:0.00021920985935131704 :0.9853222249806308 +of:0.14642731095548622 few:0.09434648462228436 and:0.074088047056419 small:0.06903473875668248 :0.6161034186091279 +paid:0.48967979824012703 delivered:0.031116183032393895 offered:0.0004318292389356657 went:0.0003281177390692566 :0.47844407174947406 +course,:0.14658535246548235 age,:0.06847341722676771 government:0.06450318673495886 which:0.0353994255208619 :0.6850386180519291 +.:0.834948214795638 .,:0.026803965472043008 -:0.005551533763339296 the:0.0023272677211724066 :0.13036901824780725 +the:0.6991315696605851 his:0.12883341507053186 this:0.09539832304153777 my:0.036948851663697366 :0.03968784056364774 +any:0.9058246320321994 all:0.08429142670813197 the:0.005314948444788388 ail:0.0013548455998282725 :0.0032141472150518744 +of:0.09150743207504058 line:0.07004839479328362 and:0.04545695466178184 to:0.04324341469806419 :0.7497438037718297 +city:0.49141660676880805 light:0.20815124750511765 water:0.06346782723442249 matter:0.025763098982017337 :0.21120121950963444 +arrival:0.07610691468719402 death:0.06895689041005962 subject:0.047369546347583454 question:0.031319570968682 :0.7762470775864809 +day.:0.061047943685511204 de-:0.02479373925284634 year.:0.020403952240943168 ::0.014578712872311694 :0.8791756519483876 +of:0.48911716108586445 on:0.3770569235684547 that:0.051108005432683096 is:0.015576245633202103 :0.0671416642797958 +him.:0.0715269786839781 As:0.06271283143548953 home.:0.05718197633745387 day.:0.044753143117324534 :0.7638250704257539 +home,:0.7637126225756788 home:0.0014070266729157455 residence:0.0004338543541042079 of:0.0002516922149640852 :0.2341948041823371 +protect:0.08069865399911125 show:0.07165647831879629 cover:0.05561560604240675 make:0.05510674607821303 :0.7369225155614726 +The:0.1357076388787766 the:0.08852331609773677 h:0.06859486447729407 and:0.040545644980544956 :0.6666285355656476 +make:0.0509741586327674 attend:0.044972633251488627 be:0.040089973406175476 see:0.03666944473098049 :0.827293789978588 +States:0.08162163074956778 States.:0.014414885610849857 closed:0.0016638256002936972 St:0.0016354814909903344 :0.9006641765482984 +question:0.22331761574016706 which:0.2081903029547302 are:0.18787548723949468 and:0.08367462889466129 :0.29694196517094673 +made:0.05510058626622713 won:0.02619939368344071 caused:0.02294280739925851 followed:0.022663621144738858 :0.8730935915063346 +owing:0.524829475145583 and:0.06342214595482766 but:0.03245116665264577 according:0.01827597243605965 :0.3610212398108842 +State,:0.5310841809494258 education:0.015060892223115777 and:0.007245385103226816 it:0.005058592147178949 :0.4415509495770527 +tor:0.06859141305597967 people,:0.03865284901568604 may:0.03788473712620153 U:0.024107237879795823 :0.8307637629223368 +while:0.1654828883325702 my:0.14715705131217338 and:0.09455285985702375 the:0.03066932010588946 :0.5621378803923431 +This:0.15644950019148382 in:0.1327841154061524 of:0.1303197816629808 During:0.11591391310979252 :0.4645326896295905 +whole:0.1003049675203288 that:0.05949464548092904 money:0.04256962353447334 in:0.02441488359360821 :0.7732158798706605 +in:0.6469752728240098 at:0.1644228179016224 of:0.10195954226085958 and:0.052804998526168184 :0.03383736848734 +ever:0.688323587775206 probably:0.13232838250273032 always:0.10188430346266603 it:0.06562903949079228 :0.011834686768605407 +man:0.43861165890138704 girl:0.18305266828588052 woman:0.03160015327719855 lady:0.018918583077280553 :0.3278169364582533 +county,:0.03931554173700777 ;:0.03593790237668352 ment,:0.018286181303444407 County,:0.017621279770546523 :0.8888390948123179 +in:0.33293391532235395 of:0.19765379019737025 for:0.15570462843160424 to:0.14508248507734234 :0.16862518097132922 +W:0.011287160479204712 25:0.009854853226106143 in:0.007173561966406124 hand:0.005595733158981978 :0.966088691169301 +it:0.32052707295293503 he:0.1280389700601281 default:0.051244203687787836 ever:0.046590882373980146 :0.4535988709251686 +the:0.09420158421834317 which:0.05109375612988068 a:0.016909873708223305 tho:0.013694275472063927 :0.8241005104714889 +that:0.9820494769894488 as:0.010800384660363536 when:0.004377773633495501 that,:0.0023162144874233964 :0.00045615022926881715 +morning:0.6462893692222388 men:0.08232864506152159 school:0.05000884246300019 morning,:0.046414046556637285 :0.17495909669660212 +the:0.8638729982476246 tho:0.08442678458420953 tne:0.012598256169768462 tbe:0.008718193366325254 :0.030383767632072085 +and:0.10253370771025841 of:0.0865323930368307 the:0.05579766032781778 to:0.034132486547816705 :0.7210037523772764 +other.:0.03758781548562457 water.:0.005161258814795782 ground.:0.002610320293466811 money.:0.0022959635331988603 :0.952344641872914 +cannot:0.42180477545011025 to:0.12622315381299037 who:0.08147214260664448 should:0.03208718537385805 :0.3384127427563967 +and:0.26324360186548773 as:0.08093324368369505 commission:0.05501456574945827 above:0.03326850487004487 :0.5675400838313142 +tion:0.06452808720162981 one:0.05289899100441468 day:0.02404467570522779 which:0.021141907074004734 :0.8373863390147231 +people:0.22532336256494775 interests:0.14612196794526808 which:0.07167462512605231 who:0.05709740249647791 :0.499782641867254 +We:0.8272466851249387 They:0.10812650558964233 I:0.022832468763749992 who:0.013504646265193938 :0.02828969425647482 +the:0.055097194140917655 York:0.044591607919331915 that:0.043533093600340064 York.:0.038683069348801974 :0.8180950349906083 +About:0.24699954205680322 or:0.19522365403573821 and:0.14453193061190087 nnd:0.14199416750326901 :0.2712507057922887 +of:0.26933858400099003 and:0.21548082867448812 in:0.15241133434266693 to:0.14839017016294836 :0.2143790828189065 +of:0.20293065411363792 and:0.09792012823431503 was:0.09785423328783405 is:0.08580809208454175 :0.5154868922796713 +majority:0.29424689729496756 tion:0.08159343503905998 one:0.04849601732398239 many:0.04271439701650076 :0.5329492533254891 +his:0.7541385965912119 the:0.13311499456769835 their:0.03492808514825439 her:0.033835920645718096 :0.04398240304711717 +period:0.22618812572688227 rate:0.046903405423477235 hour:0.025715286652401227 fee:0.02069030968131592 :0.6805028725159236 +that:0.44691209540202914 the:0.154342308751156 which:0.15308353256669668 as:0.13284077272080808 :0.11282129055931014 +he:0.9926032511790447 and:0.0026577266391542764 which:0.00013495227326009942 it:0.0001284600542364747 :0.0044756098543043505 +50:0.38662216518300285 to:0.1323871321879566 @:0.06984482026598508 and:0.007561422128515846 :0.40358446023453964 +the:0.03520179897833277 up:0.02235359659748319 him:0.0212438181050582 it,:0.02016002962883167 :0.901040756690294 +it:0.31374194699214475 them:0.2693997024925738 ing:0.04083962698678544 than:0.03336642030298631 :0.3426523032255097 +receiving:0.8336866962074174 being:0.013806409746747473 to:0.011173126496585525 and:0.0020378782059092566 :0.13929588934334053 +and:0.1989249635467637 its:0.14194209714165676 quite:0.07540623641001917 a:0.06602648485177155 :0.5177002180497888 +order:0.20249316955974334 earth:0.10751827144150439 progress:0.07548927913520125 life:0.043089056772529846 :0.5714102230910211 +of:0.2643687260657952 and:0.11988161224513522 the:0.05068629689478014 to:0.027070689793000556 :0.537992675001289 +the:0.35874078579598734 a:0.03159031755639215 said:0.030932900111880254 this:0.028816134705273562 :0.5499198618304667 +coun-:0.02977263936529752 States,:0.015803919164058378 farmers:0.014451544068926068 and:0.01011808376709405 :0.9298538136346237 +I:0.2698047640492177 of:0.032995246596793766 was:0.030664752517676887 the:0.015551575849406618 :0.6509836609869051 +where:0.9177713746045765 and:0.025901626181786055 of:0.01402755324616767 till:0.010416298676067429 :0.03188314729140238 +the:0.35887032584612366 tha:0.27437310932832093 permanent:0.2230617994145163 a:0.028946404401761893 :0.11474836100927734 +old:0.17332922876734577 Central:0.09985607228775605 Fort:0.09522826032333523 Southern:0.03609856937972166 :0.5954878692418412 +has:0.5459190649708561 and:0.4113981144867565 numbered:0.007659113818735174 section:0.004701988369925542 :0.030321718353726778 +man:0.10842335241806302 citizen:0.09825959321799178 man,:0.053555868290103094 g:0.027121195309711417 :0.7126399907641309 +the:0.5781410145601393 and:0.044883058118973126 of:0.02938621363129483 Christian:0.025867735312629495 :0.32172197837696337 +name:0.5744844479234331 nomination:0.04962267914831359 use:0.021667520030836957 addition:0.021352651890690567 :0.33287270100672584 +and:0.07712646301567203 of:0.023931513536269704 Committee:0.018224169471287025 was:0.016049901854312095 :0.8646679521224593 +of:0.43343257078068015 and:0.07679467567043169 the:0.03256765272527062 ot:0.028304944558107538 :0.42890015626551015 +industry:0.25140821068117136 morning:0.14166553567475257 mass:0.021658413875919717 report:0.020586960027240687 :0.5646808797409157 +is:0.20460980697567172 in:0.14710768760339893 and:0.13868487800377835 never:0.13156878993167573 :0.37802883748547533 +for:0.26993403212159434 expect:0.17776653431679793 in:0.15862687147607876 with:0.12183125857722961 :0.27184130350829944 +amount:0.5801104404942096 prayer:0.08292780806107469 claims:0.07580717954912268 payment:0.013642128028098369 :0.2475124438674948 +to:0.16058396180762582 country:0.04731137573363762 State:0.0329627533102716 own:0.028652398880797823 :0.7304895102676671 +to:0.997986120149325 that:0.0003125071195170211 interests:0.000281935469767445 they:0.0002338463184391647 :0.001185590942951485 +home:0.3275066469326948 friends:0.038914950331319365 man:0.02528812827972285 residence:0.013979618954467572 :0.5943106555017954 +left:0.3883329409356195 rapidly:0.04481662849459738 thoroughly:0.033154468458766156 in:0.025052827579323627 :0.5086431345316933 +im-:0.9820152216805598 than:0.0013914669163415485 and:0.0011426978087571748 the:0.0007156191185710468 :0.014734994475770417 +people:0.03928655113088822 war:0.02992571980806689 law:0.029231121376958335 tariff:0.028609483337496754 :0.8729471243465898 +horse:0.10851191014971721 party:0.009347620622712518 of:0.004300421743565758 ever,:0.004127452897182576 :0.8737125945868219 +now:0.2985391669092962 of:0.28856589378352765 which:0.14190626570374748 from:0.11743613615252119 :0.1535525374509073 +war.:0.07612452753281039 him.:0.009435661160624 the:0.005060897979332957 good:0.0014995788293962822 :0.9078793344978363 +the:0.695956593204294 tbe:0.12161145618523427 an:0.10483943249490303 tho:0.04553646041130826 :0.03205605770426036 +of:0.19996282442103971 and:0.10376106277123325 be:0.05423559243275764 the:0.04139701709965707 :0.6006435032753125 +is:0.41868916786732435 of:0.4182323802006407 class:0.035030693200508514 he:0.02041089581039291 :0.10763686292113342 +now:0.20153658013453704 not:0.1136353641637729 spread:0.07135344740052009 to:0.05775933238338148 :0.5557152759177885 +and:0.008656057735454498 this:0.007351681902675577 these:0.005010232312210901 These:0.004681076790475781 :0.9743009512591833 +make:0.3281394504481486 find:0.1466450715879794 such:0.06706577663588516 be:0.05561987537011138 :0.4025298259578755 +last:0.4552137819198217 present:0.19220277048752493 the:0.06495560581387466 conference:0.046468039141096776 :0.24115980263768189 +said:0.45448354081174436 thought:0.1007507520359496 found:0.08418585641698735 said,:0.04720882983669705 :0.3133710208986217 +and:0.12476256558390007 the:0.05820371993196668 The:0.051948458809533575 of:0.047279074395433406 :0.7178061812791663 +without:0.32162071507624856 of:0.2117321276217898 to:0.04692288063756639 in:0.04587015025364252 :0.3738541264107528 +ture:0.14953719197395832 down:0.147835689443281 which:0.12031887707435507 weather:0.11514580614728752 :0.4671624353611181 +by:0.3270412266127572 as:0.22148933139233687 be:0.18919059596143528 gets:0.08615581201595968 :0.176123034017511 +raise:0.11378270035962992 hope:0.03701704240199052 that:0.03157732386993019 day:0.01923514706915647 :0.7983877862992929 +favor:0.8722648425705065 case:0.051874261090820745 times:0.04302148705811712 cause:0.0074963976838862655 :0.025343011596669452 +weight:0.09800753232358565 amount:0.05611976489309514 force:0.044513680529132856 condition:0.021010869566539997 :0.7803481526876462 +records:0.06416762081458674 people:0.00890844848613355 people,:0.006084142837493219 city:0.003879386868537927 :0.9169604009932486 +the:0.11271862212586656 and:0.08731351432804785 of:0.052109155503943884 a:0.04670773218344182 :0.7011509758586998 +and:0.15566455771071205 the:0.09863933261008143 The:0.09196669840148289 I:0.06228634503255123 :0.5914430662451724 +in:0.10808312837210352 of:0.09780286520241871 and:0.07388151999329888 made:0.05713891702730994 :0.663093569404869 +and:0.3176046296326714 but:0.1475936278886753 that:0.10415893527611549 as:0.038643492780612645 :0.3919993144219253 +estate:0.23619811600078477 corporation:0.10347269542769699 bonds:0.04098231596280916 county:0.02940706714059654 :0.5899398054681125 +and:0.1619723889335315 where:0.07796772073539351 as:0.05910376045818686 but:0.04961896405688943 :0.6513371658159989 +be:0.24477127967858311 stand:0.0794227208301432 to:0.07373491264601116 the:0.05660257590808407 :0.5454685109371786 +of:0.12368116127627987 and:0.1088352895730348 to:0.08743714395096641 or:0.031847669054093905 :0.6481987361456251 +cash:0.022942383448432472 his:0.02252150211394383 not:0.01542490213558069 died:0.012600577649182411 :0.9265106346528604 +which:0.2877767892761256 it:0.21471413015584578 was:0.13403621985008218 It:0.1249951836759411 :0.2384776770420054 +the:0.3440997073651239 and:0.09814106224006597 The:0.04939205966647176 of:0.03844493526025364 :0.4699222354680848 +he:0.8794410217057254 that:0.04500749511431601 they:0.02646355050932163 it:0.021005605628695537 :0.02808232704194154 +and:0.23857453438694953 and,:0.16575192770227504 so:0.06372425449783803 ;:0.05341374279730028 :0.47853554061563713 +the:0.055827486036286476 much:0.03960145145541753 serious:0.03591430419017132 a:0.03477461379878503 :0.8338821445193396 +is:0.5395470407877592 was:0.17307472018693543 and:0.0943916798467027 of:0.08198364807944222 :0.11100291109916055 +been:0.5910118467792284 become:0.01123446505454818 made:0.006538184894330791 created:0.0019304988597862718 :0.38928500441210634 +old:0.8405969930478199 engine:0.02313616250473504 ice:0.003489609568763039 a:0.0020509423018990284 :0.13072629257678303 +week.:0.0019998076980211523 hill:0.001844211625698814 state.:0.0018282942719490256 day.:0.0017635529472177375 :0.9925641334571133 +conditions:0.0176207260719903 men.:0.016825005948951963 places:0.014352691987872465 piece:0.008669570835982186 :0.9425320051552032 +sur-:0.27991859814945647 sure:0.10252501706920834 new:0.04273656369791767 own:0.040536138465497536 :0.53428368261792 +I:0.06590320972688421 and:0.06237723033545679 She:0.024376752610722852 He:0.0036874500417621303 :0.8436553572851742 +The:0.17206387928653616 Mr.:0.12224097587697295 the:0.10596254327104555 this:0.07802136738006295 :0.5217112341853825 +of:0.9203282111077234 in:0.024994524130295685 at:0.02463540227845649 kept:0.016485857012678132 to:0.013556005470846233 +and:0.18394453991198775 is:0.15060348123689674 with:0.1310069522477663 of:0.1120947669618753 :0.42235025964147394 +small:0.04876094839775763 death.:0.030265033482879285 to:0.030088355916228625 own:0.026609980260280684 :0.8642756819428538 +home:0.8361934035426355 on.:0.07657831307803568 away,:0.05147670492499847 out:0.021969637419969146 :0.013781941034361199 +J.:0.1936879594714454 W.:0.1716105307585659 William:0.06317580021640155 and:0.0626967917568981 :0.5088289177966892 +city.:0.5058401931887826 an:0.043915206294330524 other.:0.0036555936726196513 district:0.002078730645965577 :0.44451027619830163 +the:0.5678117471347903 every:0.09942586183230939 lots:0.05462739449959549 his:0.04696326115535329 :0.2311717353779515 +school:0.474654786492015 other:0.09852150688992614 way:0.06702240877369424 wise:0.03474188705568204 :0.3250594107886825 +or:0.20491670700838582 and:0.15717263597592745 but:0.12201039942949338 But:0.03557366742826489 :0.4803265901579286 +interest:0.1805541414786737 Interest:0.11146550329311554 in:0.09286774215050966 of:0.03601605072990789 :0.5790965623477933 +break:0.1148200821179146 continued:0.10103558324129015 tried:0.07666961593418715 even:0.06328412116132763 :0.6441905975452804 +following:0.04837113819361639 last:0.0469228256344851 time:0.04356710435993048 next:0.03540800141757533 :0.8257309303943927 +of:0.10893198158692359 ti:0.0937985941168777 t:0.062078346022509244 the:0.043882038069576815 :0.6913090402041127 +what:0.49512708370149666 that:0.44983547797929874 so,:0.011458633703820442 how:0.010524269071783813 :0.03305453554360024 +their:0.9999124185234851 its:7.098052803853095e-05 our:1.0483473718281764e-05 his:2.5061812459402285e-06 :3.6112935121687186e-06 +and:0.21085820802537372 to:0.13233962610689132 the:0.1204148371305491 of:0.06402929078891371 :0.47235803794827214 +of:0.4311315561585183 and:0.1962306440655351 the:0.13088518760701331 or:0.08036471829586617 :0.1613878938730673 +plan:0.9984222796775808 as:0.00027715729635173974 was:0.00011916905905676143 for:9.748106403673896e-05 :0.0010839129029738697 +is:0.04153552712156121 and:0.006471061876247078 age,:0.006347859859778934 being:0.0047876919271046935 :0.940857859215308 +J.:0.24955075003936547 et:0.10733863320010457 Mary:0.1023272623186541 William:0.08103166506419651 :0.45975168937767946 +are:0.5007141311306575 know,:0.24628907136016878 have:0.05464139927302219 by:0.03223811496742676 :0.16611728326872457 +mass:0.0029356632854390216 the:0.0028785665935551585 young:0.0013612648299582135 labor:0.0008859804550834841 :0.9919385248359641 +from:0.17951952355179174 the:0.11791964409312979 take:0.0872115268250251 with:0.06855895204255436 :0.546790353487499 +and:0.21461213771196785 H.:0.05960542692650111 A.:0.04871596174536107 E.:0.03996321505534122 :0.6371032585608287 +doing:0.20337541405257753 taken:0.03591901781667126 not:0.027520099425264666 to:0.015380568853626566 :0.7178048998518599 +told:0.42181244053129985 will:0.15379847751823744 to:0.11381774789490524 may:0.07136519309453002 :0.23920614096102763 +he:0.5088844971152144 He:0.0893088531965326 and:0.08862424476212445 King:0.057895419484173836 :0.2552869854419546 +the:0.42484564087131804 made:0.3725019839678213 th:0.09759222648496099 tho:0.03479180793119944 :0.07026834074470024 +the:0.5613136471194797 tho:0.43865149629755323 of:2.0145055498361113e-05 to:1.054612515130043e-05 for:4.1654023175382714e-06 +is:0.29068906187214516 was:0.24559331577534937 considered:0.1947361750988988 had:0.13745272835387687 :0.1315287188997298 +and:0.3852297427432085 rendered:0.03304279607987183 permit:0.02076290517133466 command:0.013484981460746127 :0.5474795745448388 +of:0.17271243240301035 for:0.14120291857974807 half:0.14011886553391226 about:0.12428093623643116 :0.4216848472468981 +to:0.08405461780489296 the:0.043618373553835875 it:0.02146797119773437 in-:0.020974834022293373 :0.8298842034212434 +of:0.8876313619132061 ot:0.02780417654786156 ol:0.02434771100697601 or:0.008440651535382346 :0.05177609899657399 +those:0.4314964382569675 men:0.0749650643276032 all:0.053863690238647254 people:0.03942768213878045 :0.4002471250380015 +account:0.610849843933979 description:0.08092241330045309 knowledge:0.054169135658324 story:0.02785311987366446 :0.22620548723357942 +interest:0.11601807707297598 interests:0.11539376634352412 Interest:0.08921201449878018 success:0.03521571091380283 :0.644160431170917 +say:0.29415562847947946 do:0.0413496254868678 be:0.02304904151888916 say,:0.018523601288377073 :0.6229221032263866 +face:0.04487116946827074 I:0.03079643221202664 into:0.0253707749699532 c:0.02196301648492326 :0.8769986068648262 +He:0.26118731367072767 she:0.17937917908730744 he:0.13615355748636457 and:0.13080943519771643 :0.29247051455788386 +and:0.15190591131769837 but:0.1012011600276346 the:0.0269155017649615 here,:0.020909283900957004 :0.6990681429887485 +has:0.975368860956146 have:0.012557981921567901 had:0.006853010834398899 haa:0.0023651214727626237 :0.002855024815124494 +contest:0.40139383295075565 head,:0.010697866079125507 majority:0.00990453482628969 as:0.007880227520975298 :0.5701235386228538 +the:0.20266116679562912 said:0.04305174367516103 a:0.026318725888151095 work:0.023758825231217622 :0.7042095384098411 +according:0.8106093459128115 agreed:0.03622099712406244 pointed:0.012913113461222408 ing:0.009343480477479947 :0.13091306302442388 +Union,:0.10946303967705111 house,:0.07784927854792442 home,:0.05581290045457776 State,:0.027290846849154678 :0.7295839344712921 +in:0.4236338771207049 upon:0.18407458879971408 on.:0.14160266869947574 to:0.13601616105864897 from:0.1146727043214563 +the:0.37743876978930946 a:0.15498300716784416 an:0.03593330923937443 in:0.02989601397549397 :0.401748899827978 +of:0.8516305652825247 that:0.07402562442711234 for:0.03465255436094611 aforesaid,:0.015523952687256362 :0.024167303242160522 +to:0.3866717319836966 I:0.1945826565988806 who:0.09575986221540699 she:0.0819900974281615 :0.2409956517738542 +a:0.9986139735001512 s:0.0012262431039447065 n:9.463431562722497e-05 u:2.3812843343510686e-05 :4.1336236933358694e-05 +;:0.029155010057224876 was:0.022152946501320617 to:0.02043866426923956 found:0.020307214771375124 :0.9079461644008399 +with:0.034300779418345397 that:0.034031050247135874 right:0.02498975809172248 only:0.018958871779704605 :0.8877195404630918 +for:0.49836993386556955 of:0.4226442670490042 ot:0.029266375854031756 to:0.013420928262541322 :0.03629849496885317 +these:0.3648838262773402 there:0.36407802560991576 they:0.18326147049085179 returns:0.036054314646391895 :0.05172236297550016 +of:0.3600592618963242 to:0.0903342435926473 and:0.08026786390100965 in:0.06534107806841113 :0.4039975525416077 +white:0.0013394029903294653 in:0.0007226518045037653 my:0.0005418434643197133 rest:0.000353148586147843 :0.9970429531546992 +of:0.27517623475039205 than:0.20469992177242827 to:0.11930975324615156 for:0.11912599280035158 :0.28168809743067663 +are:0.1582737045842795 I:0.07987959061959424 provided:0.07207398528479854 make:0.06421512418892751 :0.6255575953224003 +tion:0.044355537753355136 idea:0.02676273535746192 ing:0.023832111600894487 of:0.02329605430867069 :0.8817535609796178 +the:0.4749157704614163 I:0.0947043500278397 this:0.08476287414129123 a:0.0724338697133249 :0.2731831356561279 +by:0.35471734873959676 in:0.19850154702834272 as:0.13928542622316079 for:0.12695218494796456 :0.1805434930609352 +of:0.09277699474162111 amount:0.07007065302335483 dress:0.06575589822483027 and:0.0432073569024928 :0.728189097107701 +political:0.168390134950053 present:0.055536301017559825 the:0.024900933322332293 close:0.0214284351529938 :0.7297441955570612 +a:0.1343338424259301 the:0.12521309245313245 to:0.04547467964131651 it:0.02666866915527071 :0.6683097163243503 +its:0.9769214665209639 it:0.00884391876699534 the:0.006371557515600953 Is:0.004364749232619463 ot:0.0034983079638202606 +and:0.4333786235212292 in:0.3342570549226719 to:0.08002836476689093 In:0.05685043317704863 :0.09548552361215938 +and:0.37528550962087803 the:0.12367637652451967 General:0.09129340328201734 Mrs.:0.09078958162018566 :0.3189551289523994 +in:0.2342493805122757 of:0.19128092118899667 with:0.15649997391887147 and:0.13396137047742823 :0.2840083539024278 +in:0.5420140758699911 and:0.21071090223518743 In:0.088222033583753 to:0.04795803262065921 :0.1110949556904093 +find:0.5244019091186817 are:0.18661257269806383 not:0.1256277379130852 want:0.06142685755684036 :0.10193092271332894 +every:0.10700627379214643 Every:0.06999486485440339 the:0.029472432342055002 an:0.024590988708605526 :0.7689354403027896 +;:0.14323446488437594 rule:0.052670950653400654 thereof:0.04104058681569327 here,:0.04009392129431604 :0.722960076352214 +and:0.0014051130901890463 of:0.0010689995444075403 to:0.000980676896258338 it.:0.0008468778867155621 :0.9956983325824295 +highest:0.05540978865055717 same:0.016224899231608317 public:0.016101260584031944 great:0.012579064015001784 :0.8996849875188008 +the:0.13039504115430503 a:0.03089050287910838 book:0.02908736601706982 It:0.017211393424218516 :0.7924156965252982 +can:0.3688127239857005 should:0.3129986749641475 will:0.12309260873623185 could:0.10162736445983732 may:0.09346862785408276 +the:0.06496814419047385 to:0.03873267627632124 then:0.012468123510677052 follow:0.011432279711806109 :0.8723987763107219 +block:0.056643656737478565 thence:0.05335382204934486 and:0.05090449974118874 1,:0.050072187653796674 :0.7890258338181912 +be:0.5777809528551799 have:0.07989407711246402 not:0.06022488857896467 bo:0.02377031082163171 :0.2583297706317597 +were:0.15732778713223716 through:0.08315432927397179 of:0.07116675054092278 at:0.06695272727842558 :0.6213984057744426 +not:0.3660307845587924 have:0.22868828047053613 be:0.16019298868117196 lie:0.04798091012102766 :0.19710703616847183 +him.:0.04472183530879979 the:0.022394637449252297 it.:0.01990115054302616 11.:0.009372859597978931 :0.9036095171009428 +the:0.1779751022694616 be:0.069942393300612 order:0.04157040770782811 issue:0.03397336407378553 :0.6765387326483129 +has:0.9405031859531742 had:0.02669410718867201 is:0.006941169304722443 have:0.004379225144446296 :0.021482312408984988 +and:0.10051460722883844 towns:0.047200313919114334 moment:0.038612144156317814 quantity:0.023316250383599413 :0.7903566843121299 +and:0.18596242859349293 the:0.12668972299536033 a:0.06654983052149914 with:0.059038992918663984 :0.5617590249709836 +the:0.13925074954809186 9:0.04760214484412593 she:0.045203252580945895 it:0.02691973157624942 :0.7410241214505869 +the:0.6258233778150142 him:0.05605070840665663 his:0.03042843722975228 tho:0.02970246573972537 :0.2579950108088515 +and:0.16056656751434728 the:0.13069400346212504 by:0.1022883705423753 to:0.08851850103648502 :0.5179325574446674 +was:0.7896439215032787 is:0.048377035610211255 the:0.02544899830284882 to:0.010598391936643511 :0.1259316526470176 +The:0.687714755809307 Tbe:0.020448190727919553 He:0.013046480954794801 His:0.010847739447975294 :0.2679428330600034 +spoke:0.02139520093293966 wishes:0.017399823074026727 talk:0.016222035831000334 lives:0.01466338130457913 :0.9303195588574541 +had:0.18184021480929494 has:0.1807641609762587 was:0.11437830738345675 then:0.08380636974667936 :0.43921094708431024 +below:0.30942565530757793 of:0.21602742012093973 In:0.19953563866583143 and:0.13783863558245943 :0.13717265032319148 +it:0.7515829402471286 he:0.04461592633859998 they:0.028367044562462935 we:0.02420213863485035 :0.15123195021695826 +water:0.10884095439053472 money:0.08439414891729094 trouble:0.045909429264326895 sun:0.016845158524013717 :0.7440103089038337 +of:0.1428659855760468 and:0.08396200466561557 the:0.035323790038282274 Mrs.:0.029515374680381647 :0.7083328450396738 +a.:0.35075357221889975 p.:0.31830913087641366 p:0.0365617958535785 a:0.024368814542153085 :0.270006686508955 +feet:0.3486109967045987 inches:0.12712134445844564 years:0.08856014907143321 miles:0.07409014145292167 :0.3616173683126007 +the:0.09231962195746068 or:0.06932747629251804 county:0.04705435658235532 a:0.046193975841769146 :0.7451045693258969 +girl:0.07937060522668887 first:0.027266285896506193 tree:0.024049063229509223 woman:0.02256336614380836 :0.8467506795034873 +its:0.8266676623104516 Its:0.10752607628639477 the:0.060719253249083414 tbe:0.0003063708842764895 :0.004780637269793724 +of:0.3761056080858022 now:0.13268010506984354 it:0.025195821601268875 and:0.020878020035877652 :0.4451404452072076 +of:0.23192585049422854 for:0.21601211370863527 with:0.14927426126784937 in:0.143054312213777 :0.2597334623155098 +out:0.19978943962977194 some:0.10906321621478615 It:0.04677196779843496 and:0.0323499771928606 :0.6120253991641463 +ft:0.35761828233354864 do:0.08312093902218774 H:0.07571754734982697 G:0.06830169874756548 :0.4152415325468712 +on:0.307970096697545 will:0.12666229598177153 If:0.1040085759935356 with:0.10295140857677378 :0.35840762275037397 +to:0.9965902167677473 shall:0.00266333230107767 U:0.0005486824761999263 that:0.00018277106241496732 will:1.4997392560231279e-05 +fact:0.024025975614308664 bill:0.02006298573002739 disease:0.019224412043483838 remedy:0.016990735149058803 :0.9196958914631214 +had:0.43080682867578984 has:0.41681237115718184 ever:0.027372102743580744 never:0.02329834258137092 :0.10171035484207681 +But:0.2352998147589554 and:0.20559377898787737 that:0.03788505267771797 but:0.03350484187702148 :0.487716511698428 +during:0.29002441194720685 for:0.23632191679241696 of:0.23433404517719858 in:0.14137975260027633 :0.09793987348290127 +of:0.18016271583150759 other:0.10916431696741333 people:0.10464334173202199 men:0.03440669288698808 :0.5716229325820689 +to:0.3880685666544526 here:0.3868993168724719 shall:0.13105308994949974 will:0.06442611073872681 :0.029552915784848855 +and:0.11086315936453747 to:0.09868415433253705 of:0.09189762169341884 the:0.061381145289070495 :0.637173919320436 +with:0.46443727660407175 and:0.1279103826925006 about:0.12447462579519715 receiving:0.12036219468835874 :0.16281552021987183 +to:0.4380085829496408 of:0.1354982839355709 in:0.1212136687010918 Its:0.04134350947728482 :0.2639359549364116 +to:0.037913591060728696 The:0.028922310973726984 So:0.01818420738900749 How:0.018007400636483917 :0.8969724899400527 +good:0.18924462426427247 go:0.033636494190017935 or:0.022067072987391304 men:0.01974311974448281 :0.7353086888138355 +The:0.30739503470562024 the:0.17399026660101086 until:0.08210984734437433 Our:0.04191866123059856 :0.394586190118396 +they:0.7608978508061311 the:0.1721374898989091 it:0.03452323311429166 to:0.013040431670965856 :0.019400994509702185 +of:0.963633159766798 to:0.013412214310202508 in:0.005635126941250929 and:0.004691450924067723 :0.01262804805768099 +the:0.6005854034726261 a:0.08579496870193065 tho:0.06889281195187198 become:0.04145064312525589 :0.2032761727483153 +or:0.19486266142206687 made:0.09760951094301328 and:0.09447359131737433 paid:0.030146039543717286 :0.5829081967738282 +he:0.4827889411139099 it:0.35275887412208085 she:0.10358496062828922 lie:0.009174404275316876 :0.0516928198604032 +is:0.27371689749379047 time:0.21261810370735607 be:0.1928471091851528 property:0.039643483680203 :0.2811744059334975 +after:0.787343193684339 own:0.05590149018418493 entire:0.043020872586791166 past:0.04124571946553118 :0.07248872407915367 +the:0.043341000514191416 which:0.026121381186640837 Jones:0.02296705264100747 bill:0.022043378467840144 :0.8855271871903203 +::0.6743934488029976 have:0.05849392953888396 only:0.053754311838381266 the:0.016414496127959595 :0.1969438136917776 +Central:0.34313441243246473 the:0.1535545467244975 East:0.06136450408129415 said:0.03197609876616207 :0.4099704379955815 +amount:0.13749690763906175 sum:0.03907789340800198 length:0.03049154321013611 danger:0.02755816123318977 :0.7653754945096103 +drew:0.6380482820008734 and:0.056990522045217804 of:0.035499473101145644 sold:0.023432788891878786 :0.24602893396088438 +first:0.01691797715128347 old:0.010706138961538991 new:0.010293569794638592 story:0.009718166508100597 :0.9523641475844383 +record:0.15520902093578764 books:0.07823548941655305 stage:0.07338305869147292 scene:0.028976971023345868 :0.6641954599328406 +are:0.5524645050179389 were:0.11970437210229876 who:0.10887637811394686 seem:0.07983894905950241 :0.13911579570631305 +of:0.3531544212280438 and:0.2615404425086611 except:0.13001654870234428 Into:0.1045911141401238 :0.150697473420827 +than:0.9171576620120778 of:0.022769988573221336 and:0.0030334547849395006 likely:0.002282252999365126 :0.054756641630396015 +was:0.1270791696422391 am:0.047904788776156976 had:0.042904211972550656 would:0.03998416055516599 :0.7421276690538874 +to:0.09433086942834261 a:0.08650271244598745 the:0.08551992184566559 not:0.050289303636438194 :0.6833571926435661 +army:0.08195601923816671 law:0.08029735720586963 company:0.033106279491957206 law,:0.02564507086030326 :0.7789952732037032 +her:0.22972449660524244 sell:0.15908216323893515 speak:0.1036527462830184 him,:0.054145944028430044 :0.4533946498443739 +and:0.06382548130976799 that:0.039885446204840504 from:0.01805352094714393 the:0.011192628475386764 :0.8670429230628608 +and:0.18045648523292898 the:0.11731877641317189 besides:0.08102025060868374 to:0.07974592854231585 :0.5414585592028995 +on:0.023096930397199004 pay:0.014464785336229174 such:0.00609707670648027 that:0.003791230377909894 :0.9525499771821816 +been:0.8290703479753317 wheat:0.0474996808010836 not:0.024201527520743872 also:0.014256166063446091 :0.08497227763939466 +ami:0.3531654948050705 almost:0.1742269456228987 her:0.03163586159459751 the:0.02001117814447461 :0.42096051983295873 +would:0.06944921271752048 shall:0.05979806182817127 does:0.05780359826804438 as:0.04371459353904062 :0.7692345336472233 +net:0.08820532494524731 their:0.08211256058177754 light:0.0629924506314763 the:0.029643691095526396 :0.7370459727459725 +and:0.14617801558332078 the:0.1275779650953478 to:0.1120959840469897 of:0.07392150663451355 :0.540226528639828 +st:0.03791092951393369 moro:0.028405062546245734 day:0.024799208308996217 honor:0.019527335928542656 :0.8893574637022816 +and:0.2131865364980613 to:0.17707175060862296 of:0.05160008782724777 or:0.037957789760558594 :0.5201838353055095 +and:0.10839987458011355 the:0.055329140718277034 of:0.054251302508686296 to:0.02782247750828954 :0.7541972046846336 +two:0.737850460749871 more:0.2543349511731362 other:0.0030600670488425724 moro:0.0023442854527809176 :0.002410235575369208 +building:0.07964225177088156 State:0.061393910461969674 weather:0.060505300673362405 subject:0.058543705909815856 :0.7399148311839704 +a:0.16987284589930457 the:0.08948562645815472 pro-:0.08571445831371236 well:0.06998161038504568 :0.5849454589437827 +of:0.08089036503806943 day:0.06124511966136331 recorded:0.05960152322568609 year:0.049646888634049896 :0.7486161034408313 +house:0.013617987409232766 examination:0.010603715341909988 duties:0.010298847647148564 bond:0.005445017773730298 :0.9600344318279784 +to:0.38490398775771256 tbe:0.2518525100645827 the:0.20884730676965685 and:0.05867872131316208 :0.09571747409488586 +knew:0.19392342990609293 saw:0.10800838839188423 felt:0.10407369624192338 learned:0.08187234215031994 :0.5121221433097796 +appeal:0.08252184569875505 and:0.0675421379884639 as:0.03240451103425912 that:0.022580127270671987 :0.79495137800785 +been:0.5944380913451712 lived:0.10957647742479715 gone:0.011989473341060557 returned:0.006961742554010439 :0.2770342153349607 +happened:0.02853015438957676 The:0.019911551643095854 been:0.010421139501582324 not:0.0061908170497102484 :0.9349463374160346 +could:0.2610529733974643 will:0.25460683310192006 step:0.1961235329291824 can:0.05960336349215184 :0.22861329707928157 +coal:0.03962601694242808 about:0.03938310858285024 Is:0.028514616316801657 as:0.019479004734132326 :0.8729972534237878 +ho:0.8644949382619715 I:0.06579631914344455 he:0.0479626991106268 you:0.011809600017272257 :0.009936443466684972 +a:0.47499096669768465 about:0.32881713218490205 only:0.06562017869990255 out:0.047261983288850305 :0.08330973912866046 +2.:0.12315467245899837 4.:0.11144856540628341 8.:0.03518803885853191 2,:0.02980518491282283 :0.7004035383633636 +on:0.41397545810656333 of:0.18329345775573055 to:0.11130142142991684 To:0.08830797392104088 :0.20312168878674833 +and:0.07735372886973141 to:0.02822624185197767 of:0.024395909500964527 N.:0.023942623856771077 :0.8460814959205553 +taking:0.38458605572962823 live:0.2501974077718726 for:0.041095489014984145 to:0.035142427556201415 :0.2889786199273138 +and:0.21234961486247278 section:0.1393722120404913 to:0.0385332507606549 power:0.034091893835722545 :0.5756530285006587 +hours:0.07568983500009707 States,:0.07320642388360254 counties:0.04703481954058171 Democrats:0.03361625199526827 :0.7704526695804504 +forth:0.745594578234859 out:0.11371960493505089 o:0.005971552325498436 15:0.0044215153247125424 :0.1302927491798791 +the:0.5309767532759 a:0.05517191031765434 tho:0.019541315432652317 No.:0.018712851478314144 :0.37559716949547917 +he:0.4091074053953247 is:0.19000406447204873 a:0.1183354654091158 little:0.11783068195607045 :0.16472238276744028 +west:0.12581075289080293 east:0.10198752932940745 E.:0.09064440313783322 W.:0.0674569011792164 :0.6141004134627398 +had:0.1748859227863708 would:0.12791622866576138 has:0.12476669764643793 will:0.1108076403819349 :0.4616235105194949 +and:0.14413105538631957 The:0.04908953878394568 the:0.04174785008741146 of:0.03729685857033615 :0.7277346971719871 +any:0.5109866849793798 the:0.0028391449880631656 James:0.0007781760664669589 tho:0.0001546649790272685 :0.48524132898706285 +the:0.45712116557382365 their:0.2647531808088433 which:0.1374614106068649 a:0.045665022525312716 :0.09499922048515541 +people:0.0925251757170594 public:0.08473567696875933 water:0.07122472675893096 court:0.03637968341184545 :0.7151347371434048 +work:0.0436324015307668 less:0.04016727881383752 he:0.030661375304085737 Register:0.01628012010698775 :0.8692588242443222 +the:0.2847491205891011 an:0.014592636338832175 Block:0.002869885701638807 City:0.002823093784557507 :0.6949652635858704 +the:0.5275557211800682 her:0.1809225384711956 his:0.16379319402546713 a:0.07440038169754111 :0.05332816462572785 +was:0.2715074224489153 before:0.17361214677345196 as:0.1652947430504756 and:0.12625040587173292 :0.26333528185542426 +the:0.4519424228908895 this:0.1297362461255543 our:0.08481359605752234 a:0.05206483761757058 :0.28144289730846317 +of:0.1326265496350808 and:0.12211396274304903 the:0.08240283775882123 to:0.03517358583317834 :0.6276830640298706 +office:0.7247392246609167 history:0.009548931472897398 hands:0.008338719699213728 records:0.006894638386722095 :0.2504784857802501 +greatest:0.35637945106560415 to:0.09510441181601523 and:0.07111084799160078 regard:0.04772800187719853 :0.4296772872495813 +them.:0.09681015397949465 him.:0.08787569269513107 me.:0.049303401048204645 all.:0.04650113366263539 :0.7195096186145344 +and:0.11946224807785698 to:0.037402507008656834 of:0.026399478683463054 is:0.020590913386955626 :0.7961448528430675 +case:0.2254214181978905 all:0.1402293445035141 of:0.035739271216310486 which:0.029904959198052184 :0.5687050068842328 +made:0.32345705131467656 the:0.07135998041133289 broke:0.060906356665165515 got:0.06020728318156415 :0.4840693284272608 +and:0.181621998101319 to:0.10679319198686583 the:0.1062414811499185 The:0.08634517331349124 :0.5189981554484053 +and:0.03643692085525845 end:0.011008956942134069 .:0.00937799973954935 -:0.008583679315197518 :0.9345924431478605 +answer:0.19289854270665216 way:0.14380628947120852 ring:0.12783980309400933 man:0.02739702494426472 :0.5080583397838654 +team:0.25166632260507293 day:0.22101661470063613 time:0.1280907814431744 end:0.12479575684507349 :0.2744305244060431 +the:0.25996476048946293 and:0.09284833651672877 The:0.06582650730146851 a:0.05752696254400146 :0.5238334331483383 +till:0.6481145420971218 of:0.05802299845983785 and:0.03229842682184016 the:0.020008119027002457 :0.24155591359419776 +but:0.04831524640277502 the:0.04408564734818825 out:0.04228657368565574 and:0.03941501866059589 :0.825897513902785 +of:0.2746372315146672 at:0.05033751452740135 were:0.04704385390210716 in:0.019573686830983233 :0.608407713224841 +and:0.13002563359620323 to:0.06826693729681234 of:0.06039949762144074 -:0.041946695737810416 :0.6993612357477333 +and:0.18848519438228425 with:0.18618120801400487 to:0.18614674478452709 of:0.15336707701734872 :0.285819775801835 +led:0.19946719167420696 dis-:0.1724463861995906 received:0.12545926805204222 left:0.05918697597030512 :0.44344017810385516 +money:0.3046497386646125 people:0.10916350941875629 cotton:0.08395033440137666 water:0.07297138518787988 :0.4292650323273748 +ward:0.3697700403684693 fall:0.14884917871140216 coming:0.13573712437634827 appeal:0.054163151454210995 :0.29148050508956924 +the:0.23314192720497376 their:0.029901676841908746 a:0.02760373817711558 was:0.020885532227530132 :0.6884671255484716 +attorney:0.06167003847151309 ly:0.03370270015953907 as:0.020158862018794643 .,:0.014148871707750046 :0.8703195276424033 +of:0.3235979957648838 in:0.25442496593929886 and:0.21618921191931878 were:0.063350309177262 :0.14243751719923642 +the:0.08933582488745694 and:0.08330073607799032 a:0.06520309516187782 to:0.049715956855437705 :0.7124443870172373 +place:0.029634293122616766 the:0.02819957522058158 placed:0.02140977837815431 went:0.01946953847897471 :0.9012868147996727 +and:0.16873039018899968 the:0.09649576895935633 The:0.0762215007644443 of:0.05433203523723048 :0.6042203048499692 +other:0.019128203567281923 most:0.016742995133245092 said:0.014529028761307 the:0.013633995251629505 :0.9359657772865364 +any:0.2623644944745055 the:0.16396177588291297 a:0.10162906794444417 nearly:0.059018505643609206 :0.4130261560545282 +outside:0.05780724035229022 part:0.05705208366447862 those:0.04466924164872854 some:0.04365661974727458 :0.796814814587228 +of:0.10324946370565612 yesterday:0.022569379092999 who:0.022340345955758078 and:0.021653118349013414 :0.8301876928965732 +the:0.8143197578788555 tho:0.04838852909504961 a:0.04675430371311136 naval:0.023218457957108866 :0.06731895135587479 +year:0.13293213615942256 ladies:0.0779407774160964 until:0.06416055665275104 immediately:0.05954961741997673 :0.6654169123517533 +in:0.17317213965905393 to:0.14574381967031844 on:0.11973870626569799 the:0.09129631277423046 :0.47004902163069917 +the:0.4025426478224727 his:0.088699579011266 a:0.0875480739608098 every:0.07552890258699921 :0.34568079661845247 +of:0.10310935486490218 and:0.07819291249070788 is:0.035295129710354624 used:0.033567185676293916 :0.7498354172577414 +Mrs.:0.1797677288642062 and:0.17887164932143604 V.:0.04183544740767105 J.:0.03164805049328132 :0.5678771239134053 +without:0.20250732580933622 of:0.18423929613424794 to:0.06960073996372775 than:0.04937112630484509 :0.49428151178784313 +The:0.12063942644639003 Company,:0.08284991669761388 the:0.08271858615602182 r:0.06270307795743714 :0.6510889927425372 +to:0.4963642855586569 and:0.12978198588734777 would:0.09979668066050962 will:0.09139016945699628 :0.18266687843648946 +der:0.034916481511859755 other:0.02457816774839699 and:0.023847457237137076 in:0.02345590982886631 :0.8932019836737399 +and:0.7024261766446195 but:0.014660526359373587 yet:0.01162548133711506 or:0.010740372003961347 :0.2605474436549305 +one:0.35204599568750605 each:0.12025903535117026 all:0.058815676414419205 many:0.05541366395529918 :0.4134656285916052 +own:0.03932406405748688 people:0.02944852878628016 government:0.02822084529884092 present:0.02085691293835963 :0.8821496489190325 +years.:0.11980010575611512 and:0.10664212639045059 of:0.06484668254851404 a:0.0598231143505124 :0.6488879709544079 +said:0.2526723885024259 the:0.16999382139946445 lands:0.024819042529993448 a:0.02283816385856987 :0.5296765837095464 +of:0.07507945914695419 and:0.054225944178674206 the:0.028582100204306966 in:0.0277217366645809 :0.8143907598054838 +the:0.25809510986235246 street:0.2227226781262913 and:0.0744353180619648 The:0.03449212224022155 :0.4102547717091698 +a:0.24544293299081557 i:0.03613841111082416 the:0.028079488208231085 be:0.02348242883686024 :0.6668567388532688 +who:0.18181563019663968 he:0.09316288561294983 which:0.07769905497919476 that:0.05559477981816065 :0.5917276493930552 +and:0.09122166462601211 the:0.06305412922681931 1:0.05820997386001365 I:0.050715823625502636 :0.7367984086616522 +seized:0.7275271051314729 presented:0.12787336494710141 provided:0.010433250435461536 pleased:0.009623963523077953 :0.12454231596288605 +the:0.912211297777604 tho:0.02902914762284904 tbe:0.01641835993200087 a:0.013557438224701302 :0.0287837564428449 +and:0.21063084630724838 the:0.1450270285813453 in:0.13465205648467235 on:0.10852163027487251 :0.4011684383518616 +will:0.3814215590609666 to:0.27347962257129244 can:0.18570678270480798 may:0.08303168177762593 :0.07636035388530711 +and:0.11677341407669459 A.:0.0970104815186408 H.:0.05600475956084796 M.:0.04473001547823322 :0.6854813293655835 +to:0.36963636041084913 for:0.22822472196753446 in:0.14399751698184612 of:0.08577108231939504 :0.17237031832037533 +methods:0.3196445834910542 system:0.19934717231040655 law:0.138561099837709 corporation:0.13181551181658993 :0.21063163254424036 +to:0.657489721541141 in:0.19277993456537584 on:0.03743043960571734 into:0.015883459914677173 :0.0964164443730885 +ent:0.2210863745466943 the:0.1725987463110602 An:0.12285399378994755 The:0.12197949385954367 :0.36148139149275416 +said:0.2652964237238728 the:0.17526149488282572 which:0.06913280880781665 and:0.04018011968202743 :0.45012915290345745 +few:0.8797201690951195 hundred:0.03121451192973529 thousand:0.019641463997850037 dozen:0.009869990634754973 :0.059553864342540154 +the:0.1968912835621874 and:0.09665214465566625 a:0.05458663954350615 The:0.0428635739205077 :0.6090063583181324 +check:0.10818001272555722 and:0.07478904175166125 based:0.04131575084624642 attack:0.027622884960378343 :0.7480923097161567 +with:0.16989282598282246 asked:0.15193134366856872 behind:0.12855545076091945 for:0.07217756060468566 :0.4774428189830036 +the:0.25967666904552467 by:0.2353755901582316 to:0.16994788513977757 and:0.045170968840350094 :0.28982888681611607 +to:0.41975095731540235 will:0.25086373577908483 would:0.12870924154088456 may:0.05535192920429694 :0.1453241361603314 +most:0.047399848220593205 im-:0.046016720916093413 un-:0.02459521618560615 per-:0.021778308119763442 :0.8602099065579437 +Union:0.24187169562761598 true:0.0315519984483222 same:0.019970374047775442 great:0.01057973487228216 :0.6960261970040044 +thinking:0.44242937641477825 that:0.15361133668946367 and:0.09083504402954498 giving:0.0697851308800812 :0.24333911198613184 +him:0.8388909790990218 the:0.15442103376262417 tho:0.0018973682568698314 very:0.0008412621293569091 :0.0039493567521273415 +ground.:0.005173300193527298 race:0.0033453450962808474 body.:0.0031902184067704874 is.:0.0015241020199128063 :0.9867670342835086 +looking:0.052068527841325006 shot:0.046108729411561376 fired:0.03217980315676888 employed:0.009854811556473742 :0.8597881280338711 +the:0.64906092874508 of:0.19781630950072254 and:0.044265708587099356 to:0.031789387858570425 :0.07706766530852756 +for:0.44927319328677057 of:0.26684277431729286 in:0.12167687661445631 as:0.07000244646113715 :0.09220470932034323 +made:0.23363194240517618 one:0.14768417956867644 ono:0.03363894443778475 out:0.02741462270328433 :0.5576303108850784 +and:0.4199351028573486 of:0.167967717102897 prayer:0.03832145071888045 by:0.035226761731310625 :0.3385489675895632 +rapidly:0.6020260466761871 secured:0.2760748384451002 raised:0.015758442934112545 or:0.005977730098802792 :0.10016294184579741 +that:0.1011082915869402 week:0.07946491161270902 they:0.05989576172954703 election,:0.044678327091586166 :0.7148527079792176 +of:0.636852670705081 and:0.08351422762806875 in:0.05356081785934482 to:0.048624321803768814 :0.17744796200373653 +of:0.1638315801959105 and:0.12841184080598309 as:0.08778765636384377 with:0.07319740040282388 :0.5467715222314388 +the:0.5196193173643637 tne:0.22091629502011206 a:0.12123920371828646 10:0.08262506958684275 :0.05560011431039496 +":0.031885722210861424 government.:0.016641840014224772 here.:0.015241078030405263 girl.:0.009667009341270702 :0.9265643504032377 +sign:0.34202193674543624 want:0.22739442754172867 few:0.07130661711317528 work:0.01551606196284562 :0.34376095663681416 +bill:0.23176589366381276 bills:0.07375757994940522 feeling:0.05769561266525786 making:0.0220378674605101 :0.6147430462610141 +live:0.2872507917767617 that:0.1619034360740428 and:0.13184926476606612 whom:0.03997497345709126 :0.37902153392603816 +cut:0.6373168649347071 get:0.01447684968682496 put:0.0021867232448575798 got:0.0020728430013842642 :0.34394671913222613 +said:0.31502003028778824 the:0.04943137033315148 laid:0.007841546578372289 other:0.006157335767093318 :0.6215497170335946 +to:0.23397741068188507 for:0.1783176147478752 by:0.15859459273838242 in:0.0996525420989117 :0.3294578397329455 +to:0.95331110203492 10:0.0018369244834800795 lo:0.0017916432268564268 io:0.0017133221373360115 :0.04134700811740759 +and:0.28326156806463715 Smith,:0.010698392786569847 H.:0.006812235255633015 T.:0.004342566572099172 :0.6948852373210608 +in,:0.22233906689189217 dressed:0.02767704981641735 be,:0.007308297294843887 known:0.002837496390963082 :0.7398380896058835 +him.:0.34796065641641627 .:0.00429270919791313 of:0.003002116375393055 and:0.002652828109222106 :0.6420916899010555 +the:0.6429886867897535 his:0.20104887863138984 this:0.059230114420785136 their:0.027376722475444593 :0.06935559768262693 +this:0.5517383388020461 the:0.144057871015436 said:0.08769718890756537 such:0.036367128110838434 :0.1801394731641142 +ordered:0.11710641963073724 obliged:0.11284231945668843 called:0.08877953413954001 made:0.06942961853449103 :0.6118421082385433 +came:0.12654053772036583 went:0.11845927453116915 gets:0.053785411004309426 looked:0.02147931714884602 :0.6797354595953097 +and:0.177941014670763 whenever:0.16435243080911277 at:0.1299022911774957 is:0.07017634906561933 :0.4576279142770093 +50:0.18845737719555608 ed:0.10959523591906847 of:0.10257358922871351 and:0.054039203158936386 :0.5453345944977256 +of:0.2713617445954401 in:0.18515173875607352 to:0.17699584122180298 on:0.09985829977637828 :0.2666323756503052 +could:0.03837413442635388 the:0.036267049408332946 minutes:0.016674965672373806 March,:0.01554234901010572 :0.8931415014828337 +him:0.013749437878971045 hi:9.76910987929523e-06 men:4.957409619394399e-06 years:2.12636553971238e-06 :0.9862337092359905 +a:0.6852859652884333 .:0.03286461621135099 in:0.02653914523383617 the:0.022263651457007524 :0.23304662180937194 +party.:0.016755800980308738 home.:0.016302685693441354 life.:0.006999531481712129 people.:0.004297212637156436 :0.9556447692073815 +in:0.8582014289849819 In:0.1351138362905843 and:0.0004376646047186577 of:0.00041258476730765667 :0.005834485352407363 +you:0.4919739157245243 not:0.30350306733398863 the:0.08549196219359179 we:0.06498699326575529 I:0.054044061482139985 +girl:0.20022381986078844 story:0.10790995299544655 child:0.011152397288160656 good:0.004943884765447641 :0.6757699450901568 +the:0.0379073232780735 a:0.023603798722783627 tor:0.017785294299082283 at:0.006799524922092947 :0.9139040587779674 +and:0.10474446691392107 of:0.07628903313805722 the:0.06967374237588145 The:0.02652104944654621 :0.7227717081255941 +is:0.2543782275463502 and:0.24420774258967667 the:0.19155617116540194 not:0.18685355281678784 whose:0.12300430588178346 +by:0.9901848110475205 and:0.0008555357357507064 as:0.0008002512714921492 after:0.0007246544054706859 :0.007434747539766189 +house:0.03556053466014133 home:0.028253361708664788 place:0.02155847812978363 act,:0.019730186503687724 :0.8948974389977223 +well:0.9899891594273484 a:0.0014874709892610466 actually:0.0011547255437360869 perfectly:0.0007693683182446797 :0.006599275721409452 +J.:0.08319803200613587 John:0.07722071810869446 George:0.06509807018544986 W.:0.042715571707214704 :0.7317676079925053 +the:0.35961179281941236 of:0.11536753801936789 a:0.11020602305959237 and:0.060707344976830675 :0.3541073011247966 +with:0.9832920611121255 in:0.009993873909102799 for:0.0028400201072493205 of:0.0013257084552322552 :0.0025483364162900606 +and:0.131847876118288 the:0.12308704226834727 The:0.0847247509954237 of:0.07626972936412156 :0.5840706012538195 +ments:0.6504813000204476 the:0.1860074479972141 and:0.0356465494877823 for:0.01877916694838327 :0.10908553554617281 +for:0.2585906441677431 to:0.20049749491910063 and:0.13143226492117321 te:0.07855816700184601 :0.330921428990137 +Mrs.:0.22645665467413476 and:0.04930307801285676 Mr.:0.03593842311026759 Johnson,:0.020670342310248845 :0.667631501892492 +state:0.40991649495657445 men:0.24179948920588862 public:0.09786799241358887 people:0.08337261425040202 :0.16704340917354596 +the:0.8163601804298011 a:0.07109253646552582 that:0.050013683535101175 this:0.026462396921921247 :0.03607120264765095 +coal:0.14706592264989712 produce:0.04599548171156926 food:0.01740989435784472 war,:0.015870650170760604 :0.7736580511099282 +own:0.04900448424836734 is:0.017993995187387937 being:0.01753691186731687 and:0.01570210575654732 :0.8997625029403804 +In:0.5190299833973002 in:0.3245168269935034 from:0.04104080795088269 to:0.03736865087270003 :0.0780437307856138 +the:0.24319338127279239 he:0.1416215871129367 is:0.10065515083527941 ..:0.09821997892384994 :0.4163099018551414 +to:0.9917612822757003 not:0.006564083265883459 never:0.0005853248959979731 lo:0.0005567790170183242 shall:0.0005325305454000649 +of:0.14323021065381827 and:0.11975490564069059 in:0.11764020922255967 township:0.08218866533680404 :0.5371860091461272 +are:0.7261257497490824 were:0.1602718597507781 have:0.05207579682512017 is:0.04725804901789305 :0.014268544657126295 +the:0.3026789952076833 a:0.05054096952840333 1:0.022618663124455204 2:0.019753784484432206 :0.604407587655026 +of:0.6343138597552207 and:0.06419758720290825 that:0.05525240311802621 at:0.04528494716904777 :0.2009512027547972 +be:0.6306663896459577 have:0.06814528993558436 not:0.06648914510749214 bo:0.06171625841925777 :0.1729829168917081 +A.:0.12838506032696245 Thomas:0.07728931780486255 and:0.021415629829820308 to:0.021234401553531585 :0.751675590484823 +the:0.1882232934213317 and:0.1094909981293193 a:0.10353034741595203 to:0.038242477247409624 :0.5605128837859874 +of:0.8911242883037628 in:0.07325792376709864 and:0.02097983127853839 to:0.008590564042579553 :0.006047392608020789 +down:0.34277562632563885 it:0.06776949470806047 away:0.05482891041153276 and:0.026442800083879017 :0.5081831684708887 +the:0.09956906987550146 which:0.07088492387038671 vs.:0.040425787240840845 said:0.012902235408835618 :0.7762179836044353 +will:0.9871905785186693 should:0.005698882868896715 and:0.002774139092852157 would:0.000363017880689531 :0.003973381638892357 +of:0.17957711303493934 and:0.11896054458594427 the:0.03978216947889642 was:0.03358696692874035 :0.6280932059714796 +day:0.25514984712294364 But:0.17887822053404437 well:0.07277514221405573 and:0.06540800007420892 :0.4277887900547473 +It:0.1737460407667796 There:0.11616617936108523 there:0.10953090597422953 He:0.0881934709428061 :0.5123634029550995 +from:0.8562816709335932 in:0.07213696427798746 at:0.04712597054853463 of:0.018280370444940866 to:0.006175023794943796 +a:0.5262501546307705 his:0.16064893411932027 A:0.16023682075366835 our:0.054343495777280856 :0.09852059471895995 +In:0.47790823070430927 in:0.3562895582615929 on:0.10393075472351027 for:0.033713928542512574 to:0.028157527768074953 +the:0.5935175361079569 and:0.06208392774402216 a:0.06202307267746249 tho:0.04566329260107642 :0.236712170869482 +healthy:0.3113004607522361 far:0.241828109653662 quick:0.13836082918922257 near:0.10610557239074665 :0.20240502801413265 +at:0.48611495212485056 for:0.13595706817457906 into:0.13540943921279858 over:0.1220362518867359 upon:0.120482288601036 +most:0.36338181983465917 himself:0.1993548890264347 many:0.12036775201227623 hundred:0.08500838611101225 :0.23188715301561766 +the:0.605708917863811 a:0.06458502455323015 tho:0.029427958777485476 his:0.017060110501200394 :0.2832179883042729 +told:0.9951039424171707 brought:0.0017979231553199785 informed:0.000991519080080012 to:0.0004796765062625675 :0.0016269388411665644 +the:0.5758616500970177 a:0.23771600034493498 their:0.13240909928817904 th:0.03001363767679929 :0.023999612593069 +third:0.06982642540979386 William:0.03063477559197297 Third:0.018975224586768594 dent:0.00753231831403001 :0.8730312560974345 +search:0.5748732727600857 he:0.06932595045118001 I:0.058115587149655534 and:0.03761965547304991 :0.26006553416602896 +made:0.5261621260424714 willing:0.11260041062096247 forced:0.10780021288684112 compelled:0.08118177242937856 :0.1722554780203465 +is:0.25561480877600073 was:0.2262970102820619 the:0.0927063575742886 would:0.025777271022471362 :0.39960455234517733 +the:0.7490442269365974 no:0.18407147393102893 a:0.03789978699519823 not:0.022916386586049508 :0.006068125551125932 +ing:0.026582815022793794 figures:0.022114367638921467 it,:0.01896827420365029 women:0.013219881307930535 :0.919114661826704 +so:0.24604916166522411 the:0.20376831943839413 a:0.15710610853423973 announced:0.10119330892563225 :0.29188310143650975 +and:0.9870385955512752 .:0.005625420473210485 to:0.003012387520841258 or:0.001561880499954802 :0.002761715954718336 +away:0.09672707554187433 and:0.05606028274968655 up:0.02951525727407504 or:0.02856553993112616 :0.7891318445032379 +members:0.07700959826802807 time:0.06307838263806698 people:0.03487785906350593 rest:0.02224056305285172 :0.8027935969775473 +plans:0.566870373597416 way:0.1642192289953652 point:0.011979156525579505 very:0.011731734942277774 :0.24519950593936163 +part:0.4848444638504698 streets:0.037823242558305124 outside:0.023604830545175433 side:0.02126539495454084 :0.4324620680915089 +was:0.28801900021584215 For:0.18758860390080684 and:0.10685475675796798 During:0.09806602799428618 :0.3194716111310971 +of:0.021423548555168415 ground.:0.017373048662956164 and:0.016710568717358657 way.:0.010511434899191686 :0.933981399165325 +5:0.9999073875364746 two:1.6560907979420536e-05 The:4.138879688270648e-06 the:2.841229656099993e-06 :6.907144620190151e-05 +as:0.39670329381487635 for:0.11191726913635944 in:0.09810515769628447 to:0.07665050908986687 :0.31662377026261296 +country.:0.06017704924464068 way.:0.02548574883640647 State.:0.017089003640687543 man.:0.014635959281260024 :0.8826122389970052 +was:0.6176308221220167 is:0.1635465320550299 advance:0.038214331735257394 the:0.020866826241868395 :0.15974148784582745 +battle:0.14146224430316623 northern:0.12011316151998894 commercial:0.09630935094985152 high:0.05926287123356085 :0.5828523719934325 +a:0.7909993248410268 u:0.11010795902308125 the:0.05043296978640924 this:0.024562322973225973 :0.0238974233762567 +hours:0.15927756197438606 cents:0.12668983187155328 miles:0.09838155834861381 years:0.08813009455034757 :0.5275209532550993 +and:0.33519334898345515 is:0.09906364892990237 in:0.027033514271502686 of:0.024058784505085046 :0.5146507033100548 +will:0.4307633123710132 probably:0.2494546611608341 may:0.13620356973554779 should:0.09884559042699177 shall:0.08473286630561316 +and:0.10016681089303611 of:0.0885720751617606 the:0.06402596886033532 in:0.033127030248503386 :0.7141081148363647 +the:0.9522789529307676 tho:0.01725234407184738 tbe:0.008959178968052147 that:0.005925257445778266 :0.015584266583554681 +American:0.300035857560946 colored:0.10991428181590857 young:0.07469155436420581 Southern:0.051294791991833844 :0.46406351426710585 +with:0.9513234438986478 to:0.009168988740987566 With:0.0020069493419048574 of:0.0006341588355191734 :0.03686645918294049 +miles:0.031107545066352833 .:0.030849613760983368 feet.:0.018893689364850367 years:0.014575304940759932 :0.9045738468670536 +of:0.2849295964513425 to:0.27313976440560667 will:0.17085942978601326 and:0.1122737742907429 :0.15879743506629454 +the:0.9445058080137612 any:0.02789559706088021 his:0.005622173004270492 a:0.004005981896269426 :0.017970440024818624 +war.:0.43767647630172896 life.:0.16336891896820482 government.:0.011607712678873845 war:0.00895191095192335 :0.378394981099269 +seen:0.2477760621607666 bought:0.16863668672519647 kept:0.14781634349957481 put:0.10097687231808695 :0.3347940352963753 +speak:0.10535344839088373 vote:0.08767437407147038 it:0.06460753423163121 me:0.06269215111117242 :0.6796724921948423 +in:0.24590571527002517 In:0.19940601542684044 a:0.13108584250073005 to:0.09387756839475925 :0.3297248584076451 +ar:0.42057252851522137 and:0.031688059865811455 the:0.0158396812051551 in:0.011545015467649116 :0.5203547149461629 +Range:0.9986185763025486 of:7.743456374176347e-05 and:8.47473096040883e-06 Dakota,:6.816399053702072e-06 :0.0012886980036954764 +the:0.0987690708738827 is:0.07615240599954001 of:0.04389920397708173 to:0.04374191136444526 :0.7374374077850501 +and:0.8058862516461697 door:0.0064047677649242615 or:0.004215375216890943 to:0.003591355020595116 :0.17990225035142002 +and:0.6474240847395454 she:0.13009242212180172 it:0.0800832750417219 he:0.030831753207498303 :0.11156846488943269 +country.:0.006568328644900649 into:0.003494232952638628 efforts:0.0025212290101580123 law.:0.0018212696266317818 :0.9855949397656709 +mind:0.3193341677108027 eyes:0.1594669520534456 eye:0.07654157987464394 own:0.06988045055367495 :0.37477684980743264 +M:0.01713506182520273 all,:0.009061780335145903 the:0.007666109080654504 least:0.0067773702061354 :0.9593596785528615 +board:0.1737489367945747 property:0.06546714670674261 the:0.007288054160025698 months:0.0027023946185068576 :0.7507934677201501 +who:0.8846899640525735 that:0.01601985650189918 farmers:0.007625460045480299 days:0.0065949631233865515 :0.08506975627666043 +would:0.23975905943757225 rooms:0.10892583773233436 and:0.08617953718579137 of:0.05587936947654909 :0.509256196167753 +have:0.0927977396731678 the:0.09183994738987948 send:0.08112929489043613 go:0.034003965638202675 :0.7002290524083139 +It:0.1820084274677936 which:0.1346026542073054 it:0.08174081624558552 and:0.07611524935874703 :0.5255328527205684 +the:0.10673088121515385 authority:0.06938228239868273 and:0.05337688299462062 possible:0.03229033592288655 :0.7382196174686563 +of:0.6177798184317635 by:0.06878201729678983 at:0.05344100098579219 and:0.05220030067962793 :0.20779686260602648 +and:0.1338106330360717 low:0.06513682756374256 That:0.03272234426686364 but:0.031948062533462926 :0.7363821325998592 +J.:0.12048457561565583 W.:0.1084135188200872 John:0.05599186314309028 William:0.05079515900608159 :0.6643148834150852 +the:0.49437431881139765 The:0.2791597166970071 and:0.029431894123338673 a:0.016145676132736292 :0.1808883942355203 +the:0.8333129874958625 every:0.09877933995568848 a:0.033440968945510435 tho:0.005765899685904462 :0.028700803917034137 +who:0.10587826698498835 they:0.10210247418105237 They:0.09508813207858377 which:0.07531033025612077 :0.6216207964992547 +and:0.14085527286795235 n:0.061036200543198325 of:0.050604088847273625 St.:0.04744930095456441 :0.7000551367870115 +have:0.8106583444228915 who:0.05404115207532899 and:0.031204451032459866 he:0.02072556169057002 :0.08337049077874957 +the:0.31056346788442957 this:0.06603669341949028 said:0.03837563560160579 a:0.03662100200009717 :0.5484032010943771 +had:0.719261830936366 of:0.0207834950825285 received:0.015278387722025749 made:0.01078817562565159 :0.23388811063342815 +ure:0.48453761489175223 and:0.04258542683496548 of:0.024766504269536718 the:0.02024646725204687 :0.42786398675169873 +States:0.3563740029898617 States,:0.11562328450572511 there:0.029933212864162246 their:0.009028209147497437 :0.48904129049275336 +ber:0.138577551124995 lines:0.029273358016316656 tions:0.027439284638290946 of:0.023808218878520044 :0.7809015873418773 +fruit:0.020474855798451434 city:0.013500853785077394 people,:0.013467216425306135 Union,:0.00835540188771304 :0.944201672103452 +you:0.33229642341545285 he:0.0889264678693841 You:0.08130717926637641 It:0.07387209775992216 :0.4235978316888646 +a:0.4473123928645904 spent:0.03224048133003416 up:0.0185068991547856 After:0.012260689320330712 :0.4896795373302592 +for:0.18863419264477543 at:0.17604088887007094 of:0.15607844306885046 and:0.11976046670612459 :0.35948600871017866 +with:0.6105140740339845 to:0.1843383296576334 in:0.08923109454963861 on:0.04801676748694927 :0.06789973427179427 +of:0.645863455166323 for:0.047419158024092856 to:0.03533629864727035 probably:0.03442310699563088 :0.2369579811666828 +he:0.2824908719988711 and:0.1967174777437821 He:0.08116100841405605 had:0.02658475602273696 :0.41304588582055407 +York,:0.1887374194918853 York:0.1336969016577145 and:0.10621504164406165 York.:0.09187945154709834 :0.47947118565924024 +most:0.019778606552679552 the:0.014414492353190412 of:0.012808315322849293 United:0.012154470932766835 :0.9408441148385139 +of:0.12141109153857961 or:0.08942750009835412 the:0.07366662489614426 and:0.06340137580647737 :0.6520934076604447 +tion:0.05298175395098869 ment:0.02295959943409942 of:0.020929335318711967 day:0.016948259748115146 :0.8861810515480847 +time:0.20897127820146955 premises,:0.09424562219875797 same:0.04456064659980134 lead:0.043278194358490965 :0.6089442586414802 +of:0.8795465193802418 in:0.07156672636739811 In:0.022304489836295016 time:0.009677320862961325 :0.01690494355310378 +beautiful:0.05035909674288429 very:0.042492780701993235 large:0.04172995608420238 close:0.03891183078439208 :0.826506335686528 +water:0.033793264145231115 man,:0.016700424285377057 blue:0.01627791748459685 time:0.012024984368109686 :0.9212034097166852 +the:0.8039722628101974 tho:0.10299226451352823 tbe:0.058929925655463816 tue:0.028341384516564136 any:0.005764162504246429 +those:0.35323658802675556 find:0.08549348120919775 understand:0.0400787567058895 some:0.014113866436985716 :0.5070773076211715 +Mr.:0.8919787149441567 Dr.:0.04319768638582528 Rev.:0.02359547753017216 Col.:0.021206227404835225 :0.02002189373501061 +and:0.46663299622412296 be:0.23353878957645707 is:0.060737796292394175 was:0.016725404802888606 :0.2223650131041373 +the:0.23185372206506735 was:0.10896668587797011 are:0.09762555738302768 he:0.08821637904790573 :0.4733376556260291 +spread:0.7556232271353042 that:0.23093624762309334 of:0.006302038481825479 and:0.0015281682838270425 :0.00561031847594991 +of:0.7980639466453928 uf:0.09188879769721797 that:0.03775917959014062 on:0.03705967811880748 to:0.03522839794844129 +lives:0.03790109620114576 belief:0.03631321496193565 opinion:0.031974805674152965 people:0.025753386928387013 :0.8680574962343786 +had:0.5479261363975441 have:0.4423318241930382 were:0.003989140037093606 hare:0.0026258339124536506 :0.003127065459870587 +bonds:0.9916187288906974 dollar:0.002349865672872722 and:0.00019553651763074375 sufficient:0.00015340429909695803 :0.005682464619701975 +large:0.3311200618440034 half:0.09337878734409841 short:0.07752326884448267 little:0.07258060965855903 :0.42539727230885643 +the:0.9934237145515632 said:0.0015435068009068567 on:0.0004892596753755538 upon:0.0004756573922309841 :0.004067861579923502 +bonds:0.033923184922403815 sale:0.011790289086237011 bill:0.011124634183093042 election:0.010408259897813896 :0.9327536319104522 +well:0.8985138646487469 never:0.012085887742581349 ever:0.00985400572576037 not:0.008213915854298594 :0.07133232602861277 +be:0.5211391463237862 have:0.11747355044020263 lie:0.08894981476531577 not:0.049288977325359695 :0.2231485111453357 +ask:0.35167653525385245 asked:0.14530121195457726 arrest:0.13137329698081712 told:0.08359323939464647 :0.28805571641610667 +and:0.07592819054274402 of:0.07173353913304142 The:0.06715096918510478 the:0.057567687838559645 :0.7276196133005501 +up:0.23636701494030327 subject:0.11892002971134054 it:0.08981996168716526 down:0.06834709538015843 :0.48654589828103256 +the:0.8443876760511956 to:0.0564632071936125 of:0.05029208908975727 such:0.02495868209657217 :0.023898345568862576 +he:0.3077532614119601 they:0.23581899473516973 it:0.14822364334535432 I:0.11307762567881603 :0.19512647482869983 +and:0.15925056163690735 by:0.10794435701581265 of:0.10457298125372747 to:0.06982567992381879 :0.5584064201697337 +of:0.9188124123861741 township:0.030236574655179066 That:0.016994480819533444 in:0.004511714439541724 :0.029444817699571635 +had:0.3584009383531146 moved:0.0793354072262396 sought:0.07092184229518926 failed:0.06727430482342543 :0.42406750730203113 +other:0.4832816685812021 some:0.3184478799999046 the:0.1731140128878628 to:0.01037509737499542 :0.014781341156035053 +to:0.20354865208341733 of:0.16240629625112113 in:0.11992919502841781 from:0.11891365909161358 :0.39520219754543 +to:0.42758083307644507 and:0.11741849765638743 of:0.03665400622529548 the:0.026121590124322747 :0.3922250729175492 +the:0.3989048112993382 a:0.052307433455497515 other:0.03138690744041371 tho:0.016183225798728954 :0.5012176220060216 +a:0.47084562427354815 an:0.2230888753482426 the:0.16527317975061465 another:0.03344135378409747 :0.10735096684349715 +only:0.5696455925276148 loss:0.06284187674643715 less:0.03444071788892989 one:0.022300002165820943 :0.3107718106711971 +the:0.99441142418203 tlie:0.001451697972441612 tbe:0.0006345781163984172 all:0.0006254389807557111 :0.0028768607483741675 +the:0.23088824958035858 such:0.19881342882481365 its:0.1603032575950063 all:0.07840716382002198 :0.3315879001797996 +the:0.2316622059963201 to:0.09665336564065799 a:0.07441759755878004 and:0.0545470921629669 :0.542719738641275 +it:0.6134670761337805 It:0.20332731604010942 ho:0.05166916862512196 he:0.009862481844525945 :0.12167395735646207 +elected:0.35597091031378364 then:0.29041651278760877 him:0.02716656706050237 which:0.025642784409090746 :0.30080322542901455 +first:0.0664653503321556 great:0.034580824528025834 the:0.026315802720577715 last:0.02405482553796809 :0.8485831968812727 +were:0.9564533579802265 he:0.029153551325331588 the:0.0021825931435449936 was:0.0017642422900204695 :0.010446255260876372 +of:0.762922331241153 to:0.06583921023187377 ot:0.06571731582869896 for:0.03812885896345479 :0.06739228373481948 +more:0.02867978531076566 fourteen:0.007931969562768515 over:0.007124260836865615 1:0.006105125288155542 :0.9501588590014445 +fall:0.35116101605245986 tbe:0.03224036216067991 his:0.027717131575808365 tho:0.02616346983415252 :0.5627180203768992 +It:0.5642976938232704 it:0.2958563896212228 which:0.015249983486714204 he:0.012411306638878974 :0.11218462642991361 +the:0.18270594301433385 drawing:0.17022419271777237 a:0.04411375375838183 living:0.033154149366542075 :0.56980196114297 +of:0.7110656456170169 and:0.07299368707603317 in:0.03802024012056888 to:0.02677965585546806 :0.15114077133091308 +the:0.29599757528268317 of:0.06327807178962168 and:0.0505698694812495 can:0.03479469472080911 :0.5553597887256365 +and:0.09711855553271422 of:0.058476014076189874 Mrs.:0.05504197648345441 boy.:0.030414854014963567 :0.7589485998926779 +on:0.3466555444030625 in:0.1896339567662086 to:0.16228999100950198 across:0.15547729075376945 around:0.14594321706745753 +the:0.23800167521402407 heart:0.027782258059041005 this:0.013532134732928887 stomach:0.012956887218832824 :0.7077270447751732 +of:0.14614270443722224 and:0.07837010098903274 the:0.0730475665709945 to:0.037991183059520144 :0.6644484449432304 +man.:0.0520248835650568 time.:0.042047125743675196 one.:0.03469742617482925 case.:0.014434326633583554 :0.8567962378828553 +the:0.4316496277895774 a:0.12152054280146819 his:0.06024224211338649 this:0.04398836941479536 :0.3425992178807726 +I:0.15177670436588706 as:0.1323884529090856 in:0.12015941253819964 on:0.08589020516487085 :0.5097852250219568 +added:0.03372327287464016 even:0.022032833774437523 and:0.018955660952675604 the:0.018140326540533516 :0.9071479058577132 +and:0.10867081040986376 of:0.09634901022182414 the:0.04134205445058435 was:0.03503768052018722 :0.7186004443975404 +had:0.4396257634850767 has:0.2997085324063584 have:0.15195287001365906 having:0.04259869337563493 :0.066114140719271 +in:0.3409461054227225 put:0.16478700220115244 knew:0.14113479264344073 on:0.018792158299359134 :0.3343399414333251 +him:0.6087088969282768 me:0.18421824243784474 you:0.1267729068761026 all:0.04752287119906598 :0.03277708255870999 +own:0.03374051566386052 dear:0.028416887792804407 heart:0.02523564395988698 head:0.016647292701438065 :0.89595965988201 +of:0.16057790443834694 and:0.14329076876041677 the:0.051180492106028985 to:0.044106172939135144 :0.6008446617560722 +the:0.2995644650099184 Mr.:0.12387487203097053 John:0.10234081393323793 said:0.08942407665231633 :0.38479577237355694 +persons:0.11958188952609874 ladies:0.0721475487922918 them:0.06150297483981774 which:0.058405701488645274 :0.6883618853531466 +here.:0.008950852396272994 him.:0.007840070078572417 on.:0.007397483484720442 to.:0.0072977855621899415 :0.9685138084782442 +can:0.20540536862577488 know:0.1561955428441003 were:0.01469902191157662 are:0.01214444945574887 :0.6115556171627993 +the:0.5769902277568503 his:0.099523583747532 that:0.0837951132473625 Mr.:0.07807929363176062 :0.16161178161649475 +sell:0.234285213538022 and:0.22369224444430982 ship:0.10842388364223753 with:0.10231880498280259 :0.33127985339262805 +to:0.4396545485003624 of:0.26766374024626066 in:0.059626311017031315 and:0.0576918733597792 :0.17536352687656653 +S:0.0754288256804344 his:0.06182375788229769 p:0.05716962144831431 a:0.054577196238111685 :0.7510005987508419 +that:0.1361944659598905 and:0.1338533861182023 of:0.09050702884032762 when:0.08039733162130111 :0.5590477874602785 +thereon:0.917484244640466 received:0.0019936643967093603 from:0.00038051167019185366 and:0.0003009449933870741 :0.0798406342992458 +I:0.16043695725196638 and:0.11971019054241287 to:0.08936648080440161 who:0.08740282724803568 :0.5430835441531835 +and:0.6684193435159518 if:0.11691941838394658 of:0.04887432304947464 that:0.04788957877266028 :0.1178973362779666 +said:0.14636096708777477 made:0.08839359274094616 going:0.0882408852554058 about:0.07676117906765358 :0.6002433758482199 +and:0.1859587814515684 the:0.10327602202237696 of:0.06894102611547531 in:0.044292468515071286 :0.5975317018955082 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +the:0.43341781988498684 a:0.09870550836400913 that:0.06246660238943995 and:0.05273555294734513 :0.352674516414219 +der:0.01222236530186785 and:0.00863297279004671 likely:0.0061182947981390035 after:0.0058144588575539 :0.9672119082523924 +and:0.12521520424918536 refused:0.0437385766300065 as:0.04127672741730536 him:0.037704150852795056 :0.7520653408507078 +the:0.07836898299730187 saying:0.07088781892939518 affairs:0.03325491081707675 a:0.029903316387788797 :0.7875849708684374 +silk:0.05884258052294056 and:0.03489085010435332 rule:0.028395052252170712 clothes:0.026150665402582603 :0.8517208517179529 +of:0.21213690360713996 in:0.18571938707635097 at:0.14241484807464108 and:0.0939588118893474 :0.3657700493525205 +much:0.9948327389971213 is:0.0014229775474104474 to:0.0009087322049688547 the:0.0008663547150637738 :0.0019691965354355374 +to:0.47323360924340263 as:0.14673568985169438 toward:0.07529441635726035 in:0.05885023688514511 :0.24588604766249736 +without:0.18467904285372438 not:0.16012812325587583 never:0.1020714517787589 ed:0.07244727124963345 :0.48067411086200745 +proceeded:0.01834589772352113 filled:0.0002417093847239587 done:0.00023834736696781638 covered:0.00020220380769520957 :0.9809718417170918 +old:0.023175127573579878 the:0.020842517932467424 in-:0.01710722636792757 extra:0.015133619159323227 :0.9237415089667018 +over:0.3912556992581044 to:0.06797342199789419 a:0.0476114553238163 one:0.03145623723828306 :0.46170318618190204 +to:0.02670755228463783 a:0.014360742400757047 the:0.0065641415129868525 heavy:0.005631881250388388 :0.94673568255123 +of:0.5848734732466364 and:0.1388165952599614 into:0.10185485129718017 for:0.09312814451142418 was:0.08132693568479764 +son:0.25827548398545064 people:0.013089962656206376 friends,:0.011653415614720424 friends:0.010953203684571396 :0.7060279340590513 +the:0.27658713378074434 a:0.17782683155451534 4:0.11898306256956744 its:0.05679119504167607 :0.3698117770534966 +court:0.6250570851211392 courts:0.16650552739414437 court,:0.040457434691138494 are:0.01524480133693876 :0.15273515145663916 +act:0.22135401270877866 report:0.10086226604181887 go:0.040310162249743535 offer:0.018073760166656502 :0.6193997988330024 +the:0.3810516565351419 be:0.04538596948401735 a:0.025602520207131205 and:0.024968787919035656 :0.5229910658546738 +in:0.5588552928643639 for:0.19787735973009432 with:0.07973369446520655 of:0.06935843249875881 :0.09417522044157642 +A:0.5405655447212266 to:0.06968798834813969 now:0.06450780838457255 by:0.05324483009923128 :0.2719938284468299 +use:0.308187940260256 payment:0.12551902591580766 light:0.10618432353818169 sure:0.06392020501387259 :0.39618850527188204 +much:0.8156507342759595 the:0.03840049098830876 a:0.013331932778083833 of:0.012206828265366478 :0.12041001369228149 +The:0.18924628149537928 and:0.18829163389676148 the:0.08933042570230176 of:0.04868539893742276 :0.4844462599681348 +passing:0.1427682925468702 far:0.08408011405777911 to:0.021326899605945082 free:0.00962014529265426 :0.7422045484967513 +the:0.11957896004552461 a:0.053357451035167515 Dr.:0.048511532369927036 John:0.047225878067773265 :0.7313261784816077 +Committee:0.1293928617609381 committee:0.10215479561228373 premises,:0.08625414646302182 duty:0.020448654291848344 :0.6617495418719082 +and:0.20657556701519447 of:0.08108241633209075 to:0.07871298781994016 which:0.0673227013857157 :0.5663063274470589 +be:0.23132014426816697 make:0.10018993323706327 the:0.04073551108516072 check:0.03923621645874704 :0.588518194950862 +those:0.6323468116927979 opinion:0.17204904368086427 the:0.0464027437419626 home:0.03292362508967281 :0.11627777579470243 +I:0.1754669289125072 found:0.008283226111692 -:0.006125314538149466 portion:0.004463122274791921 :0.8056614081628594 +of:0.31357889322828875 on:0.23334560754584255 in:0.19593871727489617 and:0.08431478138360655 :0.17282200056736607 +the:0.08388452435267758 one:0.06858392753489681 means:0.059589938703414114 virtue:0.05478649310093209 :0.7331551163080794 +hundred:0.9213114461619029 dollar:0.002711512652961529 of:0.001397258782923795 day:0.0013832026218847265 :0.07319657978032719 +to:0.45723251030148104 of:0.42414060785651714 for:0.011641330995127708 hero:0.0099085815802692 :0.09707696926660495 +the:0.2015314816888732 The:0.14555421005496988 by:0.13643771628366874 and:0.10793699078750105 :0.4085396011849871 +general:0.11119628031663827 the:0.07204279749494244 The:0.03746303838708838 and:0.012275172211721573 :0.7670227115896093 +and:0.12530863459782485 of:0.08677464155663452 the:0.04224531786547612 Two:0.024094123073309746 :0.7215772829067548 +object:0.39694865843939126 result:0.09825194220963308 application:0.06386294557345958 largest:0.04828244538612474 :0.39265400839139114 +who:0.2180488466730244 which:0.18981813477452741 It:0.17235706470979467 and:0.1272640842323331 :0.2925118696103204 +all:0.13976018896113368 the:0.10187401850894762 of:0.04651044041271849 business:0.03504817449453354 :0.6768071776226665 +of:0.22086636234102502 and:0.150610132784776 the:0.08166100623075129 to:0.049839046995979096 :0.49702345164746864 +w:0.22369155618168352 special:0.08714325468334345 human:0.08028560208438809 pure:0.07479229802031613 :0.5340872890302688 +make:0.3005120793179476 have:0.1274895359300353 be:0.04639661823006449 take:0.04629513884219889 :0.47930662767975374 +and:0.1419494666515339 the:0.030655379835680476 to:0.01069501559658555 his:0.01040638252046857 :0.8062937553957314 +finding:0.07053266379872365 John:0.019833788956956394 Charles:0.0050940160525078946 said:0.004942067964179013 :0.8995974632276331 +towns:0.15249240015169677 they:0.04293063486770494 who:0.03465677207580211 country:0.033038070460248266 :0.7368821224445478 +any:0.07357469619931602 a:0.015163865270021176 such:0.012588610126670225 the:0.009751996027957068 :0.8889208323760355 +plants:0.01679435898798917 a:0.0106613389614961 Committee:0.009921927715695063 law:0.009051408499491974 :0.9535709658353277 +road:0.041443377734702094 motion:0.007557844564156795 of:0.002285057315110816 me.:0.00206135458842035 :0.9466523657976099 +It:0.26153452594603277 Mr.:0.23693406909939943 All:0.19814159349503543 In:0.06039927625201585 :0.24299053520751654 +loss:0.2660293470007992 names:0.14263439231197642 representative:0.059019942778745796 parents:0.020882347241877475 :0.5114339706666011 +to:0.11358466088428004 give:0.10566195314748393 gave:0.08645832348461896 made:0.034058010085145106 :0.6602370523984719 +bed:0.021238784955824153 same,:0.019025674835208672 people.:0.011430549959788268 houses:0.010748507828766882 :0.9375564824204121 +the:0.9150675003295465 tho:0.0443086746077223 to:0.029143994488752732 her:0.0020411417293648123 :0.009438688844613501 +of:0.2637661702495379 and:0.04953869067896833 .:0.04373119997813793 to:0.016287839974094453 :0.6266760991192614 +The:0.2540297726652788 No:0.06597868373684139 no:0.03671976689276533 even:0.03313624834440598 :0.6101355283607086 +to:0.9861326657571194 two:0.0008612475743763757 and:0.00039380907529670725 we:0.00026378578641667207 :0.012348491806790717 +W:0.0711363959353778 Smith,:0.001895194151388422 ,:0.00024011236368366633 Brown,:0.00020436791212191752 :0.9265239296374282 +to:0.9253868354111805 io:0.03176958443455076 for:0.027576489007401176 with:0.006842812582532831 :0.008424278564334793 +to:0.8534141363695985 and:0.07187806273496838 ready:0.023978229743646887 was:0.009751165465658101 :0.04097840568612818 +and:0.13167788667523495 to:0.13160614089352476 of:0.05261224929685486 the:0.047694035253732336 :0.636409687880653 +other:0.9493119528617235 the:0.0018728966468816674 various:0.0017084525536313765 many:0.0012534492193259001 :0.04585324871843744 +He:0.7015141931152968 lie:0.1166110384664709 she:0.03792987781381312 and:0.03416076896937702 :0.10978412163504216 +the:0.7173602842089253 this:0.045973927952331885 tho:0.026891574418708167 a:0.02506948295363215 :0.18470473046640254 +take:0.7963017996314918 be:0.04053673272290389 have:0.005656676557162796 the:0.003627763894892656 :0.15387702719354895 +days:0.6751670348907177 acres:0.20424559416755456 numbers:0.03059705420944279 cents:0.0099478180798566 :0.08004249865242818 +knew:0.33106628809292576 and:0.16377761438903266 says:0.1517506035472619 said:0.12955431365214945 :0.22385118031863022 +him:0.07886338066367317 and:0.07520721213646338 turned:0.0647327072652979 back:0.04464556780582769 :0.7365511321287378 +of:0.38079999655453156 the:0.08365347856850568 and:0.06616602982830402 to:0.037491800592195174 :0.4318886944564636 +was:0.2466373621134923 were:0.1569683612216026 has:0.06323838185800879 been:0.05503852725378947 :0.4781173675531068 +and:0.08238857314615114 of:0.06676716700939837 the:0.031169765390697487 John:0.031013166102748298 :0.7886613283510048 +to:0.9465168859805968 for:0.009060456867614527 at:0.004211617472041104 the:0.004121426505839837 :0.03608961317390779 +of:0.2373808425019783 and:0.12805910451489047 the:0.04616178936635255 The:0.032416873525759365 :0.5559813900910194 +1.:0.511119271348408 I.:0.24830905841934117 »:0.0030967645469805838 follows:0.0004681283747837219 :0.23700677731048655 +fire:0.00045035592571528 salary:2.9672033337982592e-05 a:6.973226493366042e-06 occasion:6.87293032567213e-06 :0.9995061258841278 +is:0.0039368696966669055 fine:0.0010835516574106616 -:0.0008130060641745908 j:0.0007674306774512437 :0.9933991419042966 +that:0.051014066805147903 of:0.03993678316214256 made:0.0385430652523093 have:0.034352997559083734 :0.8361530872213165 +of:0.6234200595101698 and:0.13285681371610944 he:0.0551621068892782 to:0.0521468458719844 :0.13641417401245837 +Company:0.16774927251250782 who:0.08193276339028606 Co.:0.07742032356891823 company:0.07461324174001234 :0.5982843987882756 +ty:0.7140711385969891 with:0.002266888388988455 ties:0.0019342486829983438 of:0.0006882178837551486 :0.2810395064472692 +that:0.8103379253480533 who:0.048982196479769216 and:0.03952743622089237 which:0.019454846628490723 :0.08169759532279444 +who:0.15972716881015686 and:0.09330917469157231 of:0.08877185126009121 Every:0.07939161376983062 :0.5788001914683489 +be:0.5576457176508994 bo:0.006918181934165414 he:0.0064960978252022305 the:0.004679088411150643 :0.42426091417858225 +active:0.028952932598269344 steady:0.024834117807087306 common:0.011618607456508567 higher:0.010351167443280365 :0.9242431746948544 +such:0.15210730994255517 get:0.15187063284582114 for:0.11231036950101665 what:0.11136919068467785 :0.472342497025929 +was:0.6822828754018371 being:0.12372964934798168 the:0.06196636156024453 and:0.055347480802116045 :0.07667363288782068 +e:0.5290167184544615 the:0.1636088816472627 said:0.018009982291641972 tbe:0.014651002586449592 :0.2747134150201841 +would:0.4616496994598235 did:0.12122584829497096 could:0.12027105619326672 was:0.10036009402025367 :0.19649330203168527 +the:0.5437495308311985 said:0.08406343431405716 a:0.02963428334758083 no:0.026773396448623175 :0.31577935505854055 +of:0.1696238530132209 the:0.16718989697127964 and:0.13684922693852677 The:0.09547180583991514 :0.43086521723705756 +said:0.05503269011989781 late:0.02124823555783098 and:0.01817512354043898 Hon.:0.013915495164828253 :0.891628455617004 +him:0.368638450902026 them:0.16235165780359842 us:0.1386343788788808 it:0.11361477644254663 :0.216760735972948 +by:0.3053072477198147 that:0.29753724250275054 in:0.17165062148510843 at:0.16923037581010678 hat:0.0562745124822196 +of:0.7713430371846928 to:0.0974084180767382 when:0.05082892954123881 in:0.033225175763624146 :0.04719443943370591 +lor:0.8635461395845636 for:0.13101221684998884 w:0.004753226631131226 the:0.0006849630231706195 :3.4539111457371547e-06 +state:0.3932662489777756 own:0.04558039622166868 Governor:0.03246624622531084 thereof,:0.027800288199217447 :0.5008868203760274 +following:0.10033176939757922 third:0.03714441812838738 result:0.03490183740783132 latter:0.019264257937293652 :0.8083577171289082 +the:0.45631911257602004 to:0.07486947266832844 follows:0.04472707736965637 The:0.022640399757980167 :0.40144393762801495 +did:0.6181349539985556 would:0.19871522327911842 does:0.08085299330392745 could:0.0741699301999879 will:0.028126899218410585 +the:0.7833669790111892 tho:0.10695780318140358 former:0.009142469253944513 his:0.006261044359118986 :0.09427170419434355 +do:0.11000294750163166 was:0.07498131774746863 show:0.059304729431208576 learned:0.05272286767680349 :0.7029881376428877 +new:0.11034684501385124 old:0.06874680521060748 j:0.06592338009748182 Atlantic:0.06335171049623141 :0.691631259181828 +and:0.1912518624456933 I:0.11217336247866834 but:0.07170482190238527 she:0.06456114642017502 :0.5603088067530779 +road,:0.05103355975259533 yard:0.03614055958909124 dark:0.03401748709675176 books:0.03112647948075102 :0.8476819140808108 +duties:0.0356720803602745 expenses:0.03356098774360614 powers:0.03302925772745639 early:0.020619877997029624 :0.8771177961716333 +highly:0.29585277817582695 the:0.059624567807325037 this:0.05437659200370044 interest:0.042101115486813556 :0.548044946526334 +to:0.9743519135998578 shall:0.009806899611336099 will:0.0010321792331474274 would:0.0010017311971783538 :0.013807276358480156 +sometimes:0.35786330767718816 any:0.3023070086314865 anything:0.02865174020365316 so:0.022698568949235203 :0.28847937453843703 +street:0.52082458838345 avenue:0.4228995104733626 E:0.008761092840114152 feet:0.008486644759349947 :0.03902816354372335 +order:0.6858188759514487 regard:0.09217230850159344 relation:0.012825878613977854 and:0.0120576898522788 :0.19712524708070112 +of:0.9995770873757138 at:0.00022168628142531832 and:6.0235192666118494e-05 to:4.605065371535093e-05 :9.494049647941882e-05 +it.:0.461829142946432 death.:0.05953429701037493 work.:0.01260224463570111 wit::0.008560825914826146 :0.45747348949266586 +of:0.24237407762922714 per:0.24062984567675993 in:0.1134658375498033 on:0.11216939042760633 :0.2913608487166032 +if:0.6228174021737156 and:0.05832965924095837 are:0.04222302632350324 to:0.02951812769511103 :0.24711178456671168 +dark:0.04412196483402921 sun:0.032960707825400296 case:0.03237455403874096 country:0.030998205685200307 :0.8595445676166292 +at:0.2172259821461155 in:0.170611017573805 of:0.15193447568500662 was:0.13571892551968673 :0.3245095990753862 +and:0.7931417693079399 or:0.1439902533977668 aud:0.015303931293083287 nnd:0.006318253297006898 :0.04124579270420315 +agricultural:0.9097217698540736 other:0.05018279760491743 the:0.011302541401463728 several:0.008113434703198523 :0.020679456436346663 +well:0.03823338821953759 a:0.020349425186263422 aforesaid,:0.017803463628340097 the:0.017167642737032446 :0.9064460802288264 +the:0.21282817872326232 The:0.139514422531618 and:0.1251381590567362 by:0.07808866669464892 :0.4444305729937345 +suit:0.06883299796369245 stop:0.06046034361487078 who,:0.05024318625481011 disease:0.023121742195738773 :0.7973417299708878 +of:0.9315829505206474 ot:0.02290355241274711 ol:0.02206009857884923 to:0.0036343481912441225 :0.019819050296512142 +from:0.366132156232273 of:0.20273585452839218 in:0.1670345229497388 to:0.09219689032910088 :0.17190057596049488 +3.:0.01839550580378839 5:0.014528397897032088 1,:0.013859548352238644 1:0.008786947519946941 :0.9444296004269939 +I:0.04299951929508308 to:0.00430261856369983 not:0.0010060488523140779 and:0.0006352017822931301 :0.9510566115066099 +and:0.15051859791020614 of:0.12690863557182566 the:0.09614720845023128 a:0.051371593127573875 :0.5750539649401631 +system:0.9463983220649603 for:0.0013207850231165387 This:0.0011285155222096686 There:0.0010226314679360141 :0.05012974592177734 +keep:0.941197624188235 hold:0.004009786383604649 on:0.0033435015972888226 buy:0.0033291090403198805 :0.04811997879055172 +persons:0.17917537761731855 who:0.020583680429912224 corporation:0.018786164761178677 that:0.008706548297495648 :0.7727482288940948 +a:0.6505853052264223 that:0.1238747650440711 the:0.11554851962431491 this:0.05191306182513107 :0.0580783482800606 +notice:0.1511437378838927 Notice:0.13045662532334484 That:0.09795237712240244 it:0.05126252565772948 :0.5691847340126306 +qualified:0.9951363694645564 able:0.002966026044401942 than:0.0010005373909013882 as:0.0007293651411654838 :0.00016770195897484474 +and:0.04304236524874618 to:0.011267491873862874 friends:0.00983643070913592 ;:0.008883297411637106 :0.926970414756618 +and:0.236871039377353 country,:0.17252779849081012 the:0.11978095363739195 to:0.04135485848490932 :0.42946535000953556 +some:0.8789850499068093 full:0.008230838957714096 greater:0.005142280207031325 at:0.004066526359839672 :0.10357530456860556 +nothing:0.5762044172625937 reason:0.21607640582309992 learned:0.03109853889941371 little:0.027985646893606043 :0.1486349911212866 +possible,:0.07418873586308686 they:0.01807397555535399 possible:0.01576124312829576 ever:0.00876836380008265 :0.8832076816531808 +pro-:0.024073482736905433 center:0.024063445802706144 coal:0.023615854374613825 north:0.023390166334549704 :0.9048570507512249 +Is:0.8385042582527755 was:0.04109171931044776 is:0.03446058424463964 at:0.00621625750912698 :0.07972718068301014 +as:0.5273676345967918 As:0.18063076659908692 of:0.06720009862052213 and:0.04091228948407116 :0.18388921069952802 +first:0.2368751293815469 not:0.06552978094150876 ap-:0.06185935506434234 -:0.057490105500349414 :0.5782456291122525 +latter:0.8211302573286606 board:0.1564731220154128 to:0.002788844070761539 the:0.002251386018678177 :0.017356390566486895 +of:0.4759531088697842 across:0.45823801699799455 from:0.018654113302334432 for:0.01271570948609778 :0.03443905134378911 +rather:0.12457258701108449 more:0.11604570966149917 tive:0.10508623740686646 ter:0.08742245627058602 :0.5668730096499639 +they:0.2699054002811023 it:0.2153214328751516 he:0.19041096405522326 you:0.08786276255060735 :0.23649944023791541 +and:0.07394655682601303 of:0.051712337243994294 which:0.0477738822821978 It:0.04220328101897869 :0.7843639426288161 +the:0.004666552320308941 left:0.0025489250546665756 little:0.0018053547253498146 right:0.001636302753053273 :0.9893428651466214 +are:0.22581212904182177 and:0.20978864793197152 ns:0.1429521926186548 It:0.1206297984457769 :0.300817231961775 +Tbe:0.22771227917270806 a:0.19151768778559428 and:0.17736623165614582 the:0.08669949635239446 :0.31670430503315744 +a:0.40728401872819764 .:0.11545769995835045 the:0.06277217206496674 large:0.020494882388001758 :0.39399122686048343 +in:0.21102186178144144 of:0.1037980771769057 and:0.07346718643158161 with:0.06736996318287553 :0.5443429114271956 +thing:0.9772365207644921 the:0.0007822604099338204 with:0.0006821338768096712 life:0.0005118163455389835 :0.020787268603225634 +day:0.09920006562432979 old:0.024041617553314677 others:0.02094457147468493 house.:0.01759685879454149 :0.8382168865531291 +hour:0.11762810137817441 life:0.07737504885170364 day,:0.03382357446044658 value:0.030669068274297866 :0.7405042070353776 +the:0.7286875604170913 on:0.15196020391468013 tho:0.05220202075254603 needed:0.02645909509111483 :0.04069111982456776 +and:0.1988644688500991 north,:0.13177197103577493 state:0.07174217711930421 o'clock:0.02136837830776875 :0.5762530046870531 +sons:0.02956920500851324 sum:0.0027083822037524846 name:0.0014271990447086915 extent:0.0013608171769910152 :0.9649343965660346 +The:0.9298115700865187 the:0.014920989726023667 and:0.0018604684334679426 of:0.0011333854241414394 :0.05227358632984824 +at:0.5695202175190474 At:0.2130719530062282 by:0.1665479437749716 after:0.023006829327885676 :0.02785305637186714 +a:0.26933961952651464 of:0.14595504948547205 next:0.11598316264239895 I:0.058122378865079094 :0.4105997894805354 +was:0.31219965220577894 could:0.21156198895679837 had:0.1143288436637715 went:0.04378878581331346 :0.3181207293603376 +the:0.9125869552442137 a:0.03168663832161037 tho:0.015658062752111148 tbe:0.011760136946869806 :0.028308206735194845 +been:0.9326942065182282 them:0.004986579716840526 also:0.0040522112700025455 recently:0.003471831144378295 :0.05479517135055048 +the:0.6076231620289202 a:0.22013259720745898 an:0.12388824006058954 tho:0.012314424928077687 :0.03604157577495359 +did:0.3501006487686182 is:0.24192904210490654 was:0.24100418431819895 does:0.08483561846777696 do:0.0821305063404993 +are:0.0782112246251519 the:0.07185011038853899 sugar:0.06540111710188867 in:0.04035108540886675 :0.7441864624755536 +that:0.5802885712105003 the:0.14666160125665959 a:0.0728780680165887 their:0.062351048178295475 :0.137820711337956 +that:0.8093310875189571 to:0.11234481054462683 in:0.034436465375653764 how:0.02522075860779093 is:0.018666877952971533 +per:0.966232915651496 ner:0.0034163996901302295 and:0.0007981575354253699 or:0.0006547469247426671 :0.02889778019820562 +of:0.19444211092217548 at:0.0692421950671107 run:0.05570911871793948 set:0.0543446981075022 :0.6262618771852722 +and:0.11169962094214539 to:0.07065343119653443 the:0.06673940529870183 of:0.06211370783370208 :0.6887938347289161 +next:0.7976927825551738 past:0.10425803749752688 last:0.08753184166184322 first:0.0014310785882061204 :0.009086259697249879 +of:0.06800099831413194 conditions:0.018248989148481325 local:0.01685511207172278 new:0.016828933581999335 :0.8800659668836646 +in:0.4465459746842128 by:0.31943721340630876 on:0.1073301903712025 In:0.06571382723219565 with:0.06097279430608024 +the:0.9808203639050422 tho:0.004861483901970719 fee:0.0013122845356336847 tbe:0.0013013168772168355 :0.011704550780136639 +new:0.08567708497799144 perfect:0.03793764151401914 man:0.022355477258325516 nation:0.016631034810774888 :0.837398761438889 +upper:0.22709075480874588 central:0.17854453451478114 back:0.09547727424758952 greater:0.07161449599328269 :0.4272729404356009 +carry:0.5487943631084667 bring:0.06572942446262216 be:0.05534605527427771 do:0.05493661325546033 :0.27519354389917305 +caused:0.21464111053806967 wants:0.07376206083081417 for:0.05663378328755894 told:0.03364479999103754 :0.6213182453525199 +of:0.22502897526235302 and:0.022763200711859284 the:0.022357053092199576 to:0.01962952184230765 :0.7102212490912804 +and:0.13022897140470746 by:0.09330545527813056 with:0.0931764829341503 to:0.07734704372147506 :0.6059420466615367 +there:0.8331991217524832 it:0.08342651785614884 he:0.01485211819945033 There:0.008661988790038369 :0.05986025340187925 +the:0.19465218536649098 a:0.17668676694876187 black:0.09907655114261574 great:0.0953487965295803 :0.43423570001255113 +is:0.511908113974099 was:0.2509004684747339 Is:0.05247791037597799 will:0.034354000649104294 :0.1503595065260847 +and:0.3599369851912491 of:0.28929807012467523 in:0.15066629791775316 to:0.06984451463314267 :0.13025413213317977 +and:0.11768463021409825 of:0.06253504247344342 the:0.05990015862566202 to:0.02991271755477966 :0.7299674511320168 +and:0.10729137938911375 the:0.05738403868872264 of:0.05167589477333986 from:0.04877073241102886 :0.7348779547377949 +between:0.47411506661940417 in:0.2794476464555797 is:0.098994615059907 In:0.08567645602100071 :0.06176621584410847 +hot:0.033279432430693805 con:0.0316359387462658 great:0.027543858369166563 iron:0.026284262124014753 :0.881256508329859 +New:0.6191702738399611 which:0.33245857662363637 all:0.01522829346735481 of:0.007638163847111274 :0.025504692221936548 +avoid:0.15506791114712548 the:0.11146203109655321 make:0.10893067332303939 prevent:0.07969865749800663 :0.5448407269352754 +it,:0.014475837850613585 ground:0.011630399345545512 the:0.010651100998913431 us,:0.004236836202249827 :0.9590058256026777 +great:0.1244789629544747 members:0.030213111416171032 own:0.025558091648949528 people:0.02307666702108798 :0.7966731669593168 +right:0.3973397146691908 freedom:0.10495515842883707 amount:0.06966057589217428 degree:0.04919511515239597 :0.37884943585740166 +made:0.02512837216692153 with:0.016290474351139922 making:0.015479174165265642 and:0.015400171419251754 :0.9277018078974212 +by:0.5905656159330455 sometimes:0.14942064976710168 which:0.10316302344238401 has:0.06010311821173567 :0.09674759264573299 +the:0.22441362332845904 The:0.13278772062694652 of:0.11024694911374716 and:0.08936036918923874 :0.44319133774160857 +the:0.21737430777413372 his:0.05657970376082956 of:0.042451686419940404 tbe:0.039254565685171605 :0.6443397363599247 +at:0.6206013100102176 the:0.19575771679689377 a:0.06030863674268528 much:0.020920680651150676 :0.10241165579905268 +of:0.9120112082705213 to:0.014770590011773816 in:0.012553879276891168 and:0.012057575626859017 :0.04860674681395466 +in:0.1180418030167072 financial:0.06982644847135092 the:0.06549465918936095 tho:0.041634538771050444 :0.7050025505515306 +on:0.1973146384218839 in:0.09820095957221749 at:0.06415390176520018 that:0.042571053994033145 :0.5977594462466653 +cases:0.08540179607345946 stocks:0.022361568456224966 officers:0.015452597213773414 power,:0.010975971807398413 :0.8658080664491439 +or:0.3969532917502487 a:0.1680676261988471 annual:0.10412107386815135 n:0.06027262823685298 :0.2705853799458999 +approved:0.018887658948339894 considered:0.017355044272593923 not:0.015251576693499351 especially:0.013702425454381412 :0.9348032946311854 +in:0.1764973482513671 and:0.16768660661120705 as:0.14161318754111088 that:0.13851920461868025 :0.37568365297763473 +gold:0.7316054907907703 the:0.10671751031664357 to:0.061310268451682436 this:0.05185105103973567 :0.048515679401167834 +be,:0.03073886446345007 Washington,:0.021978397090601953 Baltimore:0.018394533411908005 the:0.006269325532963107 :0.9226188795010769 +be:0.6721616860997173 le:0.11209719400072964 not:0.04955089070520774 give:0.020252235215356316 :0.1459379939789889 +a:0.9931621207766903 one:0.0030623265501222743 the:0.002379102030504412 u:0.00073698946973141 :0.0006594611729516181 +which:0.1534702032504837 that:0.10274066827198988 in:0.10005215843916439 on:0.09664192842192577 :0.5470950416164364 +word:0.15565619258793162 of:0.10742093558362065 was:0.06524808511575872 is:0.01551669263786557 :0.6561580940748234 +against:0.6209038786882336 that:0.1692718163253216 and:0.06880917847614935 to:0.05479437496694051 :0.08622075154335494 +office:0.11074099252669554 hands:0.05001320254274091 history:0.03603216486003601 face:0.027225366536327508 :0.7759882735342 +the:0.18742331854578587 who:0.12446977634208743 and:0.11998446557958498 came:0.07514860407415581 :0.4929738354583858 +or:0.41904050657419234 be:0.2246749488306697 one:0.17365715356970396 and:0.09491254784883418 :0.08771484317659985 +mo:0.011674933377336593 ac-:0.0004704676664861868 and:0.0002303034627112692 men:0.00010373578180149188 :0.9875205597116646 +the:0.33538654733110784 a:0.19647707053449576 him:0.15451464729749712 his:0.05911762674901233 :0.2545041080878868 +through:0.14904801090215838 on:0.13115771041132193 but:0.048076092290411036 and:0.04806444688772555 :0.623653739508383 +and:0.10567582742822446 to:0.08867205060395054 for:0.050772412911336044 the:0.04147963592916754 :0.7134000731273215 +.:0.9788172895690054 ones:0.002866817710767299 his:0.0004197773161418075 W.:0.00029648867132336005 :0.01759962673276208 +the:0.43171657707644223 a:0.05536286738457608 this:0.023649674982506048 his:0.020168265415717958 :0.4691026151407577 +fact,:0.0478080474990599 money,:0.008497590306505213 time,:0.008278163844544986 life,:0.006811830824731674 :0.9286043675251582 +people:0.305704006888194 supplies:0.21189578084728963 candidates:0.05206386582599957 conditions:0.046388047952151165 :0.3839482984863657 +it:0.6448521123816949 he:0.15197655010278563 Congress:0.07829264631325816 she:0.04685435237131052 :0.07802433883095075 +and:0.260692597077245 the:0.09818603340995666 to:0.07566988549478695 The:0.07154719401924163 :0.4939042899987697 +was:0.19673504277749668 the:0.15722647689135474 men,:0.08642710336131118 had:0.06053914989379191 :0.49907222707604554 +or:0.5342278867890684 the:0.10708890226366229 The:0.09718571502401814 to:0.07754765539907353 :0.1839498405241777 +very:0.056117941564141294 good:0.04067608941211231 most:0.025862555965041358 little:0.020654331221066167 :0.8566890818376387 +and:0.5785160415864563 And:0.10119352038025489 looking:0.0478636952605209 aud:0.028502962089371 :0.24392378068339693 +and:0.13790977179088337 of:0.05522831462947288 in:0.04180303973444878 small:0.013964738153656583 :0.7510941356915384 +of:0.6168106884574657 and:0.07594520269102643 in:0.0684291808720277 to:0.057605470577436715 :0.18120945740204342 +in:0.32889338954028385 up.:0.23305013992290255 up,:0.0971525133904967 or:0.04178876836726706 :0.2991151887790499 +by:0.4683587061390378 All:0.1480616938817913 and:0.11675029815506241 to:0.10253845502639365 :0.16429084679771466 +above:0.04867228189530534 Grand:0.04070166160074711 last:0.031432290787614225 two:0.03118003448770652 :0.8480137312286266 +finest:0.4085466827122391 best:0.33340843130237285 noted:0.12424003633419191 last:0.10625058498505004 :0.027554264666146105 +and:0.0019278643743510882 Brown,:0.0013572882222477403 Smith,:0.0011977259151014132 A.:0.0005051144947044714 :0.9950120069935953 +city,:0.4032617502187348 city:0.09501090343591433 lots:0.017198112200803355 piece:0.012857389587489061 :0.4716718445570585 +satisfied:0.08529453975851237 only:0.04034119455655979 familiar:0.01404144336627581 so:0.013723348377583752 :0.8465994739410683 +costs:0.6637996048827329 charges:0.02383329633971893 named:0.010380928778092657 mentioned:0.008624386611462583 :0.293361783387993 +and:0.07292979223040176 of:0.0721169484375988 the:0.07038176814558446 to:0.03135847534279742 :0.7532130158436174 +past:0.8514789525670954 last:0.1058147370025358 three:0.011959734236707965 for:0.001980605504434945 :0.028765970689225824 +put:0.13318640951998287 let:0.07246414094854485 order:0.07199204345917627 keep:0.07181008720178665 :0.6505473188705093 +about:0.2567879690005194 in:0.14953364030969596 on:0.03463315812462224 suit:0.028613866422805796 :0.5304313661423566 +improvements:0.015071043218223024 plans:0.012669253553736092 construction:0.011739820327316396 work:0.011441931053606781 :0.9490779518471179 +no:0.7132007519410026 to:0.11440014253007973 can:0.05287788290439565 and:0.043729469869323565 :0.07579175275519846 +official:0.07353066710091316 best:0.0663560729209215 desired:0.030730267676620255 necessary:0.03034134895868577 :0.7990416433428592 +he:0.2952881482919147 there:0.2635662738853563 I:0.11498537712017184 they:0.10379223648280074 :0.22236796421975635 +and:0.8022631661941094 or:0.03160226332082891 aud:0.029244553613347064 regard:0.015234609802162125 :0.12165540706955257 +knew:0.20192471230729292 City,:0.10355336377268852 City:0.07694819774290404 county,:0.053886064559165635 :0.563687661617949 +is:0.34269032543388545 men,:0.2417560012583184 of:0.1536962640944094 be:0.06642384037197918 :0.19543356884140736 +same,:0.03592157963259195 city:0.028044662217838596 state:0.022504281377679892 house:0.01648800865246547 :0.8970414681194241 +of:0.1371364731168511 and:0.08986240882770524 the:0.06736395747977036 at:0.02570558978903372 :0.6799315707866395 +the:0.4877259916334292 a:0.091239376821133 me:0.06164584090561405 his:0.05551212007182038 :0.30387667056800344 +pur-:0.0002781311605479486 and:0.00020349931777562585 pay:0.00019194918206059177 officers:0.00018866185098910336 :0.9991377584886267 +was:0.24636104550791518 is:0.15081558871774658 and:0.09393911751095445 Mrs.:0.06362577805967128 :0.44525847020371245 +war.:0.0028335189860088468 case.:0.0025726131494109737 State.:0.002189308815916593 States.:0.0018106897837717913 :0.9905938692648919 +of:0.2058708587554064 and:0.13618762679862456 the:0.08155504309455046 The:0.05210437999855965 :0.5242820913528591 +on:0.4037710164555291 in:0.18407813302723092 from:0.08553201114993485 of:0.056571803054478724 :0.2700470363128265 +tn:0.3718865764661318 and:0.19504637153984392 the:0.11718102810695048 are:0.08984582570312627 :0.22604019818394747 +hopes:0.06346705249014106 wages:0.04307498101923229 cities:0.03259291586988061 party:0.03196665182586208 :0.8288983987948841 +road:0.1016745841597992 thence:0.04943745537354352 course:0.03213975763009901 running:0.00864833136126293 :0.8080998714752953 +mo:0.43455586193809953 the:0.4085334746985111 what:0.09514410014047645 his:0.03743135110035139 a:0.024335212122561435 +treaty:0.6962180395058661 matter:0.022031559192360987 time:0.02069106285307767 meeting:0.013356137109750888 :0.24770320133894422 +till:0.3041935246641956 that:0.19595059647576182 as:0.16506209576513597 when:0.07635169318461348 :0.258442089910293 +and:0.09909462836767446 to:0.09547750802484313 of:0.055284595809261386 the:0.03793530292567663 :0.7122079648725445 +to:0.45080148691389005 the:0.02823791172728936 and:0.01088742448650169 a:0.010501052723112803 :0.4995721241492061 +get:0.34501573357076903 around:0.14156730175877053 on:0.11085868270464591 over:0.054714265081755746 :0.3478440168840587 +vast:0.8967420155054818 considerable:0.037681733782113216 great:0.02681551700177529 large:0.006997980962610739 :0.031762752748018847 +not:0.20125324342437884 very:0.13446217645478967 only:0.12136012737935084 now:0.10383827274589026 :0.4390861799955905 +we:0.2870735697544215 it:0.21591143146965336 she:0.13180502167372526 he:0.10468506800179679 :0.2605249091004031 +most:0.030230464935238902 government.:0.024754976391261504 war.:0.02253229858097676 day.:0.016866569514586958 :0.9056156905779358 +time:0.1929855719370707 story:0.14141119273016345 and:0.06604522764902826 time.:0.04102935049733056 :0.558528657186407 +north:0.020358782338064714 northwest:0.013580899079646857 south:0.009177715668853814 Register:0.008013787069649473 :0.948868815843785 +you:0.6753788660049288 you,:0.020731809214317196 it:0.018963319952317214 to:0.00925764151429971 :0.27566836331413713 +to:0.3689076056675664 without:0.2072774601166462 than:0.08607354050156794 needs:0.05469529836614245 :0.28304609534807684 +the:0.6235982858619641 this:0.10658175584557476 an:0.048372397894472764 a:0.03684826293861623 :0.18459929745937212 +a:0.13070269760195147 more:0.07347006839844819 found:0.05866722446437806 the:0.04817066746435865 :0.6889893420708636 +to:0.45762325024248957 and:0.08789377821183052 in:0.07090102462140108 with:0.05196817699064052 :0.33161376993363817 +of:0.31520062936105386 and:0.20900337703961547 with:0.07260694749614278 that:0.06202339424832361 :0.3411656518548643 +not:0.2355773432320065 to:0.19857924815079336 make:0.18897540550248124 be:0.052496287238253315 :0.3243717158764657 +has:0.2479123216573081 had:0.22897129377733003 have:0.118284737037597 is:0.09751776226094314 :0.30731388526682185 +and:0.4714807102544092 but:0.3144720870894511 for:0.08985407494988314 as:0.07099205037031232 und:0.053201077335944175 +company:0.17033439965652206 ment,:0.0780021202180732 Board:0.011272858239369014 committee:0.010765433244950048 :0.7296251886410856 +a:0.15468597608971843 de-:0.0452627967439266 the:0.04272018476401 his:0.016424856061546558 :0.7409061863407984 +U:0.4213136710728966 A:0.2919927090309112 M:0.08686552935847999 T:0.05536854973189849 :0.1444595408058138 +r:0.03870918064766849 the:0.018922746631542746 number:0.008729123547539587 city:0.007375115042453533 :0.9262638341307955 +where:0.3497160630355184 as:0.3476848649850241 because:0.13335585393519483 ;:0.08532261714476287 and:0.08392060089949989 +of:0.8738400970996549 to:0.06784950312213801 on:0.019707987192185868 in:0.01820392549327687 :0.020398487092744142 +of:0.3269112570277009 in:0.15022155578057184 to:0.13253415860429027 and:0.08890054695433396 :0.301432481633103 +found:0.1497767980008455 held:0.12040819487836774 made:0.07687002657457714 placed:0.041028272407007293 :0.6119167081392023 +as:0.738378749353428 failed:0.09410404041368778 refused:0.02358716131762995 ns:0.019666386872230632 :0.12426366204302368 +he:0.4127434625112403 nature:0.3870219058802514 they:0.10809530522780716 we:0.05150117194931399 :0.04063815443138714 +of:0.10384967861233042 or:0.09684320454195242 and:0.08767241407804297 in:0.07825598138444323 :0.6333787213832309 +you:0.08673051787117238 open:0.05265017762274018 will:0.007740025695297836 and:0.006973033068453443 :0.8459062457423362 +who:0.15933749278880135 would:0.0941667031446313 to:0.04882896693943095 I:0.04714024696535006 :0.6505265901617863 +the:0.40936154703897043 New:0.06836100175556456 that:0.06715326097148376 these:0.058918799348458215 :0.39620539088552315 +the:0.45480284333621895 in:0.22853775905141033 by:0.06327465576979982 but:0.014009094432231691 :0.2393756474103392 +and:0.24103989472741247 to:0.17712478251953612 I:0.042279680831963866 which:0.04088186872800545 :0.4986737731930821 +the:0.42676714899358376 whether:0.16913283236499851 be:0.055108061845432814 a:0.05314274733235137 :0.2958492094636335 +the:0.36707957885416004 a:0.05399733063938518 their:0.025290520084389635 this:0.02321541786442104 :0.5304171525576441 +the:0.30539866758784745 and:0.14642786115223824 of:0.08816556775675712 The:0.05237924926145085 :0.4076286542417064 +close:0.048756783226543025 trial:0.03859432337362176 point:0.03831643834951222 question:0.035787307474113406 :0.8385451475762096 +of:0.28442711220076383 and:0.11474385970035803 the:0.0611194978171653 was:0.05936749577989879 :0.48034203450181395 +from:0.2854977694138208 in:0.2254594647154483 of:0.2086990422241462 on:0.1364413907214564 :0.14390233292512825 +the:0.6185748529321297 said:0.053275427662190206 his:0.04312840533104822 a:0.032445770492955474 :0.2525755435816765 +and:0.09543099457546914 the:0.050797216741813804 of:0.04854688925017283 to:0.026516435270162977 :0.7787084641623813 +en:0.34883008844935365 of:0.12879609623965413 and:0.05825195237732641 the:0.045862757222075654 :0.41825910571159014 +the:0.38032363935460217 on:0.19141716522125762 clear:0.06127602292953955 and:0.051067695215343205 :0.3159154772792576 +a:0.997026551726377 the:0.0010741209139155283 getting:0.0005727055845176302 no:0.0005461923884463925 :0.0007804293867433275 +our:0.30514002499188725 the:0.2902471729857249 his:0.09580117925601866 my:0.08928141068113472 :0.21953021208523427 +the:0.47456999660779237 not:0.12035092539644515 Senator:0.11156448144361783 Mr.:0.08526454629893024 :0.20825005025321439 +a:0.3072878495538647 yet:0.21830399294101557 until:0.16338713417051554 been:0.06690853377402263 :0.24411248956058162 +and:0.32955455801001854 but:0.32655423158731245 only:0.21270813216310483 from:0.06809712733629641 at:0.06308595090326785 +the:0.9968535647984809 this:0.001569692551529137 a:0.0008916313696372092 last:0.0004281608264549933 :0.0002569504538979219 +for:0.6243023680952137 to:0.1526701652621497 in:0.09058739971221766 with:0.08525170140811389 on:0.04718836552230512 +street:0.008212787886031208 and:0.006950941824617639 hundred:0.005682113006441253 in:0.005152761618338431 :0.9740013956645714 +not:0.5042085977548941 equally:0.3287211167996866 only:0.03331357804398138 this:0.027895535920314102 :0.10586117148112384 +father:0.09974218805013337 boat:0.0650201206519732 stomach:0.05353200482790791 friend:0.03183736024332616 :0.7498683262266594 +recent:0.07959989090256255 new:0.05046705326963092 the:0.03648929872169789 old:0.0343327565021381 :0.7991110006039704 +tion:0.26027160586706566 ness:0.11553737341420085 ment:0.07490386995269689 of:0.058544034908713606 :0.4907431158573231 +the:0.32341883689119494 a:0.04195371500789106 their:0.01908272291899854 county:0.018649376578837234 :0.5968953486030784 +of:0.9938831814256807 et:0.004151576267077765 for:0.000416783782562071 in:0.0004063609810833273 :0.0011420975435961593 +United:0.9295976209700832 Northern:0.003462364095971224 Southern:0.0015221292317240199 U.:0.0012448586814427895 :0.06417302702077875 +purchased:0.19455233855758655 conveyed:0.030041628594591138 made:0.0063398339931858075 fed:0.0051777107861982075 :0.7638884880684382 +been:0.15239220439147452 and:0.13376790470387384 but:0.05920954766179126 with:0.047854552563911454 :0.6067757906789489 +of:0.5501861407948265 by:0.17061991340842264 on:0.11982812706642744 is:0.09844606077870968 :0.06091975795161365 +be:0.5384217371176175 out:0.11111976059172546 is:0.06674937327832085 more:0.04976290001221441 :0.23394622900012166 +which:0.2361886084847862 sight:0.00896545476258782 that:0.0026842359431144412 whom:0.001682990774827379 :0.750478710034684 +ol:0.515647260235102 of:0.2882056566786314 on:0.13140656028285114 made:0.03615691157779873 :0.028583611225616732 +The:0.6737892002771048 the:0.12929969768173574 at:0.054437072755366064 tbe:0.04227158860640253 :0.10020244067939088 +and:0.112651023069879 away:0.09527797356192615 frequently:0.04518044708906454 was:0.037641014979436296 :0.709249541299694 +of:0.4519622730280106 in:0.12025163045428218 to:0.10099727695245535 for:0.07438253936453067 :0.25240628020072126 +place.:0.3005935609927911 one.:0.0662864204435121 other.:0.019341145172043116 hand.:0.009316804268224347 :0.6044620691234293 +the:0.26478090563966417 this:0.227158436255504 a:0.09475743183450652 which:0.07072299468541252 :0.34258023158491274 +of:0.12064226448520378 was:0.09382808650278444 the:0.08417897956105765 and:0.08149854328403175 :0.6198521261669224 +the:0.5425566160062814 a:0.3644589375185714 tho:0.04286646420436865 his:0.028330392312534272 u:0.021787589958244334 +purpose:0.2098398884402152 sum:0.09632062407470394 benefit:0.04295304863892478 use:0.030705367537483437 :0.6201810713086727 +the:0.9594385965610568 a:0.03902128365329305 tho:0.0012050350128878882 from:0.0001340903287601634 :0.00020099444400210626 +of:0.3226237104778051 ago.:0.119866217735758 ago:0.1072631616854001 the:0.0963888392392055 :0.3538580708618313 +she:0.989560200432069 the:0.004155008031846392 this:0.002339780396751465 we:0.0012435151140618153 :0.0027014960252713842 +they:0.0721541735892725 who:0.06814624681404212 and:0.05733863376301007 which:0.0562072189011596 :0.7461537269325157 +.:0.07531392771140732 the:0.012600835124137332 of:0.008918616591876554 and:0.007575571810051878 :0.8955910487625272 +to:0.21020945266622365 in:0.12732120022858995 with:0.10655852144580212 of:0.08799163514638562 :0.46791919051299863 +the:0.46308377736255935 a:0.23996802569625214 tho:0.15170664811989187 Its:0.11429915124964095 :0.030942397571655834 +as:0.8358291929445771 to:0.05984887333213682 by:0.03751909482506928 aa:0.02960735943253347 :0.03719547946568304 +tion:0.13642187857810129 as:0.0512264796213621 attached:0.03382491000039798 and:0.02753583408412182 :0.7509908977160168 +and:0.7404070205045146 Is:0.09276438898606758 hereby:0.05588441767658414 is:0.04198007022463104 :0.06896410260820272 +accompanied:0.39948841356566656 created:0.29846819614679004 approved:0.03542068513353045 paid:0.03135285774521602 :0.2352698474087969 +the:0.41703037507380547 he:0.11701913935776163 his:0.08641400592638465 my:0.06553709285045549 :0.31399938679159284 +back,:0.6153697910556892 ground,:0.0705591657207805 river,:0.031897951411290155 water,:0.02692242851682025 :0.2552506632954199 +of:0.2493372893506266 a:0.2243556780792772 the:0.16230993144133915 and:0.048818282720865525 :0.31517881840789164 +disease:0.5431031375729362 thereon:0.028411180603023178 interesting:0.006265445268107572 thoroughly:0.005974509427818347 :0.4162457271281147 +who:0.5616182275425786 north:0.06923517727879387 current:0.06265667619097232 nation:0.03181019737506315 :0.27467972161259213 +up:0.5633003545591952 in:0.11051288036684413 down:0.08115147218935939 on:0.07398785317612401 :0.17104743970847724 +E.:0.4293956615885439 a:0.3566741850492189 C.:0.08794601972451205 N.:0.05094379206529454 :0.07504034157243063 +man:0.13560973295003076 one:0.1283808748880163 of:0.10799953491912871 house:0.10038159875276577 :0.5276282584900585 +of:0.5487033604391414 in:0.15324681536247978 at:0.12238245038843162 and:0.08553132912980438 :0.09013604468014286 +the:0.00045620611916998444 and:0.00023201969585108465 ;:0.0001408663318101202 Mrs.:0.00012779894537751432 :0.9990431089077914 +the:0.1553727058578975 and:0.12775903108398673 The:0.0990586766696312 street.:0.06277332438444469 :0.5550362620040398 +life:0.2840316105563547 character:0.04979508737352314 secretary:0.04839972289241977 and:0.014968041666936648 :0.6028055375107658 +suitable:0.08936173323949494 powerful:0.06706129505524497 land:0.02950959837756479 so:0.026609889033215105 :0.7874574842944803 +and:0.20921669152349145 or:0.07413223208345775 of:0.06913932115502597 to:0.06604325785039183 :0.5814684973876331 +getting:0.1029578904203145 the:0.04528219998513964 going:0.031080677866321182 out:0.026859034952284446 :0.7938201967759403 +and:0.12957900817881735 feet:0.06362182384404028 to:0.05316807967385046 a:0.04830333226053096 :0.705327756042761 +that:0.3160425700510454 this:0.07709883455268526 which:0.03190401862775719 it:0.030740929615317266 :0.544213647153195 +results:0.5148460737636178 result:0.0412238715940625 blow:0.03616897387586721 quality:0.02709076534663644 :0.3806703154198161 +the:0.7401546856829798 your:0.03168863162757538 and:0.008486397347843075 North:0.007726795010190076 :0.21194349033141185 +be:0.5370093002737817 not:0.11057848875388264 have:0.09155059801191076 bo:0.05603987867324955 :0.20482173428717534 +It:0.2564129334070078 it:0.15805966571629998 There:0.15755174939065658 there:0.11355491273217559 :0.31442073875385995 +of:0.1723525901739117 and:0.09083508852968088 the:0.08628166887651692 to:0.03371929562090692 :0.6168113567989836 +tions:0.09260465228324326 out:0.049869737059227946 and:0.02804692135286755 tion:0.01467872414506963 :0.8147999651595916 +strange:0.14099048371546885 vast:0.12382695419962311 healthy:0.05323136024790883 that:0.02840622966658761 :0.6535449721704116 +in:0.29686391404737505 and:0.15218710020386195 of:0.09972979178722219 on:0.0710654253959687 :0.38015376856557204 +of:0.4675386568726231 in:0.16866030975471466 to:0.12447883033485102 on:0.06673644714508255 :0.1725857558927288 +Jones:0.004294852815015476 Black:0.0017897109297522488 women:0.0013651695457680385 John:0.0007379493492124203 :0.9918123173602519 +to:0.6500380588131853 for:0.256582954473075 than:0.0589725167080438 until:0.008220717866134687 :0.02618575213956102 +which:0.859786239101075 at:0.0011209500703870834 when:0.0009538671584623878 hat:0.0009254206621335426 :0.13721352300794193 +in:0.09346277163647208 of:0.0875996426574225 that:0.06510784615238496 all:0.06279220037417733 :0.6910375391795431 +the:0.10027402205750448 of:0.09060535242226779 and:0.08656325406905431 to:0.048714862745143514 :0.6738425087060299 +the:0.41432178000921643 a:0.17708631254811186 one:0.08551252001067496 tho:0.032235677860851845 :0.2908437095711449 +new:0.03993343589691559 few:0.03868977683879818 single:0.03300534017335493 great:0.03227496698781316 :0.8560964801031181 +of:0.1236204468885049 and:0.1141997803267203 the:0.07413667196500334 to:0.055097273165738925 :0.6329458276540324 +aud:0.14862045436874735 and:0.030556776523105213 to:0.01819052320127428 full:0.013815859739059057 :0.788816386167814 +hundreds:0.16530624361784868 purchase:0.060558417209588496 loss:0.029535253111359076 lives:0.026183431434104894 :0.718416654627099 +of:0.2540329045685496 and:0.14026470531455168 the:0.05011216301251936 The:0.03847383210893457 :0.5171163949954448 +as:0.692559394352313 makes:0.033903287584024826 is:0.03110729906064696 making:0.03052604544480236 :0.2119039735582129 +well:0.6818347665478247 the:0.0072867551888273875 stage:0.0070875662617755466 of:0.0066978493838368075 :0.2970930626177355 +two:0.11573483620110771 re:0.07022843664181425 .:0.047453656353585956 safe:0.03036420591993071 :0.7362188648835614 +and:0.31879492287016764 the:0.258709412130911 with:0.10703827969279973 all:0.06866522006537269 :0.24679216524074907 +into:0.32530552638020904 of:0.20435321221297945 In:0.15239437404552397 to:0.15138629905357676 :0.16656058830771073 +in:0.4208726138144778 to:0.22178670753278099 of:0.13814715900227267 by:0.10239355373810302 :0.11679996591236544 +tbo:0.6673828219642687 the:0.23134154794037232 tho:0.016724374794739733 on:0.005779385295609848 :0.07877187000500943 +the:0.8797671711367642 its:0.03434836782888678 tho:0.029014996406325436 our:0.026021360823126522 :0.030848103804897175 +and:0.04409487971936899 -:0.03613747375507581 of:0.030948062144469855 the:0.02474745449315191 :0.8640721298879337 +council:0.10597147255496535 clerk:0.06298808477425626 and:0.05557585733097227 hall:0.03239761758743748 :0.7430669677523688 +the:0.9565421079995695 said:0.032842058703905816 tbe:0.003398118452675477 all:0.0016980735603572376 :0.005519641283492084 +had:0.2956104130244101 having:0.28470452860053796 has:0.233982992213916 but:0.10390436578946363 who:0.08179770037167237 +is:0.16874029056492335 are:0.14559821071655538 Is:0.14557428703330938 have:0.052562874514280704 :0.4875243371709312 +entire:0.40592713407073505 mile:0.2384476179715688 difference:0.10233466229831767 distance:0.02469093126416475 :0.2285996543952136 +her:0.4686014722191879 the:0.1709221719313638 tho:0.13218411987129663 their:0.09280858692295743 :0.13548364905519422 +to:0.7458454105622329 They:0.04836826480173954 could:0.0459581355181243 and:0.04562965621084971 :0.11419853290705342 +and:0.14789603223299833 may:0.05297837693083931 mail:0.052309454432352805 land:0.049344096787919504 :0.69747203961589 +term:0.04792718991536014 lot:0.04543439092852956 location:0.02479128953984334 but:0.011300896183914206 :0.8705462334323527 +and:0.16915125088967406 be:0.12627830955766664 is:0.06314579526637179 or:0.050863561914208 :0.5905610823720795 +and:0.4499018903277505 by:0.3397306286637002 as:0.06701093720339316 In:0.0412454333437058 :0.10211111046145029 +of:0.9434025509474869 good:0.024090539587803054 in:0.010090968402160918 the:0.0025818073613320313 :0.019834133701217244 +will:0.8764632326195703 and:0.10254401547990581 to:0.008572748522953375 than:0.0022812217595225915 :0.010138781618048001 +be:0.6095384505181449 bo:0.12267014707677586 take:0.08872107306807507 have:0.0728661246329024 :0.10620420470410188 +goods:0.14503183055382945 trade:0.0964015232471739 Columbia:0.06806461472140947 capital:0.04752849799479588 :0.6429735334827913 +and:0.268353915851766 our:0.14711712388696518 an:0.13911213898133754 their:0.09587013978869911 :0.3495466814912322 +the:0.7589707408184718 his:0.1934997527792102 citizen:0.004046409251211469 and:0.0028757637973394323 :0.04060733335376719 +of:0.30513501079354033 and:0.11523999944018694 to:0.11381118438121984 in:0.0928658040510663 :0.3729480013339865 +building:0.055644442979761816 construction:0.05170558006723118 beginning:0.0293089534586517 election:0.026841711048195768 :0.8364993124461596 +your:0.9992296578551272 this:0.00018374869044443545 the:0.00016958440577715533 a:7.797156416756485e-05 :0.00033903748448365506 +the:0.3092046538707274 a:0.1771840169598211 in:0.11965309725585586 tho:0.07352566145521258 :0.320432570458383 +do:0.23525410688383128 break:0.10453720746536545 know:0.10260445382146784 make:0.03158502533335715 :0.5260192064959783 +and:0.09836013828000079 or:0.058432810820329036 was:0.051105930300879183 that:0.04803660122051249 :0.7440645193782786 +far:0.3002567468497852 no:0.041673365075449026 law:0.02404649590830501 him:0.02145203154948761 :0.6125713606169731 +the:0.27760883396773073 his:0.26177009647554245 to:0.06429146553934666 their:0.05385875976171044 :0.34247084425566965 +and:0.1220555190900455 to:0.10052513135881432 of:0.04865338277986068 the:0.04736765216001346 :0.681398314611266 +the:0.42407208764424303 God:0.13961812635243212 said:0.1350600287952013 tho:0.06116263012199769 :0.24008712708612584 +with:0.6695971130798145 in:0.10429963315038367 and:0.03188509487624388 to:0.03074886980675164 :0.16346928908680614 +a.:0.9807027534531617 A.:0.0072179963013157536 1.:0.00028108251330376163 Mrs.:0.0001318410401236395 :0.011666326692095054 +and:0.17659038813727967 national:0.08510390244636121 cure:0.0422073227886496 school:0.04095753793645358 :0.655140848691256 +head:0.29134792824473166 work:0.08961706227180974 back:0.08496215236283236 residence:0.0726123384269388 :0.46146051869368737 +hearts:0.3532696007562509 and:0.07156384713217444 out:0.015130378629814693 tion:0.015110387606575567 :0.5449257858751844 +for:0.4425286649074659 in:0.2914092667854479 of:0.22753323413402668 within:0.0028289249387465254 :0.035699909234313036 +of:0.5850553646736991 from:0.08085014902817939 and:0.07810927468788396 on:0.07338215477021678 :0.18260305684002057 +in:0.7202580326394158 that:0.11472308705715849 the:0.106022004448532 of:0.015996770702008202 :0.04300010515288551 +the:0.4855236599731113 our:0.38924984224695464 this:0.05917246321828282 these:0.027649966657809603 :0.038404067903841634 +2:0.6941346979904817 two:0.07329851577370564 the:0.03834185084318878 11:0.016796260590481508 :0.17742867480214217 +us,:0.042129092399289546 him:0.02047271119195712 this:0.010729241786276888 to:0.005532126833555164 :0.9211368277889211 +and:0.05185606020371295 made:0.025599909156356102 or:0.02333032447098352 ed:0.016945290417985617 :0.8822684157509618 +not:0.14333977757277447 the:0.06658653040088354 to:0.06417576677968756 now:0.060561220090337625 :0.6653367051563168 +soil:0.011589005694430653 world,:0.010418215366554118 past:0.005891840737644808 summer:0.005301847974770333 :0.9667990902266 +and:0.24488160447694757 that:0.09034042752824979 as:0.07347777241969182 but:0.05680472153704135 :0.5344954740380694 +Not:0.2409960405773201 most:0.22098240328786198 a:0.20454542462420588 from:0.13803193835504635 :0.19544419315556588 +com­:0.3813688578474701 be:0.24980145877237672 com-:0.2474726104603085 ex-:0.06720040482345395 :0.05415666809639079 +the:0.4589905551340441 at:0.20646121865880676 to:0.08998525435912376 The:0.07258055728343868 :0.17198241456458666 +and:0.6675915167348915 before:0.10796876440212332 of:0.06382659037896349 the:0.043049442901861364 :0.11756368558216021 +the:0.7147678103867128 his:0.10446890213821998 Grand:0.10029278765291916 their:0.03985904314567414 :0.040611456676473846 +next:0.18647947287391486 i:0.07698894606871536 said:0.04071252124106836 The:0.02287593022960286 :0.6729431295866984 +of:0.964212233077262 that:0.006104217220721681 ot:0.005370899352098896 with:0.003694315612037184 :0.020618334737880308 +and:0.19787508554677308 said:0.0816868356861826 but:0.04484887829394327 nnd:0.04447530349174968 :0.6311138969813515 +just:0.1348695704242078 and:0.13293462148014407 They:0.08635191712415788 So:0.06390526117895891 :0.5819386297925314 +it:0.023723663824951818 y:0.01930699600766025 the:0.016839507679549563 and:0.013627303255134988 :0.9265025292327033 +and:0.2469444251252734 require:0.0654056672873125 claims:0.06452292480644409 aod:0.035244200022708186 :0.5878827827582618 +in:0.9878940491390156 was:0.004004011143565804 from:0.0030450146549324633 about:0.0019361361230391845 :0.0031207889394470403 +we:0.4154793241373033 they:0.3024536876132541 I:0.2115526530715242 could:0.031566182779733845 :0.038948152398184666 +to:0.4280650590768025 different:0.03470986635764678 difference:0.004177721583860109 formed:0.0009372026124082267 :0.5321101503692824 +ago:0.18720434329935892 the:0.009276771842946022 ed:0.008662965402480413 in:0.0075351685938352545 :0.7873207508613794 +It:0.5261228542246553 That:0.1692756310284474 it:0.09653991608370734 and:0.05697090871457467 :0.15109068994861527 +him:0.7652092793358901 her:0.0790843986784139 it:0.005885225573142423 them:0.00587519281902625 :0.1439459035935275 +hot:0.15168558054687067 ba:0.032906644598476954 poor:0.030235709305163245 close:0.016344309126824323 :0.7688277564226651 +house:0.15614177875845248 mother:0.11326708928074242 home,:0.04978797730946083 claim:0.017164288549102957 :0.6636388661022414 +The:0.11750858824211836 Mr.:0.10805595692212107 and:0.10434578755730474 of:0.04442625270265574 :0.6256634145758001 +advantages:0.8978178229645396 and:0.03757673797909566 there:0.012490118676981713 they:0.00746807138173216 :0.04464724899765097 +one:0.29127338871984 the:0.1703987637475066 any:0.12282636320006256 consideration:0.03995747382994504 :0.3755440105026459 +piece:0.004802508962444003 shot:0.004787508944029483 grain:0.004205786146179621 ship:0.0020920684325802133 :0.9841121275147667 +proposed:0.5321959716372627 of:0.26375260991096205 is:0.1088088054161934 was:0.026627971026609774 :0.06861464200897205 +the:0.7581726628609735 and:0.09190025443013145 will:0.01893024088766211 to:0.014638895782626898 :0.11635794603860618 +street:0.18900460136066632 street,:0.1512475546071574 feet:0.1006336757821013 feet,:0.07051597339165752 :0.4885981948584175 +the:0.09683892374982028 his:0.08339344199598697 excellent:0.06277360702429886 a:0.006935619218007914 :0.750058408011886 +to:0.21185464360086592 and:0.11503284765553577 of:0.08051991557554143 |:0.07092392489880917 :0.5216686682692478 +limits:0.07823086632246988 time:0.037988131416747235 hours:0.016954129645686954 territory:0.015162985733054551 :0.8516638868820414 +on:0.14781716725390115 of:0.1373995593506877 and:0.12956566200837513 to:0.1255032658444963 :0.4597143455425397 +Mr.:0.13215299240707234 of:0.08804428027260787 and:0.0729402389782172 the:0.04586111491905055 :0.6610013734230519 +who:0.06700815125667696 I:0.05091482357794316 body:0.05041666160865822 husband:0.04387504491381993 :0.7877853186429017 +this:0.7573052927961661 the:0.0661286245129152 that:0.06498512964980495 any:0.040594176731486624 :0.0709867763096272 +the:0.3321681716547289 every:0.16416148917182355 a:0.12261604123238057 many:0.030994597054129366 :0.3500597008869375 +and:0.08419619138256061 ly:0.029570925700141887 he:0.023128859923742227 has:0.021037817728441127 :0.8420662052651142 +the:0.30938637834884763 a:0.05285982920490666 in:0.028238167340031456 The:0.027313632502185995 :0.5822019926040284 +a:0.17727101774186554 the:0.13928021845922478 so:0.0934686821020894 in:0.056665180546011856 :0.5333149011508084 +which:0.1413009832145012 that:0.0157988507720741 reach:0.0077599635984676694 campaign:0.0065796031250720645 :0.8285605992898848 +A.:0.04064509264089252 H.:0.03667123602442289 C.:0.03359140254845589 W.:0.031168837895556935 :0.8579234308906719 +Clerk:0.667336036072166 clerk:0.23016221178052668 Register:0.033290067800672916 Sheriff:0.00900556994518182 :0.06020611440145256 +remarkable:0.12428245546105646 famous:0.09440400740294223 important:0.05499792257685595 heavy:0.054652865090214206 :0.6716627494689311 +trust:0.240102687798617 medical:0.0912814022369848 con-:0.05164093396122915 times:0.02113903455699996 :0.595835941446169 +to:0.43888328019766176 of:0.14408649585489397 in:0.053037766168902475 the:0.04117930403139117 :0.3228131537471506 +and:0.23408621254920384 was:0.0929997415521417 is:0.08389174282954737 of:0.0595186743688426 :0.5295036287002645 +the:0.6990563320098185 not:0.10640835239279035 tho:0.06924018868143043 he:0.025309154674095263 :0.09998597224186552 +of:0.16061613280980166 that:0.12494102653186201 many:0.11770681093024567 is:0.047969528895031824 :0.5487665008330589 +at:0.1254073640182506 on:0.03757676644988702 and:0.011286748690699946 the:0.0096152516012111 :0.8161138692399513 +thought:0.23385560783024142 part:0.2181228146630474 one:0.07856603378566067 set:0.05770870513980373 :0.4117468385812468 +the:0.34490088019286663 a:0.04323775875073341 this:0.04115637538700965 of:0.03149634006415617 :0.5392086456052342 +which:0.3889537721812522 that:0.37199721309256173 this:0.13453475970808387 it:0.05581277294017014 one:0.048701482077931964 +Both:0.22565207237945983 looking:0.13479050020793099 looked:0.10753042314958586 away:0.07061319406321709 :0.4614138101998063 +to:0.41870517963305703 and:0.08741340949254486 of:0.08478334313838966 will:0.03484305537474314 :0.37425501236126524 +in:0.9415318473805641 In:0.029558293469649995 of:0.018250760570589535 iu:0.0015864416802294494 :0.009072656898966873 +made:0.08049660222026284 it:0.05446866608523704 made,:0.047321054947397044 asked:0.02951573399392548 :0.7881979427531777 +would:0.8000132327407327 the:0.07223159217330416 and:0.051378849059116355 of:0.031674166646773624 :0.044702159380073186 +a:0.8825212493853525 no:0.04846906896687122 the:0.046329222515456646 n:0.0038018710162556883 :0.01887858811606392 +the:0.5304820865374132 a:0.04477985515797023 this:0.044228512838388426 his:0.04410339189745266 :0.33640615356877535 +that:0.9091120501883568 in:0.002589187856090827 for:0.001656070188820307 to:0.0014679727352256825 :0.0851747190315064 +that:0.02752210947047227 used:0.027192711263438345 more:0.018829769116918176 entered:0.01875839255556236 :0.9076970175936089 +not:0.43660692154093 never:0.33697116738651023 ever:0.08474286698899941 I:0.04373894476697208 :0.0979400993165882 +the:0.33627491071494553 a:0.16254691490998513 his:0.031602827290943374 an:0.02393660425298972 :0.44563874283113636 +the:0.07654093066036377 Washington:0.04038005633932828 said:0.0241734261955758 this:0.015924321853519583 :0.8429812649512124 +are:0.608457734923323 of:0.05548387304481562 and:0.02572153905484571 therefore,:0.022956541606044992 :0.28738031137097064 +it:0.12304196465897643 ment:0.062432711459412926 That:0.049962970986437365 name:0.048577351230664666 :0.7159850016645086 +their:0.2533167299574366 the:0.16277673189380434 of:0.1299395876188044 and:0.12070023171106184 :0.3332667188188929 +and:0.0614019694975866 or:0.01973987211221816 came:0.016885151424402875 but:0.01616382370633302 :0.8858091832594593 +of:0.6616590365387707 is:0.08892862423825666 •:0.05935187577720933 and:0.04005392968239054 :0.15000653376337286 +opened:0.2564840111928885 held:0.11447353864278924 sent:0.10127787721458725 charged:0.0885720358523184 :0.43919253709741657 +west:0.11293549634686306 north:0.11129376734397574 south:0.09502520329005164 east:0.07839512105628932 :0.6023504119628201 +J:0.08422939376362601 W:0.04786741438831498 John:0.03787309052369558 T:0.03266502247537817 :0.7973650788489852 +been:0.19551149442637927 told:0.1229588406299641 a:0.10621867457855998 the:0.07248530002604775 :0.5028256903390488 +the:0.20186032004368243 wa:0.05935659197575456 her:0.044485492788244735 a:0.042527452809623126 :0.6517701423826952 +its:0.6361944984368656 the:0.14454904945799565 their:0.05824351175919794 his:0.04632471952181604 :0.11468822082412482 +and:0.14543349255354357 of:0.07693201575927379 It:0.06151792682138506 which:0.060335396303125774 :0.6557811685626718 +National:0.029833474525587874 great:0.027928315900236384 old:0.02181214285748594 principles:0.02076278261557933 :0.8996632841011104 +who:0.4765614456172515 and:0.18835834081038613 he:0.056450211272676534 which:0.05442119930778337 :0.22420880299190252 +of:0.6645712410200534 in:0.15498625730607057 In:0.04655742923969695 for:0.044182390263556776 :0.08970268217062237 +own:0.044304717489396524 unknown:0.01547630975131364 respective:0.015475083310080495 the:0.010307409898453338 :0.9144364795507561 +of:0.9495389790565533 of.:0.018974620362765312 by:0.003933600910753613 make:0.0037561180760374343 :0.023796681593890315 +of:0.22181483501625743 in:0.1534472240875928 and:0.15134345994878515 to:0.12844712369916492 :0.34494735724819964 +W:0.2634437871276109 H:0.213378714431665 B:0.18658139800200033 M:0.17379671390254564 C:0.1627993865361782 +and:0.23097932910222507 but:0.11501603591961139 that:0.09709740047408622 as:0.08653636336332908 :0.4703708711407484 +had:0.8353455028856612 has:0.15850355120183637 lias:0.0008003220823867883 was:0.0007101374584325242 :0.004640486371683243 +their:0.4953087913479019 his:0.15403069421238397 not:0.12984687855833157 there:0.12230510395233427 its:0.09850853192904818 +and:0.2670832189815319 on:0.22193139748492025 around:0.13161788699072816 to:0.11492986772651957 :0.2644376288163001 +all:0.5756997050274163 the:0.09350055113999267 as:0.042235781771485216 1:0.013315037816388046 :0.27524892424471764 +see:0.4931424450471503 in:0.12193208339402066 for:0.02661941714863566 holding:0.022792096508639757 :0.3355139579015536 +been:0.21426144463122995 decided:0.06286133658637906 done:0.0469760878131233 gone:0.04018268345234753 :0.6357184475169201 +of:0.7981644303230874 to:0.09663090017968001 ot:0.061025634101490304 which:0.013887437934054619 :0.030291597461687605 +the:0.9312179124585412 and:0.008812741588548511 tho:0.007573527984189314 all:0.006369954958917985 :0.046025863009802874 +and:0.046151783553505896 of:0.037545348727649024 was:0.019372849524813926 the:0.017904589463353045 :0.8790254287306781 +people:0.20149739252441615 kind:0.10658582850643111 friends:0.037579211265062154 feeling:0.023474601861856414 :0.6308629658422341 +form:0.05030730984146885 out:0.04024158852007617 pound:0.038573341015742287 set:0.03323500643017656 :0.8376427541925362 +the:0.30094447111080613 in:0.28166074898320337 tho:0.1959558862792 In:0.0446532750015247 :0.17678561862526576 +that:0.5834365904897718 of:0.33661093762784045 which:0.05886909102939679 ol:0.011562793685857048 that,:0.009520587167133691 +him:0.051957261309726555 and:0.03993376079624913 us:0.030839412398555918 not:0.019227925916337568 :0.858041639579131 +and:0.12817700425130005 the:0.08919020926567783 of:0.08221373080202732 to:0.05646727085898276 :0.6439517848220121 +to:0.3834407001346836 and:0.24949191318264838 will:0.13821470566655958 shall:0.11411487819326978 :0.11473780282283857 +I:0.3251748911806159 the:0.3133255826840702 not:0.21817405302770573 more:0.08112238910288082 :0.062203084004727446 +the:0.5250025359447511 Mrs.:0.13685618504226787 her:0.09043412675590294 Miss:0.04432503710401799 :0.20338211515305987 +the:0.5569623494735837 in:0.21069994071614456 Grand:0.04934874086039621 all:0.037189758557215916 :0.1457992103926596 +any:0.2050836543802818 in:0.15199295117576603 no:0.14498185186102722 a:0.11460149897909588 :0.3833400436038292 +should:0.40793009770102334 to:0.33208012706129286 can:0.2063870370635653 will:0.028302274742542446 shall:0.0253004634315762 +and:0.05602843587025889 of:0.05316180514450057 to:0.031097723472413578 the:0.026386673707326006 :0.8333253618055009 +3.:0.07934659005856914 2.:0.050372365530540836 11.:0.040233957134204724 I.:0.03814537348091241 :0.791901713795773 +recently:9.425034105691771e-05 was:6.298906410216081e-05 frequently:4.4859587006817454e-05 been:4.0918162690696734e-05 :0.9997569828451434 +Do:0.4392388526088725 and:0.1667476611799508 but:0.10369944012601849 if:0.06833859366106515 :0.2219754524240931 +and:0.0808167998327957 H.:0.031706660714120934 Smith,:0.02218611099448806 I.:0.01567617968056568 :0.8496142487780296 +paid:0.38363880872208145 asked:0.2158030182641172 obtained:0.16477234032664148 received:0.08078587711091688 :0.15499995557624308 +saw:0.059011415087694585 this:0.022409660607197523 ladies:0.022175159428877305 war,:0.014027720880424853 :0.8823760439958056 +and:0.20543709207812452 is:0.1254925368390346 of:0.10487922859065112 with:0.0791263798460344 :0.48506476264615533 +hia:0.36503718117253886 them:0.04832155346314879 homes:0.03334389575278717 they:0.008566794681225457 :0.5447305749302996 +If:0.2273095698084123 and:0.19710122590231774 for:0.1243683810144407 that:0.09467722799724165 :0.3565435952775877 +Louis:0.030869650109074855 Paul:0.018288480802385678 James:0.011983098666014148 and:0.006416057695201755 :0.9324427127273235 +running:0.17600057498527277 chains:0.0450627656028584 and:0.010088428094171592 street,:0.008217258415092842 :0.7606309729026043 +Do:0.7812277718720142 is:0.04910817710081402 did:0.03902700412366599 are:0.026747691547666198 :0.10388935535583971 +raised:0.01091781754775217 worked:0.009216445076189845 been:0.006660276756171078 to,:0.0063318423190875375 :0.9668736183007993 +can:0.09311358006441334 bills:0.08110363260888152 to:0.02836383797505713 amount:0.025739017544458568 :0.7716799318071895 +of:0.8133369406984294 ol:0.10643421244291201 that:0.03677837975046498 In:0.025888653756903374 and:0.017561813351290353 +of:0.5468810027216858 by:0.13521623890462417 to:0.1280419368943343 in:0.07606000051825915 :0.11380082096109652 +and:0.0959110868981567 the:0.01895239591741353 John:0.015352433933714792 Van:0.009221816626506674 :0.8605622666242084 +returned:0.03447608436874506 sent:0.029142097126857298 went:0.026988994590764037 as:0.019541509933953025 :0.8898513139796805 +deposit:0.14304490571204834 report:0.1273970869293354 meeting:0.08487957474031722 election:0.05864602577686427 :0.5860324068414348 +thing:0.17326865912612668 fact:0.07541301085097944 and:0.039777418903596075 is:0.02845479923174666 :0.6830861118875511 +County:0.7017177549514928 county:0.14702475156054867 sum:0.06208037379500335 Board:0.02375359058572834 :0.06542352910722675 +election,:0.023046885172141367 of:0.020685276422504936 year:0.011791807473312196 year.:0.010412599356161614 :0.9340634315758798 +and:0.14589769118207793 the:0.10776354167535553 was:0.05394881571347656 a:0.05033765517922559 :0.6420522962498645 +fight:0.17177941057493135 of:0.11336000053055979 in:0.10401531045980794 make:0.05607984558064851 :0.5547654328540523 +usually:0.34768045168708717 always:0.196662106461783 first:0.14522106543258578 not:0.13480688607967983 :0.17562949033886416 +the:0.6080479258633484 The:0.1356207373298501 and:0.04979058952504986 in:0.03186011350710611 :0.1746806337746454 +of:0.22134155765831012 and:0.1327701430453713 The:0.0741619319988951 the:0.039817740707239355 :0.531908626590184 +the:0.20511856379209142 be:0.07872430782906249 a:0.03687414142910697 make:0.021922798303908822 :0.6573601886458306 +and:0.4100532021321443 that:0.17897906649601514 in:0.13898338962529647 of:0.13851541061604244 the:0.13346893113050168 +and:0.45186373400184054 within:0.2289251999128449 or:0.14068266388935832 for:0.03639151147175167 :0.14213689072420452 +will:0.27943070189377023 but:0.2038477252406315 did:0.18610832245179276 would:0.16625623779107274 do:0.1643570126227327 +and:0.07624956499560594 free:0.05643016259647975 life:0.047390982623817586 out:0.04468800345930578 :0.775241286324791 +that:0.906295972479868 of:0.0451346401657912 during:0.0170083252326986 in:0.014474984015992152 :0.017086078105650094 +many:0.31998444336274384 men,:0.018290912060376044 the:0.009855530585797417 money:0.0058397253393788285 :0.6460293886517038 +and:0.07517775439474982 rise:0.04061684378189665 of:0.03025666704156106 in:0.020412874104315935 :0.8335358606774764 +the:0.42897382699499037 small:0.160008049939003 a:0.028845518290444055 tho:0.015621189361829995 :0.36655141541373243 +degree:0.4186084780699237 tax:0.2433701693805623 progress:0.11325035527507069 number:0.01676902655094795 :0.20800197072349544 +An:0.13263221991849405 and:0.11387027240095411 The:0.07989508824901961 the:0.05030316079992748 :0.6232992586316047 +different:0.0869557859871264 the:0.06968603887846617 a:0.010032112821630306 tho:0.009286302245519212 :0.8240397600672579 +-:0.18368427540001636 I:0.1835743967137746 l:0.08161962691111115 1:0.03397883325616722 :0.5171428677189307 +at:0.007232682507907562 I:0.005809914142189979 when:0.005255489337591945 in:0.0012223202040674808 :0.9804795938082429 +the:0.3137722510437674 Grand:0.10131586741613947 Mr.:0.06125983728898524 John:0.04045346068059335 :0.4831985835705145 +to:0.23238804019716092 and:0.11296463800705417 in:0.07308045757077966 the:0.06877288518929976 :0.5127939790357054 +from:0.0049508400959512614 P.:0.00111544492663699 C.:0.0004262221061898318 and:0.0003888114740854645 :0.9931186813971364 +tne:0.2499879579994566 me:0.07281636819413963 a:0.06250674033932671 our:0.04824777755613406 :0.566441155910943 +day,:0.14398913393386248 night,:0.12908251214309532 day:0.03855965929044151 alone:0.03622240743719737 :0.6521462871954034 +suggested:0.325518926990909 said:0.26775176105563386 estimated:0.13100876428910715 found:0.13034119745726316 :0.14537935020708687 +and:0.36227128360459276 side.:0.10679419456550567 when:0.03678456732092769 back,:0.03306098844957333 :0.4610889660594004 +or:0.6176328748780298 and:0.3465548076925538 ami:0.004503929281954626 an:0.004179790536518561 :0.02712859761094331 +of:0.10186486121943908 and:0.08087035618179826 the:0.05715774201371617 in:0.024582734977420473 :0.7355243056076259 +men:0.22531239203081677 lines:0.04540769192189935 cities:0.029933395082191453 rooms:0.028378959880724825 :0.6709675610843677 +the:0.43120381253364687 a:0.06666253585000029 his:0.037514990677626564 their:0.03169235657736092 :0.4329263043613654 +I:0.5509140392909688 we:0.18698116420673314 It:0.11712181756164605 he:0.10759424610851931 they:0.03738873283213262 +would:0.5525015114021663 could:0.26214107872793974 might:0.08595927027200086 will:0.053292254443562594 :0.04610588515433059 +the:0.43525314568977774 tho:0.11766931367721237 this:0.05896973202391935 Mr.:0.05824640909155926 :0.32986139951753135 +with:0.9879892138146426 by:0.006729344586488384 obtain:0.0023360967252036738 through:0.0012678805928446068 :0.001677464280820875 +such:0.17212775072769002 the:0.13836420986838507 in:0.09897317120808487 upon:0.07053578934299544 :0.5199990788528446 +held:0.07284864035014521 placed:0.07023083625966033 made:0.06772549638731253 used:0.047261808933582554 :0.7419332180692993 +to:0.036244133448162914 became:0.03149994024975007 the:0.02625961062471386 and:0.021466195704624224 :0.8845301199727488 +their:0.8462443291908253 its:0.07927850347099369 his:0.0632786773556663 your:0.006686144542000738 our:0.004512345440514006 +it:0.43519180429585236 there:0.21600913737364694 she:0.16662921364643518 he:0.12960143175667882 It:0.05256841292738677 +a:0.39755469133010846 the:0.14651393711092742 an:0.10511572726192499 to:0.07259755733421888 :0.2782180869628203 +days.:0.10676702517369525 year.:0.017157255148556233 money.:0.01689730434352692 death.:0.007867281609890163 :0.8513111337243315 +in:0.3155035291454596 to:0.14931186461475512 aud:0.09573494475568653 by:0.08194374253181418 :0.3575059189522845 +of:0.9466266352047706 in:0.01613714354032281 and:0.008621515232080707 to:0.004721766389435396 :0.023892939633390425 +Mrs.:0.16929195374670594 Mr.:0.14961089902536104 of:0.13128315143420768 Miss:0.08191671337678473 :0.46789728241694056 +round:0.005924579375292712 the:0.0048157321296675255 posed:0.003812174704154357 E:0.003154475261298726 :0.9822930385295866 +state:0.021511267234945074 time:0.014589968783282115 past:0.013159141499985413 building,:0.01140901666241102 :0.9393306058193763 +pass:0.31919679885786945 carried:0.03362496959736577 got:0.024409179219737027 and:0.0050125536126279 :0.6177564987123998 +the:0.18201442473617385 a:0.04525100586022074 other:0.025037763907347046 his:0.019736763437331255 :0.7279600420589273 +also:0.48483899309420114 suddenly:0.42226707721695533 immediately:0.03738938569326856 finally:0.02899216577082093 :0.02651237822475403 +hope:0.14231576807324503 thought:0.10079365906844326 fact:0.0881538501115501 knowledge:0.0549234941999107 :0.6138132285468509 +a:0.28388643504377215 or:0.10666747994938364 in:0.08023279534663093 now:0.07600362816355759 :0.45320966149665565 +the:0.15989973825457385 and:0.06949600972534462 to:0.06568419093266956 a:0.06237943305480926 :0.6425406280326028 +of:0.26769844626606054 on:0.2479922108617682 to:0.11346993156968257 and:0.09658679331355141 :0.27425261798893724 +in:0.5971666766307417 of:0.24863628134275223 to:0.04843663971404691 on:0.0426037988088392 :0.06315660350361989 +the:0.7186944394933426 The:0.11022455102855075 tho:0.061870158194892735 This:0.00531435194292627 :0.10389649934028765 +line:0.8004321122346818 side:0.1603945530577411 boundary:0.018732924420445718 corner:0.0021254189936161815 :0.01831499129351538 +who:0.9678183145384965 v:0.010618998038612196 and:0.005360747331898922 it:0.003565552362061031 :0.012636387728931286 +would:0.306868660932015 can:0.17577527074612914 cannot:0.15397416745248121 not:0.08715984028869506 :0.27622206058067955 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +shall:0.9232546827246584 to:0.0272218011435302 should:0.024521710629188436 will:0.009850871654111993 :0.015150933848511175 +of:0.8475105447712357 for:0.08803014914504101 ot:0.06368638417615169 the:0.0005636882320318542 or:0.0002092336755396899 +Carolina:0.5202160027096073 and:0.05592797757212571 with:0.04375957238797225 Dakota:0.021019700802215914 :0.35907674652807864 +of:0.9254849549536823 ot:0.016414026382723493 ol:0.014982596510806346 ut:0.012274685335686965 :0.03084373681710103 +of:0.22010948459722177 and:0.07781183226656464 the:0.05442778174962077 to:0.022662979221561592 :0.6249879221650312 +and:0.3838844192237335 of:0.20229634588217887 were:0.1128265177317543 are:0.10217826332754071 :0.19881445383479257 +an:0.23566937268080235 and:0.09601211854912721 the:0.05298093393677475 of:0.050417157145315916 :0.5649204176879796 +matter:0.13331733308710736 session:0.12397086731659306 bill:0.11750613883555307 contest:0.10036146137842186 :0.5248441993823247 +of:0.2661774340089134 and:0.13049408144183472 the:0.05872061184297848 to:0.029428142523698807 :0.5151797301825748 +how:0.7225207138278826 why:0.11786623286578575 that:0.05988939129378147 who:0.050503144572984625 whether:0.04922051743956556 +ed:0.13929565946499362 ing:0.05984167963237453 out:0.04421106201302363 and:0.0359261644795426 :0.7207254344100656 +with:0.5886729331779682 and:0.11384039595593962 under:0.10882843025189952 to:0.08209652075861769 :0.10656171985557503 +the:0.9703085135580202 and:0.005643632696447214 but:0.004243286790790119 tho:0.0023757444936384742 :0.01742882246110404 +ton:0.2700395919764738 be:0.17981438018262008 present:0.1670678246438142 from:0.05033999186888167 :0.3327382113282102 +somewhat:0.7383994655152747 and:0.08783109993852495 there:0.08405592635191698 to:0.02146019952027134 :0.06825330867401193 +the:0.08922433071917307 tho:0.05147859322927189 his:0.04466054625924311 a:0.030414013972118875 :0.784222515820193 +crop:0.0985811935197448 classes:0.031941829118433324 methods:0.025768861663817717 fields:0.020736714070434967 :0.8229714016275692 +and:0.14108383270657968 the:0.07984388995464037 of:0.0530906942947266 to:0.047129603186298635 :0.6788519798577545 +was:0.33072276098312164 held:0.19196933201831134 shows:0.13798125443950301 used:0.12860500662724345 :0.21072164593182058 +the:0.9695856526562087 said:0.016050476592172083 tbe:0.010997604958219552 tin:0.001748173113917484 :0.0016180926794823925 +by:0.25688444044272907 under:0.24715852980144976 in:0.16991519369945007 for:0.14460344003998876 :0.18143839601638231 +made:0.45031567989290844 as:0.12885796852277667 and:0.061085896647920426 is:0.055953456655839326 :0.30378699828055516 +as:0.5999668617721391 to:0.21522688496925185 by:0.10070834935119755 and:0.04241757588437222 not:0.0416803280230393 +a:0.15774463878169986 have:0.0004810329172815095 had:0.00037792263419602696 experience:0.0002627238305149844 :0.8411336818363075 +ing:0.4467683007378488 having:0.12755371407764776 have:0.12063810680607816 we:0.06079837973265924 :0.2442414986457661 +of:0.593873733552399 and:0.06366301191384816 to:0.03474848356769698 the:0.02411524716161742 :0.28359952380443837 +feet:0.1223000099131947 and:0.04183824430512725 Brown:0.01960133726231039 him,:0.017907142717442818 :0.7983532658019248 +lo:0.10884006906581867 her:0.10455486207283343 to:0.09699130923361936 and:0.05842506155351761 :0.631188698074211 +and:0.12839898261985339 of:0.08326969533917539 the:0.07315027429724072 to:0.035002749323835305 :0.6801782984198953 +course:0.1873720979795456 situation:0.15622970414779414 matter:0.08333733649199383 list:0.0425307394718483 :0.5305301219088181 +do:0.6937324149703381 have:0.10312743504728314 had:0.07534388032259308 are:0.06721568139689767 should:0.06058058826288811 +the:0.5642812784471816 to:0.16138645091994203 way.:0.08609368911060723 her:0.07639790638468497 :0.11184067513758426 +same:5.090433563571564e-06 the:2.6656567514270635e-06 ner:1.6916292768209085e-06 a:9.471138649333714e-07 :0.9999896051665433 +thoroughly:0.5624468327059076 much:0.06300858877876461 near:0.041728216465846936 cold:0.033388136818979376 :0.2994282252305015 +was:0.29084908160894996 for:0.16006417540465434 and:0.12739829626707505 of:0.09300613286387346 :0.3286823138554472 +to:0.931274454309188 only:0.036997934038851814 yet:0.00887403071431596 people:0.002280692517036693 :0.020572888420607553 +large:0.04601674986724578 the:0.031174122665511974 small:0.028880388834306072 long:0.028159079235842294 :0.8657696593970939 +the:0.04800206027769415 matter:0.03964767881895096 a:0.036150925186622676 one:0.01922706800354654 :0.8569722677131857 +of:0.29800470175896326 in:0.14523333395918844 and:0.1356420096473175 to:0.08799435117676135 :0.3331256034577693 +and:0.28225435115791986 by:0.13286327953600724 to:0.08253749935118078 with:0.06607060302262177 :0.43627426693227034 +best:0.11325455640229193 laws:0.08635089295477974 highest:0.06222925427575475 lower:0.03943958760168872 :0.6987257087654849 +pain:0.03507813210467524 time:0.02516324472188121 State:0.018566020077379862 paper:0.012027804823416866 :0.9091647982726467 +civil:0.1500106922681922 Spanish:0.06825990743026472 first,:0.06767346676722379 recent:0.06349619794556913 :0.6505597355887501 +received:0.4921995039361484 true:0.08805968144885964 found:0.05839836938281721 tried:0.05361707798518784 :0.30772536724698685 +and:0.20871463941233062 but:0.03105827612214371 published:0.01726249244328239 girls:0.013900305100921448 :0.7290642869213219 +work:0.495153181570472 is:0.12256560072150206 will:0.12245620337158335 was:0.05913719276422194 :0.2006878215722206 +4,:0.07032546924323209 street,:0.061935493609628044 feet;:0.044100630115806096 ;:0.0259234610605104 :0.7977149459708234 +Smith,:0.0001249593676546205 Brown,:4.1235716960239564e-05 Johnson,:2.865958117655721e-05 Smith:1.627289634189883e-05 :0.9997888724378666 +and:0.5820857767740935 was:0.24741997338529648 are:0.07849835861072128 is:0.02168689016270413 :0.0703090010671847 +it:0.14061287249253296 as:0.10054075022860295 It:0.09311495684565835 which:0.07517457770430117 :0.5905568427289047 +our:0.4977498709074376 my:0.2565918800153331 her:0.128464028838184 the:0.05399297680030646 :0.0632012434387389 +or:0.1361518425150646 remain:0.04026623575671187 or-:0.019234734679170997 un-:0.0024277382670874954 :0.8019194487819651 +I:0.3043192415832054 upon:0.257889727951617 he:0.16446283714106683 being:0.1447581647077995 from:0.1285700286163113 +wall:0.04911367271778856 tree:0.036916489108466066 book:0.034477135126204345 cut:0.014322802949803252 :0.8651699000977376 +does:0.35170789233891203 do:0.14155911026094187 could:0.13680134609744726 had:0.13518822281157364 :0.2347434284911253 +the:0.22187398849463952 last:0.1541359408195631 in:0.08638726032091842 an:0.05815210333218308 :0.4794507070326958 +Such:0.33467972245620564 such:0.2560620156647518 It:0.0860508752255554 it:0.042440783741237734 :0.28076660291224936 +accomplished:0.048596002772781685 worth:0.015055138029061886 and:0.009971147745625361 recognized:0.005244066242032891 :0.9211336452104981 +the:0.8469557407279178 tho:0.07215666067663942 tbe:0.020016407759232753 tha:0.012163267084811089 :0.048707923751398985 +the:0.6066539485403012 a:0.21794109770164996 this:0.07526513675596035 of:0.010846847626630681 :0.0892929693754578 +be:0.08604171899816394 remain:0.06472145019553088 aid:0.05979627132680848 live:0.039029163210203055 :0.7504113962692937 +the:0.18684117621036148 and:0.09094875972128803 a:0.05371388748529276 of:0.033084494852485755 :0.6354116817305718 +around:0.3647004146765718 and:0.1320698870176224 them.:0.09394382536036655 the:0.060485328323868257 :0.348800544621571 +is:0.5661217814948075 of:0.19125280101130585 looks:0.07421211310429159 in:0.05082534028559379 :0.11758796410400114 +whether:0.9062916473386767 and:0.01358327515511402 but:0.006980602111221906 in:0.006084759336272276 :0.06705971605871505 +the:0.696863871494252 his:0.05314831217732445 a:0.037526215360748266 Mr.:0.029154273037595217 :0.18330732793008003 +order:0.7932874764315111 but:0.01319281535270426 regard:0.003160465716421157 reference:0.0028753705302949906 :0.18748387196906854 +the:0.1319384670627516 a:0.1145856546108202 to:0.03864846527733875 they:0.0317600414197592 :0.6830673716293303 +of:0.9451922389661694 commercial:0.021096990361580546 and:0.002337597883333366 nations:0.0015898537240184925 :0.029783319064898214 +don't:0.26895134717008823 only:0.24349578171517375 now:0.1639307321177967 would:0.131176088083698 :0.1924460509132432 +the:0.4677423492954757 de¬:0.004176388046336021 food:0.0019728917037394786 water.:0.0013402507996630314 :0.5247681201547857 +and:0.2613153213458013 of:0.21032053653415478 the:0.13102559699540975 before:0.09909259000720319 :0.2982459551174309 +necessary:0.18245627383626464 time:0.1442791899856507 proposed:0.08544205172717592 safe:0.06545159895117396 :0.5223708854997349 +Fourth:0.9919731698855266 Second:7.737877723223467e-05 If:7.665743349956976e-05 Third:6.261416036412692e-05 :0.007810179743377504 +with:0.1650220086792307 of:0.10112759602335279 The:0.10082790576700706 and:0.08806266267450731 :0.5449598268559023 +the:0.39415691446267925 to:0.13938163900203593 a:0.13103463242635346 and:0.10066265959342893 :0.23476415451550248 +the:0.41166370992393636 to:0.08711004967651775 their:0.06513892307314248 per:0.051415106563854014 :0.3846722107625492 +connection:0.20762650828936405 letter:0.20487085482058137 particular:0.052309977373770085 city.:0.02534878850944426 :0.5098438710068403 +of:0.3229323198914952 at:0.27177110176725994 that:0.027172312463460295 in:0.01885479588022979 :0.35926946999755505 +bill:0.044882768433805495 same:0.03084970110942031 strike:0.029979277968540403 people:0.029045933629228134 :0.8652423188590056 +have:0.8106583444228915 who:0.05404115207532899 and:0.031204451032459866 he:0.02072556169057002 :0.08337049077874957 +this:0.5657200690364043 physical:0.13306326785950853 the:0.10868101417852377 tho:0.0291531755811311 :0.1633824733444322 +of:0.5003703925457175 the:0.20920489324786132 was:0.1349303713164801 and:0.07961765516523597 like:0.07587668772470522 +and:0.11791247373282374 is:0.046230777517105366 ami:0.010373086701347822 Smith,:0.003829974185115005 :0.8216536878636079 +not:0.23199503442305242 then:0.0003096358441134327 well:0.0002552533064142504 finally:0.00023207411225464238 :0.7672080023141653 +it:0.0004153183387074299 proper:0.00011638480273459577 aud:0.00010425370752458068 to:7.66985497089442e-05 :0.9992873446013246 +support:0.17323859902351813 education:0.09838791482905708 protection:0.08157957145253802 securing:0.058534539671342464 :0.5882593750235444 +Wilson:0.0021305284794392552 Young:0.001867095527878083 Davis:0.001568173630979452 Grant:0.0011016422564247802 :0.9933325601052784 +.:0.16702095081244203 W:0.04819947878827566 H:0.03678371162981368 J:0.02980392453269856 :0.7181919342367701 +battle:0.02508113365268857 waa:0.01979037260181409 the:0.01966566313269664 was:0.015580240238195932 :0.9198825903746048 +trial:0.09606203298116012 hearing:0.07621518932134606 us:0.06488859274980388 them:0.04843179805149423 :0.7144023868961958 +to:0.19059474766754486 in:0.15312759737536194 under:0.1275762419962335 If:0.11626597147535798 :0.4124354414855018 +force:0.015779870228439505 right:0.012043566115455996 and:0.011675525579592713 to:0.008159130366630955 :0.9523419077098806 +the:0.9676461927242531 that:0.014725096335596972 he:0.0070961420038625446 tho:0.0019509923755144378 :0.008581576560772937 +and:0.3129193423490865 are:0.2527404412725799 as:0.13977181321853324 is:0.07513662129762871 :0.21943178186217163 +those:0.39252024376569333 men:0.1575339670953156 hero:0.04401137032155167 and:0.021009850468665537 :0.3849245683487738 +sup-:0.25969587005996847 pro-:0.07033902992496378 pro¬:0.022459433873963864 dis-:0.021515262259340126 :0.6259904038817639 +reasonable:0.5415941837200052 great:0.17007050579202443 considerable:0.12619898010267516 required:0.11103078262120747 :0.05110554776408774 +heart:0.0010434428045104482 business:0.0010030542789925333 that.:0.0005815313526491439 following:0.0002382723669214583 :0.9971336991969264 +and:0.20657203822124126 of:0.09667321919874519 the:0.06151730302630298 to:0.059169394751160335 :0.5760680448025501 +ten:0.3539138077997508 five:0.24404056806927152 two:0.16284013528267363 fifteen:0.11971565594827156 three:0.11948983290003262 +the:0.13206210869028642 and:0.11663855828190271 of:0.06628915958885649 to:0.04526327727222684 :0.6397468961667276 +pleasure:0.0918221477698686 calls:0.033065223667256456 the:0.018154169081852165 experience:0.015917863413731855 :0.8410405960672909 +of:0.44731412899375583 The:0.27214855589561743 must:0.17292033782239882 the:0.062093955490137735 :0.04552302179809028 +of:0.8557078459611998 says:0.03276806437007408 into:0.023556395955667983 t:0.02216664491764732 :0.06580104879541075 +School:1.3517089645797948e-05 of:1.305189186656896e-05 the:1.215103640485538e-05 I:3.0210773872139673e-06 :0.9999582589046956 +west:0.08414692325354713 north:0.07376053583275262 east:0.059876730858376845 south:0.056928944698916184 :0.7252868653564071 +of:0.20873328806313907 and:0.1381861232497947 the:0.05436441825475719 to:0.03284934329271718 :0.5658668271395917 +and:0.6643594034882486 so:0.04703196999995228 to:0.04666197657323316 was:0.030926283132637677 :0.21102036680592837 +the:0.2156074947768067 a:0.06983659663930347 any:0.039406665978258114 other:0.03921342574098706 :0.6359358168646446 +for:0.22785575824986606 of:0.1970268182554673 in:0.19283622019906285 About:0.12049906689815335 :0.26178213639745046 +few:0.1973027511242897 distinguished:0.13513353057563715 of:0.12461921226343407 certain:0.08932332311839018 :0.45362118291824893 +the:0.6128954594016397 a:0.14264053339444038 this:0.034968159826210134 tho:0.024423397762096878 :0.18507244961561295 +of:0.7878245342724485 are:0.06181453890648949 which:0.056308216207232226 do:0.03924054731185396 :0.05481216330197594 +general:0.2425095673114538 the:0.22395138611132487 tho:0.1254687406297496 a:0.060568074648405947 :0.34750223129906577 +of:0.21089087382347327 and:0.08887167124083431 the:0.03325149712748235 to:0.024723307502714637 :0.6422626503054955 +the:0.24141324983915588 The:0.21229092482265832 and:0.12426384278645068 a:0.049515667506423534 :0.3725163150453116 +the:0.42933110382705797 a:0.23394744910165086 of:0.061502699909332104 in:0.04461009847135083 :0.23060864869060832 +try:0.04072057201040952 thence:0.027738771469661774 the:0.0240634547760908 went:0.022099239151143233 :0.8853779625926947 +and:0.26324332735951267 of:0.19359368844173028 nor:0.145502820946865 with:0.1414288992382634 :0.2562312640136286 +the:0.09609593021529439 of:0.05481027654685058 and:0.0451141480411837 No.:0.038465191563408344 :0.7655144536332629 +of:0.35878363228280763 and:0.050613009846689046 the:0.029927274897007562 for:0.022687741406089947 :0.5379883415674058 +the:0.5084791507231944 and:0.17755658738827118 of:0.05398851551575504 ':0.025030974115285487 :0.23494477225749397 +real:0.4293636086985726 large:0.07715246894621997 valuable:0.03096813570672421 line:0.02384081121331054 :0.4386749754351727 +of:0.011554816000313623 and:0.008553221982266246 to:0.007739644836057833 ment:0.007382948465748018 :0.9647693687156141 +money.:0.05662552962738763 others.:0.014547485956414063 law.:0.012979725034197802 church:0.008151348021289775 :0.9076959113607107 +union:0.2679640051857628 taken:0.06442226870083259 equally:0.05449989990222137 brought:0.033927590798416854 :0.5791862354127664 +survey:0.09084776398227079 plat:0.05043938801386314 purpose:0.041950784930717556 location:0.026621253332187903 :0.7901408097409607 +required:0.8070924446216814 set:0.11891274627570579 fixed:0.05332051996594059 established:0.005556957176123251 :0.015117331960548994 +as:0.28077013015815044 opposite:0.07462911882805418 down:0.05840912959714205 over:0.04496328490950801 :0.5412283365071453 +man:0.031131687598563825 position:0.02829375391391653 shot:0.02686993119538734 stay:0.024513051141471478 :0.8891915761506608 +of:0.10935852137911246 the:0.08677564487439604 and:0.06744212214646461 in:0.03581999680911535 :0.7006037147909114 +of:0.9672186053343835 and:0.007035762491778771 the:0.0020571493427133615 to:0.0014301843945331103 :0.022258298436591335 +mouth:0.1883030857346078 the:0.06311016500053679 and:0.05676419399340271 even:0.03245531331588952 :0.6593672419555632 +a:0.4680664441835385 an:0.1406042960124737 the:0.06885743768338963 never:0.04721761130593223 :0.27525421081466583 +the:0.8852651717381541 a:0.03755474323547163 any:0.01680587266008555 tne:0.013575181611968452 :0.046799030754320195 +to:0.21770634622079416 of:0.1613001133186974 on:0.08460221006677363 and:0.08355472209496041 :0.45283660829877453 +the:0.1073514351495576 former:0.07730539715024258 gold:0.0298452839893517 Section:0.01868513058283358 :0.7668127531280146 +the:0.8797914536387776 tho:0.059330888468995306 their:0.0038262039226975276 all,:0.0022713068621658043 :0.05478014710736385 +to:0.9987555424663723 lo:0.00021274912201336272 to.:2.3718016380812097e-05 banks:8.500406308445781e-06 :0.0009994899889250416 +try:0.469640713064672 election:0.296380021275593 and:0.029359160337440165 to:0.015699573174509734 :0.18892053214778534 +For:0.21216375478342117 so:0.11415728075443601 and:0.09377855871919605 then:0.05311719825806607 :0.5267832074848806 +and:0.1271508893352894 the:0.08621168252806317 a:0.058205296274649876 to:0.053247557577139365 :0.6751845742848583 +In:0.7226245535690322 of:0.1250804138527428 in:0.06369682347578055 to:0.03699230476525114 :0.051605904337193274 +to:0.38402426531061656 her:0.15398646384540587 and:0.11010847660442714 She:0.05681632249216589 :0.2950644717473845 +have:0.3870864657903918 had:0.3101231692193786 has:0.243879502515726 bad:0.013836630748246094 :0.04507423172625764 +I:0.36126466238124416 he:0.3035341220398375 she:0.09927947045887135 we:0.09703643399978676 :0.13888531112026017 +fear:0.07043708189099641 snow:0.05967155629433477 man:0.0492379962303913 wind:0.03673604801472625 :0.7839173175695512 +the:0.292340236139185 less:0.06286998112484472 a:0.03953977405266814 2:0.03297255557069527 :0.5722774531126069 +and:0.011426193750804012 a:0.00865638901397407 very:0.0030867610404693743 the:0.0026275322440646406 :0.974203123950688 +oi:0.6926072313385048 to:0.20945063756257096 of:0.07495159226255804 into:0.004661924444894625 :0.018328614391471685 +memory:0.058978887083359424 result:0.05400152995289412 marriage:0.044640465923056004 use:0.03903988727967642 :0.8033392297610139 +driven:0.22485268048225068 put:0.20520200791688456 brought:0.0175106833471986 turned:0.011981621456024905 :0.5404530067976412 +was:0.17583944117126799 is:0.04738656512262265 had:0.04147408193115732 of:0.01589981985473225 :0.7194000919202198 +the:0.04951677183107643 di-:0.030959725855889464 other:0.028457743140187085 further:0.02462649621159168 :0.8664392629612554 +and:0.11967733007668657 h:0.10677021584155914 machinery:0.09710907654301532 some:0.07175123333618655 :0.6046921442025526 +which:0.15679534588437413 It:0.06461448784311656 and:0.04575127729292438 He:0.04425045345078896 :0.6885884355287958 +and:0.14875899062035736 to:0.11290217365295895 of:0.07472148703501057 the:0.03901350902195063 :0.6246038396697224 +or:0.809725165471362 and:0.11089464811191356 anil:0.0025508832795210082 aud:0.0024494673503367664 :0.0743798357868666 +that:0.4691238055694396 at:0.18856903371364617 and:0.1520039194772155 nnd:0.1077056159612608 :0.08259762527843784 +the:0.2761476340479659 a:0.050949451522180604 other:0.02672657621993921 most:0.024742524665452258 :0.6214338135444619 +it:0.0743740822699243 and:0.06877283368235515 It:0.05131438252697549 which:0.05129957516632791 :0.7542391263544173 +a:0.06642681096599294 the:0.04268531641966592 of:0.012202824483288811 and:0.005865796552712938 :0.8728192515783395 +and:0.1351588983507209 so:0.12899843426117202 is:0.10735002371956408 Is:0.07179745566290292 :0.55669518800564 +school:0.010246971989475268 morning.:0.004961151387816232 night.:0.0037191669204665856 afternoon:0.0018813087720291226 :0.9791914009302128 +an:0.5381756145833626 the:0.22916031890539923 his:0.0774964021163236 any:0.009742044733523436 :0.1454256196613911 +and:0.7357250710477321 In:0.09028640282637541 ,:0.042658407398112254 ami:0.0402427936410589 :0.09108732508672134 +of:0.1517218415546705 and:0.14078119015751878 with:0.13235828853617354 for:0.0655491227083494 :0.5095895570432879 +came:0.9349001603311445 point:0.014786053709494254 went:0.01092412387035421 pass:0.009682094525750688 :0.029707567563256116 +to:0.6474198033386555 of:0.24690058158088218 for:0.05826103224397843 ol:0.024340755777284277 :0.023077827059199883 +party:0.05664064029536191 heat:0.0378915980757851 room,:0.021732659391218614 crowd:0.01239031535587637 :0.871344786881758 +of:0.3028976696292072 the:0.1704180292822306 yesterday:0.1407721997633499 and:0.03016567878955497 :0.35574642253565725 +running:0.07027809439251116 turning:0.023378363370779774 it:0.006538095427406328 far:0.0028858711367425686 :0.8969195756725601 +30:0.6247221695264017 thirty:0.1513712680256268 40:0.10634728165632402 15:0.07193837338925492 50:0.04562090740239251 +in:0.5334805846733287 to:0.15885353390190357 and:0.10377953152760667 at:0.05890851626212079 :0.1449778336350401 +him,:0.06696859952339952 him:0.016870463835068624 all:0.015813752602398833 me:0.013893352839773335 :0.8864538311993598 +two:0.962390111818924 various:0.023081024844490684 respective:0.0029736363647130137 other:0.0015385007468022246 :0.010016726225070166 +that:0.2823235699788355 few:0.2627601605379742 the:0.20372290143618418 our:0.06042924463996632 :0.19076412340703974 +tell:0.6856978012938774 write:0.024916062299893838 show:0.020749168149174286 promise:0.009110013916170908 :0.25952695434088363 +the:0.6030306959289068 tho:0.13736524968150451 every:0.082208133287944 his:0.02085912277565845 :0.15653679832598633 +for:0.2619894075532489 that:0.24807438358604733 and:0.19898146349269324 as:0.14001790363592714 :0.15093684173208352 +great:0.027445298840921895 good:0.015980618667788982 very:0.010525721318024496 large:0.009869735641023112 :0.9361786255322415 +of:0.2902665665281482 the:0.12032756124965709 ot:0.09858917362603971 The:0.08927266520634028 :0.40154403338981476 +and:0.23170726157173652 The:0.151767655467093 the:0.09684644961166916 of:0.04710526449431253 :0.47257336885518886 +entered:0.14153970610840583 fired:0.09422855109484427 are:0.049794305532936 made:0.04451067193094531 :0.6699267653328685 +and:0.13749116249008705 the:0.049638939145636406 of:0.042088958635268264 to:0.024526720807734128 :0.7462542189212743 +office.:0.041648208989668166 office,:0.034264182105618206 residence:0.025107033841673662 son,:0.01018645200456816 :0.8887941230584718 +whose:0.4968015843202442 new:0.18071445838464079 with:0.16302196684170947 has:0.06905032195794898 :0.0904116684954566 +came:0.015974423486835133 to:0.011020800233589664 K.:0.004235066055044764 Davis:0.0041196679460765405 :0.964650042278454 +being:0.9259659217066332 has:0.01040633301701972 be:0.005542859284627886 having:0.0032238232608159754 :0.05486106273090334 +and:0.3629911268628292 the:0.09526330913269475 was:0.05297287768962268 grain:0.0467520942641085 :0.44202059205074484 +the:0.9218918882044884 a:0.01815452351814336 this:0.008834366404676174 with:0.007122126672522159 :0.043997095200169915 +in:0.2048428910346588 with:0.14190889309936888 have:0.0430694306019169 is:0.029981498069772017 :0.5801972871942834 +county:0.25757369636601085 and:0.18777786932449697 which:0.1580636690224115 who:0.08920926982188047 :0.3073754954652001 +found:0.15191620527282704 way:0.11505139294383383 and:0.075263340362096 place:0.07113291142252591 :0.5866361499987173 +ward:0.20653910092898262 Mrs.:0.152423753035242 and:0.08779784982427881 of:0.06109116821738138 :0.49214812799411534 +the:0.15572694537608028 to:0.10949186052294327 and:0.1025217088028615 of:0.0650366981372704 :0.5672227871608446 +north:0.466742371900662 south:0.12436278256737472 and:0.08370569858724654 about:0.046830387980850936 :0.2783587589638658 +a:0.09596203576868646 closing:0.06135709745137388 and:0.043141038915663864 for:0.02852944289205247 :0.7710103849722233 +times:0.11250044376787019 things:0.023899428246749437 years:0.010285323500183416 friends:0.008016577732221862 :0.8452982267529751 +of:0.10731477045582428 and:0.08260901365958394 the:0.07649748043124455 to:0.04203334242244788 :0.6915453930308993 +and:0.17530162745201006 of:0.12815286017333485 the:0.055388575395647385 is:0.04019380628656492 :0.6009631306924429 +have:0.608876864345151 had:0.2616527155160792 havo:0.09073127527233216 hud:0.006389786266581577 :0.03234935859985623 +of:0.8083799780700501 absolutely:0.07827107741423268 and:0.04715128866398342 has:0.025322884277023557 :0.04087477157471 +and:0.17754460125610863 be:0.17672286865409959 is:0.13445259848257773 was:0.11308605616948983 :0.3981938754377242 +business.:0.04792458070180947 and:0.042432169632494736 when:0.01358562632424021 States.:0.011367418801741622 :0.884690204539714 +the:0.2550912723978268 and:0.08644575151787291 a:0.05410468491163368 of:0.04718537636540292 :0.5571729148072637 +a:0.6465349214419472 the:0.22816235742595 one:0.018941354896664098 every:0.01774646481599459 :0.0886149014194441 +and:0.12356257399210778 covered:0.04978016116638159 filled:0.049027199408415996 road:0.03665744460097619 :0.7409726208321185 +declare:0.11893967579087732 say:0.07587948112725208 to:0.04871538849728265 do:0.04563967257744118 :0.7108257820071466 +had:0.31628396962280614 he:0.21456964979753054 I:0.19756961832901399 now:0.09114616891479538 :0.18043059333585396 +meet:0.9908609137199809 be:0.0025528194309413837 come:0.0016034541410120606 bo:0.001583013043269021 :0.003399799664796746 +that:0.26362578889465704 the:0.1975385050420584 ment:0.10695443100214971 ed:0.05970208635249624 :0.37217918870863853 +a:0.48542607782251407 his:0.17824548601700313 our:0.15327010442480343 the:0.07253751393064362 :0.11052081780503566 +added:0.1006065111399092 made:0.07093887642897442 elected:0.04017387183438314 received:0.036673817478705524 :0.7516069231180276 +chance:0.10857547695363672 check:0.10305963927240015 candidate:0.05024340725654924 nomination:0.036605684371733 :0.7015157921456808 +.:0.1053532666548721 way.:0.04074174952934742 city.:0.0099018429537148 case.:0.0073059222300943085 :0.8366972186319713 +and:0.14866789947556094 of:0.10783777096184707 to:0.07353000558608044 the:0.04969232567670771 :0.6202719982998038 +.:0.2905925823797579 e:0.2766535668658139 the:0.12681982113656043 an:0.01972905306713142 :0.28620497655073646 +most:0.02330845817872449 the:0.019263638690109865 same:0.015155689971627521 said:0.01102112393295286 :0.9312510892265853 +two:0.3467185370571079 several:0.25411449599440794 24:0.1265077112554218 three:0.09930555034052624 :0.1733537053525361 +with:0.22279442069921526 to:0.21801274532081638 for:0.12432833704697437 upon:0.11854714052250787 :0.316317356410486 +his:0.45143395074185494 black:0.05217048423084925 the:0.0436265693213655 with:0.031085397221646778 :0.4216835984842835 +interest,:0.06977796690929262 meeting:0.026790783707484625 and:0.023360179302138614 mouth:0.012328971554158448 :0.8677420985269257 +nearly:0.6347649034163243 of:0.16239553886211752 which:0.03723256107373314 in:0.03661390458565195 :0.12899309206217327 +the:0.19767789072379588 a:0.04745086945381941 of:0.027082228463286076 other:0.020793919001823032 :0.7069950923572755 +to:0.24943244311173401 by:0.22406848381632966 that:0.15126222339777057 of:0.12104587256693167 :0.2541909771072341 +the:0.20457772406423927 a:0.14327091469384187 The:0.1191018346497834 and:0.08302707942056436 :0.45002244717157114 +company,:0.08907107591969773 corporation:0.08613361120718352 clerk:0.07135066317439996 state,:0.05497262303179567 :0.698472026666923 +the:0.9320873463556637 The:0.006210902149229646 "The:0.005333585062386024 a:0.0019605505793470882 :0.05440761585337364 +the:0.21708110369400024 and:0.1402575197916671 of:0.10939189999058321 The:0.10488852832315218 :0.42838094820059724 +club:0.03723425358078616 same:0.0351472880243215 party:0.03444851461124527 people:0.033644761039000375 :0.8595251827446468 +B.:0.43578357175313875 and:0.31522120018613486 James:0.08742817413203335 R.:0.0350438135126108 :0.1265232404160823 +it:0.2382277890065278 him:0.20883137015771483 them:0.1131411480238426 us:0.08522259896423079 :0.35457709384768404 +and:0.3077365424523432 of:0.09602558299140666 without:0.06887372761058161 in:0.06835856790442882 :0.4590055790412395 +and:0.009986570723860926 thereon:0.009166719497604477 farmer:0.007024696278912491 the:0.006482232767528749 :0.9673397807320934 +the:0.3772858780420258 all:0.16462014827442922 such:0.06911402291269968 some:0.046600028516008876 :0.34237992225483665 +said:0.2464354802875594 told:0.12408098625472733 is:0.04933692405046863 stated:0.04759322671651412 :0.5325533826907305 +set:0.2616239528827216 took:0.12968862711388632 fixed:0.12123699409514617 looked:0.05156829282182992 :0.4358821330864158 +give:0.4915699292772755 leave:0.08542175720999312 get:0.0631057350992974 cross:0.05025207823583799 :0.30965050017759593 +There:0.49564494085639305 It:0.13367597437060796 That:0.07713456973170475 and:0.054732394538381385 :0.2388121205029128 +who:0.14664986730989382 and:0.11377403748139912 He:0.08041416170173332 actually:0.06880933713999549 :0.5903525963669781 +in:0.3246295048926497 for:0.09426997327910223 by:0.0779483030449163 without:0.06623482510836491 :0.43691739367496685 +and:0.5624698842951015 to:0.13850429694695318 with:0.1100236538894286 as:0.10582779712834349 :0.08317436774017319 +receive:0.2923858564363726 by:0.04504572805481169 after:0.04175753814249113 usually:0.028960393265060766 :0.5918504841012637 +of:0.9205271896195363 th:0.0024452957557405505 places:0.0016146788081926322 to:0.00113644798217895 :0.0742763878343517 +o:0.13898561521836736 h:0.1099221093053326 ,:0.05798542037518021 d:0.0298183563995194 :0.6632884987016004 +that:0.7913495006243492 of:0.195397224772956 in:0.00342766963784001 to:0.002898773695952163 :0.0069268312689026385 +the:0.4129322669375775 a:0.16945897666130852 an:0.05645202820067788 any:0.03231851008640567 :0.3288382181140306 +the:0.3406391587364506 his:0.06248458932274615 a:0.04491234015301691 tho:0.030230832293246124 :0.5217330794945402 +the:0.41012298780956097 and:0.07081602553833251 a:0.06796946444017572 The:0.06291640123569428 :0.3881751209762364 +brought:0.21077873814464412 seen:0.20525958999413768 any:0.14725806228738475 the:0.05074964583453016 :0.3859539637393034 +upon:0.2757112177434233 into:0.24195726603289658 on:0.20320250973352552 to:0.1583557419643575 :0.12077326452579713 +state.:0.07927185183035737 case.:0.012065615071517759 world.:0.005708534023302828 country.:0.0033889559885819705 :0.8995650430862401 +a:0.16010279327490384 at:0.11284389877368466 ar:0.08719179288759836 w:0.05100454504123709 :0.5888569700225761 +a:0.5866214483364227 the:0.33043770029303154 tho:0.013301434185673842 any:0.011140360137965327 :0.0584990570469065 +for:0.4864988399489308 with:0.17090430554806607 in:0.1459251422572001 by:0.07635064380985447 :0.12032106843594872 +dangerous:0.04762774883001547 as:0.046002421319318594 especially:0.04008526848945608 also:0.026740023552800817 :0.839544537808409 +so.:0.3892932367356119 that:0.1505304039498956 and:0.02885152694464914 be:0.01580188859461979 :0.41552294377522364 +.:0.03394881503863396 Jones:0.025122635974135162 ":0.023275845715051233 ;:0.02104934043770783 :0.8966033628344718 +it:0.2208273001835979 a:0.15760846410457693 has:0.11145047000044726 the:0.10166409050936569 :0.4084496752020123 +dollars:0.4567693213791457 them:0.240864989722565 death,:0.1887092160000658 and:0.013949802019222935 :0.09970667087900068 +nnd:0.4244394318033046 to:0.28627023543034597 of:0.09417276539800987 and:0.05445211796584877 :0.14066544940249082 +is:0.15852817733302058 affairs:0.12751369002258914 Is:0.08550978397199462 known:0.08330639761856927 :0.5451419510538266 +strong:0.05495625033263249 sudden:0.05012798379210342 show:0.04299530856730766 bad:0.02956736028294366 :0.8223530970250128 +State:0.0677582367325748 instead:0.019310692254422307 that:0.017650341857179556 the:0.016617489334223582 :0.8786632398215997 +to:0.8990254767834296 I:0.06321822903608594 or:0.014196888947109607 would:0.012574980751014486 1:0.01098442448236023 +same:0.06810414723224242 greatest:0.058595266676584594 Captain:0.05692552442606154 road:0.05323521154230192 :0.7631398501228094 +that:0.0928015936443384 if:0.08514278619978925 which:0.025847416232264032 when:0.01424429355051453 :0.7819639103730939 +The:0.4774019485145303 the:0.21630488128417252 a:0.03450701589009467 second:0.019317375256489352 :0.2524687790547129 +fifty:0.36157391367014285 forty:0.0862627216135106 sixty:0.06351189853564927 twenty:0.04616980275771855 :0.44248166342297873 +holding:0.35165718085729625 a:0.1951323225063474 the:0.14743112019772295 going:0.10450445286909865 :0.20127492356953472 +and:0.49557253861986544 the:0.20712934694844481 he:0.11714155093813265 this:0.1086979717321577 :0.07145859176139946 +and:0.949260055104486 to:0.03659349504203621 ami:0.0009471798179571049 anil:0.00010057962177445433 :0.013098690413746283 +In:0.0014408745850203065 to:0.00039062207299849817 g:0.0003718808149539988 will:0.000260853083785942 :0.9975357694432414 +of:0.21046687865809413 er:0.1464937985809716 to:0.13338624029819665 that:0.10676397309507078 :0.4028891093676669 +N:0.027809784782019602 a:0.015133696365772992 State:0.01497709447734098 said:0.01427986988352608 :0.9277995544913403 +of:0.35540523802686963 and:0.17538017877367754 with:0.06851843891759028 for:0.06706206216523954 :0.33363408211662304 +order:0.06994081027844054 1:0.04247398103914725 end:0.03280845740030086 hour:0.01838760863460092 :0.8363891426475104 +and:0.4102422029372422 to:0.11210335394481151 of:0.06405097944123393 by:0.036665743307415205 :0.3769377203692973 +books:0.4286537678780521 experience:0.11568007291091913 which:0.10194444421262111 body:0.06294215389116106 :0.2907795611072467 +five:0.23311135265915855 made:0.10171810824083 about:0.07171751746543167 began:0.05725076374274253 :0.5362022578918373 +the:0.18429103931535953 and:0.10743372043019662 to:0.0649573998499759 a:0.058509918602573756 :0.5848079218018943 +fresh:0.5463197183884769 it:0.12040738003291528 badly:0.06542565937152307 in:0.05945161623191 :0.20839562597517466 +of:0.33883700130986505 to:0.14858514776995652 in:0.13379329892159106 for:0.09185851245565858 :0.2869260395429289 +of:0.14638545650557974 and:0.12905445849053548 in:0.1211037375877541 with:0.09224295823948356 :0.5112133891766469 +made,:0.023640457068611485 over,:0.015051956001387135 over:0.014237374005193502 made:0.014023109311295754 :0.9330471036135122 +the:0.3220070713777583 he:0.12994245550844458 Mr.:0.09200846249232965 it:0.09131743817234181 :0.3647245724491259 +Mrs.:0.021738183805331032 and:0.02017333919580884 J.:0.015559244778332728 May,:0.013675817146366308 :0.9288534150741612 +payment:0.7624941906257978 said:0.13824023266676946 the:0.04001891259052235 this:0.037689989047058656 :0.021556675069851535 +In:0.6026898936277293 to:0.19019975333872763 in:0.14471124227190837 of:0.03872535851741992 :0.02367375224421474 +in:0.7077535082116391 In:0.1086780136133695 iu:0.022673532860549128 on:0.0028380314290093983 :0.15805691388543286 +and:0.08460803221474705 of:0.05747635544854932 the:0.053544260835335894 to:0.026863903832286127 :0.7775074476690816 +in:0.1822781133223977 and:0.16863400044760546 of:0.12263866699822781 are:0.08529190326972877 :0.4411573159620403 +can:0.3670580223868426 may:0.32130231028223905 to:0.19872257399770965 will:0.07229454592451813 could:0.040622547408690576 +the:0.4980594337942889 a:0.20506266222405642 with:0.05535667463106281 of:0.041453736067705055 :0.20006749328288675 +of:0.9064832149894418 between:0.079303753516681 with:0.007924368028852232 is:0.0008384998098179118 :0.005450163655206985 +most:0.03845608371842235 the:0.01764755439037553 great:0.013838450265970833 United:0.013588508291559194 :0.916469403333672 +legislation:0.07946801222576659 to:0.06038693008874215 money:0.03616687496759495 from:0.03376032729032157 :0.7902178554275748 +and:0.5744169618161244 who:0.21948172034339397 she:0.04155600132882348 d:0.027712225238399918 :0.13683309127325813 +by:0.975211803921474 in:0.01204937031560196 without:0.005318269172440997 at:0.0042603211709684825 In:0.0031602354195144977 +for:0.11743503840843626 of:0.04837760831175647 medicine:0.040628391452684764 to:0.030973039044155642 :0.762585922782967 +of:0.7105881957209021 at:0.1207922144367086 was:0.09533117097093834 until:0.04319399552330595 :0.030094423348144904 +advantages:0.37166523414987906 remaining:0.35791193045064806 times:0.1518713918916235 of:0.02630362071517928 :0.09224782279267003 +August:0.022056355926547214 day:0.020513181509021233 day,:0.009409663154876843 the:0.009106569517162622 :0.9389142298923919 +the:0.595799949592114 this:0.10742304202548958 Ihe:0.039765916959976944 a:0.021867985299216967 :0.23514310612320238 +we:0.2901664509496092 and:0.2463073849820727 I:0.1475052720298414 They:0.0643270652713614 :0.2516938267671153 +he:0.23982420316164357 the:0.23398280430241555 his:0.12568939811927304 this:0.09350457913176799 :0.3069990152848999 +behind:0.09150710305592909 men:0.05902231537650822 experience:0.05744599878761486 both:0.04186799588437618 :0.7501565868955716 +his:0.4469977703529825 the:0.43557092537005787 a:0.06048630532422906 my:0.033101352413677475 :0.023843646539053003 +of:0.6141984323496726 for:0.18075220725202654 out:0.07439514353826798 in:0.07000963501397772 to:0.06064458184605493 +and:0.2400950268521827 ing:0.11152617305738707 like:0.055507886560485685 to:0.049742385179783126 :0.5431285283501615 +half:0.17630053911747146 a:0.13201574035483357 and:0.1087006593789855 the:0.0938293770387139 :0.4891536841099956 +in:0.1838935919399632 for:0.17332392406780553 and:0.17321531435451362 would:0.06616801570288368 :0.403399153934834 +both:0.7641066681035942 all:0.07629780670922805 the:0.07365015354112403 opposite:0.047874646641233524 :0.038070725004820255 +usual:0.005583261268828042 the:0.005462542370622475 part:0.0035583632565943063 particular:0.0034894194529367533 :0.9819064136510184 +of:0.3908542038182271 and:0.04996434583745344 the:0.04829674463309663 at:0.04792100023062371 :0.4629637054805992 +and:0.17084958545975096 of:0.07702733891088306 or:0.061530555067799406 to:0.0545881813127814 :0.6360043392487851 +were:0.11282583414884106 the:0.05123267007776132 in:0.048127308943132004 be:0.047118791309828816 :0.7406953955204367 +one:0.5886320071577263 front:0.06337775402176783 black:0.032985433165218625 the:0.027741375284755846 :0.2872634303705314 +state.:0.0027073545779083253 canal:0.002293024206803078 If:0.0010827740478319527 and:0.0008927083677415867 :0.9930241387997151 +by:0.9890103489328459 from:0.006916035782803095 to:0.002492276888111064 all:0.0008821308139145876 :0.0006992075823253885 +and:0.1612270366004818 to:0.15548524302242014 in:0.12806818937126804 the:0.08239544819356064 :0.4728240828122694 +York.:0.17554847418184352 York:0.03688630143031068 States.:0.011869605341777119 England:0.01112741300177945 :0.7645682060442892 +her:0.9997744547292138 a:0.00016691960867092827 their:2.6691718851229284e-05 his:2.2410833633383492e-05 my:9.523109630645052e-06 +parts:0.17525894833469527 situation:0.157909986149261 part:0.11483661910079165 parties:0.09767118663891346 :0.4543232597763387 +of:0.16985189576244764 to:0.11601265065085374 in:0.11344041211274447 and:0.09815703983727747 :0.5025380016366766 +are:0.43057520806956834 aro:0.3359192617776319 arc:0.05748170529072127 were:0.032663604607435635 :0.1433602202546429 +me:0.050796200106838475 ed:0.049668891292189064 them:0.046787285169228844 and:0.04501732797088835 :0.8077302954608552 +ed:0.07612050869980266 and:0.07138106980444466 ing:0.06358700146969934 enough:0.058667425550633985 :0.7302439944754193 +is:0.19012311706240753 runs:0.053249689439776 was:0.04324914985736546 that:0.025678281422119552 :0.6876997622183314 +even:0.4488040060264926 as:0.13696152828250943 but:0.10781935205398074 Even:0.027159682275791575 :0.2792554313612256 +recently:0.20611748133696198 no:0.19595957597195812 the:0.14373841287212266 only:0.10237080882572273 :0.3518137209932344 +cent:0.26895072879546594 six:0.20772189938504063 ten:0.18249594957668722 two:0.17921029016190335 one:0.16162113208090284 +and:0.5012211535906336 within:0.24303362943997303 or:0.10932563679870387 in:0.05828217254552613 :0.0881374076251635 +What:0.11793716275688212 This:0.03111532332586128 But:0.015562576015363651 That:0.009993581721936554 :0.8253913561799564 +and:0.15584598770871647 the:0.07964007034254153 of:0.05277539290471431 was:0.039250470212970366 :0.6724880788310573 +party.:0.09050453397806077 and:0.044241528967745046 side.:0.043402815747816216 platform:0.01424632969118517 :0.8076047916151929 +that:0.2619189750690934 and:0.21892736396675355 Court:0.12575099795303496 as:0.09803228017268231 :0.29537038283843586 +tbe:0.05481570900813839 of:0.014845236388402159 the:0.0048524773481183215 The:0.0037737584597780814 :0.9217128187955632 +by:0.5704939515009101 of:0.14575665110446012 in:0.13013657516003865 quite:0.06971101795615223 :0.0839018042784389 +South:0.299130215913628 and:0.1475550933381523 shall:0.10151801967800404 the:0.04765688418175953 :0.40413978688845603 +and:0.17190181751164244 ton:0.06426423269835406 It:0.0377905364877765 it:0.03562207822962026 :0.6904213350726067 +acres:0.2541745299530623 piece:0.13553745722442664 tract:0.08679773494158749 composed:0.041194766289306996 :0.48229551159161654 +and:0.28185786198434626 he:0.16978118479662702 I:0.12032877487787147 we:0.09937878975895967 :0.32865338858219556 +glass:0.06009392119096768 hour:0.04665964315570175 secretary:0.026523675583243034 first:0.02327245746538631 :0.8434503026047012 +received:0.2254259506332851 purchased:0.11485047802369391 made:0.1147317318789505 given:0.029160301570593364 :0.515831537893477 +our:0.5311065308697681 his:0.2800239678786337 their:0.09232796787551763 the:0.0492020155979102 :0.047339517778170456 +came:0.6760325944544512 up:0.09653775185371523 whatever:0.06690027542093185 I:0.054444791771469964 :0.10608458649943166 +at:0.35818792774598357 of:0.2968006537766401 in:0.0909190695164686 and:0.05437505396281802 :0.19971729499808966 +most:0.02517601309536029 the:0.02120402654667604 same:0.017205901697946526 said:0.015973417922695125 :0.9204406407373221 +provisions:0.33945370921864515 terms:0.0643510902295316 construction:0.04614605425724794 and:0.03142518484722535 :0.5186239614473499 +prepared:0.06210745638837413 and:0.05264301578392577 made:0.0412799897912645 owned:0.03371442302143329 :0.8102551150150022 +and:0.04837482429600055 of:0.02729365151616438 7:0.022263796777374063 extra:0.02139092342284816 :0.8806768039876127 +can:0.7017150868121046 could:0.1363619735059139 cannot:0.10811413147062746 sister:0.025956012434706143 :0.027852795776647888 +the:0.41202959937983613 a:0.10957361488338994 July:0.10516260853633133 our:0.028367560315821723 :0.3448666168846207 +he:0.3968800971196708 I:0.1317245436329477 and:0.1027491029310406 He:0.08475847663887176 :0.2838877796774691 +or:0.14096894449608288 than:0.05508286780338761 free:0.048133678448147865 and:0.04519974065673052 :0.7106147685956512 +and:0.20799114980410607 or:0.16027035042212256 few:0.0726405938381972 the:0.05908331070303658 :0.5000145952325376 +be:0.40475016863682123 have:0.050808590408323195 he:0.01760733275779522 also:0.009758344871985618 :0.5170755633250748 +and:0.04377673345700828 John:0.014893854012022664 the:0.01280857307573139 J.:0.007191987718066054 :0.9213288517371715 +sur-:0.05571890701512744 and:0.05288867820275104 the:0.04897336964593068 ma-:0.044052764696661965 :0.798366280439529 +a:0.5563138254818111 the:0.3522535616579466 no:0.06354282793137607 his:0.011005575753494153 :0.01688420917537222 +money:0.025750044865910916 up:0.02091236713484463 the:0.019238986335953036 a:0.0169378314997673 :0.9171607701635239 +to:0.4069005517539358 and:0.21941371114742894 would:0.12330230397561066 might:0.0728303426471057 :0.17755309047591886 +and:0.07260385249279785 town,:0.06597969238789482 was:0.0324508743288275 ami:0.025937269859536198 :0.8030283109309436 +day:0.07180252770179268 sum:0.0638884814619522 tion:0.06015685351605312 pose:0.0591279112894931 :0.745024226030709 +years.:0.030272594645585786 days.:0.02235831854486575 feet.:0.009065986903475081 men.:0.005644449023127484 :0.9326586508829459 +trees:0.36276976164787467 her:0.1223128374523515 them:0.08756212140271472 him:0.08173387075065149 :0.34562140874640773 +It:0.13287732243188013 it:0.0916732954721801 which:0.08405068764938829 and:0.06910495835079081 :0.6222937360957606 +the:0.5659974152602705 this:0.1179381450568556 I:0.04067063430841529 in:0.02838428589311299 :0.24700951948134575 +most:0.1296234716206983 only:0.06015342511053918 first:0.046485443816442554 greatest:0.03291490830408861 :0.7308227511482313 +steps:0.0689643275743524 road:0.018647367405862814 progress:0.011028387756547154 defendant:0.010896758287307563 :0.8904631589759301 +4:0.17836940608731375 the:0.07543592846646116 The:0.05687828697946018 A:0.04052476438042227 :0.6487916140863428 +of:0.03283875458021889 to:0.032168685939162264 by:0.023807912310440892 the:0.02299053721812583 :0.8881941099520521 +the:0.4705549424801333 this:0.08267221624965806 that:0.04241449484862121 those:0.03967731887347372 :0.36468102754811366 +a*:0.5474312980964644 of:0.018610415535005163 W.:0.011755423457147125 and:0.009258273202626429 :0.4129445897087568 +and:0.31760683153487895 with:0.09744540948908224 of:0.07226740979399666 the:0.06910300312894074 :0.44357734605310134 +the:0.7083087018143625 a:0.12095271966643945 his:0.04829695085258659 tho:0.04144915553439837 :0.08099247213221311 +the:0.2971022945075368 Mr.:0.11181052331215131 a:0.10699811670599092 his:0.08057187751187393 :0.4035171879624471 +to:0.15892201700685812 the:0.11727467899716505 not:0.08164545298035593 that:0.07888719005159409 :0.5632706609640267 +men.:0.11456855107505179 them.:0.03011214549627551 the:0.014794912372924745 years:0.013050425129151838 :0.8274739659265963 +bought:0.3067518603900647 man:0.19359685414543729 worth:0.08127110113303232 sold:0.018924007331616536 :0.39945617699984903 +a:0.4176120654041799 the:0.20759972081022393 and:0.09264743983709083 far:0.038291666452747106 :0.24384910749575822 +the:0.4985218000537219 Mr.:0.10791965817143045 a:0.08395207640189829 his:0.08111221667941385 :0.22849424869353546 +only:0.2744098763860548 the:0.1541369044235941 tho:0.0956617714978023 a:0.034765133815777303 :0.44102631387677144 +and:0.22111848839471768 in:0.21052290647922406 the:0.08849304242144243 of:0.06740688436701923 :0.4124586783375966 +In:0.23097545803290076 from:0.19244720749863573 of:0.18505209372042317 to:0.028684677269681512 :0.3628405634783589 +the:0.2379528111137892 are:0.06643049903521342 The:0.043588866996049615 of:0.03302946581986692 :0.6189983570350808 +was:0.24022454751565717 account:0.15438874730289007 had:0.08794756900761315 who:0.06602832248928098 :0.4514108136845586 +man:0.2151851552278278 one:0.12093487217204227 fellow:0.019148950294875747 woman:0.014716618919491104 :0.6300144033857633 +the:0.5470765112802379 a:0.07453035930908855 this:0.04437259843466475 tho:0.03055419816053119 :0.30346633281547747 +of:0.36230217926702973 on:0.32136602341648823 from:0.13766780065672685 to:0.09123436828095596 :0.08742962837879929 +first:0.2322636136100477 early:0.11596496552104647 late:0.11519447457133694 old:0.04348020502973151 :0.4930967412678373 +and:0.03593718610236846 church:0.028905073010236773 once:0.024078459995079942 j:0.023626953518977402 :0.8874523273733373 +the:0.16863334924170517 to:0.13101139504555162 and:0.1268648798562222 The:0.04495680406754271 :0.5285335717889783 +of:0.08750522454610916 and:0.08635036298552501 the:0.06042799368260843 to:0.02702990069617348 :0.7386865180895839 +and:0.12574905262085817 to:0.10884315800815846 of:0.049304037349480044 the:0.0377541699158746 :0.6783495821056287 +doing:0.47248973175963466 not:0.4009006416825076 still:0.01861329880533616 found:0.017523239426740965 :0.09047308832578052 +United:0.018995933748566535 public:0.014175348026607977 the:0.013191366523595526 State:0.010354771476266606 :0.9432825802249633 +worthy:0.5396105204279908 one:0.05923640264548953 capable:0.009952208371889293 composed:0.00892386475256067 :0.3822770038020696 +of:0.8042076039542192 the:0.05414770005066525 this:0.01786808339712784 an:0.011866693206543096 :0.11190991939144457 +not:0.6736910549351738 the:0.08853962388301029 he:0.03139341400173864 you:0.02349649190856112 :0.18287941527151624 +situation:0.14566367859768012 enemy:0.08280607951774335 rate:0.03013642662322853 man,:0.00992998941278119 :0.7314638258485668 +and:0.06283379676054465 away:0.0344246199770437 taken:0.0158566341261146 came:0.013081490581910942 :0.8738034585543861 +The:0.40804170432161324 the:0.19194817278593598 a:0.10077359438338894 A:0.0781817667149577 :0.22105476179410416 +the:0.6547317523015183 this:0.07288270263237032 their:0.06695083031162034 tho:0.04572533793399893 :0.15970937682049213 +and:0.8207803141828823 to:0.07452304457937135 where:0.04097856908382116 after:0.031811218721098246 :0.03190685343282697 +court:0.0031394953357966045 county.:0.0028009185888413822 city.:0.00012642210700856494 mortgage:0.00010561968222687924 :0.9938275442861265 +the:0.7778963051677897 a:0.0571248282977181 con-:0.05218999132848383 tbe:0.008269000595990417 :0.10451987461001809 +is:0.34609602121448985 one:0.30274253866455614 man:0.11974303941662627 record:0.1045343633576297 :0.12688403734669818 +States.:0.012646324660527323 days.:0.010897732883729035 was:0.009880736841125103 people.:0.0039069812063612505 :0.9626682244082574 +report:0.050371174831653695 j:0.0077035548298187385 of:0.005596083569656786 -:0.0037286637565228328 :0.9326005230123479 +the:0.9588292529947171 tho:0.018490016610744144 tba:0.016143933697514597 (he:0.004024740121871629 :0.002512056575152688 +in:0.5596141398219397 out:0.17680411886284728 of:0.09790453516652989 to:0.055704416526915136 :0.10997278962176801 +today:0.5889102564746516 while:0.15451176276426493 that:0.1228614058599274 although:0.055443229105514684 :0.07827334579564132 +.:0.02111949416943206 and:0.009827870390824845 of:0.009366774891064208 it.:0.0066893570038061454 :0.9529965035448726 +men:0.8775347922663231 man:0.004469427177877467 and:0.004010752498470462 the:0.0034015359860549116 :0.11058349207127373 +the:0.6684634197743867 our:0.12032013117729493 that:0.08258718052944172 an:0.055235741624922244 :0.07339352689395441 +that:0.653526475364947 as:0.02639374295250839 orders:0.021019228174664777 things:0.015132355851599732 :0.2839281976562801 +and:0.25144511229216004 to:0.22940837655828095 the:0.04242910245583509 of:0.022588377644912172 :0.4541290310488117 +came:0.21090571771411834 broke:0.14948537111253615 with:0.08176809997122216 of:0.07148716657410249 :0.48635364462802094 +a:0.21130712262867346 the:0.13603532309895244 in:0.09395676095295553 quite:0.04850972988593246 :0.5101910634334862 +one:0.10278136893861883 One:0.08119805455125713 Some:0.04545509953153521 All:0.04236510789479421 :0.7282003690837946 +In:0.5899976547966529 in:0.32681593723960395 n:0.021492367168713056 that:0.010363607149384137 :0.05133043364564588 +ns:0.39948930087551704 five:0.23552094148638653 by:0.12453895378419907 through:0.08627551666503103 :0.15417528718886625 +that:0.1327969243763084 or:0.10108144933849862 is:0.044044299586596794 authorized:0.03910043721386071 :0.6829768894847354 +of:0.1863738308204423 in:0.07956600383459987 and:0.06828760869835837 at:0.06672990953223937 :0.59904264711436 +and:0.22953308037540113 to:0.10403656472478506 in:0.08835101702711426 as:0.08346396621147019 :0.4946153716612295 +estimated:0.0287397495699662 annual:0.023654959463816117 said:0.011458341935694876 revenue:0.008689090313782824 :0.92745785871674 +the:0.15747384689782878 a:0.03757989670297485 other:0.03227200876950465 Mr.:0.019365029334981635 :0.75330921829471 +gives:0.5128594183182124 and:0.09776980899418913 such:0.07774696650225674 take:0.055465382541117304 :0.2561584236442246 +it:0.43781246288934184 come:0.19654720049567068 this:0.10609290308436957 the:0.04018347777949045 :0.21936395575112755 +in:0.3947891485568947 and:0.33778200867906905 ing:0.08277179176942173 beyond:0.07815139986398999 :0.10650565113062443 +when:0.48481760867154255 before:0.12505404387064412 as:0.09431953821392752 that:0.06668411171937763 :0.22912469752450804 +the:0.17206632350432707 to:0.09685149028056522 a:0.09365962835206727 and:0.08230722585845361 :0.5551153320045868 +and:0.0691973580697046 between:0.06164582609985547 yesterday:0.046932154817842485 to:0.04491509309881639 :0.777309567913781 +to:0.2982665813460326 in:0.21151647900343323 a:0.20398193782130636 the:0.16540958204808323 :0.12082541978114456 +were:0.9137992502659618 had:0.014756276060325165 are:0.011362143237025753 could:0.00952735985393643 :0.05055497058275092 +of:0.1508170175154656 -:0.04491944393373435 sent:0.04073850084004928 A:0.013652058760438046 :0.7498729789503129 +is:0.24620716989720523 was:0.04562258073482698 em-:0.023333738760162127 had:0.016561643998183835 :0.6682748666096218 +That:0.7725927927519806 that:0.10061098935765275 and:0.035235843858320376 but:0.012645280194632529 :0.07891509383741395 +the:0.9998078680517491 tho:6.517781073965009e-05 he:3.074335433624772e-05 tbe:1.697140403933897e-05 :7.923937913571506e-05 +a:0.5546528839874847 private:0.057555446598049585 it:0.041322395067206405 soon:0.03517185291769601 :0.31129742142956324 +would:0.4327454982472376 in:0.1816473016662843 to:0.12510261499455455 and:0.10527044513736761 :0.155234139954556 +by:0.30756282544706715 with:0.142424746237913 to:0.13111770647711632 in:0.13050289016271382 :0.2883918316751896 +he:0.7562385586164669 was:0.0586164432515517 that:0.04842331711950715 is:0.03969535540915079 :0.09702632560332362 +right:0.6461961061948301 with:0.048179879278123366 capacity:0.04303269547666295 work:0.03179331256598145 :0.2307980064844021 +thence:0.13074693676350524 six:0.12336048866128212 the:0.08650861397263518 a:0.08188662624450496 :0.5774973343580725 +the:0.4620757126513215 a:0.07497478928585581 his:0.04353008900986845 tho:0.02969654625659474 :0.3897228627963595 +and:0.10105543347835146 the:0.07067861917650733 of:0.06856209366953642 to:0.027434577961972535 :0.7322692757136321 +be:0.36809558577590007 not:0.06825025116753743 bo:0.03138175201672101 have:0.03127661566008931 :0.5009957953797521 +causes:5.092494696709924e-05 men:3.5016529875533007e-06 states:1.1965093473240098e-06 nations:8.049529080116361e-07 :0.9999435719377898 +and:0.1939069271068387 of:0.059211650508872116 to:0.0536357606930393 the:0.04400684661624923 :0.6492388150750007 +young:0.5994700576668389 beautiful:0.03820667094426267 quiet:0.025083128601264174 single:0.006029500179975094 :0.3312106426076592 +to:0.9683879230368708 on:0.007495654372044161 in:0.0053899555663834385 and:0.004301580106084065 :0.014424886918617423 +the:0.08508752288597013 valuable:0.06087594625607598 cost:0.05959487352174878 Lake:0.0267940627928152 :0.7676475945433899 +had:0.1816820000176589 appeared:0.1033174579949531 were:0.08559066065875857 are:0.065940820433478 :0.5634690608951515 +when:0.18040219681984968 as:0.13380205738406248 that:0.12653438875639791 if:0.09889300159898035 :0.4603683554407096 +we:0.5407509444232258 and:0.39643431309106736 to:0.05060996723480305 you:0.009782700360083309 can:0.0024220748908206687 +to:0.4384525374080563 In:0.3562388498580073 and:0.040477541598391585 of:0.03369073982490109 :0.13114033131064373 +and:0.09740597335475235 the:0.05504114754418045 of:0.053570684375060906 to:0.026970958207261926 :0.7670112365187443 +E:0.4722596868953747 R:0.20720063913384648 A:0.1335025066856321 G:0.11515615261152103 U:0.07188101467362566 +a:0.5558629012458391 you:0.2475295207181614 the:0.17146600826941039 for:0.014720686478616038 :0.010420883287973118 +I:0.3165298990395629 he:0.044726004977891 who:0.027282165633721257 then:0.001504582135022951 :0.6099573482138019 +their:0.318141862961433 of:0.198921951767208 the:0.04936222713651101 small:0.03964324996769499 :0.3939307081671531 +the:0.17139742351093 4,:0.08278602315985681 be:0.060989014955103234 3,:0.022610615408167955 :0.6622169229659421 +that:0.5236173023718717 we:0.23577772611103287 there:0.11526033302553812 which:0.09333808472364835 they:0.03200655376790896 +time:0.3513762256738395 stage:0.19175147207750848 It:0.1451791958792149 it:0.12575030818142463 :0.18594279818801243 +were:0.23820715488460298 was:0.1983777749746473 are:0.19614409197191865 is:0.15468381669382844 :0.21258716147500276 +of:0.01851085866942613 and:0.009326884534109035 tion:0.005888267864304861 ing:0.004950072861175161 :0.9613239160709848 +of:0.324178188284586 to:0.28716833717161394 at:0.19567357493268386 in:0.12247633829593134 and:0.07050356131518495 +of:0.30953996002308615 a:0.26656543523996473 In:0.1202324034043947 and:0.055881281913235055 :0.24778091941931943 +that:0.6554350147963635 more:0.2899896680082737 the:0.019994046712754978 with:0.019615327963060286 :0.014965942519547568 +this:0.06788808620229458 to:0.04264484165114468 a:0.03777508393128821 November:0.02229731802790927 :0.8293946701873633 +gold:0.06041621555188233 the:0.05873932232083651 those:0.047514375749928825 truth:0.030997651544261057 :0.8023324348330912 +better:0.4491496122091838 well:0.22672382175062258 worse:0.08976985480691443 it:0.08295311724993844 :0.15140359398334052 +one:0.1407263936786407 some:0.029915574837355186 most:0.02706838978391109 that:0.017378084722222246 :0.7849115569778707 +tion:0.03491581708795534 of:0.016341220482824947 banks:0.012068914237442082 nor:0.009764276128043814 :0.9269097720637337 +south:0.2824461494226627 north:0.21851054496299296 N.:0.1532074660711056 west:0.09428024877784402 :0.2515555907653946 +in:0.4366332716768946 for:0.1489216382521905 of:0.09071136117233916 to:0.0894427825937331 :0.23429094630484268 +be:0.2818989568161808 and:0.18822602998645066 is:0.03845278465669383 are:0.03085877057828027 :0.46056345796239456 +New:0.9416868226679613 Now:0.04314000800392095 the:0.0007526352615977333 few:0.0006000274581008301 :0.01382050660841916 +to:0.0340699271082633 of:0.00983423638217109 bonds:0.008636915335518811 one:0.006961519383246171 :0.9404974017908007 +case:0.7701918995609591 came:0.0683719908198041 ease:0.061499550221378124 event:0.05447089618812385 :0.045465663209734684 +for:0.49683569984530235 of:0.3250249512732683 to:0.041160593037916214 and:0.03128940248060965 :0.10568935336290354 +under:0.2954124695481547 other:0.20396206351995072 south:0.09542197200446155 north:0.08948265711706012 :0.3157208378103728 +had:0.7509001589121529 has:0.1556426937390093 have:0.06147295358951943 haa:0.017122041500444607 :0.014862152258873596 +the:0.3551629471345333 a:0.01566227671240047 tho:0.015083640151832146 where:0.012765475649281816 :0.6013256603519522 +has:0.5546037657373315 into:0.21830447145858836 bad:0.07817355193248125 was:0.06383061590432437 :0.08508759496727464 +of:0.5197363676052051 the:0.10415116235697458 which:0.07011287088702368 is:0.0632672075097703 :0.24273239164102628 +the:0.30244488935435293 a:0.060250443858530844 and:0.021441903642545366 this:0.015934550253516377 :0.5999282128910546 +Wilson:0.033260811708445484 Brown,:0.01273523611030531 Johnson:0.0022890631335027454 Washington,:0.001570908597792463 :0.9501439804499539 +and:0.16612906783807452 of:0.08996563539814609 the:0.08575254599626866 The:0.054320377822331116 :0.6038323729451796 +the:0.3606716137363339 my:0.14929203898515978 tue:0.09783236844291894 me:0.055468641700413185 :0.3367353371351742 +an:0.06162637579942437 want:0.05577487593820699 public:0.046165193836639425 man:0.025455462000022966 :0.8109780924257062 +the:0.4956736467171531 their:0.08638207079789237 a:0.07199083767476587 tho:0.05902438334997833 :0.2869290614602103 +to:0.11498601855800493 then:0.06868968693262434 I:0.06398131828728151 the:0.056309826412655445 :0.6960331498094339 +death.:0.03078001019369801 time.:0.025251950876442088 each:0.015180338984152723 the:0.00877444829405141 :0.9200132516516559 +and:0.14629930370104308 sight:0.12929655679713292 having:0.06287575293102925 ment:0.018548209551935552 :0.6429801770188592 +town:0.0017373790528216072 him:0.001515192750370882 State:0.0012820906057837472 officer:0.0011419120268259318 :0.9943234255641978 +to:0.3423582914764663 will:0.2255451110118341 should:0.17400326474303804 can:0.129681420137981 :0.12841191263068055 +the:0.14642780676403233 a:0.03707746254544266 other:0.02239039010489221 to:0.01461279458303093 :0.779491546002602 +night.:0.1670931947605802 year.:0.16649425630500841 week.:0.12399852992054831 Sunday:0.08118710047300161 :0.46122691854086145 +the:0.20133246646519468 The:0.16741667715914993 Senator:0.06983198798637459 Captain:0.06416204657492593 :0.49725682181435493 +and:0.15325019349494848 in:0.1259622917684486 the:0.1153116798920939 of:0.09565901360709939 :0.5098168212374098 +York:0.6565920690747282 England,:0.12000080909466705 York,:0.05829080746425728 Jersey:0.0034183772618434803 :0.16169793710450395 +of:0.4580846037707598 all:0.1721298322022395 immediately:0.06818922889631795 that:0.03159774023802465 :0.2699985948926579 +bank:0.35263919077906075 Dr.:0.301264749222378 but:0.2363559901474804 had:0.03800095808884072 :0.07173911176224018 +J:0.07193870629973265 and:0.058760939960557236 the:0.05372113707027747 do:0.03137688259926672 :0.7842023340701658 +and:0.34905428215161133 is:0.13480340705378202 are:0.10803571582364468 the:0.07483584254712508 :0.33327075242383697 +those:0.04494372067377593 see:0.034377096060994525 others:0.030153792789036096 The:0.018866861735679207 :0.8716585287405142 +he:0.15599837558615773 it:0.14021620711494578 I:0.11203751187095336 they:0.1119697121866506 :0.47977819324129245 +her:0.10594904174992117 him:0.06070691020224061 at:0.032631480228345194 him,:0.02277960542718104 :0.7779329623923121 +had:0.4653387555156104 has:0.4260424739742268 bad:0.007364535425167788 have:0.0072423724723053445 :0.09401186261268972 +the:0.20724393537700805 a:0.08940446751894321 and:0.07501200704126709 to:0.06316861665309972 :0.5651709734096819 +and:0.021365411713977083 most:0.011939831800850368 old:0.00570390522625828 great:0.005465520020382554 :0.9555253312385317 +in:0.2420986797724841 within:0.15445687024564836 for:0.13871087042902253 and:0.13706492088263175 :0.3276686586702132 +of:0.3675555371069699 to:0.15599978066816045 and:0.1266647632271845 with:0.09990151494489623 :0.24987840405278886 +been:0.24409454791279836 made:0.05793927914301197 in:0.047596346192239965 given:0.04293878783946685 :0.6074310389124827 +Beginning:0.042122089964332976 and:0.030548714018284396 ing:0.02460651262621923 was:0.015918783138375518 :0.8868039002527879 +party.:0.1251063713606107 and:0.019822155353867728 to:0.014278644513661957 in:0.008775119948591864 :0.832017708823268 +be:0.9481310983600773 he:0.021834787940163018 have:0.021372403355969925 not:0.0028000134816572398 :0.005861696862132557 +legal:0.9869918866931079 1:0.005095053396031651 of:0.0021024114052161603 a:0.00010953391204511023 :0.005701114593599261 +a:0.7495157451735592 some:0.17122162652956532 for:0.03023925110132679 the:0.018897329573611926 :0.030126047621936658 +of:0.34302140804911 in:0.24553466120154857 and:0.1368996710494493 from:0.08564046999262505 :0.18890378970726707 +the:0.5920889443032222 a:0.1520803441276698 this:0.1361076043757464 an:0.015183121725486205 :0.1045399854678755 +the:0.27291268739685 and:0.17255849312540114 our:0.13256453349891664 train:0.05772961805667602 :0.3642346679221563 +when:0.4575538153159192 this:0.1180696197769324 then:0.06487010900437075 certain:0.056130850123066775 :0.303375605779711 +those:0.6200838142591052 a:0.05966212886465671 more:0.05872116257746622 the:0.04237219592251458 :0.2191606983762574 +the:0.258793488785957 and:0.09318481387063358 a:0.06883083407968417 of:0.029664081568885076 :0.5495267816948401 +the:0.5722786754163683 being:0.12883755080945333 a:0.04174010215509791 tho:0.02910460647058705 :0.22803906514849326 +with:0.2474976412790576 that:0.20627159005088355 and:0.171112815167093 a:0.15240014811954067 :0.2227178053834252 +more:0.3332638536131718 else:0.09495568000879394 less:0.09105473978966123 other:0.060915823183810204 :0.4198099034045629 +of:0.27693399132290364 end:0.22663863028930148 time:0.032136644811423566 during:0.016317077559339824 :0.44797365601703154 +the:0.19591714951695707 was:0.06594793881005954 a:0.053282815818133274 from:0.0519800412805718 :0.6328720545742784 +the:0.34052472284303126 my:0.07364048278657799 a:0.04456211976238623 tho:0.021011505578879448 :0.5202611690291251 +in:0.24919710841040646 by:0.21638546898720248 In:0.14580992777010895 of:0.13510410903518918 :0.2535033857970931 +express:0.016447741020635516 quick:0.005819343132958915 general:0.005416501243121851 not:0.005068673871438666 :0.9672477407318449 +on:0.6292322990685978 of:0.08760976375090927 to:0.07243244802627692 by:0.06817640074777602 :0.14254908840643993 +since:0.26385430328505766 of:0.2403031033739173 and:0.05187192353974249 than:0.04559470989570985 :0.39837595990557273 +the:0.07912164800521222 der:0.017932232754624747 appropriation:0.015065763545086716 have:0.01490652395432218 :0.8729738317407542 +to:0.15092924260826282 every:0.00492882682006426 a:0.0024592706076087796 any:0.001693034465465147 :0.8399896254985989 +you:0.2880141258873879 they:0.26052082909001867 we:0.18703997795078758 there:0.07770625831706027 :0.18671880875474556 +able:0.16715324277763324 unable:0.1455462220982309 compelled:0.12611307691873314 ready:0.09252553327626853 :0.4686619249291343 +,:0.05485359588676724 for:0.040403355665117824 to:0.020115612154384996 land:0.015769590303047386 :0.8688578459906826 +the:0.6533145584206685 their:0.10095888942319799 a:0.09191395389517873 his:0.0843151676561328 :0.06949743060482201 +could:0.2251226372197167 are:0.10418605838182077 were:0.07046496044174407 may:0.05389440582800517 :0.5463319381287133 +the:0.21979687125508368 and:0.11015693649871351 of:0.09820117272429925 inches:0.0633028790792562 :0.5085421404426472 +hit:0.1092137486865469 use:0.0674616330882713 left:0.06499393496199844 think:0.027950366609549 :0.7303803166536343 +to:0.14590325775000623 away:0.049154306066398916 back:0.037036952172328566 that:0.03036990080451043 :0.7375355832067557 +in:0.11987704532294007 C.:0.0788685936288468 H.:0.04637123929612735 A.:0.0458522117656708 :0.7090309099864149 +and:0.3045800086200255 things:0.038996105996120155 of:0.00877789490014892 brick:0.008197128936437202 :0.6394488615472681 +of:0.7469113008744594 the:0.02501968415460386 in:0.01950598885326634 and:0.013429632266650556 :0.19513339385101994 +Grand:0.2495487762230643 War:0.1358193055416079 City:0.10680126868481608 motion:0.013678712678905958 :0.49415193687160586 +lime:0.15363420773755557 fall:0.04500810631265635 state:0.03711244212348935 time:0.03650220713604559 :0.7277430366902532 +come:0.6356840493586676 served:0.04409847592965403 presented:0.043075310563998194 applied:0.04088020092103449 :0.23626196322664586 +and:0.16962169127995996 of:0.10365518163933755 to:0.08565438925127103 the:0.08361551140308042 :0.557453226426351 +in:0.7695071236533804 In:0.08224835747589647 the:0.02915369878123537 and:0.02727892858362011 :0.09181189150586755 +first:0.012663860090367903 of:0.011262307312445142 hot:0.009600306988520206 rain:0.009201413001524581 :0.9572721126071422 +owner:0.03836068248229283 free:0.02006597779568829 notice:0.01621284740802977 city:0.015646350195474314 :0.9097141421185149 +the:0.31887734753818936 said:0.06679487935756216 money:0.042225796837540845 such:0.033264859829122015 :0.5388371164375856 +in:0.16173894605615777 at:0.09915504699106074 on:0.06337851043706388 to:0.051635750025455666 :0.624091746490262 +a:0.008361211140269446 equally:0.005336534269585041 without:0.004571470123653851 to:0.004431539953885278 :0.9772992445126063 +and:0.1655606538528337 of:0.05468590272004433 the:0.044308512367424495 to:0.03565120502605912 :0.6997937260336384 +o'clock:0.5224417721771109 and:0.04606628313256639 of:0.0446868863451098 twelve:0.023917634030802073 :0.362887424314411 +as:0.20223418450866726 up:0.15922964621432592 and:0.14533967749941082 are:0.03737942159456935 :0.4558170701830266 +relief:0.05306681339568121 and:0.03983713386432613 cure:0.024792084084387236 I:0.019691385202726813 :0.8626125834528785 +extent:0.08031649846052467 end:0.048718265007428055 time:0.03833921218033035 bearing:0.027504791103595414 :0.8051212332481217 +countries:0.058805616233427886 States,:0.015786247067409487 of:0.014365630676932374 years,:0.009038372311337434 :0.9020041337108927 +and:0.02133996386688628 ;:0.010141524306677342 tion:0.007567495888379209 world,:0.006848928879601618 :0.9541020870584557 +I:0.2660601698857257 and:0.11964481308968836 we:0.09763975726585046 records:0.08570693346975951 :0.43094832628897606 +agreed:0.11459950408688105 hands:0.1129413301549531 win:0.05503644581186142 ed:0.05047316491774898 :0.6669495550285556 +on:0.3088178833909342 into:0.17693828967507963 about:0.1258325581690525 of:0.11893781933156065 :0.2694734494333732 +to:0.02940184067218003 in:0.028552701117323647 store:0.027126169294891155 City,:0.022622186574566362 :0.8922971023410389 +and:0.2049382127300496 it,:0.14087051384618837 this:0.06002087282300902 returns:0.054964952740669364 :0.5392054478600835 +the:0.6917330065181547 many:0.059346430458425095 recent:0.05845104672132334 ten:0.05415154724052558 :0.13631796906157123 +sale:0.5383335387590316 loss:0.11585260117177351 proposed:0.0156214574589422 run:0.00940243934529151 :0.3207899632649612 +of:0.6577108326582402 in:0.13591391572483894 at:0.08774236736655866 by:0.06863361760449407 In:0.0499992666458682 +Chicago:0.05944656603487133 William:0.016606275529302907 country.:0.007545404607451673 city.:0.006813594399603223 :0.9095881594287708 +his:0.6394138596664996 their:0.2584688072768318 development:0.05960170213672513 the:0.03459518115621526 :0.007920449763728273 +and:0.11834986533591425 of:0.07989907744335806 the:0.06625691267650502 to:0.04726341819018323 :0.6882307263540393 +to:0.22460253904769747 the:0.12662710710046074 and:0.10021377851700514 by:0.07203685814196617 :0.4765197171928705 +of:0.370714074668389 to:0.13528131649157843 in:0.12709954063509568 and:0.10285177393212448 :0.26405329427281243 +the:0.48890622122283367 a:0.0966434761069782 his:0.07432874561464699 tho:0.020513273116706265 :0.3196082839388349 +of:0.7295486080646801 are:0.07004331434328726 in:0.049271939713465975 and:0.044941485497923775 :0.10619465238064295 +at:0.8569280610900253 the:0.09015181291674758 a:0.016888699923585916 st:0.005820900530510867 :0.03021052553913034 +coun-:0.011121204122893354 a:0.0057962210622551314 the:0.004781701970032974 advice:0.002549868966826381 :0.9757510038779921 +the:0.012320290135978369 same:0.0118042386793943 daily:0.010371272832377269 most:0.008198704740643135 :0.9573054936116069 +the:0.4041969072152243 Board:0.2972480881994957 one:0.018275830035258855 powers:0.016778029110012197 :0.263501145440009 +of:0.3022128232653184 to:0.11305770515378909 in:0.11070223018931534 and:0.10850015904760038 :0.3655270823439767 +business.:0.11865231959314193 the:0.07613077730329197 it.:0.004897040491783195 them.:0.004174743287360936 :0.796145119324422 +and:0.15541582857563824 which:0.12087869775125851 town:0.10527064184357918 ,:0.07748187053430747 :0.5409529612952166 +other:0.6377242099135568 and:0.049514022447755324 the:0.04513735629546976 in:0.024713603158042143 :0.24291080818517594 +way,:0.9676239570255932 contract:0.005221917889979674 houses:0.004049628597001363 It:0.001807639147064288 :0.021296857340361356 +the:0.5721895652328863 tho:0.07739242989401834 Mr.:0.07496574753767825 he:0.05691692299730607 :0.21853533433811106 +with:0.41238280757456197 the:0.26729259781284886 what:0.16713694553689373 that:0.04855587895025654 :0.10463177012543885 +had:0.11215427389592879 anything:0.015067437610468621 er:0.012764482353103245 ball:0.011907614777307446 :0.848106191363192 +signed:0.5452161203739538 entitled:0.029044659261179884 given:0.021551169997374102 subject:0.01566580694901378 :0.3885222434184786 +to:0.002316629520821751 interest:0.0019168391933862092 sup-:0.0015671382508055495 shall:0.0013956974173788828 :0.9928036956176076 +of:0.999206993513934 fund:0.0003941633299138999 for:0.0002466312619495905 to:3.2765522842004604e-05 :0.00011944637136047066 +place:0.05825900353304689 city:0.027312301388622978 amount:0.02721592994575436 sum:0.025161176543099215 :0.8620515885894765 +and:0.4850190961030146 to:0.4013090465090859 expenses:0.04603671578802447 will:0.010489756122643155 :0.05714538547723184 +that:0.26991990944331323 of:0.2065260165231882 to:0.12229382555001732 for:0.11583139921433995 :0.28542884926914125 +and:0.4437626046677299 of:0.16930878614199 that:0.11354336698366414 to:0.10670777601179103 :0.16667746619482487 +consideration:0.14363270617880064 contract:0.11145615894143657 the:0.05873589396671999 foot:0.022791302689460037 :0.6633839382235827 +the:0.3989048112993382 a:0.052307433455497515 other:0.03138690744041371 tho:0.016183225798728954 :0.5012176220060216 +a:0.9986448834708803 the:0.0008654964835284062 any:7.507473985658728e-05 no:7.471647796877499e-05 :0.0003398288277658817 +weight:0.010869064550998274 river:0.009379334289700352 river,:0.007718453607211717 fire:0.006004939847802919 :0.9660282077042867 +the:0.5722183998872806 a:0.16150741362356294 her:0.1436234268626995 you:0.08183452962515803 that:0.04081623000129887 +ing.:0.19926753434035807 to:0.11022787075908781 for:0.058645239606277655 while:0.054411434350846444 :0.57744792094343 +a:0.20358741091608645 giving:0.1058016418587889 the:0.09015392861831195 in:0.08895903488243755 :0.5114979837243752 +home:0.07128184572581577 it:0.021532191302464924 home,:0.01786107363776906 work:0.016787726484093587 :0.8725371628498566 +aa:0.03629819296313256 a:0.029138257752139067 he:0.013968085967209255 hard:0.0007165516306935424 :0.9198789116868256 +of:0.3960143650413286 too:0.30018241110990607 will:0.10619992638131336 or:0.0754173249570969 :0.12218597251035523 +well:0.9479422445271446 not:0.022606618460517446 even:0.009044695329373525 to:0.005907746165968876 :0.01449869551699543 +large:0.10002721642734579 little:0.0545203445787827 way:0.028404900922385606 growing:0.02797966250284243 :0.7890678755686434 +enemy:0.2034859731034488 reason:0.0818397689651213 ships:0.05657991439527077 but:0.051307310501105166 :0.6067870330350538 +of:0.785156736099488 ot:0.10541697391817541 o:0.0884663107121647 in:0.00448199188600691 :0.016477987384164807 +mother:0.03556417834157103 other:0.020814197030482148 majority:0.016887600489123713 soul:0.013713108343679004 :0.9130209157951442 +and:0.06479756062428853 is:0.02456256542775969 as:0.022713898417083798 was:0.018774045520036375 :0.8691519300108316 +and:0.5195530752860495 minutes:0.35093347075514064 going:0.03913137266267757 or:0.03245089154043683 :0.057931189755695514 +dred:0.15562479397691514 acres,:0.04323124470760823 long,:0.031241217108391308 was:0.025882640776826827 :0.7440201034302586 +the:0.17419742605536703 and:0.14989265915195452 The:0.0686890801922621 a:0.049380711450397435 :0.5578401231500189 +the:0.7386448076683797 a:0.03326440924310937 tho:0.006998185041542186 or:0.005824757296171688 :0.21526784075079713 +there:0.7163018228054293 he:0.09582042758420466 this:0.06851274737308598 it:0.0603298440281529 :0.05903515820912712 +re-:0.14767186183416234 to:0.11859321336268912 the:0.10782672253844255 for:0.06749386247010886 :0.5584143397945971 +G.:0.35315068645635783 B.:0.11169529628180858 D.:0.05567218886764621 W.:0.05136607195031316 :0.42811575644387434 +north:0.46376114560021636 south:0.2796510291018775 west:0.12277185411651827 east:0.07563765114660603 :0.05817832003478185 +of:0.11109838639228022 to:0.04148484909082498 in:0.031408338228864484 and:0.024237270747403648 :0.7917711555406265 +of:0.14728135973936005 and:0.1448124049725987 the:0.11097587204272161 most:0.10171648099482478 :0.4952138822504948 +to:0.365096815269885 of:0.1964555124641653 for:0.16634510906753505 and:0.15934964887481434 :0.11275291432360024 +here:0.08038928249757683 board:0.047742514535045126 entirely:0.04143006448573586 through:0.02256246712899659 :0.8078756713526456 +The:0.5291737427601884 the:0.029901710457524967 But:0.024096329457526933 only:0.019250660013298712 :0.39757755731146105 +have:0.9967728849849037 not:0.0005264819699346346 bave:0.00019266367029868042 a:9.39622868645315e-05 :0.0024140070879983327 +street,:0.6320671358728186 running:0.0526676046474491 street:0.03685113411011156 Street:0.03253802191906564 :0.24587610345055505 +a:0.32043323112008526 the:0.21341720071953313 her:0.17737926597584056 and:0.05278420654020898 :0.23598609564433196 +in:0.31212926019506676 the:0.165075712758543 The:0.12791192157872183 such:0.12555967879070074 :0.2693234266769677 +say:0.1939012421404396 consider:0.1852262415388399 know:0.13939910155492957 see:0.10089486003931059 :0.3805785547264803 +political:0.13280249269386585 simple:0.1082083037812942 the:0.03436480852286072 or:0.015900331962253433 :0.7087240630397258 +the:0.3476619684479633 to:0.19668227462646795 mortgage:0.057991464243607224 deed:0.04096247092828094 :0.35670182175368065 +;:0.1658818268714203 nothing:0.0278508731798435 Virginia,:0.018918884712467852 him,:0.010927183041052677 :0.7764212321952156 +of:0.2398345001634488 and:0.07768669291321743 to:0.07469737901180491 in:0.045911991976162525 :0.5618694359353663 +of:0.7066212633039859 in:0.23246259376641473 to:0.02780405065014725 throughout:0.013939151767233288 :0.019172940512218906 +which:0.16713563831685832 they:0.09108013425307744 They:0.07636634857634193 and:0.06352795652792596 :0.6018899223257962 +or:0.864354451663846 and:0.07085298165072798 of:0.035247164719028605 to:0.015383224944676772 :0.014162177021720727 +the:0.42210066616595004 a:0.07918134563482186 be:0.07286527973447547 his:0.0330435643641254 :0.3928091441006272 +it:0.14718990779358934 day:0.08295687417579121 the:0.04559611640935046 they:0.04113344340896569 :0.6831236582123033 +yet:0.735709223481714 already:0.030293214046050822 only:0.011001635599756098 since:0.0029332590984831957 :0.22006266777399588 +that:0.07725734719212289 and:0.062269108233453566 but:0.022447277925497503 of:0.017450335279059488 :0.8205759313698667 +to:0.24862080495636305 with:0.230130722250755 by:0.16148299178292863 at:0.1133582290411767 :0.24640725196877666 +to:0.29548674860160684 his:0.13326466142939208 and:0.09887512841648595 he:0.07063726615473359 :0.40173619539778144 +Her:0.3044937436522837 their:0.22252149789874798 the:0.12754988521661442 The:0.11897969288961455 :0.22645518034273923 +clearly:0.141006318908023 therein:0.10301778299462902 at:0.04676232387393598 it:0.016634734404293576 :0.6925788398191184 +of:0.5273815217721863 was:0.09569590650698981 in:0.08223238612744893 on:0.04948201144920337 :0.24520817414417148 +nnd:0.5853723546962732 think:0.08164410646019245 find:0.05743594484472785 make:0.007899031832277149 :0.26764856216652927 +":0.24516503033956985 Well,:0.11899871466942237 since:0.0675163139128321 but:0.0328427265241138 :0.5354772145540619 +they:0.5155484350258749 of:0.2489122447326833 it:0.06718825150911586 I:0.04062232086881534 :0.12772874786351063 +time:0.10677611238911032 of:0.07943755443799713 interested:0.05095091775491903 experience:0.047079774497337266 :0.7157556409206361 +petition:0.08171711376188417 country,:0.04076308841074814 work,:0.03699309028924226 men,:0.031086263779271102 :0.8094404437588545 +and:0.9261089006770014 seed:0.04938629831944302 or:0.016616435287315635 green:0.0013785943916795182 :0.006509771324560321 +American:0.06058023097849888 present:0.03994940276618455 General:0.025817505593672695 two:0.02548109845443247 :0.8481717622072115 +and:0.8844651266427298 the:0.02070258934790368 in:0.011993156041722438 of:0.011135128971469831 :0.07170399899617415 +and:0.07731312527544192 those:0.07109743766144785 people:0.04993638860559197 all:0.03955561305488944 :0.7620974354026286 +of:0.17367653763933116 and:0.10623018541790576 in:0.08801991508791991 with:0.0836218024663091 :0.5484515593885342 +the:0.4218764134823528 The:0.15185517367344037 and:0.1389317797373831 tho:0.024323808845125507 :0.26301282426169814 +no:0.7173944317668061 only:0.1772454963339545 any:0.040055269661126165 if:0.03658457779960371 when:0.02872022443850966 +He:0.4099062005780546 It:0.18048831303110732 and:0.16055519746106742 as:0.0550732023203166 :0.19397708660945415 +upon:0.40341719010426635 on:0.20126481102458516 toward:0.18469779271055942 to:0.14467820756067526 :0.06594199859991369 +the:0.4241660092524517 his:0.1705160331863883 her:0.10066152775243983 Dr.:0.08210066791259571 :0.22255576189612436 +with:0.464868192971169 year:0.3305604154240369 and:0.14469071336194536 trade:0.016033855828681165 :0.04384682241416738 +and:0.06057217385440038 was:0.015077428840092832 is:0.01032853620948638 that:0.010053039345206094 :0.9039688217508144 +were:0.16933348501366868 are:0.1434476918315315 have:0.12250289488254902 will:0.11196253271878479 :0.452753395553466 +year,:0.13121141689910948 year:0.09831209271182813 month:0.04174355278168265 day:0.02549358755231057 :0.7032393500550692 +Is:0.43842740801068497 that:0.11254988442447374 If:0.058628012094631254 That:0.027142620146656624 :0.3632520753235536 +this:0.725295940455005 the:0.2474181680548797 tbe:0.013195816154768069 every:0.005753617014384089 :0.008336458320963152 +of:0.5884644820070314 can:0.25504138590597053 to:0.05612934106638542 and:0.022858698623073614 :0.07750609239753913 +and:0.12474592299084755 to:0.07898080170054249 is:0.02149081294046505 ing:0.01846499310999549 :0.7563174692581495 +and:0.09389516748031901 of:0.07681941508574784 the:0.05970788105788491 to:0.022558664920221988 :0.7470188714558262 +sufficient:0.2080838459725326 give:0.15126967611720185 under:0.10153423546915603 furnish:0.09299748235250532 :0.4461147600886042 +to:0.014684567963138922 party:0.01327581683717933 much:0.013171964001752278 word:0.011793212202354733 :0.9470744389955746 +in:0.4781051540632035 to:0.18094606667318136 of:0.11964579930074479 against:0.0943117011871967 :0.1269912787756739 +to:0.20815416458838307 with:0.08903790209851256 by:0.08561107129652056 at:0.05457532838597332 :0.5626215336306104 +and:0.25559159550369936 with:0.0802416881237677 the:0.04755690961528381 of:0.04644673407905278 :0.5701630726781963 +wholly:0.4256841013425891 the:0.3641553482291484 Messrs.:0.03144341537388855 an:0.02827761890311471 :0.1504395161512593 +the:0.11165445423001331 trade:0.09688989395029907 a:0.013878847936434707 this:0.007124685812226513 :0.7704521180710263 +of:0.37618676679408386 in:0.13516823879428105 to:0.1298352038714651 and:0.08580556340477284 :0.27300422713539707 +suffering:0.29463264554933954 motion:0.09422909129632215 heart:0.047728788319403595 condition:0.045861814638818006 :0.5175476601961166 +and:0.09839302742163468 the:0.06279545597081346 was:0.0456355982990329 were:0.04536829735666742 :0.7478076209518517 +We:0.025708928841381803 ;:0.012651590240920411 the:0.011436015709424516 ,:0.006572987168767263 :0.943630478039506 +men:0.2640059307195043 children:0.15356848088249092 people:0.124760298572993 all:0.11366463192228242 :0.3440006579027294 +W.:0.00615124586977246 J.:0.004756211460761337 who:0.0046926569897582865 Smith:0.004579259936112406 :0.9798206257435957 +told:0.24770956752318604 opposed:0.0964653110566865 occupied:0.05566516641190913 elected:0.04970908928564523 :0.550450865722573 +and:0.2107541747969806 but:0.13145398405017397 as:0.091627682843622 that:0.06444220662471437 :0.501721951684509 +Clerk:0.6183516091986683 Justice:0.04394314122115633 Judge:0.004947483004701104 of:0.001769824306710817 :0.33098794226876327 +he:0.737923416424755 they:0.09319619966578334 I:0.0803848469917333 she:0.047657592312229866 ho:0.04083794460549843 +the:0.8546684539649688 tho:0.06341517233940061 The:0.04197050339466561 his:0.012435150018971792 :0.02751072028199327 +will:0.45936287767113376 until:0.396804211802423 but:0.09182422529986144 up,:0.033128162982837765 :0.018880522243744036 +exactly:0.032326944853928646 entirely:0.03172779033851967 covered:0.022287387330457452 daily:0.021439808556722912 :0.8922180689203714 +as:0.13768376240606528 and:0.12929276590451907 known:0.04349243729665079 the:0.039571610166797826 :0.649959424225967 +proof:0.1699102244877103 evidence:0.16066563253726157 danger:0.09653080694323982 doubt:0.09327846725132877 :0.4796148687804596 +be:0.4589039168616111 was:0.3449661308669101 waa:0.1364649474404595 is:0.024745388490023064 :0.03491961634099621 +one:0.041495268971815144 has:0.040774047265016385 and:0.02902192267073054 man:0.025172672631853667 :0.8635360884605843 +of:0.9749360649988738 aud:0.012016545555002544 to:0.006251723462497734 until:0.004371865988712552 ot:0.002423799994913376 +the:0.8574415143762601 these:0.08012346985664347 tho:0.03017175521164403 tbe:0.0093057140003577 :0.0229575465550944 +county,:0.27956343807540374 county:0.035985864558405495 work,:0.03361843562087755 and:0.026883161059390637 :0.6239491006859226 +the:0.30569332505710545 I:0.28139475888342314 his:0.07423649235512744 1:0.06581076682433068 :0.27286465688001316 +Texas:0.05125789488250708 own:0.04188561369607344 learned:0.03345450193266552 official:0.01729846172164893 :0.8561035277671051 +those:0.0039837067995801235 persons:0.0006506853122057807 time.:0.0003660291572754599 of:0.00027600605457031986 :0.9947235726763685 +British:0.2464678403426609 very:0.11128835120749081 battle:0.10828429335724028 northern:0.10688781386329335 :0.4270717012293147 +ice:0.0032480177209482093 office:0.001385346584734036 the:0.0013185147380591917 all:0.0011349424435566828 :0.9929131785127018 +on.:0.13216401966944763 home.:0.10638824267905873 home:0.06872850001024376 down.:0.052231699979855356 :0.6404875376613943 +bottle:0.5151353850852896 announced:0.056656976931707924 in:0.03585153960928616 taken:0.0033716825578383337 :0.3889844158158782 +other:0.48172491497787 the:0.010475329738808232 to:0.007576518540365961 la:0.005901310172204237 :0.49432192657075136 +H.:0.4104548789653489 J.:0.14179061229316622 M.:0.1414191123687876 C.:0.13382782833158893 :0.17250756804110837 +a:0.6619144103359734 the:0.2093072217132511 any:0.046851068263176025 o:0.031277264020329404 :0.05065003566727018 +and:0.13749116249008705 the:0.049638939145636406 of:0.042088958635268264 to:0.024526720807734128 :0.7462542189212743 +block:0.07669233895487192 building:0.07381684861729733 bonds:0.06057285410564317 limits:0.059987737122547104 :0.7289302211996402 +and:0.15068545011583384 The:0.14975152491316393 the:0.1403168968854842 in:0.11120036284339042 :0.44804576524212775 +Into:0.5469915550393144 for:0.09465399621678919 a:0.06961165960104582 to:0.06371018649097512 :0.2250326026518755 +and:0.211982017079834 He:0.12458384749826802 which:0.11735872513674778 to:0.0918926062556594 :0.4541828040294909 +the:0.13444779783252464 a:0.07696349722451007 his:0.052452038405313116 Fort:0.03829846275509166 :0.6978382037825606 +a:0.378599707244443 its:0.24725081639956495 one:0.17675135168699885 the:0.11720423899310281 this:0.08019388567589046 +any:0.3873117780776931 no:0.2758434868933297 some:0.13378956058994956 the:0.12007857303612086 :0.08297660140290675 +highest:0.03504820528020096 the:0.033122819317637324 great:0.021364741771108874 general:0.018932604447153178 :0.8915316291838997 +the:0.4306940131648144 a:0.1814404759933548 of:0.10163492100060917 and:0.04076653555546521 :0.24546405428575646 +While:0.27447728327654014 in:0.22298827552242526 and:0.11788151356421851 to:0.07507730753019218 :0.30957562010662404 +a:0.3591169746333153 the:0.2440933211460483 his:0.10612451394853795 her:0.04902465528491875 :0.24164053498717966 +Court,:0.9036692640223645 day,:0.023857823421639206 that:0.011967324541144471 company,:0.011782153425261054 :0.04872343458959097 +part:0.5701117322079307 place,:0.044348505014238766 of:0.041269243118970435 time:0.0274190730759965 :0.31685144658286374 +animal:0.10513417045930663 boat:0.08491463594477561 storm:0.033849824667862294 engine:0.02883318313038446 :0.7472681857976708 +sum:0.11550238801065571 number:0.08209858374654389 Department:0.04095844929183993 County:0.03232447133450684 :0.7291161076164538 +al-:0.07331815999076298 even:0.054321812344694284 that:0.03476307356173585 as:0.026866799910663455 :0.8107301541921434 +Union:0.050123704718012495 was:0.041677761817318054 ment:0.04104002665643831 is:0.03990804004322041 :0.8272504667650108 +of:0.11544447540473783 and:0.10508367344383515 were:0.06754989861082804 on:0.0629889208414651 :0.6489330316991339 +the:0.5433062862819382 a:0.11209456071984528 silver:0.03650944926556028 these:0.02235354938383331 :0.2857361543488229 +life:0.14320306879889347 rights:0.07463054426198971 life,:0.0491819087718237 nature:0.04431519771405568 :0.6886692804532376 +no:0.5796378646221726 a:0.17379329708695232 much:0.05073021354669741 still:0.0434509686667288 :0.1523876560774489 +the:0.16710193143226748 tho:0.032983652390033515 a:0.030654272994116723 be:0.029897700338165377 :0.739362442845417 +In:0.44036055255416157 of:0.12921218300591422 in:0.12244795772113437 from:0.03183404877999498 :0.2761452579387948 +the:0.39501991017627774 a:0.09370992301314346 you:0.05972105666906626 he:0.05344460952242586 :0.3981045006190868 +were:0.27648725261698726 aro:0.268049303541586 will:0.18917934772916772 must:0.16406974062826868 did:0.10221435548399037 +the:0.3213194457010758 a:0.04487814410391661 tho:0.020689660480952988 his:0.019680085917020584 :0.5934326637970341 +boy:0.5319898592812103 story:0.012980447093159006 man:0.008411698533456406 contract:0.006293162852932168 :0.44032483223924207 +bis:0.2703794904890601 their:0.26976141230274686 his:0.22373791283387157 of:0.04730317127022414 :0.18881801310409743 +easily:0.4205189570809401 de-:0.07975383536760544 numbered:0.04002730204427597 readily:0.0398952009601463 :0.41980470454703217 +hole:0.07520944445264269 water:0.06465823331510295 glass:0.04579416656825374 mountain:0.040212691746343336 :0.7741254639176572 +of:0.8437829476984436 in:0.039727081679575414 which:0.026523413845464052 on:0.020617537902436457 :0.06934901887408045 +H.:0.21285458501991797 A.:0.1433970814353151 L.:0.10588326163893112 J.:0.09495465019838763 :0.4429104217074482 +her:0.9180409917959619 his:0.0469321183260503 their:0.03426506072500787 the:0.0003205727251066905 :0.00044125642787355663 +of:0.18826822935694404 in:0.11907901101983395 street:0.07372479013231509 to:0.07081117131186704 :0.5481167981790399 +that:0.8817070969474191 as:0.09932376820532272 and:0.009185760843726675 when:0.003385050884879715 :0.006398323118651784 +is:0.5939736264444722 was:0.3504944362915102 are:0.036745122856902894 Is:0.013792622772983142 la:0.004994191634131426 +the:0.7267520556054922 their:0.0558807599256462 tho:0.03557513103520947 this:0.03403286532935285 :0.14775918810429928 +said:0.11203892145898817 other:0.06727152036710515 two:0.05409981155411575 three:0.043149891458007836 :0.7234398551617829 +to:0.24025573527911182 and:0.10162545164746159 I:0.096594509918394 that:0.08220957253620578 :0.4793147306188268 +is:0.33529275134480824 Is:0.07957087214034367 was:0.07567525969692353 seems:0.03268828172499384 :0.47677283509293084 +southwest:0.5785190725463983 provided:0.10909298501284234 given:0.08353243754477221 held:0.053859101706774506 :0.17499640318921264 +and:0.20708911256269433 that:0.14925621082065368 can:0.11232236484364919 When:0.0711412369474424 :0.46019107482556043 +Smith,:0.010627142407424458 .:0.007486840088488531 H:0.0005366797900389385 Brown,:0.0005209518003410304 :0.9808283859137069 +united:0.25226060343225604 and:0.10865514023475505 was:0.0682120362862545 were:0.03955776135775814 :0.5313144586889763 +the:0.36980549442569566 a:0.16639714501915592 their:0.07864611463940961 fine:0.058844087257660854 :0.3263071586580779 +of:0.45258559752086225 under:0.2404393789352862 in:0.1879982959764435 at:0.07297377134249161 or:0.04600295622491647 +to:0.4405086969249307 that:0.20752241154545029 when:0.11115505514820066 and:0.04770739603892606 :0.19310644034249214 +and:0.19429750569076626 to:0.17994615845356796 of:0.11423851290452303 have:0.05715111707373218 :0.4543667058774105 +a:0.43123070453312456 the:0.2697694581045167 A:0.12384062208581163 The:0.061864784261239855 :0.1132944310153073 +he:0.5272315938388528 and:0.03302523646570434 toe:0.018763123075677977 on:0.018704502522741497 :0.4022755440970236 +W.:0.17516435447626416 L.:0.08877870324068934 F.:0.08625808763026446 A.:0.08614310602995907 :0.5636557486228229 +of:0.10008085261822433 ar-:0.09995364190677279 and:0.06178831378331995 the:0.019770485971843943 :0.718406705719839 +persons:0.31707148271781277 man:0.16674380853689053 men:0.08354186355432681 people:0.056184726985678675 :0.37645811820529124 +the:0.5556232760512458 a:0.14105976482153287 Lake:0.13379586234956664 tho:0.02708729783563241 :0.14243379894202218 +of:0.35658799710054806 was:0.25669795233952286 the:0.18156534407928038 a:0.07655522254798101 :0.1285934839326678 +and:0.18933057983512427 Mr.:0.17498918119622048 The:0.14142879092535973 Tho:0.05064275573302569 :0.4436086923102699 +serious:0.9999999851135782 of:6.455234972224029e-09 the:5.255633159522916e-09 greatest:1.3557966540045073e-09 :1.819756840781872e-09 +and:0.2993446853653883 so:0.08997747494576847 ed:0.0691487472714075 to:0.05198340838833312 :0.48954568402910265 +head,:0.026992697829043403 that:0.012571554072377764 lines:0.011786599934117023 city.:0.009874434071944958 :0.938774714092517 +and:0.11609533954704167 of:0.07284198476953085 the:0.06765361811680937 to:0.03425285177040263 :0.7091562057962156 +.:0.08581842595018711 to:0.05338355320072225 and:0.04592319592089663 ,:0.03226350936572756 :0.7826113155624664 +back:0.3064363885234777 down:0.22334435006842318 up:0.17324561256735976 directly:0.08346660995593613 :0.21350703888480319 +house:0.08610329724784233 State:0.046748756802787755 Legislature:0.02443447460269137 Church:0.020802843704331605 :0.8219106276423469 +and:0.31539693234309163 is:0.13134995155350543 of:0.10437034375333222 as:0.08647368429244277 :0.3624090880576279 +after:0.6315443916883593 in:0.13039019066170912 of:0.06588247482302095 over:0.06174638204110335 :0.11043656078580724 +this:0.8363405707592471 any:0.14611242970344812 the:0.011177751461522315 a:0.004252773989514103 said:0.0021164740862684435 +place.:0.08531126806129623 government.:0.04887426330756212 But:0.03112275071048333 ?:0.027253778245384695 :0.8074379396752737 +money:0.3378935645829896 work:0.04029182372931864 or:0.03622737249208105 cotton:0.030977189480286445 :0.5546100497153242 +of:0.4186094742481696 in:0.11218205639985196 and:0.08916233835720265 that:0.08892817117796356 :0.29111795981681227 +first:0.07176230738725443 secret:0.044586910754842446 civil:0.03926958394632376 one:0.034835288251002135 :0.8095459096605772 +party:0.04123225501583698 fellow:0.026090652726417217 own:0.023748782645009965 work.:0.008234085311327115 :0.9006942243014086 +tl:0.362727901597256 they:0.24916081296286519 he:0.19397893331527521 we:0.08339487496185734 :0.1107374771627463 +he:0.4648383192998833 that:0.3091739814856105 who:0.11459589552274861 whom:0.05390378551065908 :0.05748801818109849 +that:0.14452632919096225 of:0.059814765172300235 and:0.03848588550413353 to:0.025634431862681994 :0.7315385882699219 +No.:0.31636545363869584 at:0.07210779681647567 section:0.051855713612028065 4.:0.043570616794707036 :0.5161004191380935 +of:0.8625306717290522 ot:0.04973652612986877 are:0.03949904703937557 were:0.012797082951948535 :0.03543667214975486 +the:0.33765964224500467 a:0.06415265440030594 this:0.04144229604947505 British:0.04003214419221545 :0.5167132631129989 +a:0.33409169594254207 the:0.32480598843212066 tho:0.08969791024286854 written:0.018766821800056722 :0.23263758358241207 +said:0.1301932726834316 the:0.05637754042738709 buildings:0.03386557914810282 a:0.03358640317917726 :0.7459772045619011 +you:0.37117530330214143 the:0.2935002023867881 a:0.09638678746375563 I:0.08066326280674449 :0.15827444404057023 +of:0.44560311973455086 and:0.10502252553511186 in:0.09253190797881884 to:0.04555059502316499 :0.3112918517283535 +the:0.258873950708711 this:0.06460260542638868 a:0.049121521691917004 your:0.030715867070750302 :0.5966860551022332 +he:0.1614235885904877 be:0.1274983821340211 and:0.11524208189220558 It:0.1131155377559484 :0.48272040962733725 +and:0.34211890146235535 are:0.2084180040845837 is:0.18241304120121463 continued:0.14348010463833183 was:0.12356994861351439 +K:0.07730636486688347 vice:0.029185430747996885 mission:0.014072044848965017 the:0.007605210046191246 :0.8718309494899635 +in:0.2434336518892564 and:0.014608551189295936 well:0.013739420512812179 alone:0.013379262601926267 :0.7148391138067092 +laid:0.23243869192378597 trade:0.04319022498437457 object:0.026240997947634005 be,:0.013606448813804408 :0.684523636330401 +W.:0.07139500775810362 J.:0.04931523052883867 John:0.04537800372715614 .:0.038254494788158615 :0.7956572631977429 +ground:0.16119267466287315 city:0.07375047774910817 name:0.02243222416710014 average:0.019303191417058826 :0.7233214320038599 +them:0.06923189162101905 ing:0.04812703279967414 and:0.038137909284875905 bonds:0.017721461976273313 :0.8267817043181577 +in:0.33984927537120657 the:0.19183141370310505 of:0.06487524799739147 to:0.06093543940196691 :0.34250862352633 +of:0.1367786299003517 and:0.08691253083693498 to:0.08667030994304682 in:0.0480104251193712 :0.6416281042002955 +love:0.7458250650508653 it:0.1760256203858443 aro:0.0049448548871467565 doubt:0.004412804049554281 :0.06879165562658938 +the:0.3408983105215203 by:0.14612494615042396 were:0.08598509995012071 all:0.07638086096968112 :0.3506107824082539 +any:0.5434410930539884 when:0.15544121185701013 the:0.15174838173282132 no:0.09049943655842706 for:0.058869876797753115 +according:0.079682170524335 only:0.03256221553561675 up:0.024787571067269764 owing:0.018355148477901106 :0.8446128943948775 +the:0.2834623450182165 The:0.13111569086189284 a:0.060213675005837845 that:0.05174152352553674 :0.47346676558851625 +that:0.22086422387882637 and:0.1832902657312445 where:0.13966858794315265 when:0.10821747286892312 :0.34795944957785346 +to:0.9316952824533107 the:0.014023736888247195 of:0.011620657181557765 at:0.01143020418414514 :0.031230119292739153 +relief:0.3670479292421162 being:0.172018109440458 been:0.015430631931119243 them:0.014875157807976417 :0.4306281715783303 +must:0.45535992456500507 we:0.21822120869792866 I:0.1681182401573228 there:0.07981158601825057 but:0.0784890405614929 +are:0.7047306002364818 is:0.10311813030411247 have:0.06994584144573632 has:0.06339883177963229 aro:0.05880659623403717 +the:0.19484819696005454 of:0.19415543577364536 and:0.14437806282886853 is:0.09565241820792245 :0.3709658862295091 +most:0.03053434084562785 same:0.027927989237530346 of:0.017918357315643004 United:0.016838286506881267 :0.9067810260943173 +course,:0.8787782415624865 a:0.038269578031608964 any:0.017723490958667137 very:0.015125714727711523 :0.0501029747195258 +and:0.09745431445390058 the:0.09113938359072471 to:0.0681018227113265 of:0.06015864637443673 :0.6831458328696115 +was:0.300728823629075 had:0.22910290558455576 is:0.14734935616206873 has:0.06420947942636251 :0.25860943519793794 +month:0.025453388110368645 his:0.009509589303761069 world.:0.00947831040017834 the:0.009166990386833064 :0.9463917217988589 +but:0.05839236712209208 that:0.042812157073601136 !:0.02717236128545187 and:0.025234634025104875 :0.8463884804937499 +day:0.35266484073358095 that:0.0871405589181874 and:0.07506732280526492 then:0.047038270229941524 :0.4380890073130252 +her:0.6115194246451726 them:0.05490020609384445 on:0.03579076554617053 a:0.02786370751085671 :0.26992589620395574 +All:0.4262832106857166 and:0.05694110078868481 the:0.05193675132461584 of:0.04666930826028939 :0.4181696289406934 +the:0.19587789469110078 be:0.08675337571246017 a:0.0331278749963938 give:0.022585747059405668 :0.6616551075406397 +of:0.25511858704276136 for:0.19910829431144517 in:0.17095747788220336 to:0.08717214529023543 :0.2876434954733547 +been:0.18758947697002076 as:0.12055218228658633 an:0.09134268539571244 taken:0.04443862626627673 :0.5560770290814038 +and:0.09319400029228592 it:0.03908471642675965 which:0.023072024990185073 which,:0.019062481677405613 :0.8255867766133638 +lives:0.016407117240845863 living:0.012693816844130994 friend:0.0019137885652250706 friends:0.0018763904899045856 :0.9671088868598935 +moro:0.3488941504511453 sun:0.15646344163228368 morning:0.13562615516739765 more:0.05141171848810664 :0.30760453426106676 +the:0.30126832993146246 many:0.12642454943623838 long:0.1250941654428822 with:0.10089788015638346 :0.3463150750330335 +of:0.5874015179977696 to:0.2016343168975484 is:0.05440908162360511 he:0.017689965574103884 :0.13886511790697315 +of:0.7256791039697806 in:0.02308016819955329 and:0.020423955187179908 to:0.018962552231775075 :0.21185422041171117 +to:0.0944011319012534 of:0.08093113606987323 above:0.05227106252765803 ground,:0.04634483715765469 :0.7260518323435609 +!:0.07162747362658622 by:0.06623953954189989 so:0.050409807969230024 only:0.04712470871843707 :0.7645984701438467 +own:0.0934902015972002 election:0.08755316574580138 legal:0.04838048783841632 supposed:0.04005784739387033 :0.7305182974247119 +of:0.20501605912497645 and:0.15763955525417137 to:0.03554604170276032 the:0.03481645522369917 :0.5669818886943927 +You:0.09195232778788273 and:0.04115651420210165 We:0.013210946671464857 They:0.010748270851621985 :0.8429319404869288 +to:0.3238010970814967 and:0.2499221526124226 the:0.16770502417370997 in:0.06096395196604591 :0.1976077741663248 +two:0.57259458673811 more:0.3065907817033792 moro:0.07279209767294131 other:0.025423195123508626 :0.02259933876206097 +would:0.6804836391501203 can:0.2124469359862291 may:0.06924907315769513 will:0.024373804394821622 is:0.013446547311133717 +before:0.011519098903477472 they:0.006406125319034798 it:0.0057615251777016225 else:0.005690441620052866 :0.9706228089797332 +the:0.4284321090794468 from:0.2887728285463143 by:0.04795217465527936 a:0.045027421211269854 :0.18981546650768974 +indeed:0.12164987836048546 possible:0.06613165279248992 not:0.06265498180532489 complete:0.05555500650807471 :0.6940084805336251 +past:0.05124395987482302 next:0.03873193292296037 last:0.03838326276249594 first:0.02302802845711554 :0.8486128159826051 +the:0.8415651595324032 tho:0.03935374999877449 tbe:0.02787086719629364 a:0.011655422656182808 :0.07955480061634593 +was:0.4560492476697166 married:0.21978658304591125 is:0.12637266390731977 became:0.07541496285497626 :0.122376542522076 +rank:0.04774393886366153 construction:0.04288428047811988 honor:0.035465805460382464 principles:0.016355223573374475 :0.8575507516244615 +of:0.8391629461179542 and:0.04967149515114284 tbe:0.03214610839283781 the:0.022630482947606237 :0.05638896739045889 +fairly:0.05483247780608023 and:0.05471800546123733 paid:0.041961848979912675 a:0.03097542101746113 :0.8175122467353085 +of:0.3300250026551969 which:0.1904182182489262 and:0.14443353452625488 that:0.03385726281718994 :0.301265981752432 +of:0.56735570123038 the:0.16729431696409078 or:0.12397272728534699 by:0.05549526145454118 :0.08588199306564094 +what:0.26659841945176965 whom:0.24270990012811824 that:0.2279313180656617 which:0.0980826265027774 :0.1646777358516731 +We:0.6096643942373048 which:0.07474048436205312 that:0.055782987519583764 and:0.03502997694493339 :0.22478215693612483 +o'clock,:0.7470736956928321 o'clock:0.23910217532701927 held:0.00043491672572523233 and:0.0004008693190902717 :0.01298834293533308 +in:0.3666080033008242 the:0.11126611924455691 with:0.06688722104962026 and:0.03389452458631751 :0.42134413181868097 +by:0.20096493012308903 of:0.18835388824424015 in:0.1755469083915443 for:0.17456954637944608 :0.2605647268616804 +a:0.8514277431661814 one:0.10911818867811705 u:0.0021121232910484423 ti:0.0007042805803505498 :0.03663766428430269 +they:0.28336082228404347 you:0.22123178169663035 we:0.11627231626024652 I:0.08268979473281407 :0.29644528502626566 +last:0.0561698187678158 past:0.05190882896018341 of:0.03548237187653515 first:0.034035081590835715 :0.8224038988046299 +a:0.5586481654018981 per:0.12756162232372398 of:0.09992317068759253 for:0.07630805426898789 :0.13755898731779745 +of:0.21449009128291963 The:0.1070670227480749 and:0.07608255814999078 the:0.05382556748800763 :0.5485347603310071 +and:0.14848067004900112 Mr.:0.13964968962691207 his:0.08277459516980464 the:0.07534958726653844 :0.5537454578877438 +was:0.2635571539301979 thus:0.22434497686602978 is:0.06116737811576128 had:0.05597639063672186 :0.3949541004512892 +for:0.43775242686545973 and:0.06486875876332389 of:0.006415305996568585 on:0.005214994867861969 :0.4857485135067858 +of:0.5669523466378694 and:0.09863934385039819 for:0.03669432882200196 to:0.02636434147686974 :0.27134963921286065 +the:0.485133681023572 way:0.1823270211921471 way,:0.07783019719997114 these:0.024715928019083216 :0.22999317256522653 +scarcely:0.6081527055732424 not:0.3808096367850918 also:0.007623447409646987 never:0.0011431298165897436 :0.002271080415429034 +country.:0.19394192164285345 state.:0.10748534381418852 city.:0.0535047449274848 land.:0.048763345492520746 :0.5963046441229526 +the:0.03324853179633535 other:0.027009744233503243 great:0.020279238375547768 general:0.015318013179153357 :0.9041444724154603 +a:0.1799147894742415 the:0.1367789442298936 for:0.06359403225379767 their:0.06354918610049212 :0.5561630479415751 +the:0.012662562005627478 ;:0.008886380595253481 and:0.00870991316174233 team:0.006054287864989798 :0.9636868563723867 +County:0.30128590671449085 county:0.13612073021150228 ty:0.04009855022782098 and:0.017870646762700382 :0.5046241660834855 +of:0.7250910089588313 an:0.07721312139494925 with:0.0714423483080189 is:0.06671123258069799 and:0.0595422887575027 +at:0.6151779524274339 only:0.10584566194259754 for:0.09882835283834424 of:0.08012204361459821 :0.10002598917702628 +and:0.19856310637884556 in:0.15654022276471363 of:0.14098623615020625 to:0.06087492856157441 :0.44303550614466014 +that:0.829739973486984 he:0.12734436560985846 she:0.008983460358232198 there:0.006003216510461755 :0.02792898403446355 +of:0.1478346762237571 and:0.14377501376780016 to:0.0803039650750484 the:0.03967247138133108 :0.5884138735520633 +the:0.4904405595381138 this:0.0955451302443982 our:0.0771483508884819 their:0.054150960117658194 :0.2827149992113477 +held:0.28791045926929587 proved:0.10181217696703593 line:0.006644307263636256 of:0.004282666745483567 :0.5993503897545482 +own:0.3704643943992401 city:0.14902801345649525 former:0.08649947835099449 old:0.0749591051753342 :0.31904900861793595 +not:0.3615277379687846 to:0.22078929295447328 also:0.19452706772509792 on:0.06183254488243345 :0.1613233564692108 +been:0.3065517140631149 a:0.09819052069395807 the:0.061696910498206255 not:0.037627551452874754 :0.49593330329184604 +the:0.8989889205341878 a:0.029862468688571883 tho:0.024767030826996782 his:0.013893197372841021 :0.032488382577402726 +such:0.44295138886152746 rate:0.020795887831772268 one,:0.011268922673264974 article:0.010547796065017942 :0.5144360045684173 +the:0.1637009086118438 of:0.09899040843588505 and:0.09489816719154956 The:0.09439323361404175 :0.5480172821466798 +the:0.3089646319208458 a:0.14739277319705194 and:0.06561183447542111 at:0.051538963241797915 :0.42649179716488317 +sum:0.02863669542700811 city:0.016940552765268825 number:0.016554053038172024 use:0.014828379391947531 :0.9230403193776034 +case:0.19959526550057377 beautiful:0.19660354892372756 place,:0.18232978991706758 dark:0.0803393896252609 :0.3411320060333702 +about:0.31411969310940396 over:0.29403737342610603 to:0.1854536848281508 into:0.11022591731961953 :0.09616333131671959 +a:0.30835472939101854 to:0.11581314166627238 going:0.09808627096376628 on:0.09764904859974963 :0.3800968093791932 +up:0.23560678329135035 out:0.14584976738699176 over:0.1385010967025563 about:0.1259865020989099 :0.35405585052019173 +The:0.685386365539809 This:0.031639313187682525 She:0.019411173221215907 In:0.01895524175460531 :0.24460790629668727 +the:0.3275494445323507 in:0.15906758230954102 was:0.09192324938664101 do:0.08306368944159678 :0.3383960343298703 +of:0.2703503925076843 and:0.1395275629005732 the:0.05693437144021661 to:0.02573802525049758 :0.5074496479010283 +years:0.47593078112785514 millions:0.09388599136699173 miles:0.036002589918912906 of:0.013477182333519787 :0.3807034552527205 +together:0.38090748546085185 up:0.3546593071899783 down:0.05587738817207507 hand:0.04483610051938647 :0.16371971865770824 +the:0.11594969670518851 his:0.08715669291964745 a:0.0477948922982181 to:0.03842385260252066 :0.7106748654744253 +floor:0.1634765806974426 same:0.13587484175261308 matter:0.09515115493958326 city:0.07905250772940701 :0.526444914880954 +of:0.09550385535067155 and:0.09173192646314796 the:0.05069501823744319 a:0.025046329093965886 :0.7370228708547714 +We:0.9999957112115757 you:1.4619922409594812e-06 they:7.613532890655567e-07 by:6.510084809694595e-07 :1.4144344131149694e-06 +the:0.11503465603525928 and:0.10357083428386007 of:0.06661406007271443 are:0.03788588770325331 :0.6768945619049127 +the:0.33361708948311797 of:0.034794112747892465 other:0.022788151719661365 in­:0.02195981114062213 :0.5868408349087061 +or:0.9830345315206531 much:0.007187121732195343 nor:0.00040545672541675423 with:0.00021699249012240948 :0.009155897531612278 +to:0.8712928235023166 and:0.02947613498351103 g:0.01733234441900735 in:0.012898180560471512 :0.0690005165346935 +of:0.10890871678051568 the:0.0938533597631531 or:0.06620602195666477 and:0.056873510772614884 :0.6741583907270517 +Mrs.:0.10433592770307543 and:0.07740039657625662 the:0.06881729415331786 their:0.06493430095614484 :0.6845120806112053 +were:0.8627386879985705 the:0.04205381648124409 many:0.02842813153246318 of:0.021817812792866667 :0.0449615511948556 +the:0.9655120189702052 a:0.01093213709714128 tho:0.00982892398152819 some:0.0023595444402579316 :0.011367375510867398 +p:0.3380760357571022 o'clock:0.21589233464344368 p.:0.1317725211945018 a:0.13174011785204398 :0.18251899055290852 +is:0.6623535541152019 was:0.14192974358944757 a:0.039224006579281954 Is:0.03598818866748807 :0.12050450704858032 +meet:0.09406054368961791 hold:0.09182515247358335 carry:0.031105440337860668 lit:0.029536759958541443 :0.7534721035403968 +and:0.03279766715514644 in:0.01701147327491546 life.:0.015750194874867018 to:0.013810934452541968 :0.920629730242529 +and:0.31128070274389463 as:0.23749075470768677 or:0.053674266758789564 but:0.021262152855257135 :0.376292122934372 +hand:0.20679488562008885 arm:0.14346856289903068 ':0.1289551204542954 him:0.05635255613412722 :0.4644288748924577 +side:0.7493157719098686 part:0.09398817684493585 surface:0.0928424362201778 sides:0.026160656722166054 :0.03769295830285162 +of:0.7146253264812903 to:0.07819167915573913 in:0.06328576219690067 and:0.033524604241171145 :0.11037262792489887 +of:0.5552036681360129 and:0.11167326027590828 in:0.06475563677449742 with:0.06103972960157494 :0.2073277052120066 +or:0.7962737148184569 and:0.06659689421494895 without:0.054451657149558755 the:0.04382142444386648 :0.03885630937316885 +of:0.10741276131842896 The:0.09820044068813955 the:0.09278427237083367 and:0.07040895565854224 :0.6311935699640556 +pay:0.15022411129555244 keep:0.09861932864210776 make:0.09589376942289196 by:0.07857332288894317 :0.5766894677505046 +right:0.14725313524348285 success:0.004613170249819405 man,:0.004316747056586715 get:0.0037912593225341317 :0.8400256881275768 +and:0.1082944013336265 of:0.06387719814485208 the:0.0573490832039454 to:0.04127750574433032 :0.7292018115732457 +do:0.2515391031211328 give:0.09221614033978455 admit:0.09061141262937822 have:0.07228493306442844 :0.49334841084527586 +":0.047587648681913404 f:0.037038482018481075 .:0.01756983733926802 I:0.017557729841806553 :0.8802463021185307 +it:0.45706559265679725 there:0.14426220086789932 he:0.1241849443945972 the:0.09746438060645961 :0.17702288147424658 +the:0.8044802640052969 a:0.04558661735142277 tho:0.04168275134648152 tbe:0.01466557510119553 :0.09358479219560333 +in:0.8015554722863186 rapid:0.02926442882034335 the:0.020617660368270764 far:0.013516687840159755 :0.13504575068490746 +is:0.26845634384421163 continued:0.17864971493321935 failed:0.08624537648688292 began:0.08201863829940623 :0.38462992643627986 +had:0.7690352531654318 has:0.22827180116593365 and:0.0006775261908522112 was:0.0006695493537112582 :0.0013458701240711259 +and:0.07688442623189601 ,:0.07374854055010444 the:0.04400936184367387 of:0.04226261207566201 :0.7630950592986637 +was:0.8905205620556403 have:0.019366123629235205 were:0.011247910963894514 waa:0.007033849885085032 :0.07183155346614468 +is:0.7192494132183466 Is:0.11544123384991134 was:0.1152292802465992 ia:0.026281467734497126 la:0.023798604950645705 +and:0.14666860318022065 to:0.05290505768956257 10,:0.04058219193883498 the:0.032987182834226414 :0.7268569643571553 +ago:0.863513433174597 old:0.022231167171020447 old,:0.016538336041285503 ago,:0.013077983498606408 :0.08463908011449062 +prayer:0.026977377535028935 pain:0.022453718690121208 the:0.017899788893603757 a:0.016702921626114087 :0.9159661932551322 +-:0.28962351591065616 The:0.18218355275183004 the:0.1522311535909108 for:0.03237165323167862 :0.34359012451492454 +no:0.2167277644121949 many:0.13664791843477525 a:0.0815424715888561 two:0.078607006773673 :0.4864748387905007 +the:0.7295450244767954 this:0.04306275069524018 tho:0.03855080030809485 that:0.025928476293749378 :0.16291294822612024 +Is:0.12084906509306372 is:0.10874440224060107 should:0.031449742468527914 has:0.030571375199602253 :0.708385414998205 +and:0.286152496882069 of:0.15522340359753317 to:0.1086273504225546 on:0.08893672893358517 :0.3610600201642581 +principal:0.44369774483475327 members:0.04714378578801312 one:0.035621954952082695 that:0.027133593894383683 :0.4464029205307672 +have:0.20034340876444892 not:0.1532068093421032 be:0.07284541916203018 entirely:0.045232615007586525 :0.5283717477238312 +a:0.4585205264877111 an:0.08025431558979804 case:0.02509696647487149 cases:0.016738504796760114 :0.4193896866508592 +short:0.9565740759154985 long:0.007747419908210422 the:0.007685467415480938 second:0.004874128474439778 :0.023118908286370244 +south:0.02559077438114598 city.:0.024347255259566998 street.:0.020140964828394232 north:0.015389179332201283 :0.9145318261986916 +department:0.38708597268233624 developed:0.058984144419712704 are:0.02417793946769475 of:0.02209506680687024 :0.507656876623386 +been:0.43721599325931354 lived:0.08261599555552632 passed:0.04792577661381381 succeeded:0.041939471632181216 :0.3903027629391654 +life.:0.03447701386496239 every:0.013859598204637894 others.:0.011664790684047735 time.:0.00250481313253888 :0.9374937841138132 +will:0.24632224258993188 and:0.11679194080718518 I:0.05010908838602675 but:0.04234476032421557 :0.5444319678926407 +and:0.06512407528203741 sales:0.06505315278402812 of:0.05346517412450342 bushels:0.04193205111124208 :0.774425546698189 +him.:0.01700596694967094 up.:0.01059653770914055 out.:0.010088240350096546 all.:0.00898415010839685 :0.9533251048826953 +was:0.08407397644577652 think:0.07420392182703354 saw:0.06468031627769098 heard:0.05997816448318846 :0.7170636209663104 +as:0.13047055645652805 carrying:0.12198529141777238 took:0.09785826361855253 got:0.07158545936609137 :0.5781004291410557 +most:0.06505416448915352 world.:0.029126398645134072 the:0.01598002543840392 various:0.015444563594542366 :0.874394847832766 +great:0.08281908891972257 know:0.06248200200465696 faithful:0.04367294696342248 regular:0.039546157949753885 :0.7714798041624441 +the:0.2439308620544995 a:0.2303907056696818 to:0.08085382401608646 an:0.04710291235185364 :0.39772169590787865 +green:0.1992352221994023 to:0.1829537814465271 in:0.16904067954327645 made:0.1314010838752779 :0.3173692329355164 +the:0.48141362415179617 said:0.3405179850563151 a:0.09698730364133604 on:0.050581865308606144 such:0.030499221841946353 +permitted:0.8941451463645258 an:0.019225775233272437 finished:0.019007227498638743 the:0.01630587082681541 :0.05131598007674741 +sound:0.11875777285834167 eye:0.02007830383460956 practice:0.014729348653975434 I:0.01255615917462638 :0.8338784154784469 +when:0.5244486589658137 if:0.10803727913477801 than:0.07488535420173005 that:0.032725635743918326 :0.2599030719537598 +stream:0.19553529850997262 well:0.13229672224510722 character:0.04042042600210591 spot:0.009189297444480299 :0.6225582557983341 +and:0.14829289302440507 meet:0.054657733002641644 the:0.03232863939606065 to:0.03192602284518402 :0.7327947117317087 +the:0.4445203606091637 that:0.042820168999074676 this:0.01449834079803762 tho:0.011736994048525047 :0.4864241355451989 +not:0.9478902159278768 the:0.02141992249667991 any:0.011069921087752248 no:0.006685071424939426 :0.01293486906275157 +the:0.4513929963571813 to:0.05439165401586665 an:0.023488477115523446 a:0.019420159172202477 :0.4513067133392262 +block:0.46390227281247604 township:0.1592623182328754 Township:0.13795627182355324 the:0.12093661697762437 :0.11794252015347112 +months:0.16289255266961947 re-:0.06309115295944002 and:0.033928471346849925 of:0.027539592801242137 :0.7125482302228485 +the:0.23355983300541722 to:0.17452887674360265 and:0.08914217402048481 his:0.06784706493585692 :0.4349220512946383 +own:0.28658481836243355 military:0.02207092938100953 present:0.008857412400119457 public:0.007175591944966495 :0.6753112479114711 +reports:0.013985077093275265 life,:0.007093900627706659 place:0.006420748452006748 life:0.004168524316348789 :0.9683317495106625 +of:0.5863247499801508 that:0.0816679009821902 and:0.05669084088222031 in:0.044788478281827984 :0.23052802987361073 +of:0.305337090329142 and:0.09449806591206808 the:0.046969461034827305 in:0.040107301869876016 :0.5130880808540866 +two:0.8873230814418323 more:0.07387289547423159 three:0.01684296733214643 the:0.011505805446864203 :0.01045525030492531 +and:0.00021149614057985313 City,:8.98607206608991e-05 Mr.:5.279776392253759e-05 brought:5.065061142396419e-05 :0.9995951947634127 +of:0.7378389324616031 told:0.01575293412146168 asked:0.012183992444702849 to:0.01005437527081661 :0.22416976570141564 +i:0.8765383725892149 the:0.0239263597943217 are:0.01485844880424682 and:0.01304761958349144 :0.07162919922872533 +public:0.028098182653281983 the:0.02628184077074192 same:0.021744586337335663 said:0.02028220926140148 :0.903593180977239 +complete:0.3273184040816968 the:0.12963819069232285 faithful:0.11471702021859152 correct:0.04337541202059521 :0.3849509729867937 +last:0.814023122894807 .,:0.08678776779679082 night,:0.03514046947230155 work:0.013655354660193415 :0.050393285175907236 +each:0.10520042072355948 which:0.10487541004677259 them:0.06670258859999222 wheat:0.05945294227423806 :0.6637686383554376 +public:0.5591242096018622 his:0.013016413851717841 popular:0.011196279338522509 the:0.008500909860970641 :0.4081621873469268 +of:0.24078880754772883 the:0.1593644711284425 to:0.10184305906124361 and:0.09197895549327338 :0.4060247067693116 +or:0.5545082297498338 to:0.02093538234525542 broke:0.015871575867144348 at:0.008276149467726018 :0.40040866257004026 +the:0.16444053896727037 and:0.06557475437506678 was:0.05455282730962788 a:0.053614225931111766 :0.6618176534169231 +that:0.23854106727818555 and:0.21797808864126703 but:0.12972467653973893 to:0.11847241858446592 :0.29528374895634263 +protect:0.18115901091415168 form:0.06753046093894241 people:0.037752901711931845 extend:0.014200259187901838 :0.6993573672470722 +down:0.23146954191330094 first,:0.1625093672879328 and:0.09142050853169012 following:0.08941200375143504 :0.425188578515641 +cross:0.09482215914256305 big:0.0822288624702562 James:0.05754068061663278 coun-:0.04316412462726863 :0.7222441731432793 +Just:0.1174637163768995 is:0.10919434468486919 hand:0.06318842189489039 succeeded:0.04431381123924724 :0.6658397058040936 +Mrs.:0.37517771331416205 and:0.09077212293489471 of:0.041700702947225124 Capt.:0.041089080197120584 :0.4512603806065975 +one:0.37137015659845424 some:0.1768920607477691 con:0.022631075812916627 many:0.01363728628482647 :0.4154694205560336 +for:0.6143529122101138 that:0.08552866529340554 to:0.06670084664531192 with:0.04976089117674896 :0.1836566846744197 +well.:7.66787497289595e-06 soon:7.389349591293621e-06 early:1.2760684104884768e-06 quickly:1.2322683793771196e-06 :0.999982434438646 +to:0.4441228453772615 may:0.10957067551024792 will:0.09216882886190483 lo:0.06944239678309362 :0.28469525346749214 +of:0.1836940444389351 the:0.17565069540096218 to:0.14492400469863645 with:0.11757809173438678 :0.37815316372707974 +furnished:0.07538053028049967 saw:0.03999045951568056 made:0.026069548591479263 back:0.023821121338066648 :0.834738340274274 +the:0.3274838683979598 other:0.1158409989974493 persons:0.04128355720964846 of:0.03885851844235152 :0.47653305695259085 +put:0.30395657650108504 turned:0.17646348747647508 been:0.16440005942775293 taken:0.11368195282559006 :0.24149792376909682 +but:0.03227139607090154 course,:0.015913484758000838 purpose:0.015669883912403034 government,:0.013376305187326847 :0.9227689300713676 +it:0.47849916221746686 It:0.16815230691836663 you:0.15233390680967024 the:0.06462188505959643 :0.1363927389948999 +with:0.3890738167343172 has:0.16967212470068502 In:0.16497847619586223 of:0.15239711112014012 beyond:0.12387847124899548 +voting:0.23367515646971468 the:0.17693085917385096 north:0.09546843735344707 about:0.08280299237380581 :0.41112255462918135 +once:0.2289664576830978 For:0.16763021997544425 about:0.09308004178932107 for:0.08628215771614735 :0.42404112283598955 +the:0.4957426190124033 a:0.1729569161512682 A:0.07147036913649744 The:0.04340191621558182 :0.21642817948424917 +said:0.807044334590836 farm:0.011097716021372467 same:0.008341613682674772 the:0.007244110803126175 :0.16627222490199056 +and:0.19813384726634953 is:0.17640931200629845 which:0.12095882092054516 are:0.10896796168770706 :0.39553005811909975 +far:0.17034153347451553 will:0.10834153539752613 If:0.03633839235411886 are:0.022614478354297668 :0.662364060419542 +The:0.4625119885738476 Mr.:0.2342692146370682 Its:0.08258265488685286 and:0.05413889015819795 :0.16649725174403338 +of:0.14088217170413303 and:0.13174078590885216 with:0.07806216784117735 in:0.0769272860945408 :0.5723875884512967 +of:0.48357479800249425 oi:0.314419492219376 in:0.1433179666692799 The:0.03529173749787128 to:0.02339600561097865 +things:0.023445082133893444 people.:0.017070690520931305 years.:0.009030890463124802 people:0.002013487940485251 :0.9484398489415652 +and:0.20672115289690504 the:0.06431292448486783 of:0.06423102176575313 or:0.05411036189122425 :0.6106245389612498 +sort:0.1988860674559042 man:0.11709589302631075 style:0.10889992244688229 capable:0.05599641677488816 :0.5191217002960146 +J.:0.5234183958702724 B.:0.22417690101215867 T.:0.09022522613516408 11.:0.058413263166081544 :0.10376621381632319 +been:0.25117773079384936 no:0.14417213674563586 of:0.056991429740480264 his:0.053893373904147515 :0.4937653288158869 +at:0.9061087577725249 a:0.03885236350753042 that:0.01449249396847249 in:0.011322746572837689 :0.02922363817863441 +The:0.3081926165465948 the:0.24161373781079154 A:0.09275268514189276 This:0.06166753683438018 :0.29577342366634063 +believe:0.3903756716736017 forget:0.33720019983906035 allow:0.0572141283795191 always:0.04179496627360303 :0.17341503383421586 +of:0.17194939420126468 -:0.014577085483138033 to:0.010061480719717802 face:0.008658716031183929 :0.7947533235646954 +dollars,:0.06257865853511388 ago,:0.0096475657456716 ;:0.009437011794681554 deep:0.008117432083975884 :0.9102193318405569 +of:0.34077364695614903 Let:0.2090802850886456 or:0.12348200720187864 to:0.12042657355246439 :0.20623748720086227 +worst:0.09871889559100953 duty:0.0929827457021102 money:0.05049796922993948 treasury:0.04963273055125544 :0.7081676589256853 +of:0.6911993519640997 was:0.08490294341533733 is:0.05120306906759747 herein:0.04375689091817103 :0.1289377446347944 +of:0.1966895936107476 and:0.06923107880252767 the:0.04887675787026852 named:0.036484391735922946 :0.6487181779805332 +per:0.1217301682369392 the:0.07662543487687093 and:0.04770626286195356 was:0.046925921870565115 :0.707012212153671 +of:0.8943320796217469 and:0.09267267294263927 ot:0.0018309532040979436 in:0.0017024141775809538 :0.009461880053935064 +to:0.965082796936845 will:0.008206803490331153 shall:0.006820583226437881 must:0.004821626784269076 :0.015068189562117008 +men:0.08596252209964622 people:0.07190887362882567 gentlemen:0.04340665789397393 lands:0.03098487179314707 :0.767737074584407 +when:0.2185562167670326 and:0.17245019077226556 that:0.14148821683107768 while:0.11524961931907168 :0.3522557563105524 +to:0.2129069630317865 day:0.09895719119751115 and:0.09695289069639995 the:0.04957781950501437 :0.5416051355692882 +regular:0.705720705056476 the:0.11938658428426697 a:0.01849716176013408 tho:0.006441361586379917 :0.14995418731274296 +a:0.7725587346027722 the:0.16306204994901335 said:0.02619341698636106 its:0.02125860878272426 :0.016927189679129106 +particularly:0.33956470185970894 policy:0.09906883146289297 information:0.09812010354529604 country:0.07159788510590102 :0.39164847802620106 +only:0.4011508407488207 not:0.12354039058766927 all:0.10573712774406574 hardly:0.09013708112383918 :0.27943455979560505 +the:0.480086124638059 a:0.04012725215698792 such:0.029559281062462334 Fort:0.026547086285055144 :0.4236802558574355 +of:0.7261232409165161 in:0.18350642723387964 to:0.06629824502543898 iu:0.012581465567636082 which:0.01149062125652922 +me.:0.16396062172291073 .:0.015437028749594637 death.:0.01449350415058141 and:0.012745518987333025 :0.7933633263895801 +in:0.29488436068914536 of:0.24934934746892048 and:0.12850373461766262 for:0.12625970020045785 :0.20100285702381368 +and:0.1294598794305311 ed:0.045536699146698056 started:0.0397569464981704 charged:0.03803130470242876 :0.7472151702221717 +the:0.36222686988465985 a:0.28258812120261795 this:0.13875149386672805 first:0.10944560980598891 tho:0.10698790524000522 +of:0.4797076801523284 who:0.05051516939206771 and:0.03795167934681997 the:0.02380631174168966 :0.40801915936709415 +a:0.3868885998643305 the:0.3166072448554128 an:0.06027773264752055 his:0.03168983803884762 :0.20453658459388852 +the:0.2560495165840056 he:0.08190900295917403 a:0.07214607262466521 more:0.0645690369767448 :0.5253263708554103 +where:0.6318817948477804 until:0.3651083401313787 and:0.000246095754763581 as:0.0001388999612720527 :0.002624869304805217 +A.:0.013864659132091438 life.:0.0063233170432868266 side:0.0043326957895862645 name:0.004182347127765741 :0.9712969809072699 +streets,:0.07464427772575648 officers:0.03408064107410392 better:0.03324492026787272 best:0.029277648329309385 :0.8287525126029576 +charge:0.8223318249026517 that:0.058092728680334715 full:0.0018029883866970354 a:0.0017767425802238113 :0.11599571545009275 +with:0.7163420022068516 for:0.09816750253647583 to:0.049072428136861225 near:0.03835233361566987 :0.09806573350414141 +to:0.3025045938803149 will:0.13712627637634234 and:0.10549581607787249 trouble:0.07480295265361711 :0.38007036101185315 +of:0.3014936948310415 to:0.12262950631218439 in:0.10891531832177669 and:0.08706482229443814 :0.3798966582405593 +there:0.7692424195765669 tor:0.07552916284390682 There:0.07131102669615055 It:0.022015102070538826 :0.06190228881283682 +time,:0.14669503700481593 act,:0.048612403874884476 time:0.03738345078600795 do,:0.014534993917501599 :0.7527741144167901 +due:0.15035441639216446 unknown:0.06026673956042914 devoted:0.049963249235697484 subject:0.034438638556139545 :0.7049769562555693 +and:0.6381292840929611 an:0.015250611342958107 in¬:0.012734618302041038 In:0.009444332090690078 :0.3244411541713497 +one,:0.28754247928884524 system:0.07043345712088456 against:0.03680564140525214 for:0.03336170628885464 :0.5718567158961635 +three:0.3502054048762687 four:0.20686363157030752 200:0.013416394927784672 white:0.009487075782658196 :0.42002749284298097 +be:0.32483029618653453 the:0.23105243810001563 he:0.03342559319262623 tie:0.029306131978662074 :0.38138554054216156 +out:0.9858463198197337 put:0.0021908548702752407 hold:0.0012436756642724865 tired:0.00041390262016385685 :0.010305247025554767 +old:0.05595039272069983 execution:0.029295066412986074 immense:0.024394244871340717 almost:0.021571877451493162 :0.86878841854348 +miles:0.40703153588290875 feet:0.005992597374317821 months:0.0035950986900762515 inches:0.003046088222854809 :0.5803346798298424 +the:0.9517425176801863 that:0.010498105584770389 and:0.008314338301789877 The:0.006638688619751674 :0.022806349813501738 +as:0.25249170854750774 and:0.17271859487109875 is:0.12773741148219672 are:0.08417418107520691 :0.36287810402399 +happy:0.15924427327583743 great:0.10040947586442124 public:0.07036874671462699 forced:0.057910138276608014 :0.6120673658685063 +few:0.2604505155429985 million:0.2400328374770762 number:0.13070525510421563 part:0.0952090603984019 :0.2736023314773078 +or:0.11295904777235924 men:0.062383336280923796 houses:0.02369237073215764 of:0.022042286756860166 :0.7789229584576991 +drove:0.25656773209236405 gave:0.2018237860333221 took:0.031036563716208856 has:0.02334790789270935 :0.4872240102653955 +satisfactory:0.16420839662147507 thorough:0.0042584710324173655 distant:0.0022967109503339825 perfect:0.0021512610057745217 :0.827085160389999 +and:0.08805674317832826 of:0.05401784501170251 the:0.04528071264086057 aged:0.043666245556996254 :0.7689784536121126 +of:0.7696672324975297 and:0.06918758939301088 to:0.040674328924460934 old:0.03073761928378636 :0.08973322990121203 +of:0.3353661755275445 in:0.16272585719385033 for:0.13993803641719058 to:0.10277029370208791 :0.2591996371593266 +cattle:0.2636769953421295 heat:0.24760380402209223 owners:0.028123642104644946 physical:0.025360388723752656 :0.43523516980738064 +of:0.3535155970034179 and:0.16285152605869657 that:0.09449384366244074 in:0.08513568497005299 :0.3040033483053917 +country.:0.002469217197987735 day.:0.001522829006918695 work.:0.0005946834076928923 red:0.00047704766183117756 :0.9949362227255694 +to:0.2606916941213112 and:0.2447981785192629 in:0.15033613342147054 ar:0.11632708056120183 :0.22784691337675342 +day:0.3363327779129643 average:0.12632556205624176 rate:0.1097899045287483 side:0.024168194363927344 :0.4033835611381184 +and:0.10997687918167758 that:0.0501774809072632 tbat:0.0364931303370301 And:0.034326647237257105 :0.7690258623367721 +editor:0.999991713144157 sheep:6.147119773073631e-07 day:6.12513401786277e-07 ground:6.025782051403985e-07 :6.457052258809231e-06 +of:0.028591200788293237 a:0.013898682934613743 to:0.010825602856386304 pay:0.00779322703279743 :0.9388912863879094 +French:0.22157996568399943 English:0.09124815290681675 Russian:0.06204927590613381 British:0.03319408683732044 :0.5919285186657296 +day:0.848974257956491 from:0.040922934363996195 time:0.011980021830154322 when:0.010031272194200523 :0.08809151365515791 +and:0.1365319864528132 to:0.09900233964805796 of:0.07725358356804474 the:0.03447453544677692 :0.6527375548843072 +total:0.187161731202155 rate:0.1416927842403472 cost:0.07340546570839822 appropriation:0.04868063909297709 :0.5490593797561225 +time.:0.08454956858941927 .:0.028075206793585984 —:0.021486136374373865 and:0.00405441534761738 :0.8618346728950034 +the:0.22391241355001373 also:0.1608000775200879 tbe:0.14980447576861053 their:0.07976813327033686 :0.38571489989095087 +hard:0.00857171589362409 difficult:0.003656122407843596 one:0.0034630093063691037 true:0.003371036721581664 :0.9809381156705818 +been:0.4635183822508812 a:0.10621030501427982 the:0.04144648195793006 no:0.035439291594275946 :0.35338553918263294 +but:0.35251740626977984 But:0.2951453299800963 against:0.10950918579400899 that:0.09636271536011058 :0.14646536259600412 +a:0.19520048187517014 some:0.08805093500110078 to:0.025230749822774862 grand:0.02356858409520365 :0.6679492492057506 +Dakota:0.0348297845031066 shall:0.008606331189065357 the:0.0073451767055357185 Lake:0.00627029075125957 :0.9429484168510328 +a:0.34347312016988846 going:0.2561379465114234 all:0.1964706780718135 the:0.12368064160061823 :0.08023761364625637 +of:0.2563130550988235 about:0.14858909971358691 on:0.13657094113364815 upon:0.12324313857279073 :0.33528376548115063 +that:0.41554049759929046 said:0.2194350131412149 and:0.1307054852957065 but:0.07790405220322498 :0.15641495176056322 +of:0.1646964471140625 and:0.08235376810923896 in:0.05514754996446192 to:0.026277160266709194 :0.6715250745455275 +must:0.271122997578021 that:0.23730642757435227 bill:0.015255370020756921 man:0.012248398259183984 :0.4640668065676858 +want:0.03158488114055544 know,:0.01647381917296642 have,:0.011537843316150962 came:0.010790836385318152 :0.9296126199850091 +and:0.09430703976668538 of:0.05090409218384608 the:0.048879694763606686 to:0.028007371436014835 :0.777901801849847 +in-:0.3588003403880919 re:0.16569950744315534 this:0.14525109128429503 the:0.07601901719224824 :0.25423004369220953 +the:0.1762046892409936 a:0.03835110648934796 other:0.02548276888524951 of:0.02196664962242594 :0.737994785761983 +and:0.9991394015871276 for:0.00013056035372978396 it:9.912033201828355e-05 he:4.654936630232357e-05 :0.0005843683608221583 +is:0.7220821082236367 Is:0.2030538300922891 was:0.054215649435250216 la:0.01411384634465536 ls:0.006534565904168616 +me:0.11382635021370079 that:0.04288752654561482 the:0.03569911206354667 him:0.017424918788543926 :0.7901620923885939 +back:0.23708605255777682 down:0.20708120920111747 up:0.19624314141772992 out:0.180684191822887 :0.1789054050004887 +the:0.4302767955976478 that:0.09952085433951482 a:0.09472286429553146 his:0.05465137586849977 :0.32082810989880634 +state,:0.0649757454290674 ing:0.024062495901486965 ful:0.022033377750838638 case,:0.01272856531624956 :0.8761998156023573 +the:0.8886337428432556 tho:0.028989432874761377 a:0.006398264753240957 be:0.006163276839667172 :0.06981528268907498 +meeting:0.07064729206242808 year:0.06172509231194339 murder:0.052733454907668384 trial:0.03180291535642021 :0.78309124536154 +he:0.33293711718322094 you:0.1970658007014828 it:0.15355614780938853 they:0.07359081039666161 :0.24285012390924618 +the:0.6954351449175998 said:0.08562506750515601 a:0.07830581963909833 this:0.05203674705334541 :0.0885972208848004 +day:0.06655210224012707 year:0.034733738260683544 tion:0.03380172588067502 and:0.02131825089885149 :0.8435941827196628 +great:0.02494705384710554 whole:0.024406492256182754 the:0.022583443288854 first:0.018626102235827193 :0.9094369083720305 +of:0.3922340283447699 in:0.1312503422208212 on:0.09275081549705172 to:0.07367542324742139 :0.31008939068993585 +the:0.4179253366000603 a:0.32986022159062545 40:0.08762498169311751 strong:0.023772706656013463 :0.14081675346018338 +took:0.39695067689552516 .:0.2229705987414799 .,:0.036905111355353806 Hall:0.0043965780074477455 :0.3387770350001933