title: “Lab 5–Text Analysis”" author: "" date: “September 21, 2020” output: html_document — This is a continuation of the last lab. Please copy your code from question 2 of lab 4 here: (so in particular, you should be reading in all of Jane Austen’s works, and ending with an R-object called austen.words, which is a vector of all words in Jane Austen’s works. )
COPY HERE.
setwd("C:/Users/ethan/Desktop")
AustenLines<-readLines("Austen.txt")
linLens <- nchar(AustenLines)
length(which(linLens == 0))
## [1] 12601
NewAustenLines <- AustenLines[which(linLens != 0)]
length(AustenLines)
## [1] 80478
length(NewAustenLines)+length(which(linLens == 0))
## [1] 80478
Austen.all <- paste(NewAustenLines, collapse = " ")
Austen.words <- strsplit(Austen.all, " ")
#Austen.words[[1]]
In this lab we wll do a bit of “data cleaning”, followed by a little bit of word analysis.
To get us going, we need to see just how flawed the data is currently. Look at the first 500 words in austen.words:
Austen.words[[1]][1:500]
## [1] "Project" "Gutenberg's" "The"
## [4] "Complete" "Works" "of"
## [7] "Jane" "Austen," "by"
## [10] "Jane" "Austen" "This"
## [13] "eBook" "is" "for"
## [16] "the" "use" "of"
## [19] "anyone" "anywhere" "at"
## [22] "no" "cost" "and"
## [25] "with" "almost" "no"
## [28] "restrictions" "whatsoever." ""
## [31] "You" "may" "copy"
## [34] "it," "give" "it"
## [37] "away" "or" "re-use"
## [40] "it" "under" "the"
## [43] "terms" "of" "the"
## [46] "Project" "Gutenberg" "License"
## [49] "included" "with" "this"
## [52] "eBook" "or" "online"
## [55] "at" "www.gutenberg.org" "Title:"
## [58] "The" "Complete" "Project"
## [61] "Gutenberg" "Works" "of"
## [64] "Jane" "Austen" "Author:"
## [67] "Jane" "Austen" "Editor:"
## [70] "David" "Widger" "Release"
## [73] "Date:" "January" "25,"
## [76] "2010" "[EBook" "#31100]"
## [79] "Language:" "English" "Character"
## [82] "set" "encoding:" "ASCII"
## [85] "***" "START" "OF"
## [88] "THIS" "PROJECT" "GUTENBERG"
## [91] "EBOOK" "THE" "WORKS"
## [94] "OF" "JANE" "AUSTEN"
## [97] "***" "Produced" "by"
## [100] "many" "Project" "Gutenberg"
## [103] "volunteers." "THE" "WORKS"
## [106] "OF" "JANE" "AUSTEN"
## [109] "Edited" "by" "David"
## [112] "Widger" "Project" "Gutenberg"
## [115] "Editions" "" ""
## [118] "" "" ""
## [121] "" "" ""
## [124] "" "" ""
## [127] "" "" "DEDICATION"
## [130] "" "" ""
## [133] "" "" "This"
## [136] "Jane" "Austen" "collection"
## [139] "" "" ""
## [142] "" "" ""
## [145] "" "" ""
## [148] "is" "dedicated" "to"
## [151] "" "" ""
## [154] "" "" "Alice"
## [157] "Goodson" "[Hart]" "Woodby"
## [160] "[Note:" "The" "accompanying"
## [163] "HTML" "file" "has"
## [166] "active" "links" "to"
## [169] "all" "the" "volumes"
## [172] "and" "chapters" "in"
## [175] "this" "set.]" "CONTENTS:"
## [178] " " "" "PERSUASION"
## [181] "" "" ""
## [184] "NORTHANGER" "ABBEY" " "
## [187] "" "MANSFIELD" "PARK"
## [190] " " "" "EMMA"
## [193] " " "" "LADY"
## [196] "SUSAN" " " ""
## [199] "LOVE" "AND" "FREINDSHIP"
## [202] "AND" "OTHER" "EARLY"
## [205] "WORKS" "" ""
## [208] "" "PRIDE" "AND"
## [211] "PREJUDICE" "" ""
## [214] "" "SENSE" "AND"
## [217] "SENSIBILITY" "PERSUASION" "by"
## [220] "Jane" "Austen" "(1818)"
## [223] "Chapter" "1" "Sir"
## [226] "Walter" "Elliot," "of"
## [229] "Kellynch" "Hall," "in"
## [232] "Somersetshire," "was" "a"
## [235] "man" "who," "for"
## [238] "his" "own" "amusement,"
## [241] "never" "took" "up"
## [244] "any" "book" "but"
## [247] "the" "Baronetage;" "there"
## [250] "he" "found" "occupation"
## [253] "for" "an" "idle"
## [256] "hour," "and" "consolation"
## [259] "in" "a" "distressed"
## [262] "one;" "there" "his"
## [265] "faculties" "were" "roused"
## [268] "into" "admiration" "and"
## [271] "respect," "by" "contemplating"
## [274] "the" "limited" "remnant"
## [277] "of" "the" "earliest"
## [280] "patents;" "there" "any"
## [283] "unwelcome" "sensations," "arising"
## [286] "from" "domestic" "affairs"
## [289] "changed" "naturally" "into"
## [292] "pity" "and" "contempt"
## [295] "as" "he" "turned"
## [298] "over" "the" "almost"
## [301] "endless" "creations" "of"
## [304] "the" "last" "century;"
## [307] "and" "there," "if"
## [310] "every" "other" "leaf"
## [313] "were" "powerless," "he"
## [316] "could" "read" "his"
## [319] "own" "history" "with"
## [322] "an" "interest" "which"
## [325] "never" "failed." ""
## [328] "This" "was" "the"
## [331] "page" "at" "which"
## [334] "the" "favourite" "volume"
## [337] "always" "opened:" ""
## [340] "" "" ""
## [343] "" "" ""
## [346] "" "" ""
## [349] "" "\"ELLIOT" "OF"
## [352] "KELLYNCH" "HALL." "\"Walter"
## [355] "Elliot," "born" "March"
## [358] "1," "1760," "married,"
## [361] "July" "15," "1784,"
## [364] "Elizabeth," "daughter" "of"
## [367] "James" "Stevenson," "Esq."
## [370] "of" "South" "Park,"
## [373] "in" "the" "county"
## [376] "of" "Gloucester," "by"
## [379] "which" "lady" "(who"
## [382] "died" "1800)" "he"
## [385] "has" "issue" "Elizabeth,"
## [388] "born" "June" "1,"
## [391] "1785;" "Anne," "born"
## [394] "August" "9," "1787;"
## [397] "a" "still-born" "son,"
## [400] "November" "5," "1789;"
## [403] "Mary," "born" "November"
## [406] "20," "1791.\"" "Precisely"
## [409] "such" "had" "the"
## [412] "paragraph" "originally" "stood"
## [415] "from" "the" "printer's"
## [418] "hands;" "but" "Sir"
## [421] "Walter" "had" "improved"
## [424] "it" "by" "adding,"
## [427] "for" "the" "information"
## [430] "of" "himself" "and"
## [433] "his" "family," "these"
## [436] "words," "after" "the"
## [439] "date" "of" "Mary's"
## [442] "birth--" "\"Married," "December"
## [445] "16," "1810," "Charles,"
## [448] "son" "and" "heir"
## [451] "of" "Charles" "Musgrove,"
## [454] "Esq." "of" "Uppercross,"
## [457] "in" "the" "county"
## [460] "of" "Somerset,\"" "and"
## [463] "by" "inserting" "most"
## [466] "accurately" "the" "day"
## [469] "of" "the" "month"
## [472] "on" "which" "he"
## [475] "had" "lost" "his"
## [478] "wife." "Then" "followed"
## [481] "the" "history" "and"
## [484] "rise" "of" "the"
## [487] "ancient" "and" "respectable"
## [490] "family," "in" "the"
## [493] "usual" "terms;" "how"
## [496] "it" "had" "been"
## [499] "first" "settled"
Notice there are digits, empty characters, and punctuation that are causing problems. The easiest way to deal with this is to use strsplit (as we did on the last lab) to split on punctuation as well as blanks. Execute the following line to do so:
Austen.words<-strsplit(Austen.all, split="[[:space:]]|[[:punct:]]")[[1]]
head(Austen.words)
## [1] "Project" "Gutenberg" "s" "The" "Complete" "Works"
In class we used the gsub (global substitution)on vectors. The following example gives a way to remove digits from a vector and replace them with blanks characters. Execute it to see what it does.
v<-c("7", "help78", "6help77")
gsub("[[:digit:]]", "", v)
## [1] "" "help" "help"
Austen.words <- gsub("[[:digit:]]", "", Austen.words)
Austen.words <- Austen.words[which(Austen.words != "")]
Austen.words <- tolower(Austen.words)
Your final austen.words should have no punctuation, uppercase words, digits, or blank spaces. It may not be perfect for word analysis, but it is better!
Austen.words.unique <- unique(Austen.words)
length(Austen.words.unique)
## [1] 14804
length(Austen.words)
## [1] 792471
hist(nchar(Austen.words.unique))
Remember, the sort() function sorts a vector into increasing order. A close relative is the order() function, which returns the indices that put the vector into increasing order. See the code for an example.
v<-c(10, 1, 1000, 100, 1)
order(v)
## [1] 2 5 1 4 3
x<-order(v)
v[x]
## [1] 1 1 10 100 1000
sort(x)
## [1] 1 2 3 4 5
word.order <- order(nchar(Austen.words.unique))
Austen.words.unique <- Austen.words.unique[word.order]
Austen.words.unique[1:50]
## [1] "s" "a" "z" "i" "o" "t" "c" "m" "d" "w" "n" "e" "f" "v" "b"
## [16] "x" "h" "g" "r" "l" "k" "p" "u" "of" "by" "is" "at" "no" "it" "or"
## [31] "re" "to" "in" "up" "he" "an" "as" "if" "on" "ii" "be" "do" "so" "mr" "we"
## [46] "go" "am" "me" "my" "us"
tail(Austen.words.unique, 50)
## [1] "acknowledgments" "uninterruptedly" "procrastinating"
## [4] "unexceptionably" "inconsideration" "inadmissibility"
## [7] "capitalisations" "brighthelmstone" "notwithstanding"
## [10] "conscientiously" "superintendence" "uncompanionable"
## [13] "condescendingly" "characteristics" "inquisitiveness"
## [16] "proportionately" "connoisseurship" "enfranchisement"
## [19] "unobtrusiveness" "merchantibility" "unreasonableness"
## [22] "incomprehensible" "misconstructions" "acknowledgements"
## [25] "susceptibilities" "superciliousness" "disproportionate"
## [28] "incomprehensibly" "indiscriminating" "unseasonableness"
## [31] "misunderstanding" "undistinguishing" "prognostications"
## [34] "northamptonshire" "indiscriminately" "predetermination"
## [37] "unsuspiciousness" "disingenuousness" "disagreeableness"
## [40] "discontentedness" "unenforceability" "disinterestedness"
## [43] "misrepresentation" "unaccountableness" "companionableness"
## [46] "unceremoniousness" "misunderstandings" "communicativeness"
## [49] "disqualifications" "incomprehensibility"
print("there are lots of letters that are probably holdovers from cleaning and not actual words in the head.")
## [1] "there are lots of letters that are probably holdovers from cleaning and not actual words in the head."
Austen.words.long <- Austen.words[which(nchar(Austen.words) >=5)]
Austen.words.table <- table(Austen.words.long)
Make austen.words.table into a dataframe with the following command (you need it in this format to make the wordcloud):
Austen.df<-as.data.frame(Austen.words.table)
Austen.df[which(Austen.df[,2] == max(Austen.df[,2])),]
## Austen.words.long Freq
## 2692 could 3770
print("could")
## [1] "could"
Austen.df[which(Austen.df[,2] == min(Austen.df[,2])),]
## Austen.words.long Freq
## 5 abating 1
## 7 abbeyland 1
## 9 abbots 1
## 10 abbott 1
## 11 abbreviation 1
## 12 abdication 1
## 19 abiding 1
## 22 abjectly 1
## 23 abjuring 1
## 24 ablest 1
## 25 ablution 1
## 27 abolish 1
## 28 abolishing 1
## 29 abolition 1
## 33 abominates 1
## 34 abound 1
## 35 abounded 1
## 36 abounding 1
## 39 abridge 1
## 40 abridgement 1
## 41 abridger 1
## 46 abscond 1
## 48 absences 1
## 54 absorbed 1
## 55 absorbing 1
## 57 abstained 1
## 58 abstinence 1
## 59 abstract 1
## 60 abstracted 1
## 62 abstruse 1
## 74 abydos 1
## 75 abyss 1
## 76 acacia 1
## 77 academy 1
## 80 acceding 1
## 81 accelerate 1
## 86 acceptably 1
## 90 accepts 1
## 92 accessed 1
## 95 accessions 1
## 100 accidents 1
## 102 accommodated 1
## 106 accomodate 1
## 109 accompaniment 1
## 110 accompaniments 1
## 123 accords 1
## 131 accrued 1
## 133 accumulations 1
## 134 accuracy 1
## 141 accusing 1
## 142 accustom 1
## 147 achieve 1
## 149 achievement 1
## 150 achievements 1
## 151 achieving 1
## 156 acknowledgements 1
## 171 acquiring 1
## 174 acquits 1
## 179 acrimony 1
## 181 acrostic 1
## 190 actress 1
## 198 acutest 1
## 199 adair 1
## 202 adapting 1
## 215 adept 1
## 217 adequately 1
## 219 adherence 1
## 223 adjoined 1
## 225 adjourned 1
## 235 admiralty 1
## 246 admits 1
## 250 admonishing 1
## 254 adopting 1
## 255 adoption 1
## 259 adores 1
## 261 adorn 1
## 274 adventuring 1
## 275 adventurous 1
## 276 adversary 1
## 278 advertise 1
## 282 advertising 1
## 288 advisers 1
## 289 advises 1
## 292 advocates 1
## 310 affirmed 1
## 311 affix 1
## 331 afresh 1
## 339 againsts 1
## 341 agathas 1
## 343 aggrandise 1
## 344 aggrandizement 1
## 345 aggravated 1
## 347 aggregate 1
## 348 aggression 1
## 350 agincourt 1
## 368 agricola 1
## 369 agricultural 1
## 370 agriculture 1
## 371 ahead 1
## 372 ailed 1
## 375 aimable 1
## 380 aisles 1
## 382 aladdin 1
## 388 albion 1
## 389 alcove 1
## 390 alcoves 1
## 391 alderneys 1
## 392 alehouses 1
## 395 alfred 1
## 396 algebra 1
## 399 alienable 1
## 400 alienate 1
## 402 alienations 1
## 407 allay 1
## 409 alledged 1
## 411 allegretto 1
## 415 alleviate 1
## 416 alleviated 1
## 419 alley 1
## 424 alliterative 1
## 425 allot 1
## 426 allotted 1
## 429 allowably 1
## 434 allows 1
## 436 alloyed 1
## 439 alludes 1
## 444 almane 1
## 446 almshouses 1
## 452 alphabetically 1
## 459 altercation 1
## 466 alternatives 1
## 471 amateur 1
## 475 amazes 1
## 478 amber 1
## 479 ambiguous 1
## 483 amenable 1
## 484 amended 1
## 491 amicable 1
## 502 amplifying 1
## 512 ancestry 1
## 513 anchor 1
## 514 anchorage 1
## 517 andersons 1
## 524 angles 1
## 530 animals 1
## 535 animosities 1
## 536 anjou 1
## 543 anniversary 1
## 546 announces 1
## 549 annoyed 1
## 553 annulling 1
## 555 anonymous 1
## 561 answerit 1
## 564 antechamber 1
## 565 anthology 1
## 566 anthony 1
## 567 antichambers 1
## 573 antidote 1
## 575 antique 1
## 582 anxiousness 1
## 585 anymore 1
## 589 anywise 1
## 594 apeice 1
## 595 apiece 1
## 601 apologized 1
## 602 apologizing 1
## 604 apoplectic 1
## 605 apoplexy 1
## 606 apostrophe 1
## 608 appalled 1
## 610 apparatus 1
## 614 apparents 1
## 617 appealing 1
## 618 appeals 1
## 628 appendages 1
## 629 appertain 1
## 630 appertaining 1
## 632 appetites 1
## 634 applauding 1
## 635 applause 1
## 639 applicant 1
## 640 applicants 1
## 644 applies 1
## 649 appointments 1
## 651 appreciated 1
## 652 appreciating 1
## 653 appreciation 1
## 661 apprised 1
## 663 approachable 1
## 670 appropriating 1
## 671 appropriation 1
## 675 approver 1
## 680 apron 1
## 684 arbiters 1
## 689 arched 1
## 696 archway 1
## 697 arcturus 1
## 701 ardours 1
## 706 argumentative 1
## 712 arises 1
## 714 aristocratic 1
## 715 armadas 1
## 716 armed 1
## 717 arming 1
## 721 aroused 1
## 726 arranger 1
## 727 arranges 1
## 736 arrives 1
## 739 arrogant 1
## 740 arrow 1
## 744 arthur 1
## 748 articulation 1
## 750 artifices 1
## 753 artistic 1
## 757 ascend 1
## 760 ascends 1
## 766 ascribed 1
## 771 ashworth 1
## 779 aspersed 1
## 780 aspersion 1
## 783 aspires 1
## 784 aspiring 1
## 785 assail 1
## 787 assassins 1
## 788 assaulted 1
## 789 assemble 1
## 797 assents 1
## 803 assess 1
## 809 assignment 1
## 813 assistants 1
## 816 assizes 1
## 823 assorted 1
## 824 assorting 1
## 837 astonishes 1
## 843 atkinson 1
## 849 atoning 1
## 850 atrocities 1
## 860 attain 1
## 879 attentiveness 1
## 882 attics 1
## 884 attired 1
## 887 attorneys 1
## 897 aubin 1
## 898 auburn 1
## 899 audacious 1
## 900 audacity 1
## 904 auditor 1
## 905 auditors 1
## 906 aught 1
## 908 augmentation 1
## 910 augmenting 1
## 912 augured 1
## 918 auspicious 1
## 919 auspiciously 1
## 922 austin 1
## 923 authentic 1
## 924 authenticity 1
## 926 authoress 1
## 935 autumnal 1
## 936 auxiliary 1
## 945 averse 1
## 951 avocations 1
## 961 awaiting 1
## 965 awakening 1
## 966 awaking 1
## 969 awfulness 1
## 970 awhile 1
## 972 awkwardest 1
## 978 azure 1
## 979 babel 1
## 988 badge 1
## 989 badly 1
## 991 bahama 1
## 993 baited 1
## 994 baits 1
## 998 bakewell 1
## 999 baking 1
## 1001 balanced 1
## 1005 balmy 1
## 1006 banbury 1
## 1008 bandied 1
## 1009 banditti 1
## 1010 banging 1
## 1011 bangs 1
## 1014 banishment 1
## 1016 banking 1
## 1020 banns 1
## 1021 banquo 1
## 1022 banter 1
## 1023 barbarism 1
## 1024 barbarity 1
## 1027 barefaced 1
## 1030 barking 1
## 1031 barnes 1
## 1034 barometer 1
## 1038 baronetcies 1
## 1041 baronight 1
## 1042 baronne 1
## 1044 barouches 1
## 1045 barrel 1
## 1046 barren 1
## 1047 barrier 1
## 1051 baseball 1
## 1054 bashfulness 1
## 1057 basins 1
## 1060 baskets 1
## 1065 baths 1
## 1067 battled 1
## 1068 battles 1
## 1069 bawling 1
## 1070 bayes 1
## 1071 beach 1
## 1072 beachey 1
## 1073 beads 1
## 1074 beamed 1
## 1075 beaming 1
## 1077 bearable 1
## 1081 bearings 1
## 1083 beast 1
## 1084 beasts 1
## 1087 beatings 1
## 1088 beaufet 1
## 1089 beaulieu 1
## 1092 beautified 1
## 1093 beautifier 1
## 1097 beautifying 1
## 1100 beavers 1
## 1103 beckoned 1
## 1104 beckoning 1
## 1109 becomingness 1
## 1110 bedchamber 1
## 1115 bedtime 1
## 1116 beech 1
## 1118 beetle 1
## 1121 befalls 1
## 1125 befriend 1
## 1128 beggar 1
## 1154 belie 1
## 1155 belied 1
## 1161 belinda 1
## 1178 benefactors 1
## 1179 benefactress 1
## 1180 beneficence 1
## 1184 benefiting 1
## 1185 benefits 1
## 1188 benignant 1
## 1191 benumbed 1
## 1195 bequeathing 1
## 1198 berkshire 1
## 1199 bermuda 1
## 1201 bernards 1
## 1202 berth 1
## 1210 besought 1
## 1216 bestows 1
## 1217 betide 1
## 1218 betimes 1
## 1221 betrayer 1
## 1223 betrays 1
## 1228 betweens 1
## 1229 bewailed 1
## 1230 bewailing 1
## 1235 bewitches 1
## 1240 bickerings 1
## 1243 biddy 1
## 1244 bigger 1
## 1246 billet 1
## 1250 binary 1
## 1251 binding 1
## 1255 biography 1
## 1259 birthday 1
## 1260 birthright 1
## 1263 bitch 1
## 1264 biting 1
## 1270 blacken 1
## 1273 blacksmith 1
## 1274 blains 1
## 1283 blamelessness 1
## 1285 blanche 1
## 1287 blankets 1
## 1288 blanks 1
## 1292 bleak 1
## 1293 blemish 1
## 1295 blenheim 1
## 1298 blessedness 1
## 1302 blighted 1
## 1303 blights 1
## 1306 blinder 1
## 1308 blindly 1
## 1312 blister 1
## 1313 blocked 1
## 1315 blockheads 1
## 1320 blossom 1
## 1322 blots 1
## 1323 blotted 1
## 1324 blotting 1
## 1328 blowsy 1
## 1329 blues 1
## 1334 blunted 1
## 1335 bluntly 1
## 1336 bluntness 1
## 1341 bluster 1
## 1345 boards 1
## 1348 boastful 1
## 1350 boasts 1
## 1351 boatmen 1
## 1353 boatswain 1
## 1354 boded 1
## 1358 boiling 1
## 1359 boils 1
## 1360 boisterous 1
## 1361 boisterously 1
## 1365 bolts 1
## 1367 bonmots 1
## 1369 bonnets 1
## 1370 bonomi 1
## 1371 bookbinder 1
## 1373 bookish 1
## 1376 booksellers 1
## 1377 booted 1
## 1382 bores 1
## 1388 bosoms 1
## 1389 bosworth 1
## 1390 bother 1
## 1393 bottoms 1
## 1394 bough 1
## 1396 boulanger 1
## 1409 boxed 1
## 1412 brabourne 1
## 1414 bracelets 1
## 1417 bragging 1
## 1418 braids 1
## 1420 brained 1
## 1422 braithwaites 1
## 1424 branched 1
## 1426 brand 1
## 1428 branxholm 1
## 1429 bravado 1
## 1432 bravery 1
## 1433 braving 1
## 1434 bravissimo 1
## 1436 brawn 1
## 1439 breadth 1
## 1443 breakfasting 1
## 1445 breaks 1
## 1451 breathings 1
## 1453 breaths 1
## 1454 breeches 1
## 1458 breezes 1
## 1459 brethren 1
## 1460 brevity 1
## 1461 brewing 1
## 1462 bribe 1
## 1463 bribed 1
## 1464 bribery 1
## 1465 bribing 1
## 1467 brickbat 1
## 1468 bricklayer 1
## 1471 bridesmaids 1
## 1474 bridgets 1
## 1475 bridle 1
## 1480 brighten 1
## 1483 brightens 1
## 1498 briskness 1
## 1502 brittle 1
## 1506 broadly 1
## 1507 broadway 1
## 1509 brock 1
## 1510 brockham 1
## 1511 broiled 1
## 1515 bromley 1
## 1516 brood 1
## 1517 brooding 1
## 1518 broodings 1
## 1520 brooking 1
## 1521 broth 1
## 1523 brotherliness 1
## 1528 browne 1
## 1530 bruised 1
## 1531 bruises 1
## 1534 brunton 1
## 1535 brush 1
## 1539 buckles 1
## 1540 buffoonery 1
## 1546 bullen 1
## 1547 bulls 1
## 1548 burden 1
## 1549 burgess 1
## 1552 burlesque 1
## 1560 bushel 1
## 1561 busiest 1
## 1566 bustling 1
## 1570 buttered 1
## 1571 button 1
## 1572 buttons 1
## 1574 buyings 1
## 1577 bystanders 1
## 1578 cabbage 1
## 1579 cabin 1
## 1581 cabinets 1
## 1582 cadet 1
## 1583 caesar 1
## 1584 cakes 1
## 1587 calculates 1
## 1590 calendar 1
## 1593 callers 1
## 1597 calming 1
## 1600 cambric 1
## 1603 cameos 1
## 1607 campful 1
## 1609 canary 1
## 1611 candidates 1
## 1618 canopus 1
## 1619 canst 1
## 1620 canter 1
## 1621 canterbury 1
## 1622 canvas 1
## 1629 capacities 1
## 1631 caper 1
## 1635 capitalisations 1
## 1637 capped 1
## 1641 capriciousness 1
## 1645 captiously 1
## 1649 captivation 1
## 1651 captives 1
## 1652 captures 1
## 1653 caractacus 1
## 1667 caressing 1
## 1671 carmarthen 1
## 1674 carpentered 1
## 1675 carpenters 1
## 1677 carpeted 1
## 1678 carpets 1
## 1683 carrot 1
## 1686 carte 1
## 1689 cartneys 1
## 1691 cartwright 1
## 1698 casino 1
## 1699 cassandra 1
## 1702 cassiopeia 1
## 1706 casts 1
## 1707 casual 1
## 1708 catalogue 1
## 1712 catchword 1
## 1715 catholics 1
## 1721 causers 1
## 1724 cautioned 1
## 1731 caviller 1
## 1739 cedar 1
## 1744 celery 1
## 1746 cellars 1
## 1750 censuring 1
## 1752 central 1
## 1754 centred 1
## 1755 cents 1
## 1756 centuries 1
## 1758 ceremonial 1
## 1764 certainties 1
## 1767 certify 1
## 1769 cetera 1
## 1770 chagrin 1
## 1771 chagrined 1
## 1777 chairwomen 1
## 1779 chaises 1
## 1781 challenging 1
## 1783 chamberlayne 1
## 1786 champion 1
## 1791 chandler 1
## 1799 chapels 1
## 1801 chaperone 1
## 1802 chaperones 1
## 1805 chaplains 1
## 1810 characterise 1
## 1812 characteristics 1
## 1816 charectarestic 1
## 1820 charging 1
## 1833 chase 1
## 1834 chasing 1
## 1836 chasms 1
## 1837 chatsworth 1
## 1843 chawton 1
## 1846 chearful 1
## 1848 chearfullness 1
## 1849 chearfully 1
## 1852 cheating 1
## 1855 checker 1
## 1857 checks 1
## 1862 cheerer 1
## 1872 cheeses 1
## 1873 cheif 1
## 1874 cheifly 1
## 1875 cheltenham 1
## 1879 cherishes 1
## 1882 cheshire 1
## 1884 chestnut 1
## 1887 chick 1
## 1889 chickens 1
## 1892 chilblains 1
## 1896 childless 1
## 1898 chili 1
## 1900 chilled 1
## 1901 chilling 1
## 1902 chills 1
## 1903 chilly 1
## 1906 chivalry 1
## 1910 choked 1
## 1917 christchurch 1
## 1918 christendom 1
## 1920 christening 1
## 1922 christians 1
## 1925 chronological 1
## 1926 chuckle 1
## 1931 churchwardens 1
## 1932 churchyard 1
## 1934 chuser 1
## 1938 ciphers 1
## 1942 circuitous 1
## 1943 circular 1
## 1944 circulate 1
## 1948 circumspect 1
## 1953 circumventing 1
## 1954 cities 1
## 1955 citizen 1
## 1959 civilized 1
## 1967 clamour 1
## 1969 clandestinely 1
## 1973 claret 1
## 1976 clash 1
## 1979 classic 1
## 1981 clatter 1
## 1983 clause 1
## 1984 claverton 1
## 1985 clayton 1
## 1989 cleanliness 1
## 1990 cleanse 1
## 1991 cleansed 1
## 2000 clement 1
## 2001 cleopatra 1
## 2005 clerical 1
## 2012 cleverest 1
## 2018 climbing 1
## 2019 clime 1
## 2020 climes 1
## 2023 clink 1
## 2024 cliveland 1
## 2026 cloathes 1
## 2029 clogged 1
## 2030 clogs 1
## 2031 cloister 1
## 2032 cloisters 1
## 2036 closeness 1
## 2040 closeted 1
## 2043 closure 1
## 2048 clothing 1
## 2052 cloudy 1
## 2053 clover 1
## 2055 clump 1
## 2056 clumsy 1
## 2060 coachbox 1
## 2061 coaches 1
## 2062 coaching 1
## 2065 coachmanship 1
## 2066 coachmen 1
## 2067 coals 1
## 2073 coaxed 1
## 2075 cobwebs 1
## 2076 cockade 1
## 2077 cocked 1
## 2078 cockleshell 1
## 2079 cocoa 1
## 2080 coddling 1
## 2081 codes 1
## 2084 cogent 1
## 2085 cogitation 1
## 2086 coherent 1
## 2088 coincided 1
## 2090 coinciding 1
## 2106 collectively 1
## 2107 collector 1
## 2113 colonels 1
## 2114 colonnade 1
## 2118 colourless 1
## 2120 columella 1
## 2121 column 1
## 2127 combined 1
## 2129 comer 1
## 2130 comers 1
## 2136 comforter 1
## 2137 comforters 1
## 2142 comical 1
## 2144 comings 1
## 2150 commandingly 1
## 2152 commence 1
## 2156 commendable 1
## 2160 commending 1
## 2162 commented 1
## 2166 commiserated 1
## 2167 commiserating 1
## 2172 commissioning 1
## 2173 commissions 1
## 2176 committee 1
## 2180 commoner 1
## 2184 commonplaces 1
## 2186 commonwealth 1
## 2193 communicativeness 1
## 2195 compactness 1
## 2198 companionably 1
## 2200 companionship 1
## 2206 compares 1
## 2210 compartment 1
## 2214 compassionately 1
## 2217 compensate 1
## 2218 compensation 1
## 2222 competitors 1
## 2223 compilation 1
## 2225 complacent 1
## 2229 complainer 1
## 2240 completest 1
## 2245 compliant 1
## 2246 complicate 1
## 2247 complicated 1
## 2253 complimenter 1
## 2257 complyed 1
## 2259 component 1
## 2263 composer 1
## 2264 composing 1
## 2272 comprehends 1
## 2273 comprehensible 1
## 2276 compress 1
## 2278 compression 1
## 2282 compromised 1
## 2283 compromising 1
## 2285 compts 1
## 2287 compute 1
## 2295 concealments 1
## 2296 conceals 1
## 2299 conceits 1
## 2303 concentrated 1
## 2304 concentrating 1
## 2307 conceptions 1
## 2313 concerted 1
## 2314 concerting 1
## 2316 concerts 1
## 2321 conciliation 1
## 2330 conclusive 1
## 2331 conclusively 1
## 2333 concussion 1
## 2338 condemns 1
## 2342 condescendingly 1
## 2343 condescends 1
## 2345 condescensions 1
## 2350 conditioning 1
## 2359 conductor 1
## 2365 confering 1
## 2368 confers 1
## 2377 confidantes 1
## 2381 confidences 1
## 2384 confidentially 1
## 2386 confides 1
## 2391 confines 1
## 2398 conflicts 1
## 2406 confusedly 1
## 2408 congenial 1
## 2422 conjunction 1
## 2423 conjunctions 1
## 2424 conjure 1
## 2425 conjurer 1
## 2433 conning 1
## 2436 connived 1
## 2438 connoisseur 1
## 2439 connoisseurship 1
## 2455 consents 1
## 2461 conservatory 1
## 2472 consign 1
## 2474 consigning 1
## 2475 consist 1
## 2477 consistence 1
## 2484 consolations 1
## 2489 consonance 1
## 2491 conspired 1
## 2492 constable 1
## 2498 constitute 1
## 2499 constituted 1
## 2502 constitutions 1
## 2503 constrain 1
## 2507 construed 1
## 2508 construing 1
## 2514 consults 1
## 2516 consummate 1
## 2518 consumptive 1
## 2520 contagion 1
## 2525 contaminated 1
## 2530 contemporaries 1
## 2533 contemptibly 1
## 2547 contingencies 1
## 2548 contingent 1
## 2560 contractions 1
## 2566 contrariety 1
## 2567 contrariwise 1
## 2573 contributes 1
## 2582 contriver 1
## 2586 controllable 1
## 2587 controlled 1
## 2588 controverted 1
## 2589 contusion 1
## 2591 conundrums 1
## 2603 conversible 1
## 2607 converting 1
## 2608 converts 1
## 2613 convicted 1
## 2618 convinces 1
## 2620 convivial 1
## 2622 cookery 1
## 2623 cooking 1
## 2627 cooling 1
## 2631 cooperate 1
## 2636 copses 1
## 2639 coquelicot 1
## 2642 corals 1
## 2648 corners 1
## 2649 cornwall 1
## 2650 coroneted 1
## 2651 corporal 1
## 2654 corpse 1
## 2658 correction 1
## 2659 corrective 1
## 2668 corresponds 1
## 2671 corroboration 1
## 2672 corrupt 1
## 2674 corrupting 1
## 2675 corruption 1
## 2676 costing 1
## 2677 costliness 1
## 2680 cotillion 1
## 2681 cotillions 1
## 2687 couch 1
## 2688 couched 1
## 2691 coughs 1
## 2694 councillors 1
## 2701 countenanced 1
## 2706 counteracting 1
## 2708 counteractions 1
## 2710 counterpane 1
## 2712 counterpoise 1
## 2713 countess 1
## 2715 counting 1
## 2719 countrywoman 1
## 2722 coupled 1
## 2724 couplet 1
## 2726 courageous 1
## 2727 courageously 1
## 2729 courcys 1
## 2730 courier 1
## 2735 courteney 1
## 2743 courts 1
## 2745 courtships 1
## 2749 covenant 1
## 2750 covent 1
## 2754 coverley 1
## 2756 covet 1
## 2757 covies 1
## 2758 cowardly 1
## 2761 coxcombs 1
## 2763 crabbe 1
## 2764 cradle 1
## 2765 cradles 1
## 2766 craig 1
## 2767 cramer 1
## 2768 crammed 1
## 2770 cramped 1
## 2771 cramps 1
## 2772 crape 1
## 2777 crayon 1
## 2785 creative 1
## 2788 credible 1
## 2792 credited 1
## 2793 crediting 1
## 2794 creditor 1
## 2797 credulous 1
## 2803 cribbage 1
## 2806 cries 1
## 2810 crimson 1
## 2812 cripple 1
## 2817 criticising 1
## 2820 critics 1
## 2822 croaking 1
## 2828 crosbie 1
## 2831 crosser 1
## 2832 crosses 1
## 2840 crowns 1
## 2841 crowsfoot 1
## 2847 crumbles 1
## 2848 crushed 1
## 2849 crushing 1
## 2852 cuffs 1
## 2853 culled 1
## 2854 culpable 1
## 2860 cumbersome 1
## 2861 cummin 1
## 2863 cupboards 1
## 2864 cupid 1
## 2868 curiosities 1
## 2871 curiously 1
## 2872 curled 1
## 2873 curls 1
## 2874 currants 1
## 2877 curry 1
## 2885 curtseys 1
## 2886 curtsied 1
## 2887 curtsies 1
## 2888 curtsy 1
## 2889 curtsying 1
## 2890 curve 1
## 2892 custard 1
## 2893 custody 1
## 2895 customs 1
## 2896 cutlets 1
## 2898 daemon 1
## 2900 daggers 1
## 2907 damaged 1
## 2909 damask 1
## 2911 damsels 1
## 2920 dangerously 1
## 2926 darest 1
## 2928 daringly 1
## 2929 darings 1
## 2930 darkened 1
## 2933 darkwood 1
## 2936 dartford 1
## 2944 dating 1
## 2949 davis 1
## 2950 dawdle 1
## 2955 dawning 1
## 2958 dazzle 1
## 2959 dazzling 1
## 2960 deaden 1
## 2961 deadened 1
## 2963 deafer 1
## 2964 deafness 1
## 2967 deals 1
## 2969 deanery 1
## 2976 deathlike 1
## 2977 debar 1
## 2979 debased 1
## 2985 debatings 1
## 2986 debility 1
## 2988 debut 1
## 2989 decamping 1
## 2991 decayed 1
## 2992 decaying 1
## 2997 deceitfull 1
## 3000 deceives 1
## 3003 decencies 1
## 3006 decently 1
## 3008 deceptions 1
## 3014 decipher 1
## 3015 deciphered 1
## 3021 deckers 1
## 3031 decorated 1
## 3033 decorums 1
## 3034 decrease 1
## 3036 decrepitude 1
## 3037 decried 1
## 3038 decrying 1
## 3040 dedicating 1
## 3041 dedication 1
## 3043 deducted 1
## 3044 deductible 1
## 3045 deducting 1
## 3047 deedily 1
## 3052 defamed 1
## 3053 defaming 1
## 3054 default 1
## 3055 defeat 1
## 3056 defeating 1
## 3065 defense 1
## 3069 deferring 1
## 3075 defies 1
## 3076 definable 1
## 3079 definite 1
## 3082 defrauding 1
## 3083 defunct 1
## 3085 degenerate 1
## 3088 degraded 1
## 3093 deigning 1
## 3095 dejectedly 1
## 3103 delegating 1
## 3104 deletions 1
## 3105 deliberate 1
## 3106 deliberated 1
## 3110 deliberations 1
## 3111 delicacies 1
## 3119 delightfull 1
## 3129 delivering 1
## 3131 deluded 1
## 3132 deluding 1
## 3139 demeanor 1
## 3141 demesne 1
## 3142 demesnes 1
## 3143 demonstrations 1
## 3144 demur 1
## 3146 demurred 1
## 3147 demurs 1
## 3149 denials 1
## 3151 denmark 1
## 3152 dennison 1
## 3154 denominated 1
## 3158 denotes 1
## 3159 denoting 1
## 3166 departures 1
## 3168 dependance 1
## 3172 dependencies 1
## 3176 depictured 1
## 3180 deploring 1
## 3182 depose 1
## 3187 depreciate 1
## 3189 depreciation 1
## 3190 depredations 1
## 3193 depressing 1
## 3198 depth 1
## 3199 deputation 1
## 3206 derives 1
## 3208 derogatory 1
## 3238 desirably 1
## 3244 desist 1
## 3251 despatches 1
## 3252 despatching 1
## 3257 despicably 1
## 3260 despises 1
## 3262 despite 1
## 3263 despoiling 1
## 3267 despotic 1
## 3269 destin 1
## 3281 desultory 1
## 3285 detachment 1
## 3299 determinateness 1
## 3304 deterred 1
## 3307 detestably 1
## 3308 detestation 1
## 3311 dethrone 1
## 3312 detract 1
## 3313 detriment 1
## 3314 detrimental 1
## 3315 deuce 1
## 3316 develop 1
## 3317 developing 1
## 3319 devereux 1
## 3320 deviated 1
## 3323 devices 1
## 3328 devizes 1
## 3330 devoirs 1
## 3332 devolved 1
## 3336 devotedly 1
## 3339 devotions 1
## 3340 devoured 1
## 3341 devourer 1
## 3344 dexterously 1
## 3347 dialogues 1
## 3349 diana 1
## 3350 diary 1
## 3353 dictates 1
## 3357 didactic 1
## 3373 diffusely 1
## 3374 diffuseness 1
## 3375 diffuses 1
## 3376 diffusion 1
## 3378 dignifies 1
## 3379 dignities 1
## 3381 digress 1
## 3383 digressions 1
## 3384 dilapidations 1
## 3385 dilatoriness 1
## 3387 dilemma 1
## 3389 diligently 1
## 3390 diluted 1
## 3393 diminushed 1
## 3397 dimity 1
## 3398 dimly 1
## 3399 dimming 1
## 3400 dimness 1
## 3404 dinings 1
## 3413 director 1
## 3422 disagreeableness 1
## 3423 disagreeables 1
## 3424 disagreeably 1
## 3425 disagreed 1
## 3428 disagrees 1
## 3432 disappearing 1
## 3441 disapproves 1
## 3444 disarmed 1
## 3445 disaster 1
## 3446 disastrous 1
## 3447 disbelief 1
## 3452 discernible 1
## 3462 disclaimers 1
## 3464 disclose 1
## 3466 discloses 1
## 3469 discomfited 1
## 3478 discontentedness 1
## 3480 discontinuance 1
## 3481 discontinue 1
## 3482 discontinued 1
## 3483 discontinuing 1
## 3484 discordancies 1
## 3491 discoverable 1
## 3498 discreditable 1
## 3500 discreeter 1
## 3501 discreetly 1
## 3503 discriminating 1
## 3509 discussions 1
## 3512 disdainful 1
## 3513 disdaining 1
## 3514 diseased 1
## 3515 disencumbered 1
## 3518 disengagement 1
## 3519 disengaging 1
## 3520 disentangled 1
## 3521 disesteem 1
## 3523 disfigured 1
## 3534 disgusts 1
## 3535 dishabille 1
## 3538 dishonest 1
## 3539 dishonestly 1
## 3540 dishonesty 1
## 3543 dishonourable 1
## 3544 dishonourably 1
## 3546 disincline 1
## 3548 disingenuous 1
## 3549 disingenuousness 1
## 3550 disinherited 1
## 3552 disinterestedly 1
## 3554 disjointed 1
## 3559 dislocated 1
## 3562 dismembered 1
## 3567 dismission 1
## 3568 dismount 1
## 3570 disobedience 1
## 3571 disobedient 1
## 3573 disoblige 1
## 3578 disparagement 1
## 3582 dispatches 1
## 3584 dispelled 1
## 3585 dispelling 1
## 3586 dispensation 1
## 3588 dispensed 1
## 3589 dispensing 1
## 3594 dispiriting 1
## 3606 disposes 1
## 3611 disproportionate 1
## 3615 disputing 1
## 3616 disqualifications 1
## 3617 disqualified 1
## 3619 disquieted 1
## 3620 disquisition 1
## 3626 dissapointed 1
## 3627 dissapointment 1
## 3631 dissembling 1
## 3633 dissented 1
## 3634 dissentient 1
## 3635 dissenting 1
## 3639 dissimulation 1
## 3640 dissipate 1
## 3642 dissipating 1
## 3647 dissolving 1
## 3653 distantly 1
## 3655 distasteful 1
## 3660 distinctness 1
## 3662 distinguishable 1
## 3664 distinguishes 1
## 3669 distracting 1
## 3670 distraction 1
## 3671 distracts 1
## 3675 distressfully 1
## 3681 distributor 1
## 3684 distrusting 1
## 3685 distrusts 1
## 3688 disturbances 1
## 3690 disturber 1
## 3691 disturbers 1
## 3693 ditch 1
## 3696 diversities 1
## 3700 divested 1
## 3705 divined 1
## 3706 divining 1
## 3707 divinity 1
## 3716 dobson 1
## 3717 docile 1
## 3723 document 1
## 3727 dolls 1
## 3730 domesticated 1
## 3731 domestics 1
## 3732 domiciled 1
## 3733 domingo 1
## 3735 donalds 1
## 3737 donation 1
## 3741 donkeys 1
## 3742 donors 1
## 3745 dooming 1
## 3748 dorking 1
## 3749 dormant 1
## 3750 dormouse 1
## 3756 dotted 1
## 3759 doubling 1
## 3764 doubtfully 1
## 3769 douceur 1
## 3770 douglas 1
## 3772 dovedale 1
## 3773 dover 1
## 3776 downloading 1
## 3780 downy 1
## 3783 draft 1
## 3785 dragoons 1
## 3787 drains 1
## 3789 drakes 1
## 3790 dramatic 1
## 3791 dramatis 1
## 3797 drawbacks 1
## 3798 drawbridge 1
## 3805 drays 1
## 3806 drayton 1
## 3815 dreams 1
## 3817 dreary 1
## 3818 dresden 1
## 3824 dressy 1
## 3826 driest 1
## 3828 drifted 1
## 3829 drifting 1
## 3830 drills 1
## 3838 driver 1
## 3839 drivers 1
## 3840 drives 1
## 3842 drizzle 1
## 3844 drooping 1
## 3852 drudge 1
## 3853 druggist 1
## 3854 drugs 1
## 3857 drunken 1
## 3858 drunkenness 1
## 3859 drury 1
## 3860 dryer 1
## 3863 duberley 1
## 3864 dubious 1
## 3865 dublin 1
## 3866 duchess 1
## 3868 ductility 1
## 3869 duenna 1
## 3871 dugdale 1
## 3875 dumpling 1
## 3876 dumplings 1
## 3877 dunbeath 1
## 3878 dungeon 1
## 3881 duplicate 1
## 3883 durability 1
## 3885 durands 1
## 3888 dusty 1
## 3892 dwarf 1
## 3895 dwellings 1
## 3896 dwells 1
## 3898 dwindle 1
## 3899 dwindled 1
## 3913 eased 1
## 3918 eastbourne 1
## 3920 easterly 1
## 3921 eastern 1
## 3922 easton 1
## 3923 eastward 1
## 3926 eater 1
## 3931 ebullition 1
## 3937 eclipse 1
## 3938 eclipsed 1
## 3948 edgeworth 1
## 3950 edifices 1
## 3951 edify 1
## 3953 edited 1
## 3958 educate 1
## 3962 educational 1
## 3964 edwards 1
## 3965 effaced 1
## 3972 efficacious 1
## 3997 eleanors 1
## 3999 election 1
## 4000 electrified 1
## 4007 elephant 1
## 4013 eligibilities 1
## 4018 eliot 1
## 4021 elizabeths 1
## 4023 ellinor 1
## 4027 ellis 1
## 4030 elocution 1
## 4032 eloisas 1
## 4042 elucidated 1
## 4044 elude 1
## 4047 emancipation 1
## 4049 embarrass 1
## 4056 embers 1
## 4057 embitter 1
## 4058 emblem 1
## 4059 embodied 1
## 4060 embody 1
## 4067 embroiled 1
## 4068 emendation 1
## 4070 emergency 1
## 4075 emitted 1
## 4076 emmas 1
## 4077 emmeline 1
## 4078 emminent 1
## 4081 emperors 1
## 4083 emphasised 1
## 4084 emphatic 1
## 4088 employee 1
## 4090 employer 1
## 4095 empties 1
## 4098 emulate 1
## 4099 emulating 1
## 4100 emulation 1
## 4104 enamoured 1
## 4105 encamped 1
## 4107 enchanting 1
## 4110 enclosing 1
## 4112 enclosures 1
## 4113 encoding 1
## 4114 encore 1
## 4117 encountering 1
## 4122 encourager 1
## 4125 encreasing 1
## 4128 encroachments 1
## 4129 encumber 1
## 4134 endangering 1
## 4138 endears 1
## 4139 endeavor 1
## 4140 endeavoring 1
## 4141 endeavors 1
## 4153 endurances 1
## 4157 endymion 1
## 4162 enfeebled 1
## 4165 enforcement 1
## 4167 enfranchisement 1
## 4172 engages 1
## 4174 engagingly 1
## 4177 englishman 1
## 4182 engrosses 1
## 4185 enhanced 1
## 4186 enhancement 1
## 4187 enigmas 1
## 4189 enjoyable 1
## 4197 enlarging 1
## 4198 enlighten 1
## 4202 enlivening 1
## 4203 enmity 1
## 4204 ennight 1
## 4205 ennoble 1
## 4209 enormously 1
## 4213 enquirer 1
## 4219 enrolled 1
## 4221 ensemble 1
## 4222 ensign 1
## 4223 ensigncy 1
## 4224 enslaved 1
## 4230 ensuring 1
## 4233 entailing 1
## 4235 entanglement 1
## 4239 enters 1
## 4243 entertainingly 1
## 4247 enthusiast 1
## 4249 enthusiasts 1
## 4254 entitling 1
## 4257 entrapped 1
## 4265 entry 1
## 4266 enumerate 1
## 4267 enumerated 1
## 4270 envelop 1
## 4277 envyings 1
## 4278 eoconomical 1
## 4279 eoconomy 1
## 4281 epilogue 1
## 4283 epitaph 1
## 4284 epithet 1
## 4286 epoch 1
## 4291 equalling 1
## 4294 equinox 1
## 4298 equitable 1
## 4303 erase 1
## 4304 erasing 1
## 4305 erect 1
## 4310 errant 1
## 4311 errantry 1
## 4312 erratic 1
## 4314 erring 1
## 4315 erroneous 1
## 4324 escorting 1
## 4325 escritoire 1
## 4326 espalier 1
## 4329 espionage 1
## 4330 espoused 1
## 4331 esprit 1
## 4332 esqre 1
## 4333 esquire 1
## 4335 essence 1
## 4358 eternally 1
## 4359 eternity 1
## 4361 etourderie 1
## 4362 eulogium 1
## 4363 eulogized 1
## 4364 europe 1
## 4366 evanescent 1
## 4373 eventful 1
## 4387 evidences 1
## 4392 evinced 1
## 4393 evincing 1
## 4395 exacted 1
## 4396 exacting 1
## 4399 exaggerate 1
## 4402 exalt 1
## 4405 examinations 1
## 4412 exasperating 1
## 4417 exceeds 1
## 4419 excelled 1
## 4422 excellency 1
## 4425 excells 1
## 4430 exceptional 1
## 4438 exchanging 1
## 4442 exciter 1
## 4454 exculpate 1
## 4457 excursive 1
## 4458 excursus 1
## 4463 execrable 1
## 4464 execute 1
## 4466 executing 1
## 4469 executor 1
## 4470 executors 1
## 4472 exemplification 1
## 4473 exemplify 1
## 4478 exercises 1
## 4486 exeunt 1
## 4487 exhaust 1
## 4489 exhaustless 1
## 4494 exhibitions 1
## 4495 exhilarated 1
## 4496 exhilaration 1
## 4497 exigeant 1
## 4499 exile 1
## 4500 exiled 1
## 4507 expand 1
## 4508 expatiate 1
## 4511 expectant 1
## 4520 expedite 1
## 4521 expedited 1
## 4523 expeditious 1
## 4525 expel 1
## 4528 expend 1
## 4533 expensively 1
## 4534 expensiveness 1
## 4539 experimental 1
## 4541 expiation 1
## 4542 expiration 1
## 4543 expire 1
## 4545 expires 1
## 4546 expiring 1
## 4555 explicitly 1
## 4556 exploit 1
## 4557 exploits 1
## 4559 explored 1
## 4561 exporting 1
## 4564 exposes 1
## 4566 expostulate 1
## 4567 expostulation 1
## 4571 expresses 1
## 4574 expressione 1
## 4581 extacies 1
## 4582 extacy 1
## 4583 extant 1
## 4584 extempore 1
## 4591 extenuating 1
## 4593 extenuations 1
## 4595 exteriors 1
## 4598 extinguish 1
## 4600 extolling 1
## 4603 extorting 1
## 4604 extra 1
## 4606 extracted 1
## 4607 extractions 1
## 4609 extraordinarily 1
## 4615 extremes 1
## 4616 extremest 1
## 4617 extremities 1
## 4619 extricated 1
## 4622 exuberant 1
## 4623 exult 1
## 4633 facilitate 1
## 4634 facility 1
## 4638 faculty 1
## 4640 fading 1
## 4642 faggot 1
## 4653 faintings 1
## 4654 faintly 1
## 4655 faintness 1
## 4656 faints 1
## 4657 fairbanks 1
## 4662 fairness 1
## 4667 faithless 1
## 4670 fallow 1
## 4676 falter 1
## 4679 famed 1
## 4681 familiarise 1
## 4682 familiarised 1
## 4684 familiarized 1
## 4689 famously 1
## 4693 fancifulness 1
## 4697 farce 1
## 4698 fared 1
## 4700 faring 1
## 4706 farrier 1
## 4710 fascinating 1
## 4714 fashionably 1
## 4719 fastener 1
## 4720 fastening 1
## 4723 fastidiousness 1
## 4728 fatherly 1
## 4730 fathomed 1
## 4735 faulkland 1
## 4740 favor 1
## 4745 favourer 1
## 4754 fearfulness 1
## 4757 fearlessly 1
## 4758 fearlessness 1
## 4761 feasted 1
## 4765 featured 1
## 4768 febry 1
## 4778 feign 1
## 4780 feigning 1
## 4783 felicitous 1
## 4785 felling 1
## 4788 fellowship 1
## 4789 felow 1
## 4794 fenced 1
## 4797 fertile 1
## 4799 fervently 1
## 4801 festival 1
## 4802 festivities 1
## 4803 festivity 1
## 4804 festoons 1
## 4810 feuillide 1
## 4814 fewest 1
## 4820 fidgetiness 1
## 4821 fidgeting 1
## 4822 fidgetings 1
## 4824 fidgety 1
## 4827 fiend 1
## 4829 fifteenth 1
## 4831 fiftieth 1
## 4837 figured 1
## 4849 financial 1
## 4856 finessed 1
## 4857 finessing 1
## 4860 fingering 1
## 4866 fired 1
## 4875 firstly 1
## 4877 fitly 1
## 4880 fitter 1
## 4881 fittest 1
## 4884 fitzowen 1
## 4887 fixedly 1
## 4890 flags 1
## 4892 flambeau 1
## 4893 flambeaus 1
## 4894 flame 1
## 4895 flaming 1
## 4897 flaring 1
## 4898 flatness 1
## 4902 flatterers 1
## 4905 flatters 1
## 4908 flavoured 1
## 4911 flexibility 1
## 4915 flighty 1
## 4919 flirtations 1
## 4923 floated 1
## 4924 floating 1
## 4925 flock 1
## 4926 flocks 1
## 4927 flogged 1
## 4928 flogging 1
## 4930 floors 1
## 4932 florid 1
## 4933 flourish 1
## 4934 flourished 1
## 4943 fluctuation 1
## 4944 fluctuations 1
## 4947 flung 1
## 4948 flurried 1
## 4949 flurry 1
## 4950 flush 1
## 4954 fluttering 1
## 4955 flutterings 1
## 4957 foggy 1
## 4959 foiled 1
## 4960 foils 1
## 4963 foliage 1
## 4964 folios 1
## 4981 footed 1
## 4989 foppery 1
## 4990 forbad 1
## 4999 forborne 1
## 5004 forded 1
## 5005 fordyce 1
## 5006 foreboded 1
## 5011 foregrounds 1
## 5012 forehand 1
## 5013 forehead 1
## 5017 foreplanned 1
## 5027 forestalling 1
## 5030 foretelling 1
## 5035 forfeiting 1
## 5040 forgetfullness 1
## 5048 forgo 1
## 5067 forsters 1
## 5068 forswear 1
## 5071 fortheringay 1
## 5073 fortifying 1
## 5076 fortuitous 1
## 5093 fountainhead 1
## 5095 fourteenth 1
## 5097 fourthly 1
## 5099 foxhounds 1
## 5100 fracas 1
## 5101 fractured 1
## 5102 fragment 1
## 5103 fragmented 1
## 5104 fragments 1
## 5106 frailty 1
## 5109 frames 1
## 5114 frankland 1
## 5115 frankly 1
## 5121 fraud 1
## 5122 frauds 1
## 5124 freak 1
## 5126 freckled 1
## 5135 freeman 1
## 5141 frenchwoman 1
## 5145 frequented 1
## 5146 frequenters 1
## 5147 frequenting 1
## 5149 fresco 1
## 5153 freshest 1
## 5155 fretful 1
## 5158 frets 1
## 5160 fretting 1
## 5161 fricassee 1
## 5166 friendlier 1
## 5167 friendliest 1
## 5174 frighted 1
## 5178 frightens 1
## 5180 frightfully 1
## 5181 frights 1
## 5183 frisks 1
## 5185 frock 1
## 5186 frocks 1
## 5187 froid 1
## 5192 fronts 1
## 5195 frosty 1
## 5200 fruitful 1
## 5201 fruition 1
## 5204 fugitives 1
## 5213 fulness 1
## 5214 funded 1
## 5215 fundraising 1
## 5216 funds 1
## 5218 funereal 1
## 5219 furious 1
## 5220 furlong 1
## 5221 furlongs 1
## 5224 furnishes 1
## 5229 futurity 1
## 5230 gadding 1
## 5237 gains 1
## 5238 gaiters 1
## 5241 gallantly 1
## 5244 gallants 1
## 5247 galling 1
## 5248 gallop 1
## 5249 galloped 1
## 5250 galloping 1
## 5251 gamekeeper 1
## 5255 gammon 1
## 5256 gaped 1
## 5257 gapes 1
## 5264 gargery 1
## 5265 garret 1
## 5266 garrets 1
## 5267 garrick 1
## 5268 garrison 1
## 5269 garters 1
## 5270 gascoigne 1
## 5275 gaucherie 1
## 5276 gaudy 1
## 5278 gayest 1
## 5279 gazebos 1
## 5281 gazes 1
## 5283 gbnewby 1
## 5284 geese 1
## 5295 genlis 1
## 5297 genteelly 1
## 5298 gentilities 1
## 5305 gentlest 1
## 5308 gentry 1
## 5310 genuinely 1
## 5314 geraniums 1
## 5317 gestures 1
## 5319 giant 1
## 5320 giants 1
## 5322 gibberish 1
## 5324 gibson 1
## 5325 giddiness 1
## 5329 giggle 1
## 5330 giggling 1
## 5335 gingerbread 1
## 5339 girlishly 1
## 5356 glazing 1
## 5358 gleaning 1
## 5359 glebe 1
## 5360 glenford 1
## 5361 glibly 1
## 5362 glide 1
## 5363 gliding 1
## 5364 glimmer 1
## 5366 glimpses 1
## 5368 gloomily 1
## 5369 gloominess 1
## 5375 gloss 1
## 5376 glossed 1
## 5378 gloucester 1
## 5380 glove 1
## 5384 glued 1
## 5385 gnawing 1
## 5386 goals 1
## 5387 godby 1
## 5392 goers 1
## 5396 goodhumoured 1
## 5397 goodly 1
## 5399 goodson 1
## 5402 gooseberry 1
## 5404 gossiping 1
## 5405 gossips 1
## 5407 goulding 1
## 5411 governance 1
## 5416 governor 1
## 5423 gracefull 1
## 5425 gracefulness 1
## 5435 grain 1
## 5436 grammar 1
## 5437 grammarian 1
## 5438 grammatical 1
## 5441 grandchildren 1
## 5448 grandmamma 1
## 5452 grandpapas 1
## 5456 granting 1
## 5457 grantley 1
## 5459 grapes 1
## 5461 grasp 1
## 5462 grasped 1
## 5465 grated 1
## 5474 grating 1
## 5482 grazier 1
## 5483 grease 1
## 5484 greasy 1
## 5487 greatcoated 1
## 5494 greediness 1
## 5498 greenhouse 1
## 5499 greenroom 1
## 5500 greensward 1
## 5503 gregorys 1
## 5505 greive 1
## 5510 griefs 1
## 5511 grierson 1
## 5520 griping 1
## 5522 groans 1
## 5523 grocer 1
## 5526 groping 1
## 5528 grossest 1
## 5537 grouped 1
## 5545 grudge 1
## 5554 guards 1
## 5557 guesses 1
## 5562 guidable 1
## 5566 guides 1
## 5571 guiltless 1
## 5575 gunsmith 1
## 5577 gusts 1
## 5579 gutters 1
## 5580 haberdasher 1
## 5586 habitually 1
## 5587 habituated 1
## 5588 habitude 1
## 5591 haggard 1
## 5593 haggling 1
## 5595 hairdresser 1
## 5597 hairs 1
## 5598 halloo 1
## 5604 hamiltons 1
## 5606 hammer 1
## 5607 hampden 1
## 5608 hampshire 1
## 5609 handbarrow 1
## 5614 handles 1
## 5622 hanger 1
## 5641 harasses 1
## 5642 harassing 1
## 5645 harbours 1
## 5648 hardening 1
## 5651 hardily 1
## 5660 harmonise 1
## 5661 harmonised 1
## 5663 harness 1
## 5664 harpsichord 1
## 5666 harringtons 1
## 5668 harrison 1
## 5671 harsher 1
## 5672 harshest 1
## 5674 harshness 1
## 5676 hartshorn 1
## 5680 hashes 1
## 5689 hatefully 1
## 5691 hatfield 1
## 5694 hatton 1
## 5695 haughtiness 1
## 5698 haunches 1
## 5699 haunt 1
## 5701 haunting 1
## 5703 hautboy 1
## 5704 hautboys 1
## 5707 havoc 1
## 5715 hazel 1
## 5718 headaches 1
## 5720 headquarters 1
## 5722 headship 1
## 5724 healed 1
## 5725 healing 1
## 5728 healthfulness 1
## 5730 heaped 1
## 5732 hearer 1
## 5737 heartache 1
## 5738 heartburnings 1
## 5741 heartening 1
## 5743 hearth 1
## 5744 heartiest 1
## 5747 heartless 1
## 5753 heats 1
## 5754 heave 1
## 5755 heaved 1
## 5759 heavier 1
## 5763 hectic 1
## 5765 hedgerow 1
## 5769 heelpeiced 1
## 5770 heels 1
## 5775 heightenings 1
## 5776 heights 1
## 5777 heinous 1
## 5779 heiresses 1
## 5786 helps 1
## 5787 hemmed 1
## 5793 henshawe 1
## 5794 herald 1
## 5797 hereby 1
## 5799 herefordshire 1
## 5801 heritage 1
## 5805 heroically 1
## 5818 heterogeneous 1
## 5826 highflown 1
## 5829 hilarity 1
## 5832 hinder 1
## 5833 hindered 1
## 5845 hoard 1
## 5846 hoarded 1
## 5848 hobby 1
## 5851 holboun 1
## 5855 holford 1
## 5858 holla 1
## 5860 hollowed 1
## 5861 holly 1
## 5862 holyhead 1
## 5863 homage 1
## 5864 homely 1
## 5866 homestall 1
## 5867 homewards 1
## 5871 honey 1
## 5872 honeysuckles 1
## 5875 honorable 1
## 5876 honorably 1
## 5886 hopelessness 1
## 5889 hopped 1
## 5891 hornpipe 1
## 5895 horridest 1
## 5903 horsepond 1
## 5907 hospitably 1
## 5910 hostile 1
## 5912 hotels 1
## 5914 hounds 1
## 5915 hounslow 1
## 5919 housebreaking 1
## 5922 housekeepers 1
## 5926 houseroom 1
## 5929 howsoever 1
## 5932 humane 1
## 5933 humanely 1
## 5937 humbler 1
## 5941 humiliations 1
## 5943 hummed 1
## 5944 humming 1
## 5945 humored 1
## 5946 humorous 1
## 5950 humouring 1
## 5952 humourous 1
## 5955 humphing 1
## 5967 hunts 1
## 5968 huntsman 1
## 5969 hurricane 1
## 5974 hursts 1
## 5975 hurtful 1
## 5976 hurting 1
## 5981 hussy 1
## 5983 huswifes 1
## 5985 hyacinths 1
## 5987 hyperbolical 1
## 5988 hypertext 1
## 5994 ibbotsons 1
## 5995 iddesleigh 1
## 5997 identification 1
## 5999 idiot 1
## 6000 idled 1
## 6002 idler 1
## 6003 idlest 1
## 6004 idling 1
## 6006 ignoble 1
## 6007 ignobly 1
## 6010 illaudable 1
## 6012 illgotten 1
## 6018 illumined 1
## 6019 illusion 1
## 6020 illustrate 1
## 6021 illustrated 1
## 6024 illustrious 1
## 6026 imaged 1
## 6027 imagery 1
## 6037 imaginist 1
## 6038 imbecility 1
## 6041 imitated 1
## 6042 imitating 1
## 6044 imitations 1
## 6045 imitators 1
## 6046 immaterial 1
## 6047 immeasurable 1
## 6051 immensely 1
## 6052 immethodical 1
## 6055 immoral 1
## 6056 immortalised 1
## 6057 immortality 1
## 6060 impair 1
## 6067 imparting 1
## 6073 impeaching 1
## 6076 impediments 1
## 6080 impenetrably 1
## 6089 imperturbably 1
## 6092 implacability 1
## 6095 implicated 1
## 6098 implicitness 1
## 6101 implore 1
## 6102 implored 1
## 6103 imploring 1
## 6105 implying 1
## 6106 impolite 1
## 6111 importation 1
## 6115 importuned 1
## 6124 impoverishing 1
## 6125 impracticable 1
## 6126 impregnable 1
## 6129 impressing 1
## 6132 impressive 1
## 6134 imprint 1
## 6135 imprison 1
## 6143 improvable 1
## 6150 improvident 1
## 6151 improvidently 1
## 6154 imprudencies 1
## 6156 imprudently 1
## 6159 impudently 1
## 6161 impulses 1
## 6162 impunity 1
## 6163 impurities 1
## 6170 inaccurate 1
## 6171 inaction 1
## 6173 inactivity 1
## 6175 inadmissibility 1
## 6177 inadvertencies 1
## 6179 inapplicable 1
## 6181 inarticulately 1
## 6182 inasmuch 1
## 6185 inaugurated 1
## 6186 incalculable 1
## 6189 incautiously 1
## 6190 incautiousness 1
## 6195 incident 1
## 6197 incitement 1
## 6198 incitements 1
## 6205 inclining 1
## 6206 inclosing 1
## 6209 includes 1
## 6211 incog 1
## 6213 incoherently 1
## 6215 incomes 1
## 6216 incommode 1
## 6218 incommoding 1
## 6220 incompetency 1
## 6221 incompetent 1
## 6223 incomprehensibility 1
## 6225 incomprehensibly 1
## 6227 inconceivably 1
## 6228 incongruity 1
## 6229 incongruous 1
## 6233 inconsideration 1
## 6243 inconveniently 1
## 6244 incorrectness 1
## 6252 incredulously 1
## 6254 incumbrance 1
## 6255 incumbrances 1
## 6258 incurably 1
## 6259 incurious 1
## 6264 indecisive 1
## 6269 indefensible 1
## 6270 indefferent 1
## 6271 indefinable 1
## 6276 indemnify 1
## 6277 indemnity 1
## 6278 indenture 1
## 6279 independance 1
## 6285 indescribably 1
## 6286 india 1
## 6287 indiaman 1
## 6291 indicating 1
## 6293 indicative 1
## 6302 indignities 1
## 6307 indiscreetly 1
## 6309 indiscriminately 1
## 6310 indiscriminating 1
## 6316 indisputably 1
## 6317 indissoluble 1
## 6319 indistinctly 1
## 6327 indubitably 1
## 6332 induces 1
## 6338 indulges 1
## 6342 industry 1
## 6343 inebriety 1
## 6346 inelegance 1
## 6349 inequalities 1
## 6355 inexcusably 1
## 6357 inexpensive 1
## 6360 inexplicability 1
## 6369 infantry 1
## 6370 infants 1
## 6371 infatuating 1
## 6373 infected 1
## 6376 infelicity 1
## 6379 inferences 1
## 6381 inferiorities 1
## 6383 inferiors 1
## 6387 infinity 1
## 6389 infirmities 1
## 6391 inflamed 1
## 6392 inflated 1
## 6393 inflexibly 1
## 6397 infliction 1
## 6403 informality 1
## 6408 infringement 1
## 6409 infuse 1
## 6420 inhabiting 1
## 6421 inhale 1
## 6426 inheritor 1
## 6427 inheritress 1
## 6428 inherits 1
## 6429 inhuman 1
## 6431 inimical 1
## 6433 iniquitous 1
## 6434 iniquity 1
## 6435 initial 1
## 6437 injudiciously 1
## 6447 inkstand 1
## 6453 innkeepers 1
## 6460 inoffensive 1
## 6462 inquietudes 1
## 6469 inquisitiveness 1
## 6471 insane 1
## 6472 insanity 1
## 6473 insatiable 1
## 6475 inscriptions 1
## 6478 insensibly 1
## 6480 inseparably 1
## 6481 inserting 1
## 6482 insertion 1
## 6486 insights 1
## 6492 insinuated 1
## 6493 insinuates 1
## 6500 insisting 1
## 6504 insolently 1
## 6505 insolvent 1
## 6508 inspiration 1
## 6511 inspires 1
## 6513 inspirit 1
## 6514 inspiriting 1
## 6516 installed 1
## 6523 instants 1
## 6525 instigated 1
## 6531 institute 1
## 6532 instituted 1
## 6533 institutionary 1
## 6536 instructing 1
## 6539 instructive 1
## 6543 instruments 1
## 6546 insufficiency 1
## 6555 insurgents 1
## 6556 insurmountable 1
## 6562 intelligences 1
## 6572 intentional 1
## 6576 intents 1
## 6577 intercept 1
## 6578 intercepting 1
## 6590 interior 1
## 6591 intermarriage 1
## 6593 interminable 1
## 6598 international 1
## 6599 interpose 1
## 6601 interposing 1
## 6603 interpret 1
## 6606 interred 1
## 6612 interspersed 1
## 6615 interveiws 1
## 6617 intervened 1
## 6618 intervening 1
## 6619 intervention 1
## 6621 interviews 1
## 6625 intimated 1
## 6630 intimidated 1
## 6631 intirely 1
## 6634 intoxication 1
## 6635 intractable 1
## 6639 intrepidity 1
## 6642 intrigues 1
## 6643 intrinsically 1
## 6646 introduces 1
## 6651 intruded 1
## 6655 intrust 1
## 6656 intuitively 1
## 6657 inure 1
## 6660 invalidity 1
## 6665 invective 1
## 6666 invectives 1
## 6671 inventive 1
## 6672 inventory 1
## 6673 inverted 1
## 6679 invigorating 1
## 6680 inviolable 1
## 6681 invisible 1
## 6688 involantary 1
## 6693 involvement 1
## 6694 involves 1
## 6701 ironies 1
## 6702 irony 1
## 6705 irrecoverably 1
## 6707 irregularity 1
## 6708 irregularly 1
## 6709 irrelevant 1
## 6710 irreligious 1
## 6712 irreparable 1
## 6715 irreproachably 1
## 6717 irresistibly 1
## 6719 irretrievable 1
## 6720 irreverently 1
## 6721 irrevocably 1
## 6722 irrisistable 1
## 6723 irritability 1
## 6727 irritates 1
## 6728 irritating 1
## 6734 islands 1
## 6735 isobel 1
## 6740 italics 1
## 6742 items 1
## 6744 ivory 1
## 6745 jacket 1
## 6746 jackonet 1
## 6748 jacksons 1
## 6760 jeffereys 1
## 6761 jefferies 1
## 6766 jesting 1
## 6767 jestingly 1
## 6768 jewel 1
## 6769 jewellers 1
## 6771 jilted 1
## 6772 jilting 1
## 6773 jockey 1
## 6777 joins 1
## 6779 jointed 1
## 6782 joked 1
## 6786 joseph 1
## 6788 journaling 1
## 6793 joyfulness 1
## 6795 joyously 1
## 6807 julias 1
## 6808 julius 1
## 6809 jumble 1
## 6813 jumps 1
## 6815 juncture 1
## 6817 juniors 1
## 6818 jupiter 1
## 6820 justest 1
## 6825 justifies 1
## 6834 keenness 1
## 6838 kenilworth 1
## 6841 kenzies 1
## 6842 kettle 1
## 6843 keynsham 1
## 6844 kickabout 1
## 6848 killing 1
## 6851 kindheartedness 1
## 6852 kindle 1
## 6856 kindnesses 1
## 6861 kingham 1
## 6865 kinnons 1
## 6872 knapsack 1
## 6883 knights 1
## 6891 knolls 1
## 6893 knowingly 1
## 6897 kympton 1
## 6898 labor 1
## 6899 laborious 1
## 6900 laboriously 1
## 6907 lacing 1
## 6909 laconic 1
## 6911 ladylike 1
## 6915 laity 1
## 6919 lameness 1
## 6927 lancastrian 1
## 6928 lancastrians 1
## 6930 landaulette 1
## 6941 langham 1
## 6945 languidly 1
## 6946 languish 1
## 6947 languished 1
## 6948 languishing 1
## 6951 lantern 1
## 6952 lapse 1
## 6953 larch 1
## 6954 larder 1
## 6961 lascelle 1
## 6962 lashed 1
## 6964 lassitude 1
## 6970 latch 1
## 6976 latitude 1
## 6986 launched 1
## 6987 laundress 1
## 6995 lavish 1
## 6998 lawfull 1
## 7000 lawlessness 1
## 7004 laziness 1
## 7005 leader 1
## 7009 leafless 1
## 7010 league 1
## 7011 leagued 1
## 7015 leaped 1
## 7022 leather 1
## 7027 lectured 1
## 7028 lecturer 1
## 7029 lectures 1
## 7030 ledge 1
## 7031 lefroy 1
## 7032 legacied 1
## 7033 legacies 1
## 7037 legends 1
## 7038 legible 1
## 7039 legislature 1
## 7040 leicester 1
## 7041 leicestershire 1
## 7045 lellans 1
## 7050 lengthening 1
## 7053 leniently 1
## 7054 lenity 1
## 7055 leods 1
## 7085 lieut 1
## 7087 lieutenants 1
## 7088 lieve 1
## 7095 lighten 1
## 7101 likeable 1
## 7108 likening 1
## 7113 limes 1
## 7115 limitations 1
## 7117 limiting 1
## 7119 limpid 1
## 7120 lindsay 1
## 7125 lingered 1
## 7127 linguist 1
## 7146 littlenesses 1
## 7147 liturgy 1
## 7148 liveable 1
## 7151 livelihood 1
## 7154 liveried 1
## 7161 loading 1
## 7162 loathings 1
## 7169 locks 1
## 7172 lodgers 1
## 7177 loins 1
## 7178 loiter 1
## 7181 lolling 1
## 7182 lombardy 1
## 7184 loneliness 1
## 7191 longings 1
## 7192 longs 1
## 7199 lookings 1
## 7200 lookout 1
## 7204 lordship 1
## 7206 losers 1
## 7216 louisas 1
## 7217 louise 1
## 7218 lounge 1
## 7219 lounger 1
## 7237 loyalty 1
## 7238 lubberly 1
## 7241 lucidly 1
## 7246 luncheon 1
## 7249 lustily 1
## 7252 luvis 1
## 7259 lyster 1
## 7260 macartney 1
## 7262 macbeths 1
## 7264 macduffs 1
## 7265 machinations 1
## 7266 machine 1
## 7267 machines 1
## 7268 mackenzie 1
## 7269 maclean 1
## 7275 maddoxes 1
## 7277 madly 1
## 7279 magdalen 1
## 7280 magestic 1
## 7282 magistrates 1
## 7285 magnificence 1
## 7290 maiden 1
## 7293 mails 1
## 7295 mainmast 1
## 7303 majestically 1
## 7309 malbrook 1
## 7314 malignant 1
## 7316 mammas 1
## 7322 manchester 1
## 7323 mania 1
## 7324 manifold 1
## 7326 manliness 1
## 7331 manoeuvred 1
## 7335 manorial 1
## 7338 manteau 1
## 7339 mantel 1
## 7344 marauding 1
## 7350 marina 1
## 7351 marines 1
## 7353 markedly 1
## 7355 marketplace 1
## 7361 marmalade 1
## 7362 marmion 1
## 7363 marquis 1
## 7370 marshal 1
## 7371 marshall 1
## 7372 martha 1
## 7375 martyr 1
## 7376 martyrs 1
## 7377 marys 1
## 7381 masterly 1
## 7382 masterpiece 1
## 7387 matchmaking 1
## 7392 mathematician 1
## 7399 matting 1
## 7401 maturity 1
## 7404 maximum 1
## 7405 maxwell 1
## 7406 mayoralty 1
## 7407 mayst 1
## 7410 meagreness 1
## 7412 meandered 1
## 7413 meanest 1
## 7424 measurements 1
## 7428 mechlin 1
## 7429 medals 1
## 7432 medicinal 1
## 7435 mediocre 1
## 7445 meekly 1
## 7448 meetly 1
## 7450 melan 1
## 7452 melodies 1
## 7453 melted 1
## 7459 memorandum 1
## 7461 memorial 1
## 7472 mercantile 1
## 7474 mercenery 1
## 7475 merchandise 1
## 7477 merchantibility 1
## 7479 merciless 1
## 7483 merged 1
## 7486 meritorious 1
## 7489 mermaids 1
## 7490 merrier 1
## 7497 messrs 1
## 7498 metal 1
## 7500 metamorphosis 1
## 7501 metaphor 1
## 7502 metcalf 1
## 7505 methodically 1
## 7506 methodists 1
## 7511 mickleham 1
## 7517 midland 1
## 7524 mightily 1
## 7526 milder 1
## 7527 mildest 1
## 7531 milestone 1
## 7532 milestones 1
## 7534 militate 1
## 7535 militated 1
## 7537 milkiness 1
## 7538 milkmen 1
## 7542 millinery 1
## 7545 milmans 1
## 7547 milton 1
## 7548 mimic 1
## 7549 mince 1
## 7550 minced 1
## 7552 mindedness 1
## 7554 minding 1
## 7556 minehead 1
## 7557 mingle 1
## 7559 mingling 1
## 7562 minister 1
## 7566 minuet 1
## 7577 mirrors 1
## 7579 misapplied 1
## 7580 misapply 1
## 7582 misbehave 1
## 7584 mischeif 1
## 7587 mischievously 1
## 7588 mischievousness 1
## 7589 misconceived 1
## 7591 misconceptions 1
## 7594 misconstructions 1
## 7595 misconstrued 1
## 7596 miscreant 1
## 7604 misgave 1
## 7605 misgive 1
## 7608 misinterpreting 1
## 7611 misleading 1
## 7623 missionary 1
## 7624 missish 1
## 7625 mississippi 1
## 7626 misspent 1
## 7630 mistaking 1
## 7631 mistook 1
## 7635 misty 1
## 7640 misuse 1
## 7641 misused 1
## 7647 mizzling 1
## 7648 moans 1
## 7649 mockery 1
## 7652 moderated 1
## 7656 modernised 1
## 7662 modification 1
## 7663 modified 1
## 7664 modify 1
## 7665 modulation 1
## 7666 mohrs 1
## 7667 moiety 1
## 7668 molland 1
## 7674 monasteries 1
## 7675 monastic 1
## 7678 monied 1
## 7679 monkey 1
## 7681 monopolize 1
## 7682 monosyllable 1
## 7683 monotonous 1
## 7684 monotony 1
## 7685 monster 1
## 7688 monthly 1
## 7690 montoni 1
## 7693 moorings 1
## 7695 moralised 1
## 7696 moralising 1
## 7697 moralist 1
## 7700 moralize 1
## 7702 morally 1
## 7707 morley 1
## 7710 morris 1
## 7715 mortgage 1
## 7723 mosquitoes 1
## 7725 motes 1
## 7727 motherbank 1
## 7735 mouldering 1
## 7736 moulding 1
## 7737 mound 1
## 7739 mountain 1
## 7741 mounteagle 1
## 7744 mounts 1
## 7745 mourn 1
## 7746 mourned 1
## 7747 mourner 1
## 7748 mourners 1
## 7749 mournful 1
## 7750 mournfull 1
## 7751 mournfully 1
## 7753 mouse 1
## 7764 mules 1
## 7767 multiply 1
## 7771 murderer 1
## 7772 murderess 1
## 7775 murmured 1
## 7777 murmurings 1
## 7779 murray 1
## 7789 mustard 1
## 7790 mustered 1
## 7791 muttered 1
## 7793 mutterings 1
## 7797 myrtle 1
## 7802 mysteriousness 1
## 7804 mythology 1
## 7805 nabobs 1
## 7806 nailed 1
## 7815 napkins 1
## 7823 narrowest 1
## 7825 narrowness 1
## 7828 national 1
## 7834 naturedly 1
## 7836 navigator 1
## 7848 necessitated 1
## 7851 necked 1
## 7854 necks 1
## 7855 necromancer 1
## 7856 nectarines 1
## 7860 needlefuls 1
## 7861 needles 1
## 7867 negatived 1
## 7868 negatives 1
## 7875 negus 1
## 7877 neices 1
## 7880 neighbourhoods 1
## 7887 neptune 1
## 7888 nerve 1
## 7891 nervously 1
## 7893 nestled 1
## 7894 nests 1
## 7897 nettled 1
## 7899 network 1
## 7901 nevertheless 1
## 7902 neville 1
## 7903 newbury 1
## 7904 newby 1
## 7907 newer 1
## 7909 newfoundland 1
## 7912 newmarket 1
## 7914 newsletter 1
## 7916 newspapermen 1
## 7918 newton 1
## 7920 niceness 1
## 7929 nightcap 1
## 7930 nightly 1
## 7932 nimbly 1
## 7935 ninny 1
## 7937 nipped 1
## 7942 noblemen 1
## 7944 nobler 1
## 7952 noisier 1
## 7956 nonproprietary 1
## 7958 nonsenses 1
## 7968 northumberland 1
## 7970 northwards 1
## 7971 norval 1
## 7972 nosegay 1
## 7973 noses 1
## 7974 notch 1
## 7975 notched 1
## 7983 notices 1
## 7985 notification 1
## 7986 notifies 1
## 7989 notoriety 1
## 7990 notorious 1
## 7991 notwithstanding 1
## 7993 nourish 1
## 7994 nourishes 1
## 7995 nourishing 1
## 7998 novelist 1
## 8003 novitiate 1
## 8007 nuisances 1
## 8011 nuncheon 1
## 8015 nurseries 1
## 8018 nurses 1
## 8020 nurture 1
## 8021 nymph 1
## 8022 nymphs 1
## 8023 oakham 1
## 8024 oaths 1
## 8028 obeisance 1
## 8037 obligated 1
## 8045 obliterate 1
## 8047 oblong 1
## 8048 obscure 1
## 8050 obsequious 1
## 8051 obsequiousness 1
## 8061 observers 1
## 8062 observes 1
## 8069 obstructed 1
## 8073 obtrude 1
## 8075 obtruding 1
## 8076 obtrusive 1
## 8079 obviated 1
## 8080 obviating 1
## 8082 obviously 1
## 8093 occupies 1
## 8102 ocean 1
## 8107 oddity 1
## 8127 officiating 1
## 8129 officiously 1
## 8130 officiousness 1
## 8135 oftentimes 1
## 8136 oiled 1
## 8140 oliver 1
## 8141 olivers 1
## 8142 olives 1
## 8144 omissions 1
## 8145 omits 1
## 8159 operating 1
## 8164 opportune 1
## 8169 opposer 1
## 8177 oppressively 1
## 8178 opprobious 1
## 8179 option 1
## 8180 oracle 1
## 8181 orange 1
## 8184 orchards 1
## 8189 ordering 1
## 8193 ordinarily 1
## 8196 organ 1
## 8197 organized 1
## 8198 oriel 1
## 8201 originality 1
## 8203 originals 1
## 8204 originate 1
## 8207 originator 1
## 8208 ormond 1
## 8210 ornamental 1
## 8214 orthography 1
## 8215 ostalis 1
## 8219 ostentatiously 1
## 8221 othello 1
## 8226 otways 1
## 8229 outcry 1
## 8230 outdated 1
## 8231 outdo 1
## 8235 outlandish 1
## 8238 outrage 1
## 8239 outraged 1
## 8240 outree 1
## 8241 outriders 1
## 8242 outright 1
## 8244 outset 1
## 8246 outstayed 1
## 8247 outstepped 1
## 8248 outstretched 1
## 8249 outstrip 1
## 8254 outweighed 1
## 8255 outweighs 1
## 8256 overacting 1
## 8258 overboard 1
## 8259 overborne 1
## 8261 overcareful 1
## 8265 overdrawn 1
## 8267 overflows 1
## 8271 overhearings 1
## 8275 overlooking 1
## 8276 overlooks 1
## 8277 overnight 1
## 8278 overpaid 1
## 8284 overrating 1
## 8286 overseers 1
## 8293 overthrew 1
## 8295 overthrowing 1
## 8300 overturn 1
## 8302 overturning 1
## 8303 overwhelmed 1
## 8311 oysters 1
## 8314 pacified 1
## 8317 package 1
## 8318 packages 1
## 8322 packs 1
## 8324 padlock 1
## 8328 painfull 1
## 8330 paining 1
## 8335 painters 1
## 8337 paintings 1
## 8338 palace 1
## 8339 palanquins 1
## 8343 paler 1
## 8346 palings 1
## 8348 palliate 1
## 8350 pallid 1
## 8353 palpable 1
## 8355 palpitating 1
## 8356 palpitations 1
## 8360 panel 1
## 8361 panels 1
## 8362 panes 1
## 8363 pangloss 1
## 8367 pantries 1
## 8371 papered 1
## 8373 paperwork 1
## 8375 paraded 1
## 8377 paradings 1
## 8378 paradox 1
## 8382 parasols 1
## 8392 paris 1
## 8396 parker 1
## 8400 parliaments 1
## 8401 parlors 1
## 8404 parmaceti 1
## 8405 parody 1
## 8406 parry 1
## 8408 parsnip 1
## 8411 parsonages 1
## 8419 participate 1
## 8422 particularise 1
## 8424 particularize 1
## 8433 partook 1
## 8435 partridges 1
## 8441 passant 1
## 8443 passer 1
## 8447 passionate 1
## 8449 passionnees 1
## 8452 passport 1
## 8453 passports 1
## 8455 pasturage 1
## 8456 pasture 1
## 8457 pastures 1
## 8458 patch 1
## 8460 patches 1
## 8461 patents 1
## 8464 pathos 1
## 8465 paths 1
## 8469 patriae 1
## 8470 patriotism 1
## 8475 patronize 1
## 8476 patronized 1
## 8477 pattened 1
## 8478 pattens 1
## 8486 paved 1
## 8488 pavements 1
## 8494 peaches 1
## 8495 peals 1
## 8502 pedal 1
## 8503 pedantic 1
## 8505 peerage 1
## 8507 peevishness 1
## 8513 pembroke 1
## 8514 pembrokeshire 1
## 8515 penalty 1
## 8517 pence 1
## 8519 pencilled 1
## 8530 pennyworth 1
## 8532 pensiveness 1
## 8535 perceivable 1
## 8541 perceptions 1
## 8542 perchance 1
## 8544 percy 1
## 8545 perdu 1
## 8548 perfected 1
## 8553 perfidious 1
## 8554 perfidy 1
## 8563 performs 1
## 8564 perfume 1
## 8567 periodic 1
## 8569 perjured 1
## 8572 permanency 1
## 8579 pernicious 1
## 8581 perpetrators 1
## 8584 perpetuated 1
## 8586 perplexing 1
## 8598 perseveringly 1
## 8602 persists 1
## 8604 persona 1
## 8605 personableness 1
## 8606 personae 1
## 8612 perspective 1
## 8613 perspectives 1
## 8614 perspiration 1
## 8616 persuadableness 1
## 8622 persuasive 1
## 8623 persuasively 1
## 8624 perth 1
## 8626 perticular 1
## 8627 pertinacity 1
## 8629 perturbed 1
## 8632 perused 1
## 8634 pervading 1
## 8636 perversely 1
## 8639 pervert 1
## 8640 perverted 1
## 8641 pestilences 1
## 8645 petrified 1
## 8646 petted 1
## 8648 petticoats 1
## 8654 pheasant 1
## 8656 phersons 1
## 8661 philippic 1
## 8662 philippics 1
## 8663 philips 1
## 8664 phillip 1
## 8668 philosophers 1
## 8672 phrases 1
## 8679 picnic 1
## 8684 pidgeon 1
## 8687 pierce 1
## 8688 pierced 1
## 8689 piercing 1
## 8690 piety 1
## 8692 pilfering 1
## 8693 piling 1
## 8694 pillars 1
## 8696 pills 1
## 8697 pimples 1
## 8698 pinching 1
## 8699 pinery 1
## 8700 pining 1
## 8702 pinny 1
## 8704 pioneer 1
## 8709 pistolletta 1
## 8712 pitcher 1
## 8716 pitifullest 1
## 8717 pitiless 1
## 8718 pittance 1
## 8724 placidity 1
## 8732 plainest 1
## 8735 plaintively 1
## 8738 plait 1
## 8739 planets 1
## 8743 plant 1
## 8749 plaster 1
## 8751 plates 1
## 8753 platonic 1
## 8754 plausibility 1
## 8760 playfellow 1
## 8761 playfellows 1
## 8767 playthings 1
## 8786 pliancy 1
## 8787 plied 1
## 8788 plight 1
## 8790 plods 1
## 8791 plotting 1
## 8793 ploughs 1
## 8796 plums 1
## 8798 plunged 1
## 8799 plunging 1
## 8801 poachers 1
## 8803 pocketbook 1
## 8808 poets 1
## 8813 pointedness 1
## 8815 pointers 1
## 8819 poisoned 1
## 8820 poisonous 1
## 8823 polish 1
## 8828 politest 1
## 8829 political 1
## 8830 politician 1
## 8831 politicians 1
## 8833 pollards 1
## 8834 polluted 1
## 8835 pollution 1
## 8836 polydore 1
## 8837 pomfret 1
## 8844 poney 1
## 8846 pooles 1
## 8850 popes 1
## 8852 poplars 1
## 8853 poplin 1
## 8856 population 1
## 8858 porch 1
## 8860 porker 1
## 8861 porridge 1
## 8863 porters 1
## 8864 portfolio 1
## 8866 portioning 1
## 8871 portray 1
## 8872 portrayed 1
## 8875 positions 1
## 8891 posterity 1
## 8894 posting 1
## 8895 postman 1
## 8896 postmark 1
## 8897 postpone 1
## 8898 postponed 1
## 8903 potatoes 1
## 8905 potions 1
## 8907 poultice 1
## 8915 powdering 1
## 8922 practicability 1
## 8924 practical 1
## 8925 practically 1
## 8927 practiced 1
## 8936 praiseworthy 1
## 8942 preached 1
## 8945 preaches 1
## 8947 prearranged 1
## 8948 preassured 1
## 8949 precarious 1
## 8955 precedent 1
## 8956 precedes 1
## 8958 preceeding 1
## 8959 precepts 1
## 8960 precincts 1
## 8967 preciseness 1
## 8970 precluded 1
## 8971 precludes 1
## 8972 precluding 1
## 8973 preconceived 1
## 8974 preconcerted 1
## 8976 predecessors 1
## 8977 predestined 1
## 8978 predetermination 1
## 8979 predetermined 1
## 8982 predicted 1
## 8983 prediction 1
## 8985 predisposed 1
## 8986 predominance 1
## 8987 predominate 1
## 8989 preeminent 1
## 8992 prefaced 1
## 8996 preferences 1
## 9009 premeditation 1
## 9010 premise 1
## 9012 prenticed 1
## 9013 preoccupied 1
## 9020 preponderated 1
## 9024 prescience 1
## 9025 prescott 1
## 9027 prescriptions 1
## 9046 presides 1
## 9053 presto 1
## 9059 presumptuous 1
## 9064 pretends 1
## 9065 pretense 1
## 9068 pretext 1
## 9074 prettyish 1
## 9084 prevention 1
## 9088 preyed 1
## 9090 priced 1
## 9094 priest 1
## 9097 princes 1
## 9100 principality 1
## 9104 principled 1
## 9108 printer 1
## 9109 printers 1
## 9110 prints 1
## 9111 printshop 1
## 9112 printshops 1
## 9114 priority 1
## 9115 priory 1
## 9117 prisoner 1
## 9120 privateer 1
## 9121 privateers 1
## 9131 prizes 1
## 9132 prizing 1
## 9137 probity 1
## 9139 problems 1
## 9146 processing 1
## 9147 procession 1
## 9150 proclaiming 1
## 9151 proclaims 1
## 9152 procrastinating 1
## 9156 prodigies 1
## 9173 professionally 1
## 9175 professor 1
## 9179 profiles 1
## 9182 profited 1
## 9186 profligate 1
## 9187 profound 1
## 9188 profuse 1
## 9190 prognostications 1
## 9193 progressively 1
## 9199 projection 1
## 9201 prologue 1
## 9203 prolongation 1
## 9211 promontories 1
## 9220 prompting 1
## 9222 promptly 1
## 9227 pronouns 1
## 9229 proofread 1
## 9239 prophesied 1
## 9240 prophesy 1
## 9241 prophetically 1
## 9246 proportionately 1
## 9256 propria 1
## 9257 proprietary 1
## 9260 proprietors 1
## 9263 prosecution 1
## 9265 prosings 1
## 9268 prosper 1
## 9280 protestant 1
## 9286 protests 1
## 9294 proverbial 1
## 9295 proverbs 1
## 9300 provident 1
## 9306 proviso 1
## 9311 provokes 1
## 9316 prudential 1
## 9318 prudish 1
## 9327 publishes 1
## 9328 publishing 1
## 9329 pudding 1
## 9330 puddings 1
## 9331 puddle 1
## 9332 puddles 1
## 9333 puffed 1
## 9335 pullets 1
## 9337 pulmonary 1
## 9340 pulses 1
## 9342 pulvis 1
## 9343 punch 1
## 9348 puncture 1
## 9352 punitive 1
## 9362 purer 1
## 9363 purest 1
## 9364 purification 1
## 9366 purloined 1
## 9370 purposed 1
## 9380 purvey 1
## 9385 putter 1
## 9391 pynes 1
## 9392 pyramids 1
## 9400 qualify 1
## 9401 qualifying 1
## 9404 quantities 1
## 9407 quarreled 1
## 9417 quarto 1
## 9419 queensberry 1
## 9421 queernesses 1
## 9422 quell 1
## 9423 querulous 1
## 9424 query 1
## 9429 questioner 1
## 9430 questioning 1
## 9440 quicksighted 1
## 9441 quiescent 1
## 9452 quivered 1
## 9454 quizzers 1
## 9455 quizzes 1
## 9456 quizzing 1
## 9457 quota 1
## 9458 quotation 1
## 9462 racing 1
## 9463 racked 1
## 9464 racking 1
## 9465 racks 1
## 9467 raged 1
## 9469 ragout 1
## 9474 rainy 1
## 9479 raleigh 1
## 9481 rally 1
## 9482 rallying 1
## 9484 rambled 1
## 9485 rambler 1
## 9490 randall 1
## 9494 ranging 1
## 9499 rapacious 1
## 9500 rapacity 1
## 9504 rapping 1
## 9510 rarity 1
## 9512 rascally 1
## 9513 rashly 1
## 9514 rashness 1
## 9516 rates 1
## 9518 ratifying 1
## 9524 rattled 1
## 9527 ravenshaws 1
## 9535 readier 1
## 9540 readings 1
## 9544 realities 1
## 9546 realization 1
## 9547 realized 1
## 9549 realm 1
## 9550 reanimate 1
## 9551 reanimated 1
## 9552 reanimation 1
## 9553 reaped 1
## 9554 reappear 1
## 9557 reared 1
## 9558 rearing 1
## 9559 rears 1
## 9569 reassure 1
## 9571 rebel 1
## 9572 rebellious 1
## 9573 rebuke 1
## 9577 recantation 1
## 9578 recanting 1
## 9579 recapitulation 1
## 9580 recasting 1
## 9581 recede 1
## 9584 receipts 1
## 9592 recess 1
## 9593 recipe 1
## 9596 recitals 1
## 9597 recited 1
## 9598 reciter 1
## 9599 reciting 1
## 9602 reckoner 1
## 9604 reckonings 1
## 9605 reckons 1
## 9607 reclaimed 1
## 9608 reclining 1
## 9609 recognise 1
## 9611 recognising 1
## 9614 recognizing 1
## 9621 recommencing 1
## 9625 recommendatory 1
## 9628 recomposed 1
## 9633 reconsider 1
## 9635 recordable 1
## 9637 recount 1
## 9640 recoverable 1
## 9644 recreating 1
## 9654 recurrences 1
## 9656 redden 1
## 9657 reddened 1
## 9659 redder 1
## 9661 redistribute 1
## 9664 redress 1
## 9669 redundancies 1
## 9670 reentered 1
## 9699 refusals 1
## 9705 refuted 1
## 9709 regal 1
## 9710 regale 1
## 9711 regaled 1
## 9712 regaling 1
## 9715 regardful 1
## 9722 region 1
## 9737 regulators 1
## 9742 rehearsers 1
## 9748 reined 1
## 9760 rekindling 1
## 9762 relapsed 1
## 9763 relapsing 1
## 9773 relator 1
## 9774 relators 1
## 9775 relax 1
## 9776 relaxation 1
## 9777 relaxed 1
## 9783 releiving 1
## 9784 relent 1
## 9785 relented 1
## 9788 relic 1
## 9789 relics 1
## 9794 relieves 1
## 9798 relinquish 1
## 9801 relinquishment 1
## 9816 remarked 1
## 9818 remedied 1
## 9824 remembers 1
## 9826 remembrancer 1
## 9835 remodelled 1
## 9841 remoteness 1
## 9848 renamed 1
## 9853 rendez 1
## 9854 rendezvous 1
## 9855 rending 1
## 9865 repack 1
## 9869 reparation 1
## 9871 repartees 1
## 9872 repassing 1
## 9874 repayment 1
## 9880 repel 1
## 9881 repelled 1
## 9882 repellent 1
## 9886 repenting 1
## 9890 repined 1
## 9892 repinings 1
## 9894 replaced 1
## 9904 reporting 1
## 9907 reposed 1
## 9908 reposes 1
## 9909 reposing 1
## 9910 repossessed 1
## 9912 reprehension 1
## 9920 represents 1
## 9924 reprieve 1
## 9926 reprimanding 1
## 9931 reproachfully 1
## 9935 reprobates 1
## 9940 reprove 1
## 9942 reproving 1
## 9945 repugnant 1
## 9948 repulses 1
## 9950 repulsively 1
## 9951 reputable 1
## 9953 repute 1
## 9957 requester 1
## 9965 requisites 1
## 9967 requisitions 1
## 9970 rescued 1
## 9972 researches 1
## 9974 reseeing 1
## 9976 resemblances 1
## 9986 resentments 1
## 9987 reservation 1
## 9988 reservations 1
## 9991 reservedness 1
## 9999 residents 1
## 10000 resides 1
## 10002 residue 1
## 10011 resistless 1
## 10012 resists 1
## 10019 resolves 1
## 10021 resort 1
## 10024 resounded 1
## 10025 resounding 1
## 10039 responses 1
## 10040 responsibility 1
## 10045 restlessly 1
## 10058 restricted 1
## 10059 restriction 1
## 10068 resuscitation 1
## 10069 retail 1
## 10070 retailed 1
## 10071 retailing 1
## 10075 retains 1
## 10076 retaliate 1
## 10077 retarded 1
## 10078 retarding 1
## 10080 reticule 1
## 10085 retook 1
## 10088 retraced 1
## 10091 retraction 1
## 10096 retrenched 1
## 10097 retrenching 1
## 10098 retrenchment 1
## 10099 retrenchments 1
## 10100 retribution 1
## 10102 retrospection 1
## 10104 retrospective 1
## 10109 reunion 1
## 10110 reurging 1
## 10111 reveal 1
## 10114 revealment 1
## 10115 reveals 1
## 10116 revel 1
## 10117 revelled 1
## 10119 revengeful 1
## 10120 revenging 1
## 10122 revered 1
## 10123 reverential 1
## 10127 reversed 1
## 10128 reverses 1
## 10129 reversing 1
## 10131 revert 1
## 10135 reviewer 1
## 10136 reviewers 1
## 10139 revision 1
## 10154 rhapsodising 1
## 10157 rheumatisms 1
## 10158 rhime 1
## 10159 rhine 1
## 10160 rhodomontade 1
## 10161 rhubarb 1
## 10162 rhyming 1
## 10163 ribband 1
## 10171 richest 1
## 10174 richness 1
## 10175 rickety 1
## 10183 ridiculed 1
## 10186 ridiculously 1
## 10189 rightful 1
## 10192 rigid 1
## 10193 rigmerole 1
## 10194 rigours 1
## 10198 ripening 1
## 10202 risked 1
## 10205 rites 1
## 10207 rivalry 1
## 10212 rivetts 1
## 10213 rivulets 1
## 10215 roadside 1
## 10217 roaring 1
## 10220 roasting 1
## 10222 robbers 1
## 10225 robertson 1
## 10227 robin 1
## 10231 rocky 1
## 10232 roger 1
## 10235 rolls 1
## 10238 romancers 1
## 10239 romancing 1
## 10241 roofs 1
## 10249 rouged 1
## 10250 rouges 1
## 10254 roundabout 1
## 10255 roundly 1
## 10258 rouses 1
## 10261 routine 1
## 10262 rowed 1
## 10263 rowling 1
## 10264 royal 1
## 10269 rubbers 1
## 10270 rubbish 1
## 10271 rudely 1
## 10273 ruder 1
## 10274 rudiments 1
## 10275 ruffle 1
## 10276 ruffled 1
## 10280 ruinous 1
## 10282 ruled 1
## 10284 ruling 1
## 10285 rumble 1
## 10286 rumford 1
## 10287 rumination 1
## 10289 rumours 1
## 10297 russia 1
## 10299 rusticities 1
## 10300 rusticity 1
## 10301 sacks 1
## 10309 saddle 1
## 10310 saddler 1
## 10318 saffron 1
## 10319 sagaciously 1
## 10321 sages 1
## 10325 sails 1
## 10328 salad 1
## 10330 saleable 1
## 10332 sallied 1
## 10333 sallies 1
## 10336 salmon 1
## 10339 salting 1
## 10341 salutary 1
## 10344 saluting 1
## 10347 sampler 1
## 10350 sandcroft 1
## 10351 sandersons 1
## 10353 sandwich 1
## 10354 sandwiches 1
## 10357 sanguinely 1
## 10360 sarcastically 1
## 10361 sarsenet 1
## 10364 sated 1
## 10366 satire 1
## 10378 saucer 1
## 10379 saucers 1
## 10382 saunders 1
## 10386 savage 1
## 10390 savings 1
## 10391 savours 1
## 10393 scaffold 1
## 10395 scalloped 1
## 10396 scampered 1
## 10397 scampering 1
## 10400 scandalously 1
## 10401 scandals 1
## 10402 scantily 1
## 10404 scarborough 1
## 10408 scare 1
## 10409 scarecrows 1
## 10411 scatter 1
## 10416 scepticism 1
## 10417 scheherazade 1
## 10419 schemed 1
## 10425 schoolboy 1
## 10426 schoolboys 1
## 10428 schoolfellows 1
## 10429 schoolmaster 1
## 10432 science 1
## 10433 sciences 1
## 10434 scientific 1
## 10439 scope 1
## 10444 scornful 1
## 10446 scorning 1
## 10447 scorns 1
## 10450 scots 1
## 10452 scottish 1
## 10454 scouted 1
## 10456 scrambled 1
## 10458 scrap 1
## 10460 scrapes 1
## 10462 scratch 1
## 10463 scratched 1
## 10465 scrawl 1
## 10466 scrawls 1
## 10467 scream 1
## 10474 scrubby 1
## 10478 scrupling 1
## 10480 scrupulously 1
## 10481 scrupulousness 1
## 10482 scrutinies 1
## 10483 scrutiny 1
## 10486 scull 1
## 10487 scullery 1
## 10489 seamanship 1
## 10490 seams 1
## 10494 seaside 1
## 10497 seasoning 1
## 10501 seaton 1
## 10503 secession 1
## 10510 seconding 1
## 10517 secreted 1
## 10521 sections 1
## 10527 securities 1
## 10533 seducer 1
## 10552 selfishly 1
## 10555 sellers 1
## 10558 semicircular 1
## 10559 seminaries 1
## 10560 seminary 1
## 10563 senior 1
## 10573 sensiblerie 1
## 10575 sensitive 1
## 10582 sentinel 1
## 10586 separates 1
## 10592 sequestration 1
## 10593 serene 1
## 10602 serpentine 1
## 10610 servile 1
## 10611 servilely 1
## 10612 servility 1
## 10614 servt 1
## 10615 sessions 1
## 10628 severally 1
## 10630 severed 1
## 10634 severus 1
## 10635 sewell 1
## 10636 sexes 1
## 10638 shabbiness 1
## 10640 shackles 1
## 10645 shadows 1
## 10647 shafts 1
## 10650 shakes 1
## 10655 shallow 1
## 10657 shamefaced 1
## 10665 shaping 1
## 10669 sharer 1
## 10674 sharks 1
## 10676 sharpe 1
## 10677 sharpen 1
## 10679 sharply 1
## 10680 shaving 1
## 10682 shawls 1
## 10683 sheath 1
## 10685 sheds 1
## 10687 sheepskin 1
## 10688 sheer 1
## 10697 sheridan 1
## 10698 sheriff 1
## 10700 sheweth 1
## 10708 shifts 1
## 10712 shines 1
## 10714 shins 1
## 10715 shipped 1
## 10717 shipwreck 1
## 10718 shipwrecked 1
## 10720 shirked 1
## 10723 shirts 1
## 10738 shortened 1
## 10748 showers 1
## 10753 shrank 1
## 10754 shreiked 1
## 10756 shrewdness 1
## 10757 shrewish 1
## 10761 shrub 1
## 10765 shrug 1
## 10767 shrugging 1
## 10769 shudder 1
## 10771 shuddering 1
## 10773 shuffling 1
## 10778 shylock 1
## 10780 sicily 1
## 10781 sickening 1
## 10782 sickens 1
## 10785 sickroom 1
## 10787 sidegate 1
## 10789 siding 1
## 10790 sidmouth 1
## 10793 sighings 1
## 10800 signet 1
## 10801 significance 1
## 10802 significancy 1
## 10806 signifies 1
## 10815 silliest 1
## 10818 silversmith 1
## 10822 similes 1
## 10826 simper 1
## 10829 simpers 1
## 10836 simpson 1
## 10840 sincerest 1
## 10842 singers 1
## 10846 singleness 1
## 10847 singling 1
## 10851 singularity 1
## 10855 sinner 1
## 10856 sipped 1
## 10860 sitters 1
## 10866 sixpences 1
## 10873 sketched 1
## 10875 skies 1
## 10880 skins 1
## 10881 skipping 1
## 10882 skirting 1
## 10883 skulker 1
## 10884 slabs 1
## 10885 slacken 1
## 10887 slammed 1
## 10888 slander 1
## 10889 slanderous 1
## 10890 slang 1
## 10891 slattern 1
## 10892 slatternly 1
## 10894 slavery 1
## 10895 slaves 1
## 10896 slaving 1
## 10897 sleek 1
## 10899 sleeper 1
## 10902 sleeplessness 1
## 10903 sleeps 1
## 10904 sleety 1
## 10907 slender 1
## 10910 slices 1
## 10911 sliding 1
## 10914 slighter 1
## 10920 slippers 1
## 10921 slippery 1
## 10922 slipping 1
## 10923 sloane 1
## 10929 slowness 1
## 10930 sluggish 1
## 10932 slumbering 1
## 10933 slumbers 1
## 10936 smacked 1
## 10943 smartened 1
## 10944 smarting 1
## 10945 smartness 1
## 10953 smirk 1
## 10955 smirks 1
## 10958 smitten 1
## 10961 smoking 1
## 10966 smother 1
## 10967 smythe 1
## 10968 snatch 1
## 10969 snatched 1
## 10970 snatching 1
## 10971 sneaked 1
## 10973 sneered 1
## 10975 sneers 1
## 10977 sneyds 1
## 10978 snipe 1
## 10979 snored 1
## 10980 snores 1
## 10983 snows 1
## 10985 snugly 1
## 10986 sobbed 1
## 10987 sobbing 1
## 10989 sobered 1
## 10990 soberer 1
## 10992 soberness 1
## 10996 societies 1
## 10998 socket 1
## 11002 softener 1
## 11005 softest 1
## 11009 solaced 1
## 11022 solicitously 1
## 11027 solidly 1
## 11028 soliloquies 1
## 11030 solitarily 1
## 11034 solomon 1
## 11043 sometime 1
## 11058 sophys 1
## 11059 sordid 1
## 11074 sounding 1
## 11078 soured 1
## 11079 sourness 1
## 11082 southward 1
## 11086 spaciousness 1
## 11088 spanish 1
## 11092 sparingly 1
## 11093 sparkle 1
## 11097 sparrows 1
## 11099 spasm 1
## 11100 spasms 1
## 11104 speakingly 1
## 11108 specific 1
## 11112 specious 1
## 11115 spectacle 1
## 11121 speculative 1
## 11126 speediest 1
## 11131 spelt 1
## 11132 spencer 1
## 11136 spendthrift 1
## 11139 spheres 1
## 11140 spicers 1
## 11141 spies 1
## 11142 spikes 1
## 11143 spine 1
## 11144 spinet 1
## 11145 spinnet 1
## 11146 spinster 1
## 11153 spiteful 1
## 11155 splashed 1
## 11156 splashing 1
## 11159 splendidly 1
## 11160 splendor 1
## 11162 splitters 1
## 11165 spoiling 1
## 11166 spoils 1
## 11170 spokesman 1
## 11171 sponges 1
## 11172 sponsors 1
## 11175 spoon 1
## 11186 spouting 1
## 11188 spraining 1
## 11190 sprawling 1
## 11194 sprightliness 1
## 11199 sprinkled 1
## 11203 spurn 1
## 11206 squabble 1
## 11207 squabbles 1
## 11208 squabbling 1
## 11209 squadron 1
## 11211 squareness 1
## 11212 squares 1
## 11213 squeamish 1
## 11215 squeezed 1
## 11217 stabbed 1
## 11221 staff 1
## 11224 stages 1
## 11225 stagger 1
## 11227 staggering 1
## 11231 staines 1
## 11236 stale 1
## 11237 stall 1
## 11238 stammered 1
## 11239 stammering 1
## 11242 stampt 1
## 11245 standards 1
## 11246 stander 1
## 11247 standers 1
## 11251 stanley 1
## 11252 stanly 1
## 11253 stanwix 1
## 11254 stanza 1
## 11255 stanzas 1
## 11256 starched 1
## 11261 starling 1
## 11269 starve 1
## 11273 stateliness 1
## 11282 stationer 1
## 11283 stationing 1
## 11284 stations 1
## 11286 staunch 1
## 11287 staves 1
## 11290 staymaker 1
## 11292 stead 1
## 11295 steadfastness 1
## 11301 steak 1
## 11302 steaks 1
## 11303 steal 1
## 11305 stealth 1
## 11306 stedfast 1
## 11311 steepest 1
## 11312 steepish 1
## 11313 stephen 1
## 11319 stern 1
## 11320 sterne 1
## 11322 stevenson 1
## 11325 stewed 1
## 11326 stewing 1
## 11328 sticks 1
## 11329 stiff 1
## 11332 stifling 1
## 11333 stigma 1
## 11337 stillness 1
## 11338 stilton 1
## 11339 stimulant 1
## 11340 stimulate 1
## 11341 stimulated 1
## 11344 stings 1
## 11345 stingy 1
## 11348 stipulated 1
## 11352 stirrups 1
## 11353 stirs 1
## 11363 stomacher 1
## 11365 stones 1
## 11368 stooped 1
## 11373 stops 1
## 11376 stored 1
## 11377 storehouse 1
## 11378 storeroom 1
## 11381 storing 1
## 11383 storming 1
## 11389 stoutest 1
## 11391 stove 1
## 11392 stoves 1
## 11397 strained 1
## 11407 stratagems 1
## 11408 straw 1
## 11413 straying 1
## 11416 streamed 1
## 11417 streephon 1
## 11420 streightens 1
## 11421 streights 1
## 11425 strengthener 1
## 11436 stricken 1
## 11438 stricter 1
## 11441 strictures 1
## 11447 strings 1
## 11448 strip 1
## 11450 stripling 1
## 11454 strokes 1
## 11466 stuart 1
## 11467 stuarts 1
## 11469 stubbornness 1
## 11470 stucco 1
## 11473 studier 1
## 11480 stuffed 1
## 11481 stuffy 1
## 11484 stupefaction 1
## 11487 stupider 1
## 11490 stupified 1
## 11491 stupor 1
## 11494 styled 1
## 11495 styles 1
## 11496 stylish 1
## 11497 stylishness 1
## 11498 suavity 1
## 11505 subjoin 1
## 11506 sublime 1
## 11510 submissively 1
## 11515 subordination 1
## 11517 subscriber 1
## 11520 subservient 1
## 11531 substitution 1
## 11532 subterraneous 1
## 11533 subtleties 1
## 11537 succeeds 1
## 11544 successless 1
## 11545 successor 1
## 11546 succour 1
## 11547 sucking 1
## 11553 suffciently 1
## 11555 sufferable 1
## 11556 sufferance 1
## 11569 sugar 1
## 11575 suggests 1
## 11581 suites 1
## 11582 suiting 1
## 11583 suitor 1
## 11585 sulkiness 1
## 11587 sullenly 1
## 11588 sullenness 1
## 11589 sully 1
## 11590 sullying 1
## 11591 sultaness 1
## 11592 summaries 1
## 11593 summarily 1
## 11594 summary 1
## 11604 sunny 1
## 11606 super 1
## 11608 superannuated 1
## 11609 supercilious 1
## 11612 superfine 1
## 11614 superfluous 1
## 11616 superintended 1
## 11617 superintendence 1
## 11619 superintends 1
## 11621 superiorities 1
## 11624 superlatively 1
## 11625 supernatural 1
## 11629 supine 1
## 11630 supineness 1
## 11631 supped 1
## 11635 supplement 1
## 11636 supplementary 1
## 11637 supplicated 1
## 11641 supplies 1
## 11645 supportable 1
## 11656 supposititious 1
## 11659 suppressing 1
## 11660 supreme 1
## 11662 surer 1
## 11664 surface 1
## 11665 surfaces 1
## 11670 surmising 1
## 11671 surmount 1
## 11673 surname 1
## 11677 surplice 1
## 11685 surprizing 1
## 11687 surround 1
## 11694 survival 1
## 11698 survivor 1
## 11700 susceptibilities 1
## 11701 susceptibility 1
## 11707 suspence 1
## 11717 sustain 1
## 11719 swain 1
## 11722 swamp 1
## 11723 swarming 1
## 11726 swearing 1
## 11727 swears 1
## 11728 sweat 1
## 11731 sweeps 1
## 11737 sweetmeats 1
## 11745 swift 1
## 11747 swiftness 1
## 11748 swimming 1
## 11749 swinging 1
## 11751 switch 1
## 11752 switzerland 1
## 11753 swollen 1
## 11755 swooning 1
## 11756 swoons 1
## 11759 sworn 1
## 11763 symbol 1
## 11767 sympathised 1
## 11768 sympathiser 1
## 11771 sympathized 1
## 11776 synonymously 1
## 11780 tablecloth 1
## 11782 tablets 1
## 11785 taciturn 1
## 11786 tackle 1
## 11787 tainted 1
## 11791 talbot 1
## 11796 talkativeness 1
## 11804 tambour 1
## 11805 tamboured 1
## 11806 tameness 1
## 11807 tanned 1
## 11809 tapping 1
## 11810 tardiness 1
## 11811 tardy 1
## 11812 tarnished 1
## 11816 tasteful 1
## 11819 tattered 1
## 11820 tattersall 1
## 11821 tattle 1
## 11823 tauntingly 1
## 11825 tautology 1
## 11826 taverns 1
## 11827 tawny 1
## 11831 taylors 1
## 11833 teachableness 1
## 11838 tearing 1
## 11846 tediously 1
## 11852 temperament 1
## 11857 tempests 1
## 11858 templars 1
## 11861 temporally 1
## 11863 temporizing 1
## 11869 temptingly 1
## 11873 tenantry 1
## 11878 tendered 1
## 11879 tenderer 1
## 11881 tenderhearted 1
## 11885 tenements 1
## 11886 tenfold 1
## 11888 tenour 1
## 11903 terseness 1
## 11905 testifies 1
## 11908 testimonies 1
## 11911 texel 1
## 11912 texts 1
## 11913 texture 1
## 11914 thames 1
## 11917 thanker 1
## 11922 thankless 1
## 11925 theatres 1
## 11928 theft 1
## 11934 theodore 1
## 11935 theoretical 1
## 11937 theory 1
## 11942 therein 1
## 11943 thereon 1
## 11945 therfore 1
## 11949 thickest 1
## 11950 thickly 1
## 11958 thinness 1
## 11959 thinning 1
## 11961 thirded 1
## 11963 thirds 1
## 11966 thistles 1
## 11969 thompson 1
## 11975 thoroughfare 1
## 11990 thrashing 1
## 11993 threading 1
## 11998 threatenings 1
## 12003 thrilling 1
## 12005 thrives 1
## 12006 thriving 1
## 12010 throng 1
## 12016 throws 1
## 12018 thumping 1
## 12019 thunder 1
## 12020 thunderbolt 1
## 12026 tight 1
## 12027 tightened 1
## 12028 tiled 1
## 12032 timbers 1
## 12037 tinge 1
## 12038 tinged 1
## 12039 tinkling 1
## 12040 tintern 1
## 12046 tirocinium 1
## 12049 titles 1
## 12050 tittle 1
## 12051 tittuppy 1
## 12054 tobacco 1
## 12057 toilet 1
## 12058 toilets 1
## 12059 toilett 1
## 12061 toilettes 1
## 12062 toiling 1
## 12064 toilsome 1
## 12066 tokens 1
## 12072 tombstones 1
## 12086 torments 1
## 12087 torrent 1
## 12091 torturing 1
## 12093 tosses 1
## 12096 tottering 1
## 12101 touchstone 1
## 12106 towers 1
## 12110 track 1
## 12111 tract 1
## 12114 traded 1
## 12116 trades 1
## 12118 tradespeople 1
## 12120 traduced 1
## 12121 trafalgar 1
## 12122 traffic 1
## 12123 tragedians 1
## 12124 tragedies 1
## 12129 training 1
## 12130 trait 1
## 12132 trampers 1
## 12135 tranquilize 1
## 12141 transact 1
## 12142 transacted 1
## 12145 transcribe 1
## 12148 transcribing 1
## 12149 transcription 1
## 12152 transformation 1
## 12153 transformed 1
## 12155 transgression 1
## 12156 transgressions 1
## 12159 translate 1
## 12161 transmitting 1
## 12163 transparency 1
## 12164 transpire 1
## 12166 transpires 1
## 12171 transporting 1
## 12173 transposed 1
## 12176 traveling 1
## 12182 trays 1
## 12187 treason 1
## 12191 treasuring 1
## 12196 treats 1
## 12197 treaty 1
## 12198 treble 1
## 12199 trebling 1
## 12203 trembles 1
## 12205 tremblingly 1
## 12209 tremors 1
## 12211 tremulously 1
## 12212 trent 1
## 12215 trespassed 1
## 12216 trespassing 1
## 12217 tressels 1
## 12221 trice 1
## 12225 trickle 1
## 12227 trident 1
## 12232 trifler 1
## 12237 trimmings 1
## 12239 trinkets 1
## 12240 tripped 1
## 12241 tripping 1
## 12246 triumphs 1
## 12249 trollopy 1
## 12251 trophies 1
## 12252 trotted 1
## 12257 troubling 1
## 12258 trout 1
## 12259 trudge 1
## 12267 trustiest 1
## 12269 trusts 1
## 12274 tudor 1
## 12279 tumbler 1
## 12283 tuned 1
## 12284 tupman 1
## 12285 tupmans 1
## 12286 turban 1
## 12288 turkeys 1
## 12290 turner 1
## 12292 turnings 1
## 12293 turnip 1
## 12294 turnips 1
## 12296 turnpikes 1
## 12298 tuscany 1
## 12299 twelfth 1
## 12307 twill 1
## 12308 twinkling 1
## 12310 twisting 1
## 12312 twould 1
## 12313 tying 1
## 12314 types 1
## 12320 ulcerated 1
## 12322 ultimately 1
## 12325 umpire 1
## 12326 unabashed 1
## 12329 unabsurd 1
## 12330 unacceptable 1
## 12332 unaccountableness 1
## 12336 unadorned 1
## 12337 unadvisable 1
## 12340 unagreeable 1
## 12341 unallied 1
## 12345 unamiable 1
## 12346 unamused 1
## 12350 unanswerably 1
## 12352 unappeasable 1
## 12353 unapproachable 1
## 12354 unappropriated 1
## 12359 unattainable 1
## 12360 unattempted 1
## 12365 unaware 1
## 12368 unbelieving 1
## 12371 unbiassed 1
## 12372 unbidden 1
## 12373 unbleached 1
## 12375 unblushing 1
## 12376 unbound 1
## 12379 uncandid 1
## 12381 unceasingly 1
## 12382 uncensured 1
## 12383 unceremonious 1
## 12384 unceremoniousness 1
## 12394 unclosed 1
## 12395 unclosing 1
## 12396 unclouded 1
## 12401 uncompanionable 1
## 12404 uncongenial 1
## 12409 unconsciousness 1
## 12410 unconsidered 1
## 12411 uncontrolled 1
## 12413 uncoquettish 1
## 12414 uncordial 1
## 12415 uncouth 1
## 12417 uncritical 1
## 12419 undauntedly 1
## 12421 undeceived 1
## 12422 undeceiving 1
## 12427 underdone 1
## 12431 underhand 1
## 12440 understrappers 1
## 12445 undertones 1
## 12451 undescribable 1
## 12452 undeserved 1
## 12453 undeservedly 1
## 12458 undesirableness 1
## 12459 undesired 1
## 12461 undeviating 1
## 12463 undirected 1
## 12464 undiscerned 1
## 12466 undiscovered 1
## 12467 undismayed 1
## 12468 undisputed 1
## 12469 undistinguished 1
## 12473 undoing 1
## 12478 undoubtingly 1
## 12481 undutiful 1
## 12486 unenforceability 1
## 12487 unengaged 1
## 12490 unequally 1
## 12493 unevenness 1
## 12495 unexamined 1
## 12498 unexceptionably 1
## 12499 unexhilarating 1
## 12502 unexpensively 1
## 12503 unexplored 1
## 12504 unexpressed 1
## 12509 unfastened 1
## 12510 unfastidious 1
## 12511 unfatherly 1
## 12512 unfathomable 1
## 12518 unfeignedly 1
## 12520 unfeudal 1
## 12523 unfitness 1
## 12526 unfledged 1
## 12527 unfold 1
## 12530 unforeseen 1
## 12532 unforgivingness 1
## 12533 unformed 1
## 12534 unforseen 1
## 12538 unfrequency 1
## 12541 unfruitful 1
## 12542 unfulfilled 1
## 12544 ungallant 1
## 12546 ungenial 1
## 12548 ungentlemanlike 1
## 12550 ungraceful 1
## 12553 ungraciousness 1
## 12555 ungratefull 1
## 12557 unguardedly 1
## 12558 unhandsome 1
## 12567 unimpaired 1
## 12568 unimpeded 1
## 12572 uninhabited 1
## 12574 unintelligibly 1
## 12579 uninterruptedly 1
## 12580 unintricate 1
## 12581 uninvited 1
## 12582 uninviting 1
## 12587 unitedly 1
## 12592 universe 1
## 12607 unlink 1
## 12608 unlock 1
## 12613 unlover 1
## 12616 unmajestic 1
## 12619 unmarried 1
## 12621 unmentioned 1
## 12622 unmercifully 1
## 12624 unmirthful 1
## 12625 unmitigated 1
## 12627 unmodernized 1
## 12628 unmodulated 1
## 12639 unobtrusiveness 1
## 12640 unoccupied 1
## 12641 unoffending 1
## 12642 unostentatious 1
## 12644 unparalelled 1
## 12647 unpardoned 1
## 12649 unpermitted 1
## 12650 unperplexed 1
## 12652 unpin 1
## 12654 unpleasantest 1
## 12659 unpolluted 1
## 12661 unprecedented 1
## 12666 unpretty 1
## 12668 unprivileged 1
## 12669 unproductive 1
## 12670 unproductively 1
## 12673 unprompted 1
## 12674 unpropitious 1
## 12675 unprosperous 1
## 12676 unprotected 1
## 12678 unpunctuality 1
## 12679 unpunished 1
## 12681 unquestionable 1
## 12684 unquietness 1
## 12685 unravelled 1
## 12686 unread 1
## 12688 unreasonableness 1
## 12691 unremitting 1
## 12692 unrepulsable 1
## 12693 unrequited 1
## 12696 unreservedly 1
## 12697 unresisted 1
## 12704 unsearched 1
## 12705 unseasonable 1
## 12707 unseasonably 1
## 12709 unseldom 1
## 12710 unselfish 1
## 12711 unsentimental 1
## 12712 unsettle 1
## 12716 unsheltered 1
## 12717 unsimpathetic 1
## 12718 unsisterly 1
## 12719 unsocial 1
## 12720 unsoftened 1
## 12722 unsolicitous 1
## 12723 unsophisticated 1
## 12726 unspent 1
## 12727 unspoilt 1
## 12732 unsuccessful 1
## 12735 unsuitableness 1
## 12737 unsullied 1
## 12738 unsusceptible 1
## 12741 unsuspiciousness 1
## 12743 untameable 1
## 12744 untamed 1
## 12747 unthinking 1
## 12748 unthinkingly 1
## 12750 untidy 1
## 12751 untied 1
## 12753 untimely 1
## 12755 untitled 1
## 12758 untowardly 1
## 12759 untried 1
## 12760 unturned 1
## 12766 unvisited 1
## 12767 unwarily 1
## 12769 unwearying 1
## 12778 unworthiness 1
## 12781 unyielding 1
## 12783 upbraided 1
## 12784 upbraiding 1
## 12785 updated 1
## 12786 uphill 1
## 12787 uplifted 1
## 12792 uprightly 1
## 12798 upstarts 1
## 12799 upton 1
## 12800 upwards 1
## 12801 urbanity 1
## 12807 usages 1
## 12808 useable 1
## 12815 ushured 1
## 12829 vacate 1
## 12831 vagaries 1
## 12833 vainer 1
## 12835 valancourt 1
## 12836 valet 1
## 12837 valetudinarian 1
## 12838 valid 1
## 12840 valleys 1
## 12842 valuables 1
## 12862 varnished 1
## 12867 vaults 1
## 12869 vegetation 1
## 12871 vehement 1
## 12872 vehemently 1
## 12873 vehicle 1
## 12875 velocity 1
## 12878 venerating 1
## 12880 venice 1
## 12882 vented 1
## 12883 venting 1
## 12887 venus 1
## 12891 verdicts 1
## 12906 vexes 1
## 12907 vexing 1
## 12915 victims 1
## 12916 victorian 1
## 12922 vigor 1
## 12926 vilified 1
## 12928 villages 1
## 12930 villainous 1
## 12931 villains 1
## 12932 villainy 1
## 12933 villanous 1
## 12934 villas 1
## 12935 villians 1
## 12936 villiers 1
## 12937 vindicate 1
## 12938 vindicated 1
## 12942 vinegar 1
## 12943 vingt 1
## 12945 violates 1
## 12946 violating 1
## 12953 violoncello 1
## 12958 virus 1
## 12963 vision 1
## 12968 visitings 1
## 12972 vista 1
## 12973 vitiated 1
## 12975 vivant 1
## 12976 vocal 1
## 12977 vogue 1
## 12980 volatility 1
## 12984 voluminous 1
## 12989 voted 1
## 12991 vouchers 1
## 12992 vouches 1
## 12995 vouchsafing 1
## 12997 vowel 1
## 13000 vulgarisms 1
## 13002 vulnerable 1
## 13003 waded 1
## 13004 wafted 1
## 13005 wager 1
## 13006 wages 1
## 13007 waggons 1
## 13008 wagon 1
## 13017 waive 1
## 13018 waived 1
## 13019 waives 1
## 13020 waiving 1
## 13021 wakefield 1
## 13022 wakefulness 1
## 13024 walcot 1
## 13028 walkers 1
## 13034 walnut 1
## 13036 walsh 1
## 13039 waltz 1
## 13040 waltzes 1
## 13044 wanderings 1
## 13049 wantonness 1
## 13052 warded 1
## 13053 wardrobe 1
## 13058 warleigh 1
## 13066 warnings 1
## 13067 warped 1
## 13069 warranted 1
## 13071 warrants 1
## 13073 warrior 1
## 13075 washed 1
## 13079 wasteful 1
## 13087 watchman 1
## 13091 watson 1
## 13094 waverings 1
## 13095 waxen 1
## 13100 weakest 1
## 13101 weakly 1
## 13114 weasel 1
## 13117 weathers 1
## 13118 webbs 1
## 13122 wedging 1
## 13129 weighs 1
## 13131 weighty 1
## 13138 wells 1
## 13139 weltering 1
## 13141 werter 1
## 13142 westbrook 1
## 13143 westerham 1
## 13144 westerly 1
## 13151 wetter 1
## 13152 wettest 1
## 13157 wheat 1
## 13158 wheedled 1
## 13159 wheel 1
## 13160 wheeled 1
## 13161 wheels 1
## 13167 whereby 1
## 13168 wherefore 1
## 13169 wherein 1
## 13170 wheres 1
## 13171 whereupon 1
## 13173 wherewith 1
## 13178 whiled 1
## 13180 whimper 1
## 13183 whine 1
## 13185 whirl 1
## 13194 whitakers 1
## 13196 whitehall 1
## 13197 whiten 1
## 13198 whiter 1
## 13204 wholesomeness 1
## 13211 wicket 1
## 13214 widen 1
## 13220 widowhood 1
## 13221 width 1
## 13227 wildest 1
## 13230 wilford 1
## 13232 wilfull 1
## 13234 wilfulness 1
## 13237 willfully 1
## 13248 winded 1
## 13259 winks 1
## 13260 winner 1
## 13262 winningly 1
## 13264 winters 1
## 13277 witch 1
## 13278 witches 1
## 13286 withholding 1
## 13290 withstanding 1
## 13296 witted 1
## 13299 wittiest 1
## 13303 wolfenbach 1
## 13310 wonderer 1
## 13315 wonderings 1
## 13318 woodby 1
## 13319 wooded 1
## 13320 wooden 1
## 13325 woodville 1
## 13327 wooed 1
## 13328 woollen 1
## 13329 woolwich 1
## 13330 worcester 1
## 13332 wording 1
## 13334 workbags 1
## 13335 workbasket 1
## 13344 wormed 1
## 13346 worries 1
## 13351 worshipped 1
## 13352 worshipping 1
## 13353 worships 1
## 13355 worsted 1
## 13356 worsting 1
## 13358 worthies 1
## 13359 worthiest 1
## 13370 wreath 1
## 13371 wreck 1
## 13374 wretchedest 1
## 13378 wriggles 1
## 13380 wring 1
## 13388 writings 1
## 13392 wronging 1
## 13396 wrung 1
## 13397 wynna 1
## 13415 yawned 1
## 13416 yawning 1
## 13417 yawns 1
## 13422 yeomanry 1
## 13423 yeomen 1
## 13425 yestermorn 1
## 13429 yorkists 1
## 13435 youngster 1
## 13436 younker 1
## 13442 youths 1
## 13445 zephyr 1
## 13446 zigzags 1
print("abdicate, abating, abbots, etc")
## [1] "abdicate, abating, abbots, etc"
Create a wordcloud with the following command:
#install.packages("ggplot2")
#install.packages("wordcloud")
library("ggplot2")
## Warning: package 'ggplot2' was built under R version 4.0.3
library("wordcloud")
## Warning: package 'wordcloud' was built under R version 4.0.3
## Loading required package: RColorBrewer
wordcloud(words=Austen.df$Austen.words.long, freq=Austen.df$Freq, max.words = 100, colors=rainbow(10) )