Context-free grammar text generator

Pack everything up nice and neatly, get generator working as well as it can

  • Replace pyStatParser with something Python 3 compatible (attempt to write an efficient CYK parser)
  • When preparing corpus, delete lines that are shorter than most (likely chapter headings)
  • feed a slightly modified corpus into the kgram dictionary generator in order to account for periods and commas and other punctuation
  • Need to identify words that are capital both when they start the sentence and whenever they appear (first names). Maybe make a list of all words that appear in both capital and non capital form?

  • If pyStatParser fails, select sentence rules from a library of already-processed sentences (this might actually work better)

  • If a generated sentence has bad grammar, try again.
  • The 3-markov sentences of a given length really should have the largest similarity scores

Next Research ideas

  • compare different authors using bootstrapping
  • generate text using words from one author and syntax from a different author (style swapper)
  • can I 1. observe zipf's law in Frankenstein, and 2. observe it in text generated from Markov and CFG markov? (could be a way to bootstrap)

In [6]:
import sys
sys.path.append("..")
# from app import object
from cfgen import *

%load_ext autoreload
%autoreload 2
# %autoreload 0

In [38]:
from stat_parser import Parser

sents = [
    "No mortal could support the horror of that countenance.",
    "You will smile at my allusion, but I will disclose a secret.",
    "Before this I was not unacquainted with the more obvious laws of electricity.",
    "I passed the night wretchedly.",
    "The cow jumped over the moon, and the man rode a horse.",
    "The monster ran out the door, and the creator rode a horse."
]

#http://linguistics.stackexchange.com/questions/2252/what-is-a-determiner
#http://www.clips.ua.ac.be/pages/mbsp-tags

parser = Parser()

# for item in sents:
#     print(parse_sentence(item))
#     print('\n')

for item in sents:
    parsee=parser.parse(item)
    for item in parsee.productions():
        print(item)
    print('\n')


S -> NP VP .
NP -> DT NN
DT -> 'no'
NN -> 'mortal'
VP -> MD VB NP
MD -> 'could'
VB -> 'support'
NP -> NP PP
NP -> DT NN
DT -> 'the'
NN -> 'horror'
PP -> IN NP
IN -> 'of'
NP -> DT NN
DT -> 'that'
NN -> 'countenance'
. -> '.'


S+SBAR -> S , S
S -> NP VP
NP -> PRP
PRP -> 'you'
VP -> MD VB PP
MD -> 'will'
VB -> 'smile'
PP -> IN NP
IN -> 'at'
NP -> PRP$ NN
PRP$ -> 'my'
NN -> 'allusion'
, -> ','
S -> CC NP VP .
CC -> 'but'
NP -> PRP
PRP -> 'I'
VP -> MD VB NP
MD -> 'will'
VB -> 'disclose'
NP -> DT NN
DT -> 'a'
NN -> 'secret'
. -> '.'


PRN+SBAR -> IN S
IN -> 'before'
S -> NP NP VP .
NP -> DT
DT -> 'this'
NP -> PRP
PRP -> 'I'
VP -> VBD RB VBN PP
VBD -> 'was'
RB -> 'not'
VBN -> 'unacquainted'
PP -> IN NP
IN -> 'with'
NP -> NP PP
NP -> DT ADJP NNS
DT -> 'the'
ADJP -> RBR JJ
RBR -> 'more'
JJ -> 'obvious'
NNS -> 'laws'
PP -> IN NP
IN -> 'of'
NP -> NN
NN -> 'electricity'
. -> '.'


SBARQ -> SQ .
SQ -> NP VP
NP -> PRP
PRP -> 'I'
VP -> VBD NP ADVP
VBD -> 'passed'
NP -> DT NN
DT -> 'the'
NN -> 'night'
ADVP -> RB
RB -> 'wretchedly'
. -> '.'


S+SBAR -> S , S
S -> NP VP
NP -> DT NN
DT -> 'the'
NN -> 'cow'
VP -> VBN PP
VBN -> 'jumped'
PP -> IN NP
IN -> 'over'
NP -> DT NN
DT -> 'the'
NN -> 'moon'
, -> ','
S -> CC NP VP .
CC -> 'and'
NP -> DT NN
DT -> 'the'
NN -> 'man'
VP -> VB NP
VB -> 'rode'
NP -> DT NN
DT -> 'a'
NN -> 'horse'
. -> '.'


S+SBAR -> S , S
S -> NP VP
NP -> DT NN
DT -> 'the'
NN -> 'monster'
VP -> VBD PRT NP
VBD -> 'ran'
PRT -> RP
RP -> 'out'
NP -> DT NN
DT -> 'the'
NN -> 'door'
, -> ','
S -> CC NP VP .
CC -> 'and'
NP -> DT NN
DT -> 'the'
NN -> 'creator'
VP -> VB NP
VB -> 'rode'
NP -> DT NN
DT -> 'a'
NN -> 'horse'
. -> '.'



In [9]:
termrules_mycorp


Out[9]:
"VBG -> 'increasing' | 'advancing' | 'skirting' | 'diffusing' | 'preceding' | 'sailing' | 'surpassing' | 'supposing' | 'discovering' | 'ascertaining' | 'arriving' | 'learning' | 'dying' | 'inuring' | 'failing' | 'travelling' | 'walking' | 'remaining' | 'freezing' | 'paying' | 'collecting' | 'glowing' | 'becoming' | 'keeping' | 'finding' | 'being' | 'having' | 'throwing' | 'confessing' | 'being' | 'thinking' | 'according' | 'wavering' | 'trembling' | 'preparing' | 'going' | 'having' | 'floating' | 'indicating' | 'advancing' | 'renovating' | 'tracing' | 'being' | 'swelling' | 'recording' | 'leaving' | 'hoping' | 'being' | 'fearing' | 'breaking' | 'talking' | 'being' | 'persuading' | 'perceiving' | 'hearing' | 'hearing' | 'rubbing' | 'forcing' | 'understanding' | 'drawing' | 'concerning' | 'breaking' | 'being' | 'concerning' | 'feeling' | 'watching' | 'burning' | 'heaving' | 'intoxicating' | 'having' | 'being' | 'quelling' | 'concerning' | 'finding' | 'respecting' | 'elevating' | 'concerning' | 'sting' | 'pursuing' | 'exposing' | 'perceiving' | 'marrying' | 'relating' | 'flourishing' | 'having' | 'endeavouring' | 'persuading' | 'rankling' | 'decreasing' | 'attending' | 'leaving' | 'weeping' | 'protecting' | 'differing' | 'doting' | 'recompensing' | 'regarding' | 'according' | 'being' | 'making' | 'remembering' | 'being' | 'distributing' | 'looking' | 'being' | 'bearing' | 'perceiving' | 'giving' | 'playing' | 'evening' | 'being' | 'following' | 'investigating' | 'king' | 'being' | 'according' | 'doing' | 'soaring' | 'dwelling' | 'drawing' | 'swelling' | 'bounding' | 'returning' | 'having' | 'picking' | 'entering' | 'mingling' | 'floundering' | 'watching' | 'astonishing' | 'appertaining' | 'being' | 'hanging' | 'tormenting' | 'attending' | 'befitting' | 'mourning' | 'enchanting' | 'being' | 'seeking' | 'endeavouring' | 'going' | 'concerning' | 'appertaining' | 'studying' | 'saying' | 'treating' | 'mentioning' | 'concerning' | 'becoming' | 'ensuing' | 'concerning' | 'pronouncing' | 'having' | 'grappling' | 'being' | 'treading' | 'being' | 'concerning' | 'bringing' | 'turning' | 'letting' | 'concerning' | 'including' | 'instructing' | 'promising' | 'being' | 'returning' | 'becoming' | 'being' | 'blooming' | 'examining' | 'analysing' | 'astonishing' | 'recording' | 'discovering' | 'bestowing' | 'astonishing' | 'concerning' | 'bestowing' | 'being' | 'being' | 'being' | 'having' | 'having' | 'collecting' | 'arranging' | 'being' | 'pursuing' | 'ceasing' | 'starting' | 'attending' | 'loathing' | 'conceiving' | 'being' | 'befitting' | 'moralizing' | 'inquiring' | 'expanding' | 'being' | 'flowing' | 'infusing' | 'being' | 'traversing' | 'endeavouring' | 'walking' | 'walking' | 'listening' | 'catching' | 'fearing' | 'aching' | 'pacing' | 'walking' | 'endeavouring' | 'doing' | 'daring' | 'having' | 'continuing' | 'coming' | 'standing' | 'being' | 'seeing' | 'seeing' | 'talking' | 'being' | 'stopping' | 'gazing' | 'watching' | 'preceding' | 'walking' | 'entreating' | 'waiting' | 'putting' | 'knowing' | 'concealing' | 'doing' | 'concerning' | 'observing' | 'shooting' | 'being' | 'deserving' | 'lying' | 'undertaking' | 'encountering' | 'being' | 'attending' | 'getting' | 'climbing' | 'rowing' | 'seeing' | 'being' | 'being' | 'concerning' | 'winning' | 'vacillating' | 'having' | 'darling' | 'laughing' | 'curling' | 'concerning' | 'marrying' | 'doing' | 'befitting' | 'guessing' | 'drawing' | 'putting' | 'discerning' | 'alleging' | 'observing' | 'annoying' | 'making' | 'affording' | 'being' | 'making' | 'soothing' | 'studying' | 'being' | 'ensuing' | 'bestowing' | 'preceding' | 'notwithstanding' | 'astonishing' | 'dancing' | 'mentioning' | 'returning' | 'playing' | 'blooming' | 'entering' | 'clasping' | 'darling' | 'brooding' | 'receiving' | 'desolating' | 'dreading' | 'dwelling' | 'beholding' | 'lightning' | 'coming' | 'lightning' | 'illuminating' | 'making' | 'preceding' | 'gazing' | 'lightning' | 'pursuing' | 'hanging' | 'being' | 'being' | 'scaling' | 'overhanging' | 'rising' | 'kneeling' | 'sinking' | 'tormenting' | 'concerning' | 'having' | 'notwithstanding' | 'appalling' | 'happening' | 'saying' | 'being' | 'being' | 'astounding' | 'surpassing' | 'darling' | 'being' | 'engaging' | 'looking' | 'concerning' | 'looking' | 'being' | 'watching' | 'concerning' | 'explaining' | 'concerning' | 'doing' | 'concerning' | 'notwithstanding' | 'charging' | 'glaring' | 'sitting' | 'seeing' | 'weeping' | 'notwithstanding' | 'weeping' | 'going' | 'having' | 'awaiting' | 'uttering' | 'unfeeling' | 'doing' | 'smiling' | 'serving' | 'augmenting' | 'remaining' | 'rowing' | 'suffering' | 'surviving' | 'mourning' | 'thirsting' | 'being' | 'walking' | 'crowding' | 'endeavouring' | 'taking' | 'rendering' | 'blessing' | 'dragging' | 'bending' | 'enduring' | 'being' | 'hanging' | 'peeping' | 'rumbling' | 'falling' | 'surrounding' | 'tingling' | 'soothing' | 'striving' | 'watching' | 'roaming' | 'advancing' | 'receiving' | 'soaring' | 'pouring' | 'solemnizing' | 'causing' | 'leaning' | 'speaking' | 'rising' | 'curling' | 'rising' | 'descending' | 'crossing' | 'gazing' | 'glittering' | 'wandering' | 'advancing' | 'resolving' | 'remaining' | 'being' | 'fitting' | 'seating' | 'being' | 'opening' | 'wearying' | 'resting' | 'hanging' | 'lying' | 'lying' | 'finding' | 'feeling' | 'enticing' | 'watching' | 'touching' | 'collecting' | 'spreading' | 'placing' | 'searching' | 'wrapping' | 'rising' | 'finding' | 'preparing' | 'hearing' | 'perceiving' | 'quitting' | 'depositing' | 'making' | 'having' | 'being' | 'looking' | 'passing' | 'being' | 'bearing' | 'uttering' | 'examining' | 'leaning' | 'arranging' | 'taking' | 'leaving' | 'bearing' | 'taking' | 'pulling' | 'arranging' | 'leaning' | 'beaming' | 'prolonging' | 'watching' | 'evening' | 'resembling' | 'having' | 'watching' | 'endeavouring' | 'being' | 'interchanging' | 'doing' | 'collecting' | 'seeing' | 'repairing' | 'cultivating' | 'communicating' | 'having' | 'having' | 'being' | 'having' | 'impending' | 'leaning' | 'observing' | 'deserving' | 'presenting' | 'acquiring' | 'enchanting' | 'recommencing' | 'pronouncing' | 'hearing' | 'shining' | 'wiping' | 'dismissing' | 'dispelling' | 'pointing' | 'endeavouring' | 'conversing' | 'taking' | 'swelling' | 'dying' | 'reading' | 'existing' | 'being' | 'becoming' | 'charming' | 'being' | 'being' | 'resembling' | 'unfolding' | 'owning' | 'going' | 'returning' | 'being' | 'marrying' | 'remaining' | 'enchanting' | 'quitting' | 'passing' | 'quitting' | 'hoping' | 'discovering' | 'sending' | 'reiterating' | 'taking' | 'inciting' | 'giving' | 'containing' | 'affecting' | 'being' | 'understanding' | 'concerning' | 'governing' | 'massacring' | 'burning' | 'warring' | 'exciting' | 'being' | 'disgusting' | 'sympathizing' | 'cheering' | 'depending' | 'introducing' | 'laying' | 'exerting' | 'going' | 'undeceiving' | 'seizing' | 'beholding' | 'repeating' | 'destroying' | 'ranging' | 'finding' | 'everlasting' | 'determining' | 'believing' | 'having' | 'preceding' | 'acting' | 'flying' | 'tearing' | 'finding' | 'apprehending' | 'pausing' | 'using' | 'owing' | 'allowing' | 'having' | 'destroying' | 'being' | 'being' | 'encountering' | 'being' | 'being' | 'finding' | 'forgetting' | 'budding' | 'knowing' | 'running' | 'laughing' | 'seeing' | 'tearing' | 'being' | 'endeavouring' | 'extracting' | 'evening' | 'setting' | 'running' | 'clapping' | 'glittering' | 'regarding' | 'venting' | 'seeking' | 'sleeping' | 'wishing' | 'being' | 'being' | 'being' | 'threatening' | 'being' | 'existing' | 'being' | 'dying' | 'affording' | 'being' | 'being' | 'turning' | 'saying' | 'winding' | 'fixing' | 'clasping' | 'entering' | 'devoting' | 'having' | 'obtaining' | 'taking' | 'eradicating' | 'devouring' | 'approaching' | 'watching' | 'calling' | 'returning' | 'declining' | 'considering' | 'refitting' | 'offering' | 'hanging' | 'bowing' | 'journeying' | 'entering' | 'obtaining' | 'engaging' | 'hiding' | 'concealing' | 'absorbing' | 'taking' | 'having' | 'communicating' | 'maddening' | 'soothing' | 'conflicting' | 'knowing' | 'going' | 'passing' | 'unobserving' | 'shifting' | 'desponding' | 'listening' | 'standing' | 'overlooking' | 'rushing' | 'flourishing' | 'sloping' | 'casting' | 'coming' | 'deserving' | 'being' | 'sounding' | 'being' | 'beaming' | 'overflowing' | 'arising' | 'towering' | 'obtaining' | 'pursuing' | 'assisting' | 'entering' | 'alleging' | 'falling' | 'passing' | 'resolving' | 'resolving' | 'rambling' | 'rambling' | 'endeavouring' | 'trembling' | 'journeying' | 'murdering' | 'being' | 'passing' | 'seeing' | 'having' | 'being' | 'affording' | 'suffering' | 'fearing' | 'rising' | 'doing' | 'being' | 'reasoning' | 'being' | 'everlasting' | 'being' | 'looking' | 'fulfilling' | 'creating' | 'trembling' | 'locking' | 'trembling' | 'sickening' | 'gazing' | 'shutting' | 'creating' | 'sting' | 'sting' | 'preceding' | 'watching' | 'satisfying' | 'entreating' | 'wearing' | 'sickening' | 'being' | 'trembling' | 'laying' | 'arranging' | 'renewing' | 'putting' | 'returning' | 'shuddering' | 'gurgling' | 'rising' | 'fixing' | 'clinging' | 'issuing' | 'bounding' | 'fixing' | 'arranging' | 'offering' | 'receiving' | 'perceiving' | 'approaching' | 'being' | 'turning' | 'being' | 'fishing' | 'carrying' | 'proceeding' | 'standing' | 'waiting' | 'having' | 'concerning' | 'hearing' | 'being' | 'knowing' | 'conversing' | 'beholding' | 'shuddering' | 'throwing' | 'grasping' | 'blooming' | 'awaking' | 'understanding' | 'sleeping' | 'sympathizing' | 'unfeeling' | 'recovering' | 'shocking' | 'receiving' | 'agonizing' | 'notwithstanding' | 'concerning' | 'being' | 'regarding' | 'inspiring' | 'dwelling' | 'interesting' | 'desponding' | 'looking' | 'drawing' | 'executing' | 'wishing' | 'collecting' | 'arranging' | 'appearing' | 'being' | 'finding' | 'languishing' | 'committing' | 'being' | 'leaving' | 'looking' | 'listening' | 'residing' | 'shuddering' | 'taking' | 'watching' | 'perceiving' | 'dashing' | 'being' | 'concerning' | 'looking' | 'being' | 'writing' | 'desiring' | 'flying' | 'supposing' | 'reasoning' | 'being' | 'binding' | 'being' | 'indulging' | 'cling' | 'seeming' | 'sleeping' | 'continuing' | 'surmounting' | 'coasting' | 'opposing' | 'swimming' | 'fluctuating' | 'cling' | 'enjoying' | 'displaying' | 'beginning' | 'beginning' | 'resolving' | 'walking' | 'inspecting' | 'beginning' | 'tingling' | 'hanging' | 'seeing' | 'drawing' | 'running' | 'passing' | 'believing' | 'having' | 'going' | 'weeping' | 'reflecting' | 'remaining' | 'writhing' | 'leaning' | 'having' | 'securing' | 'marking' | 'deviating' | 'being' | 'calculating' | 'failing' | 'being' | 'affecting' | 'quivering' | 'wandering' | 'entering' | 'distributing' | 'taking' | 'enjoying' | 'dreaming' | 'agonizing' | 'cling' | 'writing' | 'scoffing' | 'scoffing' | 'calling' | 'conducting' | 'notwithstanding' | 'concerning' | 'putting' | 'placing' | 'hearing' | 'purchasing' | 'burning' | 'returning' | 'sinking' | 'burning' | 'giving' | 'drifting' | 'preparing' | 'riding' | 'holding' | 'going' | 'conducting' | 'piercing' | 'suppressing' | 'bursting' | 'concerning' | 'giving' | 'touching' | 'exulting' | 'burning' | 'being' | 'being' | 'appalling' | 'sickening' | 'recording' | 'being' | 'watching' | 'hanging' | 'returning' | 'turning' | 'returning' | 'dozing' | 'saying' | 'watching' | 'bidding' | 'being' | 'desiring' | 'examining' | 'refusing' | 'returning' | 'meeting' | 'distinguishing' | 'appalling' | 'looking' | 'being' | 'being' | 'destroying' | 'obeying' | 'dying' | 'destroying' | 'being' | 'pointing' | 'lingering' | 'preparing' | 'being' | 'being' | 'loathing' | 'pardoning' | 'unfolding' | 'wasting' | 'being' | 'being' | 'cheering' | 'burning'\nVBD -> 'arrived' | 'began' | 'composed' | 'was' | 'was' | 'were' | 'increased' | 'had' | 'had' | 'faded' | 'perused' | 'entranced' | 'lifted' | 'became' | 'lived' | 'imagined' | 'inherited' | 'were' | 'dedicated' | 'accompanied' | 'endured' | 'worked' | 'acquitted' | 'felt' | 'offered' | 'entreated' | 'did' | 'preferred' | 'shower' | 'encompassed' | 'ran' | 'became' | 'was' | 'had' | 'perceived' | 'unallied' | 'beat' | 'became' | 'was' | 'added' | 'made' | 'spent' | 'noted' | 'felt' | 'loved' | 'consented' | 'saw' | 'was' | 'entreated' | 'loved' | 'was' | 'reassured' | 'abandoned' | 'had' | 'had' | 'bestowed' | 'solicited' | 'refused' | 'found' | 'quitted' | 'returned' | 'heard' | 'was' | 'had' | 'experienced' | 'resolved' | 'were' | 'closed' | 'floated' | 'was' | 'were' | 'lay' | 'cleared' | 'stretched' | 'seemed' | 'began' | 'attracted' | 'diverted' | 'perceived' | 'had' | 'sat' | 'guided' | 'watched' | 'was' | 'excited' | 'were' | 'believed' | 'hundred' | 'seemed' | 'was' | 'had' | 'was' | 'had' | 'heard' | 'broke' | 'freed' | 'lay' | 'profited' | 'was' | 'went' | 'found' | 'was' | 'had' | 'had' | 'remained' | 'was' | 'were' | 'was' | 'seemed' | 'appeared' | 'said' | 'addressed' | 'said' | 'replied' | 'were' | 'appeared' | 'had' | 'were' | 'saw' | 'wretched' | 'attempted' | 'had' | 'fainted' | 'brought' | 'restored' | 'showed' | 'wrapped' | 'placed' | 'recovered' | 'restored' | 'was' | 'had' | 'had' | 'recovered' | 'removed' | 'attended' | 'saw' | 'were' | 'was' | 'had' | 'wished' | 'depended' | 'asked' | 'had' | 'assumed' | 'replied' | 'fled' | 'did' | 'picked' | 'saw' | 'aroused' | 'asked' | 'called' | 'had' | 'was' | 'said' | 'excited' | 'rescued' | 'inquired' | 'thought' | 'had' | 'replied' | 'had' | 'animated' | 'manifested' | 'had' | 'said' | 'had' | 'preceded' | 'entered' | 'had' | 'was' | 'evinced' | 'warmed' | 'were' | 'sought' | 'spoke' | 'perceived' | 'tried' | 'placed' | 'quivered' | 'failed' | 'paused' | 'spoke' | 'excited' | 'had' | 'were' | 'conquered' | 'appeared' | 'led' | 'asked' | 'was' | 'awakened' | 'had' | 'expressed' | 'did' | 'replied' | 'made' | 'had' | 'said' | 'became' | 'settled' | 'touched' | 'was' | 'saw' | 'knew' | 'unequalled' | 'said' | 'had' | 'did' | 'were' | 'was' | 'felt' | 'were' | 'expressed' | 'replied' | 'continued' | 'wished' | 'told' | 'embraced' | 'wrecked' | 'had' | 'had' | 'was' | 'knew' | 'passed' | 'had' | 'was' | 'became' | 'was' | 'fell' | 'was' | 'was' | 'had' | 'retreated' | 'lived' | 'loved' | 'was' | 'deplored' | 'led' | 'united' | 'lost' | 'had' | 'was' | 'discovered' | 'hastened' | 'was' | 'entered' | 'welcomed' | 'had' | 'was' | 'hoped' | 'was' | 'became' | 'had' | 'took' | 'lay' | 'attended' | 'saw' | 'was' | 'was' | 'possessed' | 'rose' | 'procured' | 'plaited' | 'grew' | 'was' | 'died' | 'overcame' | 'knelt' | 'entered' | 'came' | 'committed' | 'conducted' | 'placed' | 'became' | 'was' | 'seemed' | 'was' | 'rendered' | 'had' | 'was' | 'was' | 'was' | 'had' | 'gave' | 'was' | 'strove' | 'had' | 'had' | 'had' | 'had' | 'sought' | 'visited' | 'was' | 'accompanied' | 'remained' | 'were' | 'seemed' | 'was' | 'was' | 'fulfilled' | 'owed' | 'had' | 'added' | 'animated' | 'received' | 'was' | 'seemed' | 'was' | 'had' | 'continued' | 'was' | 'passed' | 'made' | 'was' | 'was' | 'had' | 'had' | 'attracted' | 'spoke' | 'had' | 'visited' | 'found' | 'bent' | 'was' | 'attracted' | 'appeared' | 'were' | 'was' | 'was' | 'seemed' | 'was' | 'communicated' | 'was' | 'was' | 'had' | 'had' | 'were' | 'had' | 'was' | 'was' | 'exerted' | 'became' | 'had' | 'was' | 'was' | 'became' | 'continued' | 'rose' | 'found' | 'seemed' | 'were' | 'was' | 'prevailed' | 'were' | 'had' | 'afforded' | 'consulted' | 'was' | 'became' | 'loved' | 'regarded' | 'became' | 'shared' | 'had' | 'said' | 'presented' | 'interpreted' | 'looked' | 'bestowed' | 'received' | 'called' | 'stood' | 'was' | 'were' | 'was' | 'were' | 'was' | 'subsisted' | 'drew' | 'was' | 'was' | 'was' | 'busied' | 'surrounded' | 'found' | 'was' | 'were' | 'gave' | 'possessed' | 'resided' | 'were' | 'was' | 'was' | 'was' | 'was' | 'loved' | 'was' | 'composed' | 'began' | 'tried' | 'were' | 'shed' | 'were' | 'felt' | 'were' | 'mingled' | 'was' | 'assisted' | 'was' | 'were' | 'possessed' | 'was' | 'desired' | 'was' | 'occupied' | 'were' | 'occupied' | 'were' | 'was' | 'was' | 'were' | 'was' | 'was' | 'had' | 'unfolded' | 'made' | 'had' | 'changed' | 'led' | 'ruled' | 'proceeded' | 'became' | 'led' | 'was' | 'went' | 'obliged' | 'chanced' | 'opened' | 'seemed' | 'communicated' | 'looked' | 'said' | 'had' | 'had' | 'had' | 'possessed' | 'were' | 'were' | 'warmed' | 'was' | 'led' | 'had' | 'assured' | 'was' | 'continued' | 'returned' | 'was' | 'studied' | 'appeared' | 'came' | 'said' | 'felt' | 'was' | 'appeared' | 'beheld' | 'was' | 'knew' | 'had' | 'were' | 'were' | 'had' | 'seemed' | 'had' | 'were' | 'were' | 'had' | 'knew' | 'took' | 'averred' | 'became' | 'followed' | 'was' | 'was' | 'was' | 'added' | 'obtained' | 'was' | 'were' | 'was' | 'were' | 'attributed' | 'was' | 'changed' | 'was' | 'had' | 'witnessed' | 'advanced' | 'remained' | 'lasted' | 'stood' | 'beheld' | 'stood' | 'vanished' | 'had' | 'remained' | 'visited' | 'found' | 'shattered' | 'was' | 'reduced' | 'was' | 'was' | 'entered' | 'had' | 'was' | 'said' | 'disinclined' | 'seemed' | 'had' | 'grew' | 'gave' | 'set' | 'entertained' | 'was' | 'was' | 'was' | 'followed' | 'was' | 'was' | 'was' | 'was' | 'was' | 'had' | 'had' | 'resolved' | 'had' | 'attended' | 'thought' | 'was' | 'resolved' | 'occurred' | 'were' | 'had' | 'was' | 'was' | 'had' | 'had' | 'heard' | 'was' | 'attended' | 'sickbed' | 'triumphed' | 'was' | 'were' | 'sickened' | 'was' | 'prognosticated' | 'deathbed' | 'did' | 'joined' | 'said' | 'were' | 'beloved' | 'died' | 'saw' | 'appeared' | 'was' | 'had' | 'whilst' | 'had' | 'was' | 'obtained' | 'appeared' | 'was' | 'did' | 'was' | 'remained' | 'desired' | 'consoled' | 'veiled' | 'looked' | 'assumed' | 'devoted' | 'had' | 'was' | 'recalled' | 'spent' | 'forgot' | 'spent' | 'had' | 'was' | 'saw' | 'felt' | 'said' | 'spoke' | 'sat' | 'was' | 'said' | 'retired' | 'was' | 'descended' | 'was' | 'were' | 'threw' | 'was' | 'had' | 'was' | 'was' | 'had' | 'had' | 'loved' | 'were' | 'believed' | 'unfitted' | 'were' | 'commenced' | 'proceeded' | 'rose' | 'had' | 'thought' | 'cooped' | 'had' | 'were' | 'had' | 'was' | 'met' | 'alighted' | 'was' | 'pleased' | 'delivered' | 'paid' | 'asserted' | 'turned' | 'led' | 'was' | 'asked' | 'replied' | 'mentioned' | 'had' | 'said' | 'replied' | 'continued' | 'was' | 'stepped' | 'wrote' | 'desired' | 'dismissed' | 'intended' | 'omitted' | 'returned' | 'said' | 'had' | 'reprobated' | 'returned' | 'was' | 'did' | 'connected' | 'had' | 'had' | 'had' | 'exchanged' | 'had' | 'was' | 'sought' | 'were' | 'was' | 'seemed' | 'was' | 'founded' | 'was' | 'were' | 'were' | 'commenced' | 'had' | 'conceited' | 'recollected' | 'had' | 'said' | 'had' | 'had' | 'went' | 'was' | 'appeared' | 'covered' | 'were' | 'was' | 'had' | 'began' | 'took' | 'explained' | 'concluded' | 'said' | 'promised' | 'performed' | 'were' | 'enounced' | 'went' | 'felt' | 'were' | 'were' | 'formed' | 'was' | 'was' | 'exclaimed' | 'marked' | 'closed' | 'was' | 'felt' | 'had' | 'came' | 'were' | 'remained' | 'believed' | 'were' | 'was' | 'was' | 'gave' | 'had' | 'heard' | 'had' | 'said' | 'were' | 'were' | 'had' | 'had' | 'listened' | 'was' | 'added' | 'had' | 'expressed' | 'stimulated' | 'requested' | 'said' | 'attended' | 'took' | 'explained' | 'gave' | 'had' | 'took' | 'ended' | 'decided' | 'became' | 'attended' | 'cultivated' | 'found' | 'found' | 'was' | 'were' | 'banished' | 'smoothed' | 'made' | 'was' | 'gained' | 'proceeded' | 'became' | 'disappeared' | 'was' | 'applied' | 'was' | 'was' | 'asked' | 'went' | 'expressed' | 'paid' | 'was' | 'hoped' | 'sought' | 'was' | 'improved' | 'made' | 'procured' | 'had' | 'had' | 'happened' | 'had' | 'was' | 'did' | 'was' | 'did' | 'revolved' | 'determined' | 'had' | 'became' | 'was' | 'had' | 'had' | 'was' | 'had' | 'was' | 'was' | 'saw' | 'was' | 'saw' | 'inherited' | 'paused' | 'broke' | 'became' | 'illustrated' | 'was' | 'had' | 'were' | 'succeeded' | 'became' | 'had' | 'gave' | 'was' | 'was' | 'had' | 'were' | 'had' | 'was' | 'opened' | 'had' | 'was' | 'was' | 'had' | 'found' | 'aided' | 'was' | 'found' | 'hesitated' | 'possessed' | 'remained' | 'doubted' | 'was' | 'appeared' | 'doubted' | 'prepared' | 'considered' | 'was' | 'was' | 'began' | 'formed' | 'resolved' | 'began' | 'appeared' | 'thought' | 'found' | 'had' | 'supported' | 'pursued' | 'had' | 'had' | 'failed' | 'was' | 'had' | 'pursued' | 'dabbled' | 'tortured' | 'urged' | 'seemed' | 'was' | 'made' | 'had' | 'collected' | 'kept' | 'were' | 'furnished' | 'did' | 'increased' | 'brought' | 'was' | 'was' | 'did' | 'bestow' | 'were' | 'made' | 'caused' | 'were' | 'had' | 'knew' | 'disquieted' | 'remembered' | 'knew' | 'had' | 'wished' | 'were' | 'related' | 'swallowed' | 'ascribed' | 'was' | 'were' | 'allowed' | 'had' | 'had' | 'made' | 'took' | 'passed' | 'did' | 'delight' | 'was' | 'had' | 'drew' | 'showed' | 'had' | 'was' | 'appeared' | 'was' | 'became' | 'startled' | 'shunned' | 'had' | 'grew' | 'perceived' | 'had' | 'believed' | 'was' | 'beheld' | 'amounted' | 'collected' | 'lay' | 'was' | 'pattered' | 'was' | 'saw' | 'breathed' | 'agitated' | 'had' | 'were' | 'had' | 'covered' | 'was' | 'formed' | 'seemed' | 'were' | 'had' | 'had' | 'had' | 'exceeded' | 'had' | 'vanished' | 'had' | 'rushed' | 'continued' | 'had' | 'was' | 'was' | 'thought' | 'embraced' | 'imprinted' | 'became' | 'appeared' | 'thought' | 'held' | 'enveloped' | 'saw' | 'started' | 'covered' | 'became' | 'forced' | 'beheld' | 'had' | 'held' | 'were' | 'opened' | 'muttered' | 'wrinkled' | 'did' | 'was' | 'escaped' | 'rushed' | 'took' | 'inhabited' | 'remained' | 'were' | 'had' | 'had' | 'was' | 'were' | 'became' | 'passed' | 'felt' | 'felt' | 'had' | 'were' | 'was' | 'indicated' | 'opened' | 'had' | 'sought' | 'feared' | 'did' | 'inhabited' | 'felt' | 'poured' | 'continued' | 'weighed' | 'traversed' | 'was' | 'was' | 'hurried' | 'came' | 'stopped' | 'paused' | 'knew' | 'remained' | 'was' | 'drew' | 'observed' | 'was' | 'stopped' | 'was' | 'exclaimed' | 'brought' | 'grasped' | 'felt' | 'welcomed' | 'walked' | 'continued' | 'said' | 'was' | 'was' | 'left' | 'was' | 'left' | 'continued' | 'did' | 'had' | 'trembled' | 'walked' | 'arrived' | 'reflected' | 'made' | 'had' | 'dreaded' | 'feared' | 'darted' | 'was' | 'recollected' | 'came' | 'threw' | 'appeared' | 'stepped' | 'was' | 'was' | 'became' | 'assured' | 'had' | 'clapped' | 'ran' | 'ascended' | 'brought' | 'was' | 'was' | 'possessed' | 'felt' | 'was' | 'jumped' | 'clapped' | 'laughed' | 'observed' | 'saw' | 'frightened' | 'astonished' | 'cried' | 'cried' | 'thought' | 'saw' | 'imagined' | 'seized' | 'struggled' | 'fell' | 'anticipated' | 'was' | 'was' | 'did' | 'was' | 'confined' | 'was' | 'learned' | 'spared' | 'knew' | 'felt' | 'did' | 'performed' | 'was' | 'had' | 'was' | 'raved' | 'persuaded' | 'owed' | 'alarmed' | 'grieved' | 'recovered' | 'became' | 'perceived' | 'had' | 'were' | 'shaded' | 'was' | 'contributed' | 'felt' | 'disappeared' | 'became' | 'was' | 'exclaimed' | 'promised' | 'trembled' | 'dared' | 'said' | 'observed' | 'received' | 'put' | 'was' | 'had' | 'left' | 'left' | 'entered' | 'was' | 'was' | 'had' | 'treated' | 'observed' | 'was' | 'prevailed' | 'surround' | 'learned' | 'was' | 'remarked' | 'were' | 'looked' | 'conceived' | 'was' | 'had' | 'was' | 'was' | 'made' | 'adored' | 'was' | 'paid' | 'thought' | 'endeavoured' | 'died' | 'was' | 'had' | 'was' | 'were' | 'died' | 'was' | 'was' | 'began' | 'was' | 'was' | 'confirmed' | 'had' | 'was' | 'wept' | 'quitted' | 'was' | 'had' | 'had' | 'was' | 'was' | 'begged' | 'accused' | 'threw' | 'increased' | 'died' | 'mentioned' | 'married' | 'exclaimed' | 'had' | 'wrote' | 'fatigued' | 'had' | 'proceeded' | 'was' | 'was' | 'had' | 'had' | 'was' | 'saw' | 'had' | 'had' | 'perceived' | 'had' | 'had' | 'were' | 'visited' | 'inflicted' | 'praised' | 'had' | 'perceived' | 'disliked' | 'attributed' | 'changed' | 'saw' | 'meant' | 'tormented' | 'felt' | 'had' | 'were' | 'writhed' | 'felt' | 'were' | 'declined' | 'took' | 'thanked' | 'did' | 'saw' | 'was' | 'attempted' | 'loved' | 'knew' | 'was' | 'feared' | 'was' | 'gave' | 'cried' | 'believed' | 'pulled' | 'continued' | 'was' | 'had' | 'turned' | 'was' | 'had' | 'had' | 'came' | 'had' | 'turned' | 'engaged' | 'was' | 'had' | 'wished' | 'hated' | 'felt' | 'found' | 'did' | 'did' | 'passed' | 'was' | 'were' | 'was' | 'felt' | 'longed' | 'had' | 'had' | 'was' | 'was' | 'came' | 'expected' | 'was' | 'proposed' | 'had' | 'acceded' | 'was' | 'had' | 'had' | 'passed' | 'had' | 'gained' | 'breathed' | 'had' | 'rendered' | 'called' | 'taught' | 'did' | 'was' | 'had' | 'warmed' | 'opened' | 'became' | 'loved' | 'had' | 'had' | 'filled' | 'was' | 'were' | 'was' | 'had' | 'rejoiced' | 'exerted' | 'expressed' | 'filled' | 'were' | 'was' | 'invented' | 'repeated' | 'supported' | 'returned' | 'were' | 'met' | 'were' | 'bounded' | 'found' | 'was' | 'expected' | 'delighted' | 'warmed' | 'was' | 'went' | 'was' | 'prolonged' | 'was' | 'thought' | 'discovered' | 'had' | 'were' | 'rested' | 'came' | 'had' | 'said' | 'had' | 'had' | 'sought' | 'waited' | 'did' | 'alarmed' | 'continued' | 'fell' | 'conjectured' | 'was' | 'returned' | 'thought' | 'had' | 'was' | 'suffered' | 'discovered' | 'had' | 'was' | 'was' | 'was' | 'betrayed' | 'was' | 'persisted' | 'lay' | 'examined' | 'fainted' | 'was' | 'lived' | 'was' | 'told' | 'had' | 'possessed' | 'was' | 'urged' | 'did' | 'afflicted' | 'had' | 'was' | 'succeeded' | 'threw' | 'covered' | 'exclaimed' | 'perceived' | 'motioned' | 'walked' | 'gushed' | 'read' | 'said' | 'endeavoured' | 'said' | 'had' | 'spoke' | 'hurried' | 'remembered' | 'arrived' | 'was' | 'wished' | 'longed' | 'drew' | 'slackened' | 'crowded' | 'passed' | 'had' | 'had' | 'were' | 'dared' | 'made' | 'was' | 'remained' | 'contemplated' | 'were' | 'was' | 'were' | 'restored' | 'continued' | 'became' | 'approached' | 'discovered' | 'were' | 'took' | 'drew' | 'closed' | 'felt' | 'appeared' | 'was' | 'prophesied' | 'failed' | 'imagined' | 'dreaded' | 'did' | 'was' | 'was' | 'arrived' | 'were' | 'was' | 'was' | 'was' | 'had' | 'was' | 'saw' | 'appeared' | 'ascended' | 'advanced' | 'were' | 'felt' | 'increased' | 'quitted' | 'walked' | 'was' | 'seemed' | 'recovered' | 'appeared' | 'enlightened' | 'disclosed' | 'watched' | 'wandered' | 'elevated' | 'clasped' | 'exclaimed' | 'said' | 'perceived' | 'stood' | 'discovered' | 'was' | 'had' | 'did' | 'did' | 'became' | 'was' | 'passed' | 'lost' | 'was' | 'was' | 'discovered' | 'reached' | 'disappeared' | 'remained' | 'ceased' | 'was' | 'revolved' | 'had' | 'had' | 'received' | 'was' | 'had' | 'was' | 'had' | 'murdered' | 'suffered' | 'did' | 'was' | 'considered' | 'had' | 'endowed' | 'had' | 'let' | 'forced' | 'was' | 'dawned' | 'were' | 'hastened' | 'was' | 'paused' | 'reflected' | 'had' | 'had' | 'had' | 'remembered' | 'had' | 'dated' | 'knew' | 'had' | 'were' | 'determined' | 'resolved' | 'was' | 'entered' | 'told' | 'went' | 'had' | 'had' | 'remained' | 'stood' | 'was' | 'represented' | 'was' | 'was' | 'permitted' | 'was' | 'flowed' | 'looked' | 'was' | 'entered' | 'had' | 'hastened' | 'said' | 'had' | 'was' | 'fell' | 'had' | 'came' | 'tried' | 'enquired' | 'said' | 'accused' | 'made' | 'discovered' | 'saw' | 'was' | 'replied' | 'was' | 'did' | 'came' | 'related' | 'had' | 'had' | 'confined' | 'had' | 'had' | 'had' | 'showed' | 'went' | 'was' | 'confirmed' | 'was' | 'did' | 'entered' | 'saw' | 'endeavoured' | 'had' | 'had' | 'was' | 'replied' | 'had' | 'calmed' | 'was' | 'was' | 'had' | 'was' | 'did' | 'convinced' | 'had' | 'were' | 'had' | 'beheld' | 'had' | 'was' | 'was' | 'welcomed' | 'said' | 'lost' | 'said' | 'made' | 'wretched' | 'knew' | 'was' | 'rendered' | 'wept' | 'said' | 'passed' | 'was' | 'accompanied' | 'suffered' | 'was' | 'was' | 'promised' | 'was' | 'was' | 'was' | 'suffered' | 'was' | 'was' | 'was' | 'appeared' | 'did' | 'was' | 'was' | 'was' | 'was' | 'had' | 'worked' | 'entered' | 'threw' | 'round' | 'discovered' | 'were' | 'seemed' | 'saw' | 'recovered' | 'seemed' | 'began' | 'had' | 'were' | 'had' | 'had' | 'had' | 'had' | 'had' | 'had' | 'asked' | 'did' | 'looked' | 'returned' | 'returned' | 'had' | 'replied' | 'had' | 'demanded' | 'had' | 'fell' | 'kept' | 'was' | 'had' | 'proved' | 'was' | 'had' | 'had' | 'filled' | 'was' | 'had' | 'had' | 'were' | 'struggled' | 'was' | 'collected' | 'spoke' | 'said' | 'related' | 'had' | 'had' | 'met' | 'asked' | 'had' | 'was' | 'was' | 'passed' | 'were' | 'was' | 'was' | 'spent' | 'believed' | 'slept' | 'disturbed' | 'awoke' | 'was' | 'quitted' | 'had' | 'lay' | 'was' | 'had' | 'was' | 'had' | 'was' | 'continued' | 'did' | 'afforded' | 'had' | 'examined' | 'were' | 'had' | 'spoke' | 'supposed' | 'rendered' | 'saw' | 'desired' | 'said' | 'was' | 'was' | 'appeared' | 'nursed' | 'attended' | 'excited' | 'knew' | 'lived' | 'was' | 'was' | 'produced' | 'had' | 'had' | 'followed' | 'was' | 'was' | 'wept' | 'did' | 'was' | 'believed' | 'knew' | 'had' | 'did' | 'murdered' | 'perceived' | 'had' | 'rushed' | 'did' | 'was' | 'passed' | 'went' | 'were' | 'dared' | 'was' | 'guessed' | 'had' | 'were' | 'was' | 'felt' | 'had' | 'endured' | 'addressed' | 'added' | 'had' | 'observed' | 'was' | 'was' | 'had' | 'deceived' | 'was' | 'disclosed' | 'hastened' | 'replied' | 'had' | 'was' | 'had' | 'said' | 'seemed' | 'heard' | 'had' | 'wished' | 'said' | 'left' | 'said' | 'was' | 'entered' | 'were' | 'rested' | 'rose' | 'were' | 'threw' | 'said' | 'did' | 'relied' | 'was' | 'was' | 'was' | 'said' | 'had' | 'did' | 'confessed' | 'confessed' | 'was' | 'threatened' | 'menaced' | 'began' | 'was' | 'said' | 'was' | 'threatened' | 'continued' | 'had' | 'looked' | 'subscribed' | 'paused' | 'continued' | 'had' | 'loved' | 'was' | 'blessed' | 'did' | 'shook' | 'said' | 'had' | 'possessed' | 'dared' | 'was' | 'felt' | 'did' | 'gnashed' | 'came' | 'started' | 'saw' | 'was' | 'approached' | 'said' | 'said' | 'was' | 'heard' | 'had' | 'did' | 'tried' | 'gained' | 'desired' | 'felt' | 'allowed' | 'wept' | 'was' | 'was' | 'had' | 'stayed' | 'was' | 'cried' | 'were' | 'assumed' | 'repressed' | 'embraced' | 'said' | 'died' | 'failed' | 'were' | 'received' | 'heard' | 'died' | 'revoke' | 'passed' | 'perished' | 'turned' | 'was' | 'was' | 'spoke' | 'loved' | 'died' | 'rested' | 'was' | 'flowed' | 'wandered' | 'had' | 'persuaded' | 'was' | 'had' | 'was' | 'allowed' | 'was' | 'hurried' | 'had' | 'had' | 'shunned' | 'was' | 'was' | 'observed' | 'brooded' | 'said' | 'came' | 'spoke' | 'was' | 'had' | 'retired' | 'was' | 'had' | 'was' | 'had' | 'took' | 'passed' | 'was' | 'left' | 'gave' | 'was' | 'was' | 'wandered' | 'interrupted' | 'was' | 'approached' | 'was' | 'was' | 'i' | 'was' | 'thought' | 'had' | 'wished' | 'had' | 'lived' | 'had' | 'had' | 'was' | 'was' | 'loved' | 'became' | 'had' | 'reflected' | 'wished' | 'was' | 'was' | 'was' | 'took' | 'seemed' | 'thought' | 'was' | 'was' | 'wandered' | 'talked' | 'had' | 'quenched' | 'said' | 'appeared' | 'looked' | 'were' | 'believed' | 'suffered' | 'had' | 'appeared' | 'had' | 'was' | 'was' | 'were' | 'were' | 'were' | 'listened' | 'was' | 'said' | 'lost' | 'prized' | 'lurked' | 'spoke' | 'drew' | 'had' | 'were' | 'was' | 'had' | 'was' | 'overwhelmed' | 'drove' | 'was' | 'left' | 'were' | 'had' | 'had' | 'was' | 'had' | 'performed' | 'hired' | 'was' | 'was' | 'dated' | 'was' | 'plunged' | 'ceased' | 'had' | 'ruled' | 'ascended' | 'assumed' | 'formed' | 'was' | 'passed' | 'opened' | 'began' | 'entered' | 'had' | 'were' | 'saw' | 'approached' | 'marked' | 'raised' | 'overlooked' | 'came' | 'reminded' | 'were' | 'bade' | 'ceased' | 'alighted' | 'threw' | 'weighed' | 'arrived' | 'succeeded' | 'had' | 'remained' | 'played' | 'pursued' | 'acted' | 'placed' | 'felt' | 'came' | 'blessed' | 'spent' | 'stood' | 'were' | 'were' | 'was' | 'was' | 'had' | 'afforded' | 'was' | 'elevated' | 'did' | 'subdued' | 'tranquillized' | 'diverted' | 'had' | 'retired' | 'were' | 'had' | 'congregated' | 'ragged' | 'gathered' | 'had' | 'fled' | 'awoke' | 'clouded' | 'was' | 'saw' | 'were' | 'was' | 'resolved' | 'remembered' | 'had' | 'saw' | 'had' | 'gave' | 'allowed' | 'had' | 'determined' | 'was' | 'looked' | 'were' | 'were' | 'poured' | 'added' | 'received' | 'were' | 'was' | 'arrived' | 'sat' | 'covered' | 'dissipated' | 'descended' | 'spent' | 'stood' | 'was' | 'rose' | 'remained' | 'hung' | 'was' | 'exclaimed' | 'said' | 'beheld' | 'bounded' | 'had' | 'approached' | 'seemed' | 'was' | 'came' | 'felt' | 'was' | 'perceived' | 'came' | 'was' | 'had' | 'trembled' | 'approached' | 'bespoke' | 'rendered' | 'observed' | 'hatred' | 'had' | 'deprived' | 'recovered' | 'exclaimed' | 'wreaked' | 'expected' | 'said' | 'was' | 'eluded' | 'said' | 'made' | 'thou' | 'was' | 'made' | 'was' | 'rejoined' | 'saw' | 'formed' | 'said' | 'placed' | 'possessed' | 'said' | 'led' | 'followed' | 'was' | 'did' | 'proceeded' | 'weighed' | 'had' | 'was' | 'confirmed' | 'had' | 'supposed' | 'felt' | 'were' | 'complained' | 'urged' | 'crossed' | 'ascended' | 'was' | 'began' | 'entered' | 'consented' | 'had' | 'began' | 'felt' | 'was' | 'learned' | 'was' | 'came' | 'troubled' | 'had' | 'poured' | 'walked' | 'descended' | 'had' | 'became' | 'walked' | 'sought' | 'was' | 'felt' | 'roused' | 'found' | 'slaked' | 'was' | 'was' | 'felt' | 'frightened' | 'were' | 'had' | 'had' | 'were' | 'was' | 'knew' | 'sat' | 'gave' | 'started' | 'moved' | 'enlightened' | 'went' | 'was' | 'found' | 'covered' | 'sat' | 'was' | 'felt' | 'saluted' | 'was' | 'had' | 'began' | 'supplied' | 'shaded' | 'was' | 'discovered' | 'saluted' | 'proceeded' | 'had' | 'began' | 'surrounded' | 'canopied' | 'tried' | 'was' | 'wished' | 'broke' | 'frightened' | 'had' | 'showed' | 'remained' | 'received' | 'became' | 'distinguished' | 'found' | 'uttered' | 'were' | 'was' | 'found' | 'had' | 'was' | 'experienced' | 'drew' | 'thought' | 'examined' | 'found' | 'collected' | 'were' | 'was' | 'sat' | 'had' | 'dried' | 'became' | 'reflected' | 'discovered' | 'busied' | 'came' | 'brought' | 'was' | 'covered' | 'placed' | 'was' | 'awoke' | 'was' | 'uncovered' | 'fanned' | 'observed' | 'contrived' | 'roused' | 'were' | 'came' | 'found' | 'gave' | 'was' | 'found' | 'had' | 'had' | 'tasted' | 'tried' | 'found' | 'were' | 'became' | 'spent' | 'found' | 'had' | 'experienced' | 'had' | 'knew' | 'gave' | 'was' | 'passed' | 'discovered' | 'had' | 'were' | 'was' | 'found' | 'covered' | 'was' | 'longed' | 'perceived' | 'had' | 'was' | 'examined' | 'entered' | 'sat' | 'was' | 'turned' | 'shrieked' | 'ran' | 'debilitated' | 'appeared' | 'had' | 'surprised' | 'was' | 'was' | 'presented' | 'appeared' | 'devoured' | 'consisted' | 'did' | 'lay' | 'fell' | 'was' | 'determined' | 'found' | 'proceeded' | 'arrived' | 'did' | 'engaged' | 'saw' | 'allured' | 'entered' | 'had' | 'shrieked' | 'was' | 'fled' | 'attacked' | 'escaped' | 'took' | 'had' | 'joined' | 'bought' | 'dared' | 'was' | 'was' | 'formed' | 'was' | 'entered' | 'found' | 'retreated' | 'lay' | 'dawned' | 'had' | 'was' | 'surrounded' | 'were' | 'was' | 'had' | 'enjoyed' | 'came' | 'was' | 'carpeted' | 'retired' | 'saw' | 'remembered' | 'had' | 'was' | 'was' | 'was' | 'was' | 'was' | 'heard' | 'beheld' | 'was' | 'was' | 'was' | 'looked' | 'lost' | 'returned' | 'was' | 'walked' | 'met' | 'expressed' | 'took' | 'followed' | 'disappeared' | 'saw' | 'was' | 'found' | 'had' | 'had' | 'was' | 'was' | 'sat' | 'was' | 'took' | 'employed' | 'sat' | 'began' | 'was' | 'had' | 'won' | 'enticed' | 'played' | 'perceived' | 'took' | 'sobbed' | 'pronounced' | 'knelt' | 'raised' | 'smiled' | 'felt' | 'were' | 'had' | 'returned' | 'met' | 'helped' | 'placed' | 'went' | 'showed' | 'seemed' | 'went' | 'placed' | 'afterwards' | 'continued' | 'went' | 'appeared' | 'had' | 'joined' | 'entered' | 'had' | 'assumed' | 'sat' | 'was' | 'was' | 'walked' | 'was' | 'was' | 'were' | 'expressed' | 'returned' | 'had' | 'directed' | 'shut' | 'found' | 'had' | 'was' | 'did' | 'experienced' | 'were' | 'did' | 'took' | 'produced' | 'had' | 'had' | 'began' | 'were' | 'found' | 'read' | 'knew' | 'extinguished' | 'conjectured' | 'lay' | 'chiefly' | 'struck' | 'was' | 'longed' | 'dared' | 'remembered' | 'had' | 'resolved' | 'influenced' | 'arranged' | 'prepared' | 'departed' | 'was' | 'preceded' | 'was' | 'perceived' | 'employed' | 'exhibited' | 'performed' | 'rewarded' | 'were' | 'went' | 'appeared' | 'saw' | 'was' | 'were' | 'was' | 'were' | 'possessed' | 'was' | 'had' | 'were' | 'enjoyed' | 'did' | 'did' | 'was' | 'were' | 'elapsed' | 'discovered' | 'was' | 'suffered' | 'consisted' | 'gave' | 'suffered' | 'placed' | 'reserved' | 'moved' | 'had' | 'found' | 'inflicted' | 'abstained' | 'satisfied' | 'discovered' | 'was' | 'found' | 'spent' | 'took' | 'discovered' | 'brought' | 'did' | 'opened' | 'appeared' | 'uttered' | 'joined' | 'expressed' | 'observed' | 'did' | 'spent' | 'made' | 'found' | 'possessed' | 'perceived' | 'spoke' | 'was' | 'was' | 'made' | 'was' | 'uttered' | 'was' | 'discovered' | 'were' | 'learned' | 'applied' | 'learned' | 'had' | 'had' | 'was' | 'was' | 'felt' | 'learned' | 'was' | 'distinguished' | 'spent' | 'endeared' | 'were' | 'felt' | 'rejoiced' | 'saw' | 'happened' | 'enhanced' | 'found' | 'called' | 'bestowed' | 'listened' | 'endeavoured' | 'were' | 'was' | 'was' | 'appeared' | 'was' | 'was' | 'addressed' | 'marked' | 'peeped' | 'had' | 'cleared' | 'obstructed' | 'drew' | 'brought' | 'found' | 'worked' | 'went' | 'did' | 'worked' | 'was' | 'read' | 'had' | 'discovered' | 'uttered' | 'read' | 'talked' | 'conjectured' | 'found' | 'understood' | 'was' | 'did' | 'stood' | 'improved' | 'perceived' | 'had' | 'had' | 'had' | 'was' | 'viewed' | 'started' | 'was' | 'was' | 'became' | 'was' | 'was' | 'did' | 'became' | 'beheld' | 'was' | 'disappeared' | 'found' | 'was' | 'was' | 'procured' | 'dressed' | 'increased' | 'advanced' | 'walked' | 'did' | 'found' | 'was' | 'poured' | 'took' | 'dried' | 'became' | 'had' | 'was' | 'attended' | 'were' | 'was' | 'had' | 'was' | 'was' | 'went' | 'returned' | 'was' | 'cleared' | 'performed' | 'had' | 'found' | 'astonished' | 'did' | 'became' | 'longed' | 'was' | 'appeared' | 'thought' | 'slept' | 'was' | 'flitted' | 'looked' | 'formed' | 'imagined' | 'exhilarated' | 'led' | 'were' | 'was' | 'pronounced' | 'was' | 'were' | 'were' | 'deserved' | 'altered' | 'seemed' | 'dispersed' | 'were' | 'sang' | 'began' | 'was' | 'were' | 'was' | 'was' | 'impressed' | 'had' | 'advanced' | 'became' | 'surprised' | 'was' | 'were' | 'was' | 'played' | 'listened' | 'observed' | 'was' | 'sighed' | 'paused' | 'inquired' | 'replied' | 'was' | 'tapped' | 'was' | 'was' | 'asked' | 'was' | 'came' | 'saw' | 'threw' | 'beheld' | 'braided' | 'were' | 'seemed' | 'saw' | 'expressed' | 'sparkled' | 'thought' | 'appeared' | 'held' | 'kissed' | 'called' | 'did' | 'smiled' | 'assisted' | 'conducted' | 'took' | 'knelt' | 'raised' | 'embraced' | 'perceived' | 'appeared' | 'was' | 'understood' | 'made' | 'did' | 'saw' | 'diffused' | 'seemed' | 'welcomed' | 'kissed' | 'appeared' | 'had' | 'came' | 'expressed' | 'did' | 'was' | 'occurred' | 'learned' | 'were' | 'had' | 'came' | 'retired' | 'separated' | 'kissed' | 'said' | 'sat' | 'conjectured' | 'was' | 'found' | 'went' | 'were' | 'played' | 'sang' | 'had' | 'gave' | 'declined' | 'played' | 'accompanied' | 'appeared' | 'said' | 'appeared' | 'bestowed' | 'had' | 'was' | 'began' | 'was' | 'interspersed' | 'became' | 'were' | 'were' | 'had' | 'entered' | 'were' | 'improved' | 'understood' | 'comprehended' | 'was' | 'learned' | 'was' | 'instructed' | 'was' | 'had' | 'had' | 'said' | 'was' | 'obtained' | 'gave' | 'inspired' | 'was' | 'appeared' | 'appeared' | 'appeared' | 'were' | 'bloodshed' | 'ceased' | 'turned' | 'opened' | 'listened' | 'was' | 'induced' | 'learned' | 'were' | 'was' | 'doomed' | 'was' | 'was' | 'knew' | 'possessed' | 'was' | 'was' | 'was' | 'exceeded' | 'looked' | 'was' | 'fled' | 'inflicted' | 'tried' | 'had' | 'wished' | 'learned' | 'was' | 'was' | 'feared' | 'did' | 'admired' | 'loved' | 'was' | 'was' | 'increased' | 'satisfied' | 'had' | 'were' | 'were' | 'were' | 'doted' | 'were' | 'were' | 'had' | 'had' | 'had' | 'was' | 'distinguished' | 'had' | 'was' | 'had' | 'claimed' | 'was' | 'recurred' | 'tended' | 'loved' | 'elapsed' | 'learned' | 'was' | 'did' | 'was' | 'was' | 'was' | 'had' | 'was' | 'had' | 'had' | 'had' | 'was' | 'had' | 'became' | 'was' | 'arrived' | 'was' | 'was' | 'was' | 'was' | 'had' | 'had' | 'were' | 'heard' | 'made' | 'looked' | 'found' | 'lighted' | 'loaded' | 'waited' | 'visited' | 'made' | 'rejected' | 'saw' | 'was' | 'expressed' | 'possessed' | 'perceived' | 'had' | 'endeavoured' | 'was' | 'looked' | 'were' | 'was' | 'received' | 'found' | 'understood' | 'thanked' | 'deplored' | 'found' | 'were' | 'declined' | 'was' | 'had' | 'married' | 'spoke' | 'spurned' | 'was' | 'instructed' | 'taught' | 'died' | 'were' | 'sickened' | 'were' | 'was' | 'was' | 'quitted' | 'was' | 'had' | 'had' | 'aided' | 'concealed' | 'conducted' | 'had' | 'resolved' | 'renewed' | 'enjoyed' | 'exhibited' | 'conversed' | 'allowed' | 'encouraged' | 'had' | 'loathed' | 'feared' | 'knew' | 'was' | 'inhabited' | 'revolved' | 'departed' | 'were' | 'arrived' | 'were' | 'spared' | 'was' | 'were' | 'reached' | 'roused' | 'aged' | 'enjoyed' | 'loved' | 'was' | 'arranged' | 'hastened' | 'did' | 'remained' | 'took' | 'deprived' | 'condemned' | 'found' | 'discovered' | 'endured' | 'was' | 'became' | 'had' | 'said' | 'were' | 'rendered' | 'saw' | 'had' | 'gloried' | 'were' | 'reached' | 'was' | 'commanded' | 'was' | 'attempted' | 'left' | 'entered' | 'told' | 'had' | 'had' | 'had' | 'intended' | 'had' | 'was' | 'were' | 'fell' | 'heard' | 'resided' | 'hesitated' | 'formed' | 'belonged' | 'quitted' | 'understood' | 'departed' | 'arrived' | 'fell' | 'nursed' | 'died' | 'was' | 'fell' | 'had' | 'were' | 'had' | 'took' | 'was' | 'impressed' | 'learned' | 'developed' | 'looked' | 'were' | 'were' | 'occurred' | 'collected' | 'brought' | 'found' | 'were' | 'had' | 'consisted' | 'gave' | 'were' | 'produced' | 'had' | 'found' | 'described' | 'had' | 'were' | 'thought' | 'had' | 'contained' | 'sank' | 'were' | 'did' | 'inclined' | 'found' | 'was' | 'understood' | 'was' | 'was' | 'was' | 'was' | 'was' | 'did' | 'was' | 'was' | 'did' | 'was' | 'was' | 'contained' | 'had' | 'learned' | 'elevated' | 'had' | 'was' | 'had' | 'had' | 'developed' | 'felt' | 'understood' | 'were' | 'applied' | 'was' | 'caused' | 'had' | 'read' | 'had' | 'had' | 'moved' | 'was' | 'referred' | 'struck' | 'was' | 'was' | 'had' | 'was' | 'was' | 'viewed' | 'rose' | 'strengthened' | 'confirmed' | 'discovered' | 'had' | 'had' | 'was' | 'were' | 'began' | 'was' | 'preceded' | 'took' | 'was' | 'produced' | 'painted' | 'rendered' | 'sickened' | 'received' | 'exclaimed' | 'did' | 'turned' | 'had' | 'were' | 'contemplated' | 'persuaded' | 'solicited' | 'resolved' | 'postponed' | 'attached' | 'inspired' | 'found' | 'was' | 'took' | 'found' | 'were' | 'did' | 'were' | 'were' | 'became' | 'discovered' | 'was' | 'cherished' | 'vanished' | 'endeavoured' | 'resolved' | 'allowed' | 'dared' | 'breathed' | 'was' | 'soothed' | 'was' | 'remembered' | 'was' | 'had' | 'cursed' | 'passed' | 'saw' | 'had' | 'beheld' | 'did' | 'was' | 'were' | 'turned' | 'was' | 'loved' | 'sympathized' | 'were' | 'took' | 'became' | 'directed' | 'was' | 'dared' | 'stopped' | 'were' | 'asked' | 'required' | 'did' | 'advanced' | 'had' | 'was' | 'revolved' | 'was' | 'had' | 'was' | 'had' | 'had' | 'thought' | 'strewed' | 'denied' | 'was' | 'had' | 'took' | 'played' | 'had' | 'was' | 'continued' | 'succeeded' | 'sat' | 'was' | 'were' | 'was' | 'was' | 'proceeded' | 'failed' | 'rose' | 'was' | 'removed' | 'had' | 'revived' | 'approached' | 'knocked' | 'said' | 'entered' | 'said' | 'said' | 'sat' | 'knew' | 'was' | 'remained' | 'addressed' | 'was' | 'let' | 'behold' | 'paused' | 'continued' | 'were' | 'paused' | 'thought' | 'was' | 'was' | 'struggled' | 'destroyed' | 'sank' | 'sobbed' | 'heard' | 'had' | 'cried' | 'exclaimed' | 'was' | 'rushed' | 'darted' | 'tore' | 'dashed' | 'refrained' | 'saw' | 'quitted' | 'escaped' | 'cursed' | 'cursed' | 'did' | 'did' | 'had' | 'had' | 'were' | 'came' | 'gave' | 'was' | 'had' | 'obstructed' | 'passed' | 'waved' | 'were' | 'wished' | 'spread' | 'was' | 'became' | 'was' | 'existed' | 'declared' | 'had' | 'sent' | 'rose' | 'knew' | 'was' | 'restored' | 'considered' | 'had' | 'had' | 'had' | 'was' | 'had' | 'was' | 'did' | 'resolved' | 'calmed' | 'sank' | 'did' | 'was' | 'were' | 'awoke' | 'was' | 'crept' | 'went' | 'was' | 'directed' | 'conducted' | 'was' | 'remained' | 'arose' | 'passed' | 'mounted' | 'did' | 'trembled' | 'was' | 'entered' | 'did' | 'said' | 'spoke' | 'differed' | 'approached' | 'was' | 'knew' | 'had' | 'waited' | 'said' | 'trembled' | 'said' | 'entered' | 'remained' | 'departed' | 'saw' | 'continued' | 'had' | 'had' | 'held' | 'hatred' | 'did' | 'vanished' | 'soothed' | 'reflected' | 'had' | 'turned' | 'advanced' | 'placed' | 'waited' | 'had' | 'advanced' | 'dispersed' | 'had' | 'produced' | 'lighted' | 'was' | 'waved' | 'sank' | 'fired' | 'had' | 'fanned' | 'was' | 'licked' | 'was' | 'quitted' | 'sought' | 'resolved' | 'hated' | 'despised' | 'learned' | 'were' | 'had' | 'had' | 'had' | 'had' | 'had' | 'was' | 'knew' | 'was' | 'did' | 'was' | 'did' | 'felt' | 'had' | 'had' | 'wore' | 'were' | 'was' | 'quitted' | 'had' | 'travelled' | 'became' | 'were' | 'was' | 'found' | 'did' | 'had' | 'was' | 'approached' | 'did' | 'fell' | 'were' | 'rested' | 'directed' | 'possessed' | 'occurred' | 'happened' | 'arrived' | 'had' | 'began' | 'travelled' | 'was' | 'lay' | 'ventured' | 'had' | 'was' | 'cheered' | 'felt' | 'had' | 'allowed' | 'dared' | 'bedewed' | 'bestowed' | 'continued' | 'came' | 'was' | 'heard' | 'induced' | 'was' | 'came' | 'was' | 'ran' | 'continued' | 'slipped' | 'fell' | 'saved' | 'dragged' | 'was' | 'was' | 'was' | 'had' | 'darted' | 'hastened' | 'followed' | 'knew' | 'saw' | 'aimed' | 'carried' | 'fired' | 'sank' | 'escaped' | 'was' | 'had' | 'shattered' | 'had' | 'gave' | 'vowed' | 'fainted' | 'led' | 'had' | 'had' | 'had' | 'had' | 'were' | 'rose' | 'had' | 'healed' | 'continued' | 'endured' | 'were' | 'was' | 'insulted' | 'made' | 'was' | 'reached' | 'was' | 'arrived' | 'retired' | 'surround' | 'was' | 'relieved' | 'was' | 'came' | 'had' | 'seized' | 'was' | 'had' | 'passed' | 'drew' | 'beheld' | 'placed' | 'uttered' | 'drew' | 'said' | 'struggled' | 'cried' | 'struggled' | 'loaded' | 'carried' | 'grasped' | 'lay' | 'swelled' | 'exclaimed' | 'saw' | 'took' | 'was' | 'softened' | 'attracted' | 'returned' | 'remembered' | 'was' | 'contemplated' | 'transported' | 'did' | 'was' | 'left' | 'had' | 'entered' | 'had' | 'was' | 'was' | 'held' | 'stirred' | 'ran' | 'beheld' | 'was' | 'stirred' | 'had' | 'had' | 'placed' | 'moved' | 'fled' | 'haunted' | 'had' | 'wandered' | 'fixed' | 'was' | 'continued' | 'had' | 'had' | 'narrated' | 'said' | 'burned' | 'replied' | 'replied' | 'animated' | 'said' | 'was' | 'calmed' | 'proceeded' | 'cut' | 'was' | 'shuddered' | 'felt' | 'was' | 'expressed' | 'proved' | 'did' | 'owe' | 'was' | 'saw' | 'replied' | 'were' | 'made' | 'had' | 'compassionated' | 'felt' | 'looked' | 'saw' | 'moved' | 'talked' | 'sickened' | 'were' | 'hatred' | 'tried' | 'thought' | 'had' | 'was' | 'said' | 'hatred' | 'became' | 'paused' | 'had' | 'had' | 'had' | 'had' | 'were' | 'was' | 'concluded' | 'demanded' | 'said' | 'cried' | 'quitted' | 'saw' | 'lost' | 'had' | 'was' | 'departed' | 'knew' | 'was' | 'advanced' | 'occupied' | 'was' | 'had' | 'was' | 'came' | 'rose' | 'was' | 'stirred' | 'wept' | 'exclaimed' | 'were' | 'weighed' | 'listened' | 'were' | 'dawned' | 'took' | 'returned' | 'weighed' | 'returned' | 'awoke' | 'answered' | 'did' | 'felt' | 'were' | 'had' | 'loved' | 'resolved' | 'thought' | 'had' | 'feared' | 'was' | 'was' | 'found' | 'had' | 'was' | 'began' | 'had' | 'had' | 'declined' | 'was' | 'rose' | 'saw' | 'turned' | 'took' | 'passed' | 'failed' | 'met' | 'was' | 'addressed' | 'was' | 'struck' | 'trembled' | 'continued' | 'were' | 'studied' | 'appeared' | 'conceived' | 'saw' | 'excited' | 'listened' | 'remained' | 'revolved' | 'endeavoured' | 'was' | 'was' | 'had' | 'did' | 'manifold' | 'allowed' | 'expected' | 'remembered' | 'were' | 'was' | 'had' | 'loved' | 'knew' | 'was' | 'loved' | 'commenced' | 'put' | 'dictated' | 'expressed' | 'clothed' | 'excited' | 'urged' | 'induced' | 'resembled' | 'was' | 'was' | 'hoped' | 'was' | 'was' | 'contemplated' | 'had' | 'had' | 'arranged' | 'coveted' | 'rejoiced' | 'were' | 'was' | 'was' | 'rendered' | 'was' | 'promised' | 'was' | 'enfranchised' | 'made' | 'filled' | 'exasperated' | 'had' | 'was' | 'supposed' | 'was' | 'was' | 'allowed' | 'intimated' | 'was' | 'quitted' | 'had' | 'was' | 'had' | 'provided' | 'longed' | 'rendered' | 'bade' | 'threw' | 'was' | 'was' | 'was' | 'remembered' | 'was' | 'reflected' | 'passed' | 'were' | 'was' | 'endured' | 'traversed' | 'arrived' | 'waited' | 'came' | 'was' | 'was' | 'saw' | 'beheld' | 'pointed' | 'cried' | 'was' | 'saw' | 'observed' | 'shut' | 'had' | 'passed' | 'saw' | 'stayed' | 'saw' | 'ruined' | 'travelled' | 'heard' | 'glided' | 'was' | 'seemed' | 'had' | 'were' | 'felt' | 'had' | 'enjoyed' | 'said' | 'were' | 'tore' | 'gave' | 'were' | 'said' | 'was' | 'was' | 'was' | 'were' | 'loved' | 'haunted' | 'were' | 'had' | 'formed' | 'depended' | 'descended' | 'resolved' | 'was' | 'was' | 'lost' | 'arrived' | 'proceeded' | 'was' | 'saw' | 'presented' | 'were' | 'was' | 'saw' | 'remembered' | 'had' | 'saw' | 'was' | 'determined' | 'desired' | 'flourished' | 'was' | 'was' | 'availed' | 'had' | 'addressed' | 'had' | 'had' | 'was' | 'was' | 'saw' | 'placed' | 'was' | 'saw' | 'was' | 'observed' | 'was' | 'was' | 'had' | 'had' | 'was' | 'had' | 'had' | 'was' | 'was' | 'tried' | 'was' | 'refused' | 'began' | 'was' | 'was' | 'was' | 'spoke' | 'caused' | 'received' | 'had' | 'mentioned' | 'asked' | 'were' | 'resided' | 'abhorred' | 'wished' | 'had' | 'was' | 'determined' | 'did' | 'packed' | 'had' | 'quitted' | 'remained' | 'was' | 'were' | 'proceeded' | 'entered' | 'were' | 'had' | 'was' | 'had' | 'had' | 'had' | 'gave' | 'found' | 'delighted' | 'had' | 'had' | 'embosomed' | 'enjoyed' | 'was' | 'was' | 'was' | 'felt' | 'passed' | 'were' | 'presented' | 'visited' | 'fell' | 'was' | 'were' | 'dared' | 'had' | 'sank' | 'left' | 'proceeded' | 'was' | 'resembled' | 'visited' | 'made' | 'hastened' | 'was' | 'passed' | 'were' | 'made' | 'contrived' | 'was' | 'expanded' | 'found' | 'associated' | 'said' | 'found' | 'had' | 'conceived' | 'approached' | 'left' | 'was' | 'had' | 'feared' | 'pursued' | 'tormented' | 'waited' | 'were' | 'was' | 'arrived' | 'saw' | 'thought' | 'followed' | 'possessed' | 'followed' | 'felt' | 'had' | 'haunted' | 'was' | 'had' | 'visited' | 'did' | 'was' | 'compensated' | 'filled' | 'was' | 'left' | 'expected' | 'was' | 'told' | 'wished' | 'said' | 'wished' | 'ceased' | 'entreated' | 'had' | 'said' | 'determined' | 'did' | 'followed' | 'traversed' | 'was' | 'were' | 'was' | 'consisted' | 'gave' | 'indulged' | 'was' | 'was' | 'were' | 'was' | 'arrived' | 'hired' | 'contained' | 'had' | 'were' | 'was' | 'ordered' | 'bought' | 'took' | 'had' | 'was' | 'lived' | 'thanked' | 'gave' | 'devoted' | 'permitted' | 'walked' | 'roared' | 'dashed' | 'was' | 'was' | 'distributed' | 'arrived' | 'proceeded' | 'became' | 'toiled' | 'was' | 'was' | 'had' | 'was' | 'were' | 'went' | 'sickened' | 'was' | 'became' | 'grew' | 'feared' | 'feared' | 'worked' | 'was' | 'looked' | 'dared' | 'was' | 'made' | 'sat' | 'had' | 'was' | 'had' | 'remained' | 'sat' | 'occurred' | 'led' | 'was' | 'was' | 'had' | 'had' | 'filled' | 'was' | 'was' | 'had' | 'had' | 'was' | 'lived' | 'came' | 'were' | 'thirsted' | 'had' | 'had' | 'had' | 'had' | 'shuddered' | 'had' | 'trembled' | 'failed' | 'wrinkled' | 'gazed' | 'sat' | 'had' | 'had' | 'had' | 'came' | 'looked' | 'expressed' | 'was' | 'saw' | 'depended' | 'left' | 'made' | 'sought' | 'was' | 'were' | 'remained' | 'was' | 'were' | 'specked' | 'wafted' | 'called' | 'felt' | 'was' | 'was' | 'landed' | 'heard' | 'endeavoured' | 'trembled' | 'felt' | 'was' | 'wished' | 'was' | 'was' | 'opened' | 'dreaded' | 'approached' | 'said' | 'began' | 'left' | 'wretched' | 'set' | 'saw' | 'gnashed' | 'cried' | 'had' | 'were' | 'started' | 'exclaimed' | 'eluded' | 'quitted' | 'saw' | 'was' | 'was' | 'burned' | 'walked' | 'perturbed' | 'conjured' | 'had' | 'followed' | 'closed' | 'had' | 'had' | 'shuddered' | 'sacrificed' | 'thought' | 'was' | 'did' | 'had' | 'streamed' | 'resolved' | 'passed' | 'rose' | 'became' | 'left' | 'walked' | 'desired' | 'returned' | 'was' | 'had' | 'walked' | 'loved' | 'became' | 'rose' | 'was' | 'had' | 'were' | 'belonged' | 'began' | 'had' | 'appeared' | 'had' | 'sat' | 'had' | 'saw' | 'brought' | 'contained' | 'said' | 'was' | 'was' | 'had' | 'desired' | 'had' | 'conjectured' | 'entreated' | 'besought' | 'recalled' | 'determined' | 'departed' | 'was' | 'shuddered' | 'had' | 'was' | 'summoned' | 'unlocked' | 'had' | 'lay' | 'had' | 'paused' | 'entered' | 'conveyed' | 'reflected' | 'sat' | 'had' | 'had' | 'had' | 'saw' | 'did' | 'had' | 'did' | 'had' | 'had' | 'rose' | 'sailed' | 'was' | 'were' | 'felt' | 'was' | 'avoided' | 'had' | 'was' | 'took' | 'listened' | 'sank' | 'sailed' | 'became' | 'was' | 'was' | 'refreshed' | 'filled' | 'stretched' | 'was' | 'lulled' | 'slept' | 'remained' | 'found' | 'had' | 'was' | 'threatened' | 'found' | 'was' | 'had' | 'endeavoured' | 'found' | 'made' | 'was' | 'felt' | 'had' | 'was' | 'was' | 'roared' | 'buffeted' | 'had' | 'felt' | 'looked' | 'were' | 'flew' | 'looked' | 'was' | 'exclaimed' | 'left' | 'plunged' | 'passed' | 'declined' | 'died' | 'became' | 'gave' | 'felt' | 'saw' | 'was' | 'endured' | 'constructed' | 'steered' | 'had' | 'approached' | 'perceived' | 'saw' | 'found' | 'transported' | 'hailed' | 'saw' | 'was' | 'resolved' | 'had' | 'turned' | 'perceived' | 'entered' | 'was' | 'crowded' | 'seemed' | 'whispered' | 'was' | 'remarked' | 'spoke' | 'addressed' | 'said' | 'replied' | 'was' | 'was' | 'replied' | 'said' | 'continued' | 'perceived' | 'annoyed' | 'alarmed' | 'inquired' | 'replied' | 'moved' | 'arose' | 'followed' | 'surrounded' | 'tapped' | 'said' | 'was' | 'startled' | 'was' | 'followed' | 'was' | 'was' | 'thought' | 'did' | 'was' | 'was' | 'looked' | 'asked' | 'appeared' | 'came' | 'deposed' | 'had' | 'observed' | 'put' | 'was' | 'had' | 'did' | 'had' | 'walked' | 'followed' | 'was' | 'struck' | 'fell' | 'came' | 'found' | 'had' | 'was' | 'was' | 'was' | 'had' | 'was' | 'found' | 'were' | 'was' | 'carried' | 'appeared' | 'had' | 'was' | 'did' | 'was' | 'remembered' | 'felt' | 'agitated' | 'came' | 'obliged' | 'observed' | 'drew' | 'confirmed' | 'was' | 'swore' | 'saw' | 'was' | 'had' | 'deposed' | 'lived' | 'was' | 'heard' | 'saw' | 'push' | 'was' | 'confirmed' | 'brought' | 'was' | 'put' | 'rubbed' | 'went' | 'was' | 'were' | 'agreed' | 'had' | 'was' | 'had' | 'had' | 'had' | 'observed' | 'appeared' | 'had' | 'was' | 'did' | 'had' | 'desired' | 'lay' | 'was' | 'had' | 'had' | 'was' | 'had' | 'had' | 'had' | 'had' | 'was' | 'entered' | 'was' | 'saw' | 'stretched' | 'gasped' | 'exclaimed' | 'endured' | 'was' | 'were' | 'called' | 'was' | 'felt' | 'screamed' | 'spoke' | 'were' | 'did' | 'was' | 'did' | 'was' | 'made' | 'was' | 'was' | 'awoke' | 'had' | 'had' | 'felt' | 'had' | 'looked' | 'saw' | 'was' | 'groaned' | 'disturbed' | 'was' | 'was' | 'expressed' | 'were' | 'expressed' | 'addressed' | 'struck' | 'had' | 'said' | 'replied' | 'did' | 'replied' | 'murdered' | 'were' | 'were' | 'were' | 'did' | 'turned' | 'felt' | 'had' | 'appeared' | 'were' | 'presented' | 'floated' | 'became' | 'grew' | 'was' | 'soothed' | 'supported' | 'came' | 'prepared' | 'was' | 'was' | 'were' | 'learned' | 'had' | 'had' | 'wretched' | 'was' | 'was' | 'had' | 'came' | 'desired' | 'did' | 'came' | 'was' | 'were' | 'was' | 'was' | 'was' | 'reflected' | 'had' | 'was' | 'considered' | 'had' | 'were' | 'was' | 'entered' | 'expressed' | 'drew' | 'addressed' | 'were' | 'renowned' | 'seized' | 'was' | 'was' | 'placed' | 'were' | 'said' | 'endured' | 'felt' | 'seemed' | 'was' | 'hastened' | 'were' | 'were' | 'examined' | 'found' | 'wrote' | 'said' | 'thought' | 'presented' | 'darted' | 'had' | 'put' | 'cried' | 'regarded' | 'said' | 'cried' | 'was' | 'pleased' | 'thought' | 'was' | 'resumed' | 'rose' | 'quitted' | 'entered' | 'stretched' | 'calmed' | 'felt' | 'said' | 'wretched' | 'travelled' | 'murdered' | 'was' | 'shed' | 'replied' | 'were' | 'came' | 'insisted' | 'was' | 'quitted' | 'was' | 'was' | 'murdered' | 'threw' | 'made' | 'did' | 'detested' | 'was' | 'was' | 'was' | 'approached' | 'had' | 'was' | 'was' | 'was' | 'charged' | 'was' | 'was' | 'rejected' | 'was' | 'was' | 'was' | 'was' | 'was' | 'permitted' | 'did' | 'were' | 'was' | 'saw' | 'glared' | 'were' | 'orbs' | 'fringed' | 'was' | 'clouded' | 'saw' | 'tried' | 'talked' | 'drew' | 'felt' | 'had' | 'was' | 'was' | 'were' | 'loathed' | 'required' | 'remained' | 'triumphed' | 'was' | 'led' | 'dared' | 'put' | 'had' | 'was' | 'was' | 'was' | 'urged' | 'thought' | 'took' | 'was' | 'lay' | 'hailed' | 'shut' | 'reflected' | 'appeared' | 'was' | 'blew' | 'surrounded' | 'told' | 'was' | 'had' | 'repassed' | 'remembered' | 'hurried' | 'called' | 'lived' | 'was' | 'wept' | 'had' | 'was' | 'was' | 'slept' | 'did' | 'presented' | 'scared' | 'was' | 'felt' | 'was' | 'awoke' | 'were' | 'was' | 'was' | 'came' | 'landed' | 'proceeded' | 'found' | 'had' | 'were' | 'did' | 'sought' | 'wished' | 'abhorred' | 'were' | 'felt' | 'had' | 'had' | 'was' | 'did' | 'had' | 'thought' | 'felt' | 'endeavoured' | 'said' | 'felt' | 'was' | 'suffered' | 'died' | 'murdered' | 'had' | 'accused' | 'seemed' | 'appeared' | 'had' | 'avoided' | 'maintained' | 'had' | 'had' | 'checked' | 'was' | 'relieved' | 'said' | 'cried' | 'died' | 'convinced' | 'were' | 'changed' | 'endeavoured' | 'wished' | 'had' | 'suffered' | 'passed' | 'became' | 'had' | 'was' | 'curbed' | 'desired' | 'were' | 'had' | 'left' | 'received' | 'gave' | 'quitted' | 'tortured' | 'made' | 'had' | 'had' | 'had' | 'were' | 'taught' | 'were' | 'grew' | 'saw' | 'opposed' | 'were' | 'had' | 'was' | 'promised' | 'had' | 'were' | 'were' | 'possessed' | 'beloved' | 'stole' | 'dared' | 'was' | 'bared' | 'executed' | 'was' | 'considered' | 'postponed' | 'had' | 'did' | 'was' | 'had' | 'resolved' | 'wrote' | 'was' | 'said' | 'revealed' | 'returned' | 'welcomed' | 'were' | 'beheld' | 'saw' | 'was' | 'had' | 'had' | 'made' | 'was' | 'did' | 'brought' | 'had' | 'possessed' | 'was' | 'looked' | 'sat' | 'had' | 'wept' | 'returned' | 'remained' | 'were' | 'returned' | 'had' | 'had' | 'was' | 'were' | 'agreed' | 'imagined' | 'had' | 'wandered' | 'had' | 'thought' | 'had' | 'hastened' | 'drew' | 'felt' | 'concealed' | 'brought' | 'deceived' | 'looked' | 'had' | 'appeared' | 'were' | 'were' | 'wore' | 'shut' | 'preyed' | 'entered' | 'had' | 'was' | 'stood' | 'took' | 'was' | 'gained' | 'approached' | 'appeared' | 'hoped' | 'wore' | 'fixed' | 'drew' | 'seemed' | 'contributed' | 'was' | 'was' | 'pervaded' | 'thought' | 'secret' | 'had' | 'was' | 'was' | 'assembled' | 'was' | 'was' | 'smiled' | 'were' | 'passed' | 'was' | 'were' | 'enjoyed' | 'saw' | 'saw' | 'took' | 'knew' | 'replied' | 'was' | 'gave' | 'sank' | 'passed' | 'observed' | 'approached' | 'surrounded' | 'was' | 'had' | 'carried' | 'sank' | 'ruffled' | 'caused' | 'approached' | 'wafted' | 'sank' | 'landed' | 'touched' | 'felt' | 'were' | 'was' | 'landed' | 'walked' | 'retired' | 'contemplated' | 'had' | 'rose' | 'had' | 'was' | 'swept' | 'dimmed' | 'reflected' | 'rendered' | 'were' | 'had' | 'obscured' | 'was' | 'grasped' | 'was' | 'terrified' | 'resolved' | 'was' | 'was' | 'communicated' | 'asked' | 'replied' | 'passed' | 'reflected' | 'entreated' | 'had' | 'left' | 'continued' | 'discovered' | 'was' | 'had' | 'came' | 'had' | 'rushed' | 'dropped' | 'was' | 'lasted' | 'was' | 'did' | 'was' | 'distorted' | 'did' | 'fell' | 'recovered' | 'expressed' | 'appeared' | 'oppressed' | 'escaped' | 'lay' | 'had' | 'had' | 'lay' | 'embraced' | 'told' | 'had' | 'had' | 'was' | 'had' | 'hung' | 'happened' | 'had' | 'felt' | 'had' | 'saw' | 'was' | 'seemed' | 'pointed' | 'rushed' | 'fired' | 'eluded' | 'leaped' | 'plunged' | 'brought' | 'pointed' | 'had' | 'followed' | 'were' | 'returned' | 'proceeded' | 'attempted' | 'proceeded' | 'whirled' | 'were' | 'fell' | 'was' | 'was' | 'had' | 'had' | 'crawled' | 'were' | 'joined' | 'presented' | 'was' | 'knew' | 'were' | 'made' | 'recalled' | 'started' | 'resolved' | 'were' | 'was' | 'fell' | 'was' | 'hired' | 'took' | 'had' | 'felt' | 'endured' | 'rendered' | 'threw' | 'gave' | 'looked' | 'saw' | 'were' | 'had' | 'was' | 'streamed' | 'had' | 'saw' | 'had' | 'had' | 'had' | 'had' | 'had' | 'was' | 'followed' | 'were' | 'was' | 'arrived' | 'had' | 'doted' | 'brought' | 'doomed' | 'were' | 'gave' | 'was' | 'died' | 'became' | 'were' | 'wandered' | 'found' | 'followed' | 'gained' | 'was' | 'had' | 'had' | 'had' | 'had' | 'awakened' | 'awakened' | 'began' | 'had' | 'had' | 'was' | 'thought' | 'desired' | 'prayed' | 'did' | 'began' | 'repaired' | 'told' | 'had' | 'knew' | 'required' | 'listened' | 'said' | 'replied' | 'were' | 'addressed' | 'was' | 'had' | 'quieted' | 'reconciled' | 'appeared' | 'continued' | 'became' | 'saw' | 'was' | 'had' | 'said' | 'caused' | 'had' | 'was' | 'returned' | 'answered' | 'spoke' | 'sparkled' | 'was' | 'said' | 'trembled' | 'said' | 'was' | 'said' | 'was' | 'had' | 'endeavoured' | 'reverted' | 'cried' | 'broke' | 'retired' | 'was' | 'was' | 'was' | 'moulded' | 'allowed' | 'was' | 'was' | 'beloved' | 'was' | 'became' | 'provided' | 'had' | 'departed' | 'began' | 'kept' | 'dared' | 'quitted' | 'was' | 'was' | 'wandered' | 'approached' | 'found' | 'reposed' | 'entered' | 'approached' | 'marked' | 'was' | 'were' | 'was' | 'seemed' | 'was' | 'had' | 'gave' | 'were' | 'lived' | 'lived' | 'knelt' | 'kissed' | 'caused' | 'had' | 'assured' | 'approved' | 'possessed' | 'concluded' | 'choked' | 'was' | 'rang' | 'felt' | 'surrounded' | 'was' | 'was' | 'died' | 'addressed' | 'darted' | 'proceeded' | 'eluded' | 'fled' | 'pursued' | 'followed' | 'appeared' | 'saw' | 'took' | 'escaped' | 'evaded' | 'informed' | 'feared' | 'lost' | 'left' | 'descended' | 'saw' | 'were' | 'was' | 'was' | 'carried' | 'directed' | 'sank' | 'was' | 'restored' | 'inspirited' | 'was' | 'was' | 'had' | 'was' | 'was' | 'shed' | 'revived' | 'followed' | 'was' | 'were' | 'crossed' | 'had' | 'gained' | 'had' | 'had' | 'passed' | 'was' | 'was' | 'blessed' | 'sank' | 'lulled' | 'guarded' | 'had' | 'was' | 'saw' | 'saw' | 'heard' | 'beheld' | 'persuaded' | 'was' | 'did' | 'did' | 'haunted' | 'lived' | 'burned' | 'died' | 'pursued' | 'was' | 'were' | 'pursued' | 'left' | 'guided' | 'instigated' | 'were' | 'thickened' | 'were' | 'ventured' | 'had' | 'were' | 'was' | 'increased' | 'left' | 'was' | 'were' | 'resolved' | 'appeared' | 'formed' | 'was' | 'was' | 'beheld' | 'hailed' | 'did' | 'thanked' | 'hoped' | 'had' | 'traversed' | 'possessed' | 'found' | 'had' | 'saw' | 'was' | 'hoped' | 'pressed' | 'arrived' | 'inquired' | 'said' | 'had' | 'had' | 'had' | 'had' | 'had' | 'led' | 'conjectured' | 'suffered' | 'had' | 'hovered' | 'instigated' | 'exchanged' | 'rugged' | 'barred' | 'threatened' | 'came' | 'made' | 'had' | 'had' | 'had' | 'secured' | 'conveyed' | 'had' | 'gained' | 'died' | 'viewed' | 'caught' | 'strained' | 'distinguished' | 'did' | 'filled' | 'had' | 'was' | 'oppressed' | 'was' | 'disencumbered' | 'gave' | 'was' | 'was' | 'continued' | 'was' | 'did' | 'concealed' | 'bounded' | 'appeared' | 'were' | 'lost' | 'had' | 'was' | 'rolled' | 'swelled' | 'became' | 'pressed' | 'arose' | 'roared' | 'split' | 'cracked' | 'was' | 'rolled' | 'was' | 'was' | 'was' | 'saw' | 'had' | 'came' | 'was' | 'destroyed' | 'was' | 'had' | 'were' | 'hoped' | 'was' | 'took' | 'was' | 'had' | 'were' | 'commanded' | 'shrieked' | 'showed' | 'brought' | 'endeavoured' | 'was' | 'said' | 'discovered' | 'made' | 'asked' | 'held' | 'said' | 'said' | 'possessed' | 'fitted' | 'supported' | 'deemed' | 'reflected' | 'had' | 'supported' | 'aspired' | 'was' | 'were' | 'conceived' | 'executed' | 'was' | 'trod' | 'was' | 'had' | 'was' | 'visited' | 'seemed' | 'fell' | 'said' | 'was' | 'enjoyed' | 'were' | 'gave' | 'were' | 'valued' | 'roused' | 'mentioned' | 'sat' | 'closed' | 'was' | 'demanded' | 'entered' | 'addressed' | 'told' | 'had' | 'were' | 'feared' | 'was' | 'insisted' | 'troubled' | 'had' | 'had' | 'hesitated' | 'answered' | 'had' | 'appeared' | 'flushed' | 'said' | 'did' | 'was' | 'was' | 'was' | 'was' | 'exhibited' | 'surrounded' | 'were' | 'was' | 'was' | 'were' | 'encountered' | 'had' | 'were' | 'dragged' | 'spoke' | 'modulated' | 'were' | 'looked' | 'were' | 'spoke' | 'told' | 'had' | 'said' | 'desired' | 'hoped' | 'retired' | 'turned' | 'was' | 'had' | 'began' | 'were' | 'were' | 'was' | 'was' | 'cracked' | 'was' | 'became' | 'saw' | 'was' | 'broke' | 'was' | 'asked' | 'said' | 'endeavoured' | 'was' | 'fell' | 'was' | 'was' | 'was' | 'opened' | 'breathed' | 'was' | 'gave' | 'ordered' | 'told' | 'had' | 'was' | 'were' | 'thought' | 'slept' | 'called' | 'said' | 'hatred' | 'expressed' | 'created' | 'was' | 'was' | 'was' | 'was' | 'had' | 'included' | 'refused' | 'did' | 'showed' | 'destroyed' | 'devoted' | 'possessed' | 'wretched' | 'was' | 'asked' | 'became' | 'spoke' | 'sank' | 'attempted' | 'was' | 'pressed' | 'closed' | 'passed' | 'entered' | 'lay' | 'was' | 'was' | 'heard' | 'ceased' | 'did' | 'endeavoured' | 'were' | 'paused' | 'seemed' | 'seemed' | 'exclaimed' | 'destroyed' | 'seemed' | 'had' | 'were' | 'approached' | 'dared' | 'was' | 'attempted' | 'died' | 'continued' | 'gathered' | 'said' | 'had' | 'heeded' | 'had' | 'said' | 'was' | 'continued' | 'suffered' | 'was' | 'hurried' | 'was' | 'were' | 'was' | 'hatred' | 'did' | 'returned' | 'pitied' | 'amounted' | 'abhorred' | 'discovered' | 'dared' | 'accumulated' | 'sought' | 'was' | 'filled' | 'recollected' | 'resolved' | 'knew' | 'was' | 'was' | 'died' | 'was' | 'had' | 'became' | 'had' | 'had' | 'became' | 'was' | 'had' | 'said' | 'cast' | 'was' | 'said' | 'lament' | 'interrupted' | 'conveyed' | 'sought' | 'was' | 'wished' | 'was' | 'hoped' | 'was' | 'was' | 'were' | 'had' | 'gave' | 'endured' | 'destroyed' | 'did' | 'were' | 'was' | 'was' | 'drove' | 'sought' | 'kicked' | 'trampled' | 'slept' | 'grasped' | 'injured' | 'executed' | 'was' | 'brought' | 'called' | 'felt' | 'heard' | 'were' | 'was' | 'was' | 'cried' | 'felt' | 'sprang' | 'said' | 'lay' | 'was'\nVBN -> 'accompanied' | 'regarded' | 'travelled' | 'inspirited' | 'persuaded' | 'banished' | 'wafted' | 'discovered' | 'expected' | 'imprinted' | 'effected' | 'dispelled' | 'been' | 'read' | 'been' | 'made' | 'made' | 'neglected' | 'felt' | 'consecrated' | 'acquainted' | 'turned' | 'passed' | 'resolved' | 'commenced' | 'devoted' | 'hired' | 'been' | 'passed' | 'placed' | 'required' | 'wrapped' | 'adopted' | 'done' | 'accustomed' | 'taken' | 'hired' | 'occupied' | 'engaged' | 'possessed' | 'been' | 'i' | 'assailed' | 'possessed' | 'cultivated' | 'acquainted' | 'ceased' | 'acquainted' | 'thought' | 'rugged' | 'unsoftened' | 'acquainted' | 'unemployed' | 'engaged' | 'passed' | 'refined' | 'exercised' | 'believed' | 'paid' | 'amassed' | 'bathed' | 'informed' | 'bought' | 'designed' | 'married' | 'fixed' | 'delayed' | 'been' | 'considered' | 'expected' | 'committed' | 'alarmed' | 'i' | 'attributed' | 'intertwined' | 'traversed' | 'returned' | 'i' | 'advanced' | 'reached' | 'expected' | 'hitherto' | 'befallen' | 'assured' | 'gone' | 'happened' | 'surrounded' | 'compassed' | 'groaned' | 'fixed' | 'drawn' | 'lost' | 'supposed' | 'observed' | 'seen' | 'drifted' | 'bound' | 'addressed' | 'supposed' | 'been' | 'exchanged' | 'consented' | 'seen' | 'capitulated' | 'been' | 'emaciated' | 'quitted' | 'passed' | 'feared' | 'deprived' | 'lighted' | 'saw' | 'equalled' | 'tormented' | 'come' | 'seen' | 'pursued' | 'restored' | 'destroyed' | 'broken' | 'arrived' | 'appeared' | 'persuaded' | 'promised' | 'improved' | 'had' | 'been' | 'found' | 'been' | 'broken' | 'been' | 'possessed' | 'destroyed' | 'culled' | 'recovered' | 'occupied' | 'conversed' | 'communicated' | 'taken' | 'led' | 'seized' | 'told' | 'fallen' | 'entitled' | 'hope' | 'lost' | 'retired' | 'broken' | 'afforded' | 'overwhelmed' | 'retired' | 'been' | 'tutored' | 'refined' | 'endeavoured' | 'suffered' | 'determined' | 'won' | 'been' | 'rendered' | 'deemed' | 'composed' | 'gratified' | 'offered' | 'fulfilled' | 'mistaken' | 'listen' | 'determined' | 'resolved' | 'occupied' | 'related' | 'engaged' | 'raised' | 'irradiated' | 'been' | 'filled' | 'respected' | 'occupied' | 'prevented' | 'been' | 'distinguished' | 'paid' | 'grieved' | 'taken' | 'overjoyed' | 'situated' | 'saved' | 'spent' | 'contrived' | 'passed' | 'occupied' | 'decreased' | 'suffered' | 'disposed' | 'inspired' | 'endured' | 'made' | 'sheltered' | 'been' | 'shaken' | 'gone' | 'elapsed' | 'relinquished' | 'born' | 'attached' | 'bestowed' | 'given' | 'imagined' | 'guided' | 'desired' | 'suffered' | 'been' | 'relieved' | 'afflicted' | 'gathered' | 'gone' | 'accompanied' | 'died' | 'been' | 'placed' | 'been' | 'born' | 'nursed' | 'died' | 'lingered' | 'known' | 'confiscated' | 'bloomed' | 'returned' | 'pictured' | 'explained' | 'seemed' | 'brought' | 'made' | 'brought' | 'contemplated' | 'delighted' | 'desired' | 'unfolded' | 'fixed' | 'passed' | 'read' | 'drawn' | 'passed' | 'possessed' | 'discerned' | 'turned' | 'directed' | 'recorded' | 'become' | 'sullen' | 'been' | 'tainted' | 'swept' | 'regulated' | 'confined' | 'changed' | 'taken' | 'been' | 'exploded' | 'been' | 'introduced' | 'thrown' | 'contented' | 'received' | 'taken' | 'acquainted' | 'known' | 'described' | 'been' | 'imbued' | 'discontented' | 'avowed' | 'acquainted' | 'engaged' | 'acquainted' | 'unveiled' | 'gazed' | 'repined' | 'penetrated' | 'left' | 'entered' | 'accorded' | 'sought' | 'occupied' | 'guided' | 'retired' | 'disappeared' | 'splintered' | 'beheld' | 'destroyed' | 'excited' | 'formed' | 'known' | 'built' | 'constructed' | 'made' | 'announced' | 'taught' | 'decreed' | 'attained' | 'made' | 'acquainted' | 'fixed' | 'caught' | 'been' | 'urged' | 'yielded' | 'menaced' | 'saved' | 'accompanied' | 'placed' | 'taken' | 'been' | 'expressed' | 'rent' | 'exhibited' | 'departed' | 'been' | 'extinguished' | 'hushed' | 'heard' | 'felt' | 'deemed' | 'banished' | 'seized' | 'been' | 'deferred' | 'determined' | 'been' | 'taught' | 'arrived' | 'endeavoured' | 'debarred' | 'restrained' | 'chained' | 'deceived' | 'indulged' | 'been' | 'surrounded' | 'engaged' | 'hitherto' | 'been' | 'secluded' | 'given' | 'desired' | 'longed' | 'complied' | 'been' | 'conducted' | 'imbued' | 'studied' | 'stared' | 'wasted' | 'lost' | 'burdened' | 'lived' | 'imbibed' | 'expected' | 'considered' | 'given' | 'come' | 'been' | 'promised' | 'accounted' | 'retrod' | 'changed' | 'required' | 'acquainted' | 'given' | 'seen' | 'been' | 'entered' | 'heard' | 'made' | 'made' | 'transmuted' | 'made' | 'performed' | 'discovered' | 'acquired' | 'touched' | 'sounded' | 'filled' | 'been' | 'done' | 'paid' | 'replaced' | 'given' | 'smiled' | 'exhibited' | 'indebted' | 'left' | 'been' | 'directed' | 'delivered' | 'removed' | 'measured' | 'made' | 'gained' | 'been' | 'made' | 'made' | 'neglected' | 'advanced' | 'requested' | 'written' | 'combined' | 'tinged' | 'given' | 'engaged' | 'conceived' | 'passed' | 'engaged' | 'experienced' | 'gone' | 'wrapped' | 'arrived' | 'become' | 'acquainted' | 'depended' | 'attracted' | 'endued' | 'asked' | 'been' | 'considered' | 'acquainted' | 'been' | 'animated' | 'been' | 'acquainted' | 'taken' | 'impressed' | 'trembled' | 'feared' | 'deprived' | 'become' | 'led' | 'forced' | 'fixed' | 'degraded' | 'wasted' | 'exemplified' | 'surprised' | 'directed' | 'reserved' | 'produced' | 'experienced' | 'spent' | 'been' | 'led' | 'obliterated' | 'beheld' | 'been' | 'obtained' | 'accomplished' | 'been' | 'buried' | 'informed' | 'acquainted' | 'reserved' | 'placed' | 'exalted' | 'baffled' | 'encouraged' | 'formed' | 'spent' | 'devoted' | 'grown' | 'become' | 'emaciated' | 'possessed' | 'dedicated' | 'gazed' | 'lost' | 'returned' | 'separated' | 'urged' | 'passed' | 'engaged' | 'seen' | 'neglected' | 'taken' | 'completed' | 'justified' | 'observed' | 'been' | 'enslaved' | 'spared' | 'been' | 'discovered' | 'been' | 'destroyed' | 'yielded' | 'engrossed' | 'withered' | 'succeeded' | 'checked' | 'doomed' | 'occupied' | 'oppressed' | 'been' | 'alarmed' | 'become' | 'sustained' | 'promised' | 'burnt' | 'endeavoured' | 'selected' | 'set' | 'worked' | 'deprived' | 'desired' | 'finished' | 'filled' | 'created' | 'succeeded' | 'endured' | 'disturbed' | 'delighted' | 'surprised' | 'chattered' | 'convulsed' | 'created' | 'called' | 'fixed' | 'spoken' | 'stretched' | 'given' | 'endued' | 'gazed' | 'unfinished' | 'rendered' | 'conceived' | 'mingled' | 'been' | 'become' | 'dawned' | 'discovered' | 'been' | 'issued' | 'impelled' | 'drenched' | 'palpitated' | 'turned' | 'fixed' | 'opened' | 'perceived' | 'permitted' | 'comprised' | 'ten' | 'permitted' | 'been' | 'guessed' | 'been' | 'engaged' | 'allowed' | 'left' | 'paused' | 'accustomed' | 'freed' | 'befallen' | 'fled' | 'attributed' | 'been' | 'turned' | 'advanced' | 'restored' | 'bestowed' | 'surprised' | 'believed' | 'recurred' | 'disappeared' | 'attacked' | 'spent' | 'been' | 'consumed' | 'been' | 'been' | 'thought' | 'been' | 'been' | 'thought' | 'restrained' | 'prevented' | 'regretted' | 'devolved' | 'assured' | 'spent' | 'selected' | 'taken' | 'contented' | 'regulated' | 'rewarded' | 'taken' | 'been' | 'produced' | 'received' | 'induced' | 'intended' | 'repaid' | 'occupied' | 'attended' | 'reserved' | 'left' | 'troubled' | 'heaven' | 'conceived' | 'called' | 'altered' | 'given' | 'been' | 'caused' | 'returned' | 'had' | 'indulged' | 'received' | 'suffered' | 'recovered' | 'reported' | 'admired' | 'written' | 'read' | 'commenced' | 'sustained' | 'conceived' | 'restored' | 'removed' | 'changed' | 'acquired' | 'been' | 'made' | 'made' | 'placed' | 'used' | 'dared' | 'outstript' | 'set' | 'commenced' | 'sympathized' | 'differed' | 'occupied' | 'marked' | 'resolved' | 'induced' | 'been' | 'irksome' | 'experienced' | 'fixed' | 'delayed' | 'arrived' | 'deemed' | 'retarded' | 'been' | 'delayed' | 'become' | 'acquainted' | 'spent' | 'compensated' | 'commenced' | 'been' | 'taken' | 'been' | 'restored' | 'secluded' | 'cramped' | 'narrowed' | 'beloved' | 'bloomed' | 'undisturbed' | 'pressed' | 'sympathised' | 'waited' | 'tempted' | 'rendered' | 'murdered' | 'gone' | 'found' | 'seen' | 'been' | 'run' | 'returned' | 'lost' | 'exposed' | 'seen' | 'stretched' | 'conveyed' | 'attempted' | 'exclaimed' | 'murdered' | 'restored' | 'teased' | 'gone' | 'hatred' | 'watched' | 'surprised' | 'expressed' | 'happened' | 'seen' | 'murdered' | 'impressed' | 'hurried' | 'seen' | 'taken' | 'worked' | 'done' | 'calm' | 'changed' | 'destined' | 'destined' | 'shut' | 'obliged' | 'resolved' | 'been' | 'murdered' | 'obliged' | 'clouded' | 'increased' | 'echoed' | 'dazzled' | 'darkened' | 'fixed' | 'mistaken' | 'illuminated' | 'informed' | 'given' | 'shuddered' | 'chattered' | 'forced' | 'destroyed' | 'been' | 'continued' | 'enveloped' | 'sought' | 'elapsed' | 'turned' | 'cast' | 'done' | 'directed' | 'made' | 'formed' | 'endued' | 'met' | 'been' | 'seized' | 'communicated' | 'looked' | 'credited' | 'pursuit' | 'elapsed' | 'passed' | 'beloved' | 'gazed' | 'painted' | 'engaged' | 'heard' | 'come' | 'found' | 'imagined' | 'named' | 'caused' | 'been' | 'discovered' | 'made' | 'convinced' | 'accused' | 'forced' | 'been' | 'tried' | 'been' | 'discovered' | 'been' | 'taken' | 'worn' | 'discovered' | 'been' | 'judged' | 'apprehended' | 'charged' | 'replied' | 'impressed' | 'exchanged' | 'introduced' | 'exclaimed' | 'been' | 'discovered' | 'valued' | 'mistaken' | 'tried' | 'acquitted' | 'convinced' | 'brought' | 'looked' | 'let' | 'joined' | 'altered' | 'endowed' | 'allied' | 'convicted' | 'torn' | 'condemned' | 'proved' | 'cheered' | 'prejudiced' | 'obliged' | 'decided' | 'murdered' | 'obliterated' | 'confessed' | 'ascribed' | 'committed' | 'been' | 'considered' | 'exculpated' | 'dressed' | 'rendered' | 'gazed' | 'execrated' | 'excited' | 'obliterated' | 'supposed' | 'committed' | 'constrained' | 'been' | 'adduced' | 'seated' | 'stated' | 'called' | 'combined' | 'staggered' | 'been' | 'been' | 'committed' | 'been' | 'perceived' | 'been' | 'found' | 'inquired' | 'passed' | 'been' | 'been' | 'heard' | 'shown' | 'produced' | 'found' | 'been' | 'missed' | 'placed' | 'called' | 'proceeded' | 'altered' | 'expressed' | 'desired' | 'been' | 'adduced' | 'borne' | 'passed' | 'been' | 'committed' | 'situated' | 'seen' | 'lost' | 'alarmed' | 'shut' | 'forced' | 'known' | 'dawn' | 'gone' | 'been' | 'bewildered' | 'questioned' | 'passed' | 'expressed' | 'been' | 'placed' | 'checked' | 'been' | 'stolen' | 'supposed' | 'condemned' | 'called' | 'known' | 'accused' | 'agitated' | 'murdered' | 'educated' | 'lived' | 'judged' | 'allowed' | 'acquainted' | 'accused' | 'lived' | 'beloved' | 'attached' | 'desired' | 'given' | 'excited' | 'turned' | 'betrayed' | 'condemned' | 'accused' | 'sustained' | 'parched' | 'known' | 'been' | 'thrown' | 'condemned' | 'endeavoured' | 'confessed' | 'required' | 'i' | 'demanded' | 'decided' | 'expected' | 'confessed' | 'relied' | 'loved' | 'esteemed' | 'committed' | 'expressed' | 'manacled' | 'left' | 'suffocated' | 'believed' | 'declared' | 'assured' | 'condemned' | 'besieged' | 'doomed' | 'thought' | 'honoured' | 'perpetrated' | 'distrusted' | 'condemned' | 'resigned' | 'retired' | 'confessed' | 'acknowledged' | 'penetrated' | 'beloved' | 'settled' | 'lost' | 'heard' | 'thought' | 'mirrored' | 'satisfied' | 'succeeded' | 'torn' | 'been' | 'worked' | 'pressed' | 'fled' | 'committed' | 'overflowed' | 'begun' | 'thirsted' | 'blasted' | 'seized' | 'preyed' | 'recovered' | 'sustained' | 'endeavoured' | 'deduced' | 'loved' | 'owed' | 'been' | 'mingled' | 'rendered' | 'retired' | 'set' | 'carried' | 'tempted' | 'i' | 'heard' | 'tempted' | 'restrained' | 'loved' | 'bound' | 'exposed' | 'unprotected' | 'let' | 'been' | 'created' | 'remained' | 'conceived' | 'gnashed' | 'wished' | 'bestowed' | 'hatred' | 'made' | 'precipitated' | 'shaken' | 'destroyed' | 'sent' | 'visited' | 'come' | 'committed' | 'been' | 'murdered' | 'nursed' | 'been' | 'thought' | 'assassinated' | 'respected' | 'condemned' | 'affected' | 'been' | 'encompassed' | 'pierced' | 'sought' | 'directed' | 'visited' | 'passed' | 'changed' | 'rugged' | 'lightened' | 'deeper' | 'created' | 'displayed' | 'ruined' | 'augmented' | 'rendered' | 'towered' | 'passed' | 'perceived' | 'recognized' | 'gone' | 'associated' | 'whispered' | 'found' | 'fettered' | 'spurred' | 'endured' | 'scattered' | 'broken' | 'reverberated' | 'been' | 'brooded' | 'waited' | 'ministered' | 'contemplated' | 'fled' | 'brought' | 'produced' | 'filled' | 'acquainted' | 'cut' | 'perceived' | 'strewed' | 'destroyed' | 'intersected' | 'roll' | 'hid' | 'confined' | 'moved' | 'interspersed' | 'swelled' | 'walked' | 'troubled' | 'restored' | 'created' | 'combined' | 'hated' | 'satiated' | 'wretched' | 'bestowed' | 'impelled' | 'hatred' | 'devoted' | 'i' | 'suffered' | 'tempted' | 'fallen' | 'excluded' | 'glowed' | 'wandered' | 'kinder' | 'swallowed' | 'moved' | 'heard' | 'allowed' | 'condemned' | 'been' | 'cursed' | 'abhorred' | 'cursed' | 'made' | 'left' | 'come' | 'heard' | 'used' | 'determined' | 'urged' | 'sought' | 'cold' | 'lighted' | 'confused' | 'seized' | 'pressed' | 'obliged' | 'i' | 'found' | 'surrounded' | 'tormented' | 'overcome' | 'quitted' | 'covered' | 'gazed' | 'occupied' | 'confused' | 'passed' | 'lessened' | 'intercepted' | 'disappeared' | 'had' | 'oppressed' | 'been' | 'left' | 'overcome' | 'composed' | 'pained' | 'placed' | 'extinguished' | 'extinguished' | 'left' | 'been' | 'roasted' | 'gathered' | 'spoiled' | 'improved' | 'resolved' | 'hitherto' | 'inhabited' | 'satisfied' | 'lamented' | 'obtained' | 'obliged' | 'taken' | 'chilled' | 'been' | 'built' | 'seen' | 'enchanted' | 'overcome' | 'allured' | 'placed' | 'placed' | 'fainted' | 'roused' | 'bruised' | 'beheld' | 'constructed' | 'placed' | 'found' | 'found' | 'situated' | 'exposed' | 'crept' | 'covered' | 'perceived' | 'arranged' | 'provided' | 'purloined' | 'flowed' | 'kept' | 'provided' | 'resolved' | 'compared' | 'found' | 'dressed' | 'plaited' | 'adorned' | 'filled' | 'incommoded' | 'busied' | 'occupied' | 'been' | 'filled' | 'occupied' | 'beheld' | 'aged' | 'employed' | 'been' | 'employed' | 'been' | 'dispatched' | 'occupied' | 'moulded' | 'used' | 'delighted' | 'employed' | 'enchanted' | 'finished' | 'been' | 'occupied' | 'suffered' | 'passed' | 'employed' | 'affected' | 'wretched' | 'dressed' | 'explained' | 'been' | 'accustomed' | 'gathered' | 'enabled' | 'astonished' | 'desired' | 'baffled' | 'remained' | 'given' | 'called' | 'appropriated' | 'sympathized' | 'endeavoured' | 'filled' | 'found' | 'listened' | 'suffered' | 'carried' | 'risen' | 'replenished' | 'brought' | 'puzzled' | 'longed' | 'applied' | 'longed' | 'become' | 'presented' | 'made' | 'admired' | 'terrified' | 'reflected' | 'convinced' | 'filled' | 'vanished' | 'wholesome' | 'called' | 'been' | 'dispersed' | 'spent' | 'retired' | 'collected' | 'seen' | 'done' | 'performed' | 'disgusted' | 'been' | 'hid' | 'employed' | 'elevated' | 'blotted' | 'gilded' | 'been' | 'made' | 'gratified' | 'refreshed' | 'rested' | 'conjectured' | 'accompanied' | 'dressed' | 'covered' | 'replied' | 'animated' | 'tinged' | 'ravished' | 'vanished' | 'believed' | 'flushed' | 'kissed' | 'made' | 'been' | 'passed' | 'found' | 'repeated' | 'profited' | 'desired' | 'finished' | 'flowed' | 'finished' | 'endeavoured' | 'passed' | 'taken' | 'improved' | 'uttered' | 'covered' | 'shortened' | 'ventured' | 'endured' | 'spent' | 'conversed' | 'spoken' | 'improved' | 'taught' | 'opened' | 'understood' | 'felix' | 'given' | 'chosen' | 'framed' | 'conceived' | 'been' | 'bestowed' | 'explained' | 'esteemed' | 'united' | 'respected' | 'considered' | 'endued' | 'deformed' | 'disowned' | 'increased' | 'remained' | 'known' | 'felt' | 'seized' | 'shut' | 'obtained' | 'wrapped' | 'expanded' | 'gained' | 'watched' | 'blessed' | 'been' | 'seen' | 'i' | 'answered' | 'excited' | 'terminated' | 'inexperienced' | 'descended' | 'lived' | 'respected' | 'beloved' | 'bred' | 'ranked' | 'lived' | 'called' | 'surrounded' | 'possessed' | 'accompanied' | 'been' | 'inhabited' | 'seized' | 'cast' | 'tried' | 'condemned' | 'judged' | 'alleged' | 'been' | 'been' | 'grated' | 'known' | 'amazed' | 'delighted' | 'endeavoured' | 'allowed' | 'made' | 'conveyed' | 'warmed' | 'seized' | 'made' | 'recommended' | 'won' | 'born' | 'reduced' | 'impressed' | 'immured' | 'allowed' | 'accustomed' | 'allowed' | 'fixed' | 'procured' | 'communicated' | 'decided' | 'united' | 'remained' | 'formed' | 'united' | 'enabled' | 'facilitated' | 'enraged' | 'discovered' | 'thrown' | 'delivered' | 'confined' | 'learned' | 'reduced' | 'quitted' | 'endured' | 'been' | 'infused' | 'deprived' | 'outraged' | 'been' | 'divulged' | 'delivered' | 'hired' | 'arrived' | 'resolved' | 'left' | 'mentioned' | 'bound' | 'lived' | 'called' | 'seized' | 'returned' | 'written' | 'acquired' | 'lost' | 'studied' | 'exercised' | 'employed' | 'raised' | 'canvassed' | 'hitherto' | 'been' | 'combined' | 'accorded' | 'beheld' | 'imagined' | 'calculated' | 'applied' | 'sympathized' | 'unformed' | 'related' | 'i' | 'recurred' | 'possessed' | 'wretched' | 'surpassed' | 'unacquainted' | 'been' | 'studied' | 'concerned' | 'induced' | 'led' | 'been' | 'made' | 'been' | 'imbued' | 'lost' | 'read' | 'fallen' | 'united' | 'come' | 'guarded' | 'allowed' | 'wretched' | 'considered' | 'taken' | 'neglected' | 'written' | 'described' | 'mingled' | 'related' | 'set' | 'given' | 'made' | 'improved' | 'added' | 'diffused' | 'reigned' | 'spent' | 'assisted' | 'contented' | 'reflected' | 'unchecked' | 'shared' | 'abandoned' | 'worn' | 'fitted' | 'deserted' | 'decreased' | 'interrupted' | 'yearned' | 'known' | 'loved' | 'driven' | 'taken' | 'fixed' | 'beheld' | 'tolerated' | 'departed' | 'left' | 'departed' | 'heard' | 'illuminated' | 'absorbed' | 'gone' | 'silent' | 'placed' | 'renewed' | 'come' | 'ensued' | 'educated' | 'seen' | 'unprejudiced' | 'prejudiced' | 'been' | 'been' | 'driven' | 'been' | 'condemned' | 'i' | 'directed' | 'opened' | 'entered' | 'fainted' | 'torn' | 'overcome' | 'bestowed' | 'taken' | 'destroyed' | 'glutted' | 'quitted' | 'wandered' | 'restrained' | 'broken' | 'sat' | 'fatigued' | 'formed' | 'passed' | 'been' | 'acted' | 'exposed' | 'familiarized' | 'discovered' | 'been' | 'prepared' | 'visited' | 'exhausted' | 'appeased' | 'passed' | 'quitted' | 'obliged' | 'related' | 'departed' | 'broken' | 'filled' | 'borne' | 'spurned' | 'deserted' | 'returned' | 'destroyed' | 'sunk' | 'loitered' | 'danced' | 'fixed' | 'touched' | 'collected' | 'enveloped' | 'convinced' | 'given' | 'bestowed' | 'been' | 'omitted' | 'learned' | 'mentioned' | 'resolved' | 'i' | 'endowed' | 'i' | 'determined' | 'attempted' | 'endured' | 'decayed' | 'poured' | 'fled' | 'turned' | 'enkindled' | 'hardened' | 'wandered' | 'allowed' | 'recovered' | 'confirmed' | 'rested' | 'secured' | 'risen' | 'appeared' | 'surprised' | 'borne' | 'raised' | 'blessed' | 'skirted' | 'paused' | 'concealed' | 'rushed' | 'endeavoured' | 'interrupted' | 'fled' | 'saved' | 'writhed' | 'entertained' | 'inflamed' | 'paused' | 'received' | 'entered' | 'remained' | 'passed' | 'augmented' | 'endured' | 'alleviated' | 'made' | 'oppressed' | 'disturbed' | 'chosen' | 'gazed' | 'lived' | 'imbibed' | 'urged' | 'seized' | 'sworn' | 'gazed' | 'gazed' | 'fringed' | 'deprived' | 'changed' | 'overcome' | 'committed' | 'appeared' | 'bestowed' | 'beloved' | 'opened' | 'committed' | 'robbed' | 'learned' | 'taken' | 'resolved' | 'ranged' | 'consumed' | 'promised' | 'deformed' | 'finished' | 'bewildered' | 'kindled' | 'died' | 'answered' | 'shunned' | 'hated' | 'hatred' | 'wrinkled' | 'intended' | 'realized' | 'moved' | 'continued' | 'been' | 'renewed' | 'moved' | 'fled' | 'altered' | 'shown' | 'trifled' | 'linked' | 'excluded' | 'related' | 'employed' | 'displayed' | 'manifested' | 'omitted' | 'vain' | 'occupied' | 'encompassed' | 'produced' | 'seated' | 'passed' | 'ye' | 'arrived' | 'destroyed' | 'presented' | 'placed' | 'made' | 'passed' | 'enjoined' | 'heard' | 'been' | 'made' | 'thought' | 'taken' | 'restored' | 'unchecked' | 'resumed' | 'lost' | 'founded' | 'looked' | 'attached' | 'suited' | 'destroyed' | 'met' | 'bound' | 'experienced' | 'taken' | 'been' | 'drawn' | 'possessed' | 'formed' | 'bound' | 'fulfilled' | 'dared' | 'imposed' | 'connected' | 'employed' | 'achieved' | 'restored' | 'fulfilled' | 'imaged' | 'restored' | 'left' | 'taken' | 'saved' | 'bound' | 'detested' | 'haunted' | 'promised' | 'agonized' | 'governed' | 'been' | 'filled' | 'been' | 'blind' | 'packed' | 'filled' | 'fixed' | 'spent' | 'occupied' | 'reflected' | 'haunted' | 'agreed' | 'arrived' | 'surrounded' | 'variegated' | 'rugged' | 'depressed' | 'agitated' | 'gazed' | 'been' | 'been' | 'transported' | 'tasted' | 'seen' | 'visited' | 'seen' | 'agitated' | 'overwhelmed' | 'heard' | 'seen' | 'equalled' | 'concealed' | 'beloved' | 'formed' | 'chastened' | 'overflowed' | 'devoted' | 'supplied' | 'lost' | 'perished' | 'decayed' | 'marked' | 'heard' | 'famed' | 'occupied' | 'brought' | 'taken' | 'afforded' | 'come' | 'soothed' | 'brought' | 'sealed' | 'connected' | 'filled' | 'taken' | 'devoted' | 'been' | 'desired' | 'arrived' | 'collected' | 'filled' | 'been' | 'transacted' | 'collected' | 'remained' | 'forsaken' | 'supposed' | 'inhabited' | 'found' | 'embittered' | 'formed' | 'visited' | 'overcome' | 'entered' | 'prolonged' | 'elevated' | 'eaten' | 'disposed' | 'pronounced' | 'associated' | 'lingered' | 'imagined' | 'possessed' | 'obliged' | 'visited' | 'neglected' | 'snatched' | 'delayed' | 'overcome' | 'dared' | 'committed' | 'drawn' | 'interested' | 'expected' | 'parted' | 'finished' | 'fixed' | 'fitted' | 'beaten' | 'procured' | 'exhibited' | 'fallen' | 'repaired' | 'occasioned' | 'been' | 'benumbed' | 'covered' | 'troubled' | 'compared' | 'engaged' | 'blinded' | 'fixed' | 'shut' | 'situated' | 'employed' | 'immersed' | 'engaged' | 'fixed' | 'dreaded' | 'intermixed' | 'set' | 'engaged' | 'created' | 'desolated' | 'sworn' | 'made' | 'loathed' | 'exasperated' | 'deserted' | 'propagated' | 'been' | 'moved' | 'created' | 'been' | 'struck' | 'hesitated' | 'allotted' | 'followed' | 'loitered' | 'taken' | 'thought' | 'engaged' | 'passed' | 'hushed' | 'reposed' | 'arrested' | 'overcome' | 'felt' | 'rooted' | 'appeared' | 'destroyed' | 'endured' | 'dwelt' | 'endured' | 'reasoned' | 'proved' | 'arrived' | 'requited' | 'declared' | 'seized' | 'lost' | 'suffered' | 'directed' | 'fixed' | 'snatched' | 'shed' | 'called' | 'regarded' | 'sacrificed' | 'created' | 'separated' | 'overpowered' | 'been' | 'agitated' | 'inflamed' | 'refreshed' | 'passed' | 'descended' | 'become' | 'formed' | 'entered' | 'followed' | 'been' | 'destroyed' | 'scattered' | 'felt' | 'mangled' | 'determined' | 'employed' | 'taken' | 'fulfilled' | 'been' | 'taken' | 'heard' | 'weighed' | 'resolved' | 'made' | 'banished' | 'sailed' | 'been' | 'overspread' | 'chilled' | 'resolved' | 'heard' | 'mounted' | 'driven' | 'embarked' | 'filled' | 'situated' | 'acquainted' | 'driven' | 'swallowed' | 'been' | 'covered' | 'replaced' | 'rushed' | 'gushed' | 'traced' | 'occupied' | 'surprised' | 'produced' | 'come' | 'consulted' | 'surprised' | 'disconcerted' | 'expressed' | 'mrxperiod' | 'found' | 'murdered' | 'recovered' | 'proved' | 'led' | 'surrounded' | 'construed' | 'introduced' | 'selected' | 'been' | 'risen' | 'been' | 'accustomed' | 'fallen' | 'been' | 'drowned' | 'thrown' | 'been' | 'strangled' | 'mentioned' | 'trembled' | 'called' | 'landed' | 'found' | 'cold' | 'gone' | 'examined' | 'arisen' | 'beaten' | 'been' | 'obliged' | 'departed' | 'brought' | 'put' | 'deposited' | 'taken' | 'observed' | 'suggested' | 'exhibited' | 'been' | 'described' | 'conducted' | 'struck' | 'taken' | 'been' | 'inhabited' | 'been' | 'found' | 'led' | 'parched' | 'passed' | 'deprived' | 'destroyed' | 'carried' | 'succeeded' | 'tormented' | 'been' | 'renewed' | 'doomed' | 'found' | 'stretched' | 'surrounded' | 'forgotten' | 'happened' | 'overwhelmed' | 'flashed' | 'accustomed' | 'heard' | 'sent' | 'saved' | 'passed' | 'pressed' | 'marked' | 'shown' | 'caused' | 'prepared' | 'provided' | 'neglected' | 'seated' | 'overcome' | 'been' | 'opened' | 'brought' | 'persecuted' | 'tortured' | 'been' | 'occurred' | 'thrown' | 'charged' | 'presented' | 'murdered' | 'exhibited' | 'taken' | 'brought' | 'discovered' | 'elapsed' | 'been' | 'acted' | 'come' | 'come' | 'thought' | 'been' | 'relaxed' | 'come' | 'given' | 'cried' | 'endeavoured' | 'endured' | 'died' | 'allowed' | 'rendered' | 'exhausted' | 'recovered' | 'absorbed' | 'been' | 'obliged' | 'held' | 'spared' | 'brought' | 'proved' | 'found' | 'liberated' | 'enraptured' | 'freed' | 'allowed' | 'poisoned' | 'penetrated' | 'covered' | 'longed' | 'been' | 'interrupted' | 'endeavoured' | 'endued' | 'desired' | 'gone' | 'preyed' | 'sailed' | 'midnight' | 'detested' | 'deceived' | 'fallen' | 'pressed' | 'been' | 'enabled' | 'oppressed' | 'swallowed' | 'possessed' | 'established' | 'imparted' | 'overtaxed' | 'abhorred' | 'attracted' | 'unchained' | 'yielded' | 'obliged' | 'degraded' | 'died' | 'presented' | 'preserved' | 'created' | 'supposed' | 'chained' | 'given' | 'confided' | 'recorded' | 'viewed' | 'shed' | 'saved' | 'deranged' | 'taken' | 'alluded' | 'talked' | 'composed' | 'been' | 'dated' | 'suffered' | 'been' | 'passed' | 'been' | 'augmented' | 'answered' | 'satisfied' | 'pleased' | 'wished' | 'been' | 'told' | 'travelled' | 'spent' | 'bound' | 'been' | 'disinterested' | 'tenfold' | 'assured' | 'made' | 'occasioned' | 'revived' | 'determined' | 'vanquished' | 'been' | 'massacred' | 'balanced' | 'eaten' | 'influenced' | 'vowed' | 'satiated' | 'murdered' | 'centred' | 'surprised' | 'endured' | 'lost' | 'charmed' | 'blasted' | 'passed' | 'bewildered' | 'transported' | 'resigned' | 'found' | 'fixed' | 'befallen' | 'lost' | 'softened' | 'born' | 'been' | 'deprived' | 'been' | 'pronounced' | 'balanced' | 'contented' | 'thought' | 'banished' | 'consented' | 'possessed' | 'blinded' | 'prepared' | 'fixed' | 'unmingled' | 'impressed' | 'made' | 'received' | 'been' | 'restored' | 'belonged' | 'agreed' | 'regarded' | 'promised' | 'overjoyed' | 'recognized' | 'performed' | 'agreed' | 'sheltered' | 'suffered' | 'assured' | 'painted' | 'contented' | 'opened' | 'endeavoured' | 'come' | 'obscured' | 'fallen' | 'reached' | 'busier' | 'descended' | 'been' | 'calm' | 'hidden' | 'extinguished' | 'expected' | 'obtained' | 'intervened' | 'retired' | 'suspended' | 'repeated' | 'rushed' | 'thrown' | 'covered' | 'found' | 'surrounded' | 'been' | 'moved' | 'supposed' | 'held' | 'ceased' | 'loved' | 'cherished' | 'ceased' | 'been' | 'darkened' | 'been' | 'thrown' | 'described' | 'disappeared' | 'cast' | 'been' | 'conjured' | 'landed' | 'covered' | 'parched' | 'carried' | 'placed' | 'happened' | 'wandered' | 'lost' | 'rambled' | 'bewildered' | 'procured' | 'experienced' | 'contemplated' | 'ceased' | 'done' | 'been' | 'observed' | 'done' | 'snatched' | 'been' | 'been' | 'reached' | 'snatched' | 'left' | 'exhausted' | 'lived' | 'wandered' | 'lost' | 'cursed' | 'cursed' | 'accumulated' | 'lost' | 'pressed' | 'released' | 'called' | 'been' | 'been' | 'i' | 'pressed' | 'created' | 'sent' | 'possessed' | 'assured' | 'spared' | 'connected' | 'mistaken' | 'formed' | 'painted' | 'concluded' | 'heard' | 'given' | 'called' | 'elapsed' | 'wandered' | 'taken' | 'hunted' | 'destroyed' | 'intimidated' | 'mistaken' | 'assured' | 'described' | 'pursued' | 'turned' | 'possessed' | 'occupied' | 'swallowed' | 'lost' | 'hurried' | 'endowed' | 'been' | 'belonged' | 'traversed' | 'endured' | 'lived' | 'i' | 'stretched' | 'agitated' | 'been' | 'departed' | 'felt' | 'seen' | 'exclaimed' | 'begun' | 'answered' | 'been' | 'possessed' | 'destroyed' | 'heard' | 'reserved' | 'satisfied' | 'determined' | 'been' | 'guided' | 'followed' | 'scared' | 'felt' | 'destined' | 'cursed' | 'murmured' | 'overcome' | 'prepared' | 'set' | 'invoked' | 'parched' | 'avoided' | 'collected' | 'seen' | 'subsisted' | 'brought' | 'killed' | 'presented' | 'provided' | 'provided' | 'deprived' | 'sunk' | 'sustained' | 'inspirited' | 'wearied' | 'enjoined' | 'cut' | 'refreshed' | 'pursued' | 'increased' | 'shut' | 'forced' | 'covered' | 'procured' | 'cut' | 'hatred' | 'invigorated' | 'continued' | 'covered' | 'distinguished' | 'procured' | 'lost' | 'gained' | 'gained' | 'arrived' | 'armed' | 'carried' | 'seized' | 'harnessed' | 'pursued' | 'destroyed' | 'frozen' | 'escaped' | 'returned' | 'overwhelmed' | 'prepared' | 'fashioned' | 'departed' | 'passed' | 'endured' | 'enabled' | 'consumed' | 'passed' | 'sunk' | 'wiped' | 'dimmed' | 'gained' | 'extinguished' | 'done' | 'heard' | 'finished' | 'left' | 'passed' | 'died' | 'astounded' | 'enabled' | 'determined' | 'exhausted' | 'sunk' | 'undergone' | 'read' | 'seized' | 'lighted' | 'subdued' | 'quenched' | 'related' | 'connected' | 'told' | 'seen' | 'connected' | 'i' | 'lost' | 'corrected' | 'augmented' | 'preserved' | 'passed' | 'listened' | 'formed' | 'been' | 'drunk' | 'created' | 'confined' | 'been' | 'believed' | 'destined' | 'been' | 'oppressed' | 'completed' | 'chained' | 'imbued' | 'known' | 'longed' | 'sought' | 'found' | 'gained' | 'gone' | 'moved' | 'modified' | 'eradicated' | 'been' | 'shown' | 'attached' | 'contemplated' | 'whispered' | 'engaged' | 'fulfilled' | 'encompassed' | 'doomed' | 'surrounded' | 'persuaded' | 'endangered' | 'lost' | 'tortured' | 'happened' | 'attempted' | 'delayed' | 'caused' | 'passed' | 'i' | 'surrounded' | 'crushed' | 'found' | 'declined' | 'exhausted' | 'entertained' | 'roused' | 'been' | 'chosen' | 'immured' | 'opened' | 'surmounted' | 'freed' | 'despaired' | 'i' | 'conceived' | 'set' | 'been' | 'roused' | 'sparkled' | 'turned' | 'called' | 'hailed' | 'adored' | 'handed' | 'returned' | 'come' | 'made' | 'marked' | 'fought' | 'conquered' | 'expressed' | 'moved' | 'been' | 'sunk' | 'deprived' | 'unsupported' | 'cast' | 'consented' | 'destroyed' | 'blasted' | 'lost' | 'lost' | 'wafted' | 'heard' | 'cracked' | 'occupied' | 'increased' | 'confined' | 'driven' | 'assured' | 'assigned' | 'fainted' | 'restored' | 'thought' | 'pronounced' | 'closed' | 'relied' | 'gone' | 'justified' | 'been' | 'occupied' | 'bound' | 'urged' | 'failed' | 'actuated' | 'induced' | 'disturbed' | 'misled' | 'enjoyed' | 'beloved' | 'been' | 'blasted' | 'exhausted' | 'overshadowed' | 'interrupted' | 'midnight' | 'taken' | 'dizzy' | 'recorded' | 'distorted' | 'concealed' | 'extended' | 'called' | 'instigated' | 'consummated' | 'wound' | 'suffocated' | 'suggested' | 'suspended' | 'listened' | 'urged' | 'lived' | 'poisoned' | 'fashioned' | 'wrenched' | 'barred' | 'accomplished' | 'detested' | 'cast' | 'subdued' | 'urged' | 'chosen' | 'ended' | 'touched' | 'called' | 'rekindled' | 'made' | 'consumed' | 'lived' | 'withdrawn' | 'overflowed' | 'participated' | 'become' | 'turned' | 'soothed' | 'nourished' | 'degraded' | 'found' | 'filled' | 'fallen' | 'desired' | 'spurned' | 'thought' | 'sinned' | 'abandoned' | 'spurned' | 'murdered' | 'strangled' | 'devoted' | 'pursued' | 'conceived' | 'needed' | 'done' | 'been' | 'opened' | 'wept' | 'polluted' | 'torn' | 'cherished' | 'satiated' | 'ceased' | 'blasted' | 'swept' | 'lost'\nVBP -> 'have' | 'am' | 'walk' | 'feel' | 'i' | 'am' | 'snow' | 'are' | 'are' | 'require' | 'consistent' | 'are' | 'are' | 'i' | 'are' | 'have' | 'feel' | 'have' | 'have' | 'surround' | 'are' | 'are' | 'bore' | 'have' | 'do' | 'are' | 'am' | 'am' | 'are' | 'fly' | 'are' | 'i' | 'have' | 'have' | 'think' | 'are' | 'do' | 'fail' | 'rxperiod' | 'am' | 'have' | 'am' | 'i' | 'have' | 'appear' | 'are' | 'have' | 'i' | 'have' | 'feel' | 'have' | 'am' | 'am' | 'desire' | 'i' | 'feel' | 'have' | 'are' | 'am' | 'am' | 'am' | 'am' | 'have' | 'are' | 'want' | 'call' | 'need' | 'are' | 'i' | 'have' | 'fortunate' | 'father' | 'do' | 'complain' | 'i' | 'am' | 'are' | 'know' | 'i' | 'am' | 'am' | 'i' | 'do' | 'have' | 'do' | 'am' | 'i' | 'am' | 'need' | 'love' | 'hear' | 'robert' | 'england' | 'write' | 'am' | 'am' | 'are' | 'do' | 'pass' | 'are' | 'appear' | 'have' | 'blow' | 'i' | 'desire' | 'have' | 'are' | 'remember' | 'have' | 'oclock' | 'beheld' | 'float' | 'busy' | 'come' | 'are' | 'have' | 'are' | 'pursued' | 'fancy' | 'have' | 'have' | 'are' | 'have' | 'have' | 'have' | 'are' | 'are' | 'have' | 'begin' | 'have' | 'have' | 'see' | 'are' | 'i' | 'have' | 'i' | 'beheld' | 'trickle' | 'have' | 'drunk' | 'agree' | 'are' | 'am' | 'have' | 'have' | 'i' | 'i' | 'have' | 'seem' | 'express' | 'have' | 'are' | 'have' | 'believe' | 'are' | 'have' | 'have' | 'seek' | 'hope' | 'do' | 'reflect' | 'are' | 'have' | 'am' | 'imagine' | 'are' | 'wait' | 'understand' | 'are' | 'have' | 'am' | 'know' | 'hear' | 'dwell' | 'are' | 'frightful' | 'am' | 'tender' | 'are' | 'i' | 'turn' | 'want' | 'have' | 'need' | 'i' | 'earnest' | 'are' | 'i' | 'i' | 'enjoyed' | 'i' | 'are' | 'feel' | 'record' | 'find' | 'do' | 'have' | 'read' | 'have' | 'i' | 'i' | 'are' | 'betook' | 'are' | 'are' | 'look' | 'regret' | 'am' | 'have' | 'are' | 'are' | 'are' | 'have' | 'have' | 'door' | 'i' | 'have' | 'have' | 'have' | 'have' | 'are' | 'are' | 'anew' | 'have' | 'useless' | 'have' | 'mxperiod' | 'i' | 'promise' | 'know' | 'seem' | 'have' | 'penetrate' | 'ascend' | 'have' | 'breathe' | 'have' | 'fail' | 'am' | 'have' | 'have' | 'have' | 'have' | 'i' | 'read' | 'modern' | 'have' | 'account' | 'i' | 'have' | 'go' | 'have' | 'i' | 'are' | 'relate' | 'do' | 'object' | 'beheld' | 'i' | 'am' | 'i' | 'affirm' | 'object' | 'see' | 'expect' | 'i' | 'am' | 'am' | 'bore' | 'pour' | 'i' | 'swim' | 'yield' | 'know' | 'are' | 'regard' | 'are' | 'am' | 'do' | 'apply' | 'forget' | 'am' | 'i' | 'before' | 'beneath' | 'are' | 'threw' | 'slept' | 'i' | 'tread' | 'i' | 'am' | 'believe' | 'have' | 'thousand' | 'eat' | 'hear' | 'mean' | 'appear' | 'look' | 'have' | 'have' | 'have' | 'see' | 'i' | 'hope' | 'i' | 'hope' | 'are' | 'am' | 'are' | 'expect' | 'do' | 'are' | 'i' | 'remember' | 'are' | 'feel' | 'have' | 'do' | 'get' | 'appear' | 'know' | 'have' | 'are' | 'i' | 'love' | 'are' | 'believe' | 'have' | 'are' | 'are' | 'have' | 'have' | 'have' | 'have' | 'are' | 'hope' | 'love' | 'are' | 'fear' | 'yield' | 'change' | 'think' | 'are' | 'take' | 'am' | 'do' | 'have' | 'prevail' | 'are' | 'recollect' | 'do' | 'i' | 'heard' | 'inconsiderate' | 'believe' | 'i' | 'love' | 'wish' | 'appear' | 'are' | 'dare' | 'say' | 'have' | 'are' | 'underwent' | 'i' | 'please' | 'know' | 'read' | 'read' | 'endeavour' | 'have' | 'dare' | 'wish' | 'know' | 'are' | 'god' | 'have' | 'have' | 'are' | 'alone' | 'are' | 'say' | 'enter' | 'love' | 'read' | 'are' | 'do' | 'grasp' | 'have' | 'mourn' | 'weep' | 'are' | 'i' | 'wept' | 'do' | 'are' | 'are' | 'foresaw' | 'appear' | 'i' | 'i' | 'i' | 'desire' | 'come' | 'hope' | 'eyes' | 'do' | 'mean' | 'have' | 'elizabeth' | 'have' | 'fear' | 'are' | 'know' | 'do' | 'have' | 'have' | 'are' | 'exist' | 'do' | 'have' | 'i' | 'am' | 'are' | 'believe' | 'i' | 'have' | 'am' | 'do' | 'rest' | 'have' | 'hope' | 'have' | 'know' | 'have' | 'have' | 'am' | 'i' | 'am' | 'believe' | 'have' | 'know' | 'commit' | 'see' | 'am' | 'see' | 'wish' | 'know' | 'am' | 'have' | 'do' | 'believe' | 'rely' | 'do' | 'have' | 'have' | 'i' | 'am' | 'i' | 'am' | 'do' | 'believe' | 'am' | 'do' | 'join' | 'do' | 'are' | 'am' | 'i' | 'guiltless' | 'heard' | 'say' | 'i' | 'am' | 'am' | 'do' | 'do' | 'leave' | 'remember' | 'am' | 'are' | 'do' | 'am' | 'i' | 'feel' | 'think' | 'am' | 'bore' | 'friend' | 'woe' | 'are' | 'weep' | 'have' | 'beheld' | 'spend' | 'have' | 'do' | 'except' | 'say' | 'leave' | 'i' | 'wept' | 'have' | 'are' | 'reflect' | 'read' | 'appear' | 'am' | 'know' | 'feel' | 'are' | 'are' | 'have' | 'i' | 'am' | 'are' | 'centre' | 'have' | 'love' | 'are' | 'overhung' | 'i' | 'heard' | 'take' | 'i' | 'hid' | 'enable' | 'lie' | 'bent' | 'ascend' | 'are' | 'are' | 'ran' | 'are' | 'rest' | 'rise' | 'feel' | 'sink' | 'do' | 'do' | 'do' | 'fear' | 'restore' | 'have' | 'hate' | 'am' | 'purpose' | 'sport' | 'refuse' | 'i' | 'are' | 'reproach' | 'sprang' | 'entreat' | 'give' | 'have' | 'seek' | 'i' | 'am' | 'thou' | 'am' | 'i' | 'am' | 'see' | 'i' | 'am' | 'are' | 'cause' | 'am' | 'hope' | 'owe' | 'spurn' | 'are' | 'have' | 'do' | 'are' | 'i' | 'are' | 'do' | 'abhor' | 'am' | 'do' | 'have' | 'deserve' | 'are' | 'are' | 'are' | 'ask' | 'do' | 'have' | 'curse' | 'have' | 'have' | 'am' | 'relieve' | 'i' | 'flung' | 'i' | 'take' | 'abhor' | 'listen' | 'demand' | 'quit' | 'remember' | 'appear' | 'remember' | 'believe' | 'i' | 'found' | 'ate' | 'i' | 'awoke' | 'i' | 'rang' | 'fixed' | 'whilst' | 'thrust' | 'lay' | 'i' | 'struck' | 'shone' | 'i' | 'ate' | 'have' | 'cross' | 'withdrew' | 'whilst' | 'i' | 'arose' | 'believe' | 'i' | 'i' | 'want' | 'felix' | 'believe' | 'am' | 'know' | 'sprang' | 'slept' | 'i' | 'heard' | 'utter' | 'i' | 'have' | 'am' | 'sorrow' | 'i' | 'i' | 'i' | 'purpose' | 'agatha' | 'i' | 'have' | 'heard' | 'felix' | 'i' | 'bore' | 'i' | 'bind' | 'have' | 'depart' | 'preyed' | 'are' | 'wept' | 'read' | 'read' | 'i' | 'i' | 'read' | 'relative' | 'paradise' | 'i' | 'doubtless' | 'are' | 'read' | 'i' | 'am' | 'turn' | 'experience' | 'beheld' | 'assume' | 'i' | 'awoke' | 'i' | 'i' | 'am' | 'are' | 'am' | 'am' | 'have' | 'need' | 'i' | 'suppose' | 'are' | 'are' | 'am' | 'i' | 'love' | 'have' | 'are' | 'are' | 'am' | 'look' | 'have' | 'go' | 'have' | 'am' | 'fail' | 'am' | 'are' | 'are' | 'do' | 'are' | 'are' | 'are' | 'have' | 'clouds' | 'are' | 'undeceive' | 'am' | 'feel' | 'have' | 'believe' | 'wish' | 'wish' | 'do' | 'am' | 'persuades' | 'are' | 'am' | 'raise' | 'am' | 'have' | 'do' | 'have' | 'heard' | 'i' | 'am' | 'know' | 'are' | 'i' | 'seek' | 'desert' | 'are' | 'instant' | 'i' | 'limb' | 'know' | 'have' | 'have' | 'shone' | 'save' | 'heard' | 'hid' | 'seek' | 'win' | 'heard' | 'i' | 'do' | 'have' | 'burst' | 'i' | 'clung' | 'crossed' | 'felix' | 'i' | 'i' | 'i' | 'i' | 'i' | 'bent' | 'i' | 'drew' | 'do' | 'wretch' | 'wish' | 'are' | 'dare' | 'belong' | 'have' | 'fixed' | 'i' | 'have' | 'are' | 'awake' | 'act' | 'have' | 'am' | 'have' | 'alone' | 'have' | 'am' | 'have' | 'do' | 'create' | 'have' | 'are' | 'am' | 'am' | 'am' | 'am' | 'are' | 'do' | 'swear' | 'desolate' | 'do' | 'are' | 'sake' | 'indulge' | 'demand' | 'feel' | 'excite' | 'i' | 'consent' | 'do' | 'have' | 'see' | 'propose' | 'are' | 'do' | 'swear' | 'bestow' | 'swear' | 'have' | 'have' | 'are' | 'live' | 'am' | 'swear' | 'grant' | 'exist' | 'are' | 'shone' | 'are' | 'i' | 'consent' | 'clung' | 'i' | 'am' | 'have' | 'seem' | 'are' | 'draw' | 'have' | 'appear' | 'love' | 'are' | 'have' | 'feel' | 'wish' | 'object' | 'have' | 'have' | 'are' | 'do' | 'are' | 'wish' | 'have' | 'force' | 'averse' | 'call' | 'i' | 'enjoy' | 'are' | 'view' | 'occupy' | 'have' | 'have' | 'descend' | 'believe' | 'have' | 'dash' | 'are' | 'wind' | 'have' | 'are' | 'pile' | 'are' | 'regard' | 'fanciful' | 'exist' | 'are' | 'soothe' | 'i' | 'are' | 'are' | 'am' | 'want' | 'attend' | 'are' | 'i' | 'are' | 'i' | 'do' | 'entreat' | 'return' | 'i' | 'hope' | 'do' | 'i' | 'i' | 'are' | 'are' | 'reflect' | 'i' | 'i' | 'dwelt' | 'heard' | 'have' | 'have' | 'crept' | 'have' | 'have' | 'do' | 'have' | 'have' | 'believe' | 'are' | 'i' | 'am' | 'confirm' | 'am' | 'are' | 'grovel' | 'am' | 'inflict' | 'have' | 'am' | 'am' | 'go' | 'sign' | 'are' | 'i' | 'i' | 'lay' | 'awoke' | 'i' | 'i' | 'i' | 'i' | 'do' | 'awoke' | 'shudder' | 'i' | 'are' | 'have' | 'i' | 'am' | 'are' | 'promise' | 'do' | 'do' | 'am' | 'are' | 'i' | 'i' | 'am' | 'account' | 'feel' | 'have' | 'await' | 'lay' | 'i' | 'have' | 'remember' | 'characterize' | 'are' | 'believe' | 'am' | 'i' | 'am' | 'am' | 'mean' | 'believe' | 'fancy' | 'am' | 'do' | 'i' | 'suffer' | 'fear' | 'do' | 'mention' | 'i' | 'am' | 'know' | 'are' | 'hope' | 'am' | 'become' | 'am' | 'have' | 'have' | 'suppose' | 'i' | 'have' | 'are' | 'tremble' | 'are' | 'am' | 'know' | 'do' | 'are' | 'inhabit' | 'dread' | 'i' | 'i' | 'sleep' | 'grasp' | 'rang' | 'felt' | 'do' | 'am' | 'i' | 'have' | 'entreat' | 'am' | 'have' | 'am' | 'have' | 'are' | 'expect' | 'have' | 'hope' | 'exist' | 'weigh' | 'meet' | 'are' | 'are' | 'dare' | 'have' | 'have' | 'believe' | 'do' | 'have' | 'have' | 'love' | 'have' | 'declare' | 'i' | 'weep' | 'are' | 'have' | 'obey' | 'remain' | 'come' | 'pain' | 'see' | 'meet' | 'i' | 'have' | 'read' | 'reread' | 'do' | 'have' | 'survive' | 'i' | 'have' | 'do' | 'entreat' | 'know' | 'enjoyed' | 'overcame' | 'have' | 'love' | 'do' | 'have' | 'have' | 'live' | 'have' | 'i' | 'have' | 'past' | 'leave' | 'exertions' | 'heard' | 'i' | 'enjoyed' | 'are' | 'have' | 'hope' | 'move' | 'are' | 'forms' | 'revive' | 'fear' | 'i' | 'heard' | 'heard' | 'am' | 'turn' | 'see' | 'arose' | 'have' | 'bore' | 'see' | 'remain' | 'know' | 'dreamt' | 'have' | 'have' | 'shudder' | 'accuse' | 'call' | 'believe' | 'hope' | 'speak' | 'have' | 'do' | 'perceive' | 'do' | 'are' | 'fear' | 'have' | 'allow' | 'reflect' | 'have' | 'refuse' | 'have' | 'are' | 'know' | 'say' | 'are' | 'have' | 'have' | 'are' | 'have' | 'know' | 'have' | 'round' | 'uncertain' | 'wander' | 'feel' | 'swear' | 'preside' | 'drink' | 're-echoed' | 'have' | 'am' | 'have' | 'am' | 'know' | 'have' | 'have' | 'want' | 'i' | 'i' | 'live' | 'seek' | 'am' | 'follow' | 'have' | 'do' | 'do' | 'ecstasy' | 'prepare' | 'begin' | 'knelt' | 'know' | 'i' | 'have' | 'have' | 'heard' | 'i' | 'wept' | 'o' | 'f' | 'beheld' | 'i' | 'do' | 'do' | 'have' | 'am' | 'am' | 'trust' | 'have' | 'own' | 'am' | 'are' | 'create' | 'do' | 'have' | 'have' | 'have' | 'have' | 'are' | 'visit' | 'render' | 'are' | 'are' | 'i' | 'are' | 'am' | 'i' | 'i' | 'am' | 'have' | 'have' | 'have' | 'fear' | 'have' | 'speak' | 'think' | 'are' | 'are' | 'know' | 'are' | 'have' | 'suspect' | 'am' | 'are' | 'live' | 'september' | 'write' | 'am' | 'am' | 'have' | 'look' | 'have' | 'do' | 'are' | 'are' | 'are' | 'have' | 'have' | 'have' | 'feel' | 'hear' | 'believe' | 'are' | 'are' | 'are' | 'have' | 'i' | 'do' | 'do' | 'are' | 'shrink' | 'are' | 'say' | 'have' | 'know' | 'know' | 'fear' | 'continue' | 'have' | 'are' | 'are' | 'come' | 'am' | 'have' | 'have' | 'i' | 'am' | 'shout' | 'i' | 'dare' | 'am' | 'assist' | 'feel' | 'i' | 'feel' | 'i' | 'feel' | 'i' | 'have' | 'do' | 'do' | 'have' | 'renew' | 'am' | 'are' | 'leave' | 'are' | 'think' | 'expect' | 'have' | 'hasten' | 'do' | 'have' | 'say' | 'flow' | 'england' | 'am' | 'do' | 'portend' | 'am' | 'know' | 'i' | 'have' | 'towards' | 'shut' | 'are' | 'do' | 'i' | 'come' | 'have' | 'throw' | 'are' | 'sit' | 'mourn' | 'feel' | 'lament' | 'seek' | 'are' | 'am' | 'die' | 'am' | 'i' | 'run' | 'am' | 'am' | 'call' | 'seem' | 'am' | 'humankind' | 'do' | 'do' | 'are' | 'am' | 'am' | 'have' | 'have' | 'have' | 'have' | 'hate' | 'i' | 'regard' | 'look' | 'think' | 'do' | 'have' | 'consume' | 'play' | 'leave' | 'seek' | 'i' | 'feel' | 'feel' | 'think'\nWDT -> 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'that' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'whatever' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'that' | 'that' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'that' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'whatever' | 'that' | 'which' | 'that' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'that' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'what' | 'that' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'which' | 'that' | 'that' | 'that' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'that' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'that' | 'that' | 'which' | 'that' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'that' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'that' | 'that' | 'what' | 'which' | 'that' | 'which' | 'which' | 'which' | 'that' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'that' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which' | 'which'\nJJ -> 'such' | 'evil' | 'first' | 'dear' | 'north' | 'i' | 'i' | 'cold' | 'icy' | 'daydreams' | 'fervent' | 'vivid' | 'i' | 'visible' | 'broad' | 'perpetual' | 'calm' | 'habitable' | 'heavenly' | 'undiscovered' | 'eternal' | 'wondrous' | 'needle' | 'celestial' | 'ardent' | 'visited' | 'sufficient' | 'laborious' | 'little' | 'native' | 'false' | 'inestimable' | 'last' | 'many' | 'requisite' | 'possible' | 'such' | 'much' | 'steady' | 'intellectual' | 'favourite' | 'early' | 'various' | 'north' | 'pacific' | 'good' | 'forbidden' | 'seafaring' | 'first' | 'own' | 'present' | 'great' | 'several' | 'north' | 'cold' | 'common' | 'physical' | 'naval' | 'practical' | 'i' | 'under-mate' | 'little' | 'second' | 'valuable' | 'dear' | 'great' | 'encouraging' | 'affirmative' | 'firm' | 'depressed' | 'long' | 'difficult' | 'own' | 'favourable' | 'pleasant' | 'agreeable' | 'english' | 'excessive' | 'great' | 'seated' | 'latter' | 'many' | 'i' | 'necessary' | 'dear' | 'i' | 'many' | 'many' | 'i' | 'dear' | 'excellent' | 'walton' | '17-' | 'second' | 'dauntless' | 'able' | 'severe' | 'true' | 'poor' | 'romantic' | 'dear' | 'gentle' | 'courageous' | 'capacious' | 'own' | 'poor' | 'ardent' | 'impatient' | 'self-educated' | 'first' | 'fourteen' | 'common' | 'read' | 'celebrated' | 'own' | 'important' | 'native' | 'twenty-eight' | 'illiterate' | 'many' | 'true' | 'extended' | 'magnificent' | 'romantic' | 'useless' | 'wide' | 'human' | 'wonderful' | 'desirous' | 'national' | 'professional' | 'first' | 'whale' | 'excellent' | 'remarkable' | 'well-known' | 'desirous' | 'feminine' | 'intense' | 'usual' | 'necessary' | 'i' | 'able' | 'i' | 'romantic' | 'young' | 'russian' | 'moderate' | 'considerable' | 'destined' | 'same' | 'poor' | 'generous' | 'young' | 'old' | 'inexorable' | 'former' | 'noble' | 'uneducated' | 'silent' | 'ignorant' | 'astonishing' | 'little' | 'severe' | 'early' | 'near' | 'impossible' | 'pleasurable' | 'fearful' | 'unexplored' | 'woeful' | 'secret' | 'dangerous' | 'imaginative' | 'modern' | 'industrious' | 'marvellous' | 'marvellous' | 'common' | 'wild' | 'unvisited' | 'immense' | 'southern' | 'such' | 'present' | 'walton' | '17-' | 'dear' | 'i' | 'few' | 'i' | 'safe' | 'homeward' | 'native' | 'many' | 'good' | 'bold' | 'high' | 'warm' | 'southern' | 'speedily' | 'stiff' | 'content' | 'dear' | 'own' | 'cool' | 'i' | 'secure' | 'untamed' | 'obedient' | 'determined' | 'bless' | 'beloved' | 'strange' | 'probable' | 'last' | 'dangerous' | 'thick' | 'vast' | 'irregular' | 'own' | 'watchful' | 'anxious' | 'strange' | 'own' | 'low' | 'gigantic' | 'rapid' | 'distant' | 'unqualified' | 'many' | 'distant' | 'impossible' | 'large' | 'loose' | 'few' | 'light' | 'i' | 'large' | 'alive' | 'human' | 'other' | 'undiscovered' | 'european' | 'open' | 'english' | 'foreign' | 'i' | 'precious' | 'northern' | 'satisfied' | 'good' | 'frozen' | 'fresh' | 'small' | 'slow' | 'little' | 'able' | 'i' | 'own' | 'interesting' | 'kindness' | 'trifling' | 'whole' | 'melancholy' | 'little' | 'recovered' | 'great' | 'idle' | 'entire' | 'strange' | 'same' | 'i' | 'good' | 'considerate' | 'impertinent' | 'strange' | 'perilous' | 'i' | 'other' | 'new' | 'upon' | 'weak' | 'instant' | 'new' | 'such' | 'strange' | 'present' | 'silent' | 'uneasy' | 'conciliating' | 'gentle' | 'interested' | 'little' | 'own' | 'i' | 'constant' | 'deep' | 'noble' | 'attractive' | 'amiable' | 'dear' | 'wide' | 'happy' | 'fresh' | 'august' | '17-' | 'astonishing' | 'noble' | 'poignant' | 'gentle' | 'wise' | 'cultivated' | 'unparalleled' | 'much' | 'own' | 'unhappy' | 'own' | 'eventual' | 'small' | 'elemental' | 'i' | 'first' | 'i' | 'broken' | 'unhappy' | 'such' | 'weakened' | 'many' | 'tranquil' | 'necessary' | 'dark' | 'various' | 'i' | 'intimate' | 'little' | 'i' | 'unfashioned' | 'such' | 'weak' | 'faulty' | 'noble' | 'human' | 'expressive' | 'silent' | 'wonderful' | 'double' | 'celestial' | 'fastidious' | 'only' | 'fit' | 'extraordinary' | 'wonderful' | 'i' | 'other' | 'i' | 'intuitive' | 'quick' | 'never-failing' | 'varied' | 'soul-subduing' | 'august' | '17-' | 'great' | 'unparalleled' | 'i' | 'useful' | 'same' | 'same' | 'i' | 'apt' | 'marvellous' | 'many' | 'possible' | 'wild' | 'mysterious' | 'unacquainted' | 'ever-' | 'varied' | 'tale' | 'internal' | 'promised' | 'strong' | 'i' | 'useless' | 'i' | 'i' | 'irrevocably' | 'narrative' | 'next' | 'possible' | 'own' | 'own' | 'sympathy' | 'future' | 'i' | 'full-' | 'toned' | 'lustrous' | 'thin' | 'strange' | 'harrowing' | 'gallant' | 'genevese' | 'distinguished' | 'many' | 'several' | 'public' | 'indefatigable' | 'public' | 'early' | 'intimate' | 'numerous' | 'unbending' | 'same' | 'honourable' | 'unknown' | 'unfortunate' | 'false' | 'little' | 'effectual' | 'ten' | 'mean' | 'small' | 'sufficient' | 'respectable' | 'deep' | 'fast' | 'incapable' | 'little' | 'other' | 'caroline' | 'uncommon' | 'plain' | 'straw' | 'various' | 'sufficient' | 'several' | 'tenth' | 'last' | 'poor' | 'considerable' | 'devoted' | 'upright' | 'necessary' | 'former' | 'late-discovered' | 'tried' | 'inexpressible' | 'fair' | 'exotic' | 'pleasurable' | 'soft' | 'benevolent' | 'constant' | 'previous' | 'public' | 'pleasant' | 'weakened' | 'several' | 'only' | 'much' | 'other' | 'inexhaustible' | 'benevolent' | 'first' | 'helpless' | 'good' | 'deep' | 'active' | 'infant' | 'silken' | 'long' | 'only' | 'single' | 'old' | 'benevolent' | 'poor' | 'guardian' | 'poor' | 'singularly' | 'half-clothed' | 'hard' | 'scanty' | 'hungry' | 'different' | 'dark-eyed' | 'hardy' | 'little' | 'thin' | 'fair' | 'clear' | 'ample' | 'blue' | 'expressive' | 'distinct' | 'heaven-sent' | 'celestial' | 'peasant' | 'fixed' | 'lovely' | 'milanese' | 'german' | 'good' | 'married' | 'antique' | 'italy' | 'dark-leaved' | 'rustic' | 'sweet' | 'unfair' | 'such' | 'powerful' | 'elizabeth' | 'adored' | 'reverential' | 'previous' | 'pretty' | 'promised' | 'childish' | 'cherish' | 'own' | 'other' | 'mine' | 'concentrated' | 'capable' | 'intense' | 'smitten' | 'aerial' | 'majestic' | 'wondrous' | 'swiss' | 'sublime' | 'ample' | 'serious' | 'satisfied' | 'magnificent' | 'secret' | 'hidden' | 'akin' | 'second' | 'junior' | 'wandering' | 'native' | 'eastern' | 'considerable' | 'few' | 'indifferent' | 'general' | 'united' | 'singular' | 'own' | 'heroic' | 'many' | 'chivalrous' | 'holy' | 'human' | 'many' | 'other' | 'peculiarly' | 'fortunate' | 'filial' | 'violent' | 'childish' | 'eager' | 'various' | 'outward' | 'inner' | 'mysterious' | 'metaphysical' | 'physical' | 'meanwhile' | 'moral' | 'busy' | 'adventurous' | 'saintly' | 'elizabeth' | 'shrine-dedicated' | 'peaceful' | 'soft' | 'sweet' | 'celestial' | 'own' | 'noble' | 'thoughtful' | 'full' | 'adventurous' | 'real' | 'good' | 'i' | 'exquisite' | 'bright' | 'extensive' | 'gloomy' | 'narrow' | 'early' | 'insensible' | 'ignoble' | 'forgotten' | 'natural' | 'i' | 'thirteen' | 'wonderful' | 'new' | 'dear' | 'sad' | 'modern' | 'chimerical' | 'former' | 'real' | 'practical' | 'such' | 'agrippa' | 'former' | 'possible' | 'fatal' | 'first' | 'whole' | 'wild' | 'few' | 'fervent' | 'intense' | 'wonderful' | 'modern' | 'unsatisfied' | 'sir' | 'isaac' | 'great' | 'unexplored' | 'natural' | 'boys' | 'same' | 'untaught' | 'practical' | 'learned' | 'immortal' | 'final' | 'secondary' | 'tertiary' | 'unknown' | 'human' | 'strange' | 'such' | 'eighteenth' | 'great' | 'self-taught' | 'favourite' | 'scientific' | 'thirst' | 'new' | 'latter' | 'undivided' | 'inferior' | 'human' | 'invulnerable' | 'violent' | 'only' | 'favourite' | 'unsuccessful' | 'own' | 'exploded' | 'unadept' | 'multifarious' | 'ardent' | 'childish' | 'current' | 'fifteen' | 'old' | 'violent' | 'terrible' | 'frightful' | 'various' | 'i' | 'sudden' | 'old' | 'beautiful' | 'blasted' | 'next' | 'singular' | 'unacquainted' | 'obvious' | 'great' | 'natural' | 'new' | 'shade' | 'accustomed' | 'engaged' | 'despicable' | 'subject' | 'early' | 'former' | 'natural' | 'abortive' | 'would-be' | 'real' | 'worthy' | 'such' | 'slight' | 'i' | 'miraculous' | 'immediate' | 'guardian' | 'last' | 'ready' | 'unusual' | 'strong' | 'good' | 'ineffectual' | 'potent' | 'immutable' | 'terrible' | 'seventeen' | 'necessary' | 'other' | 'native' | 'early' | 'first' | 'future' | 'severe' | 'illness' | 'many' | 'watchful' | 'fatal' | 'third' | 'alarming' | 'medical' | 'future' | 'happy' | 'dearest' | 'irreparable' | 'long' | 'own' | 'beloved' | 'familiar' | 'dear' | 'first' | 'actual' | 'rude' | 'dear' | 'dead' | 'fortunate' | 'akin' | 'new' | 'alarm' | 'unwilling' | 'sweet' | 'own' | 'clerval' | 'last' | 'fellow' | 'narrow-minded' | 'liberal' | 'little' | 'i' | 'animated' | 'firm' | 'miserable' | 'other' | 'persuade' | 'other' | 'last' | 'feminine' | 'melancholy' | 'amiable' | 'mutual' | 'i' | 'own' | 'own' | 'domestic' | 'invincible' | 'new' | 'old' | 'familiar' | 'such' | 'hard' | 'other' | 'human' | 'sufficient' | 'many' | 'other' | 'long' | 'high' | 'white' | 'solitary' | 'next' | 'principal' | 'evil' | 'omnipotent' | 'reluctant' | 'natural' | 'uncouth' | 'several' | 'different' | 'natural' | 'principal' | 'such' | 'affirmative' | 'mxperiod' | 'utterly' | 'exploded' | 'useless' | 'good' | 'enough' | 'old' | 'musty' | 'ancient' | 'i' | 'enlightened' | 'scientific' | 'dear' | 'several' | 'natural' | 'following' | 'natural' | 'general' | 'mxperiod' | 'disappointed' | 'inclined' | 'little' | 'squat' | 'gruff' | 'repulsive' | 'philosophical' | 'early' | 'content' | 'modern' | 'natural' | 'extreme' | 'such' | 'recent' | 'forgotten' | 'modern' | 'natural' | 'different' | 'such' | 'grand' | 'little' | 'worth' | 'such' | 'first' | 'chiefly' | 'principal' | 'new' | 'i' | 'little' | 'fellow' | 'i' | 'fifty' | 'aspect' | 'few' | 'black' | 'short' | 'remarkably' | 'various' | 'different' | 'distinguished' | 'cursory' | 'present' | 'many' | 'elementary' | 'few' | 'panegyric' | 'modern' | 'ancient' | 'modern' | 'little' | 'crucible' | 'new' | 'unlimited' | 'invisible' | 'own' | 'such' | 'such' | 'palpable' | 'various' | 'much' | 'new' | 'unknown' | 'unfold' | 'internal' | 'i' | 'ancient' | 'natural' | 'same' | 'private' | 'mild' | 'attractive' | 'public' | 'certain' | 'own' | 'same' | 'former' | 'little' | 'indefatigable' | 'modern' | 'new' | 'connected' | 'great' | 'solid' | 'modern' | 'due' | 'ashamed' | 'intended' | 'happy' | 'mxperiod' | 'natural' | 'peculiar' | 'same' | 'other' | 'sorry' | 'human' | 'petty' | 'natural' | 'various' | 'own' | 'memorable' | 'natural' | 'comprehensive' | 'sole' | 'i' | 'full' | 'great' | 'real' | 'true' | 'repulsive' | 'valuable' | 'mxperiod' | 'true' | 'good' | 'abstruse' | 'clear' | 'facile' | 'first' | 'uncertain' | 'ardent' | 'eager' | 'i' | 'rapid' | 'cornelius' | 'agrippa' | 'heartfelt' | 'other' | 'scientific' | 'continual' | 'moderate' | 'great' | 'great' | 'esteem' | 'natural' | 'conducive' | 'i' | 'native' | 'protracted' | 'human' | 'animal' | 'bold' | 'many' | 'natural' | 'supernatural' | 'irksome' | 'intolerable' | 'sufficient' | 'natural' | 'human' | 'supernatural' | 'insupportable' | 'human' | 'fine' | 'i' | 'sudden' | 'brilliant' | 'wondrous' | 'simple' | 'dizzy' | 'many' | 'same' | 'secret' | 'true' | 'distinct' | 'probable' | 'incredible' | 'i' | 'capable' | 'lifeless' | 'first' | 'much' | 'painful' | 'gratifying' | 'great' | 'overwhelming' | 'magic' | 'dead' | 'ineffectual' | 'i' | 'i' | 'unguarded' | 'ardent' | 'infallible' | 'dangerous' | 'much' | 'native' | 'long' | 'inconceivable' | 'first' | 'much' | 'first' | 'complete' | 'wonderful' | 'adequate' | 'arduous' | 'last' | 'imperfect' | 'present' | 'future' | 'human' | 'great' | 'contrary' | 'first' | 'gigantic' | 'large' | 'first' | 'dark' | 'new' | 'many' | 'happy' | 'excellent' | 'lifeless' | 'impossible' | 'i' | 'unremitting' | 'next' | 'next' | 'unrelaxed' | 'breathless' | 'secret' | 'unhallowed' | 'tremble' | 'frantic' | 'renewed' | 'unnatural' | 'old' | 'charnel-' | 'tremendous' | 'human' | 'solitary' | 'other' | 'filthy' | 'slaughter-' | 'many' | 'human' | 'beautiful' | 'plentiful' | 'luxuriant' | 'insensible' | 'same' | 'many' | 'pleased' | 'i' | 'other' | 'irresistible' | 'great' | 'unjust' | 'convinced' | 'free' | 'human' | 'peaceful' | 'transitory' | 'simple' | 'unlawful' | 'human' | 'domestic' | 'i' | 'interesting' | 'supreme' | 'i' | 'other' | 'unwholesome' | 'favourite' | 'slow' | 'i' | 'nervous' | 'painful' | 'fellow' | 'guilty' | 'i' | 'purpose' | 'incipient' | 'complete' | 'dreary' | 'i' | 'lifeless' | 'half-extinguished' | 'dull' | 'yellow' | 'open' | 'convulsive' | 'delineate' | 'such' | 'infinite' | 'beautiful' | 'great' | 'yellow' | 'lustrous' | 'black' | 'pearly' | 'horrid' | 'same' | 'dun-white' | 'shrivelled' | 'straight' | 'black' | 'different' | 'changeable' | 'human' | 'sole' | 'breathless' | 'unable' | 'long' | 'unable' | 'length' | 'few' | 'i' | 'i' | 'saw' | 'first' | 'livid' | 'i' | 'dead' | 'cold' | 'yellow' | 'i' | 'miserable' | 'demoniacal' | 'hideous' | 'capable' | 'such' | 'pulse' | 'extreme' | 'pleasant' | 'rapid' | 'complete' | 'white' | 'sixth' | 'quick' | 'i' | 'black' | 'comfortless' | 'i' | 'clear' | 'irregular' | 'lonely' | 'frightful' | '[' | 'ancient' | 'i' | 'various' | 'i' | 'other' | 'i' | 'swiss' | 'dear' | 'glad' | 'fortunate' | 'dear' | 'first' | 'many' | 'serene' | 'cordial' | 'clerval' | 'mutual' | 'own' | 'good' | 'great' | 'necessary' | 'noble' | 'i' | 'incredulous' | 'last' | 'constant' | 'unwearied' | 'same' | 'dutch' | 'i' | 'greek' | 'happy' | 'little' | 'uneasy' | 'i' | 'little' | 'dear' | 'short' | 'full' | 'thin' | 'pale' | 'several' | 'sufficient' | 'i' | 'free' | 'quick' | 'alive' | 'few' | 'own' | 'cold' | 'open' | 'other' | 'empty' | 'hideous' | 'great' | 'good' | 'unable' | 'joy' | 'flesh' | 'pulse' | 'unable' | 'single' | 'same' | 'unusual' | 'unrestrained' | 'heartless' | 'dear' | 'ill' | 'i' | 'dreaded' | 'poor' | 'such' | 'lifeless' | 'long' | 'long' | 'nervous' | 'several' | 'only' | 'wretched' | 'attentive' | 'unbounded' | 'unremitting' | 'disturbed' | 'same' | 'uncommon' | 'terrible' | 'slow' | 'frequent' | 'i' | 'first' | 'capable' | 'outward' | 'young' | 'short' | 'i' | 'cheerful' | 'fatal' | 'good' | 'whole' | 'sick' | 'such' | 'good' | 'happy' | 'own' | 'ill' | 'uneasy' | 'long' | 'dear' | 'first' | 'dear' | 'dear' | 'present' | 'glad' | 'i' | 'following' | 'own' | 'ill' | 'ill' | 'constant' | 'dear' | 'sufficient' | 'forbidden' | 'dear' | 'necessary' | 'long' | 'able' | 'i' | 'mercenary' | 'old' | 'poor' | 'own' | 'happy' | 'cheerful' | 'vigorous' | 'pleased' | 'sixteen' | 'full' | 'desirous' | 'true' | 'swiss' | 'foreign' | 'pleased' | 'military' | 'distant' | 'odious' | 'open' | 'i' | 'idler' | 'little' | 'dear' | 'blue' | 'snow-clad' | 'same' | 'immutable' | 'trifling' | 'happy' | 'little' | 'few' | 'third' | 'strange' | 'illxperiod' | 'twelve' | 'republican' | 'great' | 'several' | 'poor' | 'despised' | 'refined' | 'moral' | 'same' | 'fortunate' | 'human' | 'great' | 'ill' | 'same' | 'frank-hearted' | 'happy' | 'great' | 'grateful' | 'little' | 'gay' | 'many' | 'much' | 'own' | 'poor' | 'anxious' | 'poor' | 'ill' | 'other' | 'neglected' | 'roman' | 'few' | 'poor' | 'remarkable' | 'poor' | 'unkindness' | 'much' | 'perpetual' | 'madame' | 'first' | 'first' | 'cold' | 'las' | 'clever' | 'gentle' | 'dear' | 'few' | 'dear' | 'little' | 'i' | 'tall' | 'sweet' | 'blue' | 'dark' | 'little' | 'rosy' | 'little' | 'louisa' | 'little' | 'dear' | 'i' | 'wish' | 'little' | 'good' | 'pretty' | 'miss' | 'approaching' | 'young' | 'ugly' | 'mxperiod' | 'rich' | 'last' | 'favourite' | 'louis' | 'several' | 'lively' | 'pretty' | 'much' | 'dear' | 'i' | 'thousand' | 'many' | 'grateful' | 'i' | 'elizabeth' | 'dear' | 'i' | 'able' | 'first' | 'several' | 'rough' | 'fatal' | 'natural' | 'nervous' | 'astonishing' | 'real' | 'slow' | 'cruel' | 'quick' | 'total' | 'general' | 'surprised' | 'i' | 'present' | 'docile' | 'insupportable' | 'harsh' | 'benevolent' | 'mxperiod' | 'i' | 'true' | 'few' | 'mxperiod' | 'modest' | 'excellent' | 'young' | 'young' | 'mxperiod' | 'young' | 'short' | 'natural' | 'literary' | 'complete' | 'oriental' | 'inglorious' | 'persian' | 'arabic' | 'same' | 'former' | 'great' | 'only' | 'critical' | 'other' | 'temporary' | 'other' | 'warm' | 'fair' | 'own' | 'different' | 'heroical' | 'latter' | 'several' | 'impassable' | 'native' | 'beloved' | 'strange' | 'pedestrian' | 'i' | 'personal' | 'inhabited' | 'favourite' | 'native' | 'additional' | 'salubrious' | 'natural' | 'fellow-' | 'unsocial' | 'cheerful' | 'excellent' | 'own' | 'selfish' | 'same' | 'happy' | 'few' | 'happy' | 'inanimate' | 'delightful' | 'serene' | 'verdant' | 'present' | 'divine' | 'invincible' | 'full' | 'persian' | 'arabic' | 'wonderful' | 'other' | 'favourite' | 'great' | 'sunday' | 'appeared' | 'happy' | 'own' | 'high' | 'unbridled' | 'following' | 'dear' | 'few' | 'cruel' | 'happy' | 'glad' | 'contrary' | 'callous' | 'long' | 'absent' | 'i' | 'woeful' | 'impossible' | 'horrible' | 'dead' | 'sweet' | 'gentle' | 'gay' | 'last' | 'thursday' | 'warm' | 'serene' | 'usual' | 'dusk' | 'enquired' | 'long' | 'sweet' | 'extreme' | 'anguish' | 'lovely' | 'active' | 'visible' | 'secret' | 'earnest' | 'first' | 'extreme' | 'same' | 'valuable' | 'unremitted' | 'beloved' | 'unhappy' | 'additional' | 'dear' | 'thank' | 'miserable' | 'alphonse' | 'i' | 'first' | 'new' | 'dear' | 'unhappy' | 'dear' | 'irreparable' | 'few' | 'poor' | 'bright' | 'joyous' | 'young' | 'untimely' | 'radiant' | 'poor' | 'little' | 'gentle' | 'miserable' | 'clerval' | 'melancholy' | 'first' | 'loved' | 'sorrowing' | 'i' | 'native' | 'familiar' | 'altered' | 'sudden' | 'thousand' | 'little' | 'other' | 'decisive' | 'tremble' | 'unable' | 'painful' | 'native' | 'black' | 'bright' | 'mont' | 'i' | 'dear' | 'own' | 'beautiful' | 'clear' | 'blue' | 'i' | 'i' | 'tedious' | 'preliminary' | 'comparative' | 'i' | 'beloved' | 'native' | 'thy' | 'thy' | 'i' | 'nearer' | 'vast' | 'dim' | 'wretched' | 'human' | 'single' | 'hundredth' | 'anguish' | 'dark' | 'serene' | 'unable' | 'poor' | 'short' | 'mont' | 'beautiful' | 'low' | 'large' | 'terrific' | 'vivid' | 'vast' | 'instant' | 'various' | 'violent' | 'peaked' | 'beautiful' | 'terrific' | 'i' | 'hasty' | 'noble' | 'dear' | 'thy' | 'funeral' | 'thy' | 'gigantic' | 'hideous' | 'filthy' | 'i' | 'i' | 'convinced' | 'human' | 'fair' | 'mere' | 'irresistible' | 'i' | 'perpendicular' | 'impenetrable' | 'whole' | 'own' | 'first' | 'depraved' | 'anguish' | 'cold' | 'wet' | 'open' | 'busy' | 'such' | 'own' | 'own' | 'loose' | 'dear' | 'open' | 'first' | 'i' | 'instant' | 'inaccessible' | 'nervous' | 'tale' | 'improbable' | 'other' | 'strange' | 'capable' | 'silent' | 'usual' | 'indelible' | 'i' | 'same' | 'last' | 'embraced' | 'venerable' | 'historical' | 'dead' | 'rustic' | 'cheek' | 'arrive' | 'i' | 'joyous' | 'delighted' | 'revive' | 'poor' | 'self-' | 'poor' | 'unrestrained' | 'mortal' | 'desolated' | 'new' | 'terrible' | 'wretched' | 'good' | 'impossible' | 'free' | 'last' | 'first' | 'amiable' | 'capable' | 'frightful' | 'poor' | 'poor' | 'first' | 'several' | 'own' | 'confused' | 'i' | 'poor' | 'several' | 'poor' | 'great' | 'extreme' | 'strange' | 'poor' | 'good' | 'innocent' | 'instant' | 'unhappiness' | 'mournful' | 'other' | 'good' | 'poor' | 'i' | 'ignorant' | 'much' | 'dear' | 'innocent' | 'god' | 'guilty' | 'i' | 'own' | 'circumstantial' | 'strong' | 'loose' | 'last' | 'childish' | 'same' | 'same' | 'full' | 'dear' | 'poor' | 'guiltless' | 'safe' | 'own' | 'hard' | 'poor' | 'sure' | 'happy' | 'sad' | 'little' | 'innocent' | 'fear' | 'generous' | 'else' | 'i' | 'impossible' | 'innocent' | 'few' | 'sad' | 'eleven' | 'wretched' | 'living' | 'lawless' | 'fellow' | 'full' | 'other' | 'possessed' | 'happy' | 'ignominious' | 'thousand' | 'guilty' | 'absent' | 'calm' | 'beautiful' | 'confident' | 'tremble' | 'sorrowful' | 'utter' | 'several' | 'several' | 'strange' | 'such' | 'market-woman' | 'murdered' | 'confused' | 'unintelligible' | 'violent' | 'several' | 'faltering' | 'same' | 'audible' | 'variable' | 'i' | 'innocent' | 'i' | 'simple' | 'favourable' | 'doubtful' | 'suspicious' | 'several' | 'several' | 'unwilling' | 'few' | 'surprising' | 'poor' | 'uncertain' | 'unhappy' | 'utter' | 'left' | 'wicked' | 'i' | 'i' | 'i' | 'beg' | 'few' | 'several' | 'many' | 'guilty' | 'timorous' | 'unwilling' | 'last' | 'excellent' | 'irreproachable' | 'unhappy' | 'i' | 'fellow' | 'pretended' | 'i' | 'same' | 'amiable' | 'human' | 'last' | 'own' | 'tedious' | 'dead' | 'acted' | 'affectionate' | 'own' | 'i' | 'perfect' | 'such' | 'much' | 'elizabeths' | 'powerful' | 'generous' | 'poor' | 'public' | 'renewed' | 'elizabeth' | 'own' | 'extreme' | 'whole' | 'minute' | 'hellish' | 'popular' | 'unhappy' | 'equal' | 'unmingled' | 'fatal' | 'black' | 'experienced' | 'adequate' | 'heart-sickening' | 'criminal' | 'circumstantial' | 'decisive' | 'strange' | 'unexpected' | 'whole' | 'innocent' | 'guilty' | 'dire' | 'poor' | 'firmness' | 'human' | 'mild' | 'incapable' | 'poor' | 'own' | 'guilty' | 'gloomy' | 'farther' | 'last' | 'i' | 'wretched' | 'miserable' | 'i' | 'wicked' | 'poor' | 'innocent' | 'i' | 'false' | 'dear' | 'own' | 'other' | 'heaven' | 'forgive' | 'i' | 'last' | 'i' | 'obdurate' | 'dear' | 'evil' | 'i' | 'miserable' | 'sweet' | 'blessed' | 'capable' | 'dear' | 'happy' | 'ignominy' | 'forgive' | 'dear' | 'horrible' | 'past' | 'sad' | 'bitter' | 'i' | 'dear' | 'horrid' | 'poor' | 'awful' | 'such' | 'deep' | 'bitter' | 'inmost' | 'dear' | 'guilty' | 'convinced' | 'thank' | 'last' | 'sweet' | 'half' | 'i' | 'poor' | 'i' | 'true' | 'never-dying' | 'unhappy' | 'fair' | 'anguish' | 'several' | 'great' | 'i' | 'wish' | 'bitter' | 'half-suppressed' | 'sweet' | 'last' | 'live' | 'happy' | 'elizabeths' | 'heart-rending' | 'saintly' | 'indignant' | 'cold' | 'purposed' | 'i' | 'wretched' | 'own' | 'deep' | 'voiceless' | 'late' | 'thrice-accursed' | 'unhappy' | 'last' | 'funeral' | 'early' | 'much-loved' | 'vital' | 'dear' | 'countless' | 'happy' | 'inexorable' | 'sad' | 'prophetic' | 'i' | 'first' | 'unhallowed' | 'painful' | 'human' | 'quick' | 'dead' | 'alive' | 'evil' | 'mischief' | 'horrible' | 'benevolent' | 'useful' | 'fellow' | 'past' | 'new' | 'intense' | 'such' | 'first' | 'only' | 'dark' | 'deathlike' | 'serene' | 'guiltless' | 'excessive' | 'daily' | 'fit' | 'good' | 'inapplicable' | 'first' | 'other' | 'belrive' | 'agreeable' | 'ten' | 'geneva' | 'irksome' | 'free' | 'many' | 'own' | 'own' | 'miserable' | 'only' | 'unquiet' | 'beautiful' | 'silent' | 'i' | 'loose' | 'extinguished' | 'unalterable' | 'daily' | 'new' | 'obscure' | 'i' | 'i' | 'inflamed' | 'utmost' | 'recent' | 'sad' | 'ordinary' | 'dead' | 'eternal' | 'blasted' | 'happy' | 'future' | 'first' | 'dear' | 'miserable' | 'i' | 'ancient' | 'imaginary' | 'remote' | 'familiar' | 'i' | 'unjust' | 'poor' | 'guilty' | 'depraved' | 'human' | 'few' | 'own' | 'human' | 'innocent' | 'i' | 'innocent' | 'same' | 'certain' | 'i' | 'free' | 'same' | 'true' | 'read' | 'anguish' | 'wretched' | 'tremble' | 'dear' | 'banish' | 'dark' | 'happy' | 'true' | 'other' | 'native' | 'such' | 'other' | 'fortune' | 'i' | 'very' | 'ineffectual' | 'beneficial' | 'wounded' | 'untrodden' | 'whirlwind' | 'intolerable' | 'near' | 'such' | 'ephemeral' | 'human' | 'first' | 'i' | 'sure-footed' | 'liable' | 'fine' | 'miserable' | 'immense' | 'terrific' | 'magnificent' | 'astonishing' | 'impetuous' | 'singular' | 'white' | 'shining' | 'wonderful' | 'sublime' | 'beautiful' | 'high' | 'snowy' | 'immediate' | 'ruined' | 'fertile' | 'immense' | 'magnificent' | 'tremendous' | 'long-lost' | 'new' | 'object' | 'lighthearted' | 'maternal' | 'kindly' | 'i' | 'desperate' | 'extreme' | 'short' | 'pallid' | 'noisy' | 'same' | 'keen' | 'sleep' | 'following' | 'slow' | 'abrupt' | 'vast' | 'few' | 'shattered' | 'solemn' | 'glorious' | 'imperial' | 'vast' | 'accumulated' | 'silent' | 'immutable' | 'anon' | 'torn' | 'sublime' | 'magnificent' | 'capable' | 'last' | 'grand' | 'unstained' | 'next' | 'soul-' | 'dark' | 'thick' | 'mighty' | 'misty' | 'tremendous' | 'ever-moving' | 'sublime' | 'obscure' | 'awful' | 'majestic' | 'solitary' | 'precipitous' | 'continual' | 'short' | 'desolate' | 'thousand' | 'broken' | 'other' | 'dangerous' | 'such' | 'loud' | 'sufficient' | 'tall' | 'luxuriant' | 'sombre' | 'valley' | 'vast' | 'thick' | 'opposite' | 'uniform' | 'melancholy' | 'superior' | 'apparent' | 'necessary' | 'free' | 'conceive' | 'same' | 'free' | 'i' | 'uneven' | 'troubled' | 'low' | 'i' | 'opposite' | 'bare' | 'perpendicular' | 'opposite' | 'mont' | 'awful' | 'wonderful' | 'stupendous' | 'vast' | 'aerial' | 'sorrowful' | 'ye' | 'narrow' | 'superhuman' | 'cold' | 'sight' | 'tremendous' | 'abhorred' | 'bitter' | 'unearthly' | 'horrible' | 'human' | 'i' | 'first' | 'furious' | 'fierce' | 'miserable' | 'vile' | 'miserable' | 'murdered' | 'miserable' | 'living' | 'thy' | 'thou' | 'dissoluble' | 'abhorred' | 'thou' | 'mild' | 'thy' | 'calm' | 'i' | 'vent' | 'anguish' | 'dear' | 'powerful' | 'superior' | 'supple' | 'thy' | 'mild' | 'natural' | 'thou' | 'thy' | 'frankenstein' | 'equitable' | 'other' | 'trample' | 'thy' | 'thy' | 'due' | 'thy' | 'thy' | 'i' | 'bliss' | 'benevolent' | 'good' | 'happy' | 'virtuous' | 'favourable' | 'thy' | 'thy' | 'i' | 'fellow' | 'dreary' | 'many' | 'only' | 'bleak' | 'fellow' | 'miserable' | 'great' | 'i' | 'hear' | 'guilty' | 'human' | 'own' | 'satisfied' | 'own' | 'eternal' | 'i' | 'i' | 'miserable' | 'light' | 'wretched' | 'detested' | 'i' | 'hated' | 'thou' | 'thy' | 'i' | 'long' | 'strange' | 'fine' | 'high' | 'i' | 'harmless' | 'fellow' | 'own' | 'full' | 'various' | 'first' | 'happy' | 'opposite' | 'heavy' | 'depressed' | 'odious' | 'considerable' | 'i' | 'original' | 'indistinct' | 'strange' | 'same' | 'long' | 'various' | 'i' | 'i' | 'great' | 'opaque' | 'impervious' | 'light' | 'oppressive' | 'i' | 'i' | 'i' | 'dormant' | 'dark' | 'i' | 'desolate' | 'cold' | 'insufficient' | 'poor' | 'helpless' | 'miserable' | 'gentle' | 'light' | 'radiant' | 'cold' | 'huge' | 'distinct' | 'i' | 'light' | 'innumerable' | 'various' | 'only' | 'bright' | 'several' | 'other' | 'saw' | 'clear' | 'delighted' | 'pleasant' | 'little' | 'winged' | 'radiant' | 'i' | 'pleasant' | 'unable' | 'i' | 'own' | 'uncouth' | 'inarticulate' | 'lessened' | 'distinct' | 'additional' | 'accustomed' | 'right' | 'harsh' | 'sweet' | 'live' | 'strange' | 'i' | 'same' | 'such' | 'opposite' | 'i' | 'wet' | 'inflamed' | 'various' | 'great' | 'plentiful' | 'dry' | 'wet' | 'i' | 'first' | 'gentle' | 'i' | 'useful' | 'same' | 'live' | 'scarce' | 'whole' | 'few' | 'few' | 'several' | 'serious' | 'i' | 'open' | 'great' | 'uniform' | 'white' | 'cold' | 'small' | 'new' | 'great' | 'open' | 'i' | 'old' | 'capable' | 'different' | 'dry' | 'i' | 'i' | 'white' | 'several' | 'miraculous' | 'whole' | 'many' | 'other' | 'open' | 'low' | 'wretched' | 'pleasant' | 'late' | 'dearly' | 'low' | 'dry' | 'innumerable' | 'agreeable' | 'happy' | 'miserable' | 'i' | 'adjacent' | 'clear' | 'open' | 'such' | 'light' | 'sufficient' | 'clean' | 'coarse' | 'little' | 'raised' | 'dry' | 'warm' | 'bleak' | 'former' | 'rain-dropping' | 'dank' | 'little' | 'small' | 'i' | 'young' | 'young' | 'gentle' | 'coarse' | 'only' | 'fair' | 'patient' | 'sad' | 'young' | 'few' | 'i' | 'young' | 'small' | 'imperceptible' | 'small' | 'visible' | 'whitewashed' | 'clean' | 'small' | 'old' | 'disconsolate' | 'young' | 'old' | 'lovely' | 'poor' | 'beautiful' | 'silver' | 'benevolent' | 'gentle' | 'sweet' | 'mournful' | 'drew' | 'amiable' | 'old' | 'few' | 'fair' | 'such' | 'overpowering' | 'such' | 'experienced' | 'unable' | 'young' | 'girl' | 'large' | 'pleased' | 'young' | 'young' | 'old' | 'pensive' | 'cheerful' | 'young' | 'old' | 'few' | 'old' | 'silver' | 'slight' | 'graceful' | 'old' | 'different' | 'extreme' | 'human' | 'young' | 'various' | 'old' | 'monotonous' | 'old' | 'instrument' | 'aloud' | 'short' | 'retired' | 'i' | 'gentle' | 'barbarous' | 'present' | 'next' | 'young' | 'first' | 'same' | 'young' | 'various' | 'laborious' | 'old' | 'venerable' | 'little' | 'happy' | 'young' | 'such' | 'lovely' | 'miserable' | 'strange' | 'solitary' | 'gentle' | 'unhappy' | 'delightful' | 'such' | 'delicious' | 'excellent' | 'first' | 'unable' | 'perpetual' | 'many' | 'first' | 'enigmatic' | 'considerable' | 'amiable' | 'distressing' | 'little' | 'i' | 'several' | 'old' | 'own' | 'neighbouring' | 'great' | 'i' | 'several' | 'i' | 'first' | 'young' | 'great' | 'loud' | 'produced' | 'acquainted' | 'quick' | 'apparent' | 'visible' | 'unable' | 'great' | 'several' | 'familiar' | 'several' | 'old' | 'able' | 'several' | 'other' | 'able' | 'such' | 'good' | 'unhappy' | 'i' | 'gentle' | 'unhappy' | 'i' | 'depressed' | 'i' | 'few' | 'human' | 'other' | 'harsh' | 'superior' | 'old' | 'cheerful' | 'unperceived' | 'cheerful' | 'unpractised' | 'sorrowful' | 'cheerful' | 'old' | 'innumerable' | 'slight' | 'amiable' | 'first' | 'little' | 'white' | 'perpetual' | 'invisible' | 'neighbouring' | 'forth' | 'other' | 'little' | 'old' | 'first' | 'many' | 'same' | 'possible' | 'whole' | 'i' | 'i' | 'first' | 'acquainted' | 'perfect' | 'delicate' | 'transparent' | 'first' | 'unable' | 'i' | 'fatal' | 'miserable' | 'i' | 'black' | 'employed' | 'heart-moving' | 'i' | 'coarse' | 'several' | 'new' | 'old' | 'high' | 'pleasant' | 'uniform' | 'various' | 'i' | 'star-light' | 'i' | 'own' | 'necessary' | 'invisible' | 'i' | 'good' | 'wonderful' | 'active' | 'lovely' | 'inquisitive' | 'miserable' | 'sad' | 'foolish' | 'i' | 'absent' | 'venerable' | 'gentle' | 'excellent' | 'superior' | 'gentle' | 'fresh' | 'harsh' | 'soft' | 'i' | 'such' | 'i' | 'tolerable' | 'gentle' | 'rude' | 'pleasant' | 'genial' | 'various' | 'cheerful' | 'happy' | 'happy' | 'fit' | 'bleak' | 'damp' | 'unwholesome' | 'tranquil' | 'bright' | 'moving' | 'fine' | 'beautiful' | 'thousand' | 'thousand' | 'old' | 'melancholy' | 'cheerful' | 'old' | 'country-man' | 'dark' | 'thick' | 'black' | 'sweet' | 'musical' | 'i' | 'angelic' | 'raven' | 'black' | 'dark' | 'regular' | 'fair' | 'lovely' | 'ecstatic' | 'capable' | 'affected' | 'different' | 'few' | 'lovely' | 'sweet' | 'arabian' | 'young' | 'old' | 'affectionately' | 'i' | 'uttered' | 'own' | 'understood' | 'many' | 'happy' | 'ever-gentle' | 'lovely' | 'sorrowful' | 'i' | 'frequent' | 'same' | 'same' | 'first' | 'arabian' | 'good' | 'frequent' | 'lovely' | 'impossible' | 'next' | 'usual' | 'arabian' | 'old' | 'beautiful' | 'drew' | 'rich' | 'simple' | 'sweet' | 'wondrous' | 'old' | 'enraptured' | 'sole' | 'gay' | 'happy' | 'black' | 'green' | 'innumerable' | 'pale' | 'clear' | 'nocturnal' | 'extreme' | 'late' | 'early' | 'i' | 'same' | 'first' | 'close' | 'arabian' | 'little' | 'broken' | 'i' | 'wide' | 'volneys' | 'minute' | 'eastern' | 'cursory' | 'several' | 'present' | 'different' | 'i' | 'slothful' | 'stupendous' | 'mental' | 'wonderful' | 'early' | 'subsequent' | 'i' | 'american' | 'hapless' | 'original' | 'wonderful' | 'strange' | 'powerful' | 'virtuous' | 'vicious' | 'mere' | 'evil' | 'noble' | 'great' | 'virtuous' | 'sensitive' | 'vicious' | 'many' | 'abject' | 'blind' | 'long' | 'i' | 'new' | 'strange' | 'human' | 'immense' | 'squalid' | 'noble' | 'fellow' | 'high' | 'unsullied' | 'rare' | 'few' | 'i' | 'ignorant' | 'loathsome' | 'same' | 'agile' | 'i' | 'native' | 'strange' | 'good' | 'gentle' | 'amiable' | 'unseen' | 'unknown' | 'gentle' | 'animated' | 'arabian' | 'mild' | 'old' | 'lively' | 'loved' | 'miserable' | 'unhappy' | 'other' | 'impressed' | 'i' | 'lively' | 'precious' | 'various' | 'mutual' | 'infant' | 'past' | 'blind' | 'such' | 'various' | 'additional' | 'i' | 'innocent' | 'half-painful' | 'old' | 'de' | 'good' | 'many' | 'few' | 'large' | 'luxurious' | 'moderate' | 'turkish' | 'many' | 'obnoxious' | 'flagrant' | 'indignant' | 'present' | 'uncontrollable' | 'many' | 'fruitless' | 'unguarded' | 'unfortunate' | 'barbarous' | 'lovely' | 'lively' | 'own' | 'turk' | 'delicate' | 'ensuing' | 'several' | 'lovely' | 'old' | 'french' | 'ardent' | 'intended' | 'same' | 'own' | 'i' | 'present' | 'related' | 'christian' | 'young' | 'high' | 'enthusiastic' | 'female' | 'infantile' | 'ill-suited' | 'grand' | 'noble' | 'christian' | 'previous' | 'distant' | 'many' | 'former' | 'obscure' | 'mont' | 'favourable' | 'turkish' | 'arabian' | 'native' | 'youthful' | 'other' | 'christian' | 'italian' | 'necessary' | 'gentle' | 'noisome' | 'free' | 'torture' | 'favourable' | 'lovely' | 'arabian' | 'perpetual' | 'native' | 'miserable' | 'treacherous' | 'such' | 'unheard-of' | 'good' | 'future' | 'such' | 'miserable' | 'beloved' | 'bitter' | 'irreparable' | 'arabian' | 'new' | 'native' | 'generous' | 'tyrannical' | 'few' | 'french' | 'few' | 'confidential' | 'own' | 'abhorrent' | 'averse' | 'leghorn' | 'common' | 'illxperiod' | 'devoted' | 'poor' | 'unacquainted' | 'utterly' | 'good' | 'italian' | 'such' | 'beloved' | 'social' | 'upon' | 'distant' | 'present' | 'busy' | 'many' | 'admirable' | 'same' | 'accustomed' | 'own' | 'leathern' | 'several' | 'extreme' | 'ordinary' | 'new' | 'many' | 'many' | 'obscure' | 'never-ending' | 'gentle' | 'domestic' | 'lofty' | 'alive' | 'own' | 'i' | 'deep' | 'i' | 'own' | 'similar' | 'same' | 'i' | 'dependent' | 'free' | 'hideous' | 'gigantic' | 'unable' | 'first' | 'ancient' | 'different' | 'high' | 'own' | 'past' | 'many' | 'understanding' | 'confused' | 'wide' | 'large' | 'only' | 'human' | 'new' | 'i' | 'public' | 'i' | 'peaceable' | 'patriarchal' | 'first' | 'young' | 'different' | 'excited' | 'different' | 'other' | 'true' | 'omnipotent' | 'capable' | 'several' | 'own' | 'other' | 'different' | 'other' | 'perfect' | 'happy' | 'prosperous' | 'especial' | 'superior' | 'many' | 'bitter' | 'first' | 'able' | 'domestic' | 'accursed' | 'whole' | 'odious' | 'loathsome' | 'own' | 'i' | 'hateful' | 'accursed' | 'hideous' | 'own' | 'filthy' | 'horrid' | 'solitary' | 'abhorred' | 'amiable' | 'benevolent' | 'acquainted' | 'personal' | 'monstrous' | 'dread' | 'understanding' | 'much' | 'unwilling' | 'few' | 'several' | 'rich' | 'happy' | 'serene' | 'peaceful' | 'mine' | 'tumultuous' | 'wretched' | 'true' | 'i' | 'inconstant' | 'few' | 'i' | 'amiable' | 'lovely' | 'angelic' | 'adams' | 'bleak' | 'lovely' | 'chief' | 'gay' | 'other' | 'i' | 'amiable' | 'sweet' | 'utmost' | 'poor' | 'true' | 'little' | 'entire' | 'directed' | 'many' | 'old' | 'unnatural' | 'chief' | 'terrible' | 'good' | 'old' | 'red' | 'diffused' | 'long' | 'old' | 'own' | 'several' | 'sweet' | 'sweet' | 'mournful' | 'first' | 'quick' | 'neighbouring' | 'excellent' | 'fresh' | 'old' | 'little' | 'few' | 'i' | 'afraid' | 'difficult' | 'warmth' | 'i' | 'precious' | 'i' | 'old' | 'french' | 'french' | 'french' | 'deserted' | 'i' | 'amiable' | 'full' | 'i' | 'friendless' | 'unfortunate' | 'obvious' | 'full' | 'brotherly' | 'good' | 'amiable' | 'excellent' | 'good' | 'hitherto' | 'degree' | 'beneficial' | 'fatal' | 'detestable' | 'unfortunate' | 'blameless' | 'many' | 'overwhelming' | 'unknown' | 'many' | 'daily' | 'i' | 'old' | 'i' | 'sincere' | 'poor' | 'true' | 'serviceable' | 'human' | 'excellent' | 'i' | 'generous' | 'fellow' | 'heaven' | 'criminal' | 'unfortunate' | 'grateful' | 'present' | 'firmness' | 'remaining' | 'old' | 'i' | 'great' | 'old' | 'unable' | 'supernatural' | 'bitter' | 'general' | 'unperceived' | 'fearful' | 'wild' | 'miserable' | 'cold' | 'sweet' | 'universal' | 'enjoyment' | 'unsympathized' | 'bodily' | 'damp' | 'sick' | 'kindness' | 'insupportable' | 'impossible' | 'i' | 'thick' | 'pleasant' | 'pure' | 'hasty' | 'apparent' | 'interested' | 'old' | 'irretrievable' | 'much' | 'old' | 'profound' | 'peaceful' | 'horrible' | 'enraged' | 'well-' | 'known' | 'silent' | 'accustomed' | 'high' | 'dreadful' | 'dark' | 'violent' | 'surprised' | 'i' | 'unusual' | 'unfair' | 'i' | 'utterly' | 'useless' | 'replied' | 'dreadful' | 'i' | 'few' | 'stupid' | 'only' | 'first' | 'strive' | 'i' | 'i' | 'mild' | 'gentle' | 'exquisite' | 'arabian' | 'unable' | 'human' | 'inanimate' | 'forced' | 'fierce' | 'dry' | 'devoted' | 'western' | 'loud' | 'horrible' | 'relative' | 'different' | 'native' | 'southwesterly' | 'only' | 'ask' | 'single' | 'human' | 'heartless' | 'other' | 'human' | 'intense' | 'late' | 'resided' | 'human' | 'frozen' | 'hard' | 'few' | 'wide' | 'green' | 'especial' | 'deep' | 'first' | 'dead' | 'revive' | 'happy' | 'soft' | 'humid' | 'such' | 'i' | 'deep' | 'rapid' | 'many' | 'fresh' | 'i' | 'hid' | 'young' | 'precipitous' | 'rapid' | 'extreme' | 'current' | 'rustic' | 'i' | 'increased' | 'human' | 'miserable' | 'few' | 'eternal' | 'miserable' | 'oppressive' | 'daily' | 'deep' | 'deadly' | 'such' | 'anguish' | 'bright' | 'gentle' | 'unhappy' | 'gentle' | 'stupendous' | 'slight' | 'beautiful' | 'i' | 'little' | 'unprejudiced' | 'short' | 'desolate' | 'peopled' | 'impulse' | 'i' | 'shrill' | 'hideous' | 'mxperiod' | 'eternal' | 'first' | 'dead' | 'hellish' | 'invulnerable' | 'other' | 'lovely' | 'few' | 'dark' | 'deep' | 'lovely' | 'such' | 'beautiful' | 'such' | 'secluded' | 'empty' | 'young' | 'beautiful' | 'agreeable' | 'i' | 'joy-imparting' | 'whispered' | 'thy' | 'thine' | 'darkened' | 'sanguinary' | 'i' | 'i' | 'miserable' | 'horrible' | 'same' | 'same' | 'perplexed' | 'unable' | 'full' | 'necessary' | 'i' | 'latter' | 'peaceful' | 'miserable' | 'own' | 'like' | 'joint' | 'wrong' | 'i' | 'content' | 'malicious' | 'miserable' | 'i' | 'own' | 'human' | 'insurmountable' | 'mine' | 'abject' | 'i' | 'inextinguishable' | 'finish' | 'i' | 'fiendish' | 'horrible' | 'human' | 'detrimental' | 'felt' | 'whole' | 'i' | 'reasonable' | 'moderate' | 'i' | 'hideous' | 'small' | 'true' | 'attached' | 'happy' | 'harmless' | 'free' | 'happy' | 'gratitude' | 'i' | 'i' | 'possible' | 'fine' | 'other' | 'human' | 'vast' | 'south' | 'sufficient' | 'same' | 'content' | 'same' | 'dried' | 'i' | 'peaceful' | 'human' | 'favourable' | 'only' | 'evil' | 'inconstant' | 'i' | 'i' | 'evil' | 'i' | 'strange' | 'wish' | 'filthy' | 'small' | 'harmless' | 'i' | 'ignorant' | 'forced' | 'i' | 'equal' | 'sensitive' | 'i' | 'various' | 'i' | 'subsequent' | 'inaccessible' | 'possessing' | 'long' | 'due' | 'fellow' | 'i' | 'solemn' | 'other' | 'i' | 'i' | 'blue' | 'unutterable' | 'ready' | 'i' | 'fearful' | 'whole' | 'heavy' | 'little' | 'advanced' | 'broken' | 'wonderful' | 'strange' | 'pity' | 'crush' | 'nought' | 'wild' | 'miserable' | 'eternal' | 'i' | 'dull' | 'own' | 'excess' | 'agony' | 'i' | 'wild' | 'intense' | 'i' | 'right' | 'enjoy' | 'abhorred' | 'such' | 'other' | 'disappointed' | 'unable' | 'several' | 'laborious' | 'english' | 'first' | 'immediate' | 'much' | 'unhappy' | 'perfect' | 'whole' | 'little' | 'silent' | 'listless' | 'fresh' | 'bright' | 'cheerful' | 'happy' | 'dear' | 'former' | 'unhappy' | 'i' | 'useless' | 'treble' | 'i' | 'dear' | 'domestic' | 'other' | 'blind' | 'dear' | 'future' | 'dear' | 'happy' | 'present' | 'strong' | 'i' | 'immediate' | 'unfortunate' | 'recent' | 'everyday' | 'early' | 'future' | 'i' | 'serious' | 'i' | 'incapable' | 'immediate' | 'i' | 'devoted' | 'deadly' | 'long' | 'indispensable' | 'present' | 'latter' | 'desired' | 'dilatory' | 'unsatisfactory' | 'insurmountable' | 'loathsome' | 'familiar' | 'fearful' | 'aware' | 'unearthly' | 'true' | 'glad' | 'capable' | 'such' | 'varied' | 'own' | 'few' | 'paternal' | 'interfered' | 'i' | 'many' | 'i' | 'abhorred' | 'understood' | 'unparalleled' | 'miserable' | 'unconscious' | 'unprotected' | 'dreadful' | 'inasmuch' | 'whole' | 'present' | 'latter' | 'native' | 'own' | 'acquiesced' | 'thousand' | 'sedulous' | 'tearful' | 'silent' | 'bitter' | 'chemical' | 'dreary' | 'many' | 'beautiful' | 'majestic' | 'listless' | 'many' | 'great' | 'alive' | 'new' | 'happy' | 'new' | 'i' | 'dear' | 'sorrowful' | 'gloomy' | 'golden' | 'amused' | 'miserable' | 'many' | 'willowy' | 'several' | 'beautiful' | 'high' | 'steep' | 'beautiful' | 'many' | 'ruined' | 'black' | 'high' | 'inaccessible' | 'tremendous' | 'dark' | 'sudden' | 'green' | 'populous' | 'i' | 'gloomy' | 'pleased' | 'i' | 'i' | 'beautiful' | 'own' | 'black' | 'impenetrable' | 'gloomy' | 'mournful' | 'verdant' | 'gay' | 'great' | 'majestic' | 'strange' | 'i' | 'lovely' | 'inaccessible' | 'own' | 'wild' | 'enthusiastic' | 'ardent' | 'wondrous' | 'world-minded' | 'human' | 'sufficient' | 'eager' | 'external' | 'tall' | 'deep' | 'gloomy' | '[' | 'wordsworths' | 'tintern' | 'gentle' | 'lovely' | 'replete' | 'wrought' | 'unhappy' | 'ineffectual' | 'slight' | 'unexampled' | 'contrary' | 'gentle' | 'beautiful' | 'few' | 'clear' | 'latter' | 'white' | 'new' | 'flat' | 'fertile' | 'spanish' | 'greenwich' | 'numerous' | 'stxperiod' | 'english' | 'present' | 'several' | 'wonderful' | 'celebrated' | 'secondary' | 'necessary' | 'distinguished' | 'natural' | 'inexpressible' | 'visited' | 'irksome' | 'transitory' | 'busy' | 'uninteresting' | 'joyous' | 'insurmountable' | 'fellow' | 'anguish' | 'former' | 'inquisitive' | 'anxious' | 'inexhaustible' | 'long' | 'various' | 'european' | 'busy' | 'sorrowful' | 'dejected' | 'much' | 'possible' | 'natural' | 'new' | 'undisturbed' | 'bitter' | 'necessary' | 'new' | 'single' | 'extreme' | 'i' | 'native' | 'sufficient' | 'north' | 'clerval' | 'wondrous' | 'chosen' | 'february' | 'great' | 'chemical' | 'obscure' | 'northern' | 'few' | 'beautiful' | 'new' | 'majestic' | 'faithful' | 'whole' | 'unfortunate' | 'amiable' | 'peculiar' | 'imaginary' | 'sufficient' | 'ancient' | 'magnificent' | 'lovely' | 'exquisite' | 'spread' | 'placid' | 'majestic' | 'aged' | 'peaceful' | 'youthful' | 'beautiful' | 'excellent' | 'sublime' | 'i' | 'blasted' | 'miserable' | 'wrecked' | 'pitiable' | 'intolerable' | 'considerable' | 'animating' | 'english' | 'little' | 'successive' | 'illustrious' | 'miserable' | 'self' | 'instant' | 'free' | 'lofty' | 'hopeless' | 'miserable' | 'next' | 'green' | 'distant' | 'white' | 'piny' | 'native' | 'wondrous' | 'little' | 'natural' | 'same' | 'latter' | 'tremble' | 'terrible' | 'fancy' | 'swiss' | 'little' | 'northern' | 'rocky' | 'familiar' | 'dear' | 'own' | 'new' | 'other' | 'various' | 'own' | 'sorry' | 'repose' | 'feverish' | 'miserable' | 'i' | 'i' | 'fancied' | 'great' | 'guiltless' | 'horrible' | 'mortal' | 'languid' | 'unfortunate' | 'latter' | 'pleasing' | 'new' | 'romantic' | 'delightful' | 'arthurs' | 'impatient' | 'stxperiod' | 'good' | 'i' | 'rendezvous' | 'absent' | 'i' | 'short' | 'i' | 'lighter' | 'congenial' | 'own' | 'bent' | 'solitary' | 'dear' | 'remote' | 'northern' | 'high' | 'barren' | 'few' | 'miserable' | 'scraggy' | 'miserable' | 'such' | 'fresh' | 'whole' | 'miserable' | 'miserable' | 'unplastered' | 'squalid' | 'i' | 'ungazed' | 'unmolested' | 'much' | 'i' | 'stony' | 'monotonous' | 'ever-changing' | 'i' | 'different' | 'appalling' | 'scattered' | 'fair' | 'gentle' | 'lively' | 'giant' | 'horrible' | 'irksome' | 'several' | 'other' | 'i' | 'filthy' | 'first' | 'enthusiastic' | 'i' | 'cold' | 'detestable' | 'instant' | 'actual' | 'unequal' | 'restless' | 'nervous' | 'i' | 'much' | 'fellow' | 'mean' | 'advanced' | 'tremulous' | 'eager' | 'trust' | 'obscure' | 'sufficient' | 'idle' | 'unremitting' | 'i' | 'same' | 'unparalleled' | 'ignorant' | 'ten' | 'malignant' | 'own' | 'other' | 'own' | 'female' | 'superior' | 'fresh' | 'own' | 'new' | 'first' | 'precarious' | 'full' | 'i' | 'own' | 'fiendish' | 'first' | 'future' | 'own' | 'whole' | 'human' | 'wide' | 'desert' | 'utmost' | 'future' | 'devilish' | 'solemn' | 'own' | 'own' | 'terrible' | 'several' | 'motionless' | 'quiet' | 'few' | 'conscious' | 'extreme' | 'few' | 'mine' | 'frightful' | 'endeavour' | 'impending' | 'i' | 'smothered' | 'i' | 'willow' | 'many' | 'incalculable' | 'equal' | 'unworthy' | 'miserable' | 'hateful' | 'past' | 'cool' | 'loose' | 'happy' | 'i' | 'other' | 'powerful' | 'inexorable' | 'wedding-night' | 'death-warrant' | 'sure' | 'safe' | 'ith' | 'few' | 'silent' | 'next' | 'insatiate' | 'wedding-night' | 'satisfy' | 'extinguish' | 'i' | 'beloved' | 'endless' | 'first' | 'many' | 'bitter' | 'horrid' | 'last' | 'insuperable' | 'fellow' | 'wish' | 'such' | 'stole' | 'true' | 'uninterrupted' | 'sudden' | 'i' | 'loved' | 'daemon' | 'miserable' | 'i' | 'deep' | 'i' | 'human' | 'distinct' | 'oppressive' | 'ravenous' | 'oaten' | 'fishing-boat' | 'indian' | 'much' | 'solitary' | 'odious' | 'i' | 'next' | 'sufficient' | 'half-finished' | 'human' | 'great' | 'complete' | 'regarded' | 'gloomy' | 'first' | 'voluntary' | 'own' | 'first' | 'atrocious' | 'different' | 'little' | 'solitary' | 'few' | 'dreadful' | 'fellow' | 'clear' | 'thick' | 'i' | 'clouded' | 'such' | 'agreeable' | 'direct' | 'obscure' | 'short' | 'i' | 'long' | 'i' | 'high' | 'little' | 'northeast' | 'only' | 'i' | 'few' | 'little' | 'wide' | 'immeasurable' | 'many' | 'other' | 'fulfilled' | 'i' | 'sanguinary' | 'merciless' | 'despairing' | 'frightful' | 'i' | 'gentle' | 'free' | 'heavy' | 'sick' | 'able' | 'high' | 'spent' | 'dreadful' | 'several' | 'sudden' | 'warm' | 'mutable' | 'strange' | 'wild' | 'rocky' | 'civilized' | 'small' | 'extreme' | 'procure' | 'i' | 'small' | 'neat' | 'good' | 'unexpected' | 'several' | 'other' | 'slight' | 'i' | 'english' | 'good' | 'hoarse' | 'i' | 'angry' | 'i' | 'irish' | 'strange' | 'ill-looking' | 'free' | 'sir' | 'free' | 'honest' | 'last' | 'innocent' | 'ready' | 'i' | 'politic' | 'physical' | 'conscious' | 'little' | 'few' | 'frightful' | 'proper' | 'old' | 'calm' | 'mild' | 'daniel' | 'ten' | 'strong' | 'dark' | 'creek' | 'first' | 'dead' | 'first' | 'wet' | 'old' | 'endeavoured' | 'handsome' | 'young' | 'black' | 'first' | 'keen' | 'unfavourable' | 'daniel' | 'single' | 'short' | 'few' | 'same' | 'only' | 'apothecary' | 'several' | 'other' | 'strong' | 'probable' | 'many' | 'same' | 'likely' | 'extreme' | 'several' | 'other' | 'strange' | 'eventful' | 'several' | 'tranquil' | 'i' | 'terrible' | 'lifeless' | 'murderous' | 'other' | 'human' | 'strong' | 'i' | 'frightful' | 'entreated' | 'i' | 'native' | 'understood' | 'bitter' | 'sufficient' | 'other' | 'miserable' | 'many' | 'only' | 'many' | 'youthful' | 'next' | 'i' | 'many' | 'wretched' | 'miserable' | 'great' | 'barred' | 'old' | 'hired' | 'bad' | 'hard' | 'rude' | 'entire' | 'english' | 'same' | 'feeble' | 'i' | 'true' | 'alive' | 'old' | 'i' | 'dead' | 'i' | 'safe' | 'same' | 'languid' | 'unable' | 'whole' | 'doubted' | 'true' | 'distinct' | 'i' | 'feverish' | 'gentle' | 'dear' | 'prescribed' | 'old' | 'utter' | 'visible' | 'first' | 'second' | 'interested' | 'first' | 'extreme' | 'true' | 'human' | 'present' | 'miserable' | 'short' | 'long' | 'open' | 'seek' | 'replete' | 'guilty' | 'innocent' | 'poor' | 'such' | 'mrxperiod' | 'sympathy' | 'french' | 'i' | 'comfortable' | 'i' | 'whole' | 'capable' | 'little' | 'strange' | 'melancholy' | 'doubtless' | 'criminal' | 'least' | 'strange' | 'miserable' | 'evil' | 'unfortunate' | 'strange' | 'surprising' | 'first' | 'unaccountable' | 'fiend' | 'considerable' | 'several' | 'ill' | 'unfit' | 'thousand' | 'horrible' | 'new' | 'mrxperiod' | 'new' | 'hellish' | 'troubled' | 'severe' | 'young' | 'welcome' | 'such' | 'violent' | 'anguish' | 'surprised' | 'former' | 'momentary' | 'former' | 'safe' | 'elizabeth' | 'barred' | 'poor' | 'unfortunate' | 'great' | 'weak' | 'horrible' | 'i' | 'precarious' | 'necessary' | 'much' | 'good' | 'gloomy' | 'black' | 'dangerous' | 'miserable' | 'mighty' | 'anguish' | 'distant' | 'present' | 'sat' | 'mighty' | 'weak' | 'continual' | 'hundred' | 'criminal' | 'grand' | 'criminal' | 'fresh' | 'native' | 'hateful' | 'happy' | 'frightful' | 'expressive' | 'long' | 'black' | 'deep' | 'melancholy' | 'beloved' | 'blue' | 'rapid' | 'dear' | 'early' | 'general' | 'anguish' | 'unceasing' | 'dreadful' | 'selfish' | 'necessary' | 'loved' | 'unfailing' | 'monstrous' | 'monstrous' | 'fearful' | 'shattered' | 'human' | 'mere' | 'wasted' | 'such' | 'fair' | 'irish' | 'i' | 'pulse' | 'feverish' | 'past' | 'frightful' | 'whole' | 'quiet' | 'mad' | 'hideous' | 'unable' | 'i' | 'small' | 'necessary' | 'various' | 'double' | 'usual' | 'thousand' | 'present' | 'irresistible' | 'disastrous' | 'calm' | 'susceptible' | 'i' | 'indefatigable' | 'erroneous' | 'incurable' | 'fellow' | 'repulsive' | 'angelic' | 'celestial' | 'i' | 'unhallowed' | 'various' | 'little' | 'human' | 'such' | 'poor' | 'unhappy' | 'innocent' | 'same' | 'same' | 'continual' | 'mad' | 'secret' | 'unnatural' | 'impatient' | 'silent' | 'fatal' | 'mysterious' | 'unbounded' | 'dear' | 'i' | 'such' | 'mad' | 'i' | 'innocent' | 'thousand' | 'own' | 'whole' | 'human' | 'much' | 'possible' | 'i' | 'calm' | 'same' | 'incoherent' | 'own' | 'utmost' | 'imperious' | 'whole' | 'few' | 'following' | 'dear' | 'formidable' | 'poor' | 'much' | 'ill' | 'anxious' | 'void' | 'i' | 'same' | 'many' | 'previous' | 'necessary' | 'distant' | 'possible' | 'favourite' | 'young' | 'affectionate' | 'i' | 'dear' | 'valued' | 'lively' | 'other' | 'intimate' | 'i' | 'mutual' | 'simple' | 'several' | 'last' | 'unhappy' | 'false' | 'i' | 'i' | 'airy' | 'constant' | 'own' | 'miserable' | 'own' | 'free' | 'miserable' | 'happy' | 'satisfied' | 'next' | 'i' | 'other' | 'other' | 'lavenza' | 'wedding-night' | 'such' | 'daemon' | 'deadly' | 'victorious' | 'free' | 'such' | 'turned' | 'free' | 'such' | 'softened' | 'paradisiacal' | 'i' | 'happy' | 'inevitable' | 'few' | 'other' | 'dreadful' | 'wedding-night' | 'immediate' | 'adversarys' | 'single' | 'i' | 'calm' | 'affectionate' | 'i' | 'beloved' | 'little' | 'idle' | 'i' | 'dreadful' | 'sweet' | 'perfect' | 'i' | 'elizabeths' | 'sweet' | 'warm' | 'emaciated' | 'feverish' | 'heavenly' | 'soft' | 'fit' | 'miserable' | 'i' | 'real' | 'furious' | 'burnt' | 'low' | 'gentle' | 'human' | 'guilty' | 'father' | 'immediate' | 'silent' | 'other' | 'i' | 'dear' | 'heavy' | 'small' | 'bound' | 'mutual' | 'new' | 'dear' | 'such' | 'wedding-night' | 'i' | 'threatened' | 'unavoidable' | 'cheerful' | 'ten' | 'great' | 'hellish' | 'fiendish' | 'native' | 'miserable' | 'magic' | 'real' | 'own' | 'prophetic' | 'everwatchful' | 'nicer' | 'placid' | 'little' | 'certain' | 'tangible' | 'airy' | 'deep' | 'everlasting' | 'congratulatory' | 'smiling' | 'own' | 'austrian' | 'small' | 'first' | 'beautiful' | 'carried' | 'happy' | 'melancholy' | 'following' | 'large' | 'evian' | 'following' | 'fair' | 'favourable' | 'nuptial' | 'last' | 'hot' | 'mont' | 'pleasant' | 'beautiful' | 'opposite' | 'dark' | 'native' | 'insurmountable' | 'sorrowful' | 'quiet' | 'happy' | 'dear' | 'i' | 'lively' | 'much' | 'sinister' | 'fast' | 'obscure' | 'interesting' | 'innumerable' | 'clear' | 'divine' | 'happy' | 'serene' | 'nature' | 'melancholy' | 'few' | 'eastern' | 'evian' | 'amazing' | 'light' | 'soft' | 'pleasant' | 'delightful' | 'short' | 'lovely' | 'black' | 'south' | 'great' | 'busy' | 'heavy' | 'anxious' | 'watchful' | 'right' | 'own' | 'observed' | 'fearful' | 'dear' | 'safe' | 'dreadful' | 'dreadful' | 'fearful' | 'adversary' | 'i' | 'fortunate' | 'dreadful' | 'i' | 'whole' | 'great' | 'i' | 'i' | 'same' | 'relaxed' | 'obstinate' | 'hated' | 'lose' | 'dear' | 'worthy' | 'first' | 'thrown' | 'rushed' | 'deadly' | 'elizabeth' | 'murderous' | 'pale' | 'yellow' | 'i' | 'open' | 'hideous' | 'abhorred' | 'fiendish' | 'several' | 'different' | 'short' | 'drunken' | 'last' | 'utter' | 'conscious' | 'beloved' | 'i' | 'sad' | 'distinct' | 'various' | 'only' | 'safe' | 'dead' | 'possible' | 'unfavourable' | 'mental' | 'overflowing' | 'incapable' | 'gloomy' | 'arose' | 'familiar' | 'fish' | 'few' | 'painful' | 'human' | 'great' | 'sudden' | 'future' | 'miserable' | 'frightful' | 'single' | 'last' | 'overwhelming' | 'tedious' | 'own' | 'few' | 'hideous' | 'former' | 'i' | 'excellent' | 'venerable' | 'old' | 'few' | 'unable' | 'few' | 'only' | 'i' | 'pleasant' | 'i' | 'clear' | 'mad' | 'many' | 'i' | 'solitary' | 'useless' | 'same' | 'past' | 'miserable' | 'great' | 'signal' | 'cursed' | 'useless' | 'criminal' | 'i' | 'whole' | 'i' | 'strange' | 'wonderful' | 'i' | 'impressive' | 'calm' | 'own' | 'related' | 'firmness' | 'invective' | 'first' | 'incredulous' | 'i' | 'attentive' | 'interested' | 'unmingled' | 'whole' | 'i' | 'considerable' | 'own' | 'half' | 'supernatural' | 'whole' | 'i' | 'i' | 'narrative' | 'i' | 'i' | 'impracticable' | 'proper' | 'little' | 'i' | 'i' | 'only' | 'unspeakable' | 'loose' | 'i' | 'i' | 'old' | 'other' | 'i' | 'ignorant' | 'thy' | 'i' | 'angry' | 'disturbed' | 'other' | 'present' | 'voluntary' | 'first' | 'geneva' | 'happy' | 'dear' | 'hateful' | 'few' | 'vast' | 'barbarous' | 'wont' | 'i' | 'i' | 'many' | 'alive' | 'die' | 'first' | 'fiendish' | 'unsettled' | 'many' | 'silent' | 'dark' | 'solemn' | 'uninterested' | 'deep' | 'first' | 'excited' | 'dead' | 'weary' | 'i' | 'sacred' | 'deep' | 'eternal' | 'i' | 'o' | 'mortal' | 'dear' | 'green' | 'i' | 'dead' | 'cursed' | 'hellish' | 'murdered' | 'fiendish' | 'miserable' | 'well-known' | 'abhorred' | 'audible' | 'miserable' | 'satisfied' | 'broad' | 'full' | 'distorted' | 'mortal' | 'many' | 'slight' | 'blue' | 'strange' | 'black' | 'same' | 'tartary' | 'horrid' | 'huge' | 'white' | 'new' | 'agony' | 'cold' | 'eternal' | 'good' | 'insurmountable' | 'such' | 'dry' | 'slight' | 'few' | 'vanish' | 'other' | 'human' | 'wild' | 'small' | 'hateful' | 'sleep' | 'sleep' | 'miserable' | 'i' | 'beloved' | 'benevolent' | 'elizabeths' | 'clerval' | 'toilsome' | 'dear' | 'such' | 'mechanical' | 'unconscious' | 'ardent' | 'i' | 'legible' | 'complete' | 'everlasting' | 'cold' | 'impassive' | 'dead' | 'many' | 'hard' | 'miserable' | 'i' | 'miserable' | 'perish' | 'departed' | 'tedious' | 'horrible' | 'severe' | 'few' | 'hardy' | 'chief' | 'unabated' | 'immense' | 'utmost' | 'blue' | 'superior' | 'full' | 'inconceivable' | 'same' | 'daily' | 'new' | 'wretched' | 'accurate' | 'gigantic' | 'many' | 'solitary' | 'terrific' | 'numerous' | 'trained' | 'same' | 'horror-struck' | 'eternal' | 'temporary' | 'endless' | 'mountainous' | 'few' | 'genial' | 'sunny' | 'triumphant' | 'other' | 'slight' | 'dead' | 'frozen' | 'plentiful' | 'many' | 'eternal' | 'continual' | 'wrung' | 'bitter' | 'poor' | 'incredible' | 'sloping' | 'dark' | 'wild' | 'distorted' | 'well-known' | 'warm' | 'i' | 'aloud' | 'dead' | 'plentiful' | 'necessary' | 'irksome' | 'visible' | 'lose' | 'short' | 'i' | 'ominous' | 'terrific' | 'tremendous' | 'overwhelming' | 'few' | 'tumultuous' | 'scattered' | 'lessening' | 'hideous' | 'many' | 'appalling' | 'several' | 'north' | 'i' | 'infinite' | 'multiplied' | 'dread' | 'unfulfilled' | 'much' | 'i' | 'selfish' | 'dead' | 'accumulated' | 'survive' | 'dark' | 'eloquent' | 'persuasive' | 'hellish' | 'full' | 'fiendlike' | 'wretched' | 'august' | 'strange' | 'terrific' | 'sudden' | 'uttered' | 'replete' | 'anguish' | 'fine' | 'lovely' | 'infinite' | 'horrible' | 'tranquil' | 'i' | 'narrative' | 'such' | 'i' | 'impenetrable' | 'mad' | 'senseless' | 'demoniacal' | 'own' | 'many' | 'mutilated' | 'own' | 'elevated' | 'gentle' | 'i' | 'wish' | 'miserable' | 'only' | 'shattered' | 'remote' | 'faith' | 'interesting' | 'own' | 'general' | 'unbounded' | 'quick' | 'piercing' | 'forcible' | 'hear' | 'pathetic' | 'glorious' | 'noble' | 'own' | 'great' | 'profound' | 'illustrious' | 'criminal' | 'useless' | 'useful' | 'fellow' | 'sensitive' | 'rational' | 'common' | 'eternal' | 'vivid' | 'intense' | 'incomplete' | 'high' | 'lofty' | 'i' | 'high' | 'admirable' | 'i' | 'i' | 'miserable' | 'new' | 'fresh' | 'superior' | 'certain' | 'later' | 'infantine' | 'certain' | 'such' | 'other' | 'false' | 'i' | 'own' | 'soothing' | 'dead' | 'such' | 'i' | 'high' | 'extensive' | 'fellow' | 'such' | 'beloved' | 'i' | 'ignorant' | 'dear' | 'terrible' | 'mad' | 'beloved' | 'heart-felt' | 'terrible' | 'own' | 'lovely' | 'happy' | 'heaven' | 'unfortunate' | 'same' | 'other' | 'cheerful' | 'vast' | 'mole-' | 'transitory' | 'such' | 'uncommon' | 'probable' | 'imminent' | 'excessive' | 'many' | 'unfortunate' | 'feverish' | 'apparent' | 'last' | 'i' | 'wan' | 'limbs' | 'other' | 'possible' | 'free' | 'rash' | 'fresh' | 'solemn' | 'free' | 'i' | 'first' | 'silent' | 'enough' | 'momentary' | 'glorious' | 'glorious' | 'smooth' | 'southern' | 'full' | 'new' | 'glorious' | 'honourable' | 'first' | 'first' | 'terrific' | 'content' | 'enough' | 'cold' | 'poor' | 'warm' | 'steady' | 'such' | 'mutable' | 'different' | 'full' | 'lofty' | 'unable' | 'i' | 'contrary' | 'die' | 'unfulfilled' | 'i' | 'such' | 'present' | 'ignorant' | 'disappointed' | 'i' | 'past' | 'bitter' | 'dear' | 'i' | 'imminent' | 'passive' | 'chief' | 'unfortunate' | 'such' | 'south' | 'free' | 'native' | 'tumultuous' | 'loud' | 'long-continued' | 'weak' | 'sufficient' | 'great' | 'extinct' | 'unable' | 'undisturbed' | 'many' | 'patient' | 'i' | 'feeble' | 'come' | 'last' | 'ardent' | 'adversary' | 'last' | 'past' | 'blamable' | 'enthusiastic' | 'rational' | 'own' | 'first' | 'unparalleled' | 'destruction' | 'exquisite' | 'miserable' | 'other' | 'mine' | 'selfish' | 'vicious' | 'unfinished' | 'i' | 'little' | 'near' | 'right' | 'other' | 'i' | 'happy' | 'several' | 'dead' | 'seek' | 'avoid' | 'innocent' | 'unable' | 'gentle' | 'untimely' | 'glorious' | 'inadequate' | 'feeble' | 'i' | 'stir' | 'human' | 'good' | 'great' | 'i' | 'incomplete' | 'final' | 'wonderful' | 'ill-fated' | 'admirable' | 'gigantic' | 'uncouth' | 'long' | 'ragged' | 'vast' | 'apparent' | 'horrible' | 'such' | 'loathsome' | 'turning' | 'lifeless' | 'uncontrollable' | 'miserable' | 'frankenstein' | 'generous' | 'self-devoted' | 'cold' | 'first' | 'tremendous' | 'scaring' | 'unearthly' | 'wild' | 'incoherent' | 'superfluous' | 'diabolical' | 'dead' | 'ten-thousandth' | 'frightful' | 'susceptible' | 'such' | 'heart-broken' | 'overcome' | 'unspeakable' | 'own' | 'impotent' | 'bitter' | 'insatiable' | 'deadly' | 'impulse' | 'miserable' | 'anguish' | 'evil' | 'good' | 'demoniacal' | 'insatiable' | 'last' | 'first' | 'lifeless' | 'hypocritical' | 'accursed' | 'such' | 'i' | 'fellow' | 'whole' | 'bitter' | 'i' | 'satisfied' | 'i' | 'outward' | 'excellent' | 'capable' | 'high' | 'comparable' | 'i' | 'frightful' | 'same' | 'sublime' | 'transcendent' | 'malignant' | 'impotent' | 'i' | 'own' | 'ardent' | 'only' | 'virtuous' | 'immaculate' | 'miserable' | 'true' | 'other' | 'living' | 'select' | 'worthy' | 'irremediable' | 'white' | 'cold' | 'i' | 'i' | 'future' | 'complete' | 'own' | 'i' | 'slow' | 'northern' | 'funeral' | 'miserable' | 'curious' | 'unhallowed' | 'such' | 'i' | 'unsatisfied' | 'unquenched' | 'dead' | 'i' | 'only' | 'last' | 'thou' | 'alive' | 'unknown' | 'superior' | 'bitter' | 'sad' | 'solemn' | 'extinct' | 'funeral' | 'borne'\nWP -> 'what' | 'who' | 'whom' | 'whom' | 'who' | 'who' | 'who' | 'who' | 'what' | 'who' | 'what' | 'whom' | 'whom' | 'who' | 'who' | 'who' | 'whom' | 'what' | 'who' | 'who' | 'what' | 'what' | 'what' | 'who' | 'who' | 'what' | 'who' | 'who' | 'who' | 'what' | 'whom' | 'what' | 'what' | 'who' | 'who' | 'who' | 'whom' | 'who' | 'what' | 'whom' | 'whom' | 'whom' | 'whom' | 'who' | 'what' | 'whom' | 'what' | 'whom' | 'what' | 'who' | 'who' | 'who' | 'what' | 'who' | 'who' | 'who' | 'who' | 'who' | 'whom' | 'what' | 'whom' | 'whom' | 'whom' | 'what' | 'who' | 'who' | 'whom' | 'what' | 'what' | 'what' | 'whom' | 'what' | 'whom' | 'who' | 'whom' | 'who' | 'who' | 'who' | 'what' | 'whom' | 'who' | 'what' | 'who' | 'who' | 'what' | 'who' | 'who' | 'whom' | 'who' | 'who' | 'what' | 'what' | 'who' | 'who' | 'whom' | 'what' | 'whom' | 'what' | 'whom' | 'what' | 'who' | 'who' | 'who' | 'what' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'whom' | 'who' | 'who' | 'what' | 'who' | 'who' | 'whom' | 'who' | 'who' | 'what' | 'who' | 'who' | 'whom' | 'who' | 'what' | 'whom' | 'what' | 'who' | 'whom' | 'what' | 'whom' | 'whom' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'whom' | 'whom' | 'whom' | 'who' | 'whom' | 'who' | 'who' | 'what' | 'whom' | 'what' | 'whom' | 'whom' | 'who' | 'whom' | 'whom' | 'whom' | 'who' | 'what' | 'who' | 'who' | 'what' | 'who' | 'what' | 'who' | 'who' | 'what' | 'whom' | 'what' | 'who' | 'who' | 'who' | 'who' | 'what' | 'what' | 'what' | 'who' | 'who' | 'who' | 'who' | 'what' | 'whom' | 'what' | 'who' | 'what' | 'what' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'whom' | 'whom' | 'who' | 'what' | 'whom' | 'what' | 'who' | 'what' | 'what' | 'who' | 'what' | 'who' | 'who' | 'what' | 'what' | 'whom' | 'whom' | 'whom' | 'whom' | 'who' | 'who' | 'what' | 'who' | 'who' | 'what' | 'what' | 'whom' | 'who' | 'what' | 'who' | 'whom' | 'what' | 'who' | 'what' | 'whom' | 'who' | 'whom' | 'what' | 'what' | 'who' | 'who' | 'who' | 'what' | 'whom' | 'who' | 'what' | 'what' | 'what' | 'who' | 'who' | 'what' | 'who' | 'who' | 'who' | 'who' | 'what' | 'what' | 'what' | 'who' | 'whom' | 'what' | 'who' | 'who' | 'who' | 'who' | 'who' | 'whom' | 'what' | 'who' | 'whom' | 'whom' | 'what' | 'whom' | 'whom' | 'what' | 'who' | 'who' | 'who' | 'who' | 'who' | 'whom' | 'what' | 'what' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'what' | 'what' | 'what' | 'who' | 'what' | 'who' | 'what' | 'what' | 'who' | 'what' | 'what' | 'what' | 'what' | 'what' | 'whom' | 'who' | 'whom' | 'what' | 'what' | 'who' | 'what' | 'what' | 'what' | 'what' | 'what' | 'what' | 'whom' | 'what' | 'who' | 'what' | 'what' | 'whom' | 'who' | 'what' | 'whom' | 'whom' | 'whom' | 'whom' | 'who' | 'what' | 'what' | 'what' | 'whom' | 'what' | 'what' | 'who' | 'who' | 'whom' | 'what' | 'who' | 'what' | 'what' | 'whom' | 'what' | 'who' | 'whom' | 'what' | 'what' | 'who' | 'what' | 'who' | 'who' | 'who' | 'whom' | 'whom' | 'what' | 'who' | 'who' | 'who' | 'what' | 'what' | 'who' | 'who' | 'who' | 'who' | 'what' | 'who' | 'who' | 'who' | 'what' | 'what' | 'what' | 'what' | 'what' | 'what' | 'what' | 'what' | 'who' | 'what' | 'whom' | 'what' | 'what' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'who' | 'whom' | 'what'\nVBZ -> 'has' | 'is' | 'braces' | 'has' | 'gives' | 'is' | 'presents' | 'is' | 'attracts' | 'embarks' | 'elevates' | 'has' | 'i' | 'is' | 'is' | 'is' | 'is' | 'is' | 'prevents' | 'is' | 'passes' | 'is' | 'is' | 'is' | 'is' | 'i' | 'i' | 'i' | 'is' | 'is' | 'is' | 'is' | 'retains' | 'is' | 'is' | 'has' | 'owes' | 'is' | 'is' | 'is' | 'is' | 'attends' | 'renders' | 'is' | 'has' | 'promises' | 'is' | 'is' | 'is' | 'is' | 'is' | 'hurries' | 'is' | 'stars' | 'pours' | 'has' | 'is' | 'is' | 'performs' | 'does' | 'is' | 'i' | 'is' | 'gnashes' | 'oppresses' | 'is' | 'is' | 'relates' | 'has' | 'is' | 'appears' | 'enters' | 'excites' | 'is' | 'is' | 'speaks' | 'is' | 'is' | 'is' | 'has' | 'mans' | 'is' | 'does' | 'has' | 'has' | 'has' | 'is' | 'possesses' | 'elevates' | 'has' | 'i' | 'is' | 'is' | 'is' | 'is' | 'has' | 'is' | 'is' | 'has' | 'is' | 'has' | 'attempts' | 'relates' | 'is' | 'is' | 'is' | 'seems' | 'is' | 'presents' | 'is' | 'is' | 'proves' | 'has' | 'is' | 'plays' | 'is' | 'remains' | 'has' | 'faces' | 'is' | 'is' | 'works' | 'has' | 'mxperiod' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'pursues' | 'has' | 'does' | 'is' | 'is' | 'is' | 'believes' | 'aspires' | 'takes' | 'is' | 'i' | 'is' | 'has' | 'is' | 'is' | 'dreams' | 'turns' | 'knows' | 'i' | 'sprung' | 'has' | 'gives' | 'is' | 'is' | 'has' | 'agitates' | 'is' | 'is' | 'has' | 'is' | 'is' | 'has' | 'is' | 'writes' | 'is' | 'asks' | 'is' | 'is' | 'is' | 'looks' | 'is' | 'has' | 'has' | 'faces' | 'has' | 'is' | 'does' | 'does' | 'ariosto' | 'gives' | 'reminds' | 'is' | 'has' | 'is' | 'is' | 'smiles' | 'has' | 'is' | 'has' | 'has' | 'has' | 'is' | 'is' | 'is' | 'has' | 'is' | 'has' | 'is' | 'is' | 'wears' | 'is' | 'appears' | 'consumes' | 'faces' | 'is' | 'skims' | 'is' | 'is' | 'is' | 'weeps' | 'accuses' | 'has' | 'is' | 'sleeps' | 'is' | 'is' | 'covers' | 'knows' | 'evils' | 'degrees' | 'is' | 'mountains' | 'is' | 'lies' | 'is' | 'i' | 'bounds' | 'seems' | 'requires' | 'has' | 'is' | 'is' | 'is' | 'knows' | 'believes' | 'has' | 'leaves' | 'is' | 'says' | 'knows' | 'is' | 'is' | 'is' | 'fills' | 'is' | 'is' | 'is' | 'is' | 'is' | 'believes' | 'is' | 'knows' | 'appears' | 'is' | 'elizabeth' | 'is' | 'has' | 'has' | 'is' | 'is' | 'lies' | 'has' | 'is' | 'raises' | 'gives' | 'is' | 'is' | 'removes' | 'is' | 'passes' | 'has' | 'is' | 'bids' | 'is' | 'follows' | 'deprives' | 'is' | 'is' | 'is' | 'i' | 'has' | 'confirms' | 'escapes' | 'walks' | 'knows' | 'is' | 'makes' | 'overhangs' | 'is' | 'winds' | 'is' | 'faces' | 'is' | 'is' | 'is' | 'is' | 'stones' | 'is' | 'produces' | 'does' | 'renders' | 'blows' | 'has' | 'pollutes' | 'is' | 'is' | 'overlooks' | 'is' | 'is' | 'is' | 'i' | 'is' | 'is' | 'is' | 'implores' | 'i' | 'does' | 'is' | 'remains' | 'is' | 'is' | 'is' | 'descends' | 'rests' | 'is' | 'i' | 'i' | 'wants' | 'i' | 'i' | 'i' | 'sounds' | 'looks' | 'means' | 'smiles' | 'sounds' | 'i' | 'agatha' | 'hasten' | 'i' | 'dissipates' | 'sorrow' | 'is' | 'clings' | 'has' | 'means' | 'means' | 'is' | 'safie' | 'learnt' | 'subjects' | 'wants' | 'is' | 'bears' | 'is' | 'is' | 'is' | 'is' | 'is' | 'leaves' | 'is' | 'wants' | 'is' | 'is' | 'has' | 'is' | 'is' | 'is' | 'i' | 'is' | 'assures' | 'is' | 'rends' | 'is' | 'is' | 'i' | 'i' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'hers' | 'i' | 'pities' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'i' | 'is' | 'burns' | 'siroc' | 'is' | 'is' | 'i' | 'does' | 'gives' | 'is' | 'appears' | 'elizabeth' | 'is' | 'forth' | 'is' | 'is' | 'descends' | 'presents' | 'mountains' | 'pleases' | 'is' | 'overhangs' | 'has' | 'delights' | 'does' | 'is' | 'has' | 'has' | 'does' | 'is' | 'has' | 'creates' | 'i' | 'faces' | 'adorns' | 'flows' | 'is' | 'reflects' | 'is' | 'is' | 'has' | 'is' | 'is' | 'includes' | 'begins' | 'finds' | 'rests' | 'engages' | 'forsakes' | 'does' | 'is' | 'i' | 'is' | 'is' | 'is' | 'is' | 'remains' | 'gazes' | 'is' | 'shot' | 'images' | 'i' | 'is' | 'sank' | 'i' | 'is' | 'is' | 'is' | 'is' | 'is' | 'faces' | 'is' | 'is' | 'is' | 'i' | 'requires' | 'snatches' | 'thats' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'has' | 'is' | 'is' | 'is' | 'is' | 'does' | 'is' | 'seems' | 'is' | 'bears' | 'decides' | 'islands' | 'sometimes' | 'is' | 'is' | 'i' | 'has' | 'is' | 'renders' | 'is' | 'entertain' | 'is' | 'is' | 'has' | 'enjoys' | 'is' | 'remains' | 'is' | 'i' | 'is' | 'is' | 'is' | 'remains' | 'spoken' | 'is' | 'is' | 'is' | 'is' | 'sometimes' | 'lies' | 'appears' | 'i' | 'is' | 'agitates' | 'is' | 'is' | 'i' | 'is' | 'is' | 'is' | 'is' | 'has' | 'is' | 'remains' | 'objects' | 'i' | 'is' | 'is' | 'is' | 'is' | 'is' | 'appears' | 'has' | 'hovers' | 'has' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'exists' | 'does' | 'is' | 'torments' | 'has' | 'sometimes' | 'is' | 'is' | 'is' | 'i' | 'is' | 'is' | 'is' | 'curdles' | 'is' | 'has' | 'does' | 'has' | 'composes' | 'enjoys' | 'believes' | 'holds' | 'gives' | 'displays' | 'is' | 'relates' | 'is' | 'seems' | 'i' | 'serves' | 'repulses' | 'is' | 'friends' | 'fellows' | 'is' | 'is' | 'is' | 'endeavours' | 'reminds' | 'fills' | 'speaks' | 'rouses' | 'fills' | 'i' | 'has' | 'is' | 'is' | 'has' | 'is' | 'sinks' | 'requires' | 'is' | 'is' | 'is' | 'is' | 'requires' | 'is' | 'towards' | 'is' | 'is' | 'is' | 'is' | 'is' | 'blows' | 'is' | 'comes' | 'lie' | 'has' | 'hung' | 'is' | 'is' | 'does' | 'ask' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'is' | 'appears' | 'has' | 'has' | 'is' | 'becomes' | 'is' | 'is' | 'lies' | 'is' | 'is' | 'requires' | 'is' | 'affords' | 'is' | 'hadst' | 'thinks'\nDT -> 'no' | 'the' | 'an' | 'the' | 'the' | 'a' | 'this' | 'this' | 'the' | 'a' | 'those' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'some' | 'a' | 'a' | 'every' | 'the' | 'the' | 'the' | 'those' | 'a' | 'the' | 'the' | 'a' | 'this' | 'the' | 'a' | 'the' | 'a' | 'the' | 'these' | 'all' | 'this' | 'the' | 'a' | 'a' | 'an' | 'these' | 'the' | 'all' | 'the' | 'a' | 'the' | 'those' | 'the' | 'the' | 'all' | 'an' | 'these' | 'the' | 'an' | 'the' | 'a' | 'a' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'these' | 'a' | 'a' | 'these' | 'the' | 'those' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'a' | 'the' | 'an' | 'a' | 'a' | 'the' | 'the' | 'the' | 'some' | 'every' | 'some' | 'the' | 'a' | 'the' | 'all' | 'the' | 'this' | 'the' | 'the' | 'the' | 'that' | 'an' | 'the' | 'a' | 'a' | 'the' | 'no' | 'the' | 'no' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'those' | 'the' | 'the' | 'this' | 'all' | 'the' | 'a' | 'a' | 'those' | 'the' | 'the' | 'a' | 'no' | 'the' | 'no' | 'that' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'no' | 'a' | 'a' | 'a' | 'the' | 'a' | 'the' | 'a' | 'that' | 'the' | 'a' | 'the' | 'that' | 'the' | 'a' | 'these' | 'no' | 'the' | 'some' | 'the' | 'these' | 'a' | 'an' | 'the' | 'some' | 'the' | 'a' | 'this' | 'the' | 'a' | 'an' | 'the' | 'the' | 'this' | 'a' | 'the' | 'an' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'this' | 'some' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'another' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'a' | 'a' | 'those' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'no' | 'the' | 'a' | 'the' | 'that' | 'the' | 'a' | 'this' | 'a' | 'the' | 'a' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'some' | 'a' | 'this' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'those' | 'a' | 'no' | 'a' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'an' | 'these' | 'the' | 'all' | 'the' | 'a' | 'some' | 'the' | 'the' | 'every' | 'no' | 'some' | 'a' | 'a' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'any' | 'this' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'that' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'some' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'this' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'this' | 'some' | 'a' | 'an' | 'an' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'an' | 'the' | 'the' | 'the' | 'the' | 'some' | 'a' | 'a' | 'the' | 'this' | 'the' | 'a' | 'the' | 'the' | 'that' | 'these' | 'any' | 'a' | 'this' | 'the' | 'the' | 'the' | 'any' | 'the' | 'the' | 'a' | 'that' | 'this' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'any' | 'this' | 'the' | 'the' | 'the' | 'all' | 'a' | 'a' | 'no' | 'the' | 'a' | 'the' | 'the' | 'any' | 'every' | 'an' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'a' | 'this' | 'the' | 'a' | 'a' | 'the' | 'the' | 'no' | 'this' | 'a' | 'the' | 'no' | 'the' | 'the' | 'the' | 'every' | 'these' | 'the' | 'a' | 'a' | 'a' | 'a' | 'no' | 'the' | 'this' | 'the' | 'this' | 'the' | 'the' | 'this' | 'any' | 'an' | 'a' | 'a' | 'the' | 'this' | 'a' | 'a' | 'the' | 'the' | 'these' | 'the' | 'a' | 'the' | 'the' | 'the' | 'an' | 'the' | 'these' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'these' | 'the' | 'this' | 'the' | 'every' | 'the' | 'this' | 'the' | 'some' | 'all' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'that' | 'all' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'these' | 'the' | 'a' | 'the' | 'no' | 'the' | 'the' | 'this' | 'the' | 'a' | 'the' | 'a' | 'the' | 'some' | 'the' | 'some' | 'a' | 'the' | 'the' | 'a' | 'any' | 'the' | 'no' | 'a' | 'an' | 'a' | 'this' | 'the' | 'an' | 'a' | 'this' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'this' | 'a' | 'the' | 'this' | 'a' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'some' | 'the' | 'a' | 'the' | 'every' | 'all' | 'the' | 'the' | 'the' | 'the' | 'a' | 'that' | 'a' | 'an' | 'each' | 'a' | 'the' | 'this' | 'the' | 'the' | 'both' | 'every' | 'a' | 'a' | 'all' | 'a' | 'a' | 'an' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'this' | 'a' | 'a' | 'these' | 'the' | 'a' | 'the' | 'this' | 'the' | 'the' | 'a' | 'the' | 'a' | 'a' | 'a' | 'all' | 'the' | 'this' | 'the' | 'a' | 'a' | 'the' | 'these' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'a' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'all' | 'the' | 'all' | 'the' | 'a' | 'the' | 'all' | 'a' | 'each' | 'the' | 'no' | 'no' | 'the' | 'a' | 'any' | 'the' | 'the' | 'a' | 'all' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'no' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'an' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'that' | 'a' | 'the' | 'all' | 'the' | 'this' | 'those' | 'that' | 'all' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'this' | 'this' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'this' | 'the' | 'these' | 'a' | 'the' | 'the' | 'a' | 'the' | 'those' | 'each' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'any' | 'a' | 'these' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'an' | 'a' | 'a' | 'an' | 'an' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'an' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'this' | 'the' | 'this' | 'a' | 'this' | 'the' | 'a' | 'the' | 'the' | 'the' | 'some' | 'the' | 'these' | 'all' | 'those' | 'the' | 'all' | 'a' | 'the' | 'a' | 'the' | 'this' | 'the' | 'the' | 'that' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'those' | 'an' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'this' | 'the' | 'all' | 'these' | 'a' | 'another' | 'the' | 'those' | 'that' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'a' | 'the' | 'a' | 'the' | 'a' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'a' | 'all' | 'the' | 'an' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'these' | 'a' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'all' | 'some' | 'the' | 'all' | 'those' | 'this' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'each' | 'the' | 'the' | 'each' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'this' | 'these' | 'the' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'a' | 'some' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'every' | 'those' | 'no' | 'these' | 'a' | 'this' | 'a' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'those' | 'the' | 'the' | 'these' | 'any' | 'a' | 'a' | 'a' | 'the' | 'a' | 'a' | 'an' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'a' | 'the' | 'this' | 'an' | 'the' | 'a' | 'those' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'no' | 'the' | 'a' | 'a' | 'a' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'the' | 'an' | 'the' | 'a' | 'the' | 'the' | 'the' | 'any' | 'the' | 'a' | 'any' | 'the' | 'the' | 'a' | 'no' | 'the' | 'that' | 'the' | 'the' | 'a' | 'a' | 'that' | 'a' | 'a' | 'every' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'those' | 'these' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'that' | 'the' | 'a' | 'an' | 'every' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'this' | 'no' | 'the' | 'some' | 'those' | 'the' | 'a' | 'a' | 'that' | 'the' | 'this' | 'the' | 'some' | 'the' | 'some' | 'the' | 'this' | 'the' | 'the' | 'any' | 'the' | 'no' | 'an' | 'the' | 'the' | 'the' | 'any' | 'the' | 'a' | 'a' | 'the' | 'these' | 'those' | 'an' | 'this' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'no' | 'a' | 'the' | 'a' | 'no' | 'a' | 'the' | 'the' | 'the' | 'the' | 'this' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'that' | 'some' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'all' | 'the' | 'a' | 'the' | 'that' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'all' | 'a' | 'the' | 'a' | 'an' | 'the' | 'an' | 'a' | 'the' | 'every' | 'the' | 'the' | 'any' | 'these' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'this' | 'some' | 'no' | 'the' | 'a' | 'the' | 'a' | 'a' | 'no' | 'the' | 'these' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'all' | 'this' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'an' | 'a' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'those' | 'a' | 'the' | 'any' | 'a' | 'an' | 'all' | 'the' | 'every' | 'a' | 'a' | 'a' | 'the' | 'an' | 'this' | 'the' | 'a' | 'those' | 'no' | 'the' | 'this' | 'no' | 'any' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'the' | 'that' | 'a' | 'every' | 'the' | 'any' | 'an' | 'every' | 'a' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'both' | 'these' | 'a' | 'the' | 'an' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'a' | 'a' | 'these' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'this' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'each' | 'the' | 'the' | 'no' | 'the' | 'that' | 'a' | 'that' | 'those' | 'a' | 'the' | 'the' | 'every' | 'the' | 'this' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'the' | 'the' | 'the' | 'a' | 'this' | 'some' | 'the' | 'the' | 'any' | 'the' | 'a' | 'doth' | 'no' | 'a' | 'the' | 'the' | 'some' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'a' | 'the' | 'the' | 'some' | 'the' | 'all' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'these' | 'an' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'that' | 'the' | 'this' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'a' | 'this' | 'the' | 'a' | 'that' | 'a' | 'this' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'any' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'this' | 'the' | 'the' | 'the' | 'an' | 'a' | 'all' | 'those' | 'this' | 'a' | 'some' | 'the' | 'the' | 'a' | 'a' | 'each' | 'this' | 'a' | 'the' | 'a' | 'the' | 'some' | 'the' | 'that' | 'this' | 'a' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'an' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'any' | 'a' | 'a' | 'the' | 'this' | 'the' | 'a' | 'the' | 'this' | 'the' | 'those' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'an' | 'the' | 'the' | 'a' | 'an' | 'that' | 'this' | 'the' | 'the' | 'any' | 'the' | 'every' | 'the' | 'all' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'each' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'a' | 'the' | 'this' | 'another' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'this' | 'all' | 'a' | 'the' | 'these' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'those' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'no' | 'that' | 'the' | 'another' | 'that' | 'the' | 'the' | 'all' | 'a' | 'a' | 'the' | 'the' | 'the' | 'an' | 'a' | 'a' | 'an' | 'the' | 'a' | 'those' | 'the' | 'the' | 'the' | 'a' | 'the' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'any' | 'a' | 'the' | 'any' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'this' | 'an' | 'a' | 'any' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'this' | 'the' | 'this' | 'the' | 'a' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'a' | 'all' | 'no' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'those' | 'the' | 'an' | 'the' | 'the' | 'this' | 'the' | 'a' | 'the' | 'every' | 'the' | 'a' | 'the' | 'a' | 'the' | 'that' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'a' | 'this' | 'the' | 'the' | 'the' | 'no' | 'the' | 'all' | 'an' | 'the' | 'the' | 'the' | 'the' | 'those' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'a' | 'that' | 'the' | 'a' | 'the' | 'an' | 'a' | 'no' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'every' | 'that' | 'a' | 'the' | 'no' | 'a' | 'this' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'this' | 'these' | 'a' | 'the' | 'all' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'every' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'an' | 'every' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'another' | 'another' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'this' | 'this' | 'these' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'no' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'another' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'a' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'that' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'an' | 'the' | 'the' | 'an' | 'a' | 'any' | 'a' | 'the' | 'the' | 'the' | 'all' | 'a' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'an' | 'an' | 'the' | 'an' | 'the' | 'this' | 'a' | 'all' | 'a' | 'a' | 'the' | 'the' | 'a' | 'a' | 'all' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'no' | 'the' | 'the' | 'a' | 'the' | 'every' | 'no' | 'no' | 'the' | 'a' | 'no' | 'all' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'any' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'this' | 'a' | 'all' | 'the' | 'that' | 'some' | 'that' | 'the' | 'this' | 'every' | 'this' | 'no' | 'any' | 'the' | 'any' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'some' | 'this' | 'a' | 'the' | 'the' | 'every' | 'every' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'the' | 'every' | 'the' | 'a' | 'all' | 'an' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'an' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'an' | 'the' | 'a' | 'the' | 'the' | 'an' | 'a' | 'the' | 'the' | 'a' | 'any' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'a' | 'a' | 'a' | 'the' | 'this' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'some' | 'the' | 'the' | 'a' | 'the' | 'the' | 'no' | 'the' | 'this' | 'no' | 'the' | 'no' | 'the' | 'no' | 'the' | 'the' | 'no' | 'a' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'another' | 'that' | 'the' | 'the' | 'a' | 'a' | 'the' | 'all' | 'the' | 'the' | 'a' | 'the' | 'no' | 'an' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'an' | 'the' | 'the' | 'that' | 'a' | 'a' | 'this' | 'the' | 'the' | 'the' | 'all' | 'that' | 'this' | 'a' | 'those' | 'any' | 'a' | 'the' | 'a' | 'the' | 'this' | 'the' | 'some' | 'the' | 'the' | 'a' | 'every' | 'a' | 'a' | 'all' | 'the' | 'the' | 'all' | 'a' | 'an' | 'a' | 'a' | 'a' | 'the' | 'all' | 'the' | 'the' | 'no' | 'no' | 'a' | 'that' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'a' | 'no' | 'these' | 'the' | 'those' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'this' | 'an' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'the' | 'that' | 'all' | 'the' | 'these' | 'the' | 'the' | 'each' | 'no' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'both' | 'the' | 'a' | 'an' | 'the' | 'the' | 'all' | 'that' | 'the' | 'the' | 'a' | 'no' | 'this' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'no' | 'a' | 'a' | 'the' | 'an' | 'a' | 'the' | 'no' | 'this' | 'the' | 'a' | 'this' | 'this' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'a' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'that' | 'every' | 'the' | 'the' | 'some' | 'an' | 'all' | 'some' | 'the' | 'the' | 'this' | 'all' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'each' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'any' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'these' | 'an' | 'these' | 'the' | 'all' | 'the' | 'each' | 'this' | 'every' | 'every' | 'the' | 'that' | 'the' | 'the' | 'the' | 'the' | 'a' | 'no' | 'the' | 'some' | 'the' | 'a' | 'the' | 'the' | 'some' | 'an' | 'this' | 'the' | 'the' | 'the' | 'the' | 'a' | 'those' | 'the' | 'a' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'any' | 'that' | 'the' | 'the' | 'a' | 'the' | 'the' | 'every' | 'the' | 'a' | 'the' | 'another' | 'the' | 'another' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'that' | 'the' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'some' | 'the' | 'some' | 'the' | 'the' | 'no' | 'the' | 'the' | 'the' | 'all' | 'a' | 'the' | 'the' | 'the' | 'both' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'this' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'these' | 'the' | 'all' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'all' | 'every' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'another' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'every' | 'a' | 'that' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'a' | 'both' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'this' | 'the' | 'a' | 'some' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'those' | 'this' | 'the' | 'all' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'another' | 'an' | 'the' | 'every' | 'the' | 'no' | 'a' | 'no' | 'a' | 'no' | 'a' | 'the' | 'the' | 'a' | 'the' | 'these' | 'the' | 'no' | 'an' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'a' | 'the' | 'this' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'another' | 'the' | 'a' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'a' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'a' | 'the' | 'the' | 'the' | 'that' | 'a' | 'the' | 'a' | 'the' | 'a' | 'this' | 'the' | 'a' | 'no' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'a' | 'this' | 'some' | 'the' | 'the' | 'the' | 'a' | 'some' | 'these' | 'the' | 'a' | 'all' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'no' | 'all' | 'all' | 'the' | 'the' | 'that' | 'the' | 'each' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'this' | 'every' | 'the' | 'the' | 'the' | 'another' | 'the' | 'those' | 'the' | 'a' | 'some' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'some' | 'this' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'this' | 'a' | 'the' | 'the' | 'the' | 'this' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'the' | 'this' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'this' | 'all' | 'the' | 'the' | 'these' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'some' | 'this' | 'a' | 'the' | 'the' | 'an' | 'a' | 'a' | 'the' | 'the' | 'a' | 'any' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'some' | 'some' | 'the' | 'a' | 'a' | 'the' | 'the' | 'this' | 'a' | 'a' | 'no' | 'the' | 'the' | 'the' | 'an' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'that' | 'every' | 'a' | 'the' | 'the' | 'that' | 'the' | 'a' | 'a' | 'the' | 'that' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'a' | 'a' | 'a' | 'a' | 'a' | 'a' | 'the' | 'a' | 'a' | 'a' | 'an' | 'the' | 'the' | 'a' | 'a' | 'a' | 'an' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'these' | 'a' | 'the' | 'this' | 'a' | 'a' | 'an' | 'a' | 'the' | 'the' | 'a' | 'the' | 'an' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'no' | 'a' | 'the' | 'a' | 'a' | 'the' | 'these' | 'this' | 'the' | 'a' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'some' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'these' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'that' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'the' | 'no' | 'an' | 'these' | 'a' | 'every' | 'a' | 'each' | 'these' | 'a' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'a' | 'this' | 'the' | 'a' | 'another' | 'the' | 'a' | 'each' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'a' | 'the' | 'some' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'these' | 'a' | 'another' | 'the' | 'the' | 'the' | 'this' | 'a' | 'every' | 'this' | 'the' | 'any' | 'any' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'each' | 'the' | 'the' | 'the' | 'the' | 'the' | 'each' | 'these' | 'the' | 'this' | 'the' | 'the' | 'any' | 'the' | 'the' | 'the' | 'a' | 'an' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'a' | 'no' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'these' | 'the' | 'this' | 'any' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'a' | 'the' | 'these' | 'the' | 'the' | 'each' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'any' | 'the' | 'the' | 'the' | 'the' | 'those' | 'these' | 'an' | 'these' | 'the' | 'the' | 'these' | 'the' | 'these' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'these' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'a' | 'a' | 'a' | 'the' | 'a' | 'the' | 'that' | 'either' | 'this' | 'the' | 'a' | 'a' | 'a' | 'each' | 'a' | 'every' | 'a' | 'that' | 'the' | 'a' | 'the' | 'some' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'this' | 'this' | 'the' | 'the' | 'this' | 'a' | 'a' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'these' | 'a' | 'the' | 'another' | 'all' | 'a' | 'the' | 'a' | 'the' | 'a' | 'that' | 'the' | 'a' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'these' | 'a' | 'a' | 'the' | 'the' | 'no' | 'no' | 'no' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'all' | 'all' | 'the' | 'these' | 'the' | 'a' | 'the' | 'a' | 'the' | 'all' | 'the' | 'that' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'another' | 'no' | 'no' | 'all' | 'a' | 'a' | 'a' | 'any' | 'the' | 'these' | 'the' | 'all' | 'an' | 'some' | 'the' | 'a' | 'each' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'every' | 'a' | 'the' | 'the' | 'a' | 'some' | 'the' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'a' | 'the' | 'the' | 'a' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'an' | 'a' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'this' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'an' | 'the' | 'the' | 'a' | 'some' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'the' | 'another' | 'the' | 'an' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'a' | 'some' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'this' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'some' | 'the' | 'the' | 'the' | 'some' | 'some' | 'a' | 'an' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'an' | 'the' | 'an' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'these' | 'these' | 'the' | 'these' | 'an' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'this' | 'these' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'the' | 'the' | 'those' | 'these' | 'the' | 'these' | 'a' | 'a' | 'the' | 'a' | 'every' | 'the' | 'an' | 'the' | 'no' | 'any' | 'every' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'another' | 'these' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'these' | 'every' | 'the' | 'this' | 'these' | 'the' | 'that' | 'the' | 'a' | 'a' | 'the' | 'these' | 'the' | 'the' | 'the' | 'every' | 'an' | 'this' | 'some' | 'the' | 'a' | 'every' | 'this' | 'a' | 'the' | 'the' | 'the' | 'a' | 'every' | 'a' | 'the' | 'that' | 'that' | 'these' | 'the' | 'a' | 'the' | 'a' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'another' | 'each' | 'the' | 'the' | 'the' | 'these' | 'the' | 'the' | 'a' | 'the' | 'an' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'all' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'a' | 'a' | 'the' | 'a' | 'every' | 'the' | 'the' | 'no' | 'a' | 'the' | 'some' | 'some' | 'no' | 'the' | 'an' | 'no' | 'these' | 'an' | 'the' | 'the' | 'any' | 'these' | 'the' | 'the' | 'some' | 'a' | 'a' | 'a' | 'that' | 'that' | 'these' | 'the' | 'these' | 'this' | 'the' | 'the' | 'an' | 'any' | 'a' | 'the' | 'this' | 'the' | 'that' | 'the' | 'those' | 'the' | 'the' | 'those' | 'this' | 'the' | 'the' | 'all' | 'the' | 'that' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'those' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'all' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'no' | 'the' | 'all' | 'this' | 'the' | 'the' | 'that' | 'some' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'no' | 'the' | 'this' | 'the' | 'the' | 'the' | 'another' | 'the' | 'the' | 'these' | 'the' | 'any' | 'some' | 'the' | 'the' | 'the' | 'any' | 'this' | 'this' | 'the' | 'a' | 'any' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'a' | 'a' | 'a' | 'the' | 'every' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'all' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'no' | 'any' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'a' | 'no' | 'an' | 'the' | 'any' | 'any' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'all' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'no' | 'no' | 'a' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'a' | 'all' | 'the' | 'some' | 'a' | 'the' | 'the' | 'the' | 'any' | 'no' | 'the' | 'the' | 'a' | 'the' | 'some' | 'the' | 'the' | 'all' | 'a' | 'the' | 'a' | 'this' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'an' | 'this' | 'a' | 'a' | 'this' | 'this' | 'the' | 'a' | 'the' | 'this' | 'an' | 'a' | 'the' | 'a' | 'this' | 'a' | 'the' | 'a' | 'a' | 'a' | 'the' | 'that' | 'that' | 'the' | 'these' | 'the' | 'the' | 'a' | 'a' | 'a' | 'some' | 'an' | 'the' | 'those' | 'all' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'these' | 'the' | 'these' | 'a' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'those' | 'this' | 'a' | 'the' | 'the' | 'the' | 'this' | 'the' | 'no' | 'a' | 'the' | 'another' | 'the' | 'the' | 'the' | 'all' | 'those' | 'the' | 'the' | 'every' | 'the' | 'the' | 'a' | 'the' | 'a' | 'this' | 'this' | 'the' | 'any' | 'a' | 'a' | 'that' | 'the' | 'a' | 'another' | 'the' | 'the' | 'that' | 'another' | 'the' | 'the' | 'some' | 'the' | 'some' | 'the' | 'a' | 'the' | 'any' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'this' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'those' | 'these' | 'no' | 'the' | 'a' | 'this' | 'a' | 'a' | 'this' | 'an' | 'no' | 'no' | 'the' | 'another' | 'the' | 'a' | 'the' | 'a' | 'an' | 'the' | 'a' | 'the' | 'some' | 'all' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'both' | 'every' | 'the' | 'a' | 'the' | 'the' | 'the' | 'this' | 'any' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'every' | 'a' | 'the' | 'a' | 'all' | 'these' | 'the' | 'the' | 'every' | 'a' | 'the' | 'no' | 'no' | 'a' | 'the' | 'the' | 'no' | 'a' | 'no' | 'the' | 'an' | 'every' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'some' | 'an' | 'the' | 'this' | 'every' | 'the' | 'an' | 'a' | 'the' | 'this' | 'the' | 'the' | 'every' | 'a' | 'the' | 'these' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'a' | 'a' | 'these' | 'some' | 'the' | 'this' | 'an' | 'a' | 'all' | 'the' | 'the' | 'each' | 'another' | 'the' | 'the' | 'any' | 'another' | 'this' | 'the' | 'any' | 'the' | 'the' | 'this' | 'some' | 'a' | 'this' | 'a' | 'an' | 'the' | 'that' | 'a' | 'an' | 'all' | 'any' | 'a' | 'any' | 'some' | 'any' | 'a' | 'some' | 'the' | 'an' | 'a' | 'a' | 'this' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'those' | 'that' | 'the' | 'the' | 'an' | 'the' | 'those' | 'a' | 'the' | 'a' | 'all' | 'all' | 'all' | 'the' | 'the' | 'all' | 'the' | 'some' | 'an' | 'these' | 'a' | 'the' | 'this' | 'a' | 'no' | 'an' | 'a' | 'an' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'no' | 'an' | 'the' | 'the' | 'that' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'a' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'some' | 'the' | 'every' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'this' | 'neither' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'a' | 'a' | 'every' | 'the' | 'a' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'these' | 'those' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'this' | 'those' | 'the' | 'a' | 'the' | 'this' | 'that' | 'the' | 'the' | 'those' | 'that' | 'that' | 'the' | 'the' | 'the' | 'this' | 'a' | 'those' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'an' | 'a' | 'a' | 'no' | 'a' | 'any' | 'the' | 'this' | 'this' | 'a' | 'the' | 'this' | 'no' | 'this' | 'these' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'every' | 'the' | 'some' | 'the' | 'the' | 'all' | 'the' | 'this' | 'the' | 'the' | 'this' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'an' | 'this' | 'the' | 'the' | 'those' | 'the' | 'the' | 'an' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'a' | 'any' | 'another' | 'the' | 'this' | 'the' | 'the' | 'every' | 'an' | 'every' | 'some' | 'a' | 'a' | 'the' | 'those' | 'this' | 'the' | 'the' | 'the' | 'the' | 'another' | 'this' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'some' | 'the' | 'the' | 'a' | 'this' | 'a' | 'the' | 'the' | 'the' | 'all' | 'this' | 'the' | 'the' | 'a' | 'a' | 'this' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'a' | 'every' | 'the' | 'the' | 'a' | 'these' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'both' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'a' | 'every' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'these' | 'the' | 'the' | 'an' | 'a' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'some' | 'the' | 'the' | 'these' | 'the' | 'a' | 'the' | 'that' | 'the' | 'an' | 'some' | 'the' | 'the' | 'some' | 'the' | 'the' | 'this' | 'every' | 'a' | 'the' | 'the' | 'these' | 'a' | 'the' | 'some' | 'the' | 'a' | 'that' | 'that' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'no' | 'the' | 'a' | 'the' | 'this' | 'a' | 'a' | 'a' | 'this' | 'these' | 'some' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'these' | 'this' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'an' | 'some' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'this' | 'every' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'an' | 'the' | 'every' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'an' | 'a' | 'the' | 'the' | 'a' | 'the' | 'another' | 'the' | 'all' | 'a' | 'a' | 'each' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'another' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'another' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'some' | 'a' | 'the' | 'a' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'another' | 'the' | 'the' | 'the' | 'an' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'each' | 'a' | 'each' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'these' | 'no' | 'the' | 'a' | 'the' | 'an' | 'the' | 'all' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'a' | 'the' | 'that' | 'any' | 'those' | 'the' | 'a' | 'the' | 'a' | 'all' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'an' | 'a' | 'the' | 'a' | 'the' | 'the' | 'any' | 'this' | 'a' | 'the' | 'a' | 'that' | 'the' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'another' | 'the' | 'an' | 'the' | 'every' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'any' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'no' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'all' | 'the' | 'this' | 'a' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'a' | 'the' | 'these' | 'a' | 'the' | 'a' | 'the' | 'the' | 'this' | 'a' | 'the' | 'another' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'any' | 'any' | 'a' | 'that' | 'the' | 'this' | 'that' | 'a' | 'a' | 'a' | 'an' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'a' | 'some' | 'the' | 'the' | 'no' | 'a' | 'the' | 'an' | 'the' | 'an' | 'an' | 'this' | 'a' | 'a' | 'an' | 'the' | 'a' | 'this' | 'the' | 'the' | 'a' | 'all' | 'no' | 'the' | 'a' | 'all' | 'all' | 'the' | 'the' | 'the' | 'the' | 'an' | 'some' | 'this' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'a' | 'all' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'a' | 'no' | 'any' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'a' | 'an' | 'the' | 'that' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'a' | 'that' | 'the' | 'the' | 'another' | 'the' | 'the' | 'the' | 'a' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'another' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'a' | 'the' | 'some' | 'the' | 'the' | 'the' | 'all' | 'this' | 'an' | 'a' | 'a' | 'the' | 'the' | 'those' | 'the' | 'that' | 'the' | 'the' | 'a' | 'all' | 'this' | 'that' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'that' | 'the' | 'a' | 'all' | 'the' | 'the' | 'a' | 'no' | 'the' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'these' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'every' | 'the' | 'a' | 'a' | 'those' | 'a' | 'the' | 'the' | 'the' | 'a' | 'this' | 'the' | 'no' | 'the' | 'a' | 'a' | 'this' | 'the' | 'a' | 'the' | 'any' | 'the' | 'some' | 'this' | 'the' | 'the' | 'a' | 'some' | 'this' | 'the' | 'this' | 'the' | 'some' | 'the' | 'some' | 'an' | 'the' | 'any' | 'this' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'a' | 'the' | 'every' | 'every' | 'the' | 'a' | 'the' | 'a' | 'this' | 'the' | 'these' | 'a' | 'the' | 'a' | 'this' | 'the' | 'the' | 'a' | 'the' | 'an' | 'some' | 'the' | 'the' | 'any' | 'the' | 'every' | 'the' | 'that' | 'a' | 'the' | 'the' | 'these' | 'a' | 'a' | 'a' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'every' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'these' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'a' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'a' | 'a' | 'the' | 'a' | 'a' | 'a' | 'the' | 'these' | 'these' | 'an' | 'the' | 'some' | 'the' | 'the' | 'those' | 'the' | 'any' | 'the' | 'an' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'a' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'no' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'every' | 'a' | 'this' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'an' | 'no' | 'an' | 'each' | 'all' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'this' | 'all' | 'the' | 'an' | 'the' | 'some' | 'this' | 'the' | 'a' | 'the' | 'a' | 'this' | 'a' | 'the' | 'the' | 'the' | 'those' | 'no' | 'the' | 'this' | 'an' | 'this' | 'an' | 'the' | 'the' | 'the' | 'those' | 'a' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'a' | 'this' | 'the' | 'a' | 'this' | 'a' | 'some' | 'this' | 'all' | 'this' | 'a' | 'this' | 'the' | 'any' | 'the' | 'the' | 'this' | 'an' | 'another' | 'a' | 'each' | 'a' | 'another' | 'the' | 'every' | 'the' | 'this' | 'the' | 'the' | 'the' | 'all' | 'that' | 'an' | 'an' | 'a' | 'this' | 'this' | 'the' | 'this' | 'the' | 'this' | 'any' | 'no' | 'this' | 'the' | 'the' | 'that' | 'the' | 'every' | 'the' | 'that' | 'a' | 'an' | 'a' | 'the' | 'that' | 'a' | 'those' | 'some' | 'the' | 'the' | 'all' | 'the' | 'a' | 'that' | 'the' | 'the' | 'either' | 'a' | 'this' | 'all' | 'a' | 'this' | 'the' | 'this' | 'a' | 'the' | 'the' | 'a' | 'that' | 'a' | 'the' | 'a' | 'neither' | 'the' | 'the' | 'these' | 'the' | 'the' | 'no' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'those' | 'those' | 'the' | 'those' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'this' | 'the' | 'a' | 'the' | 'a' | 'an' | 'the' | 'the' | 'a' | 'an' | 'no' | 'the' | 'all' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'every' | 'the' | 'a' | 'the' | 'these' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'an' | 'no' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'all' | 'those' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'all' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'a' | 'the' | 'the' | 'this' | 'the' | 'the' | 'every' | 'the' | 'a' | 'all' | 'all' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'those' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'every' | 'the' | 'some' | 'this' | 'all' | 'this' | 'an' | 'this' | 'the' | 'some' | 'the' | 'some' | 'the' | 'the' | 'every' | 'a' | 'no' | 'some' | 'the' | 'a' | 'the' | 'the' | 'the' | 'every' | 'the' | 'the' | 'this' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'those' | 'a' | 'a' | 'a' | 'the' | 'this' | 'a' | 'the' | 'an' | 'the' | 'the' | 'this' | 'no' | 'a' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'this' | 'all' | 'no' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'any' | 'the' | 'every' | 'the' | 'the' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'every' | 'no' | 'an' | 'the' | 'the' | 'this' | 'a' | 'a' | 'the' | 'the' | 'that' | 'a' | 'the' | 'those' | 'that' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'this' | 'a' | 'a' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'a' | 'the' | 'a' | 'no' | 'a' | 'this' | 'an' | 'the' | 'the' | 'a' | 'this' | 'the' | 'a' | 'a' | 'the' | 'those' | 'this' | 'this' | 'a' | 'the' | 'that' | 'a' | 'the' | 'every' | 'the' | 'all' | 'an' | 'the' | 'no' | 'some' | 'the' | 'no' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'this' | 'every' | 'no' | 'a' | 'the' | 'the' | 'this' | 'a' | 'that' | 'the' | 'a' | 'those' | 'this' | 'the' | 'a' | 'a' | 'the' | 'the' | 'some' | 'all' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'some' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'this' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'the' | 'the' | 'the' | 'a' | 'the' | 'all' | 'that' | 'the' | 'a' | 'an' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'this' | 'all' | 'some' | 'the' | 'the' | 'the' | 'the' | 'some' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'all' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'the' | 'the' | 'some' | 'a' | 'those' | 'that' | 'the' | 'these' | 'this' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'some' | 'the' | 'the' | 'the' | 'these' | 'these' | 'the' | 'the' | 'the' | 'this' | 'a' | 'that' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'these' | 'a' | 'these' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'some' | 'this' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'no' | 'the' | 'the' | 'the' | 'this' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'every' | 'a' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'a' | 'a' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'an' | 'the' | 'the' | 'a' | 'some' | 'no' | 'a' | 'all' | 'a' | 'the' | 'the' | 'every' | 'the' | 'the' | 'the' | 'an' | 'a' | 'the' | 'a' | 'a' | 'a' | 'a' | 'this' | 'the' | 'no' | 'the' | 'these' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'that' | 'the' | 'the' | 'a' | 'every' | 'a' | 'an' | 'the' | 'an' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'this' | 'the' | 'a' | 'the' | 'the' | 'a' | 'a' | 'the' | 'every' | 'the' | 'this' | 'every' | 'no' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'a' | 'this' | 'a' | 'every' | 'a' | 'a' | 'the' | 'a' | 'the' | 'the' | 'some' | 'a' | 'this' | 'the' | 'those' | 'the' | 'no' | 'a' | 'the' | 'a' | 'the' | 'this' | 'the' | 'the' | 'all' | 'the' | 'an' | 'the' | 'these' | 'the' | 'the' | 'a' | 'the' | 'the' | 'a' | 'this' | 'a' | 'this' | 'a' | 'these' | 'a' | 'the' | 'a' | 'any' | 'those' | 'any' | 'any' | 'another' | 'the' | 'any' | 'the' | 'a' | 'any' | 'the' | 'a' | 'a' | 'the' | 'another' | 'the' | 'the' | 'a' | 'any' | 'the' | 'the' | 'no' | 'every' | 'the' | 'the' | 'these' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'this' | 'the' | 'the' | 'these' | 'the' | 'these' | 'each' | 'a' | 'this' | 'a' | 'these' | 'the' | 'a' | 'this' | 'a' | 'any' | 'the' | 'a' | 'this' | 'the' | 'a' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'this' | 'a' | 'the' | 'this' | 'the' | 'this' | 'the' | 'this' | 'a' | 'the' | 'a' | 'every' | 'these' | 'this' | 'a' | 'this' | 'an' | 'the' | 'the' | 'the' | 'the' | 'this' | 'the' | 'a' | 'a' | 'this' | 'the' | 'the' | 'this' | 'a' | 'the' | 'an' | 'these' | 'another' | 'the' | 'all' | 'this' | 'the' | 'the' | 'this' | 'these' | 'the' | 'a' | 'the' | 'every' | 'the' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'a' | 'the' | 'a' | 'the' | 'the' | 'the' | 'these' | 'a' | 'a' | 'this' | 'another' | 'that' | 'the' | 'a' | 'this' | 'a' | 'the' | 'this' | 'no' | 'the' | 'this' | 'this' | 'the' | 'these' | 'the' | 'the' | 'an' | 'this' | 'the' | 'the' | 'the' | 'the' | 'this' | 'these' | 'another' | 'an' | 'the' | 'a' | 'the' | 'this' | 'the' | 'a' | 'these' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'a' | 'the' | 'that' | 'a' | 'the' | 'the' | 'a' | 'this' | 'the' | 'every' | 'the' | 'some' | 'that' | 'the' | 'all' | 'the' | 'the' | 'a' | 'this' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'an' | 'a' | 'the' | 'the' | 'an' | 'all' | 'all' | 'the' | 'no' | 'an' | 'the' | 'an' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'no' | 'the' | 'the' | 'a' | 'the' | 'the' | 'no' | 'no' | 'no' | 'no' | 'the' | 'the' | 'the' | 'the' | 'the' | 'a' | 'a' | 'the' | 'the' | 'no' | 'this' | 'the' | 'all' | 'the' | 'the' | 'these' | 'the' | 'the' | 'an' | 'the' | 'this' | 'a' | 'the' | 'the' | 'the' | 'any' | 'the' | 'all' | 'that' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'that' | 'no' | 'the' | 'any' | 'the' | 'that' | 'this' | 'the' | 'the' | 'the' | 'this' | 'no' | 'any' | 'another' | 'the' | 'the' | 'the' | 'both' | 'the' | 'the' | 'this' | 'some' | 'the' | 'this' | 'the' | 'the' | 'the' | 'the' | 'the' | 'these' | 'all' | 'the' | 'the' | 'these' | 'a' | 'some' | 'a' | 'that' | 'the' | 'these' | 'the' | 'the' | 'the' | 'that' | 'the' | 'the' | 'the' | 'this' | 'the' | 'the' | 'the'\nRP -> 'over' | 'out' | 'out' | 'up' | 'off' | 'up' | 'out' | 'up' | 'off' | 'up' | 'up' | 'up' | 'up' | 'down' | 'describe' | 'up' | 'up' | 'up' | 'away' | 'out' | 'up' | 'out' | 'up' | 'out' | 'up' | 'up' | 'out' | 'out' | 'out' | 'off' | 'out' | 'up' | 'out' | 'up' | 'out' | 'up' | 'up' | 'up' | 'away' | 'down' | 'amidst' | 'over' | 'up' | 'down' | 'out' | 'out' | 'up' | 'down' | 'out' | 'up' | 'up' | 'up' | 'up' | 'off' | 'out' | 'away' | 'up' | 'up' | 'up' | 'out' | 'away' | 'off' | 'out' | 'up' | 'up' | 'thrown' | 'away' | 'up' | 'aside' | 'up' | 'down' | 'away' | 'off' | 'down' | 'up' | 'out' | 'up' | 'down' | 'up' | 'amongst' | 'up' | 'off' | 'oxford' | 'down' | 'upon' | 'up' | 'amidst' | 'up' | 'down' | 'up' | 'up' | 'out' | 'up' | 'out' | 'behind' | 'out' | 'off' | 'up' | 'down' | 'out' | 'out' | 'down' | 'up' | 'up' | 'up' | 'down' | 'up' | 'up' | 'out' | 'up' | 'up' | 'off' | 'off' | 'up' | 'up' | 'out' | 'down' | 'up' | 'away' | 'down' | 'up' | 'off' | 'up'\nNN -> 'disaster' | 'commencement' | 'enterprise' | 'i' | 'yesterday' | 'task' | 'sister' | 'welfare' | 'confidence' | 'success' | 'undertaking' | 'london' | 'petersburgh' | 'northern' | 'breeze' | 'play' | 'cheeks' | 'delight' | 'feeling' | 'breeze' | 'foretaste' | 'wind' | 'promise' | 'try' | 'vain' | 'pole' | 'seat' | 'frost' | 'desolation' | 'imagination' | 'region' | 'beauty' | 'delight' | 'margaret' | 'sun' | 'disk' | 'horizon' | 'splendour' | 'leave' | 'sister' | 'i' | 'trust' | 'frost' | 'sea' | 'land' | 'beauty' | 'region' | 'hitherto' | 'globe' | 'example' | 'phenomena' | 'country' | 'light' | 'i' | 'power' | 'voyage' | 'seeming' | 'curiosity' | 'sight' | 'part' | 'world' | 'land' | 'foot' | 'man' | 'fear' | 'danger' | 'death' | 'voyage' | 'joy' | 'child' | 'boat' | 'holiday' | 'expedition' | 'discovery' | 'river' | 'benefit' | 'mankind' | 'generation' | 'passage' | 'pole' | 'present' | 'secret' | 'magnet' | 'undertaking' | 'mine' | 'agitation' | 'i' | 'letter' | 'i' | 'heart' | 'glow' | 'enthusiasm' | 'nothing' | 'mind' | 'purpose' | 'point' | 'soul' | 'eye' | 'expedition' | 'dream' | 'i' | 'prospect' | 'ocean' | 'pole' | 'history' | 'discovery' | 'whole' | 'uncle' | 'thomas' | 'library' | 'education' | 'i' | 'fond' | 'reading' | 'study' | 'day' | 'night' | 'familiarity' | 'regret' | 'i' | 'child' | 'injunction' | 'uncle' | 'life' | 'i' | 'time' | 'soul' | 'i' | 'poet' | 'year' | 'paradise' | 'creation' | 'i' | 'niche' | 'temple' | 'homer' | 'shakespeare' | 'failure' | 'disappointment' | 'time' | 'i' | 'fortune' | 'cousin' | 'channel' | 'bent' | 'i' | 'undertaking' | 'i' | 'hour' | 'i' | 'enterprise' | 'i' | 'body' | 'sea' | 'famine' | 'want' | 'sleep' | 'day' | 'study' | 'theory' | 'medicine' | 'science' | 'adventurer' | 'advantage' | 'greenland' | 'whaler' | 'i' | 'proud' | 'captain' | 'dignity' | 'vessel' | 'earnestness' | 'margaret' | 'purpose' | 'life' | 'ease' | 'luxury' | 'glory' | 'enticement' | 'wealth' | 'path' | 'voice' | 'courage' | 'resolution' | 'fluctuate' | 'voyage' | 'fortitude' | 'i' | 'period' | 'russia' | 'snow' | 'motion' | 'opinion' | 'stagecoach' | 'cold' | 'dress' | 'difference' | 'deck' | 'motionless' | 'exercise' | 'blood' | 'ambition' | 'life' | 'post-road' | 'stxperiod' | 'petersburgh' | 'archangel' | 'town' | 'fortnight' | 'intention' | 'ship' | 'insurance' | 'owner' | 'whale-fishing' | 'month' | 'june' | 'return' | 'ah' | 'sister' | 'question' | 'farewell' | 'margaret' | 'heaven' | 'i' | 'gratitude' | 'love' | 'kindness' | 'affectionate' | 'brother' | 'letter' | 'saville' | 'england' | 'archangel' | 'march' | 'time' | 'i' | 'frost' | 'snow' | 'step' | 'enterprise' | 'i' | 'vessel' | 'i' | 'courage' | 'want' | 'absence' | 'object' | 'i' | 'evil' | 'i' | 'friend' | 'margaret' | 'i' | 'enthusiasm' | 'success' | 'none' | 'joy' | 'disappointment' | 'one' | 'dejection' | 'paper' | 'medium' | 'communication' | 'feeling' | 'i' | 'company' | 'man' | 'sister' | 'want' | 'friend' | 'one' | 'mind' | 'friend' | 'repair' | 'brother' | 'i' | 'execution' | 'evil' | 'life' | 'i' | 'nothing' | 'uncle' | 'thomas' | 'age' | 'i' | 'country' | 'power' | 'conviction' | 'necessity' | 'country' | 'reality' | 'fifteen' | 'i' | 'friend' | 'sense' | 'affection' | 'enough' | 'mind' | 'friend' | 'ocean' | 'archangel' | 'dross' | 'nature' | 'lieutenant' | 'instance' | 'man' | 'courage' | 'enterprise' | 'glory' | 'word' | 'phrase' | 'advancement' | 'profession' | 'englishman' | 'midst' | 'cultivation' | 'humanity' | 'board' | 'vessel' | 'city' | 'enterprise' | 'master' | 'person' | 'disposition' | 'ship' | 'gentleness' | 'mildness' | 'discipline' | 'circumstance' | 'integrity' | 'dauntless' | 'courage' | 'youth' | 'solitude' | 'gentle' | 'fosterage' | 'groundwork' | 'character' | 'i' | 'distaste' | 'brutality' | 'board' | 'ship' | 'i' | 'heard' | 'mariner' | 'kindliness' | 'heart' | 'respect' | 'obedience' | 'crew' | 'i' | 'heard' | 'manner' | 'lady' | 'happiness' | 'life' | 'briefly' | 'story' | 'lady' | 'fortune' | 'sum' | 'prize-money' | 'father' | 'girl' | 'match' | 'mistress' | 'ceremony' | 'time' | 'father' | 'union' | 'friend' | 'suppliant' | 'name' | 'lover' | 'pursuit' | 'farm' | 'money' | 'remainder' | 'life' | 'whole' | 'rival' | 'prize-money' | 'stock' | 'marriage' | 'lover' | 'man' | 'honour' | 'friend' | 'father' | 'country' | 'mistress' | 'fellow' | 'turk' | 'kind' | 'carelessness' | 'conduct' | 'interest' | 'sympathy' | 'i' | 'i' | 'consolation' | 'i' | 'fate' | 'voyage' | 'weather' | 'embarkation' | 'winter' | 'spring' | 'season' | 'i' | 'nothing' | 'prudence' | 'considerateness' | 'safety' | 'care' | 'i' | 'prospect' | 'undertaking' | 'conception' | 'sensation' | 'half' | 'half' | 'land' | 'mist' | 'snow' | 'albatross' | 'safety' | 'ancient' | 'mariner' | 'allusion' | 'i' | 'i' | 'attachment' | 'passionate' | 'enthusiasm' | 'ocean' | 'production' | 'something' | 'work' | 'soul' | 'painstaking' | 'workman' | 'perseverance' | 'labour' | 'love' | 'belief' | 'sea' | 'meet' | 'cape' | 'africa' | 'america' | 'i' | 'dare' | 'success' | 'reverse' | 'picture' | 'continue' | 'opportunity' | 'i' | 'affection' | 'affectionate' | 'brother' | 'letter' | 'saville' | 'sister' | 'haste' | 'voyage' | 'letter' | 'england' | 'merchantman' | 'voyage' | 'archangel' | 'fortunate' | 'i' | 'land' | 'i' | 'firm' | 'purpose' | 'ice' | 'region' | 'latitude' | 'height' | 'summer' | 'england' | 'degree' | 'warmth' | 'i' | 'figure' | 'letter' | 'springing' | 'leak' | 'nothing' | 'worse' | 'happen' | 'voyage' | 'adieu' | 'margaret' | 'sake' | 'i' | 'danger' | 'i' | 'persevering' | 'prudent' | 'success' | 'way' | 'pathless' | 'seas' | 'triumph' | 'element' | 'heart' | 'man' | 'heart' | 'involuntarily' | 'sister' | 'rxperiodw' | 'letter' | 'saville' | 'accident' | 'i' | 'possession' | 'monday' | 'ice' | 'ship' | 'sea-room' | 'situation' | 'round' | 'fog' | 'change' | 'place' | 'atmosphere' | 'weather' | 'mist' | 'direction' | 'ice' | 'end' | 'mind' | 'sight' | 'attention' | 'solicitude' | 'situation' | 'carriage' | 'sledge' | 'pass' | 'north' | 'distance' | 'mile' | 'shape' | 'man' | 'stature' | 'sledge' | 'progress' | 'traveller' | 'ice' | 'appearance' | 'wonder' | 'land' | 'apparition' | 'reality' | 'shut' | 'ice' | 'track' | 'attention' | 'occurrence' | 'ground' | 'sea' | 'night' | 'ice' | 'ship' | 'morning' | 'dark' | 'ice' | 'i' | 'time' | 'morning' | 'deck' | 'side' | 'vessel' | 'someone' | 'sea' | 'fact' | 'sledge' | 'night' | 'fragment' | 'ice' | 'dog' | 'vessel' | 'traveller' | 'savage' | 'inhabitant' | 'island' | 'i' | 'deck' | 'master' | 'captain' | 'sea' | 'stranger' | 'accent' | 'board' | 'vessel' | 'kindness' | 'astonishment' | 'question' | 'man' | 'brink' | 'destruction' | 'i' | 'vessel' | 'resource' | 'wealth' | 'earth' | 'i' | 'voyage' | 'discovery' | 'pole' | 'board' | 'god' | 'margaret' | 'man' | 'safety' | 'surprise' | 'body' | 'fatigue' | 'suffering' | 'man' | 'condition' | 'cabin' | 'air' | 'deck' | 'animation' | 'brandy' | 'quantity' | 'life' | 'chimney' | 'kitchen' | 'stove' | 'soup' | 'manner' | 'measure' | 'cabin' | 'duty' | 'creature' | 'expression' | 'wildness' | 'madness' | 'anyone' | 'act' | 'service' | 'countenance' | 'beam' | 'benevolence' | 'sweetness' | 'despairing' | 'teeth' | 'impatient' | 'weight' | 'guest' | 'i' | 'trouble' | 'thousand' | 'curiosity' | 'state' | 'body' | 'mind' | 'restoration' | 'repose' | 'lieutenant' | 'ice' | 'vehicle' | 'countenance' | 'aspect' | 'gloom' | 'man' | 'fashion' | 'day' | 'sledge' | 'man' | 'ice' | 'attention' | 'multitude' | 'route' | 'demon' | 'i' | 'doubtless' | 'curiosity' | 'inhuman' | 'trouble' | 'inquisitiveness' | 'mine' | 'situation' | 'life' | 'ice' | 'sledge' | 'i' | 'degree' | 'certainty' | 'ice' | 'midnight' | 'traveller' | 'place' | 'safety' | 'time' | 'i' | 'time' | 'spirit' | 'life' | 'decaying' | 'frame' | 'stranger' | 'eagerness' | 'deck' | 'sledge' | 'cabin' | 'rawness' | 'atmosphere' | 'i' | 'someone' | 'notice' | 'object' | 'sight' | 'journal' | 'occurrence' | 'day' | 'stranger' | 'health' | 'anyone' | 'cabin' | 'communication' | 'part' | 'brother' | 'grief' | 'sympathy' | 'compassion' | 'creature' | 'wreck' | 'i' | 'margaret' | 'i' | 'friend' | 'ocean' | 'man' | 'spirit' | 'misery' | 'i' | 'brother' | 'heart' | 'journal' | 'stranger' | 'record' | 'affection' | 'guest' | 'day' | 'admiration' | 'pity' | 'degree' | 'creature' | 'misery' | 'grief' | 'mind' | 'art' | 'rapidity' | 'eloquence' | 'illness' | 'deck' | 'sledge' | 'misery' | 'mine' | 'disguise' | 'favour' | 'success' | 'minute' | 'detail' | 'i' | 'sympathy' | 'language' | 'heart' | 'utterance' | 'ardour' | 'soul' | 'fervour' | 'fortune' | 'existence' | 'hope' | 'furtherance' | 'enterprise' | 'life' | 'death' | 'price' | 'acquirement' | 'knowledge' | 'i' | 'dominion' | 'i' | 'race' | 'dark' | 'gloom' | 'spread' | 'countenance' | 'i' | 'emotion' | 'voice' | 'groan' | 'burst' | 'breast' | 'i' | 'length' | 'man' | 'share' | 'madness' | 'draught' | 'tale' | 'cup' | 'curiosity' | 'paroxysm' | 'grief' | 'stranger' | 'repose' | 'conversation' | 'composure' | 'violence' | 'slave' | 'passion' | 'tyranny' | 'despair' | 'history' | 'tale' | 'reflection' | 'spoke' | 'desire' | 'friend' | 'thirst' | 'sympathy' | 'fellow' | 'mind' | 'lot' | 'conviction' | 'man' | 'happiness' | 'blessing' | 'stranger' | 'half' | 'wiser' | 'friend' | 'aid' | 'i' | 'friend' | 'friendship' | 'world' | 'cause' | 'despair' | 'everything' | 'life' | 'countenance' | 'calm' | 'grief' | 'heart' | 'cabin' | 'spirit' | 'one' | 'nature' | 'starry' | 'sky' | 'sea' | 'sight' | 'power' | 'soul' | 'earth' | 'man' | 'existence' | 'misery' | 'spirit' | 'halo' | 'circle' | 'grief' | 'enthusiasm' | 'i' | 'divine' | 'wanderer' | 'retirement' | 'world' | 'man' | 'quality' | 'person' | 'i' | 'discernment' | 'power' | 'judgment' | 'penetration' | 'clearness' | 'precision' | 'facility' | 'expression' | 'voice' | 'music' | 'l9' | 'yesterday' | 'stranger' | 'walton' | 'i' | 'i' | 'time' | 'memory' | 'determination' | 'knowledge' | 'wisdom' | 'gratification' | 'serpent' | 'mine' | 'relation' | 'i' | 'course' | 'moral' | 'tale' | 'undertaking' | 'console' | 'case' | 'failure' | 'prepare' | 'nature' | 'i' | 'unbelief' | 'ridicule' | 'laughter' | 'nature' | 'doubt' | 'series' | 'evidence' | 'truth' | 'i' | 'communication' | 'i' | 'grief' | 'recital' | 'i' | 'eagerness' | 'narrative' | 'curiosity' | 'desire' | 'fate' | 'power' | 'answer' | 'thank' | 'sympathy' | 'fate' | 'event' | 'peace' | 'feeling' | 'i' | 'friend' | 'nothing' | 'destiny' | 'history' | 'day' | 'i' | 'leisure' | 'promise' | 'drew' | 'night' | 'i' | 'day' | 'i' | 'manuscript' | 'afford' | 'pleasure' | 'interest' | 'day' | 'commence' | 'task' | 'voice' | 'melancholy' | 'sweetness' | 'hand' | 'animation' | 'face' | 'soul' | 'story' | 'storm' | 'vessel' | 'course' | 'chapter' | 'i' | 'birth' | 'family' | 'republic' | 'father' | 'honour' | 'reputation' | 'integrity' | 'attention' | 'business' | 'younger' | 'country' | 'variety' | 'decline' | 'life' | 'husband' | 'father' | 'family' | 'marriage' | 'character' | 'i' | 'merchant' | 'state' | 'poverty' | 'man' | 'name' | 'beaufort' | 'proud' | 'disposition' | 'poverty' | 'oblivion' | 'country' | 'rank' | 'magnificence' | 'manner' | 'daughter' | 'town' | 'lucerne' | 'wretchedness' | 'father' | 'beaufort' | 'truest' | 'friendship' | 'retreat' | 'pride' | 'friend' | 'conduct' | 'worthy' | 'affection' | 'time' | 'hope' | 'world' | 'credit' | 'assistance' | 'beaufort' | 'father' | 'abode' | 'discovery' | 'house' | 'street' | 'reuss' | 'misery' | 'despair' | 'beaufort' | 'sum' | 'money' | 'wreck' | 'sustenance' | 'meantime' | 'employment' | 'house' | 'interval' | 'inaction' | 'grief' | 'leisure' | 'reflection' | 'length' | 'hold' | 'mind' | 'end' | 'bed' | 'sickness' | 'exertion' | 'daughter' | 'tenderness' | 'despair' | 'fund' | 'prospect' | 'support' | 'beaufort' | 'mind' | 'mould' | 'courage' | 'adversity' | 'work' | 'pittance' | 'life' | 'manner' | 'father' | 'time' | 'subsistence' | 'month' | 'father' | 'orphan' | 'beggar' | 'blow' | 'coffin' | 'father' | 'chamber' | 'spirit' | 'girl' | 'care' | 'interment' | 'friend' | 'protection' | 'relation' | 'event' | 'caroline' | 'wife' | 'difference' | 'circumstance' | 'affection' | 'sense' | 'justice' | 'mind' | 'unworthiness' | 'beloved' | 'value' | 'worth' | 'show' | 'gratitude' | 'worship' | 'attachment' | 'mother' | 'fondness' | 'age' | 'reverence' | 'desire' | 'degree' | 'grace' | 'behaviour' | 'everything' | 'convenience' | 'gardener' | 'rougher' | 'wind' | 'emotion' | 'mind' | 'health' | 'tranquillity' | 'hitherto' | 'spirit' | 'marriage' | 'father' | 'union' | 'climate' | 'italy' | 'change' | 'scene' | 'interest' | 'attendant' | 'tour' | 'land' | 'restorative' | 'frame' | 'italy' | 'germany' | 'france' | 'i' | 'child' | 'infant' | 'i' | 'child' | 'affection' | 'mine' | 'love' | 'smile' | 'pleasure' | 'i' | 'plaything' | 'idol' | 'something' | 'child' | 'innocent' | 'creature' | 'heaven' | 'future' | 'lot' | 'misery' | 'consciousness' | 'life' | 'spirit' | 'tenderness' | 'hour' | 'life' | 'i' | 'lesson' | 'patience' | 'charity' | 'self-control' | 'i' | 'cord' | 'train' | 'enjoyment' | 'time' | 'i' | 'care' | 'mother' | 'daughter' | 'offspring' | 'i' | 'excursion' | 'italy' | 'week' | 'lake' | 'como' | 'disposition' | 'mother' | 'duty' | 'necessity' | 'passion' | 'angel' | 'cot' | 'vale' | 'notice' | 'disconsolate' | 'number' | 'penury' | 'shape' | 'day' | 'father' | 'mother' | 'abode' | 'peasant' | 'wife' | 'working' | 'care' | 'labour' | 'meal' | 'mother' | 'rest' | 'stock' | 'child' | 'hair' | 'living' | 'gold' | 'poverty' | 'clothing' | 'crown' | 'distinction' | 'head' | 'brow' | 'cloudless' | 'moulding' | 'face' | 'sensibility' | 'sweetness' | 'none' | 'stamp' | 'woman' | 'mother' | 'wonder' | 'admiration' | 'girl' | 'history' | 'child' | 'daughter' | 'nobleman' | 'mother' | 'birth' | 'infant' | 'child' | 'father' | 'charge' | 'memory' | 'glory' | 'schiavi' | 'ognor' | 'frementi' | 'liberty' | 'country' | 'victim' | 'weakness' | 'austria' | 'property' | 'child' | 'orphan' | 'beggar' | 'foster' | 'rude' | 'abode' | 'garden' | 'father' | 'milan' | 'hall' | 'villa' | 'child' | 'fairer' | 'cherub' | 'creature' | 'radiance' | 'form' | 'chamois' | 'apparition' | 'permission' | 'mother' | 'charge' | 'fond' | 'orphan' | 'presence' | 'blessing' | 'poverty' | 'providence' | 'protection' | 'village' | 'priest' | 'result' | 'lavenza' | 'inmate' | 'house' | 'beautiful' | 'companion' | 'everyone' | 'passionate' | 'attachment' | 'i' | 'pride' | 'delight' | 'home' | 'mother' | 'present' | 'victor' | 'tomorrow' | 'morrow' | 'elizabeth' | 'gift' | 'i' | 'seriousness' | 'mine' | 'mine' | 'i' | 'possession' | 'name' | 'cousin' | 'word' | 'expression' | 'kind' | 'relation' | 'sister' | 'till' | 'death' | 'chapter' | 'year' | 'difference' | 'disunion' | 'dispute' | 'harmony' | 'soul' | 'companionship' | 'diversity' | 'contrast' | 'elizabeth' | 'calmer' | 'disposition' | 'ardour' | 'i' | 'application' | 'thirst' | 'knowledge' | 'home' | 'tempest' | 'calm' | 'silence' | 'winter' | 'life' | 'turbulence' | 'alpine' | 'scope' | 'admiration' | 'delight' | 'companion' | 'spirit' | 'world' | 'curiosity' | 'research' | 'nature' | 'gladness' | 'birth' | 'son' | 'life' | 'country' | 'house' | 'geneva' | 'campagne' | 'belrive' | 'shore' | 'lake' | 'distance' | 'league' | 'city' | 'latter' | 'seclusion' | 'temper' | 'crowd' | 'i' | 'myself' | 'friendship' | 'henry' | 'clerval' | 'son' | 'merchant' | 'geneva' | 'boy' | 'talent' | 'fancy' | 'enterprise' | 'hardship' | 'sake' | 'chivalry' | 'romance' | 'tale' | 'enchantment' | 'adventure' | 'round' | 'table' | 'arthur' | 'train' | 'blood' | 'sepulchre' | 'childhood' | 'spirit' | 'kindness' | 'indulgence' | 'lot' | 'caprice' | 'i' | 'lot' | 'gratitude' | 'development' | 'love' | 'temper' | 'vehement' | 'law' | 'temperature' | 'desire' | 'confess' | 'structure' | 'code' | 'heaven' | 'earth' | 'i' | 'substance' | 'spirit' | 'nature' | 'soul' | 'man' | 'sense' | 'world' | 'clerval' | 'stage' | 'life' | 'theme' | 'hope' | 'dream' | 'story' | 'gallant' | 'soul' | 'shone' | 'lamp' | 'home' | 'sympathy' | 'smile' | 'voice' | 'glance' | 'living' | 'spirit' | 'love' | 'i' | 'study' | 'ardour' | 'nature' | 'semblance' | 'gentleness' | 'clerval' | 'entrench' | 'spirit' | 'clerval' | 'humane' | 'generosity' | 'kindness' | 'tenderness' | 'passion' | 'exploit' | 'loveliness' | 'beneficence' | 'end' | 'aim' | 'ambition' | 'pleasure' | 'childhood' | 'misfortune' | 'mind' | 'usefulness' | 'self' | 'picture' | 'i' | 'tale' | 'misery' | 'i' | 'birth' | 'passion' | 'destiny' | 'i' | 'mountain' | 'river' | 'torrent' | 'course' | 'philosophy' | 'genius' | 'fate' | 'desire' | 'narration' | 'state' | 'predilection' | 'science' | 'i' | 'age' | 'party' | 'pleasure' | 'thonon' | 'inclemency' | 'weather' | 'day' | 'inn' | 'house' | 'i' | 'volume' | 'cornelius' | 'agrippa' | 'i' | 'apathy' | 'theory' | 'feeling' | 'enthusiasm' | 'light' | 'mind' | 'joy' | 'i' | 'discovery' | 'father' | 'father' | 'title' | 'page' | 'book' | 'ah' | 'cornelius' | 'agrippa' | 'victor' | 'time' | 'trash' | 'remark' | 'father' | 'agrippa' | 'system' | 'science' | 'ancient' | 'latter' | 'i' | 'imagination' | 'ardour' | 'train' | 'impulse' | 'ruin' | 'cursory' | 'glance' | 'father' | 'volume' | 'avidity' | 'i' | 'home' | 'care' | 'works' | 'author' | 'paracelsus' | 'albertus' | 'magnus' | 'i' | 'delight' | 'longing' | 'nature' | 'spite' | 'labour' | 'i' | 'newton' | 'child' | 'ocean' | 'truth' | 'branch' | 'philosophy' | 'i' | 'pursuit' | 'peasant' | 'face' | 'nature' | 'wonder' | 'mystery' | 'cause' | 'i' | 'citadel' | 'nature' | 'deeper' | 'word' | 'i' | 'disciple' | 'century' | 'i' | 'routine' | 'education' | 'geneva' | 'i' | 'degree' | 'regard' | 'father' | 'i' | 'blindness' | 'knowledge' | 'guidance' | 'diligence' | 'search' | 'stone' | 'elixir' | 'life' | 'attention' | 'wealth' | 'object' | 'glory' | 'discovery' | 'i' | 'disease' | 'frame' | 'render' | 'man' | 'death' | 'raising' | 'promise' | 'fulfillment' | 'failure' | 'inexperience' | 'mistake' | 'want' | 'skill' | 'fidelity' | 'time' | 'i' | 'contradictory' | 'slough' | 'knowledge' | 'imagination' | 'reasoning' | 'accident' | 'i' | 'house' | 'bekive' | 'thunderstorm' | 'jura' | 'thunder' | 'burst' | 'loudness' | 'i' | 'storm' | 'progress' | 'curiosity' | 'delight' | 'door' | 'i' | 'stream' | 'fire' | 'issue' | 'oak' | 'twenty' | 'house' | 'dazzling' | 'light' | 'oak' | 'nothing' | 'stump' | 'morning' | 'tree' | 'manner' | 'shock' | 'wood' | 'anything' | 'i' | 'electricity' | 'occasion' | 'man' | 'research' | 'philosophy' | 'catastrophe' | 'explanation' | 'theory' | 'subject' | 'electricity' | 'galvanism' | 'cornelius' | 'agrippa' | 'albertus' | 'magnus' | 'paracelsus' | 'imagination' | 'fatality' | 'overthrow' | 'nothing' | 'attention' | 'mind' | 'youth' | 'i' | 'history' | 'progeny' | 'deformed' | 'creation' | 'disdain' | 'science' | 'threshold' | 'knowledge' | 'mood' | 'mind' | 'i' | 'study' | 'science' | 'secure' | 'consideration' | 'prosperity' | 'ruin' | 'change' | 'inclination' | 'suggestion' | 'angel' | 'life' | 'effort' | 'spirit' | 'preservation' | 'storm' | 'victory' | 'tranquillity' | 'gladness' | 'soul' | 'relinquishing' | 'ancient' | 'i' | 'prosecution' | 'happiness' | 'disregard' | 'effort' | 'spirit' | 'destiny' | 'utter' | 'destruction' | 'chapter' | 'i' | 'age' | 'i' | 'student' | 'university' | 'ingolstadt' | 'i' | 'hitherto' | 'geneva' | 'father' | 'completion' | 'education' | 'i' | 'country' | 'departure' | 'date' | 'day' | 'misfortune' | 'life' | 'omen' | 'misery' | 'scarlet' | 'fever' | 'illness' | 'danger' | 'mother' | 'life' | 'favourite' | 'anxiety' | 'malignity' | 'distemper' | 'elizabeth' | 'imprudence' | 'preserver' | 'day' | 'mother' | 'fever' | 'event' | 'fortitude' | 'benignity' | 'elizabeth' | 'happiness' | 'prospect' | 'union' | 'expectation' | 'consolation' | 'father' | 'elizabeth' | 'love' | 'place' | 'alas' | 'i' | 'i' | 'i' | 'death' | 'hope' | 'meeting' | 'world' | 'calmly' | 'countenance' | 'affection' | 'death' | 'evil' | 'void' | 'soul' | 'despair' | 'countenance' | 'mind' | 'day' | 'part' | 'brightness' | 'eye' | 'sound' | 'voice' | 'ear' | 'lapse' | 'time' | 'reality' | 'evil' | 'bitterness' | 'grief' | 'hand' | 'rent' | 'connection' | 'sorrow' | 'time' | 'length' | 'grief' | 'indulgence' | 'necessity' | 'smile' | 'sacrilege' | 'mother' | 'course' | 'rest' | 'spoiler' | 'departure' | 'ingolstadt' | 'i' | 'father' | 'respite' | 'repose' | 'death' | 'house' | 'thick' | 'life' | 'i' | 'i' | 'sight' | 'degree' | 'grief' | 'comforter' | 'life' | 'courage' | 'zeal' | 'uncle' | 'time' | 'sunshine' | 'regret' | 'endeavours' | 'day' | 'departure' | 'length' | 'evening' | 'father' | 'student' | 'vain' | 'father' | 'trader' | 'idleness' | 'ruin' | 'ambition' | 'son' | 'henry' | 'misfortune' | 'education' | 'read' | 'kindling' | 'eye' | 'glance' | 'resolve' | 'commerce' | 'word' | 'farewell' | 'pretence' | 'repose' | 'fancying' | 'dawn' | 'i' | 'carriage' | 'father' | 'clerval' | 'hand' | 'elizabeth' | 'i' | 'playmate' | 'friend' | 'chaise' | 'i' | 'pleasure' | 'i' | 'university' | 'whither' | 'i' | 'protector' | 'life' | 'repugnance' | 'i' | 'elizabeth' | 'clerval' | 'company' | 'i' | 'journey' | 'i' | 'acquisition' | 'knowledge' | 'i' | 'home' | 'youth' | 'place' | 'world' | 'station' | 'i' | 'leisure' | 'journey' | 'fatiguing' | 'steeple' | 'town' | 'i' | 'apartment' | 'evening' | 'i' | 'morning' | 'i' | 'introduction' | 'visit' | 'chance' | 'influence' | 'angel' | 'destruction' | 'sway' | 'moment' | 'i' | 'krempe' | 'professor' | 'philosophy' | 'man' | 'science' | 'progress' | 'science' | 'philosophy' | 'i' | 'contempt' | 'professor' | 'time' | 'nonsense' | 'i' | 'minute' | 'krempe' | 'warmth' | 'instant' | 'memory' | 'god' | 'desert' | 'land' | 'one' | 'kind' | 'age' | 'disciple' | 'albertus' | 'magnus' | 'paracelsus' | 'sir' | 'list' | 'philosophy' | 'beginning' | 'week' | 'course' | 'philosophy' | 'waldman' | 'fellow' | 'professor' | 'chemistry' | 'alternate' | 'i' | 'i' | 'i' | 'professor' | 'shape' | 'mxperiod' | 'krempe' | 'man' | 'voice' | 'countenance' | 'teacher' | 'favour' | 'strain' | 'account' | 'i' | 'child' | 'i' | 'science' | 'confusion' | 'youth' | 'want' | 'guide' | 'i' | 'knowledge' | 'time' | 'i' | 'contempt' | 'philosophy' | 'science' | 'immortality' | 'power' | 'futile' | 'scene' | 'ambition' | 'inquirer' | 'annihilation' | 'interest' | 'science' | 'chiefly' | 'i' | 'boundless' | 'grandeur' | 'residence' | 'ingolstadt' | 'spent' | 'abode' | 'week' | 'thought' | 'information' | 'mxperiod' | 'krempe' | 'i' | 'deliver' | 'pulpit' | 'mxperiod' | 'waldman' | 'i' | 'town' | 'curiosity' | 'idleness' | 'lecturing' | 'room' | 'waldman' | 'professor' | 'colleague' | 'age' | 'expressive' | 'benevolence' | 'grey' | 'back' | 'head' | 'person' | 'erect' | 'voice' | 'i' | 'lecture' | 'recapitulation' | 'history' | 'chemistry' | 'learning' | 'view' | 'state' | 'science' | 'preparatory' | 'upon' | 'chemistry' | 'science' | 'nothing' | 'elixir' | 'life' | 'chimera' | 'dirt' | 'microscope' | 'nature' | 'blood' | 'nature' | 'air' | 'heaven' | 'earthquake' | 'world' | 'fate' | 'i' | 'soul' | 'enemy' | 'mechanism' | 'chord' | 'chord' | 'mind' | 'thought' | 'conception' | 'purpose' | 'soul' | 'frankenstein' | 'i' | 'way' | 'world' | 'creation' | 'i' | 'night' | 'state' | 'insurrection' | 'turmoil' | 'order' | 'arise' | 'i' | 'power' | 'dawn' | 'sleep' | 'awoke' | 'dream' | 'resolution' | 'science' | 'i' | 'talent' | 'day' | 'mxperiod' | 'waldman' | 'visit' | 'dignity' | 'mien' | 'lecture' | 'house' | 'affability' | 'kindness' | 'account' | 'i' | 'fellow' | 'professor' | 'attention' | 'narration' | 'cornelius' | 'agrippa' | 'paracelsus' | 'contempt' | 'krempe' | 'zeal' | 'knowledge' | 'task' | 'arrange' | 'degree' | 'light' | 'labours' | 'genius' | 'advantage' | 'mankind' | 'i' | 'statement' | 'presumption' | 'affectation' | 'lecture' | 'modesty' | 'deference' | 'youth' | 'instructor' | 'escape' | 'inexperience' | 'life' | 'enthusiasm' | 'labours' | 'i' | 'advice' | 'waldman' | 'disciple' | 'application' | 'ability' | 'i' | 'doubt' | 'success' | 'chemistry' | 'branch' | 'philosophy' | 'account' | 'i' | 'study' | 'time' | 'science' | 'man' | 'chemist' | 'department' | 'knowledge' | 'wish' | 'man' | 'science' | 'experimentalist' | 'i' | 'branch' | 'philosophy' | 'laboratory' | 'use' | 'i' | 'science' | 'mechanism' | 'list' | 'i' | 'leave' | 'day' | 'future' | 'destiny' | 'chapter' | 'day' | 'philosophy' | 'chemistry' | 'sense' | 'term' | 'occupation' | 'genius' | 'discrimination' | 'i' | 'acquaintance' | 'science' | 'university' | 'i' | 'mxperiod' | 'krempe' | 'deal' | 'sound' | 'sense' | 'information' | 'physiognomy' | 'waldman' | 'i' | 'friend' | 'gentleness' | 'dogmatism' | 'air' | 'frankness' | 'nature' | 'idea' | 'pedantry' | 'thousand' | 'path' | 'knowledge' | 'apprehension' | 'application' | 'fluctuating' | 'strength' | 'i' | 'light' | 'morning' | 'whilst' | 'i' | 'laboratory' | 'progress' | 'ardour' | 'astonishment' | 'proficiency' | 'professor' | 'krempe' | 'smile' | 'whilst' | 'mxperiod' | 'waldman' | 'exultation' | 'progress' | 'manner' | 'i' | 'visit' | 'heart' | 'soul' | 'pursuit' | 'none' | 'science' | 'nothing' | 'pursuit' | 'food' | 'discovery' | 'wonder' | 'mind' | 'capacity' | 'study' | 'proficiency' | 'study' | 'attainment' | 'object' | 'pursuit' | 'end' | 'improvement' | 'chemical' | 'admiration' | 'university' | 'i' | 'point' | 'theory' | 'practice' | 'philosophy' | 'ingolstadt' | 'residence' | 'thought' | 'town' | 'incident' | 'stay' | 'phenomena' | 'attention' | 'structure' | 'frame' | 'life' | 'whence' | 'principle' | 'life' | 'proceed' | 'question' | 'mystery' | 'brink' | 'cowardice' | 'carelessness' | 'i' | 'mind' | 'thenceforth' | 'philosophy' | 'i' | 'enthusiasm' | 'application' | 'study' | 'life' | 'recourse' | 'death' | 'i' | 'science' | 'anatomy' | 'i' | 'decay' | 'corruption' | 'body' | 'education' | 'father' | 'mind' | 'tale' | 'superstition' | 'apparition' | 'spirit' | 'darkness' | 'effect' | 'fancy' | 'churchyard' | 'receptacle' | 'life' | 'seat' | 'beauty' | 'strength' | 'food' | 'worm' | 'i' | 'cause' | 'progress' | 'decay' | 'attention' | 'delicacy' | 'i' | 'form' | 'man' | 'corruption' | 'death' | 'cheek' | 'life' | 'worm' | 'eye' | 'brain' | 'i' | 'minutiae' | 'causation' | 'change' | 'life' | 'death' | 'death' | 'life' | 'midst' | 'darkness' | 'light' | 'light' | 'i' | 'immensity' | 'prospect' | 'i' | 'genius' | 'science' | 'vision' | 'madman' | 'sun' | 'shine' | 'miracle' | 'discovery' | 'labour' | 'fatigue' | 'i' | 'cause' | 'generation' | 'life' | 'animation' | 'matter' | 'astonishment' | 'i' | 'discovery' | 'place' | 'rapture' | 'time' | 'labour' | 'summit' | 'consummation' | 'discovery' | 'i' | 'result' | 'study' | 'desire' | 'creation' | 'world' | 'grasp' | 'scene' | 'information' | 'i' | 'nature' | 'i' | 'object' | 'search' | 'i' | 'arabian' | 'passage' | 'life' | 'glimmering' | 'light' | 'eagerness' | 'wonder' | 'hope' | 'friend' | 'secret' | 'end' | 'story' | 'subject' | 'i' | 'i' | 'destruction' | 'misery' | 'learn' | 'example' | 'acquirement' | 'knowledge' | 'man' | 'town' | 'world' | 'nature' | 'i' | 'power' | 'i' | 'time' | 'manner' | 'i' | 'i' | 'capacity' | 'animation' | 'frame' | 'reception' | 'work' | 'difficulty' | 'labour' | 'i' | 'i' | 'creation' | 'simpler' | 'organization' | 'imagination' | 'success' | 'ability' | 'life' | 'animal' | 'man' | 'present' | 'command' | 'undertaking' | 'i' | 'i' | 'multitude' | 'work' | 'i' | 'improvement' | 'day' | 'place' | 'science' | 'i' | 'success' | 'magnitude' | 'complexity' | 'plan' | 'argument' | 'impracticability' | 'i' | 'creation' | 'minuteness' | 'hindrance' | 'speed' | 'i' | 'intention' | 'stature' | 'height' | 'determination' | 'i' | 'one' | 'variety' | 'hurricane' | 'enthusiasm' | 'success' | 'life' | 'death' | 'i' | 'torrent' | 'light' | 'world' | 'creator' | 'source' | 'father' | 'gratitude' | 'child' | 'i' | 'i' | 'i' | 'animation' | 'matter' | 'i' | 'process' | 'time' | 'i' | 'renew' | 'life' | 'death' | 'body' | 'corruption' | 'undertaking' | 'ardour' | 'cheek' | 'pale' | 'study' | 'person' | 'confinement' | 'brink' | 'certainty' | 'i' | 'clung' | 'hope' | 'day' | 'hour' | 'secret' | 'hope' | 'i' | 'moon' | 'midnight' | 'eagerness' | 'i' | 'nature' | 'toil' | 'i' | 'grave' | 'living' | 'animal' | 'lifeless' | 'clay' | 'limbs' | 'remembrance' | 'resistless' | 'i' | 'soul' | 'sensation' | 'pursuit' | 'passing' | 'trance' | 'acuteness' | 'stimulus' | 'i' | 'profane' | 'frame' | 'chamber' | 'cell' | 'top' | 'house' | 'gallery' | 'staircase' | 'i' | 'workshop' | 'creation' | 'employment' | 'dissecting' | 'room' | 'house' | 'nature' | 'turn' | 'occupation' | 'whilst' | 'eagerness' | 'i' | 'work' | 'conclusion' | 'summer' | 'i' | 'heart' | 'soul' | 'pursuit' | 'season' | 'harvest' | 'vintage' | 'nature' | 'i' | 'time' | 'silence' | 'father' | 'i' | 'affection' | 'interruption' | 'correspondence' | 'proof' | 'employment' | 'loathsome' | 'hold' | 'imagination' | 'i' | 'affection' | 'object' | 'habit' | 'nature' | 'thought' | 'father' | 'neglect' | 'vice' | 'faultiness' | 'part' | 'i' | 'blame' | 'perfection' | 'calm' | 'mind' | 'passion' | 'desire' | 'tranquillity' | 'pursuit' | 'knowledge' | 'exception' | 'rule' | 'study' | 'tendency' | 'taste' | 'alloy' | 'study' | 'mind' | 'rule' | 'man' | 'pursuit' | 'whatsoever' | 'tranquillity' | 'greece' | 'caesar' | 'country' | 'mexico' | 'peru' | 'i' | 'part' | 'tale' | 'father' | 'reproach' | 'notice' | 'science' | 'winter' | 'spring' | 'summer' | 'blossom' | 'occupation' | 'year' | 'work' | 'close' | 'day' | 'enthusiasm' | 'anxiety' | 'slavery' | 'trade' | 'artist' | 'employment' | 'night' | 'i' | 'fever' | 'degree' | 'fall' | 'leaf' | 'i' | 'i' | 'crime' | 'wreck' | 'i' | 'i' | 'energy' | 'exercise' | 'amusement' | 'disease' | 'creation' | 'chapter' | 'night' | 'november' | 'accomplishment' | 'anxiety' | 'life' | 'i' | 'spark' | 'thing' | 'morning' | 'rain' | 'candle' | 'glimmer' | 'light' | 'i' | 'eye' | 'creature' | 'motion' | 'catastrophe' | 'wretch' | 'care' | 'i' | 'proportion' | 'i' | 'beautiful' | 'god' | 'skin' | 'work' | 'hair' | 'whiteness' | 'contrast' | 'watery' | 'colour' | 'complexion' | 'life' | 'nature' | 'i' | 'purpose' | 'life' | 'inanimate' | 'body' | 'i' | 'rest' | 'health' | 'i' | 'ardour' | 'moderation' | 'i' | 'beauty' | 'dream' | 'horror' | 'disgust' | 'heart' | 'aspect' | 'i' | 'room' | 'time' | 'bed-chamber' | 'mind' | 'lassitude' | 'tumult' | 'i' | 'i' | 'bed' | 'forgetfulness' | 'vain' | 'i' | 'dreams' | 'elizabeth' | 'bloom' | 'health' | 'ingolstadt' | 'i' | 'i' | 'kiss' | 'hue' | 'death' | 'corpse' | 'mother' | 'shroud' | 'form' | 'i' | 'crawling' | 'flannel' | 'i' | 'sleep' | 'horror' | 'dew' | 'forehead' | 'limb' | 'dim' | 'light' | 'moon' | 'way' | 'window' | 'wretch' | 'monster' | 'i' | 'curtain' | 'bed' | 'jaws' | 'inarticulate' | 'grin' | 'cheeks' | 'hand' | 'i' | 'i' | 'refuge' | 'courtyard' | 'belonging' | 'house' | 'i' | 'i' | 'rest' | 'night' | 'agitation' | 'sound' | 'approach' | 'corpse' | 'i' | 'life' | 'mortal' | 'horror' | 'countenance' | 'mummy' | 'animation' | 'wretch' | 'i' | 'motion' | 'thing' | 'i' | 'night' | 'beat' | 'i' | 'palpitation' | 'artery' | 'sank' | 'ground' | 'languor' | 'weakness' | 'horror' | 'i' | 'bitterness' | 'disappointment' | 'food' | 'rest' | 'space' | 'hell' | 'change' | 'overthrow' | 'morning' | 'dismal' | 'wet' | 'length' | 'sleepless' | 'church' | 'ingolstadt' | 'steeple' | 'clock' | 'hour' | 'porter' | 'court' | 'night' | 'asylum' | 'wretch' | 'i' | 'turning' | 'street' | 'view' | 'i' | 'return' | 'apartment' | 'i' | 'rain' | 'sky' | 'manner' | 'time' | 'exercise' | 'load' | 'mind' | 'i' | 'conception' | 'i' | 'i' | 'heart' | 'sickness' | 'fear' | 'road' | 'walk' | 'fear' | 'dread' | 'round' | 'head' | 'fiend' | 'doth' | 'mariner' | 'length' | 'opposite' | 'inn' | 'coach' | 'end' | 'street' | 'diligence' | 'i' | 'door' | 'henry' | 'clerval' | 'frankenstein' | 'i' | 'moment' | 'alighting' | 'nothing' | 'delight' | 'clerval' | 'presence' | 'father' | 'elizabeth' | 'home' | 'recollection' | 'i' | 'hand' | 'moment' | 'forgot' | 'horror' | 'misfortune' | 'time' | 'calm' | 'joy' | 'i' | 'friend' | 'manner' | 'college' | 'time' | 'fortune' | 'difficulty' | 'father' | 'knowledge' | 'art' | 'bookkeeping' | 'i' | 'answer' | 'schoolmaster' | 'vicar' | 'wakefield' | 'i' | 'year' | 'greek' | 'affection' | 'length' | 'dislike' | 'learning' | 'voyage' | 'discovery' | 'land' | 'knowledge' | 'delight' | 'father' | 'account' | 'frankenstein' | 'face' | 'i' | 'remark' | 'occupation' | 'rest' | 'end' | 'length' | 'i' | 'night' | 'i' | 'pace' | 'college' | 'i' | 'thought' | 'creature' | 'i' | 'apartment' | 'i' | 'monster' | 'henry' | 'bottom' | 'i' | 'room' | 'hand' | 'lock' | 'door' | 'i' | 'shivering' | 'door' | 'spectre' | 'side' | 'nothing' | 'i' | 'apartment' | 'bedroom' | 'guest' | 'i' | 'fortune' | 'i' | 'enemy' | 'i' | 'joy' | 'room' | 'servant' | 'breakfast' | 'i' | 'tingle' | 'excess' | 'sensitiveness' | 'beat' | 'i' | 'instant' | 'place' | 'aloud' | 'clerval' | 'arrival' | 'wildness' | 'loud' | 'laughter' | 'victor' | 'sake' | 'matter' | 'manner' | 'cause' | 'i' | 'spectre' | 'glide' | 'room' | 'i' | 'monster' | 'fit' | 'clerval' | 'meeting' | 'joy' | 'i' | 'witness' | 'grief' | 'i' | 'time' | 'commencement' | 'fever' | 'time' | 'henry' | 'nurse' | 'i' | 'age' | 'unfitness' | 'journey' | 'sickness' | 'elizabeth' | 'grief' | 'extent' | 'disorder' | 'i' | 'kind' | 'nurse' | 'firm' | 'hope' | 'recovery' | 'harm' | 'action' | 'i' | 'reality' | 'nothing' | 'friend' | 'life' | 'form' | 'monster' | 'i' | 'existence' | 'henry' | 'imagination' | 'pertinacity' | 'subject' | 'disorder' | 'origin' | 'event' | 'friend' | 'i' | 'time' | 'i' | 'kind' | 'pleasure' | 'i' | 'fallen' | 'forth' | 'window' | 'divine' | 'spring' | 'season' | 'convalescence' | 'i' | 'joy' | 'affection' | 'revive' | 'bosom' | 'gloom' | 'time' | 'i' | 'passion' | 'clerval' | 'i' | 'kind' | 'winter' | 'study' | 'room' | 'remorse' | 'disappointment' | 'i' | 'occasion' | 'i' | 'subject' | 'i' | 'subject' | 'object' | 'i' | 'clerval' | 'change' | 'colour' | 'i' | 'father' | 'cousin' | 'letter' | 'handwriting' | 'silence' | 'henry' | 'love' | 'temper' | 'friend' | 'letter' | 'cousin' | 'chapter' | 'clerval' | 'letter' | 'elizabeth' | 'cousin' | 'kind' | 'henry' | 'account' | 'pen' | 'word' | 'victor' | 'time' | 'post' | 'line' | 'uncle' | 'journey' | 'journey' | 'figure' | 'task' | 'sickbed' | 'nurse' | 'minister' | 'care' | 'affection' | 'cousin' | 'clerval' | 'intelligence' | 'handwriting' | 'home' | 'health' | 'care' | 'benevolent' | 'countenance' | 'improvement' | 'ernest' | 'activity' | 'spirit' | 'service' | 'part' | 'elder' | 'brother' | 'uncle' | 'idea' | 'career' | 'country' | 'application' | 'study' | 'fetter' | 'time' | 'air' | 'lake' | 'point' | 'permit' | 'profession' | 'alteration' | 'growth' | 'place' | 'lake' | 'placid' | 'home' | 'time' | 'none' | 'kind' | 'change' | 'place' | 'household' | 'occasion' | 'justine' | 'moritz' | 'family' | 'history' | 'madame' | 'moritz' | 'mother' | 'widow' | 'justine' | 'girl' | 'favourite' | 'father' | 'perversity' | 'mother' | 'death' | 'mxperiod' | 'moritz' | 'aunt' | 'justine' | 'age' | 'mother' | 'house' | 'country' | 'simpler' | 'hence' | 'distinction' | 'servant' | 'geneva' | 'thing' | 'servant' | 'france' | 'england' | 'justine' | 'family' | 'servant' | 'condition' | 'country' | 'idea' | 'ignorance' | 'sacrifice' | 'dignity' | 'justine' | 'favourite' | 'humour' | 'glance' | 'justine' | 'reason' | 'beauty' | 'angelica' | 'aunt' | 'attachment' | 'education' | 'superior' | 'benefit' | 'justine' | 'creature' | 'world' | 'i' | 'pass' | 'protectress' | 'disposition' | 'attention' | 'gesture' | 'aunt' | 'model' | 'excellence' | 'phraseology' | 'aunt' | 'grief' | 'justine' | 'illness' | 'affection' | 'justine' | 'sister' | 'mother' | 'exception' | 'daughter' | 'childless' | 'conscience' | 'woman' | 'judgement' | 'partiality' | 'catholic' | 'confessor' | 'idea' | 'departure' | 'ingolstadt' | 'justine' | 'home' | 'repentant' | 'mother' | 'girl' | 'house' | 'death' | 'aunt' | 'grief' | 'softness' | 'mildness' | 'vivacity' | 'residence' | 'house' | 'nature' | 'gaiety' | 'woman' | 'repentance' | 'justine' | 'oftener' | 'sister' | 'fretting' | 'length' | 'moritz' | 'decline' | 'irritability' | 'peace' | 'approach' | 'weather' | 'beginning' | 'winter' | 'justine' | 'assure' | 'tenderly' | 'i' | 'mein' | 'expression' | 'aunt' | 'i' | 'cousin' | 'william' | 'age' | 'hair' | 'cheek' | 'health' | 'biron' | 'favourite' | 'girl' | 'age' | 'victor' | 'gossip' | 'geneva' | 'mansfield' | 'congratulatory' | 'marriage' | 'englishman' | 'john' | 'melbourne' | 'esq' | 'sister' | 'manon' | 'duvillard' | 'banker' | 'autumn' | 'schoolfellow' | 'manoir' | 'departure' | 'clerval' | 'geneva' | 'point' | 'frenchwoman' | 'madame' | 'tavernier' | 'widow' | 'manoir' | 'favourite' | 'everybody' | 'cousin' | 'anxiety' | 'conclude' | 'write' | 'victor' | 'line' | 'word' | 'blessing' | 'kindness' | 'affection' | 'adieu' | 'cousin' | 'care' | 'self' | 'entreat' | 'lavenza' | 'geneva' | 'march' | 'dear' | 'elizabeth' | 'i' | 'i' | 'letter' | 'i' | 'anxiety' | 'exertion' | 'convalescence' | 'fortnight' | 'i' | 'chamber' | 'recovery' | 'clerval' | 'university' | 'kind' | 'usage' | 'mind' | 'night' | 'end' | 'beginning' | 'i' | 'violent' | 'name' | 'philosophy' | 'i' | 'health' | 'sight' | 'chemical' | 'instrument' | 'agony' | 'henry' | 'apparatus' | 'view' | 'apartment' | 'i' | 'dislike' | 'room' | 'laboratory' | 'clerval' | 'avail' | 'i' | 'mxperiod' | 'waldman' | 'torture' | 'kindness' | 'warmth' | 'progress' | 'i' | 'i' | 'subject' | 'cause' | 'subject' | 'improvement' | 'science' | 'desire' | 'i' | 'death' | 'pain' | 'i' | 'clerval' | 'subject' | 'excuse' | 'ignorance' | 'conversation' | 'turn' | 'i' | 'friend' | 'heart' | 'secret' | 'mixture' | 'affection' | 'reverence' | 'i' | 'event' | 'recollection' | 'detail' | 'deeply' | 'mxperiod' | 'krempe' | 'condition' | 'time' | 'sensitiveness' | 'blunt' | 'pain' | 'approbation' | 'waldman' | 'd' | 'fellow' | 'mxperiod' | 'clerval' | 'assure' | 'ay' | 'stare' | 'youngster' | 'cornelius' | 'agrippa' | 'gospel' | 'head' | 'university' | 'countenance' | 'ay' | 'ay' | 'face' | 'expressive' | 'suffering' | 'frankenstein' | 'quality' | 'man' | 'diffident' | 'clerval' | 'i' | 'time' | 'krempe' | 'eulogy' | 'conversation' | 'subject' | 'clerval' | 'science' | 'university' | 'design' | 'master' | 'field' | 'plan' | 'life' | 'career' | 'east' | 'scope' | 'spirit' | 'enterprise' | 'sanscrit' | 'attention' | 'i' | 'idleness' | 'i' | 'reflection' | 'i' | 'relief' | 'fellow-pupil' | 'friend' | 'instruction' | 'consolation' | 'i' | 'knowledge' | 'i' | 'use' | 'amusement' | 'i' | 'meaning' | 'melancholy' | 'joy' | 'elevating' | 'degree' | 'i' | 'country' | 'life' | 'sun' | 'garden' | 'enemy' | 'fire' | 'heart' | 'manly' | 'poetry' | 'greece' | 'rome' | 'summer' | 'return' | 'end' | 'autumn' | 'winter' | 'snow' | 'journey' | 'spring' | 'delay' | 'i' | 'town' | 'return' | 'unwillingness' | 'clerval' | 'place' | 'winter' | 'spring' | 'beauty' | 'dilatoriness' | 'month' | 'letter' | 'date' | 'departure' | 'henry' | 'tour' | 'ingolstadt' | 'farewell' | 'country' | 'i' | 'i' | 'pleasure' | 'proposition' | 'i' | 'fond' | 'exercise' | 'clerval' | 'companion' | 'ramble' | 'nature' | 'i' | 'country' | 'fortnight' | 'health' | 'strength' | 'air' | 'i' | 'progress' | 'conversation' | 'friend' | 'study' | 'intercourse' | 'clerval' | 'forth' | 'heart' | 'aspect' | 'nature' | 'friend' | 'mind' | 'level' | 'pursuit' | 'gentleness' | 'affection' | 'i' | 'creature' | 'sorrow' | 'care' | 'nature' | 'power' | 'sky' | 'ecstasy' | 'season' | 'spring' | 'summer' | 'bud' | 'i' | 'year' | 'burden' | 'henry' | 'gaiety' | 'soul' | 'mind' | 'occasion' | 'conversation' | 'imagination' | 'imitation' | 'fancy' | 'passion' | 'ingenuity' | 'college' | 'afternoon' | 'gay' | 'i' | 'joy' | 'hilarity' | 'return' | 'i' | 'letter' | 'father' | 'victor' | 'letter' | 'date' | 'return' | 'day' | 'i' | 'kindness' | 'surprise' | 'son' | 'welcome' | 'wretchedness' | 'victor' | 'misfortune' | 'absence' | 'inflict' | 'pain' | 'son' | 'news' | 'eye' | 'page' | 'william' | 'child' | 'heart' | 'victor' | 'i' | 'transaction' | 'niece' | 'plainpalais' | 'evening' | 'walk' | 'william' | 'seat' | 'brother' | 'william' | 'time' | 'account' | 'night' | 'elizabeth' | 'house' | 'i' | 'i' | 'boy' | 'night' | 'morning' | 'i' | 'boy' | 'night' | 'i' | 'health' | 'grass' | 'livid' | 'motionless' | 'print' | 'finger' | 'neck' | 'home' | 'anguish' | 'countenance' | 'corpse' | 'i' | 'room' | 'neck' | 'victim' | 'child' | 'difficulty' | 'evening' | 'william' | 'miniature' | 'mother' | 'picture' | 'temptation' | 'murderer' | 'deed' | 'trace' | 'present' | 'william' | 'come' | 'victor' | 'elizabeth' | 'cause' | 'death' | 'pierce' | 'heart' | 'motive' | 'son' | 'comforter' | 'mother' | 'alas' | 'victor' | 'i' | 'god' | 'cruel' | 'death' | 'darling' | 'come' | 'victor' | 'vengeance' | 'assassin' | 'peace' | 'gentleness' | 'festering' | 'house' | 'mourning' | 'friend' | 'kindness' | 'affection' | 'affectionate' | 'father' | 'frankenstein' | 'geneva' | 'clerval' | 'countenance' | 'letter' | 'despair' | 'joy' | 'i' | 'i' | 'letter' | 'table' | 'face' | 'frankenstein' | 'henry' | 'bitterness' | 'friend' | 'letter' | 'i' | 'room' | 'agitation' | 'clerval' | 'account' | 'misfortune' | 'i' | 'consolation' | 'friend' | 'disaster' | 'come' | 'henry' | 'order' | 'walk' | 'clerval' | 'consolation' | 'heartfelt' | 'sympathy' | 'william' | 'child' | 'angel' | 'mother' | 'beauty' | 'loss' | 'innocence' | 'fellow' | 'consolation' | 'rest' | 'pang' | 'end' | 'sod' | 'form' | 'pain' | 'subject' | 'pity' | 'mind' | 'i' | 'solitude' | 'cabriolet' | 'bade' | 'farewell' | 'friend' | 'journey' | 'i' | 'i' | 'town' | 'i' | 'progress' | 'i' | 'multitude' | 'mind' | 'i' | 'youth' | 'thing' | 'time' | 'change' | 'place' | 'fear' | 'advance' | 'thousand' | 'nameless' | 'i' | 'lausanne' | 'state' | 'mind' | 'i' | 'lake' | 'snowy' | 'nature' | 'calm' | 'scene' | 'i' | 'journey' | 'geneva' | 'road' | 'ran' | 'side' | 'lake' | 'i' | 'town' | 'jura' | 'summit' | 'blanc' | 'child' | 'lake' | 'wanderer' | 'sky' | 'lake' | 'placid' | 'peace' | 'unhappiness' | 'fear' | 'friend' | 'happiness' | 'think' | 'pleasure' | 'country' | 'country' | 'delight' | 'i' | 'lake' | 'home' | 'grief' | 'fear' | 'night' | 'i' | 'dark' | 'i' | 'picture' | 'scene' | 'evil' | 'i' | 'i' | 'alas' | 'i' | 'circumstance' | 'misery' | 'i' | 'i' | 'part' | 'i' | 'i' | 'geneva' | 'town' | 'i' | 'night' | 'secheron' | 'village' | 'distance' | 'league' | 'city' | 'sky' | 'i' | 'spot' | 'william' | 'i' | 'town' | 'i' | 'lake' | 'boat' | 'plainpalais' | 'voyage' | 'i' | 'playing' | 'summit' | 'blanc' | 'storm' | 'landing' | 'i' | 'hill' | 'i' | 'progress' | 'rain' | 'violence' | 'i' | 'seat' | 'darkness' | 'storm' | 'minute' | 'thunder' | 'burst' | 'crash' | 'head' | 'saleve' | 'juras' | 'alps' | 'savoy' | 'lake' | 'sheet' | 'fire' | 'thing' | 'pitchy' | 'darkness' | 'eye' | 'flash' | 'storm' | 'case' | 'switzerland' | 'storm' | 'hung' | 'town' | 'part' | 'lake' | 'promontory' | 'belvrie' | 'village' | 'copet' | 'storm' | 'jura' | 'faint' | 'mole' | 'mountain' | 'east' | 'lake' | 'i' | 'step' | 'war' | 'sky' | 'i' | 'aloud' | 'william' | 'angel' | 'dirge' | 'i' | 'i' | 'gloom' | 'figure' | 'stole' | 'clump' | 'i' | 'flash' | 'object' | 'shape' | 'stature' | 'deformity' | 'aspect' | 'humanity' | 'wretch' | 'daemon' | 'i' | 'life' | 'conception' | 'murderer' | 'brother' | 'sooner' | 'idea' | 'cross' | 'imagination' | 'truth' | 'i' | 'tree' | 'support' | 'figure' | 'gloom' | 'nothing' | 'shape' | 'child' | 'murderer' | 'i' | 'presence' | 'idea' | 'proof' | 'fact' | 'thought' | 'devil' | 'vain' | 'flash' | 'ascent' | 'mont' | 'saleve' | 'hill' | 'plainpalais' | 'south' | 'summit' | 'i' | 'motionless' | 'thunder' | 'rain' | 'scene' | 'darkness' | 'i' | 'mind' | 'train' | 'progress' | 'creation' | 'appearance' | 'bedside' | 'departure' | 'night' | 'life' | 'crime' | 'i' | 'world' | 'wretch' | 'delight' | 'carnage' | 'misery' | 'brother' | 'one' | 'i' | 'remainder' | 'night' | 'spent' | 'air' | 'inconvenience' | 'weather' | 'imagination' | 'evil' | 'despair' | 'i' | 'i' | 'mankind' | 'power' | 'effect' | 'horror' | 'deed' | 'light' | 'vampire' | 'spirit' | 'grave' | 'day' | 'town' | 'i' | 'house' | 'thought' | 'knew' | 'murderer' | 'cause' | 'pursuit' | 'i' | 'story' | 'i' | 'i' | 'life' | 'midnight' | 'mountain' | 'i' | 'fever' | 'i' | 'time' | 'i' | 'creation' | 'air' | 'delirium' | 'otherwise' | 'i' | 'relation' | 'i' | 'insanity' | 'nature' | 'animal' | 'pursuit' | 'use' | 'creature' | 'mont' | 'saleve' | 'morning' | 'i' | 'house' | 'i' | 'family' | 'library' | 'hour' | 'dream' | 'trace' | 'stood' | 'place' | 'i' | 'father' | 'departure' | 'ingolstadt' | 'parent' | 'picture' | 'mother' | 'mantel-piece' | 'subject' | 'caroline' | 'beaufort' | 'agony' | 'despair' | 'coffin' | 'father' | 'garb' | 'pale' | 'air' | 'dignity' | 'beauty' | 'sentiment' | 'pity' | 'picture' | 'miniature' | 'william' | 'i' | 'i' | 'welcome' | 'victor' | 'ah' | 'wish' | 'share' | 'misery' | 'nothing' | 'presence' | 'father' | 'misfortune' | 'vain' | 'william' | 'darling' | 'pride' | 'sense' | 'agony' | 'crept' | 'frame' | 'i' | 'wretchedness' | 'home' | 'reality' | 'disaster' | 'i' | 'father' | 'i' | 'cousin' | 'consolation' | 'death' | 'brother' | 'murderer' | 'murderer' | 'god' | 'one' | 'mountain-stream' | 'straw' | 'i' | 'night' | 'i' | 'brother' | 'wonder' | 'discovery' | 'misery' | 'one' | 'evidence' | 'credit' | 'justine' | 'moritz' | 'fond' | 'family' | 'crime' | 'justine' | 'moritz' | 'girl' | 'one' | 'one' | 'conviction' | 'behaviour' | 'evidence' | 'weight' | 'hope' | 'doubt' | 'today' | 'morning' | 'murder' | 'william' | 'justine' | 'ill' | 'bed' | 'interval' | 'apparel' | 'night' | 'murder' | 'pocket' | 'picture' | 'mother' | 'temptation' | 'murderer' | 'servant' | 'word' | 'family' | 'magistrate' | 'deposition' | 'justine' | 'fact' | 'girl' | 'suspicion' | 'measure' | 'confusion' | 'manner' | 'tale' | 'faith' | 'murderer' | 'justine' | 'justine' | 'father' | 'i' | 'countenance' | 'greeting' | 'topic' | 'disaster' | 'god' | 'papa' | 'victor' | 'murderer' | 'william' | 'father' | 'depravity' | 'ungratitude' | 'i' | 'father' | 'justine' | 'forbid' | 'today' | 'hope' | 'hope' | 'speech' | 'i' | 'mind' | 'justine' | 'human' | 'guiltless' | 'murder' | 'i' | 'fear' | 'evidence' | 'tale' | 'horror' | 'madness' | 'vulgar' | 'i' | 'creator' | 'existence' | 'living' | 'monument' | 'presumption' | 'rash' | 'ignorance' | 'i' | 'world' | 'elizabeth' | 'time' | 'i' | 'loveliness' | 'beauty' | 'candour' | 'vivacity' | 'expression' | 'sensibility' | 'intellect' | 'affection' | 'arrival' | 'cousin' | 'hope' | 'justine' | 'alas' | 'crime' | 'i' | 'innocence' | 'i' | 'misfortune' | 'boy' | 'girl' | 'love' | 'fate' | 'joy' | 'death' | 'william' | 'elizabeth' | 'i' | 'nothing' | 'assurance' | 'acquittal' | 'kind' | 'guilt' | 'manner' | 'hopeless' | 'despairing' | 'niece' | 'father' | 'justice' | 'activity' | 'shadow' | 'partiality' | 'chapter' | 'oclock' | 'trial' | 'commence' | 'father' | 'rest' | 'family' | 'i' | 'court' | 'whole' | 'mockery' | 'justice' | 'i' | 'torture' | 'result' | 'curiosity' | 'death' | 'smiling' | 'babe' | 'innocence' | 'joy' | 'aggravation' | 'infamy' | 'murder' | 'memorable' | 'horror' | 'justine' | 'girl' | 'merit' | 'life' | 'grave' | 'cause' | 'crime' | 'i' | 'declaration' | 'madman' | 'appearance' | 'justine' | 'mourning' | 'countenance' | 'solemnity' | 'innocence' | 'kindness' | 'beauty' | 'imagination' | 'enormity' | 'tranquil' | 'tranquillity' | 'confusion' | 'proof' | 'guilt' | 'mind' | 'appearance' | 'courage' | 'court' | 'tear' | 'eye' | 'look' | 'affection' | 'guiltlessness' | 'trial' | 'advocate' | 'charge' | 'anyone' | 'proof' | 'innocence' | 'i' | 'whole' | 'night' | 'murder' | 'morning' | 'spot' | 'body' | 'child' | 'woman' | 'answer' | 'house' | 'oclock' | 'night' | 'child' | 'anything' | 'body' | 'bed' | 'picture' | 'servant' | 'pocket' | 'elizabeth' | 'voice' | 'hour' | 'child' | 'neck' | 'murmur' | 'horror' | 'indignation' | 'court' | 'justine' | 'defence' | 'trial' | 'countenance' | 'surprise' | 'horror' | 'misery' | 'voice' | 'god' | 'innocence' | 'plain' | 'explanation' | 'character' | 'i' | 'interpretation' | 'circumstance' | 'permission' | 'elizabeth' | 'evening' | 'night' | 'murder' | 'house' | 'aunt' | 'chene' | 'village' | 'league' | 'geneva' | 'return' | 'oclock' | 'man' | 'anything' | 'child' | 'account' | 'geneva' | 'night' | 'barn' | 'belonging' | 'cottage' | 'night' | 'morning' | 'asylum' | 'brother' | 'spot' | 'body' | 'knowledge' | 'market-woman' | 'sleepless' | 'night' | 'fate' | 'william' | 'picture' | 'account' | 'i' | 'victim' | 'circumstance' | 'weighs' | 'power' | 'ignorance' | 'i' | 'pocket' | 'enemy' | 'earth' | 'none' | 'murderer' | 'place' | 'i' | 'opportunity' | 'i' | 'jewel' | 'part' | 'cause' | 'justice' | 'room' | 'hope' | 'permission' | 'character' | 'testimony' | 'guilt' | 'i' | 'i' | 'salvation' | 'innocence' | 'fear' | 'hatred' | 'crime' | 'resource' | 'conduct' | 'permission' | 'court' | 'i' | 'cousin' | 'child' | 'sister' | 'i' | 'birth' | 'indecent' | 'occasion' | 'creature' | 'cowardice' | 'i' | 'i' | 'character' | 'i' | 'house' | 'time' | 'period' | 'benevolent' | 'madame' | 'frankenstein' | 'aunt' | 'illness' | 'affection' | 'care' | 'mother' | 'illness' | 'manner' | 'admiration' | 'house' | 'family' | 'child' | 'mother' | 'part' | 'i' | 'evidence' | 'innocence' | 'temptation' | 'action' | 'bauble' | 'chief' | 'proof' | 'i' | 'esteem' | 'value' | 'murmur' | 'approbation' | 'simple' | 'appeal' | 'interference' | 'favour' | 'justine' | 'indignation' | 'violence' | 'ingratitude' | 'spoke' | 'agitation' | 'anguish' | 'trial' | 'i' | 'innocence' | 'demon' | 'i' | 'doubt' | 'brother' | 'sport' | 'innocent' | 'death' | 'ignominy' | 'i' | 'horror' | 'situation' | 'i' | 'voice' | 'victim' | 'court' | 'agony' | 'mine' | 'innocence' | 'remorse' | 'tore' | 'bosom' | 'hold' | 'night' | 'wretchedness' | 'morning' | 'i' | 'court' | 'throat' | 'i' | 'question' | 'i' | 'officer' | 'cause' | 'visit' | 'justine' | 'i' | 'i' | 'i' | 'horror' | 'idea' | 'despair' | 'i' | 'person' | 'i' | 'justine' | 'guilt' | 'evidence' | 'case' | 'glad' | 'none' | 'evidence' | 'intelligence' | 'mad' | 'world' | 'object' | 'i' | 'home' | 'result' | 'cousin' | 'i' | 'blow' | 'innocence' | 'alas' | 'goodness' | 'justine' | 'sister' | 'innocence' | 'severity' | 'guile' | 'murder' | 'victim' | 'desire' | 'cousin' | 'father' | 'judgment' | 'elizabeth' | 'i' | 'victor' | 'idea' | 'visit' | 'torture' | 'i' | 'prison' | 'chamber' | 'beheld' | 'justine' | 'straw' | 'end' | 'head' | 'enter' | 'elizabeth' | 'cousin' | 'wept' | 'justine' | 'consolation' | 'innocence' | 'i' | 'i' | 'i' | 'murderer' | 'voice' | 'sobs' | 'rise' | 'girl' | 'elizabeth' | 'i' | 'evidence' | 'guilt' | 'report' | 'justine' | 'nothing' | 'confidence' | 'moment' | 'confession' | 'i' | 'confess' | 'lie' | 'i' | 'i' | 'absolution' | 'falsehood' | 'heart' | 'god' | 'i' | 'confessor' | 'i' | 'monster' | 'i' | 'excommunication' | 'hell' | 'fire' | 'lady' | 'i' | 'none' | 'wretch' | 'perdition' | 'hour' | 'i' | 'lie' | 'horror' | 'lady' | 'justine' | 'aunt' | 'creature' | 'crime' | 'none' | 'devil' | 'william' | 'dearest' | 'child' | 'i' | 'heaven' | 'i' | 'death' | 'justine' | 'moment' | 'girl' | 'i' | 'innocence' | 'i' | 'stony' | 'playfellow' | 'companion' | 'sister' | 'scaffold' | 'i' | 'misfortune' | 'justine' | 'head' | 'pang' | 'god' | 'weakness' | 'courage' | 'i' | 'world' | 'fate' | 'learn' | 'lady' | 'patience' | 'heaven' | 'conversation' | 'i' | 'corner' | 'prison' | 'room' | 'i' | 'anguish' | 'despair' | 'talk' | 'victim' | 'morrow' | 'boundary' | 'life' | 'death' | 'i' | 'agony' | 'i' | 'groan' | 'soul' | 'justine' | 'sir' | 'kind' | 'hope' | 'i' | 'i' | 'justine' | 'elizabeth' | 'innocence' | 'i' | 'credit' | 'gratitude' | 'kindness' | 'affection' | 'wretch' | 'i' | 'misfortune' | 'feel' | 'i' | 'peace' | 'innocence' | 'lady' | 'cousin' | 'sufferer' | 'resignation' | 'murderer' | 'worm' | 'alive' | 'bosom' | 'hope' | 'consolation' | 'elizabeth' | 'misery' | 'innocence' | 'cloud' | 'moon' | 'while' | 'brightness' | 'despair' | 'core' | 'heart' | 'hell' | 'nothing' | 'justine' | 'difficulty' | 'elizabeth' | 'i' | 'world' | 'misery' | 'justine' | 'air' | 'cheerfulness' | 'difficulty' | 'voice' | 'emotion' | 'farewell' | 'lady' | 'elizabeth' | 'bounty' | 'bless' | 'preserve' | 'misfortune' | 'morrow' | 'justine' | 'eloquence' | 'conviction' | 'criminality' | 'sufferer' | 'passionate' | 'i' | 'harsh' | 'reasoning' | 'avowal' | 'madman' | 'sentence' | 'victim' | 'scaffold' | 'murderess' | 'heart' | 'i' | 'grief' | 'elizabeth' | 'desolation' | 'home' | 'work' | 'ye' | 'weep' | 'wail' | 'sound' | 'frankenstein' | 'son' | 'kinsman' | 'friend' | 'drop' | 'blood' | 'sense' | 'joy' | 'air' | 'life' | 'fate' | 'destruction' | 'pause' | 'peace' | 'grave' | 'soul' | 'remorse' | 'horror' | 'despair' | 'vain' | 'sorrow' | 'william' | 'justine' | 'hapless' | 'chapter' | 'nothing' | 'mind' | 'succession' | 'calmness' | 'inaction' | 'certainty' | 'soul' | 'hope' | 'fear' | 'justine' | 'i' | 'blood' | 'weight' | 'despair' | 'remorse' | 'heart' | 'nothing' | 'spirit' | 'i' | 'description' | 'i' | 'heart' | 'kindness' | 'love' | 'virtue' | 'i' | 'life' | 'moment' | 'i' | 'practice' | 'serenity' | 'conscience' | 'self-satisfaction' | 'thence' | 'promise' | 'i' | 'remorse' | 'sense' | 'guilt' | 'hell' | 'language' | 'state' | 'mind' | 'health' | 'shock' | 'i' | 'face' | 'man' | 'sound' | 'joy' | 'complacency' | 'torture' | 'solitude' | 'consolation' | 'solitude' | 'father' | 'pain' | 'alteration' | 'perceptible' | 'disposition' | 'conscience' | 'life' | 'fortitude' | 'awaken' | 'courage' | 'dark' | 'cloud' | 'victor' | 'i' | 'one' | 'child' | 'brother' | 'duty' | 'unhappiness' | 'appearance' | 'immoderate' | 'grief' | 'duty' | 'sorrow' | 'improvement' | 'enjoyment' | 'discharge' | 'usefulness' | 'man' | 'society' | 'advice' | 'case' | 'i' | 'grief' | 'remorse' | 'bitterness' | 'terror' | 'alarm' | 'i' | 'father' | 'look' | 'despair' | 'endeavour' | 'view' | 'time' | 'house' | 'change' | 'shutting' | 'oclock' | 'impossibility' | 'lake' | 'hour' | 'residence' | 'i' | 'rest' | 'family' | 'night' | 'i' | 'boat' | 'water' | 'i' | 'wind' | 'middle' | 'lake' | 'i' | 'boat' | 'course' | 'way' | 'i' | 'peace' | 'thing' | 'restless' | 'scene' | 'bat' | 'harsh' | 'croaking' | 'i' | 'shore' | 'i' | 'lake' | 'i' | 'thought' | 'heroic' | 'existence' | 'mine' | 'i' | 'father' | 'brother' | 'base' | 'desertion' | 'malice' | 'fiend' | 'i' | 'peace' | 'mind' | 'i' | 'consolation' | 'happiness' | 'hope' | 'i' | 'author' | 'i' | 'fear' | 'monster' | 'i' | 'wickedness' | 'i' | 'feeling' | 'signal' | 'crime' | 'enormity' | 'recollection' | 'past' | 'scope' | 'fear' | 'anything' | 'abhorrence' | 'fiend' | 'thought' | 'life' | 'i' | 'i' | 'malice' | 'moderation' | 'i' | 'pilgrimage' | 'peak' | 'base' | 'i' | 'extent' | 'abhorrence' | 'head' | 'william' | 'justine' | 'house' | 'house' | 'health' | 'horror' | 'elizabeth' | 'desponding' | 'delight' | 'pleasure' | 'sacrilege' | 'woe' | 'tribute' | 'creature' | 'youth' | 'lake' | 'ecstasy' | 'earth' | 'dimming' | 'influence' | 'dearest' | 'i' | 'cousin' | 'death' | 'justine' | 'moritz' | 'world' | 'i' | 'vice' | 'injustice' | 'heard' | 'reason' | 'imagination' | 'misery' | 'home' | 'blood' | 'everybody' | 'girl' | 'crime' | 'sake' | 'son' | 'benefactor' | 'friend' | 'child' | 'birth' | 'i' | 'death' | 'i' | 'creature' | 'unfit' | 'society' | 'i' | 'opinion' | 'victor' | 'falsehood' | 'truth' | 'happiness' | 'feel' | 'edge' | 'precipice' | 'abyss' | 'william' | 'justine' | 'murderer' | 'world' | 'scaffold' | 'i' | 'wretch' | 'i' | 'discourse' | 'agony' | 'i' | 'deed' | 'effect' | 'murderer' | 'countenance' | 'hand' | 'friend' | 'expression' | 'despair' | 'revenge' | 'countenance' | 'victor' | 'power' | 'ah' | 'land' | 'peace' | 'beauty' | 'country' | 'tranquil' | 'peace' | 'i' | 'gift' | 'suffice' | 'fiend' | 'heart' | 'terror' | 'lest' | 'moment' | 'destroyer' | 'tenderness' | 'friendship' | 'beauty' | 'earth' | 'heaven' | 'soul' | 'woe' | 'love' | 'i' | 'cloud' | 'influence' | 'deer' | 'fainting' | 'limbs' | 'brake' | 'arrow' | 'type' | 'i' | 'sullen' | 'despair' | 'soul' | 'exercise' | 'change' | 'place' | 'relief' | 'access' | 'kind' | 'i' | 'home' | 'alpine' | 'magnificence' | 'eternity' | 'valley' | 'chamounix' | 'i' | 'boyhood' | '_i_' | 'wreck' | 'savage' | 'i' | 'part' | 'journey' | 'horseback' | 'mule' | 'injury' | 'weather' | 'middle' | 'month' | 'august' | 'death' | 'justine' | 'epoch' | 'i' | 'woe' | 'weight' | 'spirit' | 'i' | 'ravine' | 'arve' | 'side' | 'sound' | 'river' | 'raging' | 'dashing' | 'spoke' | 'power' | 'mighty' | 'omnipotence' | 'i' | 'guise' | 'i' | 'valley' | 'character' | 'piny' | 'arve' | 'forth' | 'scene' | 'beauty' | 'sublime' | 'mighty' | 'alps' | 'belonging' | 'earth' | 'race' | 'i' | 'bridge' | 'pelissier' | 'ravine' | 'river' | 'i' | 'mountain' | 'valley' | 'chamounix' | 'valley' | 'picturesque' | 'servox' | 'i' | 'road' | 'thunder' | 'avalanche' | 'smoke' | 'passage' | 'mont' | 'blanc' | 'supreme' | 'mont' | 'blanc' | 'dome' | 'valley' | 'sense' | 'pleasure' | 'journey' | 'turn' | 'road' | 'gaiety' | 'boyhood' | 'nature' | 'influence' | 'grief' | 'indulging' | 'misery' | 'reflection' | 'animal' | 'world' | 'fashion' | 'i' | 'grass' | 'horror' | 'despair' | 'length' | 'i' | 'village' | 'chamounix' | 'exhaustion' | 'fatigue' | 'body' | 'mind' | 'i' | 'space' | 'time' | 'i' | 'window' | 'mont' | 'blanc' | 'listening' | 'rushing' | 'arve' | 'way' | 'beneath' | 'lulling' | 'lullaby' | 'i' | 'head' | 'pillow' | 'crept' | 'giver' | 'oblivion' | 'chapter' | 'i' | 'day' | 'valley' | 'arveiron' | 'rise' | 'glacier' | 'pace' | 'summit' | 'valley' | 'icy' | 'wall' | 'glacier' | 'silence' | 'presence-chamber' | 'nature' | 'brawling' | 'fall' | 'fragment' | 'thunder' | 'sound' | 'avalanche' | 'cracking' | 'ice' | 'working' | 'rent' | 'plaything' | 'consolation' | 'i' | 'littleness' | 'feeling' | 'grief' | 'degree' | 'mind' | 'month' | 'i' | 'night' | 'assemblance' | 'day' | 'snowy' | 'mountaintop' | 'glittering' | 'pinnacle' | 'pine' | 'bare' | 'ravine' | 'eagle' | 'clouds' | 'peace' | 'morning' | 'i' | 'inspiriting' | 'sleep' | 'melancholy' | 'thought' | 'rain' | 'i' | 'veil' | 'cloudy' | 'rain' | 'storm' | 'mule' | 'door' | 'summit' | 'montanvert' | 'i' | 'effect' | 'view' | 'glacier' | 'mind' | 'i' | 'ecstasy' | 'soul' | 'world' | 'light' | 'joy' | 'sight' | 'nature' | 'effect' | 'mind' | 'passing' | 'life' | 'i' | 'guide' | 'i' | 'path' | 'presence' | 'grandeur' | 'scene' | 'ascent' | 'path' | 'perpendicularity' | 'mountain' | 'scene' | 'winter' | 'avalanche' | 'ground' | 'jutting' | 'mountain' | 'path' | 'snow' | 'sound' | 'voice' | 'concussion' | 'air' | 'destruction' | 'head' | 'speaker' | 'air' | 'severity' | 'scene' | 'i' | 'beneath' | 'clouds' | 'rain' | 'dark' | 'sky' | 'impression' | 'i' | 'alas' | 'man' | 'boast' | 'brute' | 'desire' | 'wind' | 'chance' | 'word' | 'scene' | 'word' | 'dream' | 'power' | 'poison' | 'sleep' | 'wandring' | 'thought' | 'day' | 'reason' | 'fond' | 'woe' | 'path' | 'departure' | 'yesterday' | 'morrow' | 'mutability' | 'i' | 'top' | 'ascent' | 'time' | 'rock' | 'sea' | 'ice' | 'mist' | 'surrounding' | 'breeze' | 'cloud' | 'i' | 'glacier' | 'surface' | 'sea' | 'field' | 'ice' | 'league' | 'width' | 'mountain' | 'rock' | 'side' | 'i' | 'montanvert' | 'distance' | 'league' | 'blanc' | 'majesty' | 'i' | 'recess' | 'rock' | 'scene' | 'sea' | 'river' | 'ice' | 'wound' | 'dependent' | 'icy' | 'shone' | 'sunlight' | 'clouds' | 'heart' | 'something' | 'joy' | 'i' | 'wander' | 'faint' | 'happiness' | 'companion' | 'joys' | 'life' | 'i' | 'i' | 'figure' | 'man' | 'distance' | 'speed' | 'ice' | 'i' | 'caution' | 'stature' | 'man' | 'i' | 'mist' | 'faintness' | 'i' | 'gale' | 'i' | 'shape' | 'wretch' | 'i' | 'rage' | 'horror' | 'approach' | 'mortal' | 'combat' | 'countenance' | 'anguish' | 'disdain' | 'malignity' | 'ugliness' | 'rage' | 'utterance' | 'i' | 'detestation' | 'contempt' | 'devil' | 'i' | 'vengeance' | 'arm' | 'head' | 'begone' | 'insect' | 'i' | 'i' | 'extinction' | 'existence' | 'i' | 'reception' | 'daemon' | 'wretched' | 'creator' | 'detest' | 'creature' | 'art' | 'bound' | 'annihilation' | 'dare' | 'life' | 'duty' | 'i' | 'rest' | 'mankind' | 'i' | 'peace' | 'maw' | 'death' | 'blood' | 'monster' | 'fiend' | 'art' | 'hell' | 'vengeance' | 'devil' | 'creation' | 'i' | 'spark' | 'rage' | 'existence' | 'head' | 'misery' | 'life' | 'accumulation' | 'i' | 'hast' | 'thyself' | 'height' | 'opposition' | 'creature' | 'i' | 'docile' | 'lord' | 'king' | 'wilt' | 'part' | 'justice' | 'clemency' | 'affection' | 'i' | 'creature' | 'adam' | 'angel' | 'joy' | 'misdeed' | 'i' | 'misery' | 'fiend' | 'begone' | 'i' | 'community' | 'begone' | 'strength' | 'fight' | 'one' | 'thee' | 'thee' | 'eye' | 'creature' | 'goodness' | 'compassion' | 'i' | 'benevolent' | 'soul' | 'love' | 'humanity' | 'creator' | 'nothing' | 'desert' | 'refuge' | 'i' | 'ice' | 'dwelling' | 'man' | 'hail' | 'multitude' | 'mankind' | 'knew' | 'existence' | 'arm' | 'destruction' | 'i' | 'i' | 'share' | 'wretchedness' | 'power' | 'evil' | 'family' | 'rage' | 'compassion' | 'tale' | 'bloody' | 'defence' | 'murder' | 'conscience' | 'creature' | 'justice' | 'man' | 'work' | 'remembrance' | 'i' | 'shudder' | 'i' | 'origin' | 'author' | 'day' | 'devil' | 'i' | 'expression' | 'power' | 'i' | 'begone' | 'sight' | 'form' | 'thee' | 'creator' | 'violence' | 'thee' | 'sight' | 'compassion' | 'i' | 'tale' | 'temperature' | 'place' | 'hut' | 'mountain' | 'sun' | 'snowy' | 'world' | 'story' | 'neighbourhood' | 'man' | 'life' | 'scourge' | 'author' | 'speedy' | 'ruin' | 'way' | 'ice' | 'i' | 'heart' | 'i' | 'i' | 'tale' | 'i' | 'curiosity' | 'compassion' | 'resolution' | 'i' | 'murderer' | 'brother' | 'confirmation' | 'denial' | 'opinion' | 'time' | 'creator' | 'creature' | 'i' | 'i' | 'wickedness' | 'demand' | 'ice' | 'rock' | 'air' | 'rain' | 'hut' | 'fiend' | 'air' | 'exultation' | 'i' | 'heart' | 'fire' | 'companion' | 'tale' | 'chapter' | 'difficulty' | 'era' | 'period' | 'multiplicity' | 'i' | 'saw' | 'heard' | 'smelt' | 'time' | 'time' | 'light' | 'i' | 'darkness' | 'i' | 'light' | 'i' | 'alteration' | 'dark' | 'touch' | 'sight' | 'i' | 'liberty' | 'i' | 'surmount' | 'avoid' | 'heat' | 'i' | 'place' | 'i' | 'shade' | 'ingolstadt' | 'lay' | 'side' | 'brook' | 'fatigue' | 'hunger' | 'state' | 'ground' | 'i' | 'thirst' | 'brook' | 'sleep' | 'cold' | 'half' | 'i' | 'apartment' | 'sensation' | 'i' | 'night' | 'i' | 'wretch' | 'nothing' | 'pain' | 'i' | 'stole' | 'sensation' | 'pleasure' | 'i' | 'form' | 'rise' | 'moon' | ']' | 'i' | 'kind' | 'wonder' | 'path' | 'i' | 'search' | 'i' | 'cloak' | 'i' | 'ground' | 'mind' | 'hunger' | 'darkness' | 'object' | 'i' | 'moon' | 'i' | 'pleasure' | 'day' | 'night' | 'orb' | 'night' | 'i' | 'stream' | 'drink' | 'foliage' | 'i' | 'i' | 'sound' | 'light' | 'i' | 'accuracy' | 'roof' | 'light' | 'mode' | 'silence' | 'moon' | 'night' | 'form' | 'i' | 'forest' | 'time' | 'mind' | 'day' | 'light' | 'insect' | 'herb' | 'herb' | 'i' | 'sparrow' | 'none' | 'blackbird' | 'thrush' | 'day' | 'i' | 'cold' | 'i' | 'fire' | 'wandering' | 'delight' | 'warmth' | 'i' | 'joy' | 'i' | 'hand' | 'cry' | 'pain' | 'cause' | 'i' | 'fire' | 'joy' | 'wood' | 'i' | 'operation' | 'fire' | 'wet' | 'wood' | 'i' | 'heat' | 'i' | 'i' | 'cause' | 'quantity' | 'wood' | 'i' | 'supply' | 'fire' | 'night' | 'sleep' | 'i' | 'fear' | 'fire' | 'i' | 'wood' | 'cloak' | 'ground' | 'sank' | 'sleep' | 'morning' | 'i' | 'care' | 'fire' | 'i' | 'breeze' | 'flame' | 'i' | 'fan' | 'night' | 'pleasure' | 'fire' | 'light' | 'heat' | 'discovery' | 'element' | 'food' | 'i' | 'savoury' | 'i' | 'food' | 'manner' | 'i' | 'operation' | 'food' | 'day' | 'vain' | 'hunger' | 'i' | 'place' | 'i' | 'i' | 'emigration' | 'loss' | 'fire' | 'i' | 'accident' | 'consideration' | 'difficulty' | 'i' | 'attempt' | 'cloak' | 'wood' | 'setting' | 'sun' | 'i' | 'length' | 'country' | 'fall' | 'snow' | 'place' | 'night' | 'appearance' | 'disconsolate' | 'i' | 'damp' | 'substance' | 'ground' | 'morning' | 'food' | 'shelter' | 'length' | 'i' | 'hut' | 'ground' | 'doubtless' | 'convenience' | 'shepherd' | 'sight' | 'i' | 'structure' | 'curiosity' | 'door' | 'man' | 'fire' | 'breakfast' | 'noise' | 'hut' | 'speed' | 'form' | 'appearance' | 'i' | 'flight' | 'i' | 'appearance' | 'hut' | 'snow' | 'rain' | 'ground' | 'exquisite' | 'retreat' | 'pandemonium' | 'hell' | 'lake' | 'fire' | 'breakfast' | 'bread' | 'cheese' | 'milk' | 'wine' | 'latter' | 'i' | 'fatigue' | 'i' | 'awoke' | 'warmth' | 'sun' | 'ground' | 'i' | 'breakfast' | 'wallet' | 'i' | 'i' | 'sunset' | 'i' | 'village' | 'appear' | 'neater' | 'admiration' | 'milk' | 'cheese' | 'i' | 'appetite' | 'i' | 'foot' | 'door' | 'village' | 'missile' | 'i' | 'country' | 'refuge' | 'hovel' | 'bare' | 'appearance' | 'i' | 'village' | 'hovel' | 'cottage' | 'neat' | 'appearance' | 'experience' | 'i' | 'place' | 'refuge' | 'wood' | 'i' | 'difficulty' | 'sit' | 'upright' | 'wood' | 'earth' | 'floor' | 'wind' | 'i' | 'asylum' | 'snow' | 'rain' | 'i' | 'shelter' | 'inclemency' | 'season' | 'barbarity' | 'man' | 'morning' | 'crept' | 'kennel' | 'i' | 'cottage' | 'discover' | 'i' | 'habitation' | 'i' | 'back' | 'cottage' | 'pig' | 'sty' | 'pool' | 'water' | 'part' | 'i' | 'crevice' | 'i' | 'wood' | 'manner' | 'i' | 'occasion' | 'i' | 'sty' | 'dwelling' | 'straw' | 'i' | 'i' | 'figure' | 'man' | 'distance' | 'treatment' | 'night' | 'power' | 'i' | 'sustenance' | 'day' | 'loaf' | 'bread' | 'cup' | 'i' | 'hand' | 'pure' | 'water' | 'retreat' | 'floor' | 'vicinity' | 'chimney' | 'cottage' | 'hovel' | 'something' | 'determination' | 'paradise' | 'forest' | 'residence' | 'earth' | 'i' | 'breakfast' | 'pleasure' | 'plank' | 'water' | 'i' | 'step' | 'chink' | 'creature' | 'pail' | 'head' | 'hovel' | 'girl' | 'demeanour' | 'i' | 'farmhouse' | 'blue' | 'petticoat' | 'linen' | 'jacket' | 'garb' | 'hair' | 'i' | 'sight' | 'quarter' | 'hour' | 'pail' | 'milk' | 'burden' | 'man' | 'countenance' | 'despondence' | 'air' | 'melancholy' | 'pail' | 'head' | 'bore' | 'cottage' | 'man' | 'hand' | 'field' | 'cottage' | 'girl' | 'house' | 'yard' | 'dwelling' | 'i' | 'cottage' | 'part' | 'wood' | 'chink' | 'eye' | 'crevice' | 'room' | 'bare' | 'furniture' | 'corner' | 'fire' | 'man' | 'head' | 'attitude' | 'girl' | 'cottage' | 'something' | 'drawer' | 'man' | 'instrument' | 'voice' | 'thrush' | 'nightingale' | 'sight' | 'wretch' | 'hair' | 'countenance' | 'cottager' | 'reverence' | 'girl' | 'love' | 'air' | 'companion' | 'man' | 'notice' | 'creature' | 'work' | 'kindness' | 'affection' | 'i' | 'peculiar' | 'nature' | 'mixture' | 'pain' | 'pleasure' | 'i' | 'hunger' | 'cold' | 'warmth' | 'food' | 'window' | 'man' | 'load' | 'wood' | 'door' | 'burden' | 'fuel' | 'cottage' | 'fire' | 'youth' | 'nook' | 'cottage' | 'loaf' | 'piece' | 'cheese' | 'garden' | 'water' | 'fire' | 'work' | 'man' | 'garden' | 'digging' | 'hour' | 'woman' | 'cottage' | 'man' | 'meantime' | 'appearance' | 'air' | 'meal' | 'woman' | 'cottage' | 'man' | 'cottage' | 'sun' | 'arm' | 'youth' | 'nothing' | 'beauty' | 'contrast' | 'excellent' | 'countenance' | 'benevolence' | 'love' | 'younger' | 'figure' | 'symmetry' | 'attitude' | 'utmost' | 'sadness' | 'despondency' | 'man' | 'cottage' | 'youth' | 'morning' | 'night' | 'wonder' | 'i' | 'light' | 'use' | 'setting' | 'sun' | 'end' | 'pleasure' | 'i' | 'girl' | 'companion' | 'man' | 'instrument' | 'divine' | 'morning' | 'youth' | 'harmony' | 'i' | 'time' | 'nothing' | 'science' | 'family' | 'time' | 'i' | 'chapter' | 'i' | 'straw' | 'thought' | 'day' | 'treatment' | 'i' | 'night' | 'course' | 'conduct' | 'i' | 'i' | 'hovel' | 'morning' | 'sun' | 'woman' | 'cottage' | 'food' | 'youth' | 'meal' | 'day' | 'routine' | 'man' | 'girl' | 'man' | 'leisure' | 'instrument' | 'contemplation' | 'nothing' | 'love' | 'respect' | 'companion' | 'office' | 'affection' | 'duty' | 'gentleness' | 'benevolent' | 'man' | 'companion' | 'cause' | 'unhappiness' | 'i' | 'i' | 'imperfect' | 'house' | 'luxury' | 'fire' | 'chill' | 'hungry' | 'company' | 'speech' | 'day' | 'affection' | 'kindness' | 'pain' | 'i' | 'attention' | 'time' | 'period' | 'i' | 'uneasiness' | 'family' | 'poverty' | 'evil' | 'degree' | 'nourishment' | 'garden' | 'milk' | 'cow' | 'winter' | 'food' | 'hunger' | 'food' | 'man' | 'none' | 'trait' | 'kindness' | 'i' | 'night' | 'part' | 'store' | 'consumption' | 'i' | 'i' | 'pain' | 'i' | 'wood' | 'i' | 'i' | 'i' | 'youth' | 'part' | 'day' | 'wood' | 'family' | 'fire' | 'night' | 'i' | 'use' | 'home' | 'firing' | 'sufficient' | 'consumption' | 'remember' | 'time' | 'i' | 'woman' | 'door' | 'morning' | 'pile' | 'wood' | 'outside' | 'voice' | 'youth' | 'surprise' | 'i' | 'pleasure' | 'forest' | 'day' | 'cottage' | 'garden' | 'discovery' | 'moment' | 'i' | 'method' | 'experience' | 'articulate' | 'i' | 'pleasure' | 'pain' | 'sadness' | 'godlike' | 'science' | 'i' | 'attempt' | 'i' | 'purpose' | 'pronunciation' | 'connection' | 'i' | 'clue' | 'i' | 'mystery' | 'reference' | 'application' | 'space' | 'moon' | 'hovel' | 'i' | 'discourse' | 'fire' | 'milk' | 'bread' | 'wood' | 'i' | 'youth' | 'companion' | 'man' | 'girl' | 'sister' | 'agatha' | 'youth' | 'felix' | 'brother' | 'son' | 'i' | 'delight' | 'i' | 'i' | 'winter' | 'manner' | 'beauty' | 'joys' | 'i' | 'cottage' | 'gait' | 'man' | 'i' | 'melancholy' | 'accent' | 'expression' | 'goodness' | 'pleasure' | 'agatha' | 'respect' | 'countenance' | 'tone' | 'father' | 'felix' | 'group' | 'deeply' | 'countenance' | 'voice' | 'sister' | 'man' | 'i' | 'midst' | 'poverty' | 'pleasure' | 'sister' | 'flower' | 'snowy' | 'ground' | 'morning' | 'snow' | 'path' | 'milk-house' | 'water' | 'well' | 'wood' | 'outhouse' | 'astonishment' | 'store' | 'hand' | 'day' | 'i' | 'farmer' | 'dinner' | 'wood' | 'garden' | 'frosty' | 'season' | 'man' | 'agatha' | 'reading' | 'i' | 'paper' | 'speech' | 'i' | 'i' | 'science' | 'kind' | 'conversation' | 'i' | 'mind' | 'endeavour' | 'i' | 'attempt' | 'i' | 'master' | 'language' | 'knowledge' | 'deformity' | 'figure' | 'contrast' | 'i' | 'grace' | 'beauty' | 'i' | 'pool' | 'i' | 'mirror' | 'i' | 'i' | 'reality' | 'monster' | 'i' | 'despondence' | 'mortification' | 'alas' | 'i' | 'deformity' | 'sun' | 'light' | 'day' | 'snow' | 'bare' | 'earth' | 'time' | 'felix' | 'famine' | 'food' | 'sufficiency' | 'garden' | 'comfort' | 'season' | 'man' | 'son' | 'day' | 'noon' | 'i' | 'forth' | 'place' | 'wind' | 'earth' | 'season' | 'mode' | 'life' | 'hovel' | 'morning' | 'i' | 'remainder' | 'day' | 'moon' | 'night' | 'food' | 'fuel' | 'cottage' | 'i' | 'path' | 'snow' | 'felix' | 'i' | 'hand' | 'spirit' | 'signification' | 'i' | 'felix' | 'i' | 'wretch' | 'power' | 'happiness' | 'blind' | 'father' | 'agatha' | 'felix' | 'i' | 'future' | 'destiny' | 'i' | 'imagination' | 'reception' | 'i' | 'demeanour' | 'onciliating' | 'i' | 'favour' | 'love' | 'ardour' | 'art' | 'language' | 'supple' | 'voice' | 'music' | 'understood' | 'ease' | 'ass' | 'lap-dog' | 'ass' | 'treatment' | 'execration' | 'warmth' | 'spring' | 'aspect' | 'earth' | 'change' | 'cultivation' | 'forth' | 'earth' | 'habitation' | 'time' | 'appearance' | 'nature' | 'past' | 'memory' | 'present' | 'future' | 'hope' | 'joy' | 'chapter' | 'i' | 'part' | 'story' | 'i' | 'spring' | 'weather' | 'cloudless' | 'desert' | 'gloomy' | 'verdure' | 'delight' | 'beauty' | 'man' | 'guitar' | 'i' | 'countenance' | 'felix' | 'expression' | 'father' | 'music' | 'manner' | 'cause' | 'felix' | 'accent' | 'man' | 'music' | 'someone' | 'door' | 'lady' | 'horseback' | 'guide' | 'lady' | 'suit' | 'veil' | 'agatha' | 'question' | 'stranger' | 'accent' | 'name' | 'felix' | 'voice' | 'word' | 'felix' | 'lady' | 'veil' | 'countenance' | 'beauty' | 'expression' | 'hair' | 'proportion' | 'complexion' | 'cheek' | 'pink' | 'felix' | 'delight' | 'trait' | 'sorrow' | 'face' | 'degree' | 'joy' | 'i' | 'cheek' | 'pleasure' | 'moment' | 'beautiful' | 'stranger' | 'hand' | 'i' | 'guide' | 'cottage' | 'conversation' | 'place' | 'father' | 'stranger' | 'hand' | 'stranger' | 'articulate' | 'language' | 'presence' | 'gladness' | 'cottage' | 'sorrow' | 'sun' | 'morning' | 'felix' | 'delight' | 'arabian' | 'agatha' | 'agatha' | 'stranger' | 'brother' | 'joy' | 'cause' | 'i' | 'recurrence' | 'sound' | 'stranger' | 'language' | 'idea' | 'i' | 'use' | 'end' | 'stranger' | 'twenty' | 'lesson' | 'understood' | 'night' | 'agatha' | 'felix' | 'hand' | 'stranger' | 'night' | 'sweet' | 'safie' | 'father' | 'repetition' | 'name' | 'i' | 'guest' | 'subject' | 'conversation' | 'bent' | 'faculty' | 'morning' | 'felix' | 'work' | 'agatha' | 'sat' | 'man' | 'guitar' | 'sorrow' | 'delight' | 'voice' | 'cadence' | 'nightingale' | 'guitar' | 'air' | 'voice' | 'strain' | 'stranger' | 'man' | 'delight' | 'music' | 'alteration' | 'joy' | 'place' | 'sadness' | 'safie' | 'knowledge' | 'language' | 'meanwhile' | 'ground' | 'herbage' | 'sweet' | 'scent' | 'radiance' | 'moonlight' | 'sun' | 'balmy' | 'pleasure' | 'setting' | 'rising' | 'sun' | 'daylight' | 'fearful' | 'meeting' | 'treatment' | 'i' | 'village' | 'i' | 'attention' | 'i' | 'language' | 'i' | 'whilst' | 'i' | 'word' | 'speech' | 'i' | 'science' | 'stranger' | 'field' | 'wonder' | 'delight' | 'book' | 'felix' | 'safie' | 'i' | 'purport' | 'book' | 'work' | 'declamatory' | 'style' | 'imitation' | 'work' | 'i' | 'knowledge' | 'history' | 'view' | 'world' | 'insight' | 'earth' | 'heard' | 'genius' | 'activity' | 'virtue' | 'degenerating' | 'decline' | 'mighty' | 'empire' | 'chivalry' | 'christianity' | 'heard' | 'discovery' | 'hemisphere' | 'wept' | 'safie' | 'fate' | 'man' | 'magnificent' | 'base' | 'time' | 'scion' | 'principle' | 'godlike' | 'man' | 'honour' | 'base' | 'record' | 'degradation' | 'condition' | 'mole' | 'harmless' | 'worm' | 'time' | 'i' | 'man' | 'fellow' | 'vice' | 'wonder' | 'disgust' | 'loathing' | 'conversation' | 'i' | 'arabian' | 'system' | 'society' | 'heard' | 'division' | 'property' | 'wealth' | 'poverty' | 'rank' | 'descent' | 'blood' | 'i' | 'descent' | 'man' | 'vagabond' | 'slave' | 'chosen' | 'creation' | 'creator' | 'i' | 'i' | 'money' | 'kind' | 'property' | 'i' | 'figure' | 'i' | 'nature' | 'man' | 'i' | 'coarser' | 'diet' | 'heat' | 'cold' | 'injury' | 'frame' | 'stature' | 'i' | 'i' | 'saw' | 'heard' | 'none' | 'monster' | 'blot' | 'earth' | 'agony' | 'knowledge' | 'i' | 'wood' | 'hunger' | 'heat' | 'nature' | 'knowledge' | 'mind' | 'lichen' | 'rock' | 'i' | 'thought' | 'feeling' | 'sensation' | 'pain' | 'death' | 'state' | 'i' | 'i' | 'virtue' | 'i' | 'intercourse' | 'stealth' | 'i' | 'desire' | 'i' | 'agatha' | 'man' | 'conversation' | 'felix' | 'wretch' | 'heard' | 'difference' | 'birth' | 'growth' | 'father' | 'infant' | 'child' | 'life' | 'mother' | 'charge' | 'mind' | 'youth' | 'knowledge' | 'brother' | 'sister' | 'human' | 'father' | 'mother' | 'life' | 'blot' | 'vacancy' | 'i' | 'nothing' | 'remembrance' | 'i' | 'i' | 'height' | 'proportion' | 'i' | 'intercourse' | 'question' | 'i' | 'story' | 'indignation' | 'delight' | 'wonder' | 'love' | 'reverence' | 'self-deceit' | 'chapter' | 'time' | 'i' | 'history' | 'mind' | 'number' | 'interesting' | 'wonderful' | 'i' | 'name' | 'man' | 'lacey' | 'family' | 'france' | 'affluence' | 'son' | 'service' | 'country' | 'agatha' | 'distinction' | 'arrival' | 'city' | 'paris' | 'enjoyment' | 'virtue' | 'refinement' | 'intellect' | 'taste' | 'fortune' | 'father' | 'safie' | 'cause' | 'ruin' | 'merchant' | 'paris' | 'reason' | 'i' | 'government' | 'prison' | 'day' | 'safie' | 'constantinople' | 'death' | 'injustice' | 'sentence' | 'paris' | 'religion' | 'wealth' | 'crime' | 'cause' | 'condemnation' | 'felix' | 'trial' | 'horror' | 'indignation' | 'decision' | 'court' | 'moment' | 'solemn' | 'vow' | 'admittance' | 'prison' | 'window' | 'part' | 'building' | 'dungeon' | 'muhammadan' | 'despair' | 'execution' | 'sentence' | 'felix' | 'grate' | 'night' | 'prisoner' | 'favour' | 'turk' | 'zeal' | 'deliverer' | 'reward' | 'wealth' | 'felix' | 'contempt' | 'safie' | 'father' | 'gratitude' | 'youth' | 'mind' | 'captive' | 'treasure' | 'toil' | 'hazard' | 'impression' | 'daughter' | 'heart' | 'felix' | 'promise' | 'hand' | 'marriage' | 'place' | 'safety' | 'felix' | 'offer' | 'probability' | 'event' | 'consummation' | 'happiness' | 'escape' | 'merchant' | 'zeal' | 'felix' | 'girl' | 'language' | 'lover' | 'aid' | 'man' | 'servant' | 'father' | 'parent' | 'time' | 'fate' | 'i' | 'i' | 'residence' | 'hovel' | 'writing' | 'felix' | 'agatha' | 'i' | 'truth' | 'tale' | 'sun' | 'time' | 'substance' | 'mother' | 'arab' | 'slave' | 'beauty' | 'heart' | 'father' | 'safie' | 'girl' | 'mother' | 'freedom' | 'bondage' | 'daughter' | 'religion' | 'intellect' | 'independence' | 'spirit' | 'forbidden' | 'muhammad' | 'lady' | 'mind' | 'safie' | 'prospect' | 'harem' | 'temper' | 'soul' | 'emulation' | 'virtue' | 'prospect' | 'country' | 'rank' | 'society' | 'day' | 'execution' | 'turk' | 'night' | 'prison' | 'morning' | 'paris' | 'felix' | 'name' | 'father' | 'sister' | 'plan' | 'deceit' | 'house' | 'pretence' | 'journey' | 'daughter' | 'part' | 'paris' | 'felix' | 'france' | 'cenis' | 'merchant' | 'opportunity' | 'part' | 'safie' | 'father' | 'moment' | 'departure' | 'time' | 'turk' | 'promise' | 'deliverer' | 'expectation' | 'event' | 'meantime' | 'society' | 'simplest' | 'affection' | 'interpreter' | 'interpretation' | 'sang' | 'divine' | 'airs' | 'country' | 'turk' | 'intimacy' | 'place' | 'heart' | 'idea' | 'daughter' | 'resentment' | 'felix' | 'lukewarm' | 'power' | 'deliverer' | 'state' | 'thousand' | 'deceit' | 'daughter' | 'news' | 'paris' | 'government' | 'france' | 'escape' | 'victim' | 'deliverer' | 'plot' | 'felix' | 'prison' | 'news' | 'felix' | 'dream' | 'pleasure' | 'blind' | 'father' | 'sister' | 'lay' | 'dungeon' | 'air' | 'society' | 'idea' | 'turk' | 'latter' | 'opportunity' | 'escape' | 'felix' | 'safie' | 'boarder' | 'convent' | 'leghorn' | 'vengeance' | 'law' | 'agatha' | 'proceeding' | 'trial' | 'place' | 'result' | 'fortune' | 'exile' | 'country' | 'asylum' | 'cottage' | 'germany' | 'i' | 'turk' | 'family' | 'oppression' | 'deliverer' | 'poverty' | 'ruin' | 'traitor' | 'feeling' | 'honour' | 'italy' | 'daughter' | 'pittance' | 'money' | 'plan' | 'maintenance' | 'heart' | 'felix' | 'i' | 'family' | 'poverty' | 'distress' | 'meed' | 'virtue' | 'ingratitude' | 'turk' | 'loss' | 'safie' | 'arrival' | 'life' | 'soul' | 'news' | 'leghorn' | 'felix' | 'wealth' | 'rank' | 'merchant' | 'daughter' | 'lover' | 'country' | 'nature' | 'safie' | 'command' | 'father' | 'mandate' | 'turk' | 'apartment' | 'hastily' | 'reason' | 'residence' | 'leghorn' | 'government' | 'vessel' | 'city' | 'daughter' | 'care' | 'servant' | 'leisure' | 'part' | 'property' | 'leghorn' | 'mind' | 'plan' | 'conduct' | 'emergency' | 'residence' | 'turkey' | 'religion' | 'father' | 'exile' | 'lover' | 'name' | 'spot' | 'time' | 'determination' | 'sum' | 'money' | 'italy' | 'attendant' | 'native' | 'language' | 'turkey' | 'germany' | 'safety' | 'town' | 'twenty' | 'cottage' | 'attendant' | 'safie' | 'affection' | 'girl' | 'arabian' | 'language' | 'country' | 'ignorant' | 'world' | 'name' | 'spot' | 'death' | 'woman' | 'house' | 'care' | 'safie' | 'safety' | 'cottage' | 'lover' | 'chapter' | 'history' | 'deeply' | 'i' | 'life' | 'mankind' | 'i' | 'crime' | 'evil' | 'benevolence' | 'generosity' | 'desire' | 'actor' | 'scene' | 'forth' | 'displayed' | 'account' | 'progress' | 'intellect' | 'i' | 'circumstance' | 'beginning' | 'month' | 'august' | 'year' | 'night' | 'visit' | 'neighbouring' | 'wood' | 'i' | 'food' | 'home' | 'firing' | 'i' | 'ground' | 'portmanteau' | 'dress' | 'prize' | 'hovel' | 'language' | 'i' | 'cottage' | 'paradise' | 'volume' | 'plutarchs' | 'werter' | 'possession' | 'delight' | 'mind' | 'i' | 'effect' | 'infinity' | 'dejection' | 'werter' | 'interest' | 'simple' | 'story' | 'i' | 'source' | 'speculation' | 'astonishment' | 'object' | 'something' | 'self' | 'experience' | 'bosom' | 'werter' | 'divine' | 'i' | 'character' | 'pretension' | 'death' | 'suicide' | 'wonder' | 'i' | 'case' | 'i' | 'hero' | 'extinction' | 'i' | 'condition' | 'i' | 'time' | 'conversation' | 'i' | 'listener' | 'i' | 'mind' | 'i' | 'none' | 'none' | 'path' | 'departure' | 'none' | 'annihilation' | 'person' | 'stature' | 'mean' | 'whence' | 'destination' | 'i' | 'volume' | 'plutarchs' | 'book' | 'effect' | 'werter' | 'i' | 'despondency' | 'gloom' | 'plutarch' | 'sphere' | 'experience' | 'i' | 'knowledge' | 'country' | 'boundless' | 'i' | 'cottage' | 'school' | 'i' | 'nature' | 'book' | 'action' | 'read' | 'i' | 'ardour' | 'virtue' | 'rise' | 'abhorrence' | 'vice' | 'signification' | 'i' | 'i' | 'course' | 'solon' | 'lycurgus' | 'preference' | 'firm' | 'hold' | 'mind' | 'introduction' | 'humanity' | 'soldier' | 'glory' | 'slaughter' | 'i' | 'i' | 'i' | 'history' | 'feeling' | 'wonder' | 'awe' | 'picture' | 'god' | 'i' | 'similarity' | 'adam' | 'i' | 'link' | 'existence' | 'state' | 'mine' | 'respect' | 'god' | 'creature' | 'care' | 'creator' | 'knowledge' | 'nature' | 'i' | 'helpless' | 'satan' | 'fitter' | 'emblem' | 'condition' | 'i' | 'bliss' | 'gall' | 'envy' | 'circumstance' | 'arrival' | 'hovel' | 'i' | 'pocket' | 'dress' | 'i' | 'laboratory' | 'i' | 'i' | 'diligence' | 'journal' | 'creation' | 'step' | 'progress' | 'work' | 'history' | 'everything' | 'reference' | 'origin' | 'detail' | 'series' | 'view' | 'description' | 'person' | 'language' | 'mine' | 'indelible' | 'i' | 'day' | 'i' | 'life' | 'i' | 'agony' | 'creator' | 'monster' | 'disgust' | 'god' | 'pity' | 'man' | 'beautiful' | 'alluring' | 'image' | 'form' | 'type' | 'resemblance' | 'satan' | 'fellow' | 'despondency' | 'solitude' | 'i' | 'i' | 'admiration' | 'deformity' | 'door' | 'compassion' | 'friendship' | 'i' | 'despair' | 'way' | 'interview' | 'fate' | 'i' | 'attempt' | 'importance' | 'success' | 'lest' | 'i' | 'i' | 'i' | 'undertaking' | 'sagacity' | 'meantime' | 'place' | 'cottage' | 'presence' | 'safie' | 'happiness' | 'i' | 'degree' | 'plenty' | 'felix' | 'time' | 'amusement' | 'conversation' | 'day' | 'increase' | 'knowledge' | 'outcast' | 'i' | 'i' | 'hope' | 'person' | 'water' | 'shadow' | 'moonshine' | 'frail' | 'image' | 'shade' | 'i' | 'trial' | 'reason' | 'paradise' | 'gloom' | 'consolation' | 'dream' | 'eve' | 'i' | 'i' | 'supplication' | 'creator' | 'mine' | 'bitterness' | 'heart' | 'i' | 'autumn' | 'i' | 'surprise' | 'grief' | 'decay' | 'fall' | 'nature' | 'barren' | 'appearance' | 'i' | 'moon' | 'i' | 'bleakness' | 'weather' | 'i' | 'conformation' | 'endurance' | 'cold' | 'heat' | 'sight' | 'apparel' | 'summer' | 'attention' | 'happiness' | 'absence' | 'summer' | 'place' | 'saw' | 'desire' | 'protection' | 'kindness' | 'heart' | 'affection' | 'limit' | 'ambition' | 'i' | 'disdain' | 'horror' | 'door' | 'i' | 'food' | 'rest' | 'i' | 'kindness' | 'sympathy' | 'unworthy' | 'winter' | 'revolution' | 'place' | 'i' | 'life' | 'attention' | 'time' | 'plan' | 'cottage' | 'i' | 'dwelling' | 'blind' | 'man' | 'i' | 'sagacity' | 'hideousness' | 'person' | 'object' | 'horror' | 'voice' | 'harsh' | 'nothing' | 'absence' | 'i' | 'mediation' | 'i' | 'day' | 'sun' | 'shone' | 'ground' | 'cheerfulness' | 'warmth' | 'safie' | 'agatha' | 'country' | 'walk' | 'man' | 'desire' | 'cottage' | 'guitar' | 'i' | 'countenance' | 'pleasure' | 'thoughtfulness' | 'sadness' | 'length' | 'instrument' | 'reflection' | 'heart' | 'beat' | 'hour' | 'moment' | 'trial' | 'fair' | 'cottage' | 'opportunity' | 'i' | 'plan' | 'sank' | 'ground' | 'i' | 'firmness' | 'i' | 'master' | 'hovel' | 'retreat' | 'air' | 'determination' | 'i' | 'door' | 'cottage' | 'i' | 'man' | 'i' | 'intrusion' | 'i' | 'traveller' | 'want' | 'rest' | 'fire' | 'enter' | 'lacey' | 'i' | 'manner' | 'i' | 'home' | 'i' | 'food' | 'trouble' | 'kind' | 'host' | 'food' | 'silence' | 'minute' | 'irresolute' | 'manner' | 'interview' | 'man' | 'language' | 'stranger' | 'countryman' | 'i' | 'family' | 'understand' | 'language' | 'protection' | 'favour' | 'i' | 'subject' | 'i' | 'unfortunate' | 'creature' | 'relation' | 'friend' | 'earth' | 'i' | 'i' | 'outcast' | 'world' | 'forever' | 'self-interest' | 'love' | 'charity' | 'kind' | 'world' | 'life' | 'harmless' | 'prejudice' | 'feeling' | 'kind' | 'friend' | 'monster' | 'task' | 'account' | 'i' | 'kindness' | 'prejudice' | 'spot' | 'man' | 'tale' | 'use' | 'countenance' | 'something' | 'i' | 'exile' | 'pleasure' | 'way' | 'creature' | 'man' | 'thank' | 'offer' | 'dust' | 'kindness' | 'trust' | 'aid' | 'society' | 'sympathy' | 'forbid' | 'i' | 'i' | 'family' | 'innocent' | 'judge' | 'thank' | 'benefactor' | 'voice' | 'kindness' | 'humanity' | 'success' | 'point' | 'meeting' | 'residence' | 'i' | 'i' | 'moment' | 'decision' | 'happiness' | 'sufficient' | 'effort' | 'strength' | 'chair' | 'aloud' | 'moment' | 'i' | 'moment' | 'hand' | 'man' | 'time' | 'save' | 'family' | 'hour' | 'trial' | 'god' | 'man' | 'cottage' | 'door' | 'felix' | 'safie' | 'horror' | 'consternation' | 'safie' | 'friend' | 'cottage' | 'felix' | 'force' | 'father' | 'clung' | 'transport' | 'fury' | 'ground' | 'stick' | 'i' | 'limb' | 'lion' | 'antelope' | 'heart' | 'sank' | 'sickness' | 'i' | 'i' | 'point' | 'blow' | 'pain' | 'anguish' | 'i' | 'cottage' | 'tumult' | 'hovel' | 'chapter' | 'creator' | 'live' | 'instant' | 'spark' | 'existence' | 'despair' | 'possession' | 'rage' | 'revenge' | 'i' | 'pleasure' | 'cottage' | 'misery' | 'night' | 'retreat' | 'wood' | 'fear' | 'discovery' | 'i' | 'vent' | 'anguish' | 'i' | 'beast' | 'wood' | 'staglike' | 'swiftness' | 'night' | 'i' | 'mockery' | 'bare' | 'voice' | 'bird' | 'burst' | 'forth' | 'stillness' | 'i' | 'rest' | 'i' | 'arch-fiend' | 'hell' | 'havoc' | 'destruction' | 'ruin' | 'luxury' | 'sensation' | 'i' | 'excess' | 'exertion' | 'sank' | 'grass' | 'impotence' | 'despair' | 'none' | 'moment' | 'i' | 'war' | 'forth' | 'misery' | 'sun' | 'retreat' | 'day' | 'underwood' | 'ensuing' | 'situation' | 'sunshine' | 'air' | 'day' | 'degree' | 'tranquillity' | 'i' | 'cottage' | 'i' | 'i' | 'i' | 'conversation' | 'father' | 'behalf' | 'i' | 'fool' | 'person' | 'horror' | 'i' | 'rest' | 'family' | 'approach' | 'consideration' | 'i' | 'cottage' | 'man' | 'party' | 'afternoon' | 'i' | 'sleep' | 'fever' | 'blood' | 'scene' | 'day' | 'felix' | 'i' | 'night' | 'i' | 'forth' | 'hiding-place' | 'search' | 'food' | 'hunger' | 'path' | 'cottage' | 'peace' | 'crept' | 'hovel' | 'expectation' | 'hour' | 'family' | 'hour' | 'sun' | 'misfortune' | 'inside' | 'cottage' | 'motion' | 'agony' | 'suspense' | 'cottage' | 'conversation' | 'language' | 'country' | 'man' | 'i' | 'cottage' | 'morning' | 'discourse' | 'meaning' | 'companion' | 'rent' | 'produce' | 'garden' | 'i' | 'advantage' | 'beg' | 'therefore' | 'determination' | 'felix' | 'cottage' | 'life' | 'father' | 'danger' | 'circumstance' | 'wife' | 'sister' | 'horror' | 'entreat' | 'reason' | 'possession' | 'tenement' | 'place' | 'felix' | 'companion' | 'cottage' | 'family' | 'i' | 'remainder' | 'day' | 'hovel' | 'state' | 'utter' | 'despair' | 'link' | 'world' | 'time' | 'revenge' | 'bosom' | 'i' | 'stream' | 'bent' | 'mind' | 'injury' | 'death' | 'thought' | 'voice' | 'agatha' | 'beauty' | 'gush' | 'i' | 'rage' | 'anger' | 'anything' | 'i' | 'fury' | 'night' | 'i' | 'variety' | 'cottage' | 'vestige' | 'cultivation' | 'garden' | 'i' | 'impatience' | 'moon' | 'night' | 'wind' | 'arose' | 'clouds' | 'blast' | 'mighty' | 'avalanche' | 'kind' | 'insanity' | 'reason' | 'reflection' | 'i' | 'branch' | 'tree' | 'fury' | 'cottage' | 'horizon' | 'edge' | 'moon' | 'part' | 'orb' | 'length' | 'hid' | 'brand' | 'scream' | 'i' | 'straw' | 'heath' | 'wind' | 'fire' | 'cottage' | 'i' | 'assistance' | 'part' | 'habitation' | 'i' | 'scene' | 'refuge' | 'world' | 'scene' | 'country' | 'thought' | 'mind' | 'i' | 'father' | 'creator' | 'fitness' | 'life' | 'safie' | 'geography' | 'i' | 'earth' | 'name' | 'town' | 'place' | 'i' | 'direction' | 'destination' | 'sun' | 'guide' | 'i' | 'i' | 'information' | 'despair' | 'hope' | 'succour' | 'sentiment' | 'hatred' | 'unfeeling' | 'creator' | 'object' | 'scorn' | 'horror' | 'mankind' | 'claim' | 'pity' | 'redress' | 'justice' | 'form' | 'autumn' | 'i' | 'district' | 'i' | 'i' | 'night' | 'fearful' | 'visage' | 'nature' | 'sun' | 'heatless' | 'rain' | 'snow' | 'surface' | 'earth' | 'chill' | 'bare' | 'i' | 'shelter' | 'earth' | 'imprecate' | 'cause' | 'mildness' | 'nature' | 'nearer' | 'i' | 'habitation' | 'deeply' | 'spirit' | 'revenge' | 'heart' | 'snow' | 'i' | 'map' | 'country' | 'path' | 'agony' | 'respite' | 'incident' | 'rage' | 'misery' | 'food' | 'circumstance' | 'i' | 'switzerland' | 'sun' | 'warmth' | 'earth' | 'manner' | 'bitterness' | 'horror' | 'day' | 'i' | 'night' | 'view' | 'man' | 'morning' | 'path' | 'wood' | 'i' | 'journey' | 'sun' | 'day' | 'spring' | 'loveliness' | 'sunshine' | 'balminess' | 'air' | 'i' | 'gentleness' | 'pleasure' | 'half' | 'novelty' | 'i' | 'solitude' | 'deformity' | 'cheeks' | 'thankfulness' | 'sun' | 'joy' | 'wood' | 'boundary' | 'river' | 'spring' | 'path' | 'i' | 'sound' | 'shade' | 'cypress' | 'i' | 'girl' | 'spot' | 'i' | 'someone' | 'sport' | 'course' | 'river' | 'foot' | 'stream' | 'hiding-place' | 'force' | 'senseless' | 'means' | 'power' | 'animation' | 'i' | 'approach' | 'person' | 'girl' | 'wood' | 'i' | 'man' | 'gun' | 'body' | 'ground' | 'injurer' | 'swiftness' | 'wood' | 'reward' | 'benevolence' | 'i' | 'destruction' | 'recompense' | 'i' | 'pain' | 'wound' | 'flesh' | 'bone' | 'kindness' | 'gentleness' | 'i' | 'place' | 'rage' | 'gnashing' | 'pain' | 'i' | 'hatred' | 'vengeance' | 'mankind' | 'agony' | 'wound' | 'life' | 'wound' | 'i' | 'ball' | 'shoulder' | 'rate' | 'i' | 'sense' | 'injustice' | 'ingratitude' | 'infliction' | 'revenge' | 'revenge' | 'compensate' | 'i' | 'wound' | 'i' | 'journey' | 'labours' | 'i' | 'sun' | 'spring' | 'joy' | 'mockery' | 'desolate' | 'state' | 'i' | 'enjoyment' | 'pleasure' | 'close' | 'time' | 'geneva' | 'i' | 'hiding-place' | 'manner' | 'i' | 'fatigue' | 'hunger' | 'breezes' | 'evening' | 'prospect' | 'sun' | 'jura' | 'time' | 'sleep' | 'pain' | 'reflection' | 'approach' | 'child' | 'recess' | 'i' | 'sportiveness' | 'infancy' | 'idea' | 'creature' | 'time' | 'horror' | 'deformity' | 'i' | 'companion' | 'friend' | 'i' | 'earth' | 'boy' | 'form' | 'scream' | 'hand' | 'face' | 'child' | 'meaning' | 'monster' | 'ogre' | 'papa' | 'boy' | 'father' | 'monster' | 'papa' | 'syndic' | 'frankenstein' | 'frankenstein' | 'enemy' | 'i' | 'revenge' | 'victim' | 'child' | 'despair' | 'heart' | 'i' | 'throat' | 'moment' | 'victim' | 'heart' | 'exultation' | 'triumph' | 'i' | 'desolation' | 'enemy' | 'death' | 'despair' | 'i' | 'child' | 'i' | 'something' | 'breast' | 'i' | 'portrait' | 'woman' | 'spite' | 'malignity' | 'delight' | 'rage' | 'i' | 'i' | 'resemblance' | 'i' | 'air' | 'divine' | 'benignity' | 'expressive' | 'disgust' | 'affright' | 'rage' | 'i' | 'moment' | 'agony' | 'i' | 'mankind' | 'perish' | 'attempt' | 'l' | 'i' | 'spot' | 'i' | 'murder' | 'hiding-place' | 'i' | 'barn' | 'woman' | 'straw' | 'portrait' | 'i' | 'aspect' | 'blooming' | 'loveliness' | 'youth' | 'health' | 'thought' | 'bent' | 'lover' | 'life' | 'look' | 'affection' | 'sleeper' | 'thrill' | 'terror' | 'murderer' | 'thought' | 'fiend' | 'murder' | 'i' | 'i' | 'crime' | 'source' | 'punishment' | 'felix' | 'man' | 'i' | 'mischief' | 'bent' | 'portrait' | 'dress' | 'i' | 'spot' | 'place' | 'world' | 'length' | 'i' | 'immense' | 'burning' | 'passion' | 'part' | 'requisition' | 'man' | 'companion' | 'chapter' | 'speaking' | 'expectation' | 'reply' | 'i' | 'extent' | 'proposition' | 'female' | 'interchange' | 'demand' | 'right' | 'part' | 'tale' | 'anger' | 'life' | 'i' | 'rage' | 'torture' | 'consent' | 'base' | 'yourself' | 'wickedness' | 'world' | 'begone' | 'i' | 'i' | 'fiend' | 'reason' | 'i' | 'mankind' | 'creator' | 'triumph' | 'i' | 'man' | 'frame' | 'work' | 'respect' | 'man' | 'interchange' | 'kindness' | 'injury' | 'i' | 'benefit' | 'gratitude' | 'acceptance' | 'union' | 'submission' | 'slavery' | 'i' | 'love' | 'i' | 'fear' | 'chiefly' | 'archenemy' | 'creator' | 'care' | 'i' | 'destruction' | 'heart' | 'hour' | 'birth' | 'rage' | 'face' | 'i' | 'reason' | 'passion' | 'cause' | 'excess' | 'benevolence' | 'i' | 'hundredfold' | 'i' | 'peace' | 'kind' | 'bliss' | 'ask' | 'creature' | 'sex' | 'gratification' | 'i' | 'world' | 'account' | 'misery' | 'i' | 'creator' | 'benefit' | 'sympathy' | 'thing' | 'request' | 'i' | 'i' | 'thought' | 'consent' | 'justice' | 'argument' | 'tale' | 'creature' | 'maker' | 'portion' | 'happiness' | 'power' | 'change' | 'feeling' | 'i' | 'america' | 'food' | 'man' | 'lamb' | 'kid' | 'appetite' | 'nourishment' | 'companion' | 'nature' | 'myself' | 'fare' | 'bed' | 'sun' | 'man' | 'food' | 'picture' | 'present' | 'wantonness' | 'power' | 'cruelty' | 'pitiless' | 'compassion' | 'moment' | 'persuade' | 'desire' | 'i' | 'man' | 'field' | 'love' | 'sympathy' | 'man' | 'exile' | 'kindness' | 'detestation' | 'companion' | 'aid' | 'task' | 'destruction' | 'point' | 'i' | 'moment' | 'earth' | 'inhabit' | 'companion' | 'neighbourhood' | 'man' | 'dwell' | 'chance' | 'savage' | 'sympathy' | 'life' | 'maker' | 'effect' | 'i' | 'i' | 'mass' | 'heart' | 'horror' | 'i' | 'i' | 'right' | 'portion' | 'happiness' | 'power' | 'i' | 'degree' | 'malice' | 'feint' | 'triumph' | 'wider' | 'scope' | 'revenge' | 'i' | 'demand' | 'answer' | 'vice' | 'portion' | 'love' | 'cause' | 'thing' | 'existence' | 'everyone' | 'solitude' | 'i' | 'abhor' | 'communion' | 'chain' | 'existence' | 'i' | 'time' | 'thought' | 'promise' | 'opening' | 'existence' | 'blight' | 'feeling' | 'loathing' | 'scorn' | 'power' | 'creature' | 'ice' | 'pursuit' | 'pause' | 'reflection' | 'i' | 'justice' | 'i' | 'request' | 'i' | 'consent' | 'demand' | 'oath' | 'europe' | 'place' | 'neighbourhood' | 'man' | 'female' | 'exile' | 'sun' | 'sky' | 'heaven' | 'fire' | 'love' | 'heart' | 'prayer' | 'home' | 'progress' | 'anxiety' | 'change' | 'i' | 'mountain' | 'speed' | 'flight' | 'eagle' | 'sea' | 'ice' | 'tale' | 'day' | 'sun' | 'verge' | 'horizon' | 'i' | 'descent' | 'valley' | 'i' | 'darkness' | 'heart' | 'labour' | 'mountain' | 'i' | 'i' | 'day' | 'night' | 'i' | 'halfway' | 'resting-place' | 'fountain' | 'dark' | 'tree' | 'lay' | 'ground' | 'scene' | 'solemnity' | 'agony' | 'i' | 'sensation' | 'memory' | 'depart' | 'darkness' | 'twinkling' | 'blast' | 'wind' | 'way' | 'morning' | 'i' | 'village' | 'chamounix' | 'rest' | 'heart' | 'i' | 'expression' | 'weight' | 'beneath' | 'home' | 'house' | 'family' | 'haggard' | 'appearance' | 'alarm' | 'question' | 'speak' | 'i' | 'ban' | 'i' | 'companionship' | 'adoration' | 'task' | 'prospect' | 'occupation' | 'circumstance' | 'existence' | 'pass' | 'dream' | 'reality' | 'life' | 'chapter' | 'day' | 'day' | 'week' | 'week' | 'return' | 'courage' | 'work' | 'vengeance' | 'fiend' | 'i' | 'repugnance' | 'task' | 'i' | 'female' | 'study' | 'disquisition' | 'i' | 'philosopher' | 'knowledge' | 'material' | 'success' | 'i' | 'england' | 'purpose' | 'pretence' | 'delay' | 'shrank' | 'step' | 'undertaking' | 'necessity' | 'absolute' | 'change' | 'place' | 'health' | 'hitherto' | 'memory' | 'promise' | 'father' | 'change' | 'pleasure' | 'method' | 'melancholy' | 'blackness' | 'sunshine' | 'refuge' | 'solitude' | 'i' | 'lake' | 'boat' | 'clouds' | 'listening' | 'rippling' | 'air' | 'sun' | 'seldom' | 'degree' | 'composure' | 'return' | 'i' | 'readier' | 'smile' | 'heart' | 'return' | 'father' | 'son' | 'society' | 'time' | 'i' | 'conjecture' | 'cause' | 'yesterday' | 'idea' | 'conjure' | 'point' | 'misery' | 'i' | 'exordium' | 'father' | 'confess' | 'son' | 'i' | 'marriage' | 'elizabeth' | 'tie' | 'comfort' | 'stay' | 'infancy' | 'experience' | 'man' | 'plan' | 'sister' | 'wish' | 'wife' | 'nay' | 'bound' | 'honour' | 'struggle' | 'poignant' | 'misery' | 'father' | 'reassure' | 'cousin' | 'woman' | 'elizabeth' | 'admiration' | 'affection' | 'expectation' | 'union' | 'expression' | 'subject' | 'victor' | 'pleasure' | 'time' | 'gloom' | 'gloom' | 'hold' | 'mind' | 'solemnization' | 'marriage' | 'tranquillity' | 'l' | 'competent' | 'fortune' | 'marriage' | 'honour' | 'utility' | 'happiness' | 'delay' | 'part' | 'uneasiness' | 'candour' | 'conjure' | 'confidence' | 'sincerity' | 'i' | 'father' | 'silence' | 'time' | 'reply' | 'i' | 'mind' | 'multitude' | 'conclusion' | 'alas' | 'idea' | 'union' | 'elizabeth' | 'horror' | 'dismay' | 'i' | 'solemn' | 'promise' | 'i' | 'family' | 'festival' | 'weight' | 'round' | 'neck' | 'ground' | 'i' | 'engagement' | 'monster' | 'depart' | 'mate' | 'i' | 'delight' | 'union' | 'i' | 'peace' | 'i' | 'necessity' | 'correspondence' | 'country' | 'knowledge' | 'use' | 'undertaking' | 'method' | 'intelligence' | 'i' | 'aversion' | 'idea' | 'task' | 'house' | 'intercourse' | 'thousand' | 'tale' | 'horror' | 'i' | 'i' | 'self-command' | 'capacity' | 'harrowing' | 'progress' | 'occupation' | 'i' | 'i' | 'family' | 'peace' | 'happiness' | 'promise' | 'monster' | 'fond' | 'fancy' | 'accident' | 'occur' | 'end' | 'slavery' | 'answer' | 'father' | 'i' | 'wish' | 'england' | 'request' | 'i' | 'guise' | 'suspicion' | 'desire' | 'earnestness' | 'father' | 'period' | 'melancholy' | 'madness' | 'intensity' | 'i' | 'pleasure' | 'idea' | 'journey' | 'change' | 'scene' | 'amusement' | 'return' | 'duration' | 'absence' | 'choice' | 'year' | 'period' | 'kind' | 'precaution' | 'companion' | 'concert' | 'elizabeth' | 'clerval' | 'strasbourg' | 'solitude' | 'i' | 'prosecution' | 'task' | 'commencement' | 'journey' | 'presence' | 'friend' | 'way' | 'impediment' | 'reflection' | 'nay' | 'henry' | 'intrusion' | 'foe' | 'presence' | 'task' | 'progress' | 'i' | 'union' | 'elizabeth' | 'place' | 'return' | 'age' | 'reward' | 'i' | 'consolation' | 'prospect' | 'day' | 'slavery' | 'i' | 'past' | 'union' | 'i' | 'journey' | 'feeling' | 'fear' | 'agitation' | 'absence' | 'i' | 'existence' | 'enemy' | 'departure' | 'i' | 'imagination' | 'safety' | 'i' | 'idea' | 'possibility' | 'reverse' | 'period' | 'i' | 'slave' | 'creature' | 'i' | 'moment' | 'fiend' | 'family' | 'danger' | 'end' | 'september' | 'i' | 'country' | 'journey' | 'suggestion' | 'disquiet' | 'idea' | 'suffering' | 'misery' | 'grief' | 'care' | 'companion' | 'clerval' | 'man' | 'minute' | 'attention' | 'return' | 'mute' | 'farewell' | 'i' | 'carriage' | 'whither' | 'i' | 'careless' | 'i' | 'anguish' | 'i' | 'order' | 'i' | 'i' | 'bourne' | 'work' | 'indolence' | 'i' | 'strasbourg' | 'clerval' | 'contrast' | 'scene' | 'joyful' | 'setting' | 'sun' | 'rise' | 'day' | 'colours' | 'landscape' | 'sky' | 'existence' | 'frankenstein' | 'truth' | 'i' | 'descent' | 'evening' | 'star' | 'sunrise' | 'rhine' | 'friend' | 'journal' | 'clerval' | 'scenery' | 'eye' | 'feeling' | 'delight' | 'i' | 'wretch' | 'curse' | 'avenue' | 'rhine' | 'boat' | 'strasbourg' | 'whence' | 'shipping' | 'london' | 'voyage' | 'day' | 'mannheim' | 'fifth' | 'departure' | 'strasbourg' | 'mainz' | 'course' | 'rhine' | 'mainz' | 'picturesque' | 'river' | 'part' | 'rhine' | 'landscape' | 'spot' | 'rhine' | 'beneath' | 'turn' | 'promontory' | 'meandering' | 'river' | 'scene' | 'time' | 'vintage' | 'song' | 'stream' | 'mind' | 'i' | 'lay' | 'bottom' | 'boat' | 'cloudless' | 'blue' | 'sky' | 'i' | 'tranquillity' | 'stranger' | 'henry' | 'fairy-land' | 'happiness' | 'man' | 'i' | 'country' | 'lucerne' | 'uri' | 'snowy' | 'water' | 'appearance' | 'eye' | 'appearance' | 'lake' | 'tempest' | 'wind' | 'water' | 'idea' | 'water-spout' | 'ocean' | 'fury' | 'base' | 'mountain' | 'priest' | 'mistress' | 'avalanche' | 'dying' | 'la' | 'valais' | 'vaud' | 'country' | 'victor' | 'switzerland' | 'charm' | 'divine' | 'river' | 'saw' | 'look' | 'castle' | 'yon' | 'precipice' | 'island' | 'foliage' | 'group' | 'village' | 'half' | 'hid' | 'recess' | 'mountain' | 'spirit' | 'place' | 'soul' | 'harmony' | 'man' | 'glacier' | 'retire' | 'country' | 'clerval' | 'friend' | 'praise' | 'poetry' | 'nature' | 'imagination' | 'sensibility' | 'heart' | 'soul' | 'friendship' | 'nature' | 'teach' | 'imagination' | 'mind' | 'scenery' | 'nature' | 'admiration' | 'ardour' | '-the' | 'cataract' | 'passion' | 'rock' | 'mountain' | 'wood' | 'appetite' | 'feeling' | 'love' | 'need' | 'remoter' | 'charm' | 'thought' | 'interest' | 'unborrowd' | 'eye' | 'abbey' | ']' | 'mind' | 'magnificent' | 'world' | 'existence' | 'life' | 'creator' | 'mind' | 'memory' | 'form' | 'beauty' | 'spirit' | 'friend' | 'gush' | 'sorrow' | 'tribute' | 'worth' | 'henry' | 'heart' | 'anguish' | 'remembrance' | 'i' | 'tale' | 'cologne' | 'holland' | 'remainder' | 'way' | 'wind' | 'stream' | 'river' | 'journey' | 'interest' | 'scenery' | 'rotterdam' | 'whence' | 'sea' | 'morning' | 'december' | 'i' | 'britain' | 'scene' | 'town' | 'remembrance' | 'story' | 'tilbury' | 'fort' | 'armada' | 'gravesend' | 'woolwich' | 'country' | 'length' | 'london' | 'pauls' | 'tower' | 'history' | 'chapter' | 'london' | 'point' | 'rest' | 'city' | 'clerval' | 'intercourse' | 'genius' | 'talent' | 'time' | 'object' | 'i' | 'information' | 'completion' | 'promise' | 'introduction' | 'i' | 'journey' | 'place' | 'study' | 'happiness' | 'pleasure' | 'blight' | 'existence' | 'sake' | 'information' | 'subject' | 'interest' | 'profound' | 'company' | 'mind' | 'heaven' | 'earth' | 'voice' | 'henry' | 'i' | 'peace' | 'despair' | 'heart' | 'i' | 'barrier' | 'barrier' | 'blood' | 'william' | 'justine' | 'soul' | 'clerval' | 'i' | 'image' | 'self' | 'experience' | 'instruction' | 'difference' | 'source' | 'instruction' | 'amusement' | 'object' | 'view' | 'design' | 'india' | 'belief' | 'knowledge' | 'society' | 'progress' | 'colonization' | 'trade' | 'britain' | 'execution' | 'plan' | 'check' | 'mind' | 'i' | 'scene' | 'life' | 'care' | 'recollection' | 'i' | 'engagement' | 'i' | 'i' | 'creation' | 'torture' | 'water' | 'head' | 'thought' | 'anguish' | 'word' | 'allusion' | 'heart' | 'london' | 'letter' | 'person' | 'scotland' | 'visitor' | 'geneva' | 'country' | 'journey' | 'perth' | 'invitation' | 'i' | 'society' | 'nature' | 'england' | 'beginning' | 'journey' | 'north' | 'expiration' | 'month' | 'expedition' | 'road' | 'windsor' | 'oxford' | 'matlock' | 'cumberland' | 'completion' | 'tour' | 'end' | 'july' | 'i' | 'i' | 'nook' | 'scotland' | 'london' | 'march' | 'windsor' | 'forest' | 'scene' | 'quantity' | 'game' | 'deer' | 'thence' | 'city' | 'remembrance' | 'century' | 'half' | 'city' | 'nation' | 'cause' | 'standard' | 'parliament' | 'liberty' | 'memory' | 'king' | 'falkland' | 'insolent' | 'goring' | 'queen' | 'son' | 'interest' | 'part' | 'city' | 'spirit' | 'elder' | 'dwelling' | 'gratification' | 'appearance' | 'city' | 'beauty' | 'admiration' | 'picturesque' | 'isis' | 'verdure' | 'expanse' | 'assemblage' | 'scene' | 'enjoyment' | 'memory' | 'past' | 'anticipation' | 'future' | 'i' | 'happiness' | 'discontent' | 'mind' | 'i' | 'ennui' | 'sight' | 'nature' | 'study' | 'man' | 'interest' | 'heart' | 'communicate' | 'elasticity' | 'tree' | 'bolt' | 'soul' | 'i' | 'spectacle' | 'humanity' | 'period' | 'oxford' | 'spot' | 'epoch' | 'history' | 'discovery' | 'tomb' | 'hampden' | 'field' | 'patriot' | 'moment' | 'soul' | 'debasing' | 'divine' | 'liberty' | 'sacrifice' | 'i' | 'spirit' | 'iron' | 'flesh' | 'self' | 'regret' | 'place' | 'rest' | 'country' | 'neighbourhood' | 'village' | 'degree' | 'scenery' | 'switzerland' | 'everything' | 'scale' | 'crown' | 'alps' | 'country' | 'cave' | 'history' | 'manner' | 'servox' | 'chamounix' | 'name' | 'henry' | 'i' | 'matlock' | 'scene' | 'derby' | 'cumberland' | 'westmorland' | 'i' | 'snow' | 'dashing' | 'happiness' | 'delight' | 'clerval' | 'mine' | 'mind' | 'company' | 'talent' | 'nature' | 'i' | 'life' | 'switzerland' | 'rhine' | 'life' | 'pain' | 'stretch' | 'repose' | 'pleasure' | 'something' | 'attention' | 'cumberland' | 'westmorland' | 'affection' | 'period' | 'appointment' | 'scotch' | 'friend' | 'part' | 'i' | 'promise' | 'time' | 'disappointment' | 'switzerland' | 'vengeance' | 'idea' | 'moment' | 'i' | 'peace' | 'i' | 'impatience' | 'i' | 'superscription' | 'elizabeth' | 'father' | 'fate' | 'fiend' | 'remissness' | 'companion' | 'henry' | 'moment' | 'shadow' | 'rage' | 'destroyer' | 'i' | 'i' | 'crime' | 'consciousness' | 'i' | 'i' | 'curse' | 'head' | 'crime' | 'i' | 'edinburgh' | 'mind' | 'city' | 'clerval' | 'oxford' | 'antiquity' | 'city' | 'beauty' | 'regularity' | 'town' | 'edinburgh' | 'castle' | 'world' | 'seat' | 'stxperiod' | 'pentland' | 'change' | 'cheerfulness' | 'admiration' | 'i' | 'termination' | 'journey' | 'edinburgh' | 'week' | 'coupar' | 'tay' | 'friend' | 'i' | 'mood' | 'laugh' | 'talk' | 'enter' | 'humour' | 'guest' | 'clerval' | 'i' | 'tour' | 'scotland' | 'i' | 'i' | 'month' | 'time' | 'heart' | 'temper' | 'henry' | 'plan' | 'scotch' | 'friend' | 'i' | 'home' | 'absence' | 'friend' | 'i' | 'spot' | 'scotland' | 'work' | 'solitude' | 'i' | 'monster' | 'i' | 'companion' | 'resolution' | 'i' | 'remotest' | 'scene' | 'labours' | 'place' | 'work' | 'rock' | 'soil' | 'pasture' | 'oatmeal' | 'gaunt' | 'fare' | 'bread' | 'water' | 'mainland' | 'island' | 'vacant' | 'i' | 'i' | 'squalidness' | 'penury' | 'thatch' | 'door' | 'i' | 'furniture' | 'possession' | 'incident' | 'surprise' | 'want' | 'poverty' | 'pittance' | 'food' | 'retreat' | 'i' | 'morning' | 'evening' | 'weather' | 'beach' | 'sea' | 'scene' | 'thought' | 'switzerland' | 'desolate' | 'landscape' | 'blue' | 'sky' | 'tumult' | 'play' | 'infant' | 'ocean' | 'manner' | 'i' | 'i' | 'i' | 'labour' | 'day' | 'laboratory' | 'day' | 'night' | 'order' | 'work' | 'process' | 'i' | 'experiment' | 'kind' | 'frenzy' | 'horror' | 'employment' | 'mind' | 'consummation' | 'labour' | 'horror' | 'blood' | 'heart' | 'work' | 'occupation' | 'solitude' | 'nothing' | 'call' | 'attention' | 'scene' | 'i' | 'i' | 'moment' | 'i' | 'persecutor' | 'sat' | 'ground' | 'object' | 'sight' | 'companion' | 'time' | 'i' | 'labour' | 'i' | 'completion' | 'hope' | 'question' | 'evil' | 'heart' | 'sicken' | 'bosom' | 'chapter' | 'i' | 'evening' | 'laboratory' | 'sun' | 'moon' | 'sea' | 'i' | 'light' | 'employment' | 'i' | 'pause' | 'consideration' | 'i' | 'labour' | 'night' | 'conclusion' | 'attention' | 'train' | 'reflection' | 'i' | 'i' | 'manner' | 'fiend' | 'barbarity' | 'heart' | 'remorse' | 'i' | 'mate' | 'delight' | 'sake' | 'murder' | 'wretchedness' | 'neighbourhood' | 'man' | 'probability' | 'thinking' | 'animal' | 'compact' | 'creation' | 'creature' | 'deformity' | 'abhorrence' | 'form' | 'disgust' | 'beauty' | 'man' | 'provocation' | 'europe' | 'world' | 'daemon' | 'race' | 'earth' | 'existence' | 'man' | 'condition' | 'terror' | 'benefit' | 'curse' | 'i' | 'sophisms' | 'i' | 'senseless' | 'time' | 'wickedness' | 'promise' | 'burst' | 'pest' | 'selfishness' | 'peace' | 'price' | 'existence' | 'race' | 'i' | 'heart' | 'i' | 'saw' | 'light' | 'moon' | 'daemon' | 'casement' | 'grin' | 'i' | 'task' | 'hid' | 'refuge' | 'progress' | 'claim' | 'fulfillment' | 'promise' | 'i' | 'countenance' | 'extent' | 'malice' | 'treachery' | 'sensation' | 'madness' | 'promise' | 'passion' | 'tore' | 'thing' | 'i' | 'wretch' | 'creature' | 'existence' | 'happiness' | 'howl' | 'despair' | 'revenge' | 'withdrew' | 'i' | 'room' | 'door' | 'vow' | 'heart' | 'labours' | 'i' | 'apartment' | 'i' | 'none' | 'gloom' | 'oppression' | 'i' | 'window' | 'sea' | 'nature' | 'eye' | 'moon' | 'fishing' | 'water' | 'gentle' | 'breeze' | 'sound' | 'i' | 'silence' | 'i' | 'profundity' | 'ear' | 'paddling' | 'shore' | 'person' | 'house' | 'creaking' | 'door' | 'head' | 'foot' | 'presentiment' | 'cottage' | 'i' | 'sensation' | 'helplessness' | 'danger' | 'spot' | 'sound' | 'passage' | 'door' | 'wretch' | 'i' | 'door' | 'voice' | 'work' | 'promise' | 'toil' | 'misery' | 'switzerland' | 'rhine' | 'england' | 'scotland' | 'i' | 'fatigue' | 'cold' | 'hunger' | 'begone' | 'i' | 'promise' | 'deformity' | 'wickedness' | 'condescension' | 'i' | 'power' | 'i' | 'light' | 'day' | 'creator' | 'master' | 'hour' | 'irresolution' | 'period' | 'power' | 'act' | 'wickedness' | 'determination' | 'companion' | 'vice' | 'blood' | 'earth' | 'daemon' | 'delight' | 'death' | 'wretchedness' | 'begone' | 'i' | 'firm' | 'rage' | 'monster' | 'determination' | 'face' | 'impotence' | 'anger' | 'man' | 'wife' | 'bosom' | 'beast' | 'mate' | 'i' | 'affection' | 'detestation' | 'scorn' | 'man' | 'beware' | 'dread' | 'misery' | 'bolt' | 'happiness' | 'intensity' | 'wretchedness' | 'revenge' | 'revenge' | 'henceforth' | 'dearer' | 'light' | 'food' | 'i' | 'tyrant' | 'tormentor' | 'sun' | 'misery' | 'beware' | 'i' | 'fearless' | 'i' | 'wiliness' | 'snake' | 'i' | 'venom' | 'man' | 'devil' | 'cease' | 'air' | 'malice' | 'i' | 'resolution' | 'coward' | 'beneath' | 'i' | 'i' | 'villain' | 'i' | 'housew' | 'precipitation' | 'boat' | 'arrowy' | 'swiftness' | 'rang' | 'i' | 'rage' | 'murderer' | 'peace' | 'ocean' | 'i' | 'room' | 'imagination' | 'thousand' | 'i' | 'mortal' | 'strife' | 'i' | 'course' | 'mainland' | 'i' | 'victim' | 'revenge' | 'i' | 'period' | 'fulfillment' | 'destiny' | 'hour' | 'i' | 'malice' | 'prospect' | 'thought' | 'elizabeth' | 'sorrow' | 'lover' | 'i' | 'enemy' | 'struggle' | 'night' | 'sun' | 'ocean' | 'calmer' | 'calmness' | 'violence' | 'rage' | 'despair' | 'i' | 'house' | 'scene' | 'contention' | 'beach' | 'sea' | 'barrier' | 'fact' | 'i' | 'life' | 'barren' | 'rock' | 'shock' | 'misery' | 'die' | 'grasp' | 'i' | 'isle' | 'restless' | 'spectre' | 'separation' | 'sun' | 'grass' | 'sleep' | 'i' | 'whole' | 'night' | 'misery' | 'sleep' | 'i' | 'i' | 'race' | 'i' | 'composure' | 'fiend' | 'rang' | 'death-knell' | 'dream' | 'reality' | 'sun' | 'i' | 'shore' | 'appetite' | 'cake' | 'i' | 'land' | 'close' | 'packet' | 'geneva' | 'clerval' | 'time' | 'london' | 'return' | 'negotiation' | 'enterprise' | 'departure' | 'journey' | 'voyage' | 'society' | 'i' | 'isle' | 'perth' | 'letter' | 'degree' | 'life' | 'i' | 'island' | 'expiration' | 'i' | 'task' | 'i' | 'chemical' | 'purpose' | 'i' | 'room' | 'scene' | 'work' | 'sight' | 'morning' | 'daybreak' | 'i' | 'courage' | 'door' | 'laboratory' | 'creature' | 'i' | 'floor' | 'i' | 'living' | 'flesh' | 'i' | 'chamber' | 'hand' | 'i' | 'room' | 'i' | 'work' | 'horror' | 'suspicion' | 'basket' | 'quantity' | 'sea' | 'night' | 'meantime' | 'i' | 'beach' | 'cleaning' | 'chemical' | 'apparatus' | 'nothing' | 'alteration' | 'place' | 'night' | 'appearance' | 'daemon' | 'i' | 'promise' | 'despair' | 'thing' | 'film' | 'i' | 'time' | 'idea' | 'instant' | 'occur' | 'threat' | 'i' | 'act' | 'mine' | 'mind' | 'fiend' | 'i' | 'act' | 'selfishness' | 'mind' | 'thought' | 'conclusion' | 'morning' | 'moon' | 'basket' | 'skiff' | 'shore' | 'scene' | 'land' | 'i' | 'commission' | 'crime' | 'anxiety' | 'encounter' | 'time' | 'moon' | 'cloud' | 'advantage' | 'moment' | 'darkness' | 'basket' | 'sea' | 'i' | 'sound' | 'spot' | 'sky' | 'air' | 'pure' | 'northeast' | 'breeze' | 'stay' | 'water' | 'rudder' | 'position' | 'bottom' | 'boat' | 'moon' | 'everything' | 'sound' | 'boat' | 'keel' | 'cut' | 'murmur' | 'time' | 'i' | 'situation' | 'i' | 'sun' | 'wind' | 'safety' | 'skiff' | 'i' | 'wind' | 'coast' | 'i' | 'i' | 'course' | 'i' | 'attempt' | 'boat' | 'water' | 'resource' | 'wind' | 'confess' | 'i' | 'terror' | 'i' | 'compass' | 'geography' | 'part' | 'world' | 'sun' | 'benefit' | 'atlantic' | 'starvation' | 'torment' | 'burning' | 'thirst' | 'prelude' | 'i' | 'wind' | 'i' | 'sea' | 'grave' | 'fiend' | 'i' | 'task' | 'thought' | 'elizabeth' | 'father' | 'clerval' | 'monster' | 'idea' | 'reverie' | 'scene' | 'point' | 'closing' | 'sun' | 'horizon' | 'wind' | 'breeze' | 'sea' | 'place' | 'swell' | 'rudder' | 'line' | 'land' | 'south' | 'i' | 'fatigue' | 'suspense' | 'i' | 'certainty' | 'life' | 'flood' | 'joy' | 'heart' | 'love' | 'life' | 'excess' | 'misery' | 'i' | 'sail' | 'part' | 'dress' | 'course' | 'land' | 'appearance' | 'i' | 'nearer' | 'cultivation' | 'i' | 'shore' | 'neighbourhood' | 'man' | 'land' | 'steeple' | 'i' | 'length' | 'promontory' | 'i' | 'state' | 'debility' | 'town' | 'place' | 'i' | 'nourishment' | 'money' | 'i' | 'promontory' | 'i' | 'town' | 'harbour' | 'heart' | 'joy' | 'escape' | 'i' | 'boat' | 'spot' | 'appearance' | 'assistance' | 'time' | 'sensation' | 'alarm' | 'language' | 'i' | 'kind' | 'name' | 'town' | 'i' | 'man' | 'voice' | 'place' | 'taste' | 'answer' | 'stranger' | 'i' | 'frowning' | 'custom' | 'man' | 'custom' | 'english' | 'custom' | 'dialogue' | 'crowd' | 'mixture' | 'curiosity' | 'anger' | 'degree' | 'way' | 'inn' | 'i' | 'murmuring' | 'sound' | 'crowd' | 'man' | 'shoulder' | 'account' | 'i' | 'account' | 'myself' | 'country' | 'mrxperiod' | 'magistrate' | 'account' | 'death' | 'gentleman' | 'night' | 'answer' | 'i' | 'conductor' | 'silence' | 'town' | 'i' | 'fatigue' | 'hunger' | 'crowd' | 'strength' | 'debility' | 'apprehension' | 'guilt' | 'calamity' | 'horror' | 'despair' | 'fear' | 'ignominy' | 'death' | 'i' | 'fortitude' | 'memory' | 'detail' | 'recollection' | 'chapter' | 'i' | 'presence' | 'magistrate' | 'benevolent' | 'man' | 'degree' | 'severity' | 'occasion' | 'dozen' | 'magistrate' | 'night' | 'son' | 'brother-in-law' | 'nugent' | 'oclock' | 'blast' | 'rising' | 'port' | 'night' | 'moon' | 'harbour' | 'part' | 'fishing' | 'tackle' | 'distance' | 'foot' | 'something' | 'length' | 'ground' | 'light' | 'lantern' | 'body' | 'man' | 'appearance' | 'supposition' | 'corpse' | 'person' | 'shore' | 'examination' | 'body' | 'cottage' | 'woman' | 'spot' | 'vain' | 'life' | 'man' | 'age' | 'sign' | 'violence' | 'mark' | 'neck' | 'part' | 'deposition' | 'interest' | 'mark' | 'murder' | 'brother' | 'mist' | 'chair' | 'support' | 'magistrate' | 'eye' | 'course' | 'augury' | 'manner' | 'son' | 'nugent' | 'fall' | 'companion' | 'boat' | 'man' | 'distance' | 'shore' | 'light' | 'boat' | 'i' | 'woman' | 'beach' | 'door' | 'cottage' | 'return' | 'hour' | 'discovery' | 'body' | 'boat' | 'man' | 'part' | 'shore' | 'corpse' | 'woman' | 'account' | 'body' | 'house' | 'bed' | 'town' | 'life' | 'landing' | 'north' | 'wind' | 'night' | 'i' | 'spot' | 'i' | 'i' | 'body' | 'place' | 'i' | 'shore' | 'i' | 'harbour' | 'ignorant' | 'distance' | 'town' | 'place' | 'i' | 'corpse' | 'mrxperiod' | 'evidence' | 'i' | 'room' | 'body' | 'interment' | 'effect' | 'sight' | 'idea' | 'agitation' | 'i' | 'mode' | 'murder' | 'i' | 'magistrate' | 'inn' | 'i' | 'place' | 'night' | 'i' | 'island' | 'i' | 'time' | 'body' | 'i' | 'affair' | 'i' | 'room' | 'corpse' | 'lay' | 'coffin' | 'horror' | 'moment' | 'agony' | 'examination' | 'presence' | 'magistrate' | 'dream' | 'memory' | 'i' | 'form' | 'henry' | 'clerval' | 'breath' | 'body' | 'i' | 'henry' | 'life' | 'destiny' | 'clerval' | 'friend' | 'benefactor' | 'frame' | 'i' | 'i' | 'room' | 'fever' | 'point' | 'death' | 'heard' | 'i' | 'murderer' | 'william' | 'justine' | 'clerval' | 'destruction' | 'fiend' | 'i' | 'monster' | 'neck' | 'agony' | 'terror' | 'language' | 'i' | 'man' | 'i' | 'forgetfulness' | 'death' | 'doting' | 'day' | 'bloom' | 'health' | 'hope' | 'prey' | 'decay' | 'tomb' | 'i' | 'turning' | 'wheel' | 'torture' | 'i' | 'dream' | 'prison' | 'bed' | 'apparatus' | 'dungeon' | 'morning' | 'i' | 'i' | 'i' | 'misfortune' | 'i' | 'squalidness' | 'room' | 'i' | 'memory' | 'i' | 'sound' | 'woman' | 'chair' | 'nurse' | 'wife' | 'countenance' | 'class' | 'face' | 'misery' | 'tone' | 'indifference' | 'voice' | 'i' | 'sir' | 'language' | 'voice' | 'i' | 'dream' | 'i' | 'sorry' | 'i' | 'misery' | 'horror' | 'matter' | 'woman' | 'gentleman' | 'none' | 'business' | 'duty' | 'conscience' | 'everybody' | 'i' | 'loathing' | 'woman' | 'speech' | 'person' | 'edge' | 'death' | 'series' | 'life' | 'dream' | 'mind' | 'force' | 'reality' | 'darkness' | 'one' | 'voice' | 'love' | 'hand' | 'physician' | 'woman' | 'carelessness' | 'expression' | 'brutality' | 'visage' | 'fate' | 'murderer' | 'hangman' | 'fee' | 'mrxperiod' | 'kindness' | 'room' | 'prison' | 'physician' | 'nurse' | 'creature' | 'murderer' | 'i' | 'day' | 'i' | 'i' | 'chair' | 'half' | 'cheeks' | 'livid' | 'death' | 'i' | 'gloom' | 'misery' | 'death' | 'desire' | 'world' | 'wretchedness' | 'time' | 'i' | 'i' | 'penalty' | 'law' | 'justine' | 'door' | 'apartment' | 'countenance' | 'compassion' | 'chair' | 'place' | 'anything' | 'thank' | 'nothing' | 'earth' | 'comfort' | 'i' | 'sympathy' | 'stranger' | 'relief' | 'borne' | 'misfortune' | 'abode' | 'evidence' | 'charge' | 'concern' | 'course' | 'i' | 'death' | 'nothing' | 'accident' | 'shore' | 'hospitality' | 'murder' | 'sight' | 'body' | 'friend' | 'manner' | 'path' | 'mrxperiod' | 'agitation' | 'i' | 'retrospect' | 'i' | 'surprise' | 'knowledge' | 'astonishment' | 'countenance' | 'mrxperiod' | 'ill' | 'person' | 'i' | 'i' | 'trace' | 'i' | 'account' | 'misfortune' | 'illness' | 'i' | 'commencement' | 'father' | 'departure' | 'letter' | 'agitation' | 'kind' | 'suspense' | 'event' | 'scene' | 'death' | 'murder' | 'i' | 'family' | 'gentleness' | 'someone' | 'friend' | 'chain' | 'idea' | 'mind' | 'murderer' | 'misery' | 'death' | 'clerval' | 'incitement' | 'i' | 'hand' | 'agony' | 'i' | 'sake' | 'mrxperiod' | 'countenance' | 'exclamation' | 'presumption' | 'guilt' | 'tone' | 'i' | 'man' | 'presence' | 'father' | 'repugnance' | 'father' | 'i' | 'feature' | 'muscle' | 'father' | 'kind' | 'kind' | 'change' | 'manner' | 'magistrate' | 'exclamation' | 'return' | 'delirium' | 'benevolence' | 'room' | 'nurse' | 'moment' | 'father' | 'nothing' | 'moment' | 'pleasure' | 'arrival' | 'father' | 'hand' | 'father' | 'welfare' | 'heart' | 'prison' | 'abode' | 'cheerfulness' | 'place' | 'son' | 'appearance' | 'room' | 'happiness' | 'fatality' | 'clerval' | 'name' | 'friend' | 'agitation' | 'state' | 'alas' | 'father' | 'i' | 'destiny' | 'kind' | 'coffin' | 'henry' | 'length' | 'time' | 'state' | 'health' | 'precaution' | 'tranquillity' | 'mrxperiod' | 'kirwin' | 'strength' | 'exertion' | 'appearance' | 'father' | 'angel' | 'health' | 'sickness' | 'i' | 'melancholy' | 'nothing' | 'image' | 'clerval' | 'agitation' | 'relapse' | 'alas' | 'life' | 'i' | 'destiny' | 'close' | 'death' | 'weight' | 'dust' | 'award' | 'justice' | 'i' | 'appearance' | 'death' | 'wish' | 'motionless' | 'speechless' | 'revolution' | 'destroyer' | 'season' | 'i' | 'prison' | 'i' | 'danger' | 'relapse' | 'i' | 'country' | 'town' | 'court' | 'mrxperiod' | 'care' | 'defence' | 'i' | 'disgrace' | 'case' | 'court' | 'life' | 'death' | 'jury' | 'bill' | 'i' | 'orkney' | 'hour' | 'body' | 'friend' | 'fortnight' | 'removal' | 'i' | 'prison' | 'father' | 'charge' | 'i' | 'atmosphere' | 'country' | 'i' | 'dungeon' | 'palace' | 'cup' | 'life' | 'sun' | 'shone' | 'gay' | 'heart' | 'i' | 'nothing' | 'dense' | 'darkness' | 'light' | 'glimmer' | 'henry' | 'death' | 'dark' | 'watery' | 'monster' | 'i' | 'chamber' | 'ingolstadt' | 'father' | 'affection' | 'geneva' | 'wish' | 'happiness' | 'thought' | 'delight' | 'cousin' | 'devouring' | 'maladie' | 'du' | 'lake' | 'rhone' | 'childhood' | 'state' | 'feeling' | 'torpor' | 'prison' | 'welcome' | 'residence' | 'scene' | 'nature' | 'despair' | 'end' | 'existence' | 'i' | 'attendance' | 'vigilance' | 'act' | 'violence' | 'duty' | 'recollection' | 'despair' | 'i' | 'delay' | 'wait' | 'murderer' | 'chance' | 'place' | 'concealment' | 'presence' | 'i' | 'aim' | 'end' | 'existence' | 'image' | 'i' | 'mockery' | 'soul' | 'father' | 'departure' | 'i' | 'journey' | 'i' | 'wreck' | 'shadow' | 'strength' | 'i' | 'skeleton' | 'night' | 'day' | 'frame' | 'i' | 'ireland' | 'inquietude' | 'impatience' | 'father' | 'passage' | 'board' | 'vessel' | 'bound' | 'havre-de-grace' | 'wind' | 'deck' | 'dashing' | 'i' | 'darkness' | 'ireland' | 'sight' | 'beat' | 'joy' | 'i' | 'i' | 'geneva' | 'light' | 'dream' | 'vessel' | 'i' | 'wind' | 'shore' | 'ireland' | 'sea' | 'i' | 'vision' | 'clerval' | 'friend' | 'companion' | 'victim' | 'monster' | 'creation' | 'i' | 'memory' | 'life' | 'happiness' | 'family' | 'geneva' | 'death' | 'mother' | 'departure' | 'ingolstadt' | 'i' | 'enthusiasm' | 'creation' | 'enemy' | 'night' | 'i' | 'train' | 'thought' | 'recovery' | 'fever' | 'i' | 'custom' | 'night' | 'quantity' | 'laudanum' | 'drug' | 'i' | 'rest' | 'preservation' | 'life' | 'recollection' | 'quantity' | 'thought' | 'misery' | 'morning' | 'i' | 'kind' | 'nightmare' | 'neck' | 'father' | 'restlessness' | 'cloudy' | 'sky' | 'fiend' | 'sense' | 'security' | 'feeling' | 'truce' | 'hour' | 'future' | 'kind' | 'forgetfulness' | 'human' | 'mind' | 'structure' | 'chapter' | 'voyage' | 'end' | 'i' | 'strength' | 'i' | 'i' | 'journey' | 'care' | 'origin' | 'illxperiod' | 'amusement' | 'society' | 'i' | 'face' | 'man' | 'i' | 'nature' | 'mechanism' | 'i' | 'right' | 'share' | 'intercourse' | 'i' | 'enemy' | 'joy' | 'blood' | 'world' | 'source' | 'father' | 'length' | 'desire' | 'society' | 'despair' | 'i' | 'degradation' | 'charge' | 'murder' | 'futility' | 'pride' | 'alas' | 'father' | 'i' | 'wretch' | 'i' | 'pride' | 'justine' | 'justine' | 'i' | 'charge' | 'cause' | 'i' | 'william' | 'justine' | 'henry' | 'father' | 'imprisonment' | 'assertion' | 'i' | 'explanation' | 'offspring' | 'delirium' | 'illness' | 'idea' | 'kind' | 'imagination' | 'remembrance' | 'convalescence' | 'i' | 'explanation' | 'silence' | 'wretch' | 'i' | 'i' | 'persuasion' | 'i' | 'tongue' | 'i' | 'hearer' | 'consternation' | 'fear' | 'horror' | 'breast' | 'i' | 'thirst' | 'sympathy' | 'i' | 'world' | 'secret' | 'i' | 'explanation' | 'truth' | 'part' | 'burden' | 'woe' | 'occasion' | 'father' | 'expression' | 'wonder' | 'victor' | 'infatuation' | 'son' | 'assertion' | 'sun' | 'witness' | 'truth' | 'i' | 'assassin' | 'blood' | 'drop' | 'drop' | 'father' | 'i' | 'race' | 'conclusion' | 'speech' | 'father' | 'subject' | 'conversation' | 'course' | 'memory' | 'place' | 'ireland' | 'time' | 'misery' | 'dwelling' | 'heart' | 'manner' | 'sufficient' | 'consciousness' | 'self-violence' | 'i' | 'voice' | 'wretchedness' | 'world' | 'journey' | 'sea' | 'ice' | 'paris' | 'way' | 'letter' | 'elizabeth' | 'friend' | 'pleasure' | 'letter' | 'uncle' | 'paris' | 'distance' | 'i' | 'fortnight' | 'cousin' | 'i' | 'geneva' | 'winter' | 'i' | 'suspense' | 'peace' | 'countenance' | 'heart' | 'comfort' | 'tranquillity' | 'fear' | 'year' | 'time' | 'i' | 'period' | 'conversation' | 'i' | 'uncle' | 'departure' | 'explanation' | 'explanation' | 'explanation' | 'probability' | 'case' | 'i' | 'postpone' | 'absence' | 'i' | 'courage' | 'victor' | 'union' | 'plan' | 'infancy' | 'event' | 'place' | 'childhood' | 'brother' | 'sister' | 'affection' | 'union' | 'case' | 'victor' | 'conjure' | 'happiness' | 'truth' | 'life' | 'ingolstadt' | 'confess' | 'friend' | 'i' | 'autumn' | 'society' | 'creature' | 'i' | 'connection' | 'honour' | 'confess' | 'friend' | 'futurity' | 'friend' | 'companion' | 'happiness' | 'i' | 'desire' | 'i' | 'marriage' | 'dictate' | 'choice' | 'cruellest' | 'word' | 'honour' | 'hope' | 'love' | 'happiness' | 'i' | 'affection' | 'obstacle' | 'ah' | 'victor' | 'cousin' | 'playmate' | 'love' | 'supposition' | 'friend' | 'request' | 'nothing' | 'earth' | 'power' | 'tranquillity' | 'letter' | 'disturb' | 'tomorrow' | 'day' | 'uncle' | 'news' | 'health' | 'smile' | 'exertion' | 'mine' | 'happiness' | 'geneva' | 'letter' | 'memory' | 'i' | 'threat' | 'fiend' | 'i' | 'sentence' | 'night' | 'employ' | 'art' | 'glimpse' | 'happiness' | 'night' | 'death' | 'struggle' | 'place' | 'i' | 'peace' | 'power' | 'end' | 'man' | 'freedom' | 'peasant' | 'family' | 'cottage' | 'burnt' | 'waste' | 'adrift' | 'homeless' | 'penniless' | 'liberty' | 'elizabeth' | 'i' | 'treasure' | 'remorse' | 'guilt' | 'death' | 'sweet' | 'elizabeth' | 'i' | 'letter' | 'heart' | 'love' | 'joy' | 'apple' | 'arm' | 'hope' | 'monster' | 'threat' | 'death' | 'i' | 'marriage' | 'fate' | 'destruction' | 'torturer' | 'i' | 'revenge' | 'threat' | 'meantime' | 'blood' | 'clerval' | 'enunciation' | 'i' | 'union' | 'cousin' | 'life' | 'hour' | 'state' | 'mind' | 'letter' | 'fear' | 'girl' | 'i' | 'happiness' | 'earth' | 'i' | 'day' | 'enjoy' | 'life' | 'endeavours' | 'contentment' | 'i' | 'secret' | 'frame' | 'horror' | 'misery' | 'i' | 'i' | 'tale' | 'misery' | 'terror' | 'day' | 'marriage' | 'place' | 'cousin' | 'confidence' | 'conjure' | 'week' | 'arrival' | 'letter' | 'girl' | 'affection' | 'frame' | 'cheeks' | 'i' | 'change' | 'thinner' | 'vivacity' | 'gentleness' | 'compassion' | 'companion' | 'i' | 'tranquillity' | 'memory' | 'madness' | 'thought' | 'insanity' | 'i' | 'rage' | 'despondent' | 'spoke' | 'anyone' | 'motionless' | 'multitude' | 'power' | 'voice' | 'passion' | 'sunk' | 'torpor' | 'reason' | 'resignation' | 'ah' | 'unfortunate' | 'peace' | 'remorse' | 'poison' | 'luxury' | 'excess' | 'grief' | 'arrival' | 'spoke' | 'marriage' | 'elizabeth' | 'i' | 'attachment' | 'none' | 'earth' | 'union' | 'delight' | 'day' | 'life' | 'death' | 'happiness' | 'cousin' | 'victor' | 'love' | 'circle' | 'affection' | 'misfortune' | 'time' | 'despair' | 'care' | 'father' | 'remembrance' | 'threat' | 'omnipotent' | 'fiend' | 'blood' | 'i' | 'invincible' | 'fate' | 'death' | 'evil' | 'loss' | 'i' | 'countenance' | 'father' | 'cousin' | 'ceremony' | 'place' | 'i' | 'seal' | 'fate' | 'god' | 'instant' | 'i' | 'intention' | 'adversary' | 'i' | 'country' | 'friendless' | 'outcast' | 'earth' | 'marriage' | 'monster' | 'i' | 'i' | 'death' | 'i' | 'dearer' | 'victim' | 'period' | 'marriage' | 'cowardice' | 'feeling' | 'i' | 'heart' | 'sink' | 'i' | 'appearance' | 'hilarity' | 'joy' | 'countenance' | 'father' | 'eye' | 'elizabeth' | 'union' | 'contentment' | 'fear' | 'happiness' | 'dream' | 'trace' | 'regret' | 'event' | 'appearance' | 'i' | 'i' | 'heart' | 'anxiety' | 'earnestness' | 'father' | 'tragedy' | 'part' | 'inheritance' | 'elizabeth' | 'government' | 'possession' | 'como' | 'union' | 'lavenza' | 'happiness' | 'lake' | 'meantime' | 'i' | 'precaution' | 'person' | 'case' | 'fiend' | 'dagger' | 'watch' | 'artifice' | 'degree' | 'tranquillity' | 'period' | 'threat' | 'delusion' | 'worthy' | 'peace' | 'happiness' | 'i' | 'marriage' | 'appearance' | 'certainty' | 'day' | 'solemnization' | 'occurrence' | 'accident' | 'elizabeth' | 'tranquil' | 'demeanour' | 'mind' | 'day' | 'destiny' | 'presentiment' | 'evil' | 'dreadful' | 'i' | 'day' | 'father' | 'meantime' | 'bustle' | 'preparation' | 'melancholy' | 'niece' | 'diffidence' | 'bride' | 'ceremony' | 'party' | 'elizabeth' | 'i' | 'journey' | 'water' | 'night' | 'voyage' | 'day' | 'day' | 'wind' | 'embarkation' | 'life' | 'feeling' | 'happiness' | 'sun' | 'kind' | 'canopy' | 'beauty' | 'scene' | 'side' | 'lake' | 'saleve' | 'montalegre' | 'distance' | 'mont' | 'blanc' | 'assemblage' | 'snowy' | 'vain' | 'endeavour' | 'mighty' | 'jura' | 'side' | 'ambition' | 'country' | 'barrier' | 'invader' | 'hand' | 'elizabeth' | 'love' | 'ah' | 'i' | 'i' | 'freedom' | 'despair' | 'day' | 'victor' | 'elizabeth' | 'nothing' | 'joy' | 'face' | 'heart' | 'something' | 'prospect' | 'voice' | 'clouds' | 'dome' | 'mont' | 'blanc' | 'scene' | 'beauty' | 'look' | 'fish' | 'pebble' | 'bottom' | 'day' | 'mine' | 'reflection' | 'temper' | 'joy' | 'shone' | 'place' | 'distraction' | 'reverie' | 'sun' | 'river' | 'drance' | 'path' | 'chasms' | 'alps' | 'closer' | 'lake' | 'amphitheatre' | 'boundary' | 'spire' | 'shone' | 'range' | 'mountain' | 'mountain' | 'wind' | 'rapidity' | 'sunset' | 'breeze' | 'air' | 'water' | 'motion' | 'shore' | 'scent' | 'hay' | 'sun' | 'horizon' | 'i' | 'shore' | 'i' | 'chapter' | 'oclock' | 'time' | 'shore' | 'transitory' | 'light' | 'inn' | 'scene' | 'darkness' | 'wind' | 'violence' | 'west' | 'moon' | 'summit' | 'clouds' | 'flight' | 'vulture' | 'lake' | 'scene' | 'restless' | 'storm' | 'rain' | 'i' | 'day' | 'night' | 'mind' | 'i' | 'hand' | 'pistol' | 'bosom' | 'sound' | 'i' | 'life' | 'conflict' | 'life' | 'adversary' | 'agitation' | 'time' | 'timid' | 'silence' | 'something' | 'glance' | 'terror' | 'trembling' | 'victor' | 'peace' | 'peace' | 'love' | 'i' | 'night' | 'night' | 'i' | 'hour' | 'state' | 'mind' | 'combat' | 'wife' | 'i' | 'knowledge' | 'situation' | 'enemy' | 'time' | 'house' | 'corner' | 'retreat' | 'trace' | 'chance' | 'execution' | 'shrill' | 'scream' | 'room' | 'elizabeth' | 'truth' | 'mind' | 'motion' | 'muscle' | 'fibre' | 'blood' | 'trickling' | 'limbs' | 'state' | 'instant' | 'scream' | 'room' | 'god' | 'i' | 'destruction' | 'hope' | 'creature' | 'earth' | 'lifeless' | 'inanimate' | 'bed' | 'head' | 'pale' | 'half' | 'hair' | 'figure' | 'bloodless' | 'form' | 'flung' | 'murderer' | 'bridal' | 'bier' | 'alas' | 'life' | 'moment' | 'recollection' | 'i' | 'ground' | 'i' | 'inn' | 'breathless' | 'terror' | 'horror' | 'mockery' | 'shadow' | 'room' | 'body' | 'elizabeth' | 'love' | 'wife' | 'living' | 'posture' | 'i' | 'beheld' | 'head' | 'arm' | 'handkerchief' | 'face' | 'neck' | 'i' | 'asleep' | 'ardour' | 'languor' | 'coldness' | 'i' | 'i' | 'mark' | 'grasp' | 'neck' | 'breath' | 'i' | 'agony' | 'despair' | 'i' | 'room' | 'kind' | 'panic' | 'light' | 'moon' | 'chamber' | 'sensation' | 'horror' | 'window' | 'figure' | 'grin' | 'face' | 'monster' | 'finger' | 'corpse' | 'wife' | 'window' | 'pistol' | 'bosom' | 'station' | 'swiftness' | 'lightning' | 'lake' | 'report' | 'pistol' | 'crowd' | 'room' | 'i' | 'spot' | 'track' | 'vain' | 'form' | 'fancy' | 'country' | 'i' | 'distance' | 'house' | 'head' | 'round' | 'man' | 'i' | 'state' | 'exhaustion' | 'film' | 'skin' | 'heat' | 'fever' | 'state' | 'i' | 'bed' | 'room' | 'something' | 'i' | 'interval' | 'i' | 'instinct' | 'room' | 'corpse' | 'lay' | 'hung' | 'time' | 'idea' | 'mind' | 'cause' | 'i' | 'cloud' | 'wonder' | 'horror' | 'death' | 'william' | 'execution' | 'justine' | 'murder' | 'clerval' | 'wife' | 'moment' | 'malignity' | 'fiend' | 'father' | 'grasp' | 'idea' | 'shudder' | 'action' | 'i' | 'speed' | 'i' | 'lake' | 'wind' | 'rain' | 'morning' | 'i' | 'night' | 'i' | 'oar' | 'i' | 'relief' | 'torment' | 'exercise' | 'misery' | 'i' | 'excess' | 'agitation' | 'i' | 'exertion' | 'i' | 'oar' | 'head' | 'way' | 'idea' | 'i' | 'i' | 'happier' | 'time' | 'i' | 'day' | 'company' | 'shadow' | 'recollection' | 'rain' | 'moment' | 'i' | 'play' | 'elizabeth' | 'nothing' | 'mind' | 'change' | 'sun' | 'clouds' | 'nothing' | 'day' | 'fiend' | 'hope' | 'happiness' | 'creature' | 'i' | 'event' | 'history' | 'man' | 'dwell' | 'event' | 'mine' | 'tale' | 'acme' | 'i' | 'desolate' | 'strength' | 'narration' | 'i' | 'geneva' | 'father' | 'sunk' | 'i' | 'man' | 'vacancy' | 'charm' | 'delight' | 'elizabeth' | 'daughter' | 'affection' | 'man' | 'decline' | 'life' | 'fiend' | 'misery' | 'grey' | 'wretchedness' | 'existence' | 'way' | 'bed' | 'sensation' | 'darkness' | 'i' | 'flowery' | 'youth' | 'awoke' | 'dungeon' | 'melancholy' | 'conception' | 'situation' | 'prison' | 'understood' | 'cell' | 'habitation' | 'liberty' | 'gift' | 'i' | 'reason' | 'time' | 'memory' | 'cause' | 'monster' | 'i' | 'daemon' | 'i' | 'world' | 'destruction' | 'i' | 'maddening' | 'rage' | 'i' | 'i' | 'grasp' | 'revenge' | 'head' | 'hate' | 'purpose' | 'month' | 'release' | 'judge' | 'town' | 'i' | 'accusation' | 'destroyer' | 'family' | 'i' | 'authority' | 'apprehension' | 'murderer' | 'magistrate' | 'attention' | 'kindness' | 'sir' | 'part' | 'villain' | 'thank' | 'i' | 'deposition' | 'i' | 'tale' | 'i' | 'credit' | 'something' | 'truth' | 'conviction' | 'story' | 'dream' | 'motive' | 'falsehood' | 'manner' | 'i' | 'heart' | 'resolution' | 'destroyer' | 'death' | 'purpose' | 'agony' | 'interval' | 'life' | 'i' | 'history' | 'briefly' | 'precision' | 'accuracy' | 'exclamation' | 'magistrate' | 'horror' | 'surprise' | 'disbelief' | 'countenance' | 'i' | 'narration' | 'i' | 'i' | 'seizure' | 'punishment' | 'i' | 'power' | 'duty' | 'magistrate' | 'man' | 'execution' | 'occasion' | 'address' | 'change' | 'physiognomy' | 'auditor' | 'story' | 'kind' | 'belief' | 'tale' | 'consequence' | 'tide' | 'incredulity' | 'i' | 'aid' | 'pursuit' | 'creature' | 'animal' | 'sea' | 'ice' | 'inhabit' | 'man' | 'venture' | 'commission' | 'one' | 'place' | 'region' | 'spot' | 'inhabit' | 'refuge' | 'alps' | 'chamois' | 'beast' | 'prey' | 'credit' | 'enemy' | 'punishment' | 'desert' | 'rage' | 'magistrate' | 'power' | 'monster' | 'punishment' | 'proportionate' | 'measure' | 'mind' | 'i' | 'avail' | 'revenge' | 'moment' | 'vice' | 'confess' | 'devouring' | 'passion' | 'soul' | 'rage' | 'i' | 'murderer' | 'i' | 'society' | 'demand' | 'resource' | 'devote' | 'life' | 'death' | 'destruction' | 'excess' | 'agitation' | 'i' | 'frenzy' | 'manner' | 'something' | 'doubt' | 'haughty' | 'fierceness' | 'martyrs' | 'genevan' | 'magistrate' | 'mind' | 'devotion' | 'heroism' | 'elevation' | 'mind' | 'appearance' | 'madness' | 'nurse' | 'child' | 'tale' | 'delirium' | 'man' | 'art' | 'thou' | 'pride' | 'wisdom' | 'cease' | 'house' | 'mode' | 'action' | 'chapter' | 'situation' | 'thought' | 'i' | 'fury' | 'strength' | 'composure' | 'delirium' | 'death' | 'portion' | 'resolution' | 'country' | 'i' | 'adversity' | 'i' | 'sum' | 'money' | 'mother' | 'life' | 'portion' | 'earth' | 'sandy' | 'plain' | 'prayed' | 'death' | 'revenge' | 'adversary' | 'i' | 'geneva' | 'labour' | 'clue' | 'i' | 'enemy' | 'plan' | 'town' | 'path' | 'i' | 'night' | 'i' | 'entrance' | 'cemetery' | 'william' | 'elizabeth' | 'father' | 'i' | 'tomb' | 'everything' | 'wind' | 'night' | 'scene' | 'observer' | 'shadow' | 'head' | 'mourner' | 'grief' | 'scene' | 'way' | 'despair' | 'murderer' | 'existence' | 'grass' | 'earth' | 'earth' | 'i' | 'kneel' | 'grief' | 'i' | 'thee' | 'night' | 'thee' | 'daemon' | 'misery' | 'conflict' | 'purpose' | 'i' | 'life' | 'revenge' | 'sun' | 'herbage' | 'earth' | 'call' | 'vengeance' | 'aid' | 'work' | 'monster' | 'deep' | 'agony' | 'despair' | 'adjuration' | 'solemnity' | 'awe' | 'heard' | 'devotion' | 'i' | 'rage' | 'utterance' | 'i' | 'stillness' | 'night' | 'loud' | 'laugh' | 'hell' | 'mockery' | 'laughter' | 'moment' | 'i' | 'frenzy' | 'existence' | 'vow' | 'i' | 'vengeance' | 'laughter' | 'voice' | 'ear' | 'whisper' | 'i' | 'wretch' | 'i' | 'spot' | 'sound' | 'devil' | 'grasp' | 'disk' | 'moon' | 'arose' | 'shone' | 'shape' | 'speed' | 'task' | 'clue' | 'i' | 'rhone' | 'mediterranean' | 'chance' | 'fiend' | 'enter' | 'night' | 'hide' | 'vessel' | 'bound' | 'sea' | 'i' | 'passage' | 'ship' | 'russia' | 'track' | 'apparition' | 'path' | 'i' | 'trace' | 'mark' | 'head' | 'i' | 'print' | 'step' | 'plain' | 'life' | 'care' | 'unknown' | 'i' | 'fatigue' | 'i' | 'devil' | 'hell' | 'spirit' | 'i' | 'nature' | 'hunger' | 'exhaustion' | 'repast' | 'desert' | 'fare' | 'country' | 'ate' | 'i' | 'cloudless' | 'i' | 'thirst' | 'cloud' | 'sky' | 'i' | 'i' | 'daemon' | 'population' | 'country' | 'chiefly' | 'path' | 'i' | 'money' | 'friendship' | 'food' | 'i' | 'part' | 'i' | 'fire' | 'cooking' | 'life' | 'i' | 'joy' | 'o' | 'happiness' | 'i' | 'strength' | 'pilgrimage' | 'respite' | 'i' | 'day' | 'i' | 'hope' | 'night' | 'sleep' | 'i' | 'wife' | 'country' | 'countenance' | 'father' | 'silver' | 'voice' | 'health' | 'youth' | 'march' | 'i' | 'i' | 'night' | 'i' | 'reality' | 'fondness' | 'feel' | 'waking' | 'vengeance' | 'heart' | 'i' | 'path' | 'destruction' | 'daemon' | 'task' | 'heaven' | 'impulse' | 'power' | 'i' | 'desire' | 'soul' | 'stone' | 'fury' | 'reign' | 'power' | 'north' | 'misery' | 'frost' | 'place' | 'hare' | 'eat' | 'enemy' | 'period' | 'devil' | 'vow' | 'vengeance' | 'devote' | 'thee' | 'fiend' | 'death' | 'search' | 'elizabeth' | 'reward' | 'toil' | 'pilgrimage' | 'i' | 'journey' | 'northward' | 'cold' | 'degree' | 'forth' | 'starvation' | 'prey' | 'ice' | 'fish' | 'i' | 'article' | 'maintenance' | 'triumph' | 'enemy' | 'difficulty' | 'labours' | 'inscription' | 'prepare' | 'food' | 'journey' | 'everlasting' | 'courage' | 'perseverance' | 'purpose' | 'heaven' | 'fervour' | 'ocean' | 'distance' | 'boundary' | 'horizon' | 'south' | 'ice' | 'land' | 'wildness' | 'ruggedness' | 'greeks' | 'wept' | 'joy' | 'mediterranean' | 'asia' | 'rapture' | 'boundary' | 'i' | 'i' | 'heart' | 'guiding' | 'spirit' | 'safety' | 'place' | 'i' | 'adversarys' | 'gibe' | 'period' | 'i' | 'sledge' | 'speed' | 'i' | 'fiend' | 'i' | 'ground' | 'pursuit' | 'i' | 'ocean' | 'journey' | 'advance' | 'i' | 'beach' | 'courage' | 'hamlet' | 'seashore' | 'i' | 'fiend' | 'information' | 'monster' | 'night' | 'gun' | 'flight' | 'cottage' | 'fear' | 'appearance' | 'store' | 'winter' | 'food' | 'sledge' | 'drove' | 'night' | 'joy' | 'journey' | 'sea' | 'direction' | 'land' | 'breaking' | 'ice' | 'information' | 'i' | 'access' | 'despair' | 'i' | 'destructive' | 'journey' | 'ocean' | 'amidst' | 'cold' | 'endure' | 'i' | 'native' | 'climate' | 'idea' | 'fiend' | 'rage' | 'vengeance' | 'mighty' | 'tide' | 'feeling' | 'repose' | 'round' | 'journey' | 'i' | 'land-sledge' | 'ocean' | 'stock' | 'land' | 'misery' | 'nothing' | 'sentiment' | 'retribution' | 'heart' | 'immense' | 'ice' | 'passage' | 'thunder' | 'ground' | 'sea' | 'destruction' | 'frost' | 'sea' | 'secure' | 'quantity' | 'provision' | 'i' | 'i' | 'i' | 'journey' | 'protraction' | 'hope' | 'heart' | 'despondency' | 'grief' | 'despair' | 'prey' | 'i' | 'beneath' | 'misery' | 'toil' | 'summit' | 'ice' | 'mountain' | 'fatigue' | 'i' | 'expanse' | 'anguish' | 'eye' | 'speck' | 'dusky' | 'plain' | 'i' | 'sight' | 'cry' | 'ecstasy' | 'i' | 'sledge' | 'form' | 'gush' | 'heart' | 'view' | 'i' | 'daemon' | 'sight' | 'burning' | 'way' | 'time' | 'delay' | 'companion' | 'portion' | 'food' | 'rest' | 'route' | 'sledge' | 'sight' | 'time' | 'ice-rock' | 'intervening' | 'crags' | 'journey' | 'enemy' | 'mile' | 'distant' | 'heart' | 'i' | 'grasp' | 'foe' | 'i' | 'trace' | 'i' | 'ground' | 'sea' | 'thunder' | 'progress' | 'beneath' | 'moment' | 'i' | 'vain' | 'wind' | 'sea' | 'mighty' | 'shock' | 'earthquake' | 'sound' | 'work' | 'sea' | 'enemy' | 'i' | 'piece' | 'ice' | 'death' | 'manner' | 'accumulation' | 'distress' | 'i' | 'vessel' | 'anchor' | 'forth' | 'succour' | 'life' | 'i' | 'conception' | 'sight' | 'part' | 'sledge' | 'fatigue' | 'ice' | 'raft' | 'direction' | 'ship' | 'i' | 'mercy' | 'purpose' | 'i' | 'boat' | 'i' | 'enemy' | 'direction' | 'board' | 'vigour' | 'i' | 'death' | 'task' | 'guiding' | 'spirit' | 'daemon' | 'rest' | 'i' | 'desire' | 'die' | 'walton' | 'vengeance' | 'death' | 'pilgrimage' | 'i' | 'i' | 'vengeance' | 'swear' | 'list' | 'power' | 'heart' | 'soul' | 'form' | 'treachery' | 'malice' | 'william' | 'justine' | 'clerval' | 'father' | 'victor' | 'sword' | 'heart' | 'i' | 'steel' | 'aright' | 'walton' | 'continuation' | 'story' | 'margaret' | 'blood' | 'congeal' | 'horror' | 'mine' | 'agony' | 'tale' | 'voice' | 'broken' | 'difficulty' | 'indignation' | 'sorrow' | 'wretchedness' | 'countenance' | 'voice' | 'mark' | 'agitation' | 'volcano' | 'forth' | 'face' | 'expression' | 'rage' | 'persecutor' | 'tale' | 'appearance' | 'truth' | 'felix' | 'safie' | 'apparition' | 'monster' | 'ship' | 'conviction' | 'truth' | 'monster' | 'existence' | 'i' | 'surprise' | 'admiration' | 'formation' | 'point' | 'friend' | 'whither' | 'curiosity' | 'lead' | 'world' | 'enemy' | 'peace' | 'peace' | 'frankenstein' | 'i' | 'history' | 'life' | 'spirit' | 'enemy' | 'narration' | 'one' | 'posterity' | 'week' | 'tale' | 'imagination' | 'feeling' | 'soul' | 'interest' | 'tale' | 'counsel' | 'destitute' | 'hope' | 'consolation' | 'joy' | 'spirit' | 'peace' | 'death' | 'comfort' | 'offspring' | 'solitude' | 'delirium' | 'converse' | 'communion' | 'consolation' | 'vengeance' | 'fancy' | 'world' | 'solemnity' | 'imposing' | 'truth' | 'history' | 'point' | 'literature' | 'knowledge' | 'apprehension' | 'eloquence' | 'incident' | 'endeavours' | 'pity' | 'love' | 'creature' | 'prosperity' | 'godlike' | 'ruin' | 'worth' | 'greatness' | 'fall' | 'enterprise' | 'coolness' | 'judgment' | 'sentiment' | 'worth' | 'nature' | 'i' | 'grief' | 'i' | 'work' | 'i' | 'creation' | 'animal' | 'i' | 'herd' | 'thought' | 'commencement' | 'career' | 'dust' | 'nothing' | 'archangel' | 'hell' | 'imagination' | 'analysis' | 'application' | 'union' | 'idea' | 'creation' | 'man' | 'passion' | 'work' | 'i' | 'idea' | 'infancy' | 'i' | 'ambition' | 'sunk' | 'friend' | 'i' | 'state' | 'degradation' | 'despondency' | 'heart' | 'destiny' | 'i' | 'friend' | 'behold' | 'desert' | 'seas' | 'i' | 'value' | 'i' | 'life' | 'idea' | 'thank' | 'walton' | 'kind' | 'wretch' | 'man' | 'clerval' | 'woman' | 'elizabeth' | 'excellence' | 'childhood' | 'power' | 'friend' | 'integrity' | 'sister' | 'brother' | 'fraud' | 'dealing' | 'friend' | 'spite' | 'suspicion' | 'dear' | 'habit' | 'association' | 'i' | 'voice' | 'elizabeth' | 'conversation' | 'clerval' | 'ear' | 'feeling' | 'solitude' | 'life' | 'undertaking' | 'design' | 'fraught' | 'utility' | 'destiny' | 'existence' | 'lot' | 'earth' | 'i' | 'sister' | 'peril' | 'i' | 'england' | 'dearer' | 'inhabit' | 'ice' | 'admit' | 'escape' | 'moment' | 'vessel' | 'brave' | 'i' | 'aid' | 'none' | 'something' | 'situation' | 'courage' | 'cause' | 'margaret' | 'state' | 'mind' | 'destruction' | 'return' | 'despair' | 'hope' | 'sister' | 'failing' | 'prospect' | 'death' | 'husband' | 'bless' | 'guest' | 'compassion' | 'hope' | 'life' | 'possession' | 'sea' | 'spite' | 'myself' | 'power' | 'eloquence' | 'despair' | 'voice' | 'ice' | 'man' | 'day' | 'expectation' | 'fear' | 'mutiny' | 'despair' | 'scene' | 'interest' | 'ice' | 'danger' | 'conflict' | 'cold' | 'grave' | 'amidst' | 'scene' | 'desolation' | 'frankenstein' | 'health' | 'fire' | 'exertion' | 'lifelessness' | 'i' | 'letter' | 'mutiny' | 'morning' | 'countenance' | 'friend' | 'half' | 'i' | 'dozen' | 'admission' | 'cabin' | 'leader' | 'deputation' | 'requisition' | 'justice' | 'i' | 'ice' | 'escape' | 'ice' | 'passage' | 'voyage' | 'i' | 'promise' | 'vessel' | 'course' | 'speech' | 'idea' | 'justice' | 'possibility' | 'demand' | 'i' | 'frankenstein' | 'force' | 'cheeks' | 'vigour' | 'captain' | 'design' | 'expedition' | 'wherefore' | 'way' | 'placid' | 'sea' | 'terror' | 'incident' | 'fortitude' | 'forth' | 'courage' | 'danger' | 'death' | 'undertaking' | 'belonging' | 'death' | 'honour' | 'benefit' | 'mankind' | 'behold' | 'imagination' | 'danger' | 'mighty' | 'trial' | 'courage' | 'strength' | 'peril' | 'preparation' | 'captain' | 'shame' | 'defeat' | 'firm' | 'rock' | 'ice' | 'stuff' | 'stigma' | 'disgrace' | 'return' | 'foe' | 'voice' | 'speech' | 'eye' | 'design' | 'heroism' | 'i' | 'i' | 'reflection' | 'courage' | 'friend' | 'languor' | 'life' | 'i' | 'return' | 'purpose' | 'fate' | 'glory' | 'honour' | 'die' | 'cowardice' | 'indecision' | 'philosophy' | 'possess' | 'injustice' | 'patience' | 'i' | 'utility' | 'glory' | 'friend' | 'sister' | 'england' | 'ice' | 'thunder' | 'distance' | 'split' | 'direction' | 'peril' | 'attention' | 'guest' | 'illness' | 'degree' | 'bed' | 'ice' | 'force' | 'north' | 'breeze' | 'sprang' | 'west' | 'passage' | 'return' | 'country' | 'shout' | 'joy' | 'frankenstein' | 'awoke' | 'cause' | 'tumult' | 'i' | 'i' | 'i' | 'purpose' | 'mine' | 'heaven' | 'vengeance' | 'strength' | 'spring' | 'bed' | 'exertion' | 'life' | 'length' | 'difficulty' | 'surgeon' | 'composing' | 'draught' | 'meantime' | 'friend' | 'sentence' | 'i' | 'sat' | 'bed' | 'voice' | 'strength' | 'i' | 'enemy' | 'persecutor' | 'walton' | 'existence' | 'i' | 'burning' | 'desire' | 'revenge' | 'i' | 'death' | 'conduct' | 'fit' | 'madness' | 'i' | 'creature' | 'power' | 'happiness' | 'well-being' | 'duty' | 'paramount' | 'attention' | 'proportion' | 'happiness' | 'misery' | 'view' | 'i' | 'i' | 'companion' | 'creature' | 'malignity' | 'selfishness' | 'evil' | 'happiness' | 'wisdom' | 'thirst' | 'vengeance' | 'task' | 'destruction' | 'i' | 'work' | 'request' | 'i' | 'reason' | 'virtue' | 'country' | 'task' | 'chance' | 'consideration' | 'balancing' | 'judgment' | 'approach' | 'death' | 'i' | 'dare' | 'i' | 'passion' | 'instrument' | 'mischief' | 'hour' | 'release' | 'i' | 'flit' | 'farewell' | 'walton' | 'happiness' | 'tranquillity' | 'ambition' | 'science' | 'i' | 'voice' | 'length' | 'effort' | 'silence' | 'hour' | 'hand' | 'irradiation' | 'smile' | 'margaret' | 'comment' | 'extinction' | 'spirit' | 'depth' | 'sorrow' | 'i' | 'mind' | 'cloud' | 'disappointment' | 'journey' | 'i' | 'consolation' | 'breeze' | 'watch' | 'deck' | 'sound' | 'voice' | 'cabin' | 'frankenstein' | 'night' | 'sister' | 'god' | 'scene' | 'place' | 'i' | 'remembrance' | 'power' | 'tale' | 'catastrophe' | 'i' | 'cabin' | 'friend' | 'form' | 'i' | 'stature' | 'coffin' | 'face' | 'hair' | 'hand' | 'colour' | 'texture' | 'mummy' | 'sound' | 'approach' | 'grief' | 'horror' | 'sprung' | 'window' | 'vision' | 'face' | 'hideousness' | 'i' | 'regard' | 'destroyer' | 'i' | 'wonder' | 'form' | 'creator' | 'presence' | 'feature' | 'gesture' | 'rage' | 'passion' | 'victim' | 'murder' | 'series' | 'close' | 'i' | 'thee' | 'i' | 'thee' | 'thou' | 'lovedst' | 'alas' | 'voice' | 'duty' | 'request' | 'friend' | 'enemy' | 'mixture' | 'curiosity' | 'compassion' | 'i' | 'face' | 'something' | 'ugliness' | 'i' | 'monster' | 'length' | 'i' | 'resolution' | 'pause' | 'tempest' | 'passion' | 'repentance' | 'i' | 'voice' | 'conscience' | 'remorse' | 'vengeance' | 'extremity' | 'frankenstein' | 'daemon' | 'i' | 'corpse' | 'consummation' | 'deed' | 'portion' | 'anguish' | 'detail' | 'execution' | 'selfishness' | 'heart' | 'remorse' | 'clerval' | 'music' | 'heart' | 'love' | 'sympathy' | 'misery' | 'vice' | 'violence' | 'change' | 'torture' | 'murder' | 'clerval' | 'i' | 'i' | 'frankenstein' | 'pity' | 'i' | 'author' | 'existence' | 'happiness' | 'wretchedness' | 'despair' | 'enjoyment' | 'indulgence' | 'i' | 'envy' | 'indignation' | 'thirst' | 'vengeance' | 'i' | 'threat' | 'i' | 'torture' | 'i' | 'slave' | 'master' | 'nay' | 'i' | 'i' | 'feeling' | 'excess' | 'despair' | 'thenceforth' | 'choice' | 'nature' | 'element' | 'i' | 'completion' | 'design' | 'passion' | 'victim' | 'i' | 'misery' | 'i' | 'frankenstein' | 'eloquence' | 'persuasion' | 'i' | 'form' | 'friend' | 'indignation' | 'wretch' | 'i' | 'desolation' | 'torch' | 'pile' | 'fall' | 'fiend' | 'object' | 'prey' | 'vengeance' | 'pity' | 'victim' | 'malignity' | 'power' | 'impression' | 'purport' | 'feeling' | 'misery' | 'sympathy' | 'i' | 'love' | 'virtue' | 'happiness' | 'affection' | 'i' | 'virtue' | 'shadow' | 'happiness' | 'affection' | 'despair' | 'seek' | 'sympathy' | 'i' | 'content' | 'i' | 'abhorrence' | 'opprobrium' | 'memory' | 'fancy' | 'virtue' | 'fame' | 'enjoyment' | 'form' | 'i' | 'honour' | 'devotion' | 'crime' | 'animal' | 'guilt' | 'mischief' | 'malignity' | 'misery' | 'catalogue' | 'i' | 'creature' | 'beauty' | 'majesty' | 'goodness' | 'angel' | 'devil' | 'enemy' | 'god' | 'man' | 'desolation' | 'friend' | 'knowledge' | 'detail' | 'misery' | 'i' | 'i' | 'craving' | 'love' | 'fellowship' | 'i' | 'injustice' | 'i' | 'criminal' | 'friend' | 'door' | 'rustic' | 'saviour' | 'child' | 'i' | 'abortion' | 'blood' | 'recollection' | 'injustice' | 'i' | 'wretch' | 'i' | 'helpless' | 'innocent' | 'death' | 'throat' | 'thing' | 'i' | 'creator' | 'love' | 'admiration' | 'misery' | 'ruin' | 'death' | 'abhorrence' | 'deed' | 'heart' | 'imagination' | 'moment' | 'imagination' | 'fear' | 'instrument' | 'mischief' | 'work' | 'death' | 'series' | 'sacrifice' | 'vessel' | 'ice' | 'raft' | 'thither' | 'extremity' | 'globe' | 'pile' | 'consume' | 'frame' | 'light' | 'wretch' | 'i' | 'prey' | 'remembrance' | 'sun' | 'cheeks' | 'light' | 'feeling' | 'sense' | 'condition' | 'happiness' | 'world' | 'i' | 'warmth' | 'summer' | 'rustling' | 'warbling' | 'i' | 'consolation' | 'remorse' | 'rest' | 'death' | 'farewell' | 'i' | 'humankind' | 'farewell' | 'wert' | 'desire' | 'revenge' | 'life' | 'destruction' | 'didst' | 'extinction' | 'i' | 'wretchedness' | 'mode' | 'wouldst' | 'vengeance' | 'thou' | 'wert' | 'agony' | 'sting' | 'remorse' | 'death' | 'enthusiasm' | 'i' | 'pile' | 'agony' | 'torturing' | 'light' | 'conflagration' | 'sea' | 'spirit' | 'peace' | 'farewell' | 'cabin' | 'window' | 'ice' | 'raft' | 'vessel' | 'darkness' | 'distance'\nFW -> 'god' | 'de' | 'lacey' | 'de' | 'lacey' | 'de' | 'lacey' | 'mighty' | 'de' | 'lacey' | 'de' | 'lacey' | 'de' | 'lacey' | 'de' | 'lacey' | 'mrxperiod'\nPRP -> 'you' | 'you' | 'me' | 'you' | 'me' | 'it' | 'itself' | 'we' | 'they' | 'me' | 'he' | 'you' | 'me' | 'you' | 'them' | 'me' | 'it' | 'you' | 'myself' | 'myself' | 'myself' | 'me' | 'me' | 'he' | 'they' | 'you' | 'you' | 'you' | 'me' | 'you' | 'me' | 'me' | 'it' | 'me' | 'you' | 'me' | 'me' | 'it' | 'me' | 'it' | 'it' | 'it' | 'they' | 'it' | 'me' | 'me' | 'he' | 'he' | 'him' | 'he' | 'him' | 'me' | 'him' | 'it' | 'him' | 'myself' | 'him' | 'him' | 'he' | 'he' | 'she' | 'herself' | 'him' | 'her' | 'she' | 'he' | 'he' | 'he' | 'he' | 'himself' | 'himself' | 'he' | 'he' | 'you' | 'he' | 'he' | 'he' | 'him' | 'it' | 'he' | 'it' | 'you' | 'me' | 'you' | 'it' | 'you' | 'you' | 'you' | 'me' | 'you' | 'me' | 'them' | 'you' | 'me' | 'you' | 'me' | 'us' | 'we' | 'them' | 'we' | 'it' | 'us' | 'us' | 'us' | 'themselves' | 'itself' | 'us' | 'it' | 'it' | 'you' | 'me' | 'we' | 'she' | 'we' | 'we' | 'we' | 'we' | 'we' | 'he' | 'we' | 'we' | 'it' | 'we' | 'it' | 'we' | 'we' | 'we' | 'it' | 'it' | 'we' | 'us' | 'it' | 'he' | 'he' | 'you' | 'me' | 'me' | 'he' | 'you' | 'me' | 'you' | 'you' | 'me' | 'he' | 'we' | 'he' | 'you' | 'we' | 'him' | 'he' | 'he' | 'we' | 'him' | 'him' | 'him' | 'him' | 'he' | 'we' | 'him' | 'him' | 'he' | 'him' | 'he' | 'him' | 'he' | 'him' | 'him' | 'him' | 'him' | 'it' | 'he' | 'he' | 'him' | 'him' | 'him' | 'he' | 'he' | 'me' | 'you' | 'we' | 'him' | 'we' | 'you' | 'we' | 'it' | 'he' | 'he' | 'him' | 'he' | 'me' | 'he' | 'you' | 'it' | 'me' | 'you' | 'you' | 'me' | 'you' | 'me' | 'he' | 'he' | 'him' | 'he' | 'him' | 'him' | 'myself' | 'him' | 'they' | 'him' | 'him' | 'me' | 'he' | 'he' | 'he' | 'he' | 'they' | 'he' | 'he' | 'he' | 'himself' | 'he' | 'me' | 'him' | 'he' | 'it' | 'he' | 'me' | 'he' | 'he' | 'me' | 'he' | 'you' | 'you' | 'me' | 'me' | 'you' | 'you' | 'he' | 'himself' | 'he' | 'me' | 'myself' | 'he' | 'me' | 'it' | 'you' | 'we' | 'you' | 'you' | 'he' | 'me' | 'he' | 'he' | 'he' | 'he' | 'he' | 'himself' | 'he' | 'him' | 'you' | 'you' | 'you' | 'him' | 'you' | 'you' | 'you' | 'it' | 'he' | 'him' | 'it' | 'me' | 'you' | 'me' | 'you' | 'me' | 'you' | 'you' | 'you' | 'you' | 'yourself' | 'me' | 'you' | 'you' | 'you' | 'you' | 'we' | 'it' | 'you' | 'he' | 'it' | 'you' | 'he' | 'it' | 'he' | 'him' | 'you' | 'you' | 'me' | 'you' | 'you' | 'it' | 'he' | 'me' | 'he' | 'me' | 'he' | 'you' | 'me' | 'him' | 'it' | 'it' | 'me' | 'it' | 'he' | 'him' | 'he' | 'it' | 'he' | 'them' | 'he' | 'he' | 'he' | 'he' | 'them' | 'he' | 'him' | 'him' | 'himself' | 'it' | 'he' | 'he' | 'him' | 'it' | 'him' | 'he' | 'he' | 'it' | 'he' | 'him' | 'she' | 'she' | 'she' | 'him' | 'her' | 'she' | 'he' | 'herself' | 'he' | 'her' | 'her' | 'them' | 'it' | 'he' | 'he' | 'it' | 'she' | 'he' | 'her' | 'she' | 'they' | 'they' | 'them' | 'they' | 'they' | 'them' | 'me' | 'me' | 'them' | 'it' | 'they' | 'me' | 'they' | 'they' | 'it' | 'me' | 'they' | 'them' | 'it' | 'she' | 'she' | 'her' | 'it' | 'himself' | 'me' | 'she' | 'she' | 'her' | 'her' | 'her' | 'she' | 'they' | 'they' | 'himself' | 'he' | 'he' | 'she' | 'he' | 'me' | 'they' | 'them' | 'it' | 'they' | 'her' | 'it' | 'he' | 'it' | 'she' | 'me' | 'her' | 'her' | 'we' | 'she' | 'me' | 'she' | 'we' | 'we' | 'us' | 'she' | 'herself' | 'she' | 'me' | 'they' | 'me' | 'themselves' | 'we' | 'we' | 'it' | 'myself' | 'them' | 'he' | 'he' | 'he' | 'he' | 'he' | 'us' | 'myself' | 'we' | 'they' | 'we' | 'they' | 'me' | 'it' | 'it' | 'me' | 'it' | 'himself' | 'us' | 'she' | 'she' | 'me' | 'he' | 'she' | 'him' | 'it' | 'it' | 'it' | 'we' | 'us' | 'it' | 'he' | 'he' | 'it' | 'me' | 'it' | 'it' | 'me' | 'he' | 'they' | 'me' | 'myself' | 'myself' | 'he' | 'him' | 'he' | 'he' | 'him' | 'they' | 'it' | 'we' | 'we' | 'it' | 'we' | 'it' | 'we' | 'it' | 'us' | 'he' | 'he' | 'me' | 'he' | 'me' | 'it' | 'me' | 'we' | 'myself' | 'we' | 'it' | 'me' | 'me' | 'it' | 'it' | 'it' | 'it' | 'it' | 'she' | 'she' | 'she' | 'she' | 'she' | 'her' | 'her' | 'her' | 'she' | 'myself' | 'she' | 'you' | 'you' | 'it' | 'you' | 'me' | 'myself' | 'you' | 'she' | 'itself' | 'it' | 'itself' | 'she' | 'we' | 'it' | 'we' | 'we' | 'we' | 'ourselves' | 'it' | 'me' | 'it' | 'me' | 'me' | 'she' | 'her' | 'us' | 'she' | 'she' | 'herself' | 'she' | 'she' | 'she' | 'them' | 'us' | 'she' | 'us' | 'us' | 'he' | 'him' | 'me' | 'he' | 'he' | 'we' | 'we' | 'ourselves' | 'it' | 'we' | 'me' | 'they' | 'me' | 'myself' | 'me' | 'me' | 'myself' | 'it' | 'it' | 'me' | 'me' | 'he' | 'he' | 'me' | 'you' | 'he' | 'you' | 'you' | 'you' | 'you' | 'you' | 'they' | 'you' | 'he' | 'he' | 'me' | 'me' | 'he' | 'he' | 'me' | 'them' | 'it' | 'itself' | 'me' | 'he' | 'he' | 'he' | 'he' | 'he' | 'he' | 'he' | 'they' | 'they' | 'she' | 'they' | 'they' | 'we' | 'they' | 'they' | 'me' | 'me' | 'he' | 'it' | 'myself' | 'myself' | 'him' | 'he' | 'he' | 'they' | 'us' | 'they' | 'myself' | 'me' | 'it' | 'it' | 'he' | 'you' | 'he' | 'me' | 'me' | 'me' | 'me' | 'he' | 'me' | 'me' | 'it' | 'it' | 'he' | 'me' | 'it' | 'it' | 'me' | 'them' | 'you' | 'you' | 'me' | 'myself' | 'it' | 'we' | 'myself' | 'we' | 'me' | 'me' | 'it' | 'it' | 'myself' | 'it' | 'it' | 'me' | 'them' | 'you' | 'you' | 'you' | 'me' | 'he' | 'it' | 'it' | 'myself' | 'me' | 'myself' | 'it' | 'me' | 'me' | 'me' | 'me' | 'it' | 'myself' | 'me' | 'it' | 'me' | 'it' | 'me' | 'me' | 'me' | 'them' | 'you' | 'yourself' | 'you' | 'us' | 'we' | 'you' | 'you' | 'me' | 'itself' | 'it' | 'he' | 'he' | 'you' | 'yourself' | 'me' | 'me' | 'me' | 'me' | 'me' | 'myself' | 'it' | 'me' | 'it' | 'it' | 'they' | 'myself' | 'it' | 'myself' | 'it' | 'her' | 'they' | 'her' | 'it' | 'he' | 'they' | 'me' | 'he' | 'he' | 'me' | 'it' | 'him' | 'he' | 'it' | 'me' | 'them' | 'me' | 'he' | 'him' | 'me' | 'it' | 'it' | 'it' | 'me' | 'he' | 'you' | 'you' | 'we' | 'you' | 'he' | 'him' | 'me' | 'he' | 'me' | 'it' | 'me' | 'you' | 'me' | 'you' | 'they' | 'you' | 'you' | 'myself' | 'he' | 'you' | 'you' | 'you' | 'you' | 'myself' | 'you' | 'we' | 'me' | 'him' | 'him' | 'myself' | 'me' | 'they' | 'them' | 'me' | 'we' | 'myself' | 'it' | 'me' | 'he' | 'me' | 'he' | 'he' | 'him' | 'he' | 'you' | 'me' | 'he' | 'me' | 'me' | 'me' | 'he' | 'me' | 'he' | 'them' | 'he' | 'himself' | 'he' | 'he' | 'he' | 'he' | 'them' | 'me' | 'him' | 'he' | 'them' | 'him' | 'it' | 'you' | 'me' | 'you' | 'yourself' | 'you' | 'you' | 'me' | 'you' | 'me' | 'you' | 'yourself' | 'you' | 'you' | 'you' | 'it' | 'he' | 'yourself' | 'it' | 'it' | 'you' | 'they' | 'you' | 'they' | 'you' | 'you' | 'you' | 'you' | 'it' | 'it' | 'you' | 'me' | 'you' | 'you' | 'it' | 'myself' | 'them' | 'you' | 'you' | 'us' | 'you' | 'you' | 'he' | 'you' | 'you' | 'you' | 'he' | 'he' | 'we' | 'him' | 'us' | 'he' | 'he' | 'we' | 'him' | 'he' | 'you' | 'us' | 'they' | 'me' | 'me' | 'you' | 'us' | 'you' | 'you' | 'her' | 'her' | 'it' | 'you' | 'you' | 'you' | 'it' | 'she' | 'she' | 'her' | 'she' | 'she' | 'you' | 'she' | 'she' | 'she' | 'her' | 'she' | 'me' | 'her' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'us' | 'you' | 'she' | 'me' | 'you' | 'you' | 'him' | 'he' | 'he' | 'he' | 'you' | 'he' | 'she' | 'she' | 'myself' | 'me' | 'us' | 'we' | 'you' | 'them' | 'they' | 'me' | 'he' | 'he' | 'he' | 'he' | 'he' | 'itself' | 'me' | 'he' | 'he' | 'me' | 'he' | 'me' | 'he' | 'he' | 'me' | 'him' | 'myself' | 'him' | 'me' | 'he' | 'you' | 'he' | 'us' | 'you' | 'it' | 'himself' | 'he' | 'we' | 'he' | 'themselves' | 'you' | 'myself' | 'himself' | 'me' | 'me' | 'he' | 'himself' | 'he' | 'he' | 'himself' | 'he' | 'me' | 'him' | 'them' | 'they' | 'you' | 'he' | 'it' | 'we' | 'they' | 'me' | 'me' | 'he' | 'me' | 'you' | 'me' | 'it' | 'me' | 'me' | 'me' | 'me' | 'them' | 'he' | 'himself' | 'me' | 'he' | 'he' | 'he' | 'me' | 'he' | 'we' | 'we' | 'you' | 'us' | 'you' | 'it' | 'you' | 'you' | 'you' | 'it' | 'you' | 'he' | 'you' | 'we' | 'it' | 'we' | 'we' | 'we' | 'they' | 'we' | 'he' | 'he' | 'him' | 'himself' | 'he' | 'him' | 'he' | 'us' | 'we' | 'him' | 'he' | 'he' | 'we' | 'himself' | 'he' | 'she' | 'she' | 'it' | 'o' | 'she' | 'she' | 'it' | 'she' | 'me' | 'him' | 'she' | 'we' | 'him' | 'him' | 'they' | 'you' | 'she' | 'herself' | 'we' | 'you' | 'she' | 'you' | 'he' | 'me' | 'you' | 'him' | 'he' | 'you' | 'he' | 'you' | 'he' | 'he' | 'he' | 'him' | 'we' | 'he' | 'he' | 'he' | 'we' | 'we' | 'themselves' | 'them' | 'they' | 'me' | 'me' | 'them' | 'me' | 'you' | 'myself' | 'they' | 'them' | 'me' | 'it' | 'it' | 'it' | 'it' | 'itself' | 'me' | 'me' | 'me' | 'it' | 'he' | 'he' | 'me' | 'it' | 'he' | 'it' | 'it' | 'him' | 'me' | 'he' | 'he' | 'he' | 'he' | 'me' | 'myself' | 'me' | 'me' | 'it' | 'it' | 'me' | 'it' | 'he' | 'me' | 'it' | 'it' | 'he' | 'me' | 'me' | 'he' | 'you' | 'you' | 'us' | 'you' | 'us' | 'you' | 'he' | 'me' | 'she' | 'she' | 'herself' | 'him' | 'it' | 'him' | 'he' | 'you' | 'us' | 'we' | 'it' | 'she' | 'it' | 'it' | 'us' | 'she' | 'you' | 'he' | 'she' | 'it' | 'it' | 'you' | 'he' | 'me' | 'we' | 'he' | 'we' | 'you' | 'she' | 'she' | 'she' | 'she' | 'me' | 'her' | 'him' | 'we' | 'it' | 'it' | 'she' | 'me' | 'she' | 'me' | 'you' | 'she' | 'us' | 'we' | 'she' | 'she' | 'she' | 'she' | 'you' | 'me' | 'it' | 'me' | 'she' | 'she' | 'you' | 'we' | 'them' | 'it' | 'myself' | 'it' | 'me' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'her' | 'it' | 'we' | 'she' | 'us' | 'she' | 'herself' | 'her' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'she' | 'him' | 'she' | 'it' | 'she' | 'she' | 'her' | 'she' | 'she' | 'her' | 'she' | 'me' | 'me' | 'she' | 'she' | 'she' | 'she' | 'she' | 'him' | 'she' | 'she' | 'she' | 'she' | 'she' | 'her' | 'she' | 'it' | 'she' | 'her' | 'she' | 'she' | 'it' | 'she' | 'she' | 'she' | 'me' | 'it' | 'it' | 'me' | 'it' | 'him' | 'he' | 'it' | 'they' | 'they' | 'her' | 'them' | 'she' | 'she' | 'it' | 'me' | 'her' | 'she' | 'me' | 'she' | 'her' | 'she' | 'she' | 'she' | 'him' | 'her' | 'she' | 'she' | 'it' | 'it' | 'her' | 'her' | 'it' | 'her' | 'she' | 'herself' | 'she' | 'it' | 'she' | 'they' | 'them' | 'myself' | 'he' | 'it' | 'it' | 'it' | 'me' | 'me' | 'it' | 'you' | 'she' | 'she' | 'she' | 'she' | 'we' | 'her' | 'he' | 'it' | 'she' | 'you' | 'me' | 'me' | 'we' | 'she' | 'us' | 'we' | 'her' | 'she' | 'herself' | 'she' | 'you' | 'me' | 'you' | 'you' | 'me' | 'me' | 'you' | 'you' | 'you' | 'you' | 'yourself' | 'you' | 'you' | 'me' | 'me' | 'he' | 'he' | 'he' | 'me' | 'me' | 'she' | 'you' | 'you' | 'himself' | 'you' | 'we' | 'me' | 'me' | 'you' | 'you' | 'you' | 'you' | 'she' | 'me' | 'you' | 'me' | 'me' | 'me' | 'me' | 'me' | 'them' | 'she' | 'it' | 'she' | 'me' | 'you' | 'me' | 'you' | 'he' | 'he' | 'you' | 'he' | 'it' | 'him' | 'me' | 'it' | 'you' | 'herself' | 'she' | 'she' | 'me' | 'we' | 'it' | 'herself' | 'she' | 'you' | 'she' | 'she' | 'you' | 'you' | 'them' | 'myself' | 'she' | 'you' | 'he' | 'it' | 'you' | 'he' | 'you' | 'she' | 'myself' | 'them' | 'myself' | 'me' | 'me' | 'it' | 'me' | 'me' | 'me' | 'me' | 'you' | 'he' | 'he' | 'it' | 'we' | 'it' | 'yourself' | 'myself' | 'we' | 'me' | 'me' | 'me' | 'me' | 'them' | 'them' | 'them' | 'he' | 'him' | 'him' | 'him' | 'she' | 'she' | 'she' | 'she' | 'me' | 'us' | 'her' | 'she' | 'they' | 'me' | 'they' | 'me' | 'she' | 'she' | 'she' | 'she' | 'it' | 'she' | 'she' | 'you' | 'me' | 'themselves' | 'me' | 'he' | 'you' | 'yourself' | 'me' | 'you' | 'me' | 'you' | 'you' | 'we' | 'you' | 'we' | 'we' | 'we' | 'she' | 'me' | 'her' | 'it' | 'me' | 'me' | 'me' | 'it' | 'myself' | 'it' | 'it' | 'me' | 'it' | 'me' | 'it' | 'itself' | 'me' | 'me' | 'me' | 'myself' | 'myself' | 'me' | 'it' | 'it' | 'me' | 'me' | 'it' | 'me' | 'they' | 'me' | 'they' | 'they' | 'it' | 'they' | 'it' | 'it' | 'they' | 'me' | 'they' | 'me' | 'me' | 'they' | 'them' | 'me' | 'it' | 'it' | 'me' | 'it' | 'me' | 'you' | 'it' | 'you' | 'them' | 'they' | 'it' | 'me' | 'it' | 'them' | 'we' | 'we' | 'us' | 'we' | 'we' | 'we' | 'it' | 'it' | 'joy' | 'it' | 'it' | 'it' | 'me' | 'me' | 'me' | 'he' | 'he' | 'me' | 'it' | 'him' | 'he' | 'it' | 'me' | 'him' | 'you' | 'me' | 'you' | 'you' | 'you' | 'you' | 'me' | 'us' | 'you' | 'me' | 'you' | 'me' | 'you' | 'you' | 'them' | 'you' | 'you' | 'it' | 'you' | 'me' | 'him' | 'he' | 'me' | 'you' | 'me' | 'you' | 'you' | 'it' | 'me' | 'it' | 'me' | 'myself' | 'me' | 'me' | 'me' | 'me' | 'you' | 'you' | 'me' | 'we' | 'us' | 'me' | 'you' | 'me' | 'me' | 'they' | 'me' | 'me' | 'they' | 'me' | 'they' | 'you' | 'themselves' | 'them' | 'me' | 'they' | 'it' | 'me' | 'them' | 'it' | 'you' | 'you' | 'me' | 'you' | 'me' | 'you' | 'me' | 'they' | 'they' | 'me' | 'you' | 'me' | 'you' | 'you' | 'me' | 'me' | 'you' | 'you' | 'you' | 'you' | 'myself' | 'you' | 'you' | 'me' | 'you' | 'me' | 'you' | 'me' | 'he' | 'me' | 'you' | 'me' | 'me' | 'you' | 'it' | 'it' | 'itself' | 'you' | 'you' | 'it' | 'he' | 'he' | 'him' | 'he' | 'him' | 'him' | 'me' | 'we' | 'we' | 'myself' | 'he' | 'it' | 'me' | 'it' | 'me' | 'me' | 'me' | 'me' | 'me' | 'me' | 'me' | 'it' | 'it' | 'myself' | 'myself' | 'me' | 'me' | 'me' | 'it' | 'it' | 'myself' | 'me' | 'me' | 'me' | 'me' | 'me' | 'me' | 'me' | 'itself' | 'it' | 'it' | 'it' | 'they' | 'itself' | 'myself' | 'it' | 'it' | 'it' | 'it' | 'it' | 'it' | 'it' | 'they' | 'me' | 'it' | 'it' | 'it' | 'myself' | 'it' | 'me' | 'it' | 'he' | 'he' | 'me' | 'me' | 'it' | 'me' | 'it' | 'me' | 'it' | 'it' | 'it' | 'it' | 'it' | 'it' | 'them' | 'me' | 'it' | 'myself' | 'it' | 'it' | 'it' | 'myself' | 'she' | 'she' | 'her' | 'she' | 'she' | 'her' | 'he' | 'it' | 'himself' | 'she' | 'they' | 'it' | 'she' | 'her' | 'she' | 'it' | 'me' | 'he' | 'she' | 'he' | 'he' | 'her' | 'they' | 'him' | 'him' | 'it' | 'she' | 'he' | 'her' | 'she' | 'she' | 'she' | 'her' | 'he' | 'him' | 'they' | 'he' | 'they' | 'he' | 'me' | 'he' | 'he' | 'me' | 'them' | 'it' | 'it' | 'they' | 'him' | 'he' | 'them' | 'they' | 'it' | 'it' | 'they' | 'it' | 'they' | 'them' | 'they' | 'they' | 'they' | 'me' | 'it' | 'they' | 'it' | 'they' | 'they' | 'they' | 'themselves' | 'me' | 'myself' | 'she' | 'she' | 'her' | 'he' | 'it' | 'they' | 'it' | 'they' | 'themselves' | 'them' | 'them' | 'them' | 'them' | 'me' | 'they' | 'they' | 'them' | 'me' | 'he' | 'them' | 'he' | 'me' | 'she' | 'it' | 'he' | 'he' | 'he' | 'she' | 'he' | 'her' | 'he' | 'he' | 'he' | 'him' | 'he' | 'he' | 'me' | 'he' | 'he' | 'he' | 'he' | 'he' | 'they' | 'myself' | 'me' | 'them' | 'me' | 'myself' | 'it' | 'it' | 'they' | 'it' | 'they' | 'it' | 'it' | 'it' | 'they' | 'they' | 'it' | 'them' | 'them' | 'it' | 'me' | 'them' | 'myself' | 'them' | 'me' | 'they' | 'me' | 'me' | 'it' | 'themselves' | 'me' | 'me' | 'it' | 'me' | 'it' | 'him' | 'he' | 'he' | 'it' | 'she' | 'him' | 'he' | 'her' | 'it' | 'it' | 'him' | 'she' | 'she' | 'it' | 'her' | 'she' | 'him' | 'he' | 'her' | 'her' | 'him' | 'he' | 'her' | 'she' | 'herself' | 'they' | 'me' | 'he' | 'she' | 'they' | 'them' | 'she' | 'me' | 'them' | 'they' | 'he' | 'them' | 'it' | 'they' | 'she' | 'she' | 'she' | 'it' | 'she' | 'it' | 'he' | 'she' | 'him' | 'she' | 'me' | 'they' | 'it' | 'me' | 'it' | 'he' | 'he' | 'it' | 'me' | 'me' | 'he' | 'me' | 'me' | 'me' | 'myself' | 'he' | 'they' | 'me' | 'you' | 'me' | 'them' | 'it' | 'it' | 'it' | 'them' | 'me' | 'me' | 'me' | 'me' | 'they' | 'me' | 'me' | 'me' | 'me' | 'them' | 'it' | 'itself' | 'it' | 'he' | 'he' | 'they' | 'he' | 'he' | 'he' | 'him' | 'he' | 'it' | 'him' | 'he' | 'he' | 'him' | 'he' | 'he' | 'him' | 'he' | 'he' | 'he' | 'she' | 'him' | 'she' | 'her' | 'them' | 'you' | 'they' | 'them' | 'you' | 'she' | 'her' | 'she' | 'she' | 'her' | 'her' | 'herself' | 'it' | 'he' | 'himself' | 'he' | 'himself' | 'she' | 'them' | 'he' | 'him' | 'they' | 'him' | 'he' | 'he' | 'he' | 'he' | 'he' | 'he' | 'he' | 'him' | 'they' | 'he' | 'he' | 'it' | 'him' | 'he' | 'him' | 'he' | 'he' | 'him' | 'he' | 'he' | 'himself' | 'he' | 'they' | 'them' | 'them' | 'they' | 'them' | 'he' | 'him' | 'he' | 'him' | 'him' | 'he' | 'he' | 'it' | 'she' | 'her' | 'he' | 'her' | 'he' | 'he' | 'he' | 'him' | 'he' | 'he' | 'it' | 'it' | 'she' | 'he' | 'she' | 'she' | 'she' | 'she' | 'her' | 'she' | 'they' | 'they' | 'it' | 'me' | 'it' | 'me' | 'me' | 'it' | 'they' | 'me' | 'you' | 'they' | 'me' | 'me' | 'me' | 'me' | 'it' | 'it' | 'himself' | 'it' | 'me' | 'it' | 'myself' | 'them' | 'them' | 'me' | 'me' | 'he' | 'me' | 'me' | 'they' | 'them' | 'it' | 'it' | 'me' | 'he' | 'he' | 'him' | 'me' | 'them' | 'they' | 'them' | 'it' | 'you' | 'you' | 'you' | 'they' | 'them' | 'it' | 'you' | 'you' | 'me' | 'him' | 'myself' | 'they' | 'they' | 'me' | 'they' | 'myself' | 'them' | 'me' | 'they' | 'they' | 'me' | 'it' | 'it' | 'myself' | 'it' | 'he' | 'me' | 'him' | 'it' | 'me' | 'they' | 'them' | 'them' | 'me' | 'they' | 'them' | 'me' | 'it' | 'myself' | 'it' | 'myself' | 'me' | 'it' | 'it' | 'he' | 'him' | 'he' | 'he' | 'it' | 'me' | 'me' | 'you' | 'me' | 'you' | 'me' | 'it' | 'you' | 'yourself' | 'it' | 'me' | 'me' | 'you' | 'you' | 'they' | 'they' | 'us' | 'me' | 'me' | 'they' | 'they' | 'they' | 'me' | 'they' | 'they' | 'you' | 'you' | 'them' | 'it' | 'them' | 'them' | 'they' | 'them' | 'it' | 'you' | 'me' | 'them' | 'me' | 'you' | 'it' | 'me' | 'you' | 'you' | 'me' | 'you' | 'you' | 'you' | 'you' | 'me' | 'me' | 'me' | 'me' | 'him' | 'me' | 'you' | 'you' | 'me' | 'you' | 'me' | 'me' | 'he' | 'me' | 'me' | 'him' | 'me' | 'him' | 'you' | 'me' | 'myself' | 'me' | 'me' | 'me' | 'myself' | 'me' | 'me' | 'him' | 'me' | 'me' | 'it' | 'myself' | 'me' | 'it' | 'me' | 'myself' | 'they' | 'him' | 'me' | 'me' | 'me' | 'it' | 'they' | 'they' | 'they' | 'he' | 'you' | 'him' | 'you' | 'you' | 'it' | 'we' | 'you' | 'me' | 'me' | 'he' | 'he' | 'they' | 'me' | 'them' | 'myself' | 'me' | 'they' | 'me' | 'it' | 'it' | 'it' | 'me' | 'whither' | 'me' | 'you' | 'you' | 'him' | 'me' | 'you' | 'myself' | 'you' | 'you' | 'you' | 'me' | 'me' | 'you' | 'you' | 'it' | 'me' | 'me' | 'me' | 'me' | 'me' | 'me' | 'me' | 'myself' | 'them' | 'me' | 'me' | 'myself' | 'she' | 'she' | 'her' | 'she' | 'her' | 'her' | 'she' | 'she' | 'me' | 'he' | 'me' | 'me' | 'he' | 'he' | 'me' | 'it' | 'it' | 'me' | 'it' | 'it' | 'you' | 'me' | 'him' | 'me' | 'him' | 'him' | 'he' | 'him' | 'me' | 'he' | 'he' | 'you' | 'me' | 'he' | 'me' | 'he' | 'you' | 'me' | 'me' | 'you' | 'me' | 'you' | 'you' | 'me' | 'me' | 'he' | 'he' | 'you' | 'you' | 'me' | 'you' | 'him' | 'you' | 'me' | 'him' | 'he' | 'him' | 'him' | 'it' | 'it' | 'it' | 'me' | 'she' | 'me' | 'you' | 'me' | 'them' | 'me' | 'she' | 'me' | 'he' | 'me' | 'she' | 'me' | 'me' | 'she' | 'she' | 'me' | 'it' | 'me' | 'she' | 'she' | 'me' | 'she' | 'she' | 'you' | 'you' | 'we' | 'you' | 'me' | 'myself' | 'herself' | 'me' | 'you' | 'me' | 'he' | 'you' | 'me' | 'you' | 'it' | 'you' | 'you' | 'me' | 'he' | 'he' | 'me' | 'it' | 'me' | 'you' | 'me' | 'you' | 'me' | 'you' | 'you' | 'me' | 'you' | 'you' | 'you' | 'me' | 'me' | 'he' | 'me' | 'you' | 'it' | 'you' | 'me' | 'he' | 'me' | 'him' | 'me' | 'him' | 'you' | 'you' | 'him' | 'he' | 'he' | 'himself' | 'me' | 'you' | 'you' | 'me' | 'them' | 'you' | 'myself' | 'it' | 'it' | 'me' | 'it' | 'we' | 'we' | 'they' | 'me' | 'me' | 'you' | 'me' | 'me' | 'he' | 'him' | 'him' | 'it' | 'he' | 'you' | 'you' | 'us' | 'me' | 'we' | 'us' | 'you' | 'you' | 'you' | 'it' | 'you' | 'me' | 'me' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'yourself' | 'you' | 'you' | 'me' | 'you' | 'it' | 'me' | 'him' | 'him' | 'him' | 'him' | 'him' | 'you' | 'you' | 'me' | 'you' | 'he' | 'he' | 'he' | 'him' | 'himself' | 'it' | 'him' | 'me' | 'him' | 'you' | 'he' | 'you' | 'they' | 'you' | 'me' | 'you' | 'he' | 'me' | 'him' | 'he' | 'me' | 'myself' | 'them' | 'me' | 'it' | 'me' | 'me' | 'me' | 'me' | 'me' | 'you' | 'me' | 'it' | 'me' | 'they' | 'me' | 'them' | 'myself' | 'them' | 'them' | 'them' | 'myself' | 'me' | 'me' | 'me' | 'me' | 'me' | 'he' | 'me' | 'it' | 'me' | 'me' | 'you' | 'yourself' | 'you' | 'me' | 'it' | 'you' | 'it' | 'us' | 'you' | 'you' | 'it' | 'you' | 'her' | 'she' | 'you' | 'you' | 'yourself' | 'you' | 'yourself' | 'me' | 'you' | 'we' | 'us' | 'it' | 'me' | 'you' | 'we' | 'us' | 'you' | 'you' | 'you' | 'you' | 'me' | 'me' | 'you' | 'me' | 'me' | 'me' | 'myself' | 'me' | 'me' | 'myself' | 'me' | 'me' | 'myself' | 'it' | 'him' | 'he' | 'he' | 'me' | 'myself' | 'he' | 'me' | 'he' | 'me' | 'me' | 'he' | 'me' | 'me' | 'it' | 'him' | 'myself' | 'myself' | 'it' | 'me' | 'me' | 'he' | 'he' | 'me' | 'he' | 'me' | 'itself' | 'it' | 'myself' | 'me' | 'it' | 'she' | 'her' | 'it' | 'me' | 'she' | 'me' | 'she' | 'me' | 'myself' | 'me' | 'it' | 'it' | 'me' | 'me' | 'they' | 'he' | 'us' | 'he' | 'he' | 'he' | 'it' | 'he' | 'me' | 'it' | 'he' | 'you' | 'you' | 'you' | 'we' | 'we' | 'we' | 'we' | 'we' | 'you' | 'we' | 'we' | 'he' | 'he' | 'he' | 'it' | 'you' | 'me' | 'it' | 'me' | 'you' | 'he' | 'us' | 'he' | 'him' | 'him' | 'he' | 'it' | 'it' | 'they' | 'we' | 'we' | 'us' | 'we' | 'we' | 'it' | 'they' | 'we' | 'we' | 'we' | 'me' | 'myself' | 'me' | 'it' | 'me' | 'they' | 'me' | 'me' | 'me' | 'myself' | 'me' | 'he' | 'he' | 'him' | 'he' | 'he' | 'he' | 'he' | 'he' | 'he' | 'him' | 'him' | 'me' | 'it' | 'it' | 'we' | 'he' | 'us' | 'us' | 'he' | 'we' | 'it' | 'we' | 'we' | 'we' | 'us' | 'us' | 'we' | 'we' | 'it' | 'him' | 'they' | 'we' | 'itself' | 'it' | 'we' | 'themselves' | 'we' | 'me' | 'we' | 'we' | 'me' | 'we' | 'myself' | 'me' | 'we' | 'me' | 'he' | 'he' | 'himself' | 'he' | 'he' | 'me' | 'he' | 'he' | 'he' | 'himself' | 'he' | 'he' | 'we' | 'we' | 'them' | 'he' | 'me' | 'me' | 'they' | 'they' | 'me' | 'me' | 'him' | 'him' | 'me' | 'it' | 'him' | 'him' | 'him' | 'we' | 'us' | 'you' | 'yourself' | 'you' | 'me' | 'it' | 'me' | 'me' | 'he' | 'me' | 'you' | 'he' | 'hasten' | 'myself' | 'me' | 'himself' | 'me' | 'he' | 'it' | 'they' | 'it' | 'it' | 'it' | 'they' | 'it' | 'it' | 'it' | 'me' | 'myself' | 'it' | 'me' | 'it' | 'them' | 'they' | 'he' | 'myself' | 'it' | 'me' | 'me' | 'it' | 'she' | 'he' | 'himself' | 'she' | 'she' | 'they' | 'he' | 'it' | 'it' | 'she' | 'him' | 'she' | 'him' | 'he' | 'they' | 'me' | 'me' | 'me' | 'he' | 'me' | 'he' | 'me' | 'he' | 'me' | 'he' | 'himself' | 'he' | 'him' | 'him' | 'me' | 'he' | 'me' | 'me' | 'it' | 'it' | 'it' | 'you' | 'he' | 'me' | 'you' | 'you' | 'it' | 'you' | 'you' | 'you' | 'you' | 'yourself' | 'you' | 'you' | 'yourself' | 'you' | 'yourself' | 'you' | 'you' | 'you' | 'me' | 'they' | 'me' | 'you' | 'he' | 'they' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'me' | 'it' | 'you' | 'you' | 'you' | 'yourself' | 'him' | 'he' | 'me' | 'him' | 'him' | 'me' | 'him' | 'him' | 'him' | 'he' | 'you' | 'me' | 'she' | 'it' | 'me' | 'me' | 'it' | 'it' | 'myself' | 'it' | 'it' | 'me' | 'myself' | 'they' | 'me' | 'me' | 'it' | 'me' | 'him' | 'he' | 'he' | 'he' | 'he' | 'they' | 'he' | 'he' | 'he' | 'me' | 'him' | 'he' | 'me' | 'him' | 'we' | 'me' | 'me' | 'myself' | 'them' | 'them' | 'them' | 'me' | 'it' | 'them' | 'it' | 'it' | 'me' | 'me' | 'myself' | 'me' | 'me' | 'me' | 'me' | 'me' | 'it' | 'me' | 'me' | 'it' | 'we' | 'it' | 'myself' | 'me' | 'they' | 'me' | 'me' | 'it' | 'they' | 'them' | 'you' | 'me' | 'me' | 'you' | 'you' | 'you' | 'you' | 'you' | 'me' | 'it' | 'it' | 'me' | 'they' | 'me' | 'me' | 'you' | 'me' | 'yourself' | 'you' | 'me' | 'myself' | 'it' | 'me' | 'it' | 'he' | 'me' | 'he' | 'he' | 'he' | 'they' | 'they' | 'it' | 'they' | 'they' | 'he' | 'him' | 'he' | 'he' | 'him' | 'they' | 'he' | 'it' | 'they' | 'they' | 'it' | 'it' | 'it' | 'he' | 'me' | 'myself' | 'me' | 'me' | 'he' | 'he' | 'it' | 'he' | 'it' | 'she' | 'she' | 'she' | 'it' | 'it' | 'they' | 'it' | 'it' | 'they' | 'it' | 'they' | 'it' | 'it' | 'it' | 'it' | 'me' | 'it' | 'me' | 'myself' | 'you' | 'you' | 'myself' | 'me' | 'me' | 'myself' | 'it' | 'me' | 'me' | 'she' | 'she' | 'me' | 'me' | 'you' | 'she' | 'it' | 'you' | 'you' | 'it' | 'you' | 'you' | 'it' | 'you' | 'you' | 'you' | 'it' | 'me' | 'it' | 'it' | 'itself' | 'me' | 'me' | 'me' | 'me' | 'me' | 'them' | 'me' | 'me' | 'he' | 'me' | 'it' | 'he' | 'it' | 'he' | 'me' | 'he' | 'he' | 'he' | 'me' | 'myself' | 'he' | 'me' | 'you' | 'you' | 'you' | 'you' | 'me' | 'you' | 'you' | 'you' | 'me' | 'you' | 'it' | 'he' | 'me' | 'me' | 'them' | 'you' | 'you' | 'you' | 'me' | 'you' | 'itself' | 'it' | 'me' | 'me' | 'him' | 'him' | 'him' | 'me' | 'he' | 'he' | 'he' | 'me' | 'he' | 'he' | 'he' | 'it' | 'me' | 'him' | 'you' | 'me' | 'he' | 'you' | 'he' | 'you' | 'you' | 'me' | 'it' | 'we' | 'me' | 'me' | 'me' | 'me' | 'they' | 'it' | 'me' | 'me' | 'me' | 'himself' | 'me' | 'me' | 'me' | 'me' | 'me' | 'they' | 'them' | 'it' | 'them' | 'me' | 'he' | 'me' | 'me' | 'it' | 'me' | 'me' | 'it' | 'me' | 'he' | 'me' | 'it' | 'we' | 'it' | 'me' | 'me' | 'me' | 'me' | 'me' | 'me' | 'he' | 'me' | 'it' | 'me' | 'me' | 'myself' | 'it' | 'me' | 'me' | 'me' | 'we' | 'he' | 'he' | 'me' | 'they' | 'them' | 'them' | 'it' | 'they' | 'me' | 'me' | 'they' | 'me' | 'he' | 'he' | 'me' | 'you' | 'me' | 'she' | 'she' | 'it' | 'her' | 'they' | 'me' | 'myself' | 'he' | 'he' | 'it' | 'itself' | 'itself' | 'myself' | 'me' | 'them' | 'you' | 'they' | 'he' | 'he' | 'them' | 'me' | 'me' | 'them' | 'itself' | 'they' | 'we' | 'it' | 'me' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'we' | 'you' | 'you' | 'you' | 'me' | 'it' | 'you' | 'you' | 'you' | 'we' | 'it' | 'we' | 'we' | 'me' | 'me' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'you' | 'yourself' | 'they' | 'themselves' | 'you' | 'you' | 'you' | 'it' | 'you' | 'me' | 'it' | 'you' | 'you' | 'you' | 'yourself' | 'you' | 'you' | 'you' | 'me' | 'you' | 'you' | 'it' | 'you' | 'me' | 'we' | 'you' | 'me' | 'me' | 'he' | 'it' | 'he' | 'me' | 'he' | 'he' | 'me' | 'me' | 'it' | 'he' | 'he' | 'me' | 'he' | 'him' | 'me' | 'he' | 'he' | 'it' | 'us' | 'you' | 'you' | 'you' | 'it' | 'you' | 'you' | 'us' | 'you' | 'it' | 'you' | 'we' | 'me' | 'she' | 'she' | 'me' | 'it' | 'me' | 'me' | 'me' | 'me' | 'me' | 'she' | 'me' | 'me' | 'she' | 'me' | 'it' | 'you' | 'it' | 'myself' | 'us' | 'us' | 'we' | 'we' | 'me' | 'you' | 'him' | 'he' | 'you' | 'me' | 'it' | 'myself' | 'me' | 'me' | 'she' | 'they' | 'it' | 'we' | 'it' | 'me' | 'me' | 'it' | 'she' | 'she' | 'it' | 'we' | 'we' | 'we' | 'we' | 'we' | 'it' | 'you' | 'you' | 'you' | 'me' | 'me' | 'you' | 'me' | 'us' | 'we' | 'we' | 'it' | 'we' | 'we' | 'it' | 'it' | 'us' | 'we' | 'it' | 'we' | 'me' | 'me' | 'it' | 'we' | 'we' | 'it' | 'me' | 'she' | 'it' | 'you' | 'it' | 'you' | 'her' | 'she' | 'me' | 'him' | 'it' | 'it' | 'she' | 'it' | 'myself' | 'me' | 'them' | 'she' | 'she' | 'her' | 'me' | 'her' | 'her' | 'he' | 'he' | 'he' | 'me' | 'he' | 'we' | 'we' | 'it' | 'they' | 'them' | 'it' | 'itself' | 'me' | 'me' | 'it' | 'myself' | 'me' | 'me' | 'they' | 'they' | 'me' | 'it' | 'me' | 'you' | 'him' | 'they' | 'he' | 'him' | 'he' | 'him' | 'he' | 'he' | 'me' | 'me' | 'myself' | 'they' | 'me' | 'me' | 'me' | 'him' | 'him' | 'itself' | 'him' | 'him' | 'him' | 'me' | 'he' | 'you' | 'it' | 'you' | 'it' | 'him' | 'me' | 'he' | 'him' | 'you' | 'it' | 'he' | 'he' | 'he' | 'you' | 'you' | 'he' | 'he' | 'he' | 'he' | 'he' | 'you' | 'you' | 'he' | 'myself' | 'it' | 'he' | 'you' | 'yourself' | 'you' | 'you' | 'it' | 'it' | 'you' | 'myself' | 'he' | 'me' | 'you' | 'it' | 'you' | 'me' | 'it' | 'me' | 'me' | 'myself' | 'me' | 'myself' | 'it' | 'they' | 'him' | 'me' | 'he' | 'you' | 'you' | 'me' | 'him' | 'me' | 'me' | 'me' | 'it' | 'it' | 'me' | 'me' | 'you' | 'he' | 'him' | 'himself' | 'he' | 'he' | 'me' | 'me' | 'he' | 'himself' | 'him' | 'me' | 'you' | 'you' | 'me' | 'me' | 'me' | 'me' | 'it' | 'me' | 'me' | 'it' | 'me' | 'it' | 'me' | 'me' | 'it' | 'me' | 'it' | 'me' | 'me' | 'myself' | 'them' | 'they' | 'myself' | 'they' | 'me' | 'he' | 'me' | 'you' | 'me' | 'you' | 'you' | 'you' | 'we' | 'you' | 'he' | 'me' | 'he' | 'yourself' | 'we' | 'me' | 'it' | 'it' | 'they' | 'me' | 'him' | 'him' | 'he' | 'him' | 'he' | 'they' | 'he' | 'it' | 'he' | 'he' | 'them' | 'they' | 'he' | 'he' | 'me' | 'me' | 'me' | 'her' | 'me' | 'me' | 'it' | 'they' | 'me' | 'them' | 'me' | 'it' | 'it' | 'it' | 'me' | 'him' | 'me' | 'it' | 'me' | 'me' | 'myself' | 'me' | 'you' | 'myself' | 'you' | 'me' | 'you' | 'me' | 'me' | 'me' | 'he' | 'me' | 'he' | 'you' | 'him' | 'you' | 'he' | 'him' | 'you' | 'he' | 'he' | 'he' | 'him' | 'him' | 'you' | 'you' | 'he' | 'he' | 'he' | 'you' | 'he' | 'me' | 'me' | 'it' | 'he' | 'you' | 'he' | 'you' | 'you' | 'yourself' | 'he' | 'them' | 'himself' | 'them' | 'he' | 'you' | 'he' | 'him' | 'he' | 'he' | 'he' | 'he' | 'he' | 'they' | 'themselves' | 'him' | 'them' | 'me' | 'he' | 'him' | 'he' | 'he' | 'he' | 'he' | 'he' | 'myself' | 'me' | 'me' | 'it' | 'myself' | 'me' | 'me' | 'you' | 'me' | 'you' | 'me' | 'me' | 'me' | 'him' | 'him' | 'him' | 'he' | 'you' | 'he' | 'you' | 'you' | 'me' | 'they' | 'they' | 'they' | 'he' | 'himself' | 'they' | 'me' | 'it' | 'you' | 'it' | 'me' | 'me' | 'it' | 'me' | 'we' | 'you' | 'you' | 'you' | 'me' | 'you' | 'you' | 'you' | 'you' | 'me' | 'he' | 'me' | 'he' | 'he' | 'me' | 'he' | 'me' | 'he' | 'they' | 'he' | 'they' | 'they' | 'them' | 'it' | 'you' | 'it' | 'we' | 'he' | 'he' | 'they' | 'me' | 'he' | 'me' | 'he' | 'me' | 'me' | 'we' | 'they' | 'them' | 'they' | 'they' | 'me' | 'himself' | 'he' | 'you' | 'you' | 'you' | 'you' | 'it' | 'it' | 'it' | 'you' | 'it' | 'it' | 'you' | 'you' | 'you' | 'they' | 'it' | 'you' | 'you' | 'it' | 'it' | 'he' | 'you' | 'they' | 'them' | 'them' | 'they' | 'they' | 'he' | 'we' | 'it' | 'it' | 'you' | 'you' | 'we' | 'we' | 'he' | 'us' | 'them' | 'they' | 'they' | 'you' | 'them' | 'you' | 'you' | 'me' | 'me' | 'he' | 'him' | 'he' | 'it' | 'he' | 'he' | 'he' | 'him' | 'us' | 'him' | 'he' | 'me' | 'him' | 'he' | 'he' | 'me' | 'me' | 'he' | 'myself' | 'it' | 'him' | 'they' | 'he' | 'he' | 'he' | 'himself' | 'he' | 'he' | 'you' | 'you' | 'you' | 'you' | 'him' | 'you' | 'you' | 'you' | 'he' | 'me' | 'me' | 'it' | 'yourself' | 'myself' | 'he' | 'he' | 'he' | 'he' | 'you' | 'it' | 'it' | 'it' | 'it' | 'him' | 'he' | 'he' | 'he' | 'him' | 'he' | 'me' | 'he' | 'he' | 'it' | 'me' | 'he' | 'he' | 'me' | 'me' | 'him' | 'you' | 'you' | 'you' | 'you' | 'he' | 'he' | 'he' | 'me' | 'you' | 'it' | 'you' | 'myself' | 'he' | 'he' | 'me' | 'he' | 'me' | 'it' | 'myself' | 'she' | 'it' | 'me' | 'it' | 'you' | 'you' | 'you' | 'they' | 'you' | 'he' | 'you' | 'he' | 'he' | 'it' | 'you' | 'you' | 'it' | 'you' | 'it' | 'it' | 'me' | 'me' | 'me' | 'it' | 'you' | 'he' | 'you' | 'them' | 'he' | 'they' | 'me' | 'you' | 'you' | 'it' | 'they' | 'me' | 'him' | 'he' | 'you' | 'me' | 'myself' | 'it' | 'it' | 'me' | 'me' | 'he' | 'me' | 'us' | 'me' | 'me' | 'it' | 'you' | 'you' | 'me' | 'it' | 'it' | 'me' | 'me' | 'them' | 'he' | 'it' | 'it' | 'he' | 'he' | 'he'\nRB -> 'here' | 'already' | 'far' | 'ever' | 'there' | 'forever' | 'just' | 'there' | 'undoubtedly' | 'not' | 'only' | 'forever' | 'never' | 'before' | 'never' | 'before' | 'not' | 'so' | 'only' | 'so' | 'yet' | 'passionately' | 'also' | 'also' | 'well' | 'heavily' | 'just' | 'even' | 'now' | 'voluntarily' | 'thirst' | 'often' | 'twice' | 'actually' | 'so' | 'now' | 'i' | 'not' | 'i' | 'often' | 'not' | 'only' | 'sometimes' | 'quickly' | 'far' | 'not' | 'already' | 'actually' | 'there' | 'easily' | 'not' | 'perhaps' | 'again' | 'soon' | 'never' | 'down' | 'again' | 'again' | 'slowly' | 'here' | 'yet' | 'already' | 'certainly' | 'i' | 'never' | 'yet' | 'now' | 'bitterly' | 'yet' | 'as' | 'well' | 'too' | 'too' | 'still' | 'wild' | 'only' | 'now' | 'greatly' | 'enough' | 'not' | 'well' | 'certainly' | 'even' | 'here' | 'yet' | 'even' | 'madly' | 'rather' | 'characteristically' | 'easily' | 'very' | 'so' | 'not' | 'never' | 'equally' | 'peculiarly' | 'first' | 'rather' | 'once' | 'never' | 'instantly' | 'already' | 'together' | 'then' | 'decidedly' | 'so' | 'then' | 'wholly' | 'as' | 'otherwise' | 'yet' | 'not' | 'never' | 'as' | 'only' | 'now' | 'dreadfully' | 'well' | 'remarkably' | 'perhaps' | 'sufficiently' | 'not' | 'therefore' | 'not' | 'back' | 'often' | 'i' | 'not' | 'practically' | 'even' | 'again' | 'not' | 'yet' | 'not' | 'very' | 'tenderly' | 'never' | 'again' | 'july' | 'well' | 'now' | 'not' | 'perhaps' | 'however' | 'apparently' | 'continually' | 'already' | 'very' | 'not' | 'so' | 'so' | 'ardently' | 'not' | 'scarcely' | 'well' | 'as' | 'well' | 'not' | 'encounter' | 'not' | 'thus' | 'far' | 'very' | 'not' | 'still' | 'yet' | 'thus' | 'heaven' | 'august' | 'so' | 'not' | 'very' | 'july' | 'nearly' | 'scarcely' | 'somewhat' | 'especially' | 'very' | 'accordingly' | 'away' | 'suddenly' | 'apparently' | 'not' | 'so' | 'however' | 'however' | 'however' | 'as' | 'soon' | 'apparently' | 'only' | 'not' | 'here' | 'not' | 'not' | 'however' | 'thus' | 'boundless' | 'nearly' | 'dreadfully' | 'never' | 'so' | 'as' | 'soon' | 'accordingly' | 'back' | 'as' | 'soon' | 'wonderfully' | 'i' | 'often' | 'as' | 'much' | 'never' | 'generally' | 'even' | 'up' | 'never' | 'generally' | 'sometimes' | 'not' | 'evidently' | 'once' | 'however' | 'so' | 'far' | 'so' | 'instantly' | 'then' | 'soon' | 'alone' | 'as' | 'well' | 'too' | 'certainly' | 'indeed' | 'very' | 'yet' | 'benevolently' | 'soon' | 'not' | 'not' | 'not' | 'far' | 'too' | 'up' | 'gradually' | 'very' | 'yet' | 'so' | 'very' | 'even' | 'now' | 'so' | 'once' | 'so' | 'so' | 'yet' | 'so' | 'so' | 'yet' | 'now' | 'continually' | 'apparently' | 'yet' | 'not' | 'so' | 'utterly' | 'deeply' | 'frequently' | 'attentively' | 'easily' | 'gladly' | 'fast' | 'also' | 'strongly' | 'again' | 'personally' | 'quickly' | 'ever' | 'not' | 'not' | 'once' | 'therefore' | 'not' | 'anew' | 'presently' | 'even' | 'deeply' | 'still' | 'yet' | 'folly' | 'not' | 'therefore' | 'somewhat' | 'sometimes' | 'so' | 'immeasurably' | 'ever' | 'easily' | 'once' | 'ardently' | 'not' | 'not' | 'yet' | 'usually' | 'perhaps' | 'easily' | 'much' | 'not' | 'partly' | 'partly' | 'nearly' | 'then' | 'thus' | 'then' | 'not' | 'imperatively' | 'as' | 'nearly' | 'even' | 'now' | 'thus' | 'perpetually' | 'not' | 'not' | 'formerly' | 'therefore' | 'deeply' | 'bitterly' | 'so' | 'again' | 'alone' | 'very' | 'consequently' | 'only' | 'so' | 'rapidly' | 'scarcely' | 'entirely' | 'bitterly' | 'only' | 'highly' | 'strongly' | 'perhaps' | 'so' | 'wholly' | 'even' | 'gradually' | 'immediately' | 'very' | 'so' | 'much' | 'often' | 'down' | 'far' | 'very' | 'so' | 'eagerly' | 'not' | 'then' | 'not' | 'long' | 'just' | 'still' | 'not' | 'soon' | 'elizabeth' | 'almost' | 'playfully' | 'literally' | 'upon' | 'elizabeth' | 'familiarly' | 'only' | 'together' | 'not' | 'quite' | 'not' | 'together' | 'deeply' | 'i' | 'entirely' | 'rather' | 'principally' | 'fervently' | 'therefore' | 'even' | 'deeply' | 'knightly' | 'very' | 'not' | 'distinctly' | 'sometimes' | 'not' | 'not' | 'indiscriminately' | 'still' | 'so' | 'ours' | 'ever' | 'there' | 'there' | 'yet' | 'not' | 'so' | 'perfectly' | 'so' | 'not' | 'also' | 'arise' | 'almost' | 'away' | 'therefore' | 'soon' | 'carelessly' | 'not' | 'instead' | 'entirely' | 'much' | 'aside' | 'even' | 'never' | 'i' | 'always' | 'always' | 'even' | 'little' | 'partially' | 'still' | 'not' | 'utterly' | 'rashly' | 'ignorantly' | 'here' | 'here' | 'not' | 'soon' | 'liberally' | 'eagerly' | 'always' | 'i' | 'rather' | 'thus' | 'desperately' | 'very' | 'again' | 'once' | 'so' | 'soon' | 'not' | 'entirely' | 'never' | 'so' | 'utterly' | 'not' | 'once' | 'greatly' | 'ever' | 'so' | 'long' | 'suddenly' | 'perhaps' | 'once' | 'never' | 'even' | 'so' | 'thus' | 'strangely' | 'back' | 'almost' | 'even' | 'then' | 'latterly' | 'thus' | 'too' | 'therefore' | 'upon' | 'first' | 'no' | 'not' | 'now' | 'not' | 'hard' | 'not' | 'cheerfully' | 'even' | 'not' | 'so' | 'very' | 'existence' | 'forever' | 'so' | 'never' | 'then' | 'yet' | 'not' | 'away' | 'rather' | 'not' | 'still' | 'not' | 'now' | 'again' | 'so' | 'soon' | 'not' | 'i' | 'indeed' | 'steadily' | 'never' | 'so' | 'even' | 'deeply' | 'not' | 'late' | 'not' | 'away' | 'away' | 'again' | 'once' | 'often' | 'away' | 'ever' | 'continually' | 'now' | 'alone' | 'remarkably' | 'i' | 'totally' | 'ardently' | 'often' | 'now' | 'indeed' | 'folly' | 'rather' | 'first' | 'deeply' | 'carelessly' | 'partly' | 'really' | 'entirely' | 'so' | 'greedily' | 'as' | 'little' | 'entirely' | 'so' | 'aside' | 'down' | 'home' | 'not' | 'long' | 'not' | 'therefore' | 'not' | 'rather' | 'too' | 'perhaps' | 'not' | 'only' | 'very' | 'now' | 'not' | 'i' | 'never' | 'hitherto' | 'partly' | 'partly' | 'shortly' | 'very' | 'nearly' | 'ever' | 'then' | 'never' | 'very' | 'not' | 'only' | 'indeed' | 'almost' | 'even' | 'rather' | 'soon' | 'so' | 'far' | 'achieve' | 'already' | 'explore' | 'not' | 'only' | 'even' | 'pretty' | 'nearly' | 'however' | 'erroneously' | 'scarcely' | 'ever' | 'ultimately' | 'then' | 'not' | 'very' | 'alone' | 'really' | 'not' | 'merely' | 'then' | 'far' | 'enough' | 'not' | 'also' | 'thus' | 'particularly' | 'nearly' | 'even' | 'not' | 'never' | 'soon' | 'so' | 'often' | 'yet' | 'so' | 'closely' | 'easily' | 'indeed' | 'often' | 'sly' | 'as' | 'far' | 'closely' | 'infallibly' | 'continually' | 'solely' | 'so' | 'rapidly' | 'as' | 'well' | 'peculiarly' | 'indeed' | 'i' | 'often' | 'ever' | 'yet' | 'not' | 'particularly' | 'almost' | 'almost' | 'first' | 'not' | 'also' | 'not' | 'ever' | 'merely' | 'now' | 'so' | 'yet' | 'so' | 'so' | 'alone' | 'so' | 'not' | 'not' | 'certainly' | 'now' | 'yet' | 'soon' | 'so' | 'once' | 'so' | 'progressively' | 'only' | 'now' | 'not' | 'once' | 'rather' | 'so' | 'soon' | 'already' | 'only' | 'seemingly' | 'express' | 'not' | 'patiently' | 'easily' | 'not' | 'then' | 'not' | 'so' | 'yet' | 'still' | 'too' | 'hardly' | 'so' | 'i' | 'not' | 'ultimately' | 'incessantly' | 'yet' | 'about' | 'proportionably' | 'successfully' | 'first' | 'so' | 'completely' | 'now' | 'apparently' | 'sometimes' | 'very' | 'still' | 'alone' | 'now' | 'then' | 'almost' | 'forward' | 'indeed' | 'only' | 'so' | 'soon' | 'rather' | 'often' | 'still' | 'perpetually' | 'thus' | 'never' | 'also' | 'so' | 'absent' | 'not' | 'so' | 'long' | 'i' | 'well' | 'regularly' | 'equally' | 'well' | 'therefore' | 'not' | 'then' | 'now' | 'not' | 'altogether' | 'always' | 'never' | 'not' | 'possibly' | 'then' | 'certainly' | 'not' | 'always' | 'not' | 'america' | 'gradually' | 'not' | 'only' | 'particularly' | 'before' | 'away' | 'not' | 'always' | 'so' | 'deeply' | 'near' | 'now' | 'plainly' | 'well' | 'i' | 'rather' | 'sometimes' | 'alone' | 'soon' | 'i' | 'then' | 'almost' | 'already' | 'dismally' | 'nearly' | 'hard' | 'scarcely' | 'only' | 'almost' | 'not' | 'so' | 'hard' | 'nearly' | 'far' | 'now' | 'indeed' | 'i' | 'i' | 'not' | 'seemingly' | 'down' | 'attentively' | 'so' | 'miserably' | 'again' | 'not' | 'so' | 'ugly' | 'then' | 'even' | 'not' | 'wretchedly' | 'sometimes' | 'so' | 'quickly' | 'hardly' | 'nearly' | 'so' | 'long' | 'now' | 'so' | 'so' | 'not' | 'bodily' | 'i' | 'not' | 'once' | 'close' | 'thus' | 'usually' | 'here' | 'not' | 'nearer' | 'just' | 'instantly' | 'here' | 'very' | 'back' | 'so' | 'suddenly' | 'therefore' | 'easily' | 'not' | 'indeed' | 'heartily' | 'elizabeth' | 'very' | 'well' | 'very' | 'only' | 'so' | 'seldom' | 'not' | 'very' | 'ill' | 'so' | 'right' | 'lately' | 'so' | 'deeply' | 'not' | 'sincerely' | 'now' | 'excessively' | 'not' | 'far' | 'soon' | 'then' | 'still' | 'there' | 'i' | 'still' | 'therefore' | 'already' | 'then' | 'forcibly' | 'fearfully' | 'also' | 'hardly' | 'so' | 'indeed' | 'down' | 'presently' | 'not' | 'only' | 'rapidly' | 'first' | 'attentively' | 'not' | 'not' | 'not' | 'i' | 'furiously' | 'down' | 'so' | 'strangely' | 'not' | 'not' | 'so' | 'long' | 'not' | 'not' | 'instead' | 'very' | 'ill' | 'surely' | 'forever' | 'i' | 'incessantly' | 'first' | 'continually' | 'indeed' | 'very' | 'greatly' | 'also' | 'as' | 'very' | 'instead' | 'ever' | 'entirely' | 'not' | 'well' | 'as' | 'fast' | 'not' | 'not' | 'even' | 'not' | 'very' | 'hardly' | 'not' | 'so' | 'perhaps' | 'here' | 'then' | 'very' | 'even' | 'not' | 'perhaps' | 'so' | 'long' | 'often' | 'not' | 'never' | 'over' | 'now' | 'indeed' | 'eagerly' | 'soon' | 'well' | 'dearly' | 'well' | 'not' | 'ever' | 'now' | 'not' | 'not' | 'never' | 'upon' | 'never' | 'probably' | 'not' | 'therefore' | 'always' | 'not' | 'very' | 'so' | 'so' | 'not' | 'thus' | 'not' | 'once' | 'so' | 'first' | 'fully' | 'not' | 'never' | 'almost' | 'yet' | 'even' | 'now' | 'often' | 'too' | 'very' | 'accordingly' | 'much' | 'very' | 'sometimes' | 'now' | 'ever' | 'just' | 'very' | 'extremely' | 'pretty' | 'continually' | 'also' | 'very' | 'already' | 'pretty' | 'now' | 'already' | 'already' | 'much' | 'very' | 'upon' | 'sincerely' | 'instantly' | 'greatly' | 'regularly' | 'ever' | 'antipathy' | 'even' | 'otherwise' | 'quite' | 'also' | 'previously' | 'soon' | 'not' | 'evidently' | 'carefully' | 'yet' | 'not' | 'always' | 'i' | 'not' | 'plainly' | 'never' | 'yet' | 'never' | 'so' | 'often' | 'only' | 'not' | 'equally' | 'almost' | 'even' | 'nevertheless' | 'ago' | 'as' | 'firmly' | 'now' | 'not' | 'soon' | 'down' | 'all' | 'very' | 'now' | 'happily' | 'so' | 'never' | 'wholly' | 'thus' | 'easily' | 'ever' | 'now' | 'not' | 'not' | 'not' | 'merely' | 'well' | 'never' | 'away' | 'very' | 'bitterly' | 'only' | 'so' | 'long' | 'however' | 'cheerfully' | 'uncommonly' | 'late' | 'already' | 'i' | 'daily' | 'so' | 'long' | 'always' | 'long' | 'again' | 'sincerely' | 'ago' | 'indeed' | 'already' | 'sincerely' | 'truly' | 'very' | 'often' | 'along' | 'probably' | 'impatiently' | 'first' | 'only' | 'merely' | 'not' | 'not' | 'i' | 'even' | 'now' | 'so' | 'yet' | 'so' | 'not' | 'simply' | 'i' | 'farther' | 'already' | 'then' | 'not' | 'accordingly' | 'presently' | 'away' | 'vainly' | 'not' | 'rather' | 'not' | 'there' | 'again' | 'not' | 'also' | 'very' | 'hastily' | 'again' | 'only' | 'very' | 'not' | 'continually' | 'unjustly' | 'not' | 'now' | 'not' | 'not' | 'instead' | 'not' | 'always' | 'up' | 'also' | 'instantly' | 'only' | 'lovely' | 'now' | 'so' | 'miserably' | 'much' | 'only' | 'ever' | 'no' | 'longer' | 'thus' | 'now' | 'as' | 'soon' | 'very' | 'hardly' | 'not' | 'nearly' | 'tranquilly' | 'not' | 'not' | 'heavenly' | 'distinctly' | 'again' | 'lovely' | 'yet' | 'again' | 'also' | 'around' | 'hardly' | 'still' | 'gloomily' | 'obscurely' | 'truly' | 'only' | 'not' | 'completely' | 'already' | 'not' | 'rapidly' | 'i' | 'soon' | 'slowly' | 'quickly' | 'then' | 'often' | 'once' | 'exactly' | 'north' | 'sometimes' | 'so' | 'yet' | 'intently' | 'not' | 'plainly' | 'instantly' | 'quickly' | 'not' | 'nearly' | 'soon' | 'still' | 'now' | 'now' | 'nearly' | 'first' | 'loose' | 'not' | 'i' | 'not' | 'now' | 'nearly' | 'also' | 'just' | 'so' | 'utterly' | 'well' | 'even' | 'so' | 'far' | 'then' | 'i' | 'about' | 'not' | 'still' | 'hardly' | 'thus' | 'ago' | 'then' | 'now' | 'only' | 'not' | 'minutely' | 'very' | 'as' | 'well' | 'too' | 'not' | 'even' | 'now' | 'not' | 'indeed' | 'so' | 'suddenly' | 'so' | 'so' | 'so' | 'wrongfully' | 'surely' | 'almost' | 'so' | 'then' | 'then' | 'instantly' | 'not' | 'earnestly' | 'deeply' | 'cheerfully' | 'not' | 'also' | 'unfortunately' | 'indeed' | 'rather' | 'ever' | 'so' | 'so' | 'highly' | 'sincerely' | 'firmly' | 'indeed' | 'therefore' | 'forward' | 'enough' | 'not' | 'publicly' | 'indeed' | 'soon' | 'perhaps' | 'rely' | 'as' | 'certainly' | 'doubly' | 'not' | 'only' | 'lovely' | 'sincerely' | 'away' | 'even' | 'never' | 'not' | 'not' | 'then' | 'again' | 'even' | 'else' | 'so' | 'deadly' | 'rely' | 'far' | 'dreadfully' | 'also' | 'now' | 'rather' | 'not' | 'always' | 'exquisitely' | 'yet' | 'not' | 'otherwise' | 'yet' | 'evidently' | 'quickly' | 'quickly' | 'not' | 'not' | 'far' | 'there' | 'very' | 'strangely' | 'only' | 'earnestly' | 'then' | 'strongly' | 'sometimes' | 'entirely' | 'not' | 'always' | 'then' | 'about' | 'well' | 'here' | 'again' | 'not' | 'yet' | 'heavily' | 'fatally' | 'only' | 'here' | 'also' | 'surely' | 'so' | 'wantonly' | 'so' | 'again' | 'so' | 'soon' | 'yet' | 'not' | 'well' | 'forward' | 'even' | 'violently' | 'rather' | 'ever' | 'even' | 'long' | 'therefore' | 'forward' | 'well' | 'nearly' | 'again' | 'warmly' | 'now' | 'not' | 'earnestly' | 'willingly' | 'so' | 'not' | 'not' | 'not' | 'also' | 'not' | 'already' | 'not' | 'not' | 'not' | 'not' | 'then' | 'not' | 'then' | 'already' | 'hardly' | 'so' | 'indeed' | 'ever' | 'so' | 'really' | 'as' | 'eagerly' | 'rather' | 'ever' | 'again' | 'only' | 'yet' | 'soon' | 'not' | 'not' | 'alone' | 'yet' | 'not' | 'alone' | 'bitterly' | 'also' | 'then' | 'very' | 'not' | 'so' | 'now' | 'also' | 'so' | 'very' | 'very' | 'also' | 'not' | 'now' | 'ever' | 'almost' | 'now' | 'only' | 'truly' | 'then' | 'so' | 'highly' | 'soon' | 'again' | 'not' | 'not' | 'not' | 'never' | 'so' | 'mournfully' | 'not' | 'unjustly' | 'not' | 'together' | 'very' | 'not' | 'not' | 'even' | 'not' | 'truly' | 'now' | 'thus' | 'indeed' | 'also' | 'also' | 'not' | 'away' | 'not' | 'only' | 'ever' | 'so' | 'away' | 'thus' | 'not' | 'also' | 'not' | 'again' | 'again' | 'again' | 'also' | 'thus' | 'thus' | 'freely' | 'i' | 'much' | 'yet' | 'now' | 'instead' | 'back' | 'away' | 'perhaps' | 'never' | 'entirely' | 'deep' | 'not' | 'also' | 'i' | 'not' | 'also' | 'even' | 'totally' | 'not' | 'now' | 'only' | 'particularly' | 'regularly' | 'very' | 'now' | 'often' | 'sometimes' | 'sometimes' | 'often' | 'so' | 'heavenly' | 'only' | 'often' | 'forever' | 'tenderly' | 'also' | 'bitterly' | 'only' | 'not' | 'not' | 'still' | 'almost' | 'always' | 'so' | 'long' | 'not' | 'i' | 'ardently' | 'so' | 'thoughtlessly' | 'burst' | 'again' | 'deeply' | 'no' | 'then' | 'just' | 'so' | 'no' | 'no' | 'before' | 'now' | 'certainly' | 'assuredly' | 'not' | 'certainly' | 'so' | 'perhaps' | 'even' | 'not' | 'not' | 'kindly' | 'deeply' | 'not' | 'so' | 'sometimes' | 'here' | 'not' | 'fondly' | 'even' | 'near' | 'very' | 'thus' | 'not' | 'sometimes' | 'sometimes' | 'bodily' | 'suddenly' | 'frequently' | 'then' | 'nought' | 'nearly' | 'sensibly' | 'yet' | 'almighty' | 'here' | 'still' | 'here' | 'there' | 'all' | 'soon' | 'i' | 'not' | 'so' | 'just' | 'often' | 'suddenly' | 'very' | 'then' | 'again' | 'myself' | 'again' | 'then' | 'i' | 'so' | 'down' | 'too' | 'only' | 'ever' | 'not' | 'also' | 'even' | 'not' | 'still' | 'i' | 'first' | 'then' | 'indeed' | 'always' | 'well' | 'terrifically' | 'entirely' | 'transversely' | 'nigher' | 'down' | 'continually' | 'particularly' | 'even' | 'not' | 'only' | 'nearly' | 'now' | 'away' | 'still' | 'neer' | 'nearly' | 'noon' | 'presently' | 'very' | 'deep' | 'almost' | 'nearly' | 'now' | 'exactly' | 'rather' | 'now' | 'indeed' | 'not' | 'away' | 'suddenly' | 'also' | 'quickly' | 'nearer' | 'then' | 'close' | 'almost' | 'too' | 'scarcely' | 'only' | 'not' | 'rather' | 'so' | 'diabolically' | 'then' | 'yet' | 'only' | 'thus' | 'too' | 'then' | 'so' | 'negligently' | 'easily' | 'not' | 'enough' | 'only' | 'not' | 'even' | 'also' | 'not' | 'alone' | 'even' | 'rather' | 'everywhere' | 'alone' | 'irrevocably' | 'i' | 'again' | 'not' | 'frankenstein' | 'not' | 'alone' | 'miserably' | 'alone' | 'gather' | 'here' | 'only' | 'not' | 'not' | 'not' | 'then' | 'only' | 'so' | 'not' | 'only' | 'not' | 'frankenstein' | 'yet' | 'yet' | 'not' | 'then' | 'first' | 'just' | 'not' | 'thus' | 'thus' | 'still' | 'once' | 'not' | 'yet' | 'forever' | 'not' | 'partly' | 'eagerly' | 'also' | 'therefore' | 'again' | 'i' | 'thus' | 'indeed' | 'then' | 'hardly' | 'felt' | 'now' | 'suppose' | 'again' | 'presently' | 'now' | 'not' | 'here' | 'thirst' | 'nearly' | 'then' | 'also' | 'instinctively' | 'so' | 'down' | 'soon' | 'up' | 'slowly' | 'again' | 'still' | 'down' | 'thirst' | 'greatly' | 'gradually' | 'plainly' | 'first' | 'often' | 'often' | 'also' | 'sometimes' | 'sometimes' | 'again' | 'again' | 'still' | 'quickly' | 'again' | 'quickly' | 'not' | 'still' | 'carefully' | 'then' | 'quickly' | 'also' | 'nearly' | 'again' | 'as' | 'well' | 'much' | 'therefore' | 'much' | 'however' | 'i' | 'often' | 'easily' | 'exceedingly' | 'not' | 'about' | 'i' | 'loudly' | 'hardly' | 'ever' | 'before' | 'somewhat' | 'here' | 'not' | 'then' | 'greedily' | 'however' | 'not' | 'then' | 'asleep' | 'noon' | 'brightly' | 'stately' | 'hardly' | 'grievously' | 'fearfully' | 'quite' | 'however' | 'not' | 'so' | 'however' | 'here' | 'then' | 'down' | 'however' | 'still' | 'as' | 'soon' | 'now' | 'i' | 'yet' | 'thus' | 'i' | 'too' | 'well' | 'first' | 'however' | 'conveniently' | 'perfectly' | 'tolerably' | 'thus' | 'indeed' | 'meanly' | 'not' | 'yet' | 'about' | 'now' | 'partly' | 'along' | 'seemingly' | 'presently' | 'again' | 'also' | 'sometimes' | 'sometimes' | 'formerly' | 'almost' | 'just' | 'very' | 'presently' | 'down' | 'beside' | 'even' | 'never' | 'aught' | 'before' | 'audibly' | 'then' | 'never' | 'before' | 'either' | 'soon' | 'then' | 'apart' | 'then' | 'busily' | 'thus' | 'together' | 'down' | 'quickly' | 'again' | 'yet' | 'quickly' | 'not' | 'not' | 'again' | 'so' | 'soon' | 'not' | 'neither' | 'thus' | 'not' | 'i' | 'not' | 'too' | 'well' | 'right' | 'quietly' | 'constantly' | 'i' | 'soon' | 'blind' | 'not' | 'entirely' | 'often' | 'apart' | 'deeply' | 'yet' | 'still' | 'really' | 'very' | 'entirely' | 'very' | 'scarcely' | 'often' | 'very' | 'poignantly' | 'especially' | 'sensibly' | 'also' | 'often' | 'quickly' | 'greatly' | 'also' | 'not' | 'still' | 'sometimes' | 'indeed' | 'i' | 'ardently' | 'not' | 'however' | 'also' | 'only' | 'not' | 'yet' | 'greatly' | 'only' | 'often' | 'sometimes' | 'even' | 'sometimes' | 'away' | 'generally' | 'not' | 'thus' | 'always' | 'even' | 'especially' | 'early' | 'always' | 'sometimes' | 'often' | 'not' | 'yet' | 'extremely' | 'i' | 'therefore' | 'i' | 'ardently' | 'also' | 'not' | 'even' | 'however' | 'sensibly' | 'not' | 'sufficiently' | 'easily' | 'eagerly' | 'not' | 'also' | 'perpetually' | 'i' | 'back' | 'indeed' | 'fully' | 'not' | 'yet' | 'entirely' | 'daily' | 'not' | 'frequently' | 'quickly' | 'far' | 'as' | 'often' | 'i' | 'greatly' | 'once' | 'twice' | 'not' | 'then' | 'now' | 'i' | 'so' | 'so' | 'upon' | 'indeed' | 'very' | 'yet' | 'surely' | 'affectionate' | 'greatly' | 'so' | 'now' | 'rapidly' | 'now' | 'periodically' | 'frequently' | 'once' | 'i' | 'only' | 'up' | 'hastily' | 'curiously' | 'gentle' | 'wondrously' | 'instantly' | 'hardly' | 'i' | 'as' | 'rapturously' | 'as' | 'well' | 'not' | 'soon' | 'neither' | 'not' | 'peculiarly' | 'thus' | 'not' | 'presently' | 'instantly' | 'indeed' | 'i' | 'early' | 'up' | 'much' | 'ardently' | 'utterly' | 'so' | 'entrancingly' | 'once' | 'away' | 'first' | 'now' | 'as' | 'peaceably' | 'before' | 'always' | 'rapidly' | 'so' | 'also' | 'considerably' | 'never' | 'abroad' | 'formerly' | 'speedily' | 'rapidly' | 'very' | 'almost' | 'also' | 'not' | 'not' | 'very' | 'indeed' | 'once' | 'so' | 'so' | 'yet' | 'so' | 'not' | 'forth' | 'even' | 'now' | 'only' | 'very' | 'absolutely' | 'hideously' | 'not' | 'even' | 'far' | 'then' | 'not' | 'only' | 'forever' | 'thirst' | 'once' | 'sometimes' | 'i' | 'yet' | 'not' | 'rather' | 'not' | 'not' | 'even' | 'deeply' | 'now' | 'then' | 'never' | 'yet' | 'again' | 'only' | 'soon' | 'now' | 'so' | 'not' | 'deeply' | 'so' | 'utterly' | 'not' | 'very' | 'very' | 'rather' | 'accidentally' | 'then' | 'strongly' | 'yet' | 'not' | 'fully' | 'quickly' | 'entirely' | 'so' | 'soon' | 'too' | 'yet' | 'forward' | 'forward' | 'gently' | 'often' | 'already' | 'far' | 'only' | 'now' | 'indelibly' | 'again' | 'only' | 'now' | 'previously' | 'sometimes' | 'far' | 'still' | 'no' | 'longer' | 'secretly' | 'greatly' | 'quickly' | 'quickly' | 'then' | 'not' | 'soon' | 'thus' | 'insultingly' | 'first' | 'now' | 'angrily' | 'speedily' | 'consequently' | 'not' | 'yet' | 'alone' | 'alike' | 'then' | 'dangerously' | 'alone' | 'however' | 'yet' | 'ever' | 'so' | 'not' | 'eagerly' | 'fortunately' | 'now' | 'continually' | 'hardly' | 'sometimes' | 'frequently' | 'so' | 'so' | 'well' | 'forever' | 'ever' | 'not' | 'precisely' | 'however' | 'much' | 'personally' | 'yet' | 'strangely' | 'partly' | 'there' | 'i' | 'continually' | 'far' | 'very' | 'perfectly' | 'as' | 'far' | 'alone' | 'numa' | 'perhaps' | 'far' | 'often' | 'apparently' | 'far' | 'forth' | 'alone' | 'often' | 'soon' | 'now' | 'minutely' | 'here' | 'so' | 'even' | 'even' | 'very' | 'however' | 'not' | 'so' | 'also' | 'there' | 'not' | 'only' | 'clearly' | 'even' | 'i' | 'sometimes' | 'alone' | 'thus' | 'again' | 'first' | 'not' | 'better' | 'not' | 'not' | 'not' | 'never' | 'not' | 'utterly' | 'solely' | 'finally' | 'alone' | 'enough' | 'formerly' | 'therefore' | 'felix' | 'alone' | 'ever' | 'yet' | 'again' | 'there' | 'greatly' | 'unfortunately' | 'not' | 'only' | 'down' | 'yet' | 'only' | 'now' | 'sincerely' | 'never' | 'little' | 'there' | 'not' | 'indeed' | 'rely' | 'therefore' | 'not' | 'unfortunately' | 'only' | 'indeed' | 'really' | 'not' | 'so' | 'tenderly' | 'reside' | 'then' | 'unreservedly' | 'perhaps' | 'not' | 'not' | 'even' | 'really' | 'only' | 'not' | 'also' | 'therefore' | 'not' | 'only' | 'first' | 'forever' | 'forever' | 'vainly' | 'i' | 'not' | 'now' | 'not' | 'agatha' | 'agatha' | 'forward' | 'violently' | 'not' | 'so' | 'wantonly' | 'not' | 'not' | 'yet' | 'i' | 'now' | 'no' | 'now' | 'then' | 'then' | 'not' | 'accordingly' | 'not' | 'too' | 'certainly' | 'imprudently' | 'i' | 'not' | 'not' | 'forever' | 'already' | 'i' | 'not' | 'violently' | 'not' | 'presently' | 'not' | 'soon' | 'however' | 'not' | 'anxiously' | 'not' | 'never' | 'again' | 'never' | 'not' | 'violently' | 'then' | 'never' | 'not' | 'away' | 'somewhat' | 'again' | 'anger' | 'quickly' | 'tore' | 'still' | 'nearly' | 'i' | 'quickly' | 'as' | 'soon' | 'now' | 'i' | 'far' | 'equally' | 'not' | 'geneva' | 'not' | 'not' | 'only' | 'then' | 'abroad' | 'only' | 'vainly' | 'long' | 'so' | 'long' | 'only' | 'often' | 'i' | 'not' | 'now' | 'then' | 'often' | 'not' | 'again' | 'generally' | 'only' | 'however' | 'even' | 'long' | 'again' | 'even' | 'now' | 'here' | 'not' | 'exactly' | 'scarcely' | 'suddenly' | 'i' | 'suddenly' | 'probably' | 'playfully' | 'speedily' | 'hardly' | 'then' | 'now' | 'i' | 'not' | 'there' | 'also' | 'no' | 'painfully' | 'not' | 'now' | 'i' | 'far' | 'too' | 'suddenly' | 'too' | 'therefore' | 'not' | 'so' | 'as' | 'soon' | 'forcibly' | 'not' | 'violently' | 'ugly' | 'never' | 'again' | 'not' | 'then' | 'still' | 'too' | 'not' | 'presently' | 'forever' | 'only' | 'instead' | 'not' | 'not' | 'indeed' | 'so' | 'here' | 'then' | 'indeed' | 'thus' | 'assuredly' | 'madness' | 'not' | 'forever' | 'atone' | 'now' | 'securely' | 'again' | 'i' | 'sometimes' | 'sometimes' | 'forever' | 'not' | 'alone' | 'not' | 'not' | 'sufficiently' | 'alone' | 'not' | 'anew' | 'away' | 'no' | 'longer' | 'ever' | 'never' | 'never' | 'instead' | 'not' | 'not' | 'instead' | 'not' | 'yet' | 'not' | 'not' | 'too' | 'presently' | 'not' | 'i' | 'now' | 'not' | 'as' | 'not' | 'now' | 'not' | 'now' | 'not' | 'ever' | 'again' | 'not' | 'not' | 'only' | 'i' | 'now' | 'so' | 'ardently' | 'long' | 'persevere' | 'again' | 'then' | 'not' | 'not' | 'again' | 'quietly' | 'away' | 'not' | 'sometimes' | 'not' | 'yet' | 'not' | 'already' | 'reasonably' | 'not' | 'not' | 'necessarily' | 'now' | 'kindly' | 'not' | 'therefore' | 'forever' | 'as' | 'soon' | 'never' | 'again' | 'not' | 'suddenly' | 'perhaps' | 'quickly' | 'soon' | 'firmly' | 'far' | 'here' | 'there' | 'bitterly' | 'really' | 'not' | 'depart' | 'not' | 'ugly' | 'immediately' | 'even' | 'thus' | 'i' | 'scarcely' | 'never' | 'yet' | 'even' | 'thus' | 'i' | 'only' | 'away' | 'not' | 'yet' | 'not' | 'again' | 'sometimes' | 'indeed' | 'now' | 'proportionably' | 'now' | 'then' | 'alone' | 'aside' | 'thus' | 'yet' | 'still' | 'still' | 'well' | 'not' | 'only' | 'violently' | 'always' | 'forward' | 'together' | 'entirely' | 'so' | 'entirely' | 'perhaps' | 'tenderly' | 'sincerely' | 'never' | 'entirely' | 'thus' | 'assuredly' | 'however' | 'so' | 'therefore' | 'yet' | 'not' | 'interfere' | 'not' | 'however' | 'rapidly' | 'not' | 'yet' | 'not' | 'not' | 'enter' | 'yet' | 'also' | 'also' | 'often' | 'thus' | 'once' | 'quickly' | 'forever' | 'forever' | 'easily' | 'so' | 'long' | 'entirely' | 'previously' | 'truly' | 'thus' | 'lonely' | 'alone' | 'not' | 'therefore' | 'immediately' | 'extremely' | 'now' | 'not' | 'strongly' | 'again' | 'therefore' | 'away' | 'yet' | 'away' | 'hardly' | 'around' | 'only' | 'only' | 'i' | 'far' | 'becomes' | 'much' | 'rapidly' | 'not' | 'indeed' | 'singularly' | 'even' | 'continually' | 'even' | 'long' | 'seldom' | 'almost' | 'perpendicularly' | 'not' | 'still' | 'nightly' | 'never' | 'also' | 'almost' | 'now' | 'surely' | 'even' | 'now' | 'so' | 'eminently' | 'very' | 'only' | 'even' | 'not' | 'only' | 'then' | 'now' | 'forever' | 'now' | 'only' | 'not' | 'thus' | 'so' | 'divinely' | 'still' | 'too' | 'here' | 'first' | 'almost' | 'even' | 'principally' | 'quickly' | 'only' | 'so' | 'terribly' | 'alone' | 'thus' | 'back' | 'also' | 'materially' | 'only' | 'forever' | 'only' | 'as' | 'not' | 'often' | 'alone' | 'now' | 'also' | 'continually' | 'formerly' | 'not' | 'far' | 'eagerly' | 'i' | 'again' | 'now' | 'accordingly' | 'not' | 'stately' | 'there' | 'here' | 'here' | 'not' | 'yet' | 'almost' | 'forth' | 'yet' | 'never' | 'ever' | 'always' | 'then' | 'soon' | 'often' | 'i' | 'again' | 'always' | 'thus' | 'still' | 'now' | 'almost' | 'yet' | 'here' | 'also' | 'almost' | 'proportionably' | 'here' | 'scarcely' | 'much' | 'forever' | 'again' | 'also' | 'scarcely' | 'not' | 'now' | 'i' | 'otherwise' | 'hardly' | 'sometimes' | 'i' | 'not' | 'indeed' | 'yet' | 'not' | 'so' | 'well' | 'well' | 'accordingly' | 'alone' | 'not' | 'often' | 'rather' | 'i' | 'not' | 'then' | 'again' | 'somewhat' | 'not' | 'not' | 'hardly' | 'continually' | 'scarcely' | 'even' | 'distant' | 'not' | 'hardly' | 'so' | 'even' | 'yet' | 'far' | 'thickly' | 'first' | 'sometimes' | 'not' | 'indeed' | 'intently' | 'now' | 'often' | 'thus' | 'sometimes' | 'so' | 'alone' | 'already' | 'considerably' | 'not' | 'just' | 'not' | 'now' | 'forever' | 'now' | 'alike' | 'not' | 'even' | 'already' | 'not' | 'also' | 'again' | 'alone' | 'even' | 'very' | 'right' | 'now' | 'not' | 'perhaps' | 'ghastly' | 'now' | 'never' | 'then' | 'alone' | 'almost' | 'alone' | 'now' | 'then' | 'hardly' | 'suddenly' | 'close' | 'i' | 'softly' | 'not' | 'far' | 'so' | 'often' | 'presently' | 'never' | 'so' | 'not' | 'not' | 'only' | 'i' | 'alone' | 'soon' | 'forever' | 'first' | 'therefore' | 'not' | 'well' | 'forward' | 'soon' | 'again' | 'up' | 'hastily' | 'not' | 'then' | 'again' | 'then' | 'once' | 'not' | 'yet' | 'so' | 'barbarously' | 'i' | 'not' | 'away' | 'almost' | 'nay' | 'wearily' | 'noon' | 'awake' | 'now' | 'again' | 'felt' | 'still' | 'far' | 'still' | 'away' | 'fruitlessly' | 'not' | 'even' | 'now' | 'therefore' | 'together' | 'yet' | 'almost' | 'then' | 'i' | 'not' | 'accordingly' | 'very' | 'now' | 'felt' | 'clearly' | 'not' | 'i' | 'not' | 'then' | 'perfectly' | 'away' | 'suddenly' | 'then' | 'away' | 'then' | 'only' | 'soundly' | 'not' | 'already' | 'considerably' | 'continually' | 'far' | 'quickly' | 'again' | 'instantly' | 'thus' | 'so' | 'slenderly' | 'already' | 'only' | 'already' | 'so' | 'even' | 'now' | 'forever' | 'thus' | 'away' | 'hardly' | 'suddenly' | 'almost' | 'even' | 'eagerly' | 'easily' | 'suddenly' | 'back' | 'carefully' | 'i' | 'directly' | 'easily' | 'fortunately' | 'much' | 'instead' | 'together' | 'merely' | 'therefore' | 'so' | 'soon' | 'enough' | 'maybe' | 'not' | 'much' | 'not' | 'exceedingly' | 'so' | 'also' | 'roughly' | 'surely' | 'not' | 'so' | 'inhospitably' | 'not' | 'rapidly' | 'then' | 'forward' | 'not' | 'enough' | 'here' | 'presently' | 'easily' | 'accordingly' | 'then' | 'here' | 'soon' | 'however' | 'then' | 'forward' | 'about' | 'northerly' | 'accordingly' | 'very' | 'not' | 'yet' | 'not' | 'below' | 'up' | 'not' | 'even' | 'not' | 'then' | 'instantly' | 'about' | 'apparently' | 'not' | 'i' | 'extremely' | 'positively' | 'just' | 'as' | 'far' | 'just' | 'not' | 'quite' | 'very' | 'nearly' | 'not' | 'probably' | 'accordingly' | 'not' | 'perfectly' | 'yet' | 'also' | 'already' | 'no' | 'sometimes' | 'i' | 'already' | 'fortunately' | 'alone' | 'not' | 'ever' | 'not' | 'away' | 'thus' | 'so' | 'continually' | 'thus' | 'only' | 'suddenly' | 'bitterly' | 'often' | 'now' | 'indeed' | 'not' | 'still' | 'hard' | 'however' | 'well' | 'well' | 'so' | 'just' | 'very' | 'sometimes' | 'indeed' | 'never' | 'strongly' | 'i' | 'soon' | 'indeed' | 'seldom' | 'ardently' | 'not' | 'therefore' | 'sometimes' | 'not' | 'gradually' | 'often' | 'not' | 'close' | 'very' | 'so' | 'soon' | 'easily' | 'indeed' | 'lately' | 'immediately' | 'so' | 'also' | 'immediately' | 'instantly' | 'nearly' | 'even' | 'now' | 'now' | 'perfectly' | 'well' | 'not' | 'instantly' | 'away' | 'not' | 'not' | 'not' | 'rather' | 'instead' | 'indeed' | 'very' | 'not' | 'perhaps' | 'now' | 'instantly' | 'then' | 'so' | 'soon' | 'not' | 'mournfully' | 'too' | 'surely' | 'not' | 'not' | 'too' | 'gradually' | 'forever' | 'ghastly' | 'once' | 'so' | 'surely' | 'now' | 'soon' | 'very' | 'soon' | 'also' | 'then' | 'ever' | 'often' | 'already' | 'still' | 'nearly' | 'publicly' | 'not' | 'again' | 'not' | 'alike' | 'forever' | 'sometimes' | 'nearly' | 'first' | 'soon' | 'only' | 'sometimes' | 'indeed' | 'once' | 'so' | 'seldom' | 'often' | 'finally' | 'so' | 'fondly' | 'again' | 'still' | 'still' | 'not' | 'fever' | 'still' | 'soon' | 'too' | 'forcibly' | 'i' | 'first' | 'bitterly' | 'ever' | 'only' | 'i' | 'now' | 'soon' | 'profoundly' | 'not' | 'not' | 'around' | 'not' | 'here' | 'peculiarly' | 'soon' | 'not' | 'not' | 'even' | 'sometimes' | 'deeply' | 'indeed' | 'as' | 'often' | 'thus' | 'sometimes' | 'forever' | 'not' | 'therefore' | 'yet' | 'still' | 'uncontrollably' | 'never' | 'again' | 'not' | 'energetically' | 'not' | 'indeed' | 'not' | 'instantly' | 'as' | 'never' | 'away' | 'longer' | 'sometimes' | 'ever' | 'no' | 'longer' | 'even' | 'miserably' | 'not' | 'totally' | 'now' | 'so' | 'ago' | 'even' | 'perhaps' | 'not' | 'so' | 'possibly' | 'really' | 'yet' | 'not' | 'often' | 'never' | 'well' | 'ever' | 'forward' | 'certainly' | 'often' | 'not' | 'also' | 'not' | 'so' | 'not' | 'as' | 'well' | 'eternally' | 'even' | 'now' | 'alone' | 'so' | 'too' | 'sincere' | 'not' | 'not' | 'not' | 'even' | 'partly' | 'well' | 'so' | 'then' | 'assuredly' | 'alone' | 'already' | 'yet' | 'again' | 'indeed' | 'sooner' | 'surely' | 'perhaps' | 'yet' | 'not' | 'as' | 'not' | 'yet' | 'immediately' | 'therefore' | 'happiness' | 'not' | 'away' | 'alone' | 'elizabeth' | 'then' | 'far' | 'only' | 'then' | 'not' | 'earnestly' | 'i' | 'yet' | 'also' | 'much' | 'i' | 'now' | 'not' | 'sometimes' | 'sometimes' | 'alone' | 'well' | 'otherwise' | 'sometimes' | 'soon' | 'then' | 'forward' | 'therefore' | 'not' | 'thus' | 'only' | 'yet' | 'close' | 'so' | 'cruelly' | 'yet' | 'almost' | 'therefore' | 'even' | 'thus' | 'rather' | 'forever' | 'only' | 'far' | 'nearer' | 'hardly' | 'forward' | 'not' | 'now' | 'soon' | 'up' | 'as' | 'well' | 'only' | 'immediately' | 'openly' | 'constantly' | 'ever' | 'indeed' | 'not' | 'continually' | 'possibly' | 'greatly' | 'perhaps' | 'also' | 'only' | 'rapidly' | 'along' | 'sometimes' | 'sometimes' | 'almost' | 'yet' | 'not' | 'not' | 'too' | 'i' | 'not' | 'along' | 'sometimes' | 'still' | 'also' | 'thus' | 'elizabeth' | 'continually' | 'here' | 'overhung' | 'just' | 'soon' | 'forever' | 'then' | 'yet' | 'still' | 'now' | 'still' | 'suddenly' | 'so' | 'soon' | 'arose' | 'dearly' | 'not' | 'very' | 'suddenly' | 'i' | 'momentarily' | 'i' | 'earnestly' | 'not' | 'suddenly' | 'not' | 'then' | 'i' | 'here' | 'there' | 'down' | 'everywhere' | 'only' | 'senseless' | 'i' | 'only' | 'so' | 'lately' | 'so' | 'so' | 'now' | 'now' | 'still' | 'back' | 'not' | 'hopeless' | 'back' | 'hardly' | 'confusedly' | 'lastly' | 'even' | 'not' | 'even' | 'now' | 'up' | 'however' | 'hardly' | 'reasonably' | 'always' | 'bodily' | 'now' | 'up' | 'now' | 'then' | 'so' | 'ever' | 'so' | 'so' | 'now' | 'away' | 'yet' | 'now' | 'earnestly' | 'not' | 'suddenly' | 'then' | 'not' | 'sometimes' | 'indeed' | 'then' | 'however' | 'not' | 'abroad' | 'ardently' | 'long' | 'i' | 'therefore' | 'indeed' | 'so' | 'not' | 'there' | 'not' | 'however' | 'too' | 'thus' | 'now' | 'never' | 'perfectly' | 'sometimes' | 'lively' | 'not' | 'officially' | 'however' | 'mildly' | 'willingly' | 'now' | 'not' | 'indeed' | 'not' | 'not' | 'thus' | 'not' | 'yet' | 'still' | 'just' | 'either' | 'not' | 'far' | 'much' | 'not' | 'away' | 'alone' | 'otherwise' | 'forever' | 'now' | 'together' | 'now' | 'hardly' | 'not' | 'i' | 'gently' | 'nearly' | 'even' | 'around' | 'not' | 'quickly' | 'i' | 'also' | 'again' | 'otherwise' | 'forever' | 'now' | 'almost' | 'long' | 'heavily' | 'i' | 'surely' | 'away' | 'apparently' | 'close' | 'suddenly' | 'ghastly' | 'vainly' | 'not' | 'still' | 'ever' | 'sometimes' | 'first' | 'still' | 'still' | 'suddenly' | 'seemingly' | 'sometimes' | 'indeed' | 'i' | 'not' | 'there' | 'often' | 'generally' | 'here' | 'seldom' | 'generally' | 'always' | 'thus' | 'indeed' | 'often' | 'even' | 'rather' | 'again' | 'often' | 'then' | 'sometimes' | 'even' | 'still' | 'not' | 'sometimes' | 'indeed' | 'not' | 'yet' | 'not' | 'too' | 'tardily' | 'yet' | 'again' | 'again' | 'never' | 'then' | 'even' | 'now' | 'still' | 'almost' | 'too' | 'only' | 'thus' | 'only' | 'soon' | 'not' | 'only' | 'not' | 'down' | 'thus' | 'not' | 'that' | 'i' | 'now' | 'so' | 'much' | 'first' | 'therefore' | 'speedily' | 'almost' | 'not' | 'yet' | 'i' | 'not' | 'then' | 'just' | 'often' | 'i' | 'often' | 'again' | 'back' | 'often' | 'indeed' | 'almost' | 'soon' | 'once' | 'suddenly' | 'hastily' | 'away' | 'not' | 'still' | 'not' | 'absolutely' | 'yet' | 'bitterly' | 'i' | 'still' | 'again' | 'indeed' | 'perceptibly' | 'nearly' | 'now' | 'almost' | 'suddenly' | 'utterly' | 'ever' | 'before' | 'soon' | 'continually' | 'thus' | 'about' | 'ever' | 'so' | 'far' | 'quickly' | 'still' | 'rather' | 'soon' | 'still' | 'so' | 'yet' | 'not' | 'not' | 'so' | 'yet' | 'not' | 'not' | 'once' | 'even' | 'not' | 'as' | 'not' | 'elizabeth' | 'not' | 'even' | 'now' | 'sometimes' | 'not' | 'yet' | 'so' | 'now' | 'now' | 'sometimes' | 'then' | 'suddenly' | 'however' | 'then' | 'really' | 'not' | 'yet' | 'sometimes' | 'also' | 'not' | 'then' | 'principally' | 'i' | 'not' | 'thus' | 'away' | 'ever' | 'yet' | 'so' | 'infinitely' | 'now' | 'not' | 'almost' | 'not' | 'always' | 'thus' | 'not' | 'now' | 'only' | 'yet' | 'even' | 'now' | 'not' | 'heaven' | 'now' | 'now' | 'once' | 'not' | 'rarely' | 'never' | 'never' | 'again' | 'then' | 'only' | 'so' | 'even' | 'not' | 'strongly' | 'always' | 'hardly' | 'however' | 'never' | 'never' | 'indeed' | 'early' | 'however' | 'strongly' | 'not' | 'only' | 'ever' | 'then' | 'not' | 'then' | 'ever' | 'again' | 'terribly' | 'not' | 'not' | 'anxiously' | 'yet' | 'so' | 'often' | 'even' | 'no' | 'almost' | 'just' | 'highly' | 'never' | 'yet' | 'not' | 'still' | 'still' | 'already' | 'daily' | 'still' | 'suddenly' | 'speedily' | 'again' | 'listlessly' | 'not' | 'probably' | 'never' | 'enough' | 'happily' | 'therefore' | 'i' | 'instantly' | 'not' | 'yet' | 'yet' | 'even' | 'indeed' | 'hardly' | 'now' | 'then' | 'easily' | 'not' | 'not' | 'now' | 'away' | 'not' | 'so' | 'chilly' | 'not' | 'not' | 'thus' | 'far' | 'merely' | 'not' | 'not' | 'not' | 'not' | 'not' | 'so' | 'so' | 'not' | 'farther' | 'north' | 'strenuously' | 'almost' | 'not' | 'rather' | 'shamefully' | 'yet' | 'never' | 'willingly' | 'not' | 'thus' | 'back' | 'not' | 'only' | 'entirely' | 'perfectly' | 'apparently' | 'soon' | 'then' | 'really' | 'not' | 'not' | 'unwillingly' | 'so' | 'not' | 'not' | 'surely' | 'too' | 'back' | 'long' | 'i' | 'often' | 'entirely' | 'certainly' | 'not' | 'only' | 'i' | 'presently' | 'soon' | 'still' | 'not' | 'once' | 'as' | 'far' | 'there' | 'still' | 'right' | 'now' | 'only' | 'yet' | 'not' | 'now' | 'well' | 'already' | 'not' | 'still' | 'momentarily' | 'only' | 'i' | 'even' | 'only' | 'apparently' | 'yet' | 'yet' | 'fainter' | 'again' | 'feebly' | 'forever' | 'away' | 'fairly' | 'scarcely' | 'again' | 'hoarser' | 'still' | 'just' | 'yet' | 'hardly' | 'not' | 'never' | 'so' | 'yet' | 'involuntarily' | 'again' | 'also' | 'now' | 'irretrievably' | 'not' | 'now' | 'not' | 'again' | 'so' | 'away' | 'now' | 'yet' | 'then' | 'not' | 'not' | 'not' | 'not' | 'even' | 'once' | 'forever' | 'then' | 'not' | 'yet' | 'not' | 'yet' | 'then' | 'not' | 'thus' | 'far' | 'willingly' | 'now' | 'yet' | 'again' | 'well' | 'here' | 'still' | 'still' | 'again' | 'not' | 'only' | 'not' | 'thus' | 'not' | 'thus' | 'yet' | 'not' | 'ever' | 'find' | 'first' | 'now' | 'alone' | 'well' | 'once' | 'once' | 'falsely' | 'now' | 'not' | 'once' | 'even' | 'so' | 'yet' | 'even' | 'alone' | 'not' | 'not' | 'forever' | 'still' | 'still' | 'not' | 'contumely' | 'not' | 'even' | 'now' | 'lovely' | 'never' | 'even' | 'not' | 'long' | 'not' | 'nearly' | 'not' | 'no' | 'now' | 'yet' | 'no' | 'very' | 'speedily' | 'no' | 'away' | 'ago' | 'first' | 'now' | 'ever' | 'frankenstein' | 'yet' | 'yet' | 'better' | 'not' | 'so' | 'not' | 'yet' | 'not' | 'not' | 'still' | 'not' | 'forever' | 'soon' | 'now' | 'no' | 'soon' | 'triumphantly' | 'away' | 'not' | 'surely' | 'thus' | 'close' | 'soon' | 'away'\nNNS -> 'forebodings' | 'streets' | 'nerves' | 'fills' | 'regions' | 'climes' | 'navigators' | 'wonders' | 'productions' | 'features' | 'bodies' | 'solitudes' | 'observations' | 'eccentricities' | 'enticements' | 'feels' | 'mates' | 'conjectures' | 'countries' | 'months' | 'reflections' | 'contributes' | 'years' | 'accounts' | 'voyages' | 'seas' | 'voyages' | 'purposes' | 'volumes' | 'fathers' | 'visions' | 'poets' | 'effusions' | 'names' | 'thoughts' | 'years' | 'whale-fishers' | 'expeditions' | 'sailors' | 'nights' | 'mathematics' | 'branches' | 'services' | 'hopes' | 'spirits' | 'emergencies' | 'spirits' | 'others' | 'theirs' | 'sledges' | 'furs' | 'hours' | 'veins' | 'i' | 'weeks' | 'sailors' | 'months' | 'years' | 'blessings' | 'towards' | 'sailors' | 'men' | 'thoughts' | 'eyes' | 'i' | 'tastes' | 'plans' | 'faults' | 'difficulties' | 'years' | 'books' | 'voyages' | 'poets' | 'benefits' | 'languages' | 'schoolboys' | 'daydreams' | 'painters' | 'complaints' | 'merchants' | 'seamen' | 'feelings' | 'bosoms' | 'prejudices' | 'endowments' | 'years' | 'services' | 'years' | 'tears' | 'feet' | 'remains' | 'womans' | 'inclinations' | 'detracts' | 'toils' | 'resolutions' | 'others' | 'sensations' | 'regions' | 'worn' | 'mysteries' | 'poets' | 'projects' | 'pathways' | 'men' | 'regions' | 'considerations' | 'seas' | 'letters' | 'occasions' | 'i' | 'spirits' | 'lines' | 'years' | 'spirits' | 'men' | 'sheets' | 'dangers' | 'towards' | 'gales' | 'towards' | 'shores' | 'incidents' | 'gales' | 'accidents' | 'navigators' | 'yours' | 'endeavours' | 'witnesses' | 'testimonies' | 'papers' | 'sides' | 'plains' | 'comrades' | 'thoughts' | 'dogs' | 'towards' | 'dogs' | 'telescopes' | 'inequalities' | 'miles' | 'hours' | 'masses' | 'hours' | 'sailors' | 'towards' | 'sailors' | 'limbs' | 'signs' | 'blankets' | 'degrees' | 'days' | 'sufferings' | 'eyes' | 'moments' | 'towards' | 'woes' | 'men' | 'questions' | 'i' | 'dogs' | 'strangers' | 'questions' | 'people' | 'inquiries' | 'i' | 'manners' | 'sailors' | 'fills' | 'days' | 'letters' | 'i' | 'intervals' | 'incidents' | 'increases' | 'words' | 'interests' | 'projects' | 'others' | 'arguments' | 'measures' | 'foes' | 'listeners' | 'hands' | 'eyes' | 'tears' | 'fingers' | 'accents' | 'lips' | 'words' | 'powers' | 'hours' | 'feelings' | 'years' | 'trains' | 'creatures' | 'ourselves' | 'natures' | 'creatures' | 'beauties' | 'regions' | 'disappointments' | 'ventures' | 'books' | 'renders' | 'merits' | 'causes' | 'things' | 'intonations' | 'misfortunes' | 'evils' | 'wishes' | 'disasters' | 'dangers' | 'occurrences' | 'scenes' | 'things' | 'regions' | 'powers' | 'conveys' | 'events' | 'misfortunes' | 'i' | 'feelings' | 'thanks' | 'i' | 'duties' | 'words' | 'notes' | 'lips' | 'swells' | 'ears' | 'eyes' | 'lineaments' | 'ancestors' | 'years' | 'counsellors' | 'syndics' | 'situations' | 'days' | 'affairs' | 'circumstances' | 'circumstances' | 'friends' | 'mischances' | 'debts' | 'circumstances' | 'measures' | 'months' | 'fortunes' | 'months' | 'merchants' | 'months' | 'means' | 'months' | 'means' | 'arms' | 'beauforts' | 'years' | 'ages' | 'parents' | 'bonds' | 'fathers' | 'years' | 'virtues' | 'means' | 'sorrows' | 'wishes' | 'years' | 'functions' | 'wonders' | 'naples' | 'rambles' | 'years' | 'stores' | 'mothers' | 'caresses' | 'fathers' | 'recollections' | 'hands' | 'duties' | 'towards' | 'years' | 'frontiers' | 'shores' | 'cottages' | 'walks' | 'foldings' | 'children' | 'babes' | 'others' | 'vagrants' | 'eyes' | 'lips' | 'species' | 'features' | 'eyes' | 'people' | 'italians' | 'dungeons' | 'parents' | 'brambles' | 'looks' | 'motions' | 'hills' | 'guardians' | 'parents' | 'occupations' | 'pleasures' | 'i' | 'words' | 'praises' | 'ages' | 'i' | 'strangers' | 'species' | 'characters' | 'creations' | 'poets' | 'scenes' | 'shapes' | 'mountains' | 'changes' | 'seasons' | 'summers' | 'appearances' | 'things' | 'causes' | 'laws' | 'sensations' | 'years' | 'parents' | 'lives' | 'parents' | 'school-fellows' | 'bonds' | 'books' | 'songs' | 'plays' | 'masquerades' | 'characters' | 'heroes' | 'roncesvalles' | 'hands' | 'infidels' | 'parents' | 'tyrants' | 'agents' | 'creators' | 'delights' | 'families' | 'passions' | 'towards' | 'pursuits' | 'things' | 'languages' | 'governments' | 'politics' | 'states' | 'attractions' | 'secrets' | 'things' | 'inquiries' | 'secrets' | 'relations' | 'things' | 'virtues' | 'heroes' | 'actions' | 'men' | 'names' | 'benefactors' | 'species' | 'eyes' | 'recollections' | 'visions' | 'reflections' | 'besides' | 'days' | 'events' | 'steps' | 'afterwards' | 'sources' | 'hopes' | 'joys' | 'facts' | 'years' | 'baths' | 'works' | 'facts' | 'pains' | 'principles' | 'powers' | 'powers' | 'circumstances' | 'studies' | 'ideas' | 'means' | 'contents' | 'afterwards' | 'fancies' | 'writers' | 'treasures' | 'besides' | 'i' | 'secrets' | 'discoveries' | 'philosophers' | 'studies' | 'shells' | 'successors' | 'apprehensions' | 'tyros' | 'elements' | 'uses' | 'lineaments' | 'names' | 'causes' | 'grades' | 'fortifications' | 'impediments' | 'beings' | 'books' | 'men' | 'schools' | 'studies' | 'childs' | 'students' | 'preceptors' | 'philosophers' | 'visions' | 'ghosts' | 'devils' | 'authors' | 'incantations' | 'instructors' | 'systems' | 'theories' | 'ideas' | 'years' | 'mountains' | 'quarters' | 'heavens' | 'yards' | 'ribbons' | 'laws' | 'lords' | 'men' | 'studies' | 'caprices' | 'occupations' | 'mathematics' | 'branches' | 'foundations' | 'souls' | 'ligaments' | 'stars' | 'studies' | 'evil' | 'laws' | 'parents' | 'schools' | 'customs' | 'arguments' | 'entreaties' | 'attentions' | 'consequences' | 'symptoms' | 'looks' | 'attendants' | 'women' | 'hands' | 'children' | 'hopes' | 'children' | 'thoughts' | 'feelings' | 'ties' | 'reflections' | 'days' | 'commences' | 'arrives' | 'lips' | 'duties' | 'events' | 'weeks' | 'elizabeth' | 'duties' | 'cousins' | 'smiles' | 'aspirations' | 'details' | 'ourselves' | 'mornings' | 'entreaties' | 'attentions' | 'reflections' | 'companions' | 'friends' | 'countenances' | 'brothers' | 'strangers' | 'reflections' | 'spirits' | 'hopes' | 'beings' | 'desires' | 'reflections' | 'eyes' | 'letters' | 'professors' | 'steps' | 'fathers' | 'secrets' | 'questions' | 'branches' | 'names' | 'alchemists' | 'authors' | 'books' | 'systems' | 'names' | 'fancies' | 'years' | 'studies' | 'books' | 'lectures' | 'relations' | 'days' | 'authors' | 'i' | 'studies' | 'pursuits' | 'i' | 'conclusions' | 'years' | 'results' | 'professors' | 'ideas' | 'matters' | 'steps' | 'paths' | 'discoveries' | 'inquirers' | 'dreams' | 'alchemists' | 'uses' | 'masters' | 'views' | 'visions' | 'chimeras' | 'realities' | 'reflections' | 'days' | 'localities' | 'residents' | 'lectures' | 'sentences' | 'years' | 'hairs' | 'temples' | 'improvements' | 'men' | 'names' | 'discoverers' | 'terms' | 'experiments' | 'terms' | 'teachers' | 'impossibilities' | 'masters' | 'metals' | 'philosophers' | 'hands' | 'eyes' | 'miracles' | 'recesses' | 'hiding-places' | 'heavens' | 'circulates' | 'powers' | 'thunders' | 'shadows' | 'professors' | 'words' | 'words' | 'keys' | 'steps' | 'powers' | 'mysteries' | 'eyes' | 'degrees' | 'mornings' | 'yesternights' | 'thoughts' | 'studies' | 'manners' | 'i' | 'pursuits' | 'studies' | 'names' | 'men' | 'philosophers' | 'foundations' | 'names' | 'classifications' | 'facts' | 'instruments' | 'men' | 'prejudices' | 'chemists' | 'i' | 'terms' | 'books' | 'equals' | 'improvements' | 'i' | 'branches' | 'mathematics' | 'uses' | 'machines' | 'books' | 'ardour' | 'works' | 'inquirers' | 'subjects' | 'lectures' | 'men' | 'manners' | 'instructions' | 'ways' | 'inquiries' | 'stars' | 'students' | 'masters' | 'years' | 'discoveries' | 'enticements' | 'studies' | 'others' | 'years' | 'discoveries' | 'instruments' | 'lessons' | 'professors' | 'improvements' | 'friends' | 'things' | 'inquiries' | 'circumstances' | 'branches' | 'causes' | 'precautions' | 'horrors' | 'i' | 'bodies' | 'days' | 'nights' | 'vaults' | 'charnel-houses' | 'feelings' | 'wonders' | 'men' | 'inquiries' | 'heavens' | 'stages' | 'days' | 'nights' | 'desires' | 'toils' | 'steps' | 'men' | 'endeavours' | 'eyes' | 'precepts' | 'hands' | 'intricacies' | 'fibres' | 'muscles' | 'veins' | 'materials' | 'reverses' | 'operations' | 'mechanics' | 'attempts' | 'foundations' | 'feelings' | 'parts' | 'feet' | 'months' | 'materials' | 'feelings' | 'onwards' | 'bounds' | 'species' | 'natures' | 'theirs' | 'reflections' | 'thoughts' | 'spirits' | 'labours' | 'hiding-places' | 'horrors' | 'damps' | 'eyes' | 'impulse' | 'habits' | 'bones' | 'houses' | 'disturbed' | 'fingers' | 'secrets' | 'apartments' | 'eyeballs' | 'sockets' | 'details' | 'materials' | 'months' | 'fields' | 'vines' | 'eyes' | 'charms' | 'feelings' | 'scenes' | 'friends' | 'miles' | 'words' | 'duties' | 'fathers' | 'feelings' | 'i' | 'thoughts' | 'feelings' | 'affections' | 'pleasures' | 'affections' | 'empires' | 'looks' | 'letters' | 'occupations' | 'labours' | 'leaves' | 'sights' | 'leaves' | 'mines' | 'creatures' | 'labours' | 'toils' | 'instruments' | 'feet' | 'panes' | 'limbs' | 'emotions' | 'pains' | 'limbs' | 'features' | 'muscles' | 'arteries' | 'teeth' | 'luxuriances' | 'eyes' | 'sockets' | 'lips' | 'accidents' | 'feelings' | 'years' | 'clothes' | 'moments' | 'streets' | 'lips' | 'features' | 'arms' | 'grave-worms' | 'folds' | 'teeth' | 'shutters' | 'eyes' | 'eyes' | 'sounds' | 'downstairs' | 'muscles' | 'joints' | 'dante' | 'others' | 'eyes' | 'gates' | 'streets' | 'steps' | 'streets' | 'steps' | 'walks' | 'coleridges' | 'diligences' | 'carriages' | 'minutes' | 'eyes' | 'towards' | 'thoughts' | 'scenes' | 'months' | 'towards' | 'friends' | 'entreaties' | 'florins' | 'brothers' | 'nights' | 'i' | 'i' | 'employments' | 'i' | 'occurrences' | 'minutes' | 'stairs' | 'towards' | 'children' | 'hands' | 'chairs' | 'hands' | 'spirits' | 'eyes' | 'gods' | 'hands' | 'eyes' | 'feelings' | 'senses' | 'months' | 'afterwards' | 'fathers' | 'attentions' | 'eyes' | 'words' | 'wanderings' | 'degrees' | 'relapses' | 'objects' | 'leaves' | 'buds' | 'trees' | 'sentiments' | 'spirits' | 'towards' | 'friends' | 'days' | 'hands' | 'letters' | 'apprehensions' | 'i' | 'persuasions' | 'i' | 'inconveniences' | 'dangers' | 'i' | 'wishes' | 'friends' | 'fathers' | 'returns' | 'powers' | 'hills' | 'children' | 'mountains' | 'hearts' | 'laws' | 'occupations' | 'exertions' | 'words' | 'children' | 'years' | 'institutions' | 'manners' | 'monarchies' | 'classes' | 'inhabitants' | 'orders' | 'manners' | 'duties' | 'yours' | 'professions' | 'lips' | 'eyes' | 'respects' | 'manners' | 'trials' | 'brothers' | 'deaths' | 'favourites' | 'months' | 'manners' | 'mothers' | 'deaths' | 'brothers' | 'words' | 'eyes' | 'eyelashes' | 'dimples' | 'wives' | 'years' | 'people' | 'visits' | 'misfortunes' | 'spirits' | 'i' | 'spirits' | 'returns' | 'thanks' | 'letters' | 'duties' | 'professors' | 'wounds' | 'labours' | 'misfortunes' | 'symptoms' | 'cares' | 'professors' | 'sciences' | 'feelings' | 'instruments' | 'afterwards' | 'words' | 'eyes' | 'feelings' | 'sensations' | 'others' | 'bounds' | 'encomiums' | 'years' | 'men' | 'tastes' | 'pursuits' | 'languages' | 'eyes' | 'languages' | 'studies' | 'studies' | 'works' | 'orientalists' | 'dialects' | 'labours' | 'authors' | 'writings' | 'roses' | 'smiles' | 'frowns' | 'occupations' | 'accidents' | 'roads' | 'friends' | 'inhabitants' | 'environs' | 'scenes' | 'perambulations' | 'spirits' | 'incidents' | 'creatures' | 'feelings' | 'children' | 'senses' | 'years' | 'sensations' | 'fields' | 'flowers' | 'hedges' | 'thoughts' | 'endeavours' | 'feelings' | 'sensations' | 'resources' | 'writers' | 'tales' | 'times' | 'poems' | 'arguments' | 'peasants' | 'spirits' | 'feelings' | 'lines' | 'i' | 'tears' | 'joys' | 'griefs' | 'words' | 'tidings' | 'smiles' | 'circumstances' | 'brothers' | 'afterwards' | 'torches' | 'damps' | 'dews' | 'murders' | 'hands' | 'i' | 'exertions' | 'words' | 'thoughts' | 'feelings' | 'wounds' | 'minds' | 'enemies' | 'friends' | 'hands' | 'i' | 'tears' | 'eyes' | 'horses' | 'words' | 'murderers' | 'friends' | 'sufferings' | 'survivors' | 'streets' | 'words' | 'afterwards' | 'horses' | 'friends' | 'feelings' | 'scenes' | 'years' | 'circumstances' | 'degrees' | 'alterations' | 'days' | 'waters' | 'placid' | 'mountains' | 'palaces' | 'towards' | 'sides' | 'mountains' | 'summits' | 'circumstances' | 'days' | 'streams' | 'mountains' | 'beings' | 'environs' | 'gates' | 'figures' | 'heavens' | 'drops' | 'flashes' | 'eyes' | 'parts' | 'heavens' | 'flashes' | 'spirits' | 'hands' | 'words' | 'trees' | 'belongs' | 'teeth' | 'rocks' | 'events' | 'works' | 'hands' | 'years' | 'scenes' | 'purposes' | 'steps' | 'gates' | 'fathers' | 'precipices' | 'ravings' | 'besides' | 'i' | 'relatives' | 'sides' | 'reflections' | 'fathers' | 'servants' | 'years' | 'fathers' | 'tears' | 'months' | 'persuasions' | 'elizabeth' | 'accusations' | 'tears' | 'brothers' | 'winds' | 'accents' | 'completes' | 'circumstances' | 'facts' | 'days' | 'servants' | 'others' | 'mistaken' | 'i' | 'senses' | 'years' | 'means' | 'spirits' | 'tears' | 'laws' | 'hours' | 'witnesses' | 'devices' | 'beings' | 'qualities' | 'times' | 'ravings' | 'feelings' | 'thousands' | 'minds' | 'spectators' | 'eyes' | 'witnesses' | 'facts' | 'towards' | 'afterwards' | 'hysterics' | 'days' | 'tears' | 'powers' | 'protestations' | 'facts' | 'judges' | 'hours' | 'gates' | 'hours' | 'inhabitants' | 'towards' | 'minutes' | 'steps' | 'i' | 'i' | 'probabilities' | 'i' | 'judges' | 'witnesses' | 'witnesses' | 'years' | 'dispositions' | 'parents' | 'friends' | 'i' | 'years' | 'creatures' | 'afterwards' | 'uncles' | 'towards' | 'rests' | 'countenances' | 'judges' | 'tortures' | 'fangs' | 'lips' | 'ballots' | 'sensations' | 'i' | 'expressions' | 'words' | 'judges' | 'eyes' | 'i' | 'suspicions' | 'judges' | 'elizabeth' | 'justines' | 'smiles' | 'eyes' | 'feelings' | 'i' | 'hands' | 'knees' | 'feet' | 'enemies' | 'enemies' | 'sins' | 'moments' | 'consoles' | 'hearts' | 'enemies' | 'tears' | 'prayers' | 'teeth' | 'moments' | 'towards' | 'others' | 'others' | 'hers' | 'hides' | 'hours' | 'tears' | 'elizabeth' | 'others' | 'judges' | 'appeals' | 'answers' | 'men' | 'lips' | 'tortures' | 'fathers' | 'hands' | 'ones' | 'tears' | 'lamentations' | 'sakes' | 'countenances' | 'blessings' | 'tears' | 'hopes' | 'torments' | 'i' | 'graves' | 'victims' | 'arts' | 'feelings' | 'events' | 'veins' | 'eyes' | 'deeds' | 'intentions' | 'beings' | 'hopes' | 'tortures' | 'habits' | 'arguments' | 'feelings' | 'tears' | 'eyes' | 'survivors' | 'prevents' | 'friends' | 'sensations' | 'gates' | 'walls' | 'hours' | 'sails' | 'reflections' | 'frogs' | 'i' | 'waters' | 'calamities' | 'elizabeth' | 'moments' | 'evils' | 'teeth' | 'eyes' | 'crimes' | 'bounds' | 'andes' | 'deaths' | 'fathers' | 'events' | 'occupations' | 'tears' | 'banks' | 'prospects' | 'sorrows' | 'smiles' | 'works' | 'accounts' | 'books' | 'others' | 'tales' | 'days' | 'evils' | 'men' | 'monsters' | 'others' | 'creatures' | 'jewels' | 'men' | 'i' | 'towards' | 'thousands' | 'i' | 'crimes' | 'places' | 'events' | 'passions' | 'friends' | 'hopes' | 'words' | 'accents' | 'passions' | 'sensations' | 'steps' | 'valleys' | 'scenes' | 'sorrows' | 'wanderings' | 'years' | 'scenes' | 'afterwards' | 'roads' | 'months' | 'mountains' | 'precipices' | 'rocks' | 'waterfalls' | 'elements' | 'castles' | 'precipices' | 'mountains' | 'cottages' | 'trees' | 'pyramids' | 'domes' | 'habitations' | 'beings' | 'forms' | 'mountains' | 'boundaries' | 'castles' | 'fields' | 'glaciers' | 'aiguilles' | 'days' | 'accents' | 'fears' | 'lightnings' | 'sounds' | 'sensations' | 'sources' | 'hills' | 'sides' | 'mountains' | 'pines' | 'waves' | 'mountains' | 'laws' | 'hands' | 'scenes' | 'thoughts' | 'slumbers' | 'shapes' | 'woods' | 'torrents' | 'mists' | 'summits' | 'mountains' | 'friends' | 'retreats' | 'wings' | 'cares' | 'windings' | 'spots' | 'traces' | 'trees' | 'others' | 'rocks' | 'trees' | 'ravines' | 'pines' | 'mists' | 'rivers' | 'wreaths' | 'mountains' | 'summits' | 'objects' | 'sensibilities' | 'beings' | 'impulses' | 'cares' | 'mans' | 'mountains' | 'waves' | 'rifts' | 'hours' | 'mountains' | 'summits' | 'recesses' | 'peaks' | 'spirits' | 'beds' | 'towards' | 'crevices' | 'eyes' | 'mountains' | 'eyes' | 'words' | 'victims' | 'men' | 'things' | 'ties' | 'conditions' | 'friends' | 'tortures' | 'crimes' | 'bounds' | 'feelings' | 'joints' | 'enemies' | 'entreaties' | 'creatures' | 'mountains' | 'glaciers' | 'days' | 'caves' | 'skies' | 'beings' | 'terms' | 'enemies' | 'thousands' | 'others' | 'whirlwinds' | 'laws' | 'hands' | 'circumstances' | 'hands' | 'hands' | 'eyes' | 'canst' | 'virtues' | 'sensations' | 'heavens' | 'precipices' | 'creatures' | 'arguments' | 'hitherto' | 'duties' | 'motives' | 'spirits' | 'events' | 'sensations' | 'i' | 'operations' | 'senses' | 'degrees' | 'nerves' | 'eyes' | 'eyes' | 'sensations' | 'bodies' | 'obstacles' | 'berries' | 'trees' | 'clothes' | 'dews' | 'sides' | 'heavens' | 'trees' | 'berries' | 'trees' | 'ideas' | 'sounds' | 'ears' | 'sides' | 'scents' | 'eyes' | 'changes' | 'sensations' | 'trees' | 'ears' | 'throats' | 'animals' | 'eyes' | 'forms' | 'boundaries' | 'songs' | 'birds' | 'sensations' | 'sounds' | 'sensations' | 'ideas' | 'eyes' | 'objects' | 'forms' | 'degrees' | 'notes' | 'beggars' | 'embers' | 'effects' | 'materials' | 'branches' | 'branches' | 'leaves' | 'branches' | 'branches' | 'embers' | 'offals' | 'travellers' | 'berries' | 'trees' | 'embers' | 'berries' | 'nuts' | 'roots' | 'acorns' | 'pangs' | 'hours' | 'days' | 'rambles' | 'fields' | 'feet' | 'fields' | 'demons' | 'sufferings' | 'remnants' | 'shepherds' | 'straw' | 'travels' | 'remains' | 'peasants' | 'fields' | 'hours' | 'huts' | 'cottages' | 'houses' | 'turns' | 'vegetables' | 'gardens' | 'windows' | 'cottages' | 'i' | 'children' | 'women' | 'stones' | 'kinds' | 'weapons' | 'palaces' | 'chinks' | 'sides' | 'stones' | 'branches' | 'cottagers' | 'servants' | 'sounds' | 'tools' | 'windows' | 'panes' | 'hands' | 'hands' | 'sounds' | 'manners' | 'tears' | 'eyes' | 'sounds' | 'feet' | 'sensations' | 'emotions' | 'shoulders' | 'roots' | 'plants' | 'roots' | 'companions' | 'minutes' | 'creatures' | 'hairs' | 'features' | 'eyes' | 'tools' | 'steps' | 'fields' | 'cottagers' | 'means' | 'tapers' | 'neighbours' | 'occupations' | 'sounds' | 'mans' | 'songs' | 'birds' | 'words' | 'letters' | 'lights' | 'i' | 'occurrences' | 'manners' | 'people' | 'villagers' | 'motives' | 'actions' | 'cottagers' | 'doors' | 'occupations' | 'hours' | 'cottagers' | 'towards' | 'towards' | 'smiles' | 'creatures' | 'beings' | 'eyes' | 'viands' | 'clothes' | 'anothers' | 'tears' | 'questions' | 'appearances' | 'causes' | 'vegetables' | 'masters' | 'pangs' | 'cottagers' | 'times' | 'cottagers' | 'berries' | 'nuts' | 'roots' | 'labours' | 'tools' | 'days' | 'words' | 'degrees' | 'i' | 'people' | 'feelings' | 'sounds' | 'words' | 'minds' | 'countenances' | 'hearers' | 'words' | 'objects' | 'revolutions' | 'names' | 'objects' | 'words' | 'names' | 'cottagers' | 'names' | 'ideas' | 'sounds' | 'words' | 'manners' | 'cottagers' | 'beings' | 'manners' | 'accomplishments' | 'friends' | 'children' | 'eyes' | 'tears' | 'exhortations' | 'senses' | 'friends' | 'instances' | 'dispositions' | 'cottagers' | 'times' | 'degrees' | 'signs' | 'sounds' | 'signs' | 'cottagers' | 'eyes' | 'forms' | 'cottagers' | 'complexions' | 'sensations' | 'effects' | 'trees' | 'indications' | 'afterwards' | 'kinds' | 'plants' | 'signs' | 'heavens' | 'waters' | 'motions' | 'cottagers' | 'occupations' | 'friends' | 'woods' | 'offices' | 'afterwards' | 'labours' | 'occasions' | 'words' | 'terms' | 'thoughts' | 'motives' | 'feelings' | 'creatures' | 'people' | 'forms' | 'beings' | 'arbiters' | 'pictures' | 'words' | 'afterwards' | 'thoughts' | 'organs' | 'tones' | 'words' | 'intentions' | 'manners' | 'blows' | 'showers' | 'men' | 'caves' | 'arts' | 'birds' | 'notes' | 'leaves' | 'trees' | 'gods' | 'spirits' | 'rays' | 'anticipations' | 'events' | 'feelings' | 'skies' | 'flowers' | 'senses' | 'scents' | 'sights' | 'days' | 'cottagers' | 'children' | 'sons' | 'friends' | 'eyes' | 'features' | 'eyes' | 'feelings' | 'tears' | 'eyes' | 'mans' | 'feet' | 'sounds' | 'cottagers' | 'signs' | 'mists' | 'smiles' | 'hands' | 'signs' | 'hours' | 'countenances' | 'instructions' | 'words' | 'others' | 'towards' | 'occupations' | 'feet' | 'airs' | 'tears' | 'eyes' | 'woods' | 'accents' | 'words' | 'days' | 'countenances' | 'friends' | 'months' | 'words' | 'protectors' | 'banks' | 'flowers' | 'eyes' | 'stars' | 'woods' | 'nights' | 'rambles' | 'days' | 'accents' | 'letters' | 'ruins' | 'empires' | 'explanations' | 'authors' | 'empires' | 'manners' | 'governments' | 'religions' | 'nations' | 'asiatics' | 'grecians' | 'wars' | 'romans' | 'kings' | 'inhabitants' | 'narrations' | 'feelings' | 'laws' | 'governments' | 'details' | 'i' | 'cottagers' | 'wonders' | 'instructions' | 'words' | 'towards' | 'possessions' | 'creatures' | 'riches' | 'advantages' | 'instances' | 'powers' | 'profits' | 'friends' | 'extremes' | 'theirs' | 'men' | 'men' | 'i' | 'reflections' | 'sensations' | 'feelings' | 'manners' | 'qualities' | 'cottagers' | 'means' | 'fellows' | 'words' | 'smiles' | 'exhortations' | 'lessons' | 'sexes' | 'children' | 'smiles' | 'sallies' | 'cares' | 'relationships' | 'bonds' | 'friends' | 'relations' | 'days' | 'smiles' | 'caresses' | 'groans' | 'feelings' | 'cottagers' | 'feelings' | 'protectors' | 'friends' | 'circumstances' | 'years' | 'superiors' | 'equals' | 'ladies' | 'months' | 'friends' | 'years' | 'means' | 'attempts' | 'chains' | 'intentions' | 'promises' | 'offers' | 'gestures' | 'interests' | 'days' | 'preparations' | 'letters' | 'thoughts' | 'terms' | 'services' | 'copies' | 'letters' | 'means' | 'implements' | 'letters' | 'hands' | 'turks' | 'terms' | 'tenets' | 'powers' | 'followers' | 'lessons' | 'walls' | 'amusements' | 'ideas' | 'women' | 'leagues' | 'passports' | 'fugitives' | 'lyons' | 'dominions' | 'towards' | 'means' | 'looks' | 'hopes' | 'lovers' | 'plans' | 'plans' | 'plans' | 'pains' | 'agatha' | 'months' | 'events' | 'misfortunes' | 'days' | 'daughters' | 'hours' | 'feelings' | 'papers' | 'hands' | 'jewels' | 'leagues' | 'customs' | 'hands' | 'cottagers' | 'views' | 'virtues' | 'vices' | 'qualities' | 'protectors' | 'articles' | 'books' | 'books' | 'elements' | 'lives' | 'sorrows' | 'treasures' | 'histories' | 'friends' | 'occupations' | 'books' | 'images' | 'feelings' | 'sorrows' | 'opinions' | 'lights' | 'manners' | 'sentiments' | 'feelings' | 'protectors' | 'disquisitions' | 'merits' | 'opinions' | 'feelings' | 'beings' | 'questions' | 'lives' | 'histories' | 'founders' | 'republics' | 'sorrows' | 'werters' | 'imaginations' | 'thoughts' | 'reflections' | 'heroes' | 'ages' | 'things' | 'kingdoms' | 'extents' | 'rivers' | 'seas' | 'towns' | 'assemblages' | 'men' | 'protectors' | 'scenes' | 'men' | 'affairs' | 'species' | 'terms' | 'feelings' | 'lawgivers' | 'lives' | 'protectors' | 'impressions' | 'sensations' | 'emotions' | 'volumes' | 'hands' | 'creatures' | 'situations' | 'hands' | 'beings' | 'times' | 'protectors' | 'feelings' | 'papers' | 'characters' | 'months' | 'papers' | 'accounts' | 'occurrences' | 'papers' | 'circumstances' | 'horrors' | 'yours' | 'companions' | 'devils' | 'reflections' | 'hours' | 'virtues' | 'cottagers' | 'dispositions' | 'virtues' | 'months' | 'days' | 'months' | 'changes' | 'inhabitants' | 'labours' | 'servants' | 'feelings' | 'fears' | 'months' | 'thoughts' | 'fields' | 'creatures' | 'feelings' | 'countenances' | 'smiles' | 'sorrows' | 'thoughts' | 'leaves' | 'woods' | 'delights' | 'flowers' | 'birds' | 'i' | 'cottagers' | 'joys' | 'casualties' | 'creatures' | 'looks' | 'towards' | 'treasures' | 'seasons' | 'towards' | 'protectors' | 'projects' | 'children' | 'means' | 'protectors' | 'children' | 'mournful' | 'airs' | 'hopes' | 'fears' | 'servants' | 'limbs' | 'planks' | 'minutes' | 'children' | 'i' | 'friends' | 'hopes' | 'germans' | 'i' | 'people' | 'fears' | 'hearts' | 'men' | 'hopes' | 'friends' | 'creatures' | 'i' | 'dispositions' | 'eyes' | 'terrors' | 'friends' | 'i' | 'months' | 'habits' | 'friends' | 'particulars' | 'words' | 'creatures' | 'i' | 'misfortunes' | 'lips' | 'friends' | 'names' | 'friends' | 'steps' | 'protectors' | 'friends' | 'knees' | 'i' | 'feelings' | 'inhabitants' | 'shrieks' | 'howlings' | 'toils' | 'objects' | 'stars' | 'trees' | 'branches' | 'trees' | 'myriads' | 'men' | 'towards' | 'enemies' | 'species' | 'voices' | 'men' | 'hours' | 'conclusions' | 'children' | 'degrees' | 'errors' | 'representations' | 'thoughts' | 'dreams' | 'eyes' | 'females' | 'fathers' | 'feet' | 'steps' | 'heavens' | 'cottagers' | 'i' | 'countrymen' | 'gesticulations' | 'protectors' | 'felix' | 'appearances' | 'months' | 'days' | 'i' | 'minutes' | 'protectors' | 'feelings' | 'towards' | 'friends' | 'eyes' | 'thoughts' | 'tears' | 'towards' | 'objects' | 'combustibles' | 'operations' | 'woods' | 'heavens' | 'spirits' | 'bounds' | 'eyes' | 'bushes' | 'flames' | 'forked' | 'tongues' | 'woods' | 'steps' | 'misfortunes' | 'papers' | 'lessons' | 'situations' | 'countries' | 'towards' | 'names' | 'towns' | 'perceptions' | 'passions' | 'travels' | 'sufferings' | 'rivers' | 'curses' | 'waters' | 'incidents' | 'feelings' | 'confines' | 'feelings' | 'emotions' | 'sensations' | 'tears' | 'eyes' | 'paths' | 'trees' | 'branches' | 'voices' | 'sides' | 'labour' | 'towards' | 'arms' | 'parts' | 'i' | 'feelings' | 'moments' | 'teeth' | 'pulses' | 'weeks' | 'woods' | 'means' | 'sufferings' | 'vows' | 'outrages' | 'weeks' | 'breezes' | 'toils' | 'months' | 'environs' | 'fields' | 'mountains' | 'hands' | 'eyes' | 'pieces' | 'epithets' | 'feet' | 'hands' | 'miseries' | 'eyes' | 'moments' | 'eyes' | 'lashes' | 'lips' | 'delights' | 'creatures' | 'thoughts' | 'sensations' | 'exclamations' | 'feelings' | 'smiles' | 'eyes' | 'eyes' | 'thanks' | 'lessons' | 'laws' | 'folds' | 'days' | 'scenes' | 'miseries' | 'mountains' | 'recesses' | 'species' | 'defects' | 'looks' | 'ideas' | 'i' | 'sympathies' | 'cottagers' | 'men' | 'eyes' | 'pieces' | 'ice-rifts' | 'hands' | 'tears' | 'senses' | 'barriers' | 'injuries' | 'i' | 'towards' | 'contortions' | 'eyes' | 'emotions' | 'towards' | 'creatures' | 'dreams' | 'monsters' | 'lives' | 'towards' | 'consequences' | 'feelings' | 'sensations' | 'wilds' | 'acorns' | 'berries' | 'leaves' | 'towards' | 'eyes' | 'habitations' | 'wilds' | 'beasts' | 'companions' | 'passions' | 'feelings' | 'representations' | 'complaints' | 'places' | 'passions' | 'moments' | 'words' | 'feelings' | 'sensations' | 'i' | 'ties' | 'affections' | 'crimes' | 'vices' | 'children' | 'virtues' | 'affections' | 'events' | 'arguments' | 'virtues' | 'protectors' | 'towards' | 'threats' | 'calculations' | 'caves' | 'glaciers' | 'ridges' | 'precipices' | 'faculties' | 'creatures' | 'hands' | 'labours' | 'sentiments' | 'undulations' | 'steps' | 'paths' | 'feet' | 'emotions' | 'occurrences' | 'stars' | 'intervals' | 'clouds' | 'pines' | 'thoughts' | 'hands' | 'stars' | 'clouds' | 'winds' | 'ye' | 'thoughts' | 'i' | 'stars' | 'sensations' | 'mountains' | 'sympathies' | 'months' | 'discoveries' | 'fathers' | 'spirits' | 'thoughts' | 'remains' | 'fits' | 'moments' | 'days' | 'waves' | 'salutations' | 'friends' | 'rambles' | 'pleasures' | 'years' | 'dispositions' | 'tastes' | 'assistants' | 'hopes' | 'prospects' | 'sentiments' | 'i' | 'events' | 'events' | 'years' | 'infirmities' | 'plans' | 'words' | 'thoughts' | 'miseries' | 'philosophers' | 'discoveries' | 'fathers' | 'habits' | 'i' | 'accidents' | 'sensations' | 'i' | 'feelings' | 'reasons' | 'desires' | 'i' | 'effects' | 'months' | 'hours' | 'times' | 'fathers' | 'toils' | 'sufferings' | 'elizabeth' | 'arrangements' | 'friends' | 'attacks' | 'friends' | 'impulses' | 'sensations' | 'machinations' | 'inroads' | 'circumstances' | 'womans' | 'emotions' | 'instruments' | 'imaginations' | 'scenes' | 'eyes' | 'travels' | 'days' | 'leagues' | 'days' | 'alas' | 'beauties' | 'appearances' | 'thoughts' | 'reflections' | 'islands' | 'towns' | 'winds' | 'hills' | 'forms' | 'castles' | 'edges' | 'precipices' | 'woods' | 'hills' | 'castles' | 'precipices' | 'vineyards' | 'banks' | 'towns' | 'labourers' | 'spirits' | 'feelings' | 'sensations' | 'scenes' | 'i' | 'lakes' | 'shades' | 'islands' | 'i' | 'whirlwinds' | 'waves' | 'voices' | 'pauses' | 'i' | 'mountains' | 'pays' | 'wonders' | 'mountains' | 'banks' | 'trees' | 'labourers' | 'vines' | 'inhabits' | 'guards' | 'peaks' | 'mountains' | 'words' | 'affections' | 'sympathies' | 'others' | 'colours' | 'forms' | 'ideas' | 'imaginations' | 'visits' | 'consoles' | 'words' | 'plains' | 'days' | 'days' | 'cliffs' | 'banks' | 'thames' | 'places' | 'steeples' | 'months' | 'men' | 'means' | 'letters' | 'philosophers' | 'days' | 'people' | 'i' | 'sights' | 'men' | 'events' | 'names' | 'manners' | 'languages' | 'views' | 'means' | 'enjoyments' | 'pleasures' | 'materials' | 'drops' | 'lips' | 'months' | 'beauties' | 'allurements' | 'mountains' | 'streams' | 'works' | 'dwelling-places' | 'lakes' | 'instruments' | 'materials' | 'labours' | 'highlands' | 'days' | 'mountaineers' | 'oaks' | 'herds' | 'novelties' | 'minds' | 'events' | 'charles' | 'i' | 'forces' | 'companions' | 'days' | 'footsteps' | 'feelings' | 'colleges' | 'streets' | 'meadows' | 'waters' | 'towers' | 'spires' | 'domes' | 'trees' | 'days' | 'productions' | 'spirits' | 'others' | 'environs' | 'voyages' | 'objects' | 'fears' | 'ideas' | 'sights' | 'monuments' | 'remembrancers' | 'chains' | 'hills' | 'mountains' | 'cabinets' | 'curiosities' | 'collections' | 'northwards' | 'months' | 'mountains' | 'patches' | 'sides' | 'mountains' | 'lakes' | 'streams' | 'sights' | 'acquaintances' | 'men' | 'capacities' | 'resources' | 'inferiors' | 'mountains' | 'travellers' | 'enjoyments' | 'feelings' | 'novelties' | 'lakes' | 'inhabitants' | 'effects' | 'daemons' | 'relatives' | 'letters' | 'fears' | 'thoughts' | 'eyes' | 'environs' | 'bernards' | 'hills' | 'andrews' | 'banks' | 'strangers' | 'feelings' | 'plans' | 'motions' | 'rambles' | 'people' | 'highlands' | 'orkneys' | 'sides' | 'waves' | 'cows' | 'inhabitants' | 'persons' | 'limbs' | 'tokens' | 'vegetables' | 'luxuries' | 'miles' | 'huts' | 'rooms' | 'walls' | 'hinges' | 'senses' | 'cottagers' | 'clothes' | 'sensations' | 'men' | 'waves' | 'feet' | 'hills' | 'vines' | 'cottages' | 'plains' | 'lakes' | 'winds' | 'roarings' | 'occupations' | 'days' | 'times' | 'eyes' | 'proceedings' | 'hands' | 'spirits' | 'eyes' | 'creatures' | 'forebodings' | 'effects' | 'years' | 'dispositions' | 'times' | 'deserts' | 'eyes' | 'species' | 'deserts' | 'results' | 'sympathies' | 'children' | 'devils' | 'species' | 'generations' | 'i' | 'threats' | 'ages' | 'lips' | 'travels' | 'forests' | 'caves' | 'heaths' | 'steps' | 'reveries' | 'hours' | 'winds' | 'vessels' | 'voices' | 'fishermen' | 'oars' | 'minutes' | 'peasants' | 'dreams' | 'footsteps' | 'i' | 'shores' | 'islands' | 'summits' | 'hills' | 'i' | 'months' | 'heaths' | 'deserts' | 'hopes' | 'threats' | 'words' | 'teeth' | 'feelings' | 'hours' | 'passions' | 'injuries' | 'sounds' | 'words' | 'moments' | 'waters' | 'waves' | 'words' | 'ears' | 'words' | 'tears' | 'tears' | 'months' | 'eyes' | 'feelings' | 'sinks' | 'depths' | 'nights' | 'creatures' | 'nerves' | 'eyes' | 'beings' | 'words' | 'ears' | 'men' | 'letters' | 'letters' | 'friends' | 'southwards' | 'days' | 'instruments' | 'remains' | 'instruments' | 'relics' | 'peasants' | 'stones' | 'feelings' | 'consequences' | 'eyes' | 'labours' | 'thoughts' | 'miles' | 'boats' | 'towards' | 'creatures' | 'sensations' | 'waves' | 'waves' | 'sensations' | 'tortures' | 'waters' | 'hours' | 'sufferings' | 'heavens' | 'clouds' | 'others' | 'passions' | 'hours' | 'degrees' | 'breakers' | 'hours' | 'tears' | 'eyes' | 'feelings' | 'i' | 'traces' | 'vessels' | 'windings' | 'sails' | 'people' | 'gestures' | 'friends' | 'quarters' | 'countenances' | 'companions' | 'englishmen' | 'strangers' | 'villains' | 'kirwins' | 'folks' | 'houses' | 'moments' | 'events' | 'manners' | 'towards' | 'conductors' | 'witnesses' | 'men' | 'miles' | 'companions' | 'sands' | 'companions' | 'waves' | 'clothes' | 'years' | 'fingers' | 'fingers' | 'limbs' | 'eyes' | 'fathers' | 'stars' | 'fishermen' | 'afterwards' | 'fishermen' | 'men' | 'hours' | 'besides' | 'persons' | 'coincidences' | 'persons' | 'consequences' | 'sensations' | 'witnesses' | 'machinations' | 'i' | 'victims' | 'agonies' | 'convulsions' | 'months' | 'ravings' | 'afterwards' | 'attendants' | 'others' | 'fingers' | 'aloud' | 'gestures' | 'cries' | 'witnesses' | 'children' | 'hopes' | 'parents' | 'brides' | 'lovers' | 'worms' | 'materials' | 'shocks' | 'months' | 'jailers' | 'turnkeys' | 'bolts' | 'particulars' | 'windows' | 'turnkeys' | 'qualities' | 'lines' | 'persons' | 'sights' | 'sufferings' | 'i' | 'images' | 'medicines' | 'reflections' | 'sufferings' | 'agonies' | 'ravings' | 'visits' | 'intervals' | 'eyes' | 'i' | 'thoughts' | 'events' | 'mortals' | 'chances' | 'eyes' | 'sufferings' | 'papers' | 'relations' | 'letters' | 'others' | 'months' | 'times' | 'desires' | 'eyes' | 'gods' | 'assurances' | 'subjects' | 'spirits' | 'windows' | 'tears' | 'hangs' | 'reflections' | 'friends' | 'throbbings' | 'thoughts' | 'hours' | 'ruins' | 'assizes' | 'months' | 'miles' | 'witnesses' | 'vexations' | 'feelings' | 'walls' | 'eyes' | 'eyes' | 'lids' | 'lashes' | 'eyes' | 'feelings' | 'elizabeth' | 'words' | 'groans' | 'i' | 'pays' | 'fits' | 'paroxysms' | 'moments' | 'lives' | 'i' | 'fatigues' | 'shores' | 'stars' | 'waves' | 'feelings' | 'means' | 'misfortunes' | 'dreams' | 'objects' | 'fiends' | 'groans' | 'cries' | 'ears' | 'waves' | 'fathers' | 'attentions' | 'sufferings' | 'methods' | 'brethren' | 'beings' | 'creatures' | 'groans' | 'acts' | 'crimes' | 'arguments' | 'beings' | 'feelings' | 'passions' | 'hands' | 'others' | 'inmates' | 'words' | 'i' | 'heavens' | 'operations' | 'victims' | 'machinations' | 'times' | 'lives' | 'i' | 'ideas' | 'thoughts' | 'scenes' | 'misfortunes' | 'crimes' | 'manners' | 'days' | 'feelings' | 'misfortunes' | 'questions' | 'doubts' | 'parents' | 'playfellows' | 'friends' | 'towards' | 'years' | 'wishes' | 'parents' | 'inclinations' | 'dreams' | 'misfortunes' | 'miseries' | 'wishes' | 'lips' | 'forgotten' | 'sufferings' | 'crimes' | 'eyes' | 'lands' | 'horrors' | 'feelings' | 'dreams' | 'angels' | 'months' | 'menaces' | 'means' | 'threats' | 'hers' | 'fathers' | 'designs' | 'fears' | 'tears' | 'eyes' | 'looks' | 'miseries' | 'fits' | 'feelings' | 'agonies' | 'elizabeth' | 'misfortunes' | 'ties' | 'objects' | 'lessons' | 'deeds' | 'words' | 'elizabeth' | 'days' | 'powers' | 'intentions' | 'feelings' | 'smiles' | 'misfortunes' | 'preparations' | 'visits' | 'plans' | 'decorations' | 'fathers' | 'shores' | 'days' | 'pistols' | 'means' | 'wishes' | 'fathers' | 'moments' | 'rays' | 'banks' | 'mountains' | 'banks' | 'permits' | 'whispers' | 'waters' | 'thoughts' | 'subjects' | 'instants' | 'eyes' | 'heavens' | 'glens' | 'hills' | 'mountains' | 'woods' | 'hitherto' | 'trees' | 'flowers' | 'cares' | 'fears' | 'waters' | 'woods' | 'mountains' | 'outlines' | 'heavens' | 'rays' | 'heavens' | 'waves' | 'shapes' | 'objects' | 'fears' | 'passages' | 'menaces' | 'arms' | 'i' | 'veins' | 'extremities' | 'features' | 'arms' | 'clings' | 'people' | 'countenances' | 'others' | 'feelings' | 'limbs' | 'arms' | 'fiends' | 'lips' | 'windows' | 'shutters' | 'boats' | 'nets' | 'hours' | 'companions' | 'parties' | 'directions' | 'woods' | 'vines' | 'steps' | 'eyes' | 'eyes' | 'women' | 'tears' | 'thoughts' | 'subjects' | 'misfortunes' | 'friends' | 'feet' | 'horses' | 'torrents' | 'men' | 'hands' | 'scenes' | 'tears' | 'eyes' | 'waters' | 'hours' | 'incidents' | 'horrors' | 'i' | 'friends' | 'words' | 'tidings' | 'eyes' | 'feels' | 'affections' | 'clings' | 'hairs' | 'horrors' | 'springs' | 'days' | 'arms' | 'i' | 'chains' | 'meadows' | 'vales' | 'friends' | 'degrees' | 'i' | 'miseries' | 'months' | 'misfortunes' | 'wishes' | 'means' | 'pains' | 'exertions' | 'forces' | 'i' | 'dates' | 'others' | 'feelings' | 'functions' | 'spirits' | 'events' | 'powers' | 'exertions' | 'caves' | 'dens' | 'besides' | 'months' | 'crimes' | 'thoughts' | 'eyes' | 'crimes' | 'properties' | 'i' | 'ideas' | 'effects' | 'feelings' | 'calm' | 'periods' | 'jewels' | 'wanderings' | 'i' | 'hardships' | 'travellers' | 'deserts' | 'countries' | 'times' | 'limbs' | 'i' | 'steps' | 'hours' | 'confines' | 'graves' | 'leaves' | 'trees' | 'spirits' | 'lips' | 'shades' | 'spirits' | 'eyes' | 'spirits' | 'ministers' | 'shades' | 'friends' | 'furies' | 'ears' | 'mountains' | 'months' | 'windings' | 'i' | 'wilds' | 'i' | 'peasants' | 'snows' | 'pains' | 'followed' | 'steps' | 'difficulties' | 'peasants' | 'spirits' | 'heavens' | 'drops' | 'courses' | 'rivers' | 'places' | 'beings' | 'animals' | 'villagers' | 'utensils' | 'dreams' | 'spirits' | 'moments' | 'hours' | 'hardships' | 'friends' | 'tones' | 'arms' | 'friends' | 'forms' | 'hours' | 'moments' | 'feelings' | 'i' | 'marks' | 'barks' | 'trees' | 'words' | 'inscriptions' | 'ices' | 'lives' | 'hours' | 'friends' | 'snows' | 'peasants' | 'hovels' | 'animals' | 'hiding-places' | 'rivers' | 'words' | 'toils' | 'furs' | 'sufferings' | 'words' | 'deserts' | 'seasons' | 'hills' | 'toils' | 'weeks' | 'dogs' | 'snows' | 'advantages' | 'days' | 'i' | 'days' | 'inhabitants' | 'pistols' | 'inhabitants' | 'dogs' | 'villagers' | 'frosts' | 'ices' | 'inhabitants' | 'spirits' | 'inequalities' | 'provisions' | 'days' | 'i' | 'mountains' | 'paths' | 'weeks' | 'drops' | 'eyes' | 'animals' | 'proportions' | 'tears' | 'eyes' | 'drops' | 'emotions' | 'dogs' | 'hours' | 'moments' | 'days' | 'hopes' | 'waters' | 'minutes' | 'hours' | 'dogs' | 'hopes' | 'vessels' | 'oars' | 'means' | 'southwards' | 'seas' | 'northwards' | 'hardships' | 'i' | 'hardships' | 'ministers' | 'woes' | 'crimes' | 'words' | 'names' | 'others' | 'words' | 'eyes' | 'tones' | 'incidents' | 'imprecations' | 'letters' | 'asseverations' | 'particulars' | 'creatures' | 'miseries' | 'notes' | 'places' | 'conversations' | 'i' | 'thoughts' | 'manners' | 'dreams' | 'friends' | 'derives' | 'miseries' | 'excitements' | 'creations' | 'beings' | 'regions' | 'reveries' | 'conversations' | 'misfortunes' | 'passions' | 'tears' | 'days' | 'feelings' | 'achievements' | 'others' | 'talents' | 'creatures' | 'projectors' | 'speculations' | 'hopes' | 'powers' | 'qualities' | 'reveries' | 'thoughts' | 'powers' | 'effects' | 'hopes' | 'i' | 'i' | 'i' | 'intentions' | 'towards' | 'ties' | 'affections' | 'affections' | 'companions' | 'minds' | 'dispositions' | 'afterwards' | 'actions' | 'conclusions' | 'motives' | 'symptoms' | 'friends' | 'merits' | 'creatures' | 'i' | 'mountains' | 'companions' | 'i' | 'hopes' | 'lives' | 'men' | 'schemes' | 'years' | 'visitings' | 'expectations' | 'children' | 'regards' | 'talks' | 'accidents' | 'navigators' | 'auguries' | 'sailors' | 'energies' | 'mountains' | 'hills' | 'resolutions' | 'feelings' | 'papers' | 'mountains' | 'comrades' | 'glimmers' | 'eyes' | 'fears' | 'eyes' | 'sailors' | 'companions' | 'sailors' | 'dangers' | 'southwards' | 'eyes' | 'men' | 'dangers' | 'benefactors' | 'species' | 'names' | 'men' | 'men' | 'souls' | 'firesides' | 'yourselves' | 'cowards' | 'men' | 'men' | 'purposes' | 'hearts' | 'families' | 'brows' | 'heroes' | 'backs' | 'feelings' | 'men' | 'i' | 'towards' | 'men' | 'ideas' | 'hardships' | 'i' | 'hopes' | 'i' | 'hopes' | 'i' | 'circumstances' | 'towards' | 'towards' | 'roarings' | 'islands' | 'towards' | 'sailors' | 'i' | 'demands' | 'i' | 'spirits' | 'eyes' | 'hours' | 'eyes' | 'moments' | 'days' | 'towards' | 'duties' | 'beings' | 'species' | 'claims' | 'friends' | 'beings' | 'sensations' | 'i' | 'i' | 'motives' | 'friends' | 'points' | 'duties' | 'i' | 'ideas' | 'disturbs' | 'respects' | 'years' | 'forms' | 'arms' | 'discoveries' | 'i' | 'hopes' | 'afterwards' | 'eyes' | 'lips' | 'tears' | 'towards' | 'sounds' | 'remains' | 'remains' | 'words' | 'proportions' | 'locks' | 'utterexclamations' | 'eyes' | 'duties' | 'towards' | 'crimes' | 'impulses' | 'eyes' | 'words' | 'lips' | 'self-reproaches' | 'stings' | 'groans' | 'ears' | 'torments' | 'feelings' | 'passions' | 'i' | 'expressions' | 'powers' | 'eyes' | 'buildings' | 'ruins' | 'actions' | 'feelings' | 'sufferings' | 'dreams' | 'beings' | 'qualities' | 'thoughts' | 'sins' | 'i' | 'thoughts' | 'visions' | 'friends' | 'associates' | 'crimes' | 'misfortunes' | 'hours' | 'months' | 'passions' | 'hopes' | 'desires' | 'felix' | 'beings' | 'boils' | 'i' | 'specimen' | 'men' | 'i' | 'hands' | 'hands' | 'eyes' | 'thoughts' | 'yours' | 'mans' | 'remains' | 'agonies' | 'feelings' | 'stars' | 'winds' | 'years' | 'images' | 'leaves' | 'birds' | 'crimes' | 'eyes' | 'wounds' | 'miseries' | 'flames' | 'ashes' | 'winds' | 'waves'\nNNP -> 'october' | 'kirwin' | 'kirwin' | 'kirwin' | 'kirwin' | 'kirwin' | 'kirwin' | 'kirwin' | 'kirwin' | 'kirwin' | 'kirwin'\nWRB -> 'when' | 'when' | 'where' | 'how' | 'when' | 'when' | 'when' | 'when' | 'how' | 'how' | 'when' | 'how' | 'when' | 'when' | 'when' | 'whenever' | 'when' | 'why' | 'when' | 'when' | 'when' | 'when' | 'when' | 'why' | 'when' | 'when' | 'how' | 'when' | 'how' | 'how' | 'when' | 'when' | 'how' | 'when' | 'when' | 'where' | 'where' | 'when' | 'when' | 'when' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'why' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'when' | 'how' | 'how' | 'when' | 'how' | 'when' | 'when' | 'how' | 'how' | 'how' | 'why' | 'how' | 'how' | 'when' | 'when' | 'where' | 'how' | 'when' | 'when' | 'how' | 'how' | 'when' | 'where' | 'when' | 'where' | 'why' | 'where' | 'how' | 'how' | 'how' | 'how' | 'how' | 'when' | 'when' | 'when' | 'how' | 'how' | 'how' | 'how' | 'how' | 'how' | 'how' | 'how' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'why' | 'when' | 'when' | 'how' | 'when' | 'when' | 'how' | 'when' | 'when' | 'how' | 'how' | 'when' | 'when' | 'where' | 'when' | 'when' | 'how' | 'when' | 'how' | 'how' | 'when' | 'when' | 'where' | 'when' | 'when' | 'where' | 'when' | 'how' | 'how' | 'when' | 'when' | 'when' | 'where' | 'when' | 'where' | 'when' | 'where' | 'when' | 'when' | 'when' | 'how' | 'where' | 'when' | 'where' | 'when' | 'how' | 'when' | 'why' | 'when' | 'when' | 'where' | 'when' | 'how' | 'how' | 'when' | 'why' | 'why' | 'where' | 'why' | 'where' | 'when' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'how' | 'where' | 'when' | 'where' | 'when' | 'when' | 'where' | 'why' | 'when' | 'where' | 'how' | 'how' | 'how' | 'when' | 'why' | 'when' | 'where' | 'when' | 'when' | 'when' | 'when' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'how' | 'when' | 'how' | 'when' | 'why' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'when' | 'when' | 'how' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'why' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'how' | 'why' | 'when' | 'when' | 'when' | 'when' | 'how' | 'how' | 'how' | 'where' | 'where' | 'when' | 'when' | 'when' | 'where' | 'where' | 'when' | 'where' | 'when' | 'when' | 'when' | 'where' | 'when' | 'where' | 'where' | 'when' | 'when' | 'why' | 'when' | 'when' | 'when' | 'where' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'where' | 'how' | 'when' | 'why' | 'why' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'how' | 'when' | 'where' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'when' | 'when' | 'why' | 'when' | 'when' | 'where' | 'where' | 'why' | 'when' | 'when' | 'where' | 'how' | 'how' | 'why' | 'when' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'how' | 'how' | 'when' | 'when' | 'wherever' | 'where' | 'how' | 'when' | 'when' | 'how' | 'where' | 'when' | 'where' | 'where' | 'where' | 'when' | 'where' | 'where' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'when' | 'when' | 'when' | 'where' | 'when' | 'why' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'how' | 'when' | 'when' | 'when' | 'how' | 'how' | 'where' | 'where' | 'why' | 'when' | 'why' | 'when' | 'when' | 'when' | 'when' | 'where' | 'where' | 'where' | 'when' | 'where' | 'how' | 'when' | 'why' | 'why' | 'how' | 'when' | 'when' | 'when' | 'how' | 'how' | 'where' | 'why' | 'why' | 'where' | 'when' | 'how' | 'how' | 'when' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where' | 'how' | 'how' | 'where' | 'how' | 'when' | 'when' | 'how' | 'when' | 'why' | 'why' | 'where' | 'when' | 'where' | 'where' | 'where' | 'why' | 'when' | 'when' | 'when' | 'where' | 'when' | 'how' | 'when' | 'when' | 'how' | 'when' | 'where' | 'when' | 'how' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'how' | 'where' | 'where' | 'how' | 'when' | 'where' | 'when' | 'how' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'how' | 'when' | 'where' | 'when' | 'wherever' | 'how' | 'when' | 'when' | 'when' | 'why' | 'how' | 'when' | 'where' | 'when' | 'when' | 'when' | 'why' | 'where' | 'where' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'when' | 'why' | 'why' | 'when' | 'when' | 'when' | 'when' | 'when' | 'where'\nVB -> 'rejoice' | 'hear' | 'assure' | 'i' | 'do' | 'understand' | 'become' | 'be' | 'put' | 'be' | 'be' | 'be' | 'there' | 'discover' | 'regulate' | 'render' | 'i' | 'satiate' | 'tread' | 'conquer' | 'induce' | 'commence' | 'be' | 'contest' | 'confer' | 'reach' | 'be' | 'heaven' | 'tranquillize' | 'fix' | 'remember' | 'allow' | 'embark' | 'heaven' | 'obtain' | 'remember' | 'hardship' | 'i' | 'derive' | 'admiration' | 'i' | 'own' | 'remain' | 'consider' | 'deserve' | 'accomplish' | 'have' | 'answer' | 'i' | 'proceed' | 'demand' | 'raise' | 'sustain' | 'lose' | 'i' | 'depart' | 'hire' | 'be' | 'engage' | 'i' | 'intend' | 'sail' | 'i' | 'i' | 'answer' | 'succeed' | 'pass' | 'i' | 'meet' | 'see' | 'save' | 'testify' | 'mrsxperiod' | 'be' | 'depend' | 'satisfy' | 'be' | 'participate' | 'endeavour' | 'sustain' | 'i' | 'commit' | 'sympathize' | 'reply' | 'mine' | 'deem' | 'approve' | 'amend' | 'such' | 'be' | 'derive' | 'i' | 'have' | 'despise' | 'endeavour' | 'regulate' | 'i' | 'find' | 'i' | 'assist' | 'engage' | 'overcome' | 'be' | 'secure' | 'spare' | 'consent' | 'pass' | 'purchase' | 'consent' | 'exclaim' | 'command' | 'suppose' | 'conceive' | 'know' | 'permit' | 'i' | 'sail' | 'i' | 'do' | 'rashly' | 'confide' | 'describe' | 'communicate' | 'depart' | 'i' | 'kill' | 'be' | 'come' | 'smile' | 'disclose' | 'understand' | 'i' | 'execute' | 'explore' | 'return' | 'dearer' | 'i' | 'expect' | 'bear' | 'look' | 'write' | 'receive' | 'support' | 'i' | 'remember' | 'mrsxperiod' | 'say' | 'reach' | 'see' | 'dismay' | 'attain' | 'breathe' | 'make' | 'record' | 'i' | 'be' | 'be' | 'rashly' | 'be' | 'crown' | 'proceed' | 'stop' | 'finish' | 'mrsxperiod' | 'england' | 'forbear' | 'see' | 'come' | 'take' | 'have' | 'grow' | 'denote' | 'follow' | 'encounter' | 'rest' | 'enter' | 'be' | 'allow' | 'perish' | 'have' | 'inform' | 'conceive' | 'have' | 'have' | 'have' | 'afford' | 'come' | 'have' | 'i' | 'carry' | 'swallow' | 'ate' | 'speak' | 'permit' | 'i' | 'keep' | 'ask' | 'allow' | 'be' | 'seek' | 'travel' | 'make' | 'be' | 'i' | 'answer' | 'have' | 'judge' | 'be' | 'watch' | 'remain' | 'sustain' | 'watch' | 'give' | 'appear' | 'love' | 'have' | 'find' | 'have' | 'have' | 'i' | 'continue' | 'i' | 'i' | 'secure' | 'use' | 'give' | 'say' | 'i' | 'sacrifice' | 'pay' | 'acquire' | 'transmit' | 'suppress' | 'do' | 'hear' | 'let' | 'reveal' | 'dash' | 'imagine' | 'overcame' | 'restore' | 'despise' | 'converse' | 'boast' | 'enjoy' | 'be' | 'do' | 'lend' | 'perfectionate' | 'judge' | 'begin' | 'feel' | 'have' | 'suffer' | 'be' | 'be' | 'smile' | 'appreciate' | 'discover' | 'be' | 'add' | 'perceive' | 'captain' | 'die' | 'alter' | 'i' | 'be' | 'i' | 'know' | 'be' | 'deduce' | 'direct' | 'succeed' | 'hear' | 'fear' | 'encounter' | 'appear' | 'provoke' | 'i' | 'imagine' | 'endure' | 'renew' | 'hear' | 'ameliorate' | 'i' | 'repose' | 'interrupt' | 'allow' | 'name' | 'alter' | 'perceive' | 'commence' | 'be' | 'record' | 'be' | 'i' | 'make' | 'doubtless' | 'i' | 'read' | 'see' | 'be' | 'illustrate' | 'refrain' | 'bear' | 'live' | 'seek' | 'begin' | 'conceal' | 'provide' | 'procure' | 'support' | 'earn' | 'support' | 'geneva' | 'unite' | 'approve' | 'love' | 'set' | 'be' | 'yield' | 'shelter' | 'surround' | 'tend' | 'excite' | 'draw' | 'bestow' | 'bring' | 'direct' | 'happiness' | 'be' | 'have' | 'enter' | 'act' | 'milan' | 'set' | 'behold' | 'nurse' | 'obtain' | 'shed' | 'yield' | 'be' | 'keep' | 'have' | 'protect' | 'love' | 'body' | 'forth' | 'be' | 'say' | 'divine' | 'learn' | 'rapture' | 'remember' | 'avoid' | 'attach' | 'write' | 'make' | 'act' | 'enter' | 'redeem' | 'have' | 'rule' | 'learn' | 'learn' | 'i' | 'learn' | 'speak' | 'become' | 'bless' | 'animate' | 'soften' | 'attract' | 'have' | 'subdue' | 'aught' | 'ill' | 'have' | 'account' | 'myself' | 'remain' | 'find' | 'demonstrate' | 'dawn' | 'waste' | 'explain' | 'certainty' | 'have' | 'have' | 'read' | 'procure' | 'penetrate' | 'have' | 'dissect' | 'anatomize' | 'give' | 'speak' | 'keep' | 'i' | 'i' | 'appear' | 'arise' | 'struggle' | 'attend' | 'banish' | 'till' | 'thin' | 'i' | 'pursue' | 'be' | 'step' | 'avert' | 'envelop' | 'be' | 'associate' | 'become' | 'be' | 'arrive' | 'elizabeth' | 'persuade' | 'refrain' | 'control' | 'desert' | 'be' | 'supply' | 'quit' | 'i' | 'endeavour' | 'resign' | 'indulge' | 'i' | 'describe' | 'persuade' | 'have' | 'have' | 'be' | 'be' | 'i' | 'feel' | 'be' | 'perform' | 'continue' | 'learn' | 'think' | 'sacrilege' | 'leave' | 'rush' | 'sorrow' | 'quit' | 'see' | 'strove' | 'act' | 'call' | 'make' | 'forget' | 'persuade' | 'permit' | 'accompany' | 'become' | 'be' | 'tear' | 'say' | 'convey' | 'bless' | 'press' | 'renew' | 'write' | 'bestow' | 'i' | 'convey' | 'bestow' | 'form' | 'be' | 'i' | 'remain' | 'enter' | 'take' | 'repent' | 'ingolstadt' | 'spend' | 'mxperiod' | 'have' | 'spent' | 'inform' | 'find' | 'begin' | 'procure' | 'commence' | 'lecture' | 'recur' | 'prepossess' | 'be' | 'limit' | 'exchange' | 'consent' | 'go' | 'hear' | 'forget' | 'be' | 'dabble' | 'pore' | 'show' | 'command' | 'mimic' | 'mock' | 'let' | 'say' | 'destroy' | 'i' | 'pioneer' | 'thence' | 'produce' | 'return' | 'devote' | 'possess' | 'i' | 'give' | 'have' | 'i' | 'procure' | 'i' | 'have' | 'be' | 'make' | 'become' | 'advise' | 'apply' | 'i' | 'procure' | 'have' | 'derange' | 'be' | 'geneva' | 'make' | 'conceive' | 'know' | 'arrive' | 'i' | 'restrain' | 'apply' | 'physiology' | 'have' | 'examine' | 'have' | 'observe' | 'be' | 'remember' | 'have' | 'have' | 'examine' | 'spend' | 'succeed' | 'be' | 'discover' | 'remember' | 'i' | 'have' | 'delight' | 'arrive' | 'i' | 'direct' | 'point' | 'exhibit' | 'be' | 'be' | 'perceive' | 'lead' | 'be' | 'become' | 'allow' | 'employ' | 'prepare' | 'attempt' | 'permit' | 'doubt' | 'give' | 'succeed' | 'be' | 'be' | 'hope' | 'lay' | 'i' | 'consider' | 'make' | 'say' | 'conceive' | 'ideal' | 'break' | 'bless' | 'owe' | 'claim' | 'deserve' | 'bestow' | 'i' | 'realize' | 'conceive' | 'animate' | 'have' | 'feel' | 'operate' | 'i' | 'neglect' | 'forget' | 'i' | 'think' | 'hear' | 'pardon' | 'i' | 'be' | 'tear' | 'procrastinate' | 'be' | 'i' | 'be' | 'be' | 'preserve' | 'allow' | 'disturb' | 'i' | 'think' | 'weaken' | 'destroy' | 'mix' | 'say' | 'interfere' | 'have' | 'have' | 'remind' | 'proceed' | 'watch' | 'i' | 'toil' | 'end' | 'drive' | 'i' | 'be' | 'agony' | 'i' | 'infuse' | 'i' | 'describe' | 'form' | 'endure' | 'i' | 'compose' | 'sleep' | 'seek' | 'change' | 'i' | 'be' | 'have' | 'hear' | 'detain' | 'announce' | 'support' | 'be' | 'have' | 'i' | 'avoid' | 'present' | 'dare' | 'hurry' | 'ease' | 'look' | 'i' | 'see' | 'be' | 'equal' | 'come' | 'ingolstadt' | 'believe' | 'persuade' | 'undertake' | 'see' | 'tell' | 'lecture' | 'endure' | 'think' | 'allude' | 'shiver' | 'be' | 'behold' | 'see' | 'remain' | 'i' | 'i' | 'do' | 'stand' | 'believe' | 'have' | 'clerval' | 'contain' | 'i' | 'remain' | 'joy' | 'account' | 'laugh' | 'do' | 'ask' | 'tell' | 'save' | 'save' | 'i' | 'have' | 'bitterness' | 'recover' | 'make' | 'have' | 'doubt' | 'towards' | 'have' | 'doubtless' | 'be' | 'i' | 'repay' | 'i' | 'forgive' | 'repay' | 'discompose' | 'speak' | 'i' | 'be' | 'allude' | 'think' | 'compose' | 'mention' | 'be' | 'suppose' | 'fly' | 'be' | 'see' | 'reassure' | 'write' | 'hold' | 'calm' | 'bring' | 'ingolstadt' | 'perform' | 'myself' | 'guess' | 'i' | 'confirm' | 'get' | 'return' | 'find' | 'see' | 'be' | 'cloud' | 'be' | 'remark' | 'be' | 'enter' | 'become' | 'enter' | 'i' | 'amuse' | 'i' | 'do' | 'remember' | 'i' | 'relate' | 'endure' | 'allow' | 'live' | 'mean' | 'include' | 'remember' | 'i' | 'dissipate' | 'give' | 'mean' | 'see' | 'imitate' | 'notice' | 'think' | 'chastise' | 'i' | 'restore' | 'forgive' | 'i' | 'remind' | 'say' | 'see' | 'be' | 'be' | 'be' | 'ten' | 'henry' | 'take' | 'write' | 'write' | 'relieve' | 'feel' | 'leave' | 'introduce' | 'i' | 'ill' | 'renew' | 'modesty' | 'i' | 'do' | 'please' | 'i' | 'be' | 'i' | 'exhibit' | 'speak' | 'i' | 'draw' | 'persuade' | 'confide' | 'impress' | 'be' | 'be' | 'mxperiod' | 'open' | 'pursue' | 'enter' | 'fly' | 'attempt' | 'contemplate' | 'understand' | 'repaid' | 'consist' | 'geneva' | 'i' | 'see' | 'leave' | 'had' | 'fix' | 'bid' | 'love' | 'love' | 'elevate' | 'throw' | 'amuse' | 'drew' | 'fix' | 'i' | 'write' | 'expect' | 'be' | 'do' | 'be' | 'behold' | 'i' | 'relate' | 'have' | 'i' | 'prepare' | 'seek' | 'convey' | 'attempt' | 'console' | 'relate' | 'walk' | 'be' | 'return' | 'hide' | 'return' | 'search' | 'have' | 'rest' | 'elizabeth' | 'see' | 'prevent' | 'weep' | 'sigh' | 'let' | 'wear' | 'doubtless' | 'discover' | 'restore' | 'console' | 'be' | 'return' | 'be' | 'live' | 'witness' | 'heal' | 'observe' | 'weep' | 'be' | 'take' | 'offer' | 'intend' | 'do' | 'go' | 'geneva' | 'say' | 'express' | 'dear' | 'weep' | 'die' | 'feel' | 'destroy' | 'be' | 'reserve' | 'i' | 'hurry' | 'console' | 'sympathise' | 'sustain' | 'be' | 'have' | 'be' | 'i' | 'define' | 'i' | 'i' | 'welcome' | 'prognosticate' | 'mock' | 'render' | 'tell' | 'see' | 'become' | 'conceive' | 'endure' | 'pass' | 'rest' | 'i' | 'visit' | 'pass' | 'cross' | 'arrive' | 'approach' | 'observe' | 'i' | 'be' | 'there' | 'be' | 'lean' | 'have' | 'doubt' | 'have' | 'forget' | 'conceive' | 'feel' | 'destroy' | 'i' | 'discover' | 'be' | 'tell' | 'give' | 'have' | 'elude' | 'persuade' | 'commence' | 'be' | 'arrest' | 'remain' | 'disturb' | 'attend' | 'i' | 'welcome' | 'have' | 'alleviate' | 'i' | 'induce' | 'cease' | 'i' | 'calm' | 'be' | 'attempt' | 'pursue' | 'try' | 'overtake' | 'confine' | 'know' | 'believe' | 'be' | 'become' | 'add' | 'be' | 'hear' | 'examine' | 'be' | 'shake' | 'i' | 'welcome' | 'have' | 'suffer' | 'be' | 'i' | 'be' | 'be' | 'convict' | 'announce' | 'be' | 'believe' | 'find' | 'justify' | 'be' | 'be' | 'i' | 'know' | 'i' | 'i' | 'be' | 'be' | 'let' | 'be' | 'see' | 'dry' | 'prevent' | 'attend' | 'be' | 'cause' | 'make' | 'render' | 'be' | 'i' | 'i' | 'justine' | 'have' | 'have' | 'have' | 'have' | 'dim' | 'attest' | 'have' | 'plead' | 'pretend' | 'acquit' | 'i' | 'i' | 'incline' | 'remain' | 'call' | 'endeavour' | 'find' | 'give' | 'conjecture' | 'have' | 'i' | 'have' | 'destroy' | 'have' | 'have' | 'overweigh' | 'be' | 'pledge' | 'come' | 'elizabeth' | 'fail' | 'address' | 'have' | 'be' | 'come' | 'perish' | 'be' | 'speak' | 'say' | 'hesitate' | 'say' | 'have' | 'i' | 'answer' | 'sustain' | 'i' | 'forgo' | 'i' | 'ask' | 'pretend' | 'describe' | 'bestow' | 'convey' | 'condemn' | 'be' | 'mean' | 'believe' | 'be' | 'return' | 'have' | 'ten' | 'suffer' | 'escape' | 'i' | 'believe' | 'put' | 'betray' | 'see' | 'go' | 'decide' | 'go' | 'accompany' | 'go' | 'refuse' | 'rob' | 'crush' | 'condemn' | 'kneel' | 'be' | 'shake' | 'obtain' | 'think' | 'support' | 'ignominy' | 'i' | 'do' | 'i' | 'believe' | 'have' | 'see' | 'be' | 'suffer' | 'confess' | 'mourn' | 'do' | 'fear' | 'proclaim' | 'i' | 'prove' | 'melt' | 'die' | 'perish' | 'survive' | 'i' | 'fear' | 'die' | 'endure' | 'think' | 'submit' | 'conceal' | 'pass' | 'ground' | 'visit' | 'i' | 'believe' | 'answer' | 'i' | 'such' | 'die' | 'dear' | 'comfort' | 'tarnish' | 'extinguish' | 'tear' | 'die' | 'i' | 'live' | 'heaven' | 'be' | 'suffer' | 'be' | 'make' | 'move' | 'proclaim' | 'contemplate' | 'raise' | 'be' | 'spend' | 'fill' | 'spend' | 'shed' | 'be' | 'remove' | 'sleep' | 'put' | 'make' | 'look' | 'gather' | 'describe' | 'inspire' | 'dispel' | 'do' | 'think' | 'suffer' | 'love' | 'refrain' | 'have' | 'hide' | 'console' | 'answer' | 'hide' | 'pursue' | 'i' | 'plunge' | 'close' | 'i' | 'revisit' | 'afford' | 'be' | 'remorse' | 'perpetrate' | 'commit' | 'efface' | 'be' | 'i' | 'extinguish' | 'revenge' | 'have' | 'i' | 'i' | 'see' | 'wreak' | 'avenge' | 'pay' | 'innocence' | 'wean' | 'see' | 'be' | 'have' | 'have' | 'have' | 'love' | 'consent' | 'have' | 'remain' | 'alas' | 'look' | 'assure' | 'plunge' | 'suffer' | 'change' | 'calm' | 'remember' | 'reap' | 'disturb' | 'chase' | 'rob' | 'redeem' | 'penetrate' | 'gaze' | 'die' | 'cope' | 'seek' | 'forget' | 'receive' | 'fear' | 'bend' | 'ascend' | 'weep' | 'act' | 'forget' | 'i' | 'i' | 'barricade' | 'remove' | 'rest' | 'bade' | 'be' | 'i' | 'penetrate' | 'seek' | 'ascend' | 'soar' | 'forget' | 'go' | 'destroy' | 'surmount' | 'be' | 'draw' | 'add' | 'hunger' | 'thirst' | 'be' | 'convey' | 'weep' | 'embrace' | 'cast' | 'be' | 'sorrow' | 'be' | 'endure' | 'rest' | 'allow' | 'take' | 'exceed' | 'i' | 'seize' | 'i' | 'wait' | 'overwhelm' | 'dare' | 'approach' | 'stay' | 'trample' | 'dust' | 'i' | 'be' | 'spurn' | 'kill' | 'do' | 'do' | 'mine' | 'towards' | 'comply' | 'leave' | 'glut' | 'be' | 'come' | 'extinguish' | 'i' | 'arm' | 'be' | 'hear' | 'increase' | 'be' | 'defend' | 'remember' | 'thou' | 'thine' | 'be' | 'set' | 'thee' | 'i' | 'be' | 'perform' | 'be' | 'remember' | 'be' | 'make' | 'be' | 'hear' | 'be' | 'let' | 'try' | 'fall' | 'i' | 'move' | 'turn' | 'believe' | 'i' | 'hate' | 'fear' | 'grudge' | 'do' | 'i' | 'hate' | 'keep' | 'recompense' | 'deliver' | 'make' | 'be' | 'let' | 'be' | 'disdain' | 'listen' | 'abandon' | 'commiserate' | 'judge' | 'speak' | 'listen' | 'destroy' | 'praise' | 'spare' | 'listen' | 'destroy' | 'call' | 'reflect' | 'be' | 'be' | 'consider' | 'relieve' | 'grant' | 'hear' | 'hide' | 'illuminate' | 'have' | 'decide' | 'lead' | 'become' | 'answer' | 'i' | 'listen' | 'be' | 'i' | 'i' | 'render' | 'comply' | 'descend' | 'listen' | 'distinguish' | 'shut' | 'wander' | 'either' | 'receive' | 'i' | 'i' | 'secure' | 'distinguish' | 'invade' | 'wept' | 'beheld' | '[' | 'distinguish' | 'distinguish' | 'i' | 'observe' | 'perceive' | 'imitate' | 'express' | 'become' | 'perceive' | 'i' | 'produce' | 'be' | 'burn' | 'dry' | 'have' | 'be' | 'visit' | 'dress' | 'assuage' | 'quit' | 'seek' | 'be' | 'reproduce' | 'i' | 'relinquish' | 'supply' | 'obtain' | 'penetrate' | 'divine' | 'recommence' | 'enter' | 'have' | 'view' | 'remain' | 'be' | 'move' | 'pass' | 'trust' | 'drink' | 'reside' | 'occur' | 'alter' | 'remove' | 'procure' | 'be' | 'penetrate' | 'play' | 'produce' | 'i' | 'bear' | 'relieve' | 'eat' | 'exceed' | 'find' | 'put' | 'understand' | 'play' | 'utter' | 'i' | 'rest' | 'sleep' | 'join' | 'i' | 'hereafter' | 'think' | 'pursue' | 'remain' | 'discover' | 'be' | 'exceed' | 'weep' | 'i' | 'be' | 'warm' | 'imply' | 'express' | 'solve' | 'procure' | 'support' | 'steal' | 'assist' | 'go' | 'become' | 'discover' | 'unravel' | 'describe' | 'pronounce' | 'i' | 'understand' | 'apply' | 'enter' | 'rude' | 'perceive' | 'encourage' | 'i' | 'cast' | 'talk' | 'wipe' | 'have' | 'mention' | 'return' | 'do' | 'comprehend' | 'understand' | 'follow' | 'discover' | 'make' | 'enable' | 'make' | 'overlook' | 'believe' | 'rain' | 'rest' | 'understand' | 'discover' | 'know' | 'be' | 'restore' | 'be' | 'be' | 'first' | 'win' | 'apply' | 'have' | 'bud' | 'short' | 'i' | 'relate' | 'bloom' | 'have' | 'felix' | 'distinguish' | 'appear' | 'understand' | 'dismount' | 'have' | 'have' | 'comprehend' | 'mean' | 'comprehend' | 'learn' | 'make' | 'i' | 'understand' | 'agatha' | 'explain' | 'safie' | 'wish' | 'express' | 'i' | 'comprehend' | 'master' | 'i' | 'boast' | 'imitate' | 'have' | 'be' | 'be' | 'befall' | 'be' | 'conceive' | 'go' | 'murder' | 'i' | 'turn' | 'be' | 'waste' | 'subsist' | 'describe' | 'i' | 'dispel' | 'shake' | 'overcome' | 'understand' | 'be' | 'explain' | 'return' | 'call' | 'fail' | 'impress' | 'afford' | 'learn' | 'join' | 'deliver' | 'gain' | 'kindle' | 'visit' | 'help' | 'reward' | 'secure' | 'be' | 'accept' | 'express' | 'procure' | 'give' | 'prove' | 'i' | 'have' | 'repeat' | 'safie' | 'aspire' | 'asia' | 'occupy' | 'take' | 'leghorn' | 'wait' | 'remain' | 'be' | 'felix' | 'safie' | 'take' | 'be' | 'appear' | 'choose' | 'betray' | 'be' | 'prolong' | 'be' | 'take' | 'detect' | 'punish' | 'find' | 'return' | 'italy' | 'remain' | 'paris' | 'free' | 'succeed' | 'felix' | 'felix' | 'aid' | 'have' | 'think' | 'prepare' | 'return' | 'expostulate' | 'believe' | 'be' | 'convey' | 'constantinople' | 'sail' | 'leave' | 'follow' | 'become' | 'pursue' | 'arrive' | 'admire' | 'deprecate' | 'become' | 'omit' | 'i' | 'whilst' | 'describe' | 'ecstasy' | 'sunk' | 'fill' | 'pretend' | 'enter' | 'i' | 'i' | 'lament' | 'i' | 'come' | 'solve' | 'admire' | 'love' | 'pleasure' | 'pain' | 'admire' | 'romulus' | 'theseus' | 'take' | 'have' | 'converse' | 'acquire' | 'decipher' | 'i' | 'study' | 'recollect' | 'form' | 'admire' | 'encourage' | 'become' | 'compassionate' | 'overlook' | 'fit' | 'decide' | 'fail' | 'commence' | 'have' | 'agatha' | 'appear' | 'crush' | 'fortify' | 'undergo' | 'ramble' | 'fancy' | 'heed' | 'claim' | 'be' | 'see' | 'think' | 'turn' | 'believe' | 'enter' | 'be' | 'discover' | 'i' | 'gain' | 'be' | 'play' | 'decide' | 'realize' | 'execute' | 'i' | 'conceal' | 'pardon' | 'oblige' | 'allow' | 'remain' | 'try' | 'relieve' | 'i' | 'find' | 'procure' | 'do' | 'i' | 'i' | 'commence' | 'i' | 'claim' | 'change' | 'know' | 'i' | 'do' | 'despair' | 'be' | 'be' | 'despair' | 'see' | 'i' | 'undertake' | 'i' | 'injure' | 'overcome' | 'confide' | 'be' | 'i' | 'judge' | 'afford' | 'be' | 'accept' | 'i' | 'i' | 'be' | 'drive' | 'desperation' | 'instigate' | 'virtue' | 'feel' | 'i' | 'i' | 'be' | 'i' | 'rob' | 'bestow' | 'i' | 'answer' | 'lose' | 'protect' | 'do' | 'describe' | 'attend' | 'struck' | 'have' | 'i' | 'i' | 'extinguish' | 'tear' | 'have' | 'enjoyed' | 'endure' | 'pity' | 'assist' | 'i' | 'feel' | 'i' | 'return' | 'devote' | 'reflection' | 'help' | 'have' | 'have' | 'have' | 'believe' | 'be' | 'return' | 'allow' | 'be' | 'i' | 'appear' | 'i' | 'i' | 'describe' | 'understand' | 'discover' | 'do' | 'consider' | 'be' | 'pay' | 'lose' | 'wish' | 'take' | 'take' | 'consider' | 'inhabit' | 'recover' | 'take' | 'let' | 'fly' | 'i' | 'control' | 'be' | 'injure' | 'commence' | 'save' | 'i' | 'bend' | 'fly' | 'be' | 'i' | 'apply' | 'proceed' | 'direct' | 'i' | 'travel' | 'reach' | 'know' | 'pass' | 'i' | 'i' | 'cast' | 'seek' | 'gain' | 'i' | 'gall' | 'bitterness' | 'i' | 'feel' | 'extract' | 'look' | 'i' | 'continue' | 'be' | 'be' | 'i' | 'i' | 'wind' | 'pursue' | 'conceal' | 'i' | 'shore' | 'restore' | 'draw' | 'hellish' | 'cure' | 'i' | 'alone' | 'be' | 'feel' | 'i' | 'meditate' | 'apply' | 'i' | 'enjoy' | 'have' | 'seize' | 'educate' | 'be' | 'towards' | 'i' | 'intend' | 'hurt' | 'listen' | 'let' | 'go' | 'eat' | 'tear' | 'let' | 'go' | 'i' | 'tell' | 'see' | 'come' | 'let' | 'go' | 'punish' | 'keep' | 'be' | 'silence' | 'i' | 'i' | 'create' | 'carry' | 'torment' | 'destroy' | 'bestow' | 'wonder' | 'wonder' | 'rush' | 'destroy' | 'be' | 'i' | 'awake' | 'give' | 'obtain' | 'awake' | 'see' | 'curse' | 'denounce' | 'i' | 'suffer' | 'give' | 'be' | 'work' | 'see' | 'quit' | 'gratify' | 'comply' | 'associate' | 'deny' | 'be' | 'create' | 'arrange' | 'understand' | 'create' | 'live' | 'do' | 'refuse' | 'concede' | 'suppress' | 'i' | 'refuse' | 'extort' | 'render' | 'make' | 'i' | 'desolate' | 'torture' | 'consent' | 'i' | 'tear' | 'remember' | 'tell' | 'pity' | 'call' | 'murder' | 'precipitate' | 'destroy' | 'i' | 'condemns' | 'let' | 'live' | 'bestow' | 'be' | 'be' | 'revenge' | 'inspire' | 'cause' | 'have' | 'work' | 'curse' | 'behold' | 'reflect' | 'return' | 'make' | 'be' | 'receive' | 'content' | 'be' | 'be' | 'be' | 'be' | 'make' | 'let' | 'feel' | 'let' | 'see' | 'do' | 'deny' | 'be' | 'i' | 'bestow' | 'see' | 'go' | 'destroy' | 'glut' | 'be' | 'be' | 'make' | 'shine' | 'ripen' | 'feel' | 'deny' | 'let' | 'seize' | 'promise' | 'fly' | 'dwell' | 'be' | 'return' | 'seek' | 'meet' | 'be' | 'have' | 'be' | 'cease' | 'argue' | 'consent' | 'harden' | 'i' | 'quit' | 'have' | 'meet' | 'flow' | 'i' | 'curse' | 'i' | 'console' | 'i' | 'stifle' | 'i' | 'sympathize' | 'withhold' | 'bestow' | 'be' | 'make' | 'distrust' | 'even' | 'be' | 'increase' | 'be' | 'be' | 'destroy' | 'i' | 'become' | 'be' | 'arise' | 'i' | 'feel' | 'reflect' | 'exist' | 'hide' | 'be' | 'cope' | 'comply' | 'quit' | 'deliver' | 'accompany' | 'behold' | 'depart' | 'commence' | 'i' | 'watch' | 'fear' | 'appear' | 'descend' | 'i' | 'hasten' | 'be' | 'slow' | 'i' | 'mock' | 'let' | 'become' | 'leave' | 'describe' | 'consume' | 'geneva' | 'give' | 'i' | 'claim' | 'i' | 'save' | 'dedicate' | 'geneva' | 'i' | 'collect' | 'recommence' | 'i' | 'overcome' | 'i' | 'compose' | 'profound' | 'visit' | 'i' | 'appear' | 'return' | 'restore' | 'i' | 'remark' | 'be' | 'avoid' | 'avow' | 'reserve' | 'be' | 'be' | 'have' | 'regard' | 'become' | 'have' | 'love' | 'elizabeth' | 'occasion' | 'feel' | 'i' | 'i' | 'be' | 'cast' | 'have' | 'dissipate' | 'tell' | 'suppose' | 'have' | 'do' | 'suppose' | 'dictate' | 'cause' | 'interpret' | 'answer' | 'arrive' | 'break' | 'impend' | 'i' | 'perform' | 'let' | 'enjoy' | 'england' | 'i' | 'occur' | 'disclose' | 'thrill' | 'lose' | 'possess' | 'absent' | 'be' | 'be' | 'depart' | 'meanwhile' | 'destroy' | 'visit' | 'comply' | 'find' | 'ensure' | 'join' | 'be' | 'i' | 'be' | 'stand' | 'remind' | 'contemplate' | 'england' | 'take' | 'delay' | 'claim' | 'forget' | 'leave' | 'be' | 'follow' | 'go' | 'accompany' | 'england' | 'happen' | 'be' | 'follow' | 'exempt' | 'bid' | 'hasten' | 'convey' | 'be' | 'go' | 'think' | 'occupy' | 'recommence' | 'live' | 'be' | 'enjoyment' | 'descend' | 'rotterdam' | 'take' | 'drink' | 'i' | 'describe' | 'cause' | 'be' | 'be' | 'record' | 'dwell' | 'look' | 'satisfy' | 'exist' | 'pardon' | 'proceed' | 'post' | 'aid' | 'england' | 'remain' | 'have' | 'give' | 'fill' | 'cheat' | 'reflect' | 'gain' | 'visit' | 'further' | 'i' | 'conceal' | 'debar' | 'accompany' | 'remain' | 'collect' | 'quiver' | 'palpitate' | 'induce' | 'prolong' | 'accept' | 'view' | 'commence' | 'intend' | 'follow' | 'edinburgh' | 'visit' | 'arrive' | 'finish' | 'oxford' | 'join' | 'be' | 'have' | 'trace' | 'obtain' | 'i' | 'i' | 'survive' | 'exhibit' | 'i' | 'cease' | 'be' | 'myself' | 'identify' | 'relate' | 'contemplate' | 'shake' | 'look' | 'matlock' | 'quit' | 'cheat' | 'have' | 'have' | 'pass' | 'regret' | 'sink' | 'quit' | 'travel' | 'i' | 'remain' | 'wreak' | 'have' | 'read' | 'ascertain' | 'expedite' | 'quit' | 'protect' | 'have' | 'arrive' | 'perth' | 'make' | 'do' | 'enjoy' | 'let' | 'be' | 'be' | 'interfere' | 'leave' | 'peace' | 'solitude' | 'be' | 'dissuade' | 'remonstrate' | 'write' | 'i' | 'be' | 'know' | 'return' | 'feel' | 'do' | 'visit' | 'finish' | 'doubt' | 'discover' | 'have' | 'receive' | 'be' | 'be' | 'doubtless' | 'have' | 'blunt' | 'labour' | 'listen' | 'i' | 'prevail' | 'enter' | 'complete' | 'meet' | 'raise' | 'encounter' | 'behold' | 'i' | 'wander' | 'come' | 'claim' | 'leave' | 'hasten' | 'consider' | 'form' | 'become' | 'quit' | 'hide' | 'become' | 'refuse' | 'comply' | 'hate' | 'conceive' | 'turn' | 'quit' | 'be' | 'leave' | 'inhabit' | 'be' | 'be' | 'make' | 'inflict' | 'i' | 'think' | 'curse' | 'buy' | 'mark' | 'i' | 'pieces' | 'destroy' | 'resume' | 'dissipate' | 'relieve' | 'open' | 'i' | 'rouse' | 'vain' | 'fly' | 'intend' | 'do' | 'dare' | 'break' | 'i' | 'do' | 'dare' | 'destroy' | 'break' | 'i' | 'create' | 'slave' | 'i' | 'remember' | 'make' | 'be' | 'move' | 'do' | 'i' | 'exasperate' | 'find' | 'have' | 'be' | 'hate' | 'pass' | 'fall' | 'ravish' | 'be' | 'blast' | 'die' | 'curse' | 'watch' | 'repent' | 'do' | 'poison' | 'i' | 'bend' | 'leave' | 'i' | 'remember' | 'i' | 'be' | 'be' | 'have' | 'pursue' | 'precipitate' | 'torment' | 'depart' | 'think' | 'be' | 'i' | 'be' | 'die' | 'move' | 'fear' | 'find' | 'fall' | 'be' | 'prove' | 'i' | 'pass' | 'be' | 'see' | 'i' | 'reflect' | 'join' | 'complete' | 'delay' | 'london' | 'be' | 'bestow' | 'spare' | 'leave' | 'meet' | 'proceed' | 'quit' | 'perform' | 'reflect' | 'i' | 'pack' | 'enter' | 'handle' | 'collect' | 'leave' | 'excite' | 'i' | 'put' | 'throw' | 'be' | 'be' | 'reflect' | 'avert' | 'i' | 'create' | 'be' | 'i' | 'lead' | 'i' | 'i' | 'cast' | 'prolong' | 'clouds' | 'i' | 'i' | 'know' | 'have' | 'change' | 'be' | 'drive' | 'i' | 'be' | 'feel' | 'be' | 'i' | 'be' | 'be' | 'satisfy' | 'reflect' | 'hold' | 'i' | 'sail' | 'most' | 'have' | 'i' | 'be' | 'tell' | 'inform' | 'know' | 'prove' | 'be' | 'i' | 'rude' | 'answer' | 'receive' | 'i' | 'know' | 'be' | 'hate' | 'i' | 'increase' | 'i' | 'come' | 'sir' | 'follow' | 'mrxperiod' | 'give' | 'give' | 'give' | 'be' | 'sink' | 'rouse' | 'be' | 'i' | 'expect' | 'overwhelm' | 'extinguish' | 'pause' | 'recall' | 'relate' | 'land' | 'assist' | 'cold' | 'restore' | 'be' | 'lean' | 'judge' | 'daniel' | 'return' | 'appear' | 'know' | 'have' | 'be' | 'be' | 'produce' | 'help' | 'i' | 'describe' | 'i' | 'reflect' | 'i' | 'have' | 'support' | 'i' | 'assist' | 'kirwin' | 'affright' | 'die' | 'sink' | 'rest' | 'resist' | 'live' | 'see' | 'i' | 'be' | 'feel' | 'go' | 'nurse' | 'get' | 'utter' | 'reflect' | 'be' | 'gain' | 'be' | 'see' | 'relieve' | 'wish' | 'be' | 'see' | 'remain' | 'declare' | 'mine' | 'i' | 'make' | 'be' | 'i' | 'quit' | 'be' | 'free' | 'be' | 'be' | 'possess' | 'i' | 'say' | 'discover' | 'send' | 'be' | 'i' | 'geneva' | 'tell' | 'lament' | 'visit' | 'i' | 'mock' | 'taunt' | 'comply' | 'take' | 'see' | 'let' | 'enter' | 'help' | 'have' | 'have' | 'pleasure' | 'hasten' | 'have' | 'i' | 'raise' | 'be' | 'seek' | 'pursue' | 'be' | 'i' | 'live' | 'fulfil' | 'have' | 'converse' | 'ensure' | 'be' | 'i' | 'dissipate' | 'preserve' | 'fulfil' | 'extinguish' | 'relieve' | 'sink' | 'rest' | 'i' | 'bury' | 'travel' | 'breathe' | 'return' | 'participate' | 'awaken' | 'visit' | 'see' | 'put' | 'restrain' | 'return' | 'geneva' | 'watch' | 'lie' | 'blast' | 'delay' | 'sustain' | 'yield' | 'see' | 'mind' | 'pursue' | 'gain' | 'afford' | 'respite' | 'free' | 'paris' | 'repose' | 'continue' | 'know' | 'remedy' | 'seek' | 'shed' | 'revel' | 'abhor' | 'hunt' | 'know' | 'avoid' | 'strove' | 'banish' | 'answer' | 'prove' | 'know' | 'be' | 'i' | 'heard' | 'make' | 'desire' | 'consider' | 'be' | 'have' | 'bring' | 'disclose' | 'fill' | 'make' | 'have' | 'have' | 'burst' | 'offer' | 'make' | 'i' | 'bear' | 'i' | 'have' | 'sacrifice' | 'alter' | 'obliterate' | 'speak' | 'declare' | 'switzerland' | 'i' | 'receive' | 'hope' | 'see' | 'have' | 'see' | 'i' | 'see' | 'find' | 'miserable' | 'disturb' | 'say' | 'elizabeth' | 'have' | 'explain' | 'say' | 'dread' | 'be' | 'express' | 'begin' | 'know' | 'look' | 'take' | 'such' | 'be' | 'tell' | 'answer' | 'love' | 'i' | 'solitude' | 'help' | 'regret' | 'believe' | 'fulfil' | 'render' | 'think' | 'borne' | 'stifle' | 'restore' | 'increase' | 'be' | 'be' | 'be' | 'have' | 'interrupt' | 'do' | 'let' | 'do' | 'answer' | 'give' | 'send' | 'need' | 'be' | 'destroy' | 'tear' | 'console' | 'consummate' | 'be' | 'take' | 'be' | 'be' | 'i' | 'be' | 'be' | 'pursue' | 'whisper' | 'drive' | 'die' | 'make' | 'hasten' | 'arrive' | 'suspect' | 'find' | 'be' | 'consider' | 'peace' | 'show' | 'conduce' | 'retard' | 'elizabeth' | 'chase' | 'consecrate' | 'chill' | 'wonder' | 'confide' | 'take' | 'be' | 'mention' | 'allude' | 'comply' | 'geneva' | 'endure' | 'i' | 'elizabeth' | 'draw' | 'soothe' | 'inspire' | 'remonstrate' | 'endeavour' | 'inspire' | 'be' | 'look' | 'let' | 'be' | 'i' | 'consecrate' | 'speak' | 'let' | 'transfer' | 'be' | 'have' | 'be' | 'replace' | 'wonder' | 'regard' | 'be' | 'regard' | 'consent' | 'take' | 'put' | 'be' | 'have' | 'dissipate' | 'serve' | 'proceed' | 'villa' | 'spend' | 'defend' | 'attack' | 'i' | 'prevent' | 'be' | 'disturb' | 'i' | 'prevent' | 'calm' | 'fulfil' | 'reveal' | 'commence' | 'emulate' | 'quit' | 'wish' | 'enslave' | 'i' | 'endure' | 'endeavour' | 'let' | 'taste' | 'enjoy' | 'be' | 'distress' | 'be' | 'depend' | 'listen' | 'observe' | 'rise' | 'render' | 'distinguish' | 'divert' | 'clasp' | 'descend' | 'rise' | 'sell' | 'shrink' | 'be' | 'be' | 'retire' | 'join' | 'i' | 'afford' | 'conjecture' | 'prevent' | 'feel' | 'i' | 'expire' | 'relate' | 'i' | 'behold' | 'live' | 'i' | 'i' | 'have' | 'i' | 'be' | 'issue' | 'look' | 'i' | 'illuminate' | 'be' | 'jeer' | 'i' | 'have' | 'search' | 'accompany' | 'seek' | 'theirs' | 'i' | 'be' | 'be' | 'return' | 'geneva' | 'be' | 'return' | 'hope' | 'arrive' | 'row' | 'shine' | 'lower' | 'appear' | 'i' | 'i' | 'relate' | 'be' | 'know' | 'i' | 'tell' | 'be' | 'waste' | 'live' | 'rise' | 'i' | 'revenge' | 'reflect' | 'have' | 'wreak' | 'confine' | 'i' | 'reflect' | 'make' | 'exert' | 'be' | 'be' | 'discover' | 'make' | 'fear' | 'be' | 'pursue' | 'i' | 'exert' | 'revolt' | 'act' | 'afford' | 'have' | 'put' | 'defiance' | 'follow' | 'traverse' | 'intrude' | 'conjecture' | 'inhabit' | 'i' | 'doubt' | 'be' | 'do' | 'intend' | 'pursue' | 'i' | 'exert' | 'seize' | 'be' | 'suffer' | 'be' | 'prove' | 'make' | 'disappointment' | 'be' | 'say' | 'be' | 'be' | 'i' | 'have' | 'soothe' | 'meditate' | 'revenge' | 'be' | 'have' | 'quit' | 'cease' | 'meet' | 'leave' | 'gain' | 'trace' | 'pursue' | 'have' | 'flit' | 'cast' | 'rage' | 'destroy' | 'i' | 'drag' | 'pursue' | 'i' | 'perish' | 'preserve' | 'execute' | 'i' | 'tread' | 'vanish' | 'conduct' | 'let' | 'let' | 'feel' | 'i' | 'have' | 'live' | 'i' | 'i' | 'i' | 'amidst' | 'i' | 'despair' | 'die' | 'guide' | 'understand' | 'feel' | 'endure' | 'extricate' | 'doubt' | 'aid' | 'bedim' | 'i' | 'i' | 'taste' | 'repose' | 'rapture' | 'retain' | 'fulfil' | 'have' | 'come' | 'enjoy' | 'i' | 'i' | 'persuade' | 'know' | 'follow' | 'i' | 'feel' | 'i' | 'find' | 'be' | 'come' | 'wrestle' | 'endure' | 'arrive' | 'i' | 'torture' | 'i' | 'give' | 'i' | 'i' | 'join' | 'support' | 'seize' | 'seek' | 'be' | 'wrap' | 'provide' | 'enter' | 'satisfy' | 'fail' | 'support' | 'i' | 'traverse' | 'be' | 'weep' | 'meet' | 'grapple' | 'intercept' | 'reach' | 'draw' | 'be' | 'commence' | 'long' | 'hope' | 'survive' | 'live' | 'be' | 'toil' | 'revenge' | 'i' | 'i' | 'guess' | 'have' | 'support' | 'guess' | 'have' | 'discover' | 'be' | 'uttered' | 'hope' | 'revisit' | 'intercept' | 'i' | 'i' | 'i' | 'sink' | 'construct' | 'move' | 'trust' | 'abandon' | 'induce' | 'grant' | 'pursue' | 'have' | 'allow' | 'i' | 'live' | 'swear' | 'escape' | 'seek' | 'satisfy' | 'dare' | 'ask' | 'undertake' | 'endure' | 'i' | 'appear' | 'conduct' | 'swear' | 'live' | 'triumph' | 'add' | 'hear' | 'call' | 'thrust' | 'hover' | 'direct' | 'do' | 'feel' | 'continue' | 'downcast' | 'change' | 'doubt' | 'gain' | 'frankenstein' | 'learn' | 'seek' | 'increase' | 'see' | 'go' | 'soothe' | 'i' | 'live' | 'know' | 'be' | 'i' | 'move' | 'have' | 'feel' | 'have' | 'throw' | 'be' | 'rank' | 'plunge' | 'omnipotence' | 'i' | 'recollect' | 'recognize' | 'bear' | 'rise' | 'i' | 'lose' | 'sympathize' | 'love' | 'know' | 'lose' | 'reconcile' | 'replace' | 'be' | 'possess' | 'obtain' | 'be' | 'judge' | 'be' | 'be' | 'be' | 'persuade' | 'preserve' | 'i' | 'fulfil' | 'pursue' | 'destroy' | 'be' | 'die' | 'see' | 'i' | 'threaten' | 'crush' | 'be' | 'bestow' | 'desert' | 'reflect' | 'be' | 'hear' | 'await' | 'pass' | 'have' | 'be' | 'be' | 'make' | 'fill' | 'vanish' | 'dread' | 'september' | 'reach' | 'forbear' | 'come' | 'make' | 'refuse' | 'dissipate' | 'be' | 'i' | 'be' | 'continue' | 'lead' | 'have' | 'engage' | 'be' | 'direct' | 'i' | 'i' | 'refuse' | 'have' | 'attend' | 'mean' | 'demand' | 'call' | 'be' | 'brave' | 'overcome' | 'be' | 'brave' | 'be' | 'endure' | 'have' | 'prove' | 'be' | 'be' | 'be' | 'be' | 'withstand' | 'do' | 'return' | 'turn' | 'wonder' | 'reply' | 'i' | 'retire' | 'consider' | 'lead' | 'return' | 'terminate' | 'i' | 'be' | 'endure' | 'september' | 'return' | 'bear' | 'september' | 'england' | 'endeavour' | 'detail' | 'i' | 'despond' | 'september' | 'move' | 'remain' | 'return' | 'england' | 'do' | 'return' | 'withstand' | 'lead' | 'danger' | 'return' | 'do' | 'give' | 'i' | 'endow' | 'speak' | 'leave' | 'live' | 'grieve' | 'be' | 'i' | 'die' | 'be' | 'think' | 'i' | 'find' | 'assure' | 'create' | 'know' | 'end' | 'render' | 'die' | 'undertake' | 'i' | 'ask' | 'renounce' | 'fulfil' | 'england' | 'have' | 'esteem' | 'ask' | 'do' | 'i' | 'be' | 'live' | 'be' | 'be' | 'say' | 'succeed' | 'speak' | 'i' | 'make' | 'i' | 'enable' | 'understand' | 'express' | 'be' | 'there' | 'find' | 'i' | 'i' | 'arise' | 'examine' | 'i' | 'have' | 'detail' | 'be' | 'hung' | 'find' | 'describe' | 'i' | 'behold' | 'recollect' | 'stay' | 'forget' | 'avail' | 'pardon' | 'answer' | 'i' | 'raise' | 'speak' | 'utter' | 'address' | 'have' | 'dream' | 'do' | 'think' | 'agony' | 'remorse' | 'think' | 'be' | 'endure' | 'imagine' | 'switzerland' | 'horror' | 'i' | 'hope' | 'be' | 'i' | 'disobey' | 'riot' | 'adapt' | 'mind' | 'whine' | 'be' | 'become' | 'be' | 'be' | 'i' | 'be' | 'i' | 'suffer' | 'endure' | 'load' | 'meet' | 'love' | 'be' | 'mine' | 'believe' | 'frankenstein' | 'have' | 'sum' | 'satisfy' | 'i' | 'be' | 'hate' | 'execrate' | 'destroy' | 'be' | 'equal' | 'meet' | 'haunt' | 'i' | 'be' | 'consummate' | 'accomplish' | 'be' | 'think' | 'be' | 'perform' | 'i' | 'quit' | 'seek' | 'collect' | 'ashes' | 'afford' | 'create' | 'die' | 'i' | 'feel' | 'be' | 'be' | 'vanish' | 'i' | 'see' | 'feel' | 'pass' | 'i' | 'find' | 'have' | 'die' | 'i' | 'find' | 'behold' | 'be' | 'cause' | 'think' | 'feel' | 'thou' | 'desire' | 'thine' | 'cease' | 'rankle' | 'close' | 'i' | 'die' | 'be' | 'be' | 'i' | 'ascend' | 'exult' | 'fade' | 'be' | 'sleep'\nCC -> 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'i' | 'and' | 'and' | 'but' | 'and' | 'i' | 'and' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'or' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'nor' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'nor' | 'but' | 'and' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'nor' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'nor' | 'but' | 'yet' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'nor' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'neither' | 'nor' | 'nor' | 'and' | 'and' | 'or' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'philosopher' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'nor' | 'or' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'nor' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'i' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'nay' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'listen' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'but' | 'and' | 'and' | 'nor' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'or' | 'and' | 'and' | 'or' | 'and' | 'but' | 'and' | 'or' | 'but' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'or' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | ']' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'i' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'yet' | 'nor' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'neither' | 'nor' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'nor' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'elizabeth' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'but' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'i' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'but' | 'but' | 'and' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'nor' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'or' | 'and' | 'but' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'elizabeth' | 'and' | 'but' | 'and' | 'and' | 'and' | 'nor' | 'nor' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'or' | 'laugh' | 'or' | 'or' | 'or' | 'nought' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'i' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'but' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'or' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'i' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'nor' | 'but' | 'or' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'i' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'or' | 'and' | 'or' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'nor' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'either' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'i' | 'and' | 'and' | 'and' | 'but' | 'nor' | 'nor' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'or' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'i' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'but' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'nor' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'i' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'i' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'nor' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'mighty' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'i' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'nor' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'neither' | 'nor' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'i' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'either' | 'or' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'yet' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'nor' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'or' | 'or' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'i' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'but' | 'obey' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'nor' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'i' | 'and' | 'but' | 'and' | 'i' | 'and' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'but' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'i' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'yet' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'or' | 'and' | 'but' | 'or' | 'elizabeth' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'yet' | 'but' | 'and' | 'or' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'nor' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'nor' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'or' | 'elizabeth' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'or' | 'but' | 'but' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'nor' | 'and' | 'and' | 'and' | 'and' | 'or' | 'listen' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'or' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'i' | 'and' | 'and' | 'nor' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'and' | 'or' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'nor' | 'or' | 'or' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'but' | 'and' | 'or' | 'and' | 'or' | 'or' | 'but' | 'and' | 'but' | 'and' | 'and' | 'and' | 'but' | 'or' | 'but' | 'i' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'yet' | 'and' | 'yet' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'nor' | 'or' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'ye' | 'and' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'but' | 'and' | 'but' | 'and' | 'and' | 'i' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'but' | 'nor' | 'and' | 'and' | 'but' | 'or' | 'and' | 'and' | 'and' | 'nor' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'yet' | 'and' | 'and' | 'yet' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'yet' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'and' | 'and' | 'i' | 'and' | 'but' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'or' | 'and' | 'and' | 'but' | 'and' | 'neither' | 'nor' | 'and' | 'but' | 'and' | 'i' | 'and' | 'and' | 'or' | 'and' | 'or' | 'or' | 'and' | 'and' | 'and' | 'and' | 'and' | 'and' | 'but' | 'and' | 'and' | 'but' | 'thou' | 'and' | 'and' | 'but' | 'and' | 'and' | 'and' | 'or' | 'and' | 'and'\nPDT -> 'all' | 'ardour' | 'all' | 'such' | 'half' | 'all' | 'such' | 'all' | 'such' | 'all' | 'all' | 'all' | 'all' | 'all' | 'fervour' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'half' | 'such' | 'all' | 'all' | 'such' | 'all' | 'all' | 'all' | 'all' | 'such' | 'such' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'all' | 'such' | 'all' | 'all' | 'such' | 'all' | 'all' | 'hid' | 'all' | 'half' | 'all' | 'all' | 'all' | 'all' | 'all' | 'such' | 'all' | 'all' | 'all' | 'all' | 'such' | 'all' | 'half' | 'half' | 'all'\nRBS -> 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'most' | 'mine' | 'most'\nRBR -> 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'closer' | 'better' | 'more' | 'more' | 'more' | 'more' | 'more' | 'longer' | 'less' | 'more' | 'more' | 'more' | 'less' | 'more' | 'longer' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'better' | 'more' | 'more' | 'more' | 'more' | 'more' | 'less' | 'more' | 'more' | 'more' | 'less' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'longer' | 'longer' | 'more' | 'higher' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'less' | 'more' | 'father' | 'more' | 'more' | 'more' | 'longer' | 'more' | 'more' | 'more' | 'better' | 'more' | 'more' | 'longer' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'longer' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'longer' | 'longer' | 'more' | 'more' | 'better' | 'less' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'laid' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'more' | 'longer' | 'more' | 'longer' | 'more' | 'longer'\nCD -> 'thousand' | 'one' | 'six' | 'three' | '2' | '28th' | 'one' | '3' | '7th' | 'one' | 'two' | '4' | '5th' | '17-' | '3lst' | 'two' | 'two' | 'one' | 'one' | 'two' | 'one' | 'one' | '13th' | 'one' | 'one' | 'one' | 'one' | 'one' | '1' | 'one' | 'one' | 'three' | 'two' | 'one' | 'two' | 'one' | 'five' | 'one' | 'one' | 'five' | 'one' | 'four' | 'one' | 'one' | '2' | 'seven' | 'one' | 'one' | 'thousand' | 'one' | '3' | 'one' | 'one' | 'thousand' | 'two' | 'three' | 'one' | 'one' | 'one' | 'one' | 'one' | '4' | 'two' | 'one' | 'one' | 'two' | 'one' | 'one' | 'one' | 'one' | 'eight' | 'one' | 'one' | 'one' | 'one' | '5' | 'one' | 'two' | 'one' | 'one' | 'one' | 'one' | 'one' | '6' | 'one' | 'one' | 'four' | 'one' | 'one' | 'one' | 'one' | 'one' | 'two' | 'one' | 'two' | 'five' | 'one' | 'one' | '18' | '17' | 'one' | 'one' | 'one' | 'five' | 'one' | '7th' | 'two' | 'five' | '12th' | '17' | 'one' | 'six' | 'one' | 'two' | 'one' | 'two' | 'five' | 'six' | 'one' | 'three' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | '8' | 'two' | 'one' | 'eight' | 'one' | 'nine' | 'one' | 'one' | 'five' | 'two' | 'one' | 'one' | 'one' | 'one' | '9' | 'six' | 'two' | '10' | 'one' | 'one' | 'two' | 'expressive' | 'one' | 'one' | 'one' | '11' | 'one' | 'one' | 'one' | 'one' | 'three' | 'one' | 'seven' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'two' | 'one' | '12' | 'one' | 'one' | 'one' | 'two' | 'one' | 'one' | 'thousand' | '13' | 'one' | 'labour' | 'two' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | '14' | 'one' | 'one' | 'one' | 'five' | '15' | 'one' | 'four' | 'one' | 'one' | 'one' | '16' | 'two' | 'three' | 'one' | 'one' | 'two' | 'thousand' | 'one' | 'one' | 'one' | 'one' | 'one' | '17' | 'one' | 'hundred' | 'one' | 'one' | 'one' | '18' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'thousand' | 'two' | 'one' | '19' | 'one' | '27th' | 'two' | 'one' | 'thousand' | 'two' | 'one' | 'five' | 'five' | 'three' | 'one' | 'two' | '20' | 'one' | 'three' | 'thousand' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'two' | 'one' | 'two' | 'three' | 'four' | 'one' | 'one' | 'one' | '21' | 'one' | 'two' | 'five' | 'twenty' | 'one' | 'two' | 'two' | 'one' | 'two' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'two' | 'three' | 'two' | 'one' | 'thousand' | '22' | 'one' | 'one' | 'one' | '18th' | '17-' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | '23' | 'eight' | 'thousand' | 'one' | 'one' | 'one' | '24' | 'one' | 'one' | 'one' | 'one' | 'two' | 'one' | 'three' | 'one' | 'two' | '26th' | '17-' | 'one' | 'one' | 'one' | 'one' | 'one' | 'one' | '2nd' | '5th' | 'one' | '7th' | '12th' | '9th' | '11th' | 'one' | 'one' | 'one'\nEX -> 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'threw' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'thy' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'wherefore' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there' | 'there'\nIN -> 'that' | 'of' | 'with' | 'of' | 'in' | 'of' | 'of' | 'as' | 'in' | 'of' | 'upon' | 'with' | 'from' | 'towards' | 'of' | 'by' | 'of' | 'in' | 'that' | 'of' | 'as' | 'of' | 'for' | 'with' | 'in' | 'in' | 'in' | 'on' | 'without' | 'as' | 'of' | 'in' | 'in' | 'of' | 'with' | 'of' | 'of' | 'by' | 'of' | 'of' | 'with' | 'in' | 'with' | 'on' | 'of' | 'up' | 'on' | 'by' | 'near' | 'at' | 'by' | 'of' | 'if' | 'at' | 'by' | 'as' | 'with' | 'with' | 'for' | 'as' | 'on' | 'of' | 'with' | 'of' | 'in' | 'of' | 'at' | 'through' | 'that' | 'of' | 'for' | 'of' | 'of' | 'of' | 'with' | 'that' | 'as' | 'on' | 'that' | 'in' | 'for' | 'for' | 'in' | 'of' | 'that' | 'in' | 'of' | 'with' | 'at' | 'of' | 'into' | 'of' | 'since' | 'on' | 'from' | 'by' | 'on' | 'of' | 'than' | 'during' | 'of' | 'of' | 'of' | 'from' | 'as' | 'in' | 'in' | 'with' | 'in' | 'that' | 'in' | 'that' | 'in' | 'about' | 'on' | 'of' | 'of' | 'for' | 'in' | 'over' | 'in' | 'in' | 'than' | 'of' | 'if' | 'in' | 'for' | 'between' | 'for' | 'from' | 'in' | 'on' | 'between' | 'for' | 'in' | 'by' | 'for' | 'as' | 'as' | 'among' | 'until' | 'of' | 'if' | 'before' | 'if' | 'on' | 'that' | 'for' | 'as' | 'by' | 'in' | 'on' | 'of' | 'of' | 'of' | 'as' | 'with' | 'of' | 'if' | 'by' | 'in' | 'for' | 'of' | 'of' | 'with' | 'of' | 'near' | 'of' | 'as' | 'of' | 'like' | 'of' | 'in' | 'of' | 'that' | 'for' | 'of' | 'on' | 'of' | 'at' | 'with' | 'of' | 'in' | 'from' | 'that' | 'of' | 'with' | 'than' | 'of' | 'in' | 'than' | 'of' | 'that' | 'that' | 'as' | 'as' | 'for' | 'on' | 'in' | 'among' | 'of' | 'in' | 'for' | 'of' | 'of' | 'of' | 'in' | 'in' | 'of' | 'by' | 'of' | 'of' | 'with' | 'on' | 'that' | 'in' | 'in' | 'of' | 'in' | 'for' | 'of' | 'in' | 'under' | 'of' | 'that' | 'on' | 'of' | 'for' | 'of' | 'by' | 'in' | 'of' | 'in' | 'from' | 'of' | 'ago' | 'of' | 'in' | 'of' | 'before' | 'in' | 'at' | 'at' | 'that' | 'that' | 'that' | 'on' | 'of' | 'of' | 'with' | 'on' | 'of' | 'on' | 'with' | 'of' | 'with' | 'bound' | 'in' | 'until' | 'that' | 'as' | 'of' | 'while' | 'from' | 'because' | 'because' | 'for' | 'that' | 'in' | 'as' | 'until' | 'as' | 'so' | 'that' | 'than' | 'in' | 'of' | 'on' | 'of' | 'of' | 'with' | 'of' | 'for' | 'if' | 'as' | 'as' | 'at' | 'for' | 'of' | 'of' | 'of' | 'at' | 'in' | 'with' | 'besides' | 'for' | 'in' | 'in' | 'out' | 'of' | 'of' | 'about' | 'after' | 'by' | 'of' | 'on' | 'of' | 'for' | 'by' | 'on' | 'with' | 'from' | 'in' | 'that' | 'on' | 'by' | 'on' | 'from' | 'than' | 'for' | 'in' | 'of' | 'of' | 'of' | 'of' | 'although' | 'as' | 'in' | 'of' | 'in' | 'of' | 'if' | 'during' | 'that' | 'for' | 'as' | 'wherefore' | 'over' | 'of' | 'over' | 'of' | 'that' | 'although' | 'that' | 'before' | 'into' | 'by' | 'in' | 'on' | 'in' | 'as' | 'by' | 'that' | 'in' | 'about' | 'in' | 'of' | 'of' | 'with' | 'from' | 'on' | 'by' | 'on' | 'at' | 'of' | 'of' | 'of' | 'in' | 'of' | 'with' | 'until' | 'among' | 'of' | 'as' | 'from' | 'that' | 'in' | 'as' | 'in' | 'by' | 'with' | 'about' | 'after' | 'before' | 'until' | 'in' | 'about' | 'after' | 'up' | 'of' | 'of' | 'for' | 'in' | 'as' | 'upon' | 'on' | 'of' | 'in' | 'in' | 'like' | 'before' | 'in' | 'on' | 'of' | 'within' | 'as' | 'of' | 'on' | 'on' | 'on' | 'in' | 'although' | 'with' | 'before' | 'on' | 'whither' | 'on' | 'from' | 'on' | 'of' | 'that' | 'for' | 'that' | 'on' | 'of' | 'towards' | 'upon' | 'on' | 'if' | 'for' | 'by' | 'in' | 'into' | 'as' | 'by' | 'with' | 'as' | 'of' | 'in' | 'near' | 'of' | 'by' | 'in' | 'before' | 'that' | 'of' | 'in' | 'on' | 'as' | 'of' | 'if' | 'of' | 'as' | 'with' | 'of' | 'that' | 'as' | 'if' | 'of' | 'of' | 'by' | 'in' | 'of' | 'upon' | 'upon' | 'in' | 'of' | 'from' | 'in' | 'for' | 'before' | 'up' | 'with' | 'in' | 'across' | 'of' | 'as' | 'after' | 'with' | 'as' | 'of' | 'in' | 'with' | 'of' | 'from' | 'after' | 'if' | 'that' | 'up' | 'of' | 'that' | 'with' | 'of' | 'for' | 'until' | 'near' | 'at' | 'of' | 'before' | 'of' | 'from' | 'of' | 'of' | 'for' | 'before' | 'in' | 'for' | 'of' | 'that' | 'for' | 'if' | 'in' | 'of' | 'in' | 'except' | 'that' | 'in' | 'although' | 'with' | 'for' | 'as' | 'with' | 'in' | 'in' | 'in' | 'of' | 'that' | 'on' | 'before' | 'by' | 'as' | 'of' | 'at' | 'for' | 'at' | 'by' | 'without' | 'although' | 'with' | 'with' | 'from' | 'on' | 'for' | 'although' | 'by' | 'that' | 'in' | 'of' | 'with' | 'on' | 'without' | 'into' | 'in' | 'of' | 'into' | 'of' | 'by' | 'of' | 'of' | 'with' | 'of' | 'for' | 'of' | 'for' | 'over' | 'of' | 'as' | 'over' | 'at' | 'that' | 'before' | 'as' | 'from' | 'between' | 'from' | 'at' | 'in' | 'of' | 'from' | 'of' | 'of' | 'of' | 'for' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'for' | 'with' | 'than' | 'that' | 'of' | 'with' | 'if' | 'than' | 'of' | 'before' | 'for' | 'as' | 'of' | 'that' | 'in' | 'as' | 'than' | 'of' | 'by' | 'of' | 'from' | 'by' | 'into' | 'like' | 'around' | 'within' | 'at' | 'if' | 'by' | 'from' | 'of' | 'that' | 'above' | 'of' | 'into' | 'of' | 'for' | 'of' | 'that' | 'at' | 'that' | 'of' | 'with' | 'for' | 'as' | 'that' | 'of' | 'as' | 'that' | 'of' | 'that' | 'that' | 'from' | 'if' | 'in' | 'in' | 'of' | 'of' | 'among' | 'of' | 'in' | 'of' | 'with' | 'of' | 'that' | 'in' | 'of' | 'of' | 'of' | 'that' | 'by' | 'that' | 'by' | 'of' | 'from' | 'from' | 'if' | 'in' | 'in' | 'for' | 'for' | 'in' | 'that' | 'if' | 'that' | 'at' | 'from' | 'by' | 'as' | 'in' | 'during' | 'if' | 'at' | 'from' | 'with' | 'in' | 'as' | 'in' | 'on' | 'with' | 'in' | 'while' | 'of' | 'by' | 'within' | 'on' | 'by' | 'of' | 'of' | 'for' | 'with' | 'by' | 'for' | 'by' | 'of' | 'of' | 'until' | 'of' | 'that' | 'of' | 'as' | 'of' | 'from' | 'of' | 'from' | 'through' | 'into' | 'of' | 'in' | 'in' | 'for' | 'in' | 'with' | 'of' | 'in' | 'with' | 'by' | 'in' | 'of' | 'in' | 'with' | 'of' | 'through' | 'before' | 'at' | 'in' | 'near' | 'of' | 'from' | 'of' | 'with' | 'for' | 'in' | 'in' | 'in' | 'for' | 'at' | 'of' | 'at' | 'of' | 'on' | 'of' | 'of' | 'with' | 'with' | 'that' | 'that' | 'of' | 'of' | 'in' | 'by' | 'in' | 'in' | 'of' | 'in' | 'in' | 'by' | 'like' | 'after' | 'of' | 'under' | 'of' | 'after' | 'between' | 'of' | 'in' | 'of' | 'of' | 'in' | 'that' | 'during' | 'from' | 'of' | 'on' | 'of' | 'in' | 'from' | 'of' | 'for' | 'by' | 'for' | 'of' | 'in' | 'for' | 'as' | 'by' | 'from' | 'with' | 'in' | 'of' | 'by' | 'through' | 'during' | 'after' | 'of' | 'of' | 'on' | 'through' | 'of' | 'as' | 'for' | 'from' | 'at' | 'as' | 'in' | 'for' | 'as' | 'of' | 'from' | 'of' | 'upon' | 'of' | 'while' | 'on' | 'by' | 'in' | 'as' | 'towards' | 'with' | 'of' | 'of' | 'that' | 'while' | 'during' | 'of' | 'of' | 'of' | 'of' | 'by' | 'that' | 'of' | 'for' | 'about' | 'while' | 'beyond' | 'of' | 'on' | 'of' | 'of' | 'of' | 'than' | 'for' | 'in' | 'during' | 'of' | 'in' | 'of' | 'as' | 'while' | 'of' | 'about' | 'of' | 'in' | 'by' | 'by' | 'by' | 'among' | 'above' | 'of' | 'despite' | 'of' | 'of' | 'on' | 'of' | 'of' | 'that' | 'without' | 'on' | 'as' | 'of' | 'in' | 'that' | 'of' | 'on' | 'of' | 'on' | 'with' | 'of' | 'of' | 'in' | 'of' | 'of' | 'among' | 'of' | 'of' | 'whether' | 'in' | 'of' | 'with' | 'in' | 'than' | 'among' | 'from' | 'with' | 'in' | 'of' | 'than' | 'from' | 'than' | 'of' | 'with' | 'on' | 'of' | 'in' | 'that' | 'of' | 'than' | 'of' | 'with' | 'while' | 'on' | 'for' | 'on' | 'as' | 'with' | 'as' | 'on' | 'as' | 'of' | 'by' | 'of' | 'of' | 'in' | 'than' | 'since' | 'in' | 'that' | 'of' | 'of' | 'in' | 'nearer' | 'of' | 'with' | 'of' | 'with' | 'for' | 'with' | 'of' | 'in' | 'of' | 'of' | 'of' | 'of' | 'for' | 'while' | 'with' | 'of' | 'in' | 'of' | 'as' | 'among' | 'on' | 'of' | 'by' | 'in' | 'in' | 'on' | 'of' | 'at' | 'of' | 'than' | 'from' | 'in' | 'of' | 'in' | 'in' | 'in' | 'of' | 'among' | 'of' | 'of' | 'of' | 'for' | 'in' | 'of' | 'of' | 'into' | 'in' | 'from' | 'of' | 'of' | 'of' | 'from' | 'of' | 'than' | 'by' | 'of' | 'that' | 'of' | 'with' | 'of' | 'by' | 'in' | 'that' | 'of' | 'of' | 'of' | 'for' | 'of' | 'that' | 'whether' | 'of' | 'of' | 'of' | 'in' | 'of' | 'with' | 'of' | 'of' | 'of' | 'of' | 'among' | 'in' | 'as' | 'of' | 'of' | 'like' | 'in' | 'of' | 'of' | 'in' | 'through' | 'of' | 'that' | 'of' | 'on' | 'of' | 'in' | 'so' | 'of' | 'amidst' | 'for' | 'of' | 'of' | 'in' | 'on' | 'of' | 'before' | 'of' | 'into' | 'upon' | 'in' | 'of' | 'by' | 'after' | 'of' | 'for' | 'for' | 'of' | 'like' | 'from' | 'as' | 'in' | 'in' | 'for' | 'of' | 'on' | 'of' | 'near' | 'of' | 'in' | 'of' | 'of' | 'with' | 'into' | 'upon' | 'with' | 'at' | 'of' | 'upon' | 'if' | 'of' | 'that' | 'of' | 'that' | 'of' | 'than' | 'because' | 'of' | 'while' | 'of' | 'under' | 'as' | 'by' | 'with' | 'that' | 'of' | 'of' | 'by' | 'that' | 'with' | 'with' | 'of' | 'of' | 'of' | 'with' | 'as' | 'with' | 'of' | 'in' | 'of' | 'of' | 'from' | 'that' | 'like' | 'beside' | 'of' | 'of' | 'in' | 'of' | 'with' | 'as' | 'in' | 'around' | 'with' | 'of' | 'of' | 'in' | 'upon' | 'from' | 'of' | 'for' | 'that' | 'that' | 'in' | 'while' | 'of' | 'in' | 'of' | 'with' | 'with' | 'for' | 'under' | 'of' | 'with' | 'into' | 'of' | 'of' | 'if' | 'from' | 'of' | 'by' | 'of' | 'if' | 'than' | 'of' | 'in' | 'for' | 'by' | 'like' | 'in' | 'of' | 'by' | 'of' | 'about' | 'near' | 'from' | 'behind' | 'of' | 'at' | 'with' | 'from' | 'of' | 'while' | 'with' | 'as' | 'at' | 'on' | 'of' | 'from' | 'about' | 'from' | 'as' | 'in' | 'by' | 'of' | 'before' | 'with' | 'of' | 'on' | 'of' | 'in' | 'with' | 'by' | 'on' | 'of' | 'on' | 'of' | 'at' | 'that' | 'into' | 'of' | 'by' | 'of' | 'as' | 'if' | 'by' | 'of' | 'of' | 'in' | 'at' | 'as' | 'for' | 'within' | 'of' | 'in' | 'of' | 'of' | 'as' | 'upon' | 'of' | 'by' | 'bound' | 'as' | 'if' | 'of' | 'of' | 'of' | 'by' | 'of' | 'in' | 'by' | 'of' | 'of' | 'that' | 'with' | 'with' | 'of' | 'of' | 'of' | 'that' | 'at' | 'of' | 'of' | 'for' | 'of' | 'that' | 'with' | 'than' | 'of' | 'at' | 'before' | 'of' | 'as' | 'of' | 'in' | 'during' | 'from' | 'upon' | 'at' | 'that' | 'of' | 'over' | 'of' | 'of' | 'on' | 'by' | 'of' | 'on' | 'of' | 'of' | 'of' | 'of' | 'on' | 'of' | 'of' | 'that' | 'from' | 'as' | 'of' | 'in' | 'in' | 'of' | 'by' | 'on' | 'before' | 'that' | 'of' | 'that' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'from' | 'that' | 'at' | 'than' | 'upon' | 'although' | 'with' | 'for' | 'by' | 'upon' | 'from' | 'of' | 'of' | 'of' | 'into' | 'of' | 'of' | 'above' | 'in' | 'on' | 'with' | 'as' | 'at' | 'of' | 'upon' | 'in' | 'of' | 'at' | 'with' | 'in' | 'in' | 'of' | 'of' | 'from' | 'in' | 'in' | 'of' | 'from' | 'under' | 'of' | 'that' | 'at' | 'that' | 'on' | 'into' | 'in' | 'by' | 'in' | 'in' | 'for' | 'of' | 'as' | 'as' | 'of' | 'at' | 'during' | 'in' | 'among' | 'with' | 'for' | 'during' | 'at' | 'length' | 'of' | 'as' | 'of' | 'of' | 'of' | 'over' | 'from' | 'from' | 'of' | 'in' | 'of' | 'in' | 'of' | 'in' | 'of' | 'as' | 'in' | 'in' | 'with' | 'that' | 'on' | 'with' | 'in' | 'that' | 'as' | 'in' | 'of' | 'of' | 'of' | 'after' | 'that' | 'in' | 'of' | 'of' | 'upon' | 'in' | 'that' | 'upon' | 'that' | 'for' | 'that' | 'at' | 'in' | 'with' | 'in' | 'of' | 'in' | 'of' | 'in' | 'as' | 'with' | 'by' | 'of' | 'with' | 'of' | 'for' | 'by' | 'of' | 'on' | 'of' | 'along' | 'of' | 'of' | 'for' | 'of' | 'besides' | 'for' | 'of' | 'of' | 'although' | 'of' | 'of' | 'on' | 'in' | 'of' | 'for' | 'of' | 'during' | 'of' | 'at' | 'in' | 'with' | 'in' | 'as' | 'of' | 'although' | 'out' | 'of' | 'of' | 'as' | 'out' | 'of' | 'from' | 'from' | 'into' | 'after' | 'unlike' | 'about' | 'of' | 'with' | 'of' | 'at' | 'of' | 'by' | 'of' | 'of' | 'by' | 'of' | 'with' | 'of' | 'of' | 'of' | 'of' | 'after' | 'with' | 'of' | 'of' | 'that' | 'that' | 'of' | 'in' | 'over' | 'into' | 'of' | 'in' | 'into' | 'of' | 'of' | 'with' | 'of' | 'as' | 'on' | 'as' | 'if' | 'with' | 'by' | 'of' | 'after' | 'with' | 'of' | 'in' | 'of' | 'that' | 'in' | 'of' | 'that' | 'by' | 'after' | 'as' | 'for' | 'on' | 'in' | 'than' | 'in' | 'for' | 'in' | 'during' | 'in' | 'by' | 'of' | 'as' | 'with' | 'at' | 'of' | 'without' | 'that' | 'for' | 'of' | 'of' | 'as' | 'in' | 'in' | 'of' | 'of' | 'of' | 'in' | 'of' | 'without' | 'that' | 'against' | 'in' | 'with' | 'from' | 'without' | 'in' | 'of' | 'if' | 'of' | 'that' | 'of' | 'in' | 'on' | 'that' | 'at' | 'of' | 'if' | 'of' | 'if' | 'of' | 'of' | 'into' | 'of' | 'as' | 'of' | 'in' | 'of' | 'from' | 'in' | 'of' | 'with' | 'so' | 'of' | 'on' | 'of' | 'of' | 'of' | 'in' | 'of' | 'with' | 'on' | 'in' | 'by' | 'with' | 'of' | 'of' | 'in' | 'for' | 'of' | 'at' | 'as' | 'that' | 'in' | 'of' | 'in' | 'as' | 'that' | 'of' | 'that' | 'of' | 'with' | 'on' | 'in' | 'in' | 'during' | 'in' | 'of' | 'of' | 'of' | 'in' | 'as' | 'before' | 'in' | 'for' | 'of' | 'at' | 'in' | 'of' | 'of' | 'in' | 'that' | 'at' | 'of' | 'in' | 'of' | 'at' | 'at' | 'with' | 'of' | 'as' | 'on' | 'of' | 'of' | 'at' | 'of' | 'that' | 'of' | 'of' | 'with' | 'of' | 'as' | 'with' | 'upon' | 'of' | 'if' | 'in' | 'of' | 'unless' | 'by' | 'of' | 'with' | 'of' | 'of' | 'in' | 'that' | 'with' | 'at' | 'of' | 'of' | 'upon' | 'of' | 'of' | 'from' | 'of' | 'for' | 'of' | 'in' | 'upon' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'as' | 'in' | 'from' | 'until' | 'from' | 'of' | 'in' | 'upon' | 'that' | 'while' | 'with' | 'of' | 'that' | 'among' | 'of' | 'towards' | 'that' | 'of' | 'in' | 'than' | 'of' | 'after' | 'of' | 'in' | 'of' | 'of' | 'upon' | 'at' | 'on' | 'after' | 'in' | 'at' | 'at' | 'of' | 'of' | 'that' | 'by' | 'of' | 'since' | 'of' | 'within' | 'that' | 'like' | 'upon' | 'at' | 'of' | 'as' | 'towards' | 'of' | 'than' | 'like' | 'with' | 'by' | 'by' | 'that' | 'of' | 'with' | 'until' | 'of' | 'upon' | 'on' | 'as' | 'from' | 'if' | 'by' | 'at' | 'by' | 'of' | 'that' | 'than' | 'than' | 'within' | 'in' | 'although' | 'of' | 'for' | 'of' | 'with' | 'of' | 'of' | 'at' | 'whether' | 'of' | 'like' | 'of' | 'by' | 'of' | 'as' | 'as' | 'at' | 'within' | 'that' | 'for' | 'of' | 'at' | 'in' | 'at' | 'of' | 'of' | 'as' | 'of' | 'with' | 'that' | 'of' | 'as' | 'of' | 'of' | 'in' | 'after' | 'in' | 'of' | 'like' | 'in' | 'of' | 'through' | 'of' | 'into' | 'as' | 'of' | 'as' | 'that' | 'if' | 'upon' | 'in' | 'of' | 'although' | 'while' | 'with' | 'with' | 'with' | 'on' | 'of' | 'on' | 'while' | 'with' | 'of' | 'as' | 'among' | 'of' | 'with' | 'for' | 'that' | 'with' | 'as' | 'from' | 'with' | 'of' | 'in' | 'at' | 'of' | 'from' | 'by' | 'of' | 'from' | 'in' | 'of' | 'of' | 'with' | 'from' | 'on' | 'by' | 'near' | 'while' | 'in' | 'of' | 'around' | 'for' | 'of' | 'that' | 'while' | 'with' | 'of' | 'with' | 'from' | 'if' | 'in' | 'as' | 'that' | 'from' | 'in' | 'of' | 'as' | 'of' | 'until' | 'of' | 'that' | 'if' | 'on' | 'that' | 'in' | 'that' | 'from' | 'in' | 'that' | 'of' | 'if' | 'for' | 'in' | 'that' | 'if' | 'if' | 'with' | 'of' | 'of' | 'that' | 'in' | 'of' | 'in' | 'of' | 'by' | 'into' | 'than' | 'during' | 'in' | 'of' | 'before' | 'by' | 'like' | 'by' | 'in' | 'than' | 'by' | 'by' | 'of' | 'as' | 'if' | 'of' | 'at' | 'that' | 'of' | 'that' | 'of' | 'on' | 'of' | 'that' | 'of' | 'with' | 'of' | 'around' | 'that' | 'of' | 'into' | 'at' | 'in' | 'against' | 'by' | 'of' | 'of' | 'at' | 'with' | 'in' | 'as' | 'of' | 'of' | 'of' | 'with' | 'of' | 'as' | 'in' | 'of' | 'as' | 'of' | 'for' | 'for' | 'of' | 'into' | 'for' | 'of' | 'with' | 'that' | 'of' | 'of' | 'out' | 'of' | 'at' | 'before' | 'on' | 'in' | 'of' | 'in' | 'by' | 'in' | 'of' | 'in' | 'of' | 'as' | 'on' | 'with' | 'of' | 'that' | 'of' | 'in' | 'in' | 'of' | 'from' | 'with' | 'by' | 'of' | 'as' | 'through' | 'of' | 'if' | 'on' | 'while' | 'in' | 'during' | 'of' | 'in' | 'as' | 'if' | 'of' | 'of' | 'with' | 'as' | 'on' | 'while' | 'of' | 'as' | 'that' | 'of' | 'at' | 'through' | 'with' | 'of' | 'for' | 'at' | 'of' | 'of' | 'that' | 'into' | 'with' | 'as' | 'if' | 'of' | 'on' | 'although' | 'by' | 'from' | 'in' | 'for' | 'by' | 'upon' | 'without' | 'of' | 'in' | 'of' | 'on' | 'with' | 'about' | 'like' | 'on' | 'in' | 'on' | 'because' | 'behind' | 'at' | 'at' | 'with' | 'on' | 'from' | 'of' | 'as' | 'that' | 'on' | 'on' | 'that' | 'at' | 'of' | 'on' | 'of' | 'in' | 'for' | 'during' | 'in' | 'for' | 'about' | 'in' | 'that' | 'in' | 'of' | 'for' | 'as' | 'of' | 'in' | 'of' | 'without' | 'without' | 'for' | 'at' | 'overcame' | 'of' | 'of' | 'of' | 'that' | 'from' | 'by' | 'by' | 'upon' | 'in' | 'before' | 'as' | 'if' | 'for' | 'in' | 'that' | 'as' | 'that' | 'at' | 'that' | 'at' | 'of' | 'of' | 'with' | 'at' | 'that' | 'in' | 'about' | 'that' | 'at' | 'of' | 'on' | 'of' | 'before' | 'over' | 'as' | 'in' | 'for' | 'on' | 'in' | 'from' | 'that' | 'that' | 'for' | 'into' | 'that' | 'with' | 'of' | 'for' | 'in' | 'over' | 'at' | 'on' | 'in' | 'for' | 'for' | 'in' | 'of' | 'before' | 'for' | 'into' | 'that' | 'in' | 'with' | 'of' | 'for' | 'for' | 'of' | 'for' | 'during' | 'that' | 'for' | 'by' | 'of' | 'that' | 'than' | 'in' | 'of' | 'that' | 'of' | 'that' | 'in' | 'of' | 'of' | 'on' | 'before' | 'at' | 'of' | 'with' | 'that' | 'by' | 'with' | 'of' | 'with' | 'of' | 'that' | 'that' | 'from' | 'of' | 'in' | 'in' | 'as' | 'before' | 'by' | 'of' | 'in' | 'as' | 'in' | 'for' | 'of' | 'if' | 'as' | 'since' | 'in' | 'on' | 'on' | 'of' | 'if' | 'if' | 'from' | 'in' | 'at' | 'that' | 'that' | 'of' | 'if' | 'for' | 'from' | 'into' | 'from' | 'of' | 'on' | 'from' | 'for' | 'that' | 'from' | 'of' | 'that' | 'of' | 'on' | 'on' | 'with' | 'of' | 'that' | 'that' | 'in' | 'that' | 'of' | 'of' | 'into' | 'with' | 'at' | 'until' | 'with' | 'of' | 'in' | 'of' | 'as' | 'in' | 'on' | 'that' | 'unless' | 'on' | 'except' | 'of' | 'since' | 'by' | 'for' | 'by' | 'around' | 'since' | 'in' | 'on' | 'in' | 'with' | 'of' | 'of' | 'through' | 'after' | 'of' | 'of' | 'on' | 'at' | 'of' | 'than' | 'in' | 'between' | 'of' | 'in' | 'as' | 'in' | 'in' | 'of' | 'in' | 'of' | 'of' | 'of' | 'of' | 'that' | 'if' | 'in' | 'from' | 'for' | 'of' | 'for' | 'by' | 'at' | 'in' | 'that' | 'by' | 'that' | 'although' | 'in' | 'of' | 'of' | 'so' | 'that' | 'of' | 'in' | 'during' | 'with' | 'for' | 'by' | 'with' | 'of' | 'of' | 'that' | 'of' | 'from' | 'after' | 'for' | 'by' | 'since' | 'of' | 'before' | 'for' | 'at' | 'of' | 'in' | 'of' | 'of' | 'at' | 'into' | 'at' | 'at' | 'for' | 'on' | 'of' | 'at' | 'of' | 'as' | 'before' | 'of' | 'of' | 'of' | 'with' | 'on' | 'with' | 'of' | 'of' | 'in' | 'of' | 'on' | 'with' | 'since' | 'of' | 'from' | 'on' | 'of' | 'than' | 'with' | 'into' | 'as' | 'for' | 'of' | 'from' | 'in' | 'of' | 'on' | 'of' | 'in' | 'of' | 'that' | 'since' | 'of' | 'of' | 'of' | 'of' | 'of' | 'from' | 'for' | 'that' | 'for' | 'of' | 'of' | 'with' | 'in' | 'that' | 'from' | 'with' | 'as' | 'of' | 'as' | 'if' | 'by' | 'in' | 'in' | 'under' | 'in' | 'of' | 'in' | 'from' | 'that' | 'from' | 'although' | 'with' | 'of' | 'that' | 'in' | 'in' | 'at' | 'of' | 'than' | 'of' | 'n' | 'if' | 'in' | 'as' | 'in' | 'at' | 'of' | 'if' | 'out' | 'of' | 'of' | 'in' | 'of' | 'that' | 'in' | 'on' | 'from' | 'in' | 'for' | 'from' | 'with' | 'of' | 'of' | 'for' | 'of' | 'for' | 'toward' | 'as' | 'for' | 'of' | 'on' | 'that' | 'from' | 'in' | 'with' | 'in' | 'of' | 'like' | 'of' | 'for' | 'of' | 'than' | 'in' | 'of' | 'in' | 'of' | 'in' | 'of' | 'from' | 'of' | 'in' | 'for' | 'of' | 'by' | 'until' | 'for' | 'from' | 'in' | 'before' | 'with' | 'of' | 'although' | 'for' | 'of' | 'of' | 'in' | 'of' | 'that' | 'with' | 'of' | 'in' | 'of' | 'that' | 'among' | 'of' | 'in' | 'from' | 'of' | 'of' | 'before' | 'from' | 'of' | 'of' | 'of' | 'of' | 'until' | 'on' | 'with' | 'until' | 'by' | 'of' | 'on' | 'with' | 'of' | 'in' | 'while' | 'of' | 'in' | 'by' | 'during' | 'upon' | 'with' | 'in' | 'in' | 'while' | 'of' | 'on' | 'of' | 'in' | 'of' | 'of' | 'at' | 'into' | 'with' | 'on' | 'with' | 'of' | 'on' | 'from' | 'for' | 'of' | 'at' | 'on' | 'on' | 'on' | 'for' | 'over' | 'that' | 'of' | 'in' | 'than' | 'before' | 'of' | 'that' | 'on' | 'before' | 'on' | 'until' | 'if' | 'that' | 'with' | 'that' | 'that' | 'for' | 'for' | 'that' | 'for' | 'until' | 'that' | 'with' | 'for' | 'that' | 'of' | 'about' | 'in' | 'before' | 'in' | 'on' | 'of' | 'on' | 'in' | 'at' | 'of' | 'with' | 'that' | 'that' | 'of' | 'of' | 'at' | 'although' | 'as' | 'of' | 'that' | 'for' | 'of' | 'of' | 'against' | 'with' | 'of' | 'of' | 'of' | 'of' | 'with' | 'for' | 'with' | 'for' | 'as' | 'at' | 'on' | 'from' | 'on' | 'with' | 'with' | 'while' | 'down' | 'in' | 'from' | 'of' | 'as' | 'of' | 'with' | 'during' | 'of' | 'with' | 'in' | 'over' | 'at' | 'over' | 'at' | 'for' | 'for' | 'that' | 'for' | 'as' | 'through' | 'on' | 'in' | 'as' | 'into' | 'at' | 'on' | 'for' | 'with' | 'near' | 'of' | 'into' | 'through' | 'for' | 'during' | 'by' | 'although' | 'overcame' | 'that' | 'although' | 'at' | 'in' | 'of' | 'around' | 'of' | 'by' | 'by' | 'of' | 'as' | 'of' | 'of' | 'like' | 'at' | 'that' | 'by' | 'on' | 'of' | 'of' | 'with' | 'in' | 'than' | 'as' | 'overcame' | 'of' | 'that' | 'of' | 'in' | 'that' | 'in' | 'of' | 'in' | 'of' | 'of' | 'at' | 'at' | 'of' | 'from' | 'as' | 'as' | 'through' | 'in' | 'at' | 'during' | 'on' | 'of' | 'in' | 'on' | 'that' | 'in' | 'on' | 'although' | 'with' | 'over' | 'from' | 'of' | 'of' | 'like' | 'of' | 'for' | 'of' | 'until' | 'from' | 'as' | 'in' | 'at' | 'in' | 'of' | 'of' | 'over' | 'of' | 'between' | 'of' | 'of' | 'with' | 'of' | 'while' | 'on' | 'with' | 'in' | 'as' | 'in' | 'from' | 'behind' | 'of' | 'near' | 'of' | 'of' | 'than' | 'that' | 'at' | 'of' | 'that' | 'than' | 'of' | 'against' | 'for' | 'in' | 'in' | 'of' | 'of' | 'of' | 'in' | 'for' | 'among' | 'of' | 'of' | 'on' | 'in' | 'in' | 'until' | 'of' | 'toward' | 'of' | 'of' | 'at' | 'since' | 'on' | 'into' | 'in' | 'during' | 'of' | 'in' | 'of' | 'in' | 'of' | 'among' | 'with' | 'of' | 'as' | 'in' | 'of' | 'from' | 'towards' | 'of' | 'on' | 'that' | 'with' | 'at' | 'among' | 'of' | 'with' | 'at' | 'that' | 'of' | 'that' | 'if' | 'upon' | 'as' | 'of' | 'of' | 'if' | 'as' | 'of' | 'of' | 'of' | 'in' | 'into' | 'of' | 'in' | 'for' | 'in' | 'before' | 'for' | 'on' | 'of' | 'over' | 'at' | 'in' | 'of' | 'by' | 'of' | 'of' | 'of' | 'below' | 'of' | 'upon' | 'while' | 'under' | 'from' | 'of' | 'over' | 'before' | 'of' | 'on' | 'as' | 'of' | 'of' | 'of' | 'that' | 'since' | 'that' | 'with' | 'in' | 'of' | 'at' | 'of' | 'of' | 'that' | 'at' | 'upon' | 'as' | 'of' | 'that' | 'for' | 'that' | 'on' | 'of' | 'for' | 'during' | 'of' | 'on' | 'of' | 'in' | 'of' | 'of' | 'of' | 'without' | 'of' | 'upon' | 'on' | 'with' | 'in' | 'by' | 'of' | 'at' | 'on' | 'after' | 'than' | 'of' | 'that' | 'of' | 'for' | 'for' | 'than' | 'in' | 'if' | 'that' | 'as' | 'that' | 'in' | 'of' | 'that' | 'upon' | 'as' | 'by' | 'except' | 'unless' | 'in' | 'of' | 'of' | 'upon' | 'by' | 'since' | 'with' | 'of' | 'of' | 'with' | 'with' | 'if' | 'of' | 'on' | 'as' | 'upon' | 'that' | 'by' | 'if' | 'after' | 'of' | 'that' | 'by' | 'of' | 'in' | 'that' | 'for' | 'that' | 'in' | 'if' | 'as' | 'on' | 'of' | 'with' | 'of' | 'until' | 'of' | 'as' | 'during' | 'of' | 'of' | 'whether' | 'of' | 'of' | 'of' | 'of' | 'with' | 'of' | 'in' | 'of' | 'in' | 'of' | 'as' | 'of' | 'through' | 'of' | 'in' | 'by' | 'of' | 'in' | 'although' | 'on' | 'by' | 'for' | 'in' | 'of' | 'by' | 'of' | 'as' | 'before' | 'as' | 'of' | 'of' | 'of' | 'after' | 'against' | 'against' | 'of' | 'as' | 'of' | 'on' | 'by' | 'from' | 'of' | 'about' | 'that' | 'for' | 'if' | 'into' | 'for' | 'in' | 'in' | 'that' | 'before' | 'round' | 'of' | 'on' | 'for' | 'as' | 'with' | 'in' | 'although' | 'that' | 'on' | 'of' | 'against' | 'that' | 'by' | 'of' | 'of' | 'on' | 'at' | 'of' | 'at' | 'at' | 'about' | 'from' | 'on' | 'at' | 'if' | 'of' | 'by' | 'in' | 'for' | 'of' | 'of' | 'in' | 'of' | 'that' | 'for' | 'that' | 'if' | 'near' | 'without' | 'that' | 'by' | 'since' | 'of' | 'against' | 'of' | 'by' | 'in' | 'that' | 'on' | 'as' | 'of' | 'for' | 'if' | 'with' | 'of' | 'for' | 'if' | 'although' | 'on' | 'for' | 'of' | 'of' | 'of' | 'about' | 'although' | 'of' | 'for' | 'by' | 'with' | 'since' | 'before' | 'in' | 'on' | 'about' | 'through' | 'of' | 'that' | 'of' | 'with' | 'in' | 'with' | 'at' | 'for' | 'at' | 'for' | 'during' | 'of' | 'in' | 'with' | 'during' | 'in' | 'of' | 'after' | 'in' | 'by' | 'like' | 'for' | 'that' | 'against' | 'on' | 'for' | 'as' | 'on' | 'if' | 'of' | 'by' | 'in' | 'of' | 'on' | 'with' | 'with' | 'as' | 'during' | 'in' | 'for' | 'in' | 'of' | 'that' | 'of' | 'out' | 'of' | 'in' | 'of' | 'by' | 'of' | 'of' | 'in' | 'of' | 'before' | 'of' | 'upon' | 'of' | 'that' | 'that' | 'in' | 'of' | 'of' | 'like' | 'upon' | 'as' | 'if' | 'of' | 'as' | 'that' | 'than' | 'with' | 'upon' | 'in' | 'as' | 'on' | 'of' | 'of' | 'after' | 'that' | 'that' | 'although' | 'of' | 'on' | 'at' | 'on' | 'on' | 'with' | 'at' | 'of' | 'of' | 'on' | 'although' | 'as' | 'that' | 'with' | 'as' | 'with' | 'if' | 'of' | 'until' | 'that' | 'that' | 'in' | 'for' | 'that' | 'that' | 'at' | 'than' | 'of' | 'since' | 'until' | 'that' | 'that' | 'in' | 'if' | 'on' | 'as' | 'in' | 'with' | 'that' | 'of' | 'in' | 'that' | 'as' | 'for' | 'for' | 'of' | 'by' | 'on' | 'if' | 'of' | 'as' | 'of' | 'from' | 'in' | 'of' | 'during' | 'of' | 'of' | 'on' | 'between' | 'as' | 'from' | 'that' | 'of' | 'than' | 'for' | 'that' | 'in' | 'of' | 'with' | 'of' | 'as' | 'than' | 'as' | 'if' | 'in' | 'that' | 'by' | 'in' | 'of' | 'of' | 'like' | 'over' | 'for' | 'into' | 'of' | 'within' | 'with' | 'with' | 'that' | 'that' | 'with' | 'in' | 'of' | 'of' | 'while' | 'with' | 'in' | 'of' | 'in' | 'that' | 'on' | 'from' | 'in' | 'of' | 'upon' | 'of' | 'on' | 'upon' | 'on' | 'as' | 'from' | 'of' | 'of' | 'of' | 'so' | 'of' | 'of' | 'of' | 'for' | 'of' | 'except' | 'as' | 'in' | 'with' | 'in' | 'beyond' | 'if' | 'if' | 'before' | 'of' | 'as' | 'by' | 'upon' | 'of' | 'than' | 'after' | 'by' | 'of' | 'of' | 'of' | 'in' | 'of' | 'on' | 'from' | 'like' | 'for' | 'of' | 'beyond' | 'behind' | 'with' | 'of' | 'with' | 'for' | 'in' | 'of' | 'of' | 'upon' | 'with' | 'from' | 'of' | 'by' | 'of' | 'of' | 'as' | 'of' | 'upon' | 'from' | 'of' | 'of' | 'with' | 'in' | 'by' | 'from' | 'of' | 'with' | 'in' | 'over' | 'that' | 'than' | 'into' | 'as' | 'that' | 'from' | 'by' | 'of' | 'for' | 'of' | 'without' | 'for' | 'although' | 'if' | 'with' | 'with' | 'of' | 'from' | 'about' | 'at' | 'of' | 'at' | 'of' | 'on' | 'after' | 'within' | 'of' | 'after' | 'of' | 'for' | 'upon' | 'with' | 'by' | 'after' | 'into' | 'of' | 'at' | 'around' | 'in' | 'if' | 'into' | 'that' | 'over' | 'of' | 'in' | 'of' | 'by' | 'of' | 'among' | 'at' | 'that' | 'that' | 'of' | 'in' | 'lest' | 'that' | 'over' | 'that' | 'by' | 'of' | 'for' | 'as' | 'behind' | 'of' | 'of' | 'that' | 'on' | 'of' | 'of' | 'that' | 'of' | 'on' | 'of' | 'of' | 'by' | 'of' | 'in' | 'toward' | 'that' | 'in' | 'with' | 'on' | 'of' | 'with' | 'of' | 'of' | 'from' | 'on' | 'of' | 'as' | 'before' | 'upon' | 'of' | 'that' | 'in' | 'from' | 'as' | 'of' | 'at' | 'than' | 'as' | 'for' | 'that' | 'if' | 'for' | 'of' | 'for' | 'of' | 'of' | 'from' | 'as' | 'if' | 'of' | 'in' | 'of' | 'of' | 'that' | 'like' | 'of' | 'as' | 'if' | 'on' | 'of' | 'into' | 'about' | 'if' | 'on' | 'for' | 'with' | 'with' | 'in' | 'in' | 'in' | 'as' | 'of' | 'of' | 'in' | 'that' | 'around' | 'in' | 'of' | 'while' | 'while' | 'in' | 'of' | 'from' | 'before' | 'of' | 'in' | 'as' | 'as' | 'if' | 'in' | 'at' | 'near' | 'of' | 'of' | 'of' | 'of' | 'from' | 'of' | 'by' | 'upon' | 'of' | 'with' | 'of' | 'by' | 'by' | 'of' | 'from' | 'during' | 'of' | 'that' | 'towards' | 'in' | 'of' | 'because' | 'towards' | 'of' | 'during' | 'since' | 'in' | 'of' | 'on' | 'as' | 'on' | 'about' | 'of' | 'of' | 'after' | 'of' | 'that' | 'from' | 'upon' | 'as' | 'in' | 'of' | 'that' | 'on' | 'of' | 'among' | 'of' | 'around' | 'of' | 'as' | 'before' | 'than' | 'in' | 'as' | 'on' | 'of' | 'from' | 'among' | 'of' | 'by' | 'above' | 'as' | 'of' | 'of' | 'of' | 'before' | 'after' | 'of' | 'as' | 'of' | 'through' | 'of' | 'of' | 'from' | 'of' | 'across' | 'during' | 'in' | 'of' | 'by' | 'with' | 'of' | 'in' | 'in' | 'of' | 'on' | 'than' | 'in' | 'on' | 'by' | 'at' | 'at' | 'of' | 'of' | 'of' | 'for' | 'of' | 'at' | 'above' | 'of' | 'as' | 'upon' | 'over' | 'as' | 'of' | 'through' | 'beside' | 'of' | 'in' | 'that' | 'with' | 'from' | 'of' | 'of' | 'before' | 'of' | 'overhung' | 'around' | 'of' | 'of' | 'by' | 'of' | 'of' | 'along' | 'of' | 'through' | 'of' | 'as' | 'if' | 'in' | 'that' | 'of' | 'from' | 'of' | 'although' | 'in' | 'from' | 'over' | 'for' | 'at' | 'as' | 'on' | 'by' | 'of' | 'during' | 'round' | 'round' | 'at' | 'of' | 'with' | 'in' | 'of' | 'so' | 'that' | 'of' | 'in' | 'of' | 'that' | 'of' | 'upon' | 'with' | 'from' | 'of' | 'in' | 'of' | 'of' | 'without' | 'for' | 'with' | 'of' | 'of' | 'into' | 'of' | 'in' | 'of' | 'on' | 'upon' | 'of' | 'upon' | 'as' | 'by' | 'of' | 'from' | 'above' | 'of' | 'as' | 'as' | 'in' | 'of' | 'upon' | 'of' | 'of' | 'on' | 'from' | 'through' | 'in' | 'around' | 'in' | 'while' | 'from' | 'from' | 'around' | 'of' | 'in' | 'if' | 'by' | 'that' | 'for' | 'of' | 'like' | 'at' | 'of' | 'for' | 'upon' | 'of' | 'upon' | 'like' | 'of' | 'by' | 'of' | 'in' | 'in' | 'from' | 'at' | 'of' | 'above' | 'in' | 'in' | 'of' | 'on' | 'of' | 'among' | 'over' | 'in' | 'over' | 'before' | 'with' | 'like' | 'if' | 'in' | 'as' | 'from' | 'of' | 'as' | 'of' | 'at' | 'with' | 'in' | 'among' | 'with' | 'as' | 'that' | 'of' | 'over' | 'by' | 'of' | 'as' | 'that' | 'with' | 'with' | 'in' | 'with' | 'while' | 'for' | 'at' | 'of' | 'with' | 'of' | 'of' | 'on' | 'that' | 'that' | 'with' | 'of' | 'beyond' | 'by' | 'by' | 'of' | 'of' | 'with' | 'towards' | 'of' | 'if' | 'with' | 'at' | 'if' | 'of' | 'until' | 'with' | 'of' | 'that' | 'of' | 'for' | 'with' | 'on' | 'that' | 'without' | 'on' | 'by' | 'against' | 'of' | 'before' | 'on' | 'that' | 'although' | 'of' | 'than' | 'in' | 'if' | 'owest' | 'upon' | 'that' | 'from' | 'for' | 'from' | 'between' | 'in' | 'in' | 'upon' | 'with' | 'abhor' | 'from' | 'of' | 'for' | 'than' | 'if' | 'of' | 'of' | 'as' | 'for' | 'with' | 'in' | 'from' | 'for' | 'that' | 'of' | 'in' | 'of' | 'that' | 'as' | 'that' | 'by' | 'as' | 'in' | 'before' | 'accuse' | 'of' | 'with' | 'of' | 'if' | 'if' | 'of' | 'of' | 'that' | 'in' | 'although' | 'beyond' | 'whether' | 'from' | 'of' | 'before' | 'from' | 'with' | 'from' | 'by' | 'that' | 'from' | 'of' | 'upon' | 'in' | 'before' | 'behind' | 'on' | 'whether' | 'of' | 'of' | 'of' | 'as' | 'across' | 'as' | 'that' | 'at' | 'by' | 'of' | 'of' | 'for' | 'of' | 'towards' | 'that' | 'before' | 'of' | 'with' | 'with' | 'of' | 'with' | 'by' | 'with' | 'that' | 'of' | 'of' | 'of' | 'at' | 'before' | 'between' | 'of' | 'by' | 'upon' | 'so' | 'that' | 'over' | 'by' | 'as' | 'in' | 'upon' | 'in' | 'before' | 'that' | 'on' | 'at' | 'with' | 'as' | 'near' | 'by' | 'of' | 'from' | 'until' | 'by' | 'from' | 'on' | 'on' | 'at' | 'by' | 'as' | 'before' | 'on' | 'of' | 'with' | 'from' | 'of' | 'on' | 'over' | 'of' | 'from' | 'among' | 'with' | 'of' | 'in' | 'of' | 'under' | 'of' | 'with' | 'upon' | 'in' | 'on' | 'that' | 'on' | 'with' | 'of' | 'of' | 'from' | 'with' | 'with' | 'that' | 'from' | 'of' | 'from' | 'with' | 'of' | 'of' | 'of' | 'in' | 'from' | 'into' | 'from' | 'with' | 'while' | 'in' | 'by' | 'in' | 'from' | 'by' | 'from' | 'that' | 'of' | 'by' | 'by' | 'with' | 'at' | 'from' | 'in' | 'into' | 'with' | 'of' | 'that' | 'of' | 'of' | 'at' | 'of' | 'near' | 'on' | 'by' | 'in' | 'of' | 'that' | 'of' | 'on' | 'with' | 'in' | 'with' | 'upon' | 'on' | 'into' | 'into' | 'of' | 'with' | 'that' | 'as' | 'that' | 'of' | 'in' | 'for' | 'of' | 'that' | 'than' | 'from' | 'in' | 'on' | 'that' | 'by' | 'in' | 'for' | 'of' | 'that' | 'for' | 'in' | 'of' | 'through' | 'of' | 'in' | 'across' | 'towards' | 'in' | 'at' | 'of' | 'before' | 'of' | 'by' | 'in' | 'at' | 'on' | 'for' | 'of' | 'with' | 'in' | 'near' | 'over' | 'on' | 'across' | 'with' | 'of' | 'from' | 'by' | 'of' | 'as' | 'as' | 'of' | 'after' | 'in' | 'of' | 'of' | 'of' | 'like' | 'by' | 'among' | 'by' | 'of' | 'on' | 'of' | 'in' | 'across' | 'for' | 'until' | 'at' | 'at' | 'by' | 'in' | 'that' | 'at' | 'of' | 'of' | 'of' | 'of' | 'within' | 'before' | 'of' | 'until' | 'by' | 'of' | 'in' | 'after' | 'in' | 'of' | 'after' | 'of' | 'of' | 'that' | 'with' | 'in' | 'on' | 'although' | 'by' | 'from' | 'from' | 'of' | 'from' | 'of' | 'as' | 'from' | 'that' | 'if' | 'in' | 'against' | 'of' | 'on' | 'by' | 'of' | 'by' | 'in' | 'by' | 'with' | 'in' | 'that' | 'on' | 'through' | 'for' | 'with' | 'for' | 'of' | 'at' | 'before' | 'in' | 'for' | 'for' | 'by' | 'of' | 'with' | 'than' | 'from' | 'of' | 'by' | 'so' | 'that' | 'by' | 'of' | 'in' | 'until' | 'with' | 'about' | 'through' | 'with' | 'on' | 'before' | 'of' | 'unlike' | 'since' | 'of' | 'in' | 'of' | 'with' | 'as' | 'by' | 'with' | 'of' | 'from' | 'with' | 'in' | 'behind' | 'in' | 'in' | 'on' | 'that' | 'of' | 'of' | 'of' | 'with' | 'in' | 'of' | 'through' | 'through' | 'of' | 'in' | 'near' | 'on' | 'in' | 'in' | 'out' | 'of' | 'than' | 'of' | 'of' | 'while' | 'of' | 'from' | 'of' | 'of' | 'until' | 'at' | 'with' | 'that' | 'of' | 'of' | 'as' | 'from' | 'from' | 'after' | 'on' | 'of' | 'at' | 'of' | 'of' | 'into' | 'on' | 'into' | 'of' | 'of' | 'into' | 'for' | 'in' | 'upon' | 'into' | 'in' | 'after' | 'about' | 'in' | 'on' | 'of' | 'in' | 'before' | 'in' | 'for' | 'on' | 'of' | 'in' | 'between' | 'with' | 'with' | 'in' | 'with' | 'with' | 'from' | 'in' | 'across' | 'in' | 'that' | 'of' | 'by' | 'of' | 'that' | 'of' | 'in' | 'in' | 'in' | 'that' | 'in' | 'as' | 'of' | 'of' | 'since' | 'that' | 'at' | 'of' | 'of' | 'after' | 'for' | 'as' | 'on' | 'of' | 'of' | 'of' | 'before' | 'from' | 'of' | 'that' | 'for' | 'in' | 'before' | 'after' | 'in' | 'as' | 'out' | 'of' | 'in' | 'within' | 'on' | 'in' | 'of' | 'with' | 'by' | 'for' | 'by' | 'if' | 'that' | 'for' | 'in' | 'in' | 'of' | 'at' | 'at' | 'before' | 'of' | 'of' | 'of' | 'that' | 'in' | 'of' | 'of' | 'of' | 'during' | 'of' | 'for' | 'before' | 'for' | 'of' | 'during' | 'of' | 'for' | 'that' | 'in' | 'on' | 'with' | 'from' | 'through' | 'that' | 'of' | 'in' | 'for' | 'during' | 'of' | 'for' | 'of' | 'that' | 'in' | 'on' | 'of' | 'on' | 'in' | 'with' | 'that' | 'that' | 'in' | 'by' | 'of' | 'that' | 'of' | 'by' | 'that' | 'in' | 'of' | 'with' | 'in' | 'for' | 'with' | 'by' | 'of' | 'by' | 'after' | 'during' | 'of' | 'of' | 'in' | 'of' | 'of' | 'of' | 'of' | 'of' | 'without' | 'as' | 'as' | 'in' | 'of' | 'in' | 'besides' | 'if' | 'of' | 'as' | 'that' | 'in' | 'with' | 'of' | 'upon' | 'with' | 'with' | 'that' | 'after' | 'of' | 'with' | 'of' | 'than' | 'if' | 'than' | 'of' | 'although' | 'of' | 'in' | 'of' | 'with' | 'from' | 'beneath' | 'in' | 'before' | 'from' | 'from' | 'by' | 'in' | 'for' | 'because' | 'until' | 'with' | 'at' | 'in' | 'as' | 'in' | 'at' | 'by' | 'that' | 'of' | 'as' | 'that' | 'on' | 'for' | 'that' | 'for' | 'as' | 'in' | 'of' | 'although' | 'for' | 'that' | 'although' | 'until' | 'of' | 'of' | 'for' | 'with' | 'of' | 'in' | 'at' | 'that' | 'in' | 'that' | 'in' | 'with' | 'of' | 'of' | 'as' | 'of' | 'from' | 'of' | 'as' | 'of' | 'of' | 'in' | 'of' | 'as' | 'on' | 'at' | 'as' | 'than' | 'of' | 'in' | 'during' | 'of' | 'in' | 'of' | 'in' | 'if' | 'into' | 'for' | 'as' | 'from' | 'by' | 'that' | 'by' | 'on' | 'of' | 'of' | 'that' | 'in' | 'of' | 'before' | 'as' | 'of' | 'in' | 'of' | 'of' | 'that' | 'until' | 'by' | 'with' | 'of' | 'although' | 'unlike' | 'of' | 'as' | 'with' | 'as' | 'although' | 'than' | 'of' | 'of' | 'before' | 'in' | 'in' | 'of' | 'in' | 'on' | 'for' | 'before' | 'by' | 'of' | 'from' | 'by' | 'of' | 'of' | 'of' | 'with' | 'from' | 'that' | 'before' | 'with' | 'by' | 'of' | 'of' | 'on' | 'of' | 'from' | 'on' | 'that' | 'of' | 'beyond' | 'in' | 'by' | 'that' | 'of' | 'in' | 'at' | 'on' | 'by' | 'as' | 'in' | 'with' | 'by' | 'in' | 'of' | 'unlike' | 'of' | 'of' | 'on' | 'of' | 'of' | 'although' | 'of' | 'with' | 'with' | 'of' | 'from' | 'of' | 'of' | 'as' | 'with' | 'at' | 'as' | 'by' | 'from' | 'as' | 'into' | 'between' | 'at' | 'that' | 'although' | 'of' | 'by' | 'that' | 'through' | 'as' | 'with' | 'of' | 'of' | 'that' | 'until' | 'while' | 'by' | 'of' | 'by' | 'of' | 'after' | 'that' | 'that' | 'of' | 'about' | 'at' | 'of' | 'before' | 'by' | 'as' | 'on' | 'of' | 'with' | 'by' | 'of' | 'that' | 'of' | 'out' | 'after' | 'of' | 'at' | 'of' | 'that' | 'at' | 'of' | 'from' | 'in' | 'like' | 'of' | 'at' | 'in' | 'unlike' | 'of' | 'by' | 'that' | 'on' | 'by' | 'as' | 'with' | 'that' | 'of' | 'in' | 'of' | 'in' | 'of' | 'that' | 'in' | 'of' | 'by' | 'in' | 'with' | 'with' | 'of' | 'among' | 'although' | 'by' | 'of' | 'for' | 'during' | 'of' | 'with' | 'in' | 'in' | 'that' | 'that' | 'than' | 'in' | 'while' | 'in' | 'of' | 'as' | 'before' | 'for' | 'from' | 'of' | 'of' | 'in' | 'because' | 'in' | 'of' | 'through' | 'of' | 'of' | 'at' | 'in' | 'into' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'with' | 'over' | 'of' | 'with' | 'at' | 'at' | 'of' | 'at' | 'as' | 'of' | 'as' | 'on' | 'than' | 'of' | 'for' | 'of' | 'with' | 'of' | 'while' | 'upon' | 'of' | 'of' | 'of' | 'of' | 'of' | 'that' | 'by' | 'with' | 'with' | 'of' | 'without' | 'except' | 'in' | 'as' | 'for' | 'of' | 'of' | 'that' | 'of' | 'besides' | 'with' | 'of' | 'as' | 'than' | 'upon' | 'of' | 'with' | 'around' | 'of' | 'like' | 'upon' | 'from' | 'that' | 'upon' | 'with' | 'that' | 'in' | 'beyond' | 'of' | 'of' | 'on' | 'like' | 'on' | 'that' | 'of' | 'of' | 'from' | 'with' | 'except' | 'through' | 'by' | 'than' | 'of' | 'among' | 'of' | 'of' | 'for' | 'of' | 'of' | 'for' | 'upon' | 'of' | 'of' | 'of' | 'on' | 'of' | 'of' | 'of' | 'in' | 'of' | 'of' | 'in' | 'with' | 'if' | 'in' | 'from' | 'as' | 'in' | 'with' | 'with' | 'allow' | 'in' | 'of' | 'in' | 'for' | 'for' | 'in' | 'before' | 'of' | 'on' | 'as' | 'of' | 'as' | 'of' | 'from' | 'in' | 'for' | 'in' | 'by' | 'by' | 'in' | 'of' | 'with' | 'of' | 'before' | 'in' | 'by' | 'of' | 'of' | 'by' | 'of' | 'of' | 'for' | 'for' | 'into' | 'that' | 'from' | 'of' | 'that' | 'than' | 'against' | 'of' | 'at' | 'of' | 'at' | 'around' | 'for' | 'after' | 'in' | 'of' | 'of' | 'with' | 'in' | 'of' | 'at' | 'in' | 'of' | 'by' | 'of' | 'with' | 'by' | 'that' | 'that' | 'on' | 'of' | 'in' | 'by' | 'of' | 'in' | 'as' | 'of' | 'of' | 'as' | 'of' | 'during' | 'while' | 'for' | 'of' | 'of' | 'by' | 'that' | 'from' | 'in' | 'of' | 'by' | 'of' | 'of' | 'in' | 'for' | 'towards' | 'at' | 'of' | 'for' | 'during' | 'in' | 'of' | 'in' | 'of' | 'before' | 'of' | 'at' | 'as' | 'of' | 'that' | 'by' | 'by' | 'of' | 'of' | 'in' | 'of' | 'in' | 'in' | 'of' | 'of' | 'of' | 'of' | 'on' | 'of' | 'at' | 'of' | 'within' | 'of' | 'with' | 'of' | 'for' | 'of' | 'in' | 'in' | 'for' | 'of' | 'on' | 'before' | 'from' | 'in' | 'of' | 'by' | 'under' | 'of' | 'with' | 'in' | 'of' | 'through' | 'across' | 'of' | 'into' | 'of' | 'with' | 'until' | 'of' | 'before' | 'that' | 'with' | 'in' | 'of' | 'in' | 'of' | 'with' | 'through' | 'of' | 'with' | 'of' | 'of' | 'of' | 'while' | 'in' | 'that' | 'of' | 'if' | 'for' | 'that' | 'in' | 'of' | 'if' | 'by' | 'until' | 'with' | 'by' | 'from' | 'of' | 'at' | 'of' | 'of' | 'into' | 'from' | 'of' | 'in' | 'while' | 'of' | 'with' | 'that' | 'if' | 'for' | 'before' | 'as' | 'at' | 'at' | 'up' | 'of' | 'by' | 'for' | 'before' | 'of' | 'of' | 'from' | 'in' | 'in' | 'that' | 'for' | 'on' | 'that' | 'with' | 'of' | 'as' | 'in' | 'of' | 'on' | 'of' | 'of' | 'while' | 'of' | 'in' | 'of' | 'of' | 'of' | 'into' | 'that' | 'of' | 'of' | 'of' | 'by' | 'with' | 'after' | 'that' | 'that' | 'at' | 'that' | 'for' | 'in' | 'under' | 'of' | 'at' | 'with' | 'of' | 'at' | 'in' | 'of' | 'that' | 'in' | 'in' | 'by' | 'of' | 'into' | 'of' | 'of' | 'of' | 'at' | 'with' | 'of' | 'with' | 'of' | 'of' | 'for' | 'in' | 'at' | 'about' | 'from' | 'of' | 'with' | 'with' | 'of' | 'of' | 'of' | 'into' | 'of' | 'for' | 'after' | 'of' | 'in' | 'that' | 'in' | 'at' | 'of' | 'of' | 'from' | 'of' | 'of' | 'as' | 'as' | 'before' | 'within' | 'in' | 'in' | 'of' | 'of' | 'in' | 'of' | 'of' | 'of' | 'during' | 'for' | 'on' | 'of' | 'with' | 'in' | 'of' | 'at' | 'of' | 'of' | 'of' | 'of' | 'upon' | 'in' | 'of' | 'in' | 'of' | 'that' | 'into' | 'in' | 'of' | 'besides' | 'of' | 'upon' | 'that' | 'in' | 'of' | 'with' | 'for' | 'out' | 'of' | 'with' | 'among' | 'with' | 'in' | 'than' | 'upon' | 'with' | 'into' | 'of' | 'towards' | 'of' | 'without' | 'as' | 'at' | 'unlike' | 'with' | 'in' | 'on' | 'of' | 'of' | 'of' | 'of' | 'upon' | 'from' | 'of' | 'from' | 'taught' | 'above' | 'of' | 'of' | 'of' | 'of' | 'with' | 'of' | 'of' | 'in' | 'of' | 'of' | 'in' | 'for' | 'within' | 'for' | 'as' | 'of' | 'as' | 'as' | 'by' | 'of' | 'in' | 'of' | 'on' | 'if' | 'by' | 'for' | 'with' | 'as' | 'into' | 'as' | 'of' | 'that' | 'of' | 'with' | 'of' | 'as' | 'like' | 'by' | 'in' | 'from' | 'in' | 'from' | 'of' | 'by' | 'of' | 'with' | 'from' | 'of' | 'as' | 'of' | 'for' | 'like' | 'of' | 'of' | 'within' | 'after' | 'in' | 'in' | 'of' | 'from' | 'at' | 'that' | 'in' | 'with' | 'of' | 'that' | 'in' | 'in' | 'of' | 'with' | 'of' | 'in' | 'of' | 'of' | 'in' | 'of' | 'in' | 'as' | 'in' | 'that' | 'from' | 'in' | 'in' | 'after' | 'of' | 'from' | 'of' | 'of' | 'of' | 'that' | 'with' | 'of' | 'from' | 'at' | 'in' | 'for' | 'with' | 'for' | 'for' | 'with' | 'besides' | 'that' | 'with' | 'that' | 'until' | 'in' | 'in' | 'of' | 'among' | 'that' | 'of' | 'in' | 'in' | 'by' | 'while' | 'of' | 'in' | 'in' | 'as' | 'for' | 'in' | 'by' | 'in' | 'of' | 'with' | 'of' | 'in' | 'of' | 'with' | 'of' | 'by' | 'for' | 'of' | 'than' | 'of' | 'of' | 'with' | 'towards' | 'by' | 'of' | 'with' | 'on' | 'by' | 'around' | 'of' | 'by' | 'with' | 'of' | 'that' | 'from' | 'with' | 'at' | 'for' | 'than' | 'of' | 'of' | 'since' | 'into' | 'at' | 'of' | 'into' | 'of' | 'that' | 'on' | 'that' | 'of' | 'of' | 'with' | 'although' | 'in' | 'that' | 'if' | 'in' | 'of' | 'of' | 'by' | 'by' | 'on' | 'although' | 'on' | 'at' | 'in' | 'than' | 'before' | 'at' | 'with' | 'as' | 'at' | 'in' | 'of' | 'in' | 'around' | 'of' | 'before' | 'with' | 'of' | 'in' | 'in' | 'of' | 'if' | 'before' | 'de' | 'in' | 'from' | 'as' | 'blind' | 'for' | 'that' | 'that' | 'in' | 'by' | 'by' | 'of' | 'of' | 'around' | 'upon' | 'of' | 'of' | 'for' | 'if' | 'in' | 'of' | 'by' | 'of' | 'on' | 'if' | 'in' | 'against' | 'in' | 'if' | 'about' | 'on' | 'that' | 'love' | 'for' | 'in' | 'of' | 'towards' | 'that' | 'that' | 'near' | 'if' | 'of' | 'of' | 'in' | 'blind' | 'of' | 'in' | 'that' | 'in' | 'from' | 'by' | 'that' | 'by' | 'from' | 'of' | 'if' | 'for' | 'although' | 'if' | 'for' | 'from' | 'of' | 'towards' | 'of' | 'with' | 'on' | 'of' | 'of' | 'of' | 'of' | 'on' | 'for' | 'on' | 'at' | 'of' | 'of' | 'in' | 'of' | 'at' | 'on' | 'out' | 'of' | 'with' | 'from' | 'in' | 'of' | 'with' | 'from' | 'as' | 'within' | 'as' | 'with' | 'on' | 'of' | 'by' | 'in' | 'in' | 'of' | 'of' | 'of' | 'with' | 'with' | 'in' | 'by' | 'of' | 'in' | 'like' | 'through' | 'with' | 'in' | 'above' | 'of' | 'amidst' | 'at' | 'in' | 'like' | 'bore' | 'within' | 'with' | 'around' | 'of' | 'with' | 'of' | 'on' | 'in' | 'of' | 'among' | 'of' | 'from' | 'that' | 'against' | 'than' | 'against' | 'of' | 'that' | 'during' | 'in' | 'on' | 'of' | 'of' | 'at' | 'that' | 'in' | 'that' | 'in' | 'in' | 'of' | 'by' | 'of' | 'for' | 'after' | 'by' | 'in' | 'into' | 'of' | 'by' | 'of' | 'before' | 'from' | 'that' | 'from' | 'in' | 'of' | 'towards' | 'at' | 'into' | 'in' | 'of' | 'that' | 'in' | 'of' | 'of' | 'by' | 'near' | 'into' | 'as' | 'of' | 'from' | 'that' | 'of' | 'after' | 'with' | 'as' | 'that' | 'that' | 'from' | 'of' | 'that' | 'of' | 'that' | 'of' | 'of' | 'in' | 'that' | 'from' | 'with' | 'of' | 'from' | 'as' | 'in' | 'for' | 'of' | 'of' | 'for' | 'of' | 'in' | 'in' | 'of' | 'that' | 'for' | 'of' | 'by' | 'of' | 'of' | 'of' | 'of' | 'of' | 'of' | 'that' | 'of' | 'as' | 'of' | 'around' | 'after' | 'of' | 'in' | 'with' | 'until' | 'as' | 'from' | 'in' | 'along' | 'like' | 'of' | 'in' | 'that' | 'of' | 'of' | 'with' | 'around' | 'on' | 'of' | 'of' | 'at' | 'with' | 'by' | 'with' | 'as' | 'that' | 'of' | 'for' | 'in' | 'with' | 'before' | 'from' | 'of' | 'at' | 'length' | 'of' | 'from' | 'that' | 'with' | 'than' | 'among' | 'upon' | 'from' | 'of' | 'of' | 'as' | 'of' | 'that' | 'in' | 'of' | 'that' | 'through' | 'from' | 'from' | 'for' | 'although' | 'towards' | 'that' | 'of' | 'with' | 'for' | 'of' | 'on' | 'for' | 'from' | 'that' | 'from' | 'that' | 'in' | 'at' | 'of' | 'of' | 'around' | 'around' | 'of' | 'on' | 'of' | 'of' | 'within' | 'of' | 'in' | 'of' | 'from' | 'of' | 'from' | 'on' | 'of' | 'in' | 'of' | 'during' | 'by' | 'from' | 'of' | 'that' | 'through' | 'after' | 'of' | 'of' | 'by' | 'of' | 'of' | 'of' | 'within' | 'by' | 'of' | 'by' | 'with' | 'towards' | 'upon' | 'among' | 'of' | 'until' | 'by' | 'into' | 'of' | 'with' | 'of' | 'that' | 'under' | 'of' | 'towards' | 'as' | 'if' | 'from' | 'in' | 'along' | 'of' | 'into' | 'from' | 'with' | 'from' | 'of' | 'by' | 'in' | 'by' | 'of' | 'from' | 'on' | 'from' | 'towards' | 'of' | 'near' | 'at' | 'with' | 'into' | 'of' | 'from' | 'as' | 'under' | 'of' | 'of' | 'before' | 'of' | 'by' | 'of' | 'overcame' | 'for' | 'in' | 'whether' | 'through' | 'at' | 'of' | 'by' | 'of' | 'of' | 'for' | 'as' | 'for' | 'after' | 'by' | 'of' | 'that' | 'for' | 'of' | 'near' | 'in' | 'from' | 'of' | 'among' | 'in' | 'by' | 'of' | 'of' | 'behind' | 'of' | 'at' | 'from' | 'of' | 'by' | 'of' | 'into' | 'with' | 'of' | 'as' | 'on' | 'that' | 'of' | 'if' | 'as' | 'in' | 'by' | 'on' | 'as' | 'as' | 'before' | 'from' | 'of' | 'with' | 'towards' | 'with' | 'in' | 'at' | 'on' | 'with' | 'as' | 'on' | 'on' | 'of' | 'in' | 'of' | 'for' | 'with' | 'on' | 'by' | 'that' | 'of' | 'that' | 'that' | 'in' | 'that' | 'of' | 'of' | 'that' | 'with' | 'at' | 'of' | 'in' | 'among' | 'in' | 'while' | 'by' | 'on' | 'as' | 'of' | 'in' | 'of' | 'of' | 'on' | 'over' | 'near' | 'of' | 'from' | 'of' | 'through' | 'if' | 'within' | 'because' | 'of' | 'that' | 'in' | 'of' | 'of' | 'over' | 'in' | 'of' | 'of' | 'for' | 'at' | 'towards' | 'through' | 'by' | 'until' | 'with' | 'with' | 'as' | 'as' | 'of' | 'upon' | 'in' | 'of' | 'of' | 'for' | 'with' | 'in' | 'of' | 'for' | 'of' | 'as' | 'of' | 'in' | 'while' | 'among' | 'as' | 'within' | 'from' | 'of' | 'in' | 'in' | 'of' | 'with' | 'because' | 'by' | 'that' | 'than' | 'if' | 'into' | 'of' | 'of' | 'with' | 'in' | 'of' | 'of' | 'upon' | 'with' | 'of' | 'at' | 'that' | 'of' | 'if' | 'because' | 'at' | 'until' | 'so' | 'that' | 'of' | 'as' | 'into' | 'for' | 'for' | 'that' | 'of' | 'if' | 'of' | 'for' | 'with' | 'in' | 'of' | 'of' | 'of' | 'as' | 'that' | 'from' | 'on' | 'from' | 'for' | 'that' | 'of' | 'of' | 'of' | 'that' | 'in' | 'of' | 'as' | 'of' | 'that' | 'in' | 'of' | 'if' | 'of' | 'that' | 'of' | 'afford' | 'of' | 'as' | 'with' | 'of' | 'on' | 'as' | 'on' | 'that' | 'in' | 'of' | 'as' | 'in' | 'from' | 'of' | 'in' | 'of' | 'for' | 'of' | 'in' | 'with' | 'in' | 'of' | 'for' | 'ago' | 'by' | 'by' | 'by' | 'that' | 'that' | 'with' | 'of' | 'as' | 'in' | 'of' | 'for' | 'with' | 'in' | 'upon' | 'upon' | 'of' | 'that' | 'as' | 'with' | 'from' | 'of' | 'in' | 'of' | 'by' | 'for' | 'with' | 'if' | 'of' | 'of' | 'of' | 'of' | 'that' | 'in' | 'with' | 'of' | 'of' | 'from' | 'on' | 'of' | 'of' | 'on' | 'of' | 'of' | 'by' | 'in' | 'in' | 'of' | 'from' | 'among' | 'of' | 'with' | 'after' | 'of' | 'that' | 'of' | 'that' | 'with' | 'on' | 'in' | 'of' | 'as' | 'into' | 'in' | 'by' | 'by' | 'of' | 'by' | 'of' | 'that' | 'if' | 'while' | 'with' | 'that' | 'of' | 'in' | 'with' | 'than' | 'of' | 'among' | 'of' | 'of' | 'upon' | 'of' | 'that' | 'towards' | 'as' | 'in' | 'of' | 'among' | 'of' | 'as' | 'perplexed' | 'as' | 'by' | 'of' | 'beside' | 'at' | 'as' | 'from' | 'over' | 'before' | 'on' | 'of' | 'within' | 'in' | 'about' | 'if' | 'as' | 'if' | 'in' | 'of' | 'upon' | 'of' | 'as' | 'if' | 'on' | 'before' | 'at' | 'of' | 'in' | 'on' | 'with' | 'as' | 'if' | 'under' | 'as' | 'if' | 'as' | 'if' | 'with' | 'of' | 'of' | 'before' | 'like' | 'that' | 'of' | 'after' | 'after' | 'on' | 'of' | 'that' | 'without' | 'of' | 'by' | 'of' | 'of' | 'for' | 'of' | 'from' | 'in' | 'in' | 'by' | 'of' | 'with' | 'towards' | 'of' | 'of' | 'by' | 'with' | 'overcast' | 'at' | 'in' | 'on' | 'in' | 'of' | 'of' | 'on' | 'of' | 'with' | 'after' | 'from' | 'of' | 'that' | 'for' | 'in' | 'as' | 'of' | 'if' | 'on' | 'on' | 'at' | 'that' | 'with' | 'as' | 'of' | 'of' | 'from' | 'in' | 'of' | 'that' | 'as' | 'without' | 'that' | 'with' | 'as' | 'in' | 'as' | 'in' | 'of' | 'of' | 'of' | 'than' | 'for' | 'if' | 'over' | 'of' | 'that' | 'whether' | 'of' | 'from' | 'as' | 'of' | 'that' | 'at' | 'with' | 'of' | 'that' | 'that' | 'that' | 'on' | 'with' | 'with' | 'in' | 'for' | 'of' | 'in' | 'of' | 'at' | 'of' | 'with' | 'of' | 'by' | 'if' | 'over' | 'into' | 'with' | 'with' | 'before' | 'of' | 'from' | 'upon' | 'of' | 'into' | 'with' | 'of' | 'of' | 'in' | 'of' | 'besides' | 'of' | 'in' | 'in' | 'while' | 'in' | 'of' | 'with' | 'that' | 'of' | 'with' | 'with' | 'that' | 'of' | 'during' | 'of' | 'from' | 'while' | 'in' | 'so' | 'of' | 'under' | 'while' | 'with' | 'after' | 'of' | 'in' | 'that' | 'of' | 'in' | 'of' | 'that' | 'of' | 'before' | 'of' | 'at' | 'without' | 'with' | 'in' | 'with' | 'that' | 'at' | 'with' | 'for' | 'of' | 'at' | 'of' | 'of' | 'in' | 'that' | 'of' | 'between' | 'of' | 'if' | 'at' | 'on' | 'of' | 'that' | 'with' | 'on' | 'for' | 'from' | 'for' | 'of' | 'from' | 'in' | 'with' | 'for' | 'with' | 'during' | 'of' | 'of' | 'from' | 'as' | 'by' | 'in' | 'as' | 'of' | 'with' | 'of' | 'that' | 'of' | 'through' | 'during' | 'of' | 'by' | 'of' | 'that' | 'from' | 'of' | 'in' | 'of' | 'that' | 'with' | 'at' | 'of' | 'from' | 'of' | 'in' | 'as' | 'into' | 'of' | 'with' | 'that' | 'on' | 'that' | 'with' | 'with' | 'through' | 'of' | 'of' | 'whilst' | 'after' | 'in' | 'during' | 'at' | 'for' | 'between' | 'of' | 'of' | 'of' | 'in' | 'by' | 'of' | 'in' | 'with' | 'of' | 'with' | 'of' | 'than' | 'in' | 'by' | 'in' | 'from' | 'for' | 'during' | 'at' | 'on' | 'from' | 'from' | 'at' | 'of' | 'below' | 'between' | 'of' | 'on' | 'of' | 'by' | 'of' | 'in' | 'with' | 'on' | 'of' | 'with' | 'at' | 'of' | 'of' | 'as' | 'in' | 'by' | 'at' | 'of' | 'as' | 'on' | 'in' | 'if' | 'of' | 'as' | 'if' | 'by' | 'of' | 'of' | 'for' | 'by' | 'by' | 'of' | 'of' | 'on' | 'with' | 'of' | 'by' | 'amid' | 'of' | 'of' | 'de' | 'than' | 'of' | 'in' | 'of' | 'that' | 'before' | 'at' | 'that' | 'on' | 'of' | 'of' | 'from' | 'among' | 'in' | 'of' | 'that' | 'in' | 'with' | 'than' | 'of' | 'of' | 'on' | 'of' | 'in' | 'of' | 'by' | 'of' | 'with' | 'of' | 'that' | 'for' | 'in' | 'of' | 'with' | 'with' | 'like' | 'of' | 'by' | 'from' | 'so' | 'with' | 'on' | 'of' | 'in' | 'with' | 'of' | 'of' | 'with' | 'with' | 'beyond' | 'of' | 'of' | 'for' | 'of' | 'from' | 'in' | 'at' | 'by' | 'on' | 'in' | 'of' | 'that' | 'of' | 'of' | 'by' | 'of' | 'of' | 'in' | 'at' | 'of' | 'above' | 'in' | 'of' | 'in' | 'of' | 'of' | 'at' | 'with' | 'with' | 'of' | 'for' | 'of' | 'of' | 'of' | 'that' | 'with' | 'if' | 'during' | 'of' | 'over' | 'for' | 'of' | 'on' | 'in' | 'with' | 'of' | 'of' | 'into' | 'between' | 'with' | 'of' | 'on' | 'with' | 'with' | 'in' | 'of' | 'of' | 'of' | 'in' | 'in' | 'that' | 'in' | 'of' | 'in' | 'of' | 'of' | 'of' | 'in' | 'of' | 'as' | 'that' | 'from' | 'on' | 'of' | 'by' | 'that' | 'for' | 'like' | 'of' | 'of' | 'on' | 'that' | 'in' | 'after' | 'in' | 'from' | 'in' | 'at' | 'of' | 'if' | 'as' | 'as' | 'although' | 'with' | 'in' | 'at' | 'of' | 'towards' | 'at' | 'of' | 'in' | 'at' | 'of' | 'about' | 'of' | 'in' | 'in' | 'of' | 'on' | 'of' | 'at' | 'in' | 'of' | 'of' | 'from' | 'as' | 'with' | 'of' | 'than' | 'before' | 'that' | 'after' | 'of' | 'of' | 'of' | 'of' | 'if' | 'of' | 'in' | 'beside' | 'through' | 'of' | 'into' | 'of' | 'of' | 'among' | 'by' | 'of' | 'of' | 'for' | 'during' | 'if' | 'by' | 'of' | 'in' | 'of' | 'in' | 'of' | 'that' | 'of' | 'at' | 'among' | 'of' | 'of' | 'by' | 'of' | 'on' | 'that' | 'for' | 'from' | 'of' | 'of' | 'for' | 'around' | 'with' | 'into' | 'into' | 'with' | 'of' | 'in' | 'of' | 'of' | 'on' | 'of' | 'on' | 'of' | 'of' | 'in' | 'as' | 'in' | 'at' | 'by' | 'with' | 'from' | 'in' | 'among' | 'of' | 'on' | 'of' | 'of' | 'into' | 'of' | 'than' | 'in' | 'of' | 'of' | 'in' | 'than' | 'while' | 'with' | 'among' | 'that' | 'amidst' | 'on' | 'into' | 'on' | 'in' | 'for' | 'for' | 'of' | 'for' | 'of' | 'of' | 'with' | 'on' | 'for' | 'for' | 'of' | 'in' | 'on' | 'at' | 'from' | 'for' | 'with' | 'if' | 'by' | 'of' | 'that' | 'by' | 'for' | 'as' | 'from' | 'of' | 'as' | 'if' | 'of' | 'upon' | 'as' | 'as' | 'of' | 'with' | 'like' | 'as' | 'for' | 'of' | 'of' | 'of' | 'in' | 'for' | 'with' | 'at' | 'of' | 'in' | 'through' | 'along' | 'of' | 'in' | 'with' | 'into' | 'with' | 'from' | 'that' | 'of' | 'with' | 'for' | 'with' | 'on' | 'with' | 'in' | 'than' | 'with' | 'that' | 'at' | 'in' | 'from' | 'of' | 'in' | 'that' | 'that' | 'with' | 'on' | 'of' | 'of' | 'as' | 'of' | 'for' | 'than' | 'by' | 'for' | 'for' | 'of' | 'of' | 'in' | 'from' | 'about' | 'on' | 'of' | 'of' | 'in' | 'off' | 'of' | 'by' | 'as' | 'at' | 'for' | 'of' | 'of' | 'in' | 'in' | 'on' | 'of' | 'as' | 'at' | 'of' | 'from' | 'with' | 'in' | 'by' | 'as' | 'of' | 'of' | 'in' | 'as' | 'in' | 'on' | 'for' | 'at' | 'in' | 'in' | 'during' | 'of' | 'of' | 'on' | 'of' | 'of' | 'in' | 'at' | 'of' | 'in' | 'in' | 'for' | 'from' | 'in' | 'with' | 'on' | 'from' | 'of' | 'in' | 'on' | 'towards' | 'with' | 'with' | 'of' | 'that' | 'in' | 'in' | 'from' | 'for' | 'in' | 'of' | 'of' | 'whether' | 'for' | 'by' | 'as' | 'of' | 'of' | 'before' | 'in' | 'with' | 'about' | 'of' | 'than' | 'for' | 'in' | 'of' | 'in' | 'in' | 'with' | 'before' | 'for' | 'before' | 'in' | 'with' | 'from' | 'of' | 'by' | 'of' | 'by' | 'of' | 'if' | 'of' | 'of' | 'of' | 'for' | 'of' | 'upon' | 'of' | 'of' | 'of' | 'for' | 'upon' | 'before' | 'by' | 'of' | 'by' | 'for' | 'of' | 'upon' | 'that' | 'as' | 'at' | 'of' | 'of' | 'within' | 'on' | 'by' | 'of' | 'at' | 'as' | 'on' | 'in' | 'in' | 'in' | 'in' | 'of' | 'as' | 'on' | 'of' | 'with' | 'of' | 'on' | 'of' | 'like' | 'with' | 'on' | 'on' | 'for' | 'with' | 'of' | 'in' | 'with' | 'near' | 'from' | 'of' | 'near' | 'on' | 'for' | 'under' | 'of' | 'of' | 'as' | 'although' | 'of' | 'until' | 'by' | 'of' | 'near' | 'in' | 'after' | 'of' | 'as' | 'if' | 'from' | 'of' | 'of' | 'in' | 'from' | 'by' | 'of' | 'in' | 'in' | 'from' | 'of' | 'along' | 'in' | 'that' | 'with' | 'along' | 'of' | 'among' | 'over' | 'of' | 'in' | 'of' | 'among' | 'of' | 'like' | 'in' | 'before' | 'with' | 'of' | 'that' | 'that' | 'of' | 'of' | 'of' | 'of' | 'in' | 'of' | 'in' | 'in' | 'upon' | 'in' | 'in' | 'in' | 'of' | 'for' | 'of' | 'by' | 'in' | 'from' | 'while' | 'in' | 'of' | 'than' | 'on' | 'for' | 'with' | 'of' | 'that' | 'with' | 'of' | 'with' | 'of' | 'with' | 'on' | 'before' | 'that' | 'in' | 'in' | 'across' | 'with' | 'in' | 'with' | 'of' | 'into' | 'down' | 'while' | 'with' | 'in' | 'towards' | 'of' | 'with' | 'on' | 'that' | 'for' | 'of' | 'in' | 'at' | 'of' | 'of' | 'from' | 'for' | 'from' | 'before' | 'without' | 'from' | 'if' | 'of' | 'into' | 'of' | 'of' | 'on' | 'of' | 'as' | 'between' | 'that' | 'across' | 'that' | 'on' | 'by' | 'of' | 'if' | 'under' | 'of' | 'about' | 'like' | 'from' | 'in' | 'on' | 'by' | 'of' | 'by' | 'into' | 'as' | 'if' | 'of' | 'like' | 'upon' | 'with' | 'of' | 'in' | 'like' | 'like' | 'as' | 'on' | 'with' | 'of' | 'from' | 'from' | 'that' | 'that' | 'from' | 'in' | 'into' | 'for' | 'as' | 'than' | 'by' | 'as' | 'of' | 'on' | 'as' | 'at' | 'that' | 'in' | 'at' | 'of' | 'before' | 'on' | 'for' | 'of' | 'utensils' | 'of' | 'at' | 'of' | 'of' | 'on' | 'as' | 'if' | 'of' | 'with' | 'out' | 'of' | 'that' | 'of' | 'of' | 'into' | 'with' | 'of' | 'into' | 'in' | 'upon' | 'in' | 'than' | 'in' | 'since' | 'of' | 'of' | 'before' | 'with' | 'as' | 'that' | 'with' | 'as' | 'if' | 'from' | 'before' | 'that' | 'for' | 'of' | 'for' | 'on' | 'that' | 'of' | 'in' | 'that' | 'like' | 'of' | 'from' | 'between' | 'in' | 'aboard' | 'about' | 'from' | 'from' | 'as' | 'if' | 'about' | 'of' | 'with' | 'with' | 'at' | 'before' | 'by' | 'of' | 'of' | 'into' | 'as' | 'from' | 'although' | 'by' | 'with' | 'that' | 'on' | 'in' | 'at' | 'of' | 'of' | 'as' | 'through' | 'in' | 'in' | 'that' | 'of' | 'that' | 'from' | 'from' | 'that' | 'if' | 'with' | 'before' | 'that' | 'of' | 'with' | 'with' | 'of' | 'of' | 'that' | 'of' | 'into' | 'of' | 'in' | 'around' | 'of' | 'on' | 'by' | 'before' | 'by' | 'upon' | 'of' | 'of' | 'of' | 'on' | 'into' | 'that' | 'on' | 'of' | 'before' | 'on' | 'by' | 'as' | 'towards' | 'into' | 'from' | 'of' | 'towards' | 'as' | 'by' | 'for' | 'of' | 'like' | 'of' | 'from' | 'that' | 'of' | 'in' | 'of' | 'with' | 'of' | 'towards' | 'as' | 'of' | 'near' | 'of' | 'of' | 'at' | 'from' | 'behind' | 'as' | 'in' | 'of' | 'towards' | 'as' | 'with' | 'as' | 'with' | 'at' | 'as' | 'in' | 'towards' | 'at' | 'of' | 'with' | 'at' | 'in' | 'of' | 'as' | 'that' | 'in' | 'as' | 'of' | 'with' | 'as' | 'on' | 'from' | 'on' | 'of' | 'so' | 'of' | 'of' | 'of' | 'while' | 'of' | 'in' | 'from' | 'as' | 'on' | 'of' | 'of' | 'for' | 'of' | 'of' | 'in' | 'of' | 'in' | 'from' | 'by' | 'that' | 'into' | 'in' | 'in' | 'of' | 'for' | 'of' | 'about' | 'in' | 'into' | 'of' | 'with' | 'upon' | 'with' | 'of' | 'as' | 'on' | 'about' | 'by' | 'that' | 'before' | 'with' | 'in' | 'for' | 'as' | 'at' | 'as' | 'at' | 'about' | 'on' | 'of' | 'at' | 'as' | 'along' | 'against' | 'at' | 'on' | 'by' | 'of' | 'that' | 'on' | 'of' | 'that' | 'of' | 'on' | 'by' | 'on' | 'that' | 'that' | 'of' | 'near' | 'in' | 'of' | 'for' | 'of' | 'except' | 'of' | 'on' | 'of' | 'in' | 'of' | 'of' | 'over' | 'on' | 'for' | 'with' | 'of' | 'from' | 'before' | 'of' | 'with' | 'in' | 'at' | 'from' | 'as' | 'by' | 'of' | 'in' | 'that' | 'near' | 'at' | 'of' | 'for' | 'of' | 'about' | 'before' | 'of' | 'of' | 'with' | 'in' | 'from' | 'of' | 'of' | 'into' | 'into' | 'for' | 'that' | 'with' | 'during' | 'that' | 'about' | 'for' | 'from' | 'that' | 'that' | 'from' | 'that' | 'as' | 'into' | 'of' | 'of' | 'of' | 'from' | 'on' | 'that' | 'into' | 'for' | 'that' | 'of' | 'upon' | 'by' | 'of' | 'by' | 'by' | 'during' | 'that' | 'with' | 'in' | 'about' | 'that' | 'as' | 'of' | 'on' | 'with' | 'on' | 'without' | 'of' | 'like' | 'from' | 'of' | 'before' | 'for' | 'on' | 'of' | 'that' | 'out' | 'of' | 'in' | 'for' | 'on' | 'of' | 'as' | 'of' | 'of' | 'of' | 'in' | 'of' | 'by' | 'at' | 'of' | 'with' | 'as' | 'than' | 'before' | 'into' | 'of' | 'in' | 'of' | 'for' | 'of' | 'of' | 'that' | 'like' | 'of' | 'in' | 'as' | 'from' | 'in' | 'on' | 'by' | 'of' | 'of' | 'as' | 'if' | 'around' | 'of' | 'in' | 'across' | 'in' | 'beside' | 'of' | 'of' | 'that' | 'of' | 'like' | 'of' | 'without' | 'in' | 'of' | 'in' | 'as' | 'during' | 'in' | 'with' | 'if' | 'if' | 'that' | 'for' | 'if' | 'about' | 'that' | 'for' | 'if' | 'for' | 'with' | 'of' | 'with' | 'if' | 'with' | 'from' | 'on' | 'of' | 'on' | 'of' | 'as' | 'if' | 'for' | 'with' | 'of' | 'as' | 'before' | 'around' | 'near' | 'with' | 'of' | 'for' | 'in' | 'of' | 'in' | 'of' | 'in' | 'of' | 'that' | 'in' | 'for' | 'for' | 'although' | 'of' | 'at' | 'of' | 'that' | 'with' | 'while' | 'in' | 'like' | 'in' | 'by' | 'than' | 'in' | 'with' | 'at' | 'whether' | 'of' | 'than' | 'of' | 'in' | 'that' | 'that' | 'on' | 'of' | 'that' | 'of' | 'of' | 'as' | 'by' | 'for' | 'from' | 'by' | 'of' | 'of' | 'as' | 'than' | 'by' | 'on' | 'for' | 'with' | 'of' | 'in' | 'as' | 'by' | 'across' | 'as' | 'on' | 'of' | 'at' | 'in' | 'for' | 'upon' | 'on' | 'that' | 'by' | 'of' | 'among' | 'from' | 'from' | 'since' | 'of' | 'for' | 'of' | 'than' | 'of' | 'with' | 'by' | 'of' | 'into' | 'that' | 'at' | 'with' | 'of' | 'as' | 'for' | 'with' | 'before' | 'in' | 'for' | 'with' | 'as' | 'of' | 'in' | 'that' | 'of' | 'of' | 'while' | 'from' | 'of' | 'that' | 'of' | 'with' | 'in' | 'at' | 'than' | 'of' | 'with' | 'of' | 'by' | 'on' | 'that' | 'of' | 'that' | 'at' | 'of' | 'of' | 'in' | 'of' | 'over' | 'on' | 'of' | 'for' | 'of' | 'for' | 'of' | 'in' | 'that' | 'by' | 'of' | 'like' | 'of' | 'as' | 'by' | 'that' | 'of' | 'before' | 'than' | 'into' | 'that' | 'from' | 'of' | 'that' | 'in' | 'of' | 'of' | 'although' | 'for' | 'for' | 'in' | 'of' | 'in' | 'although' | 'in' | 'of' | 'with' | 'of' | 'of' | 'as' | 'as' | 'before' | 'on' | 'on' | 'that' | 'on' | 'at' | 'of' | 'after' | 'from' | 'on' | 'from' | 'of' | 'that' | 'in' | 'for' | 'of' | 'of' | 'although' | 'upon' | 'as' | 'upon' | 'of' | 'around' | 'by' | 'of' | 'upon' | 'of' | 'in' | 'by' | 'of' | 'as' | 'in' | 'at' | 'in' | 'of' | 'of' | 'of' | 'from' | 'for' | 'with' | 'of' | 'with' | 'in' | 'of' | 'in' | 'as' | 'as' | 'in' | 'by' | 'of' | 'at' | 'from' | 'of' | 'of' | 'over' | 'that' | 'without' | 'over' | 'of' | 'in' | 'for' | 'that' | 'if' | 'of' | 'if' | 'by' | 'with' | 'of' | 'with' | 'of' | 'that' | 'of' | 'for' | 'of' | 'upon' | 'as' | 'with' | 'on' | 'for' | 'with' | 'from' | 'on' | 'at' | 'of' | 'from' | 'with' | 'that' | 'in' | 'of' | 'in' | 'from' | 'of' | 'that' | 'by' | 'that' | 'of' | 'in' | 'while' | 'with' | 'in' | 'of' | 'for' | 'on' | 'of' | 'in' | 'of' | 'upon' | 'since' | 'from' | 'in' | 'of' | 'of' | 'for' | 'by' | 'of' | 'that' | 'for' | 'of' | 'by' | 'of' | 'from' | 'towards' | 'by' | 'of' | 'in' | 'from' | 'in' | 'over' | 'above' | 'of' | 'that' | 'between' | 'of' | 'of' | 'by' | 'that' | 'that' | 'before' | 'of' | 'in' | 'of' | 'among' | 'as' | 'of' | 'that' | 'among' | 'in' | 'from' | 'in' | 'at' | 'by' | 'that' | 'of' | 'of' | 'of' | 'if' | 'as' | 'as' | 'for' | 'of' | 'by' | 'during' | 'at' | 'as' | 'of' | 'that' | 'during' | 'of' | 'of' | 'in' | 'that' | 'in' | 'besides' | 'with' | 'of' | 'for' | 'like' | 'from' | 'of' | 'in' | 'of' | 'upon' | 'with' | 'of' | 'of' | 'of' | 'by' | 'by' | 'of' | 'that' | 'of' | 'of' | 'as' | 'of' | 'in' | 'of' | 'as' | 'in' | 'in' | 'of' | 'for' | 'of' | 'by' | 'of' | 'than' | 'since' | 'of' | 'before' | 'on' | 'from' | 'from' | 'at' | 'at' | 'in' | 'than' | 'than' | 'as' | 'by' | 'in' | 'that' | 'of' | 'that' | 'that' | 'by' | 'at' | 'upon' | 'that' | 'with' | 'before' | 'if' | 'from' | 'that' | 'with' | 'in' | 'of' | 'during' | 'that' | 'of' | 'since' | 'as' | 'during' | 'as' | 'as' | 'without' | 'by' | 'with' | 'of' | 'at' | 'that' | 'from' | 'of' | 'that' | 'in' | 'of' | 'although' | 'that' | 'that' | 'in' | 'of' | 'as' | 'that' | 'unless' | 'of' | 'that' | 'as' | 'by' | 'by' | 'of' | 'for' | 'by' | 'that' | 'for' | 'by' | 'if' | 'in' | 'that' | 'on' | 'until' | 'if' | 'of' | 'if' | 'on' | 'by' | 'of' | 'in' | 'before' | 'of' | 'with' | 'on' | 'on' | 'from' | 'of' | 'on' | 'by' | 'in' | 'if' | 'at' | 'over' | 'at' | 'if' | 'as' | 'before' | 'except' | 'in' | 'by' | 'of' | 'until' | 'into' | 'of' | 'from' | 'if' | 'whether' | 'if' | 'that' | 'by' | 'of' | 'with' | 'on' | 'as' | 'in' | 'for' | 'if' | 'that' | 'with' | 'after' | 'of' | 'that' | 'if' | 'with' | 'against' | 'in' | 'of' | 'for' | 'on' | 'that' | 'in' | 'for' | 'with' | 'from' | 'at' | 'that' | 'of' | 'after' | 'for' | 'between' | 'until' | 'in' | 'about' | 'after' | 'of' | 'with' | 'in' | 'as' | 'in' | 'of' | 'before' | 'of' | 'for' | 'as' | 'with' | 'of' | 'with' | 'at' | 'by' | 'of' | 'from' | 'by' | 'with' | 'in' | 'with' | 'for' | 'with' | 'for' | 'for' | 'of' | 'in' | 'of' | 'after' | 'of' | 'with' | 'on' | 'with' | 'on' | 'in' | 'of' | 'for' | 'by' | 'of' | 'of' | 'of' | 'of' | 'of' | 'that' | 'as' | 'in' | 'of' | 'as' | 'that' | 'with' | 'on' | 'as' | 'if' | 'of' | 'with' | 'with' | 'with' | 'that' | 'if' | 'in' | 'as' | 'if' | 'for' | 'of' | 'from' | 'over' | 'than' | 'as' | 'if' | 'of' | 'that' | 'that' | 'of' | 'as' | 'for' | 'whether' | 'from' | 'within' | 'by' | 'of' | 'of' | 'of' | 'with' | 'with' | 'that' | 'into' | 'for' | 'as' | 'in' | 'with' | 'into' | 'of' | 'although' | 'as' | 'of' | 'through' | 'of' | 'of' | 'by' | 'on' | 'of' | 'that' | 'after' | 'of' | 'beside' | 'near' | 'in' | 'in' | 'about' | 'on' | 'by' | 'of' | 'as' | 'as' | 'as' | 'while' | 'for' | 'in' | 'of' | 'as' | 'for' | 'of' | 'as' | 'on' | 'of' | 'of' | 'on' | 'in' | 'in' | 'of' | 'in' | 'of' | 'of' | 'after' | 'at' | 'that' | 'by' | 'that' | 'at' | 'on' | 'on' | 'of' | 'during' | 'of' | 'from' | 'by' | 'of' | 'while' | 'of' | 'on' | 'of' | 'of' | 'at' | 'of' | 'that' | 'in' | 'of' | 'if' | 'from' | 'that' | 'at' | 'that' | 'if' | 'in' | 'on' | 'before' | 'above' | 'of' | 'of' | 'at' | 'in' | 'that' | 'at' | 'from' | 'upon' | 'for' | 'in' | 'in' | 'through' | 'of' | 'of' | 'of' | 'of' | 'under' | 'of' | 'above' | 'by' | 'along' | 'with' | 'at' | 'among' | 'as' | 'from' | 'of' | 'beneath' | 'as' | 'as' | 'for' | 'on' | 'of' | 'in' | 'in' | 'with' | 'in' | 'in' | 'across' | 'than' | 'of' | 'while' | 'of' | 'by' | 'of' | 'during' | 'as' | 'of' | 'in' | 'while' | 'in' | 'that' | 'from' | 'until' | 'that' | 'of' | 'for' | 'in' | 'in' | 'that' | 'in' | 'of' | 'until' | 'as' | 'of' | 'down' | 'of' | 'of' | 'that' | 'of' | 'from' | 'into' | 'as' | 'into' | 'of' | 'in' | 'in' | 'of' | 'for' | 'into' | 'of' | 'on' | 'across' | 'by' | 'by' | 'on' | 'for' | 'on' | 'by' | 'of' | 'of' | 'as' | 'of' | 'from' | 'of' | 'from' | 'in' | 'as' | 'upon' | 'across' | 'towards' | 'with' | 'of' | 'that' | 'in' | 'of' | 'on' | 'from' | 'while' | 'over' | 'in' | 'of' | 'of' | 'before' | 'of' | 'on' | 'of' | 'with' | 'of' | 'at' | 'on' | 'of' | 'as' | 'with' | 'towards' | 'of' | 'towards' | 'from' | 'from' | 'with' | 'of' | 'into' | 'of' | 'into' | 'with' | 'in' | 'after' | 'of' | 'by' | 'after' | 'in' | 'among' | 'from' | 'like' | 'of' | 'at' | 'in' | 'of' | 'with' | 'of' | 'in' | 'on' | 'of' | 'round' | 'as' | 'if' | 'that' | 'after' | 'as' | 'if' | 'by' | 'into' | 'of' | 'around' | 'over' | 'on' | 'in' | 'of' | 'of' | 'of' | 'of' | 'of' | 'at' | 'that' | 'from' | 'of' | 'under' | 'at' | 'with' | 'by' | 'in' | 'by' | 'for' | 'from' | 'in' | 'of' | 'that' | 'of' | 'upon' | 'that' | 'if' | 'in' | 'before' | 'in' | 'of' | 'from' | 'for' | 'in' | 'as' | 'before' | 'by' | 'as' | 'as' | 'before' | 'from' | 'of' | 'as' | 'in' | 'of' | 'upon' | 'of' | 'that' | 'by' | 'in' | 'of' | 'at' | 'under' | 'that' | 'in' | 'for' | 'than' | 'on' | 'with' | 'in' | 'of' | 'on' | 'in' | 'under' | 'around' | 'of' | 'from' | 'in' | 'in' | 'of' | 'that' | 'upon' | 'that' | 'in' | 'with' | 'of' | 'in' | 'by' | 'of' | 'from' | 'for' | 'during' | 'as' | 'as' | 'at' | 'as' | 'of' | 'upon' | 'on' | 'into' | 'for' | 'by' | 'of' | 'that' | 'within' | 'on' | 'on' | 'of' | 'for' | 'about' | 'after' | 'in' | 'that' | 'that' | 'of' | 'that' | 'for' | 'of' | 'with' | 'on' | 'that' | 'that' | 'in' | 'for' | 'for' | 'as' | 'in' | 'for' | 'with' | 'with' | 'into' | 'at' | 'as' | 'with' | 'at' | 'with' | 'on' | 'for' | 'upon' | 'as' | 'that' | 'as' | 'from' | 'of' | 'on' | 'in' | 'of' | 'with' | 'of' | 'of' | 'upon' | 'in' | 'of' | 'in' | 'of' | 'of' | 'since' | 'of' | 'that' | 'near' | 'if' | 'in' | 'like' | 'as' | 'of' | 'with' | 'as' | 'in' | 'if' | 'in' | 'that' | 'from' | 'that' | 'while' | 'that' | 'of' | 'of' | 'while' | 'that' | 'of' | 'that' | 'upon' | 'in' | 'with' | 'of' | 'as' | 'in' | 'of' | 'of' | 'by' | 'than' | 'of' | 'of' | 'of' | 'as' | 'as' | 'of' | 'in' | 'of' | 'from' | 'on' | 'of' | 'in' | 'by' | 'with' | 'at' | 'in' | 'with' | 'of' | 'with' | 'with' | 'of' | 'in' | 'upon' | 'for' | 'in' | 'by' | 'of' | 'of' | 'as' | 'at' | 'of' | 'except' | 'of' | 'by' | 'of' | 'around' | 'of' | 'at' | 'on' | 'with' | 'by' | 'on' | 'by' | 'near' | 'by' | 'that' | 'by' | 'over' | 'until' | 'in' | 'for' | 'behold' | 'of' | 'from' | 'on' | 'of' | 'on' | 'of' | 'in' | 'of' | 'with' | 'that' | 'of' | 'as' | 'through' | 'of' | 'by' | 'on' | 'as' | 'if' | 'with' | 'in' | 'by' | 'that' | 'that' | 'for' | 'in' | 'towards' | 'from' | 'of' | 'upon' | 'as' | 'with' | 'than' | 'for' | 'by' | 'of' | 'by' | 'by' | 'in' | 'for' | 'in' | 'of' | 'although' | 'in' | 'by' | 'of' | 'that' | 'if' | 'of' | 'on' | 'of' | 'on' | 'on' | 'by' | 'about' | 'with' | 'of' | 'from' | 'by' | 'under' | 'for' | 'in' | 'as' | 'of' | 'that' | 'by' | 'that' | 'by' | 'of' | 'as' | 'that' | 'of' | 'in' | 'on' | 'with' | 'of' | 'by' | 'with' | 'that' | 'after' | 'with' | 'for' | 'as' | 'during' | 'alone' | 'of' | 'that' | 'of' | 'under' | 'during' | 'by' | 'of' | 'for' | 'in' | 'of' | 'of' | 'by' | 'that' | 'until' | 'that' | 'in' | 'of' | 'for' | 'as' | 'that' | 'at' | 'within' | 'in' | 'towards' | 'of' | 'as' | 'by' | 'as' | 'of' | 'of' | 'than' | 'as' | 'of' | 'in' | 'on' | 'of' | 'in' | 'over' | 'in' | 'of' | 'of' | 'of' | 'near' | 'if' | 'on' | 'for' | 'until' | 'until' | 'with' | 'for' | 'of' | 'as' | 'in' | 'in' | 'of' | 'from' | 'for' | 'with' | 'from' | 'of' | 'of' | 'with' | 'of' | 'that' | 'in' | 'in' | 'for' | 'upon' | 'by' | 'in' | 'on' | 'with' | 'until' | 'at' | 'of' | 'unlike' | 'of' | 'with' | 'from' | 'by' | 'for' | 'from' | 'of' | 'with' | 'of' | 'with' | 'for' | 'in' | 'with' | 'before' | 'with' | 'whether' | 'as' | 'before' | 'in' | 'on' | 'so' | 'that' | 'in' | 'before' | 'with' | 'on' | 'in' | 'at' | 'on' | 'of' | 'before' | 'with' | 'of' | 'through' | 'of' | 'of' | 'in' | 'on' | 'of' | 'of' | 'across' | 'in' | 'that' | 'by' | 'of' | 'by' | 'on' | 'of' | 'across' | 'of' | 'that' | 'of' | 'of' | 'at' | 'that' | 'like' | 'after' | 'during' | 'of' | 'for' | 'for' | 'for' | 'of' | 'of' | 'from' | 'since' | 'of' | 'within' | 'of' | 'of' | 'of' | 'by' | 'of' | 'that' | 'in' | 'of' | 'upon' | 'of' | 'from' | 'after' | 'with' | 'of' | 'under' | 'before' | 'with' | 'upon' | 'of' | 'of' | 'within' | 'with' | 'that' | 'of' | 'by' | 'until' | 'for' | 'of' | 'after' | 'of' | 'except' | 'at' | 'for' | 'with' | 'on' | 'after' | 'at' | 'than' | 'within' | 'within' | 'of' | 'of' | 'than' | 'of' | 'as' | 'on' | 'in' | 'as' | 'with' | 'of' | 'with' | 'in' | 'between' | 'on' | 'of' | 'for' | 'in' | 'of' | 'under' | 'of' | 'at' | 'of' | 'that' | 'at' | 'of' | 'by' | 'with' | 'in' | 'of' | 'if' | 'of' | 'than' | 'with' | 'on' | 'under' | 'into' | 'for' | 'in' | 'if' | 'that' | 'that' | 'in' | 'of' | 'that' | 'if' | 'if' | 'of' | 'that' | 'that' | 'over' | 'of' | 'over' | 'as' | 'of' | 'on' | 'of' | 'of' | 'into' | 'near' | 'in' | 'with' | 'like' | 'with' | 'at' | 'with' | 'with' | 'with' | 'in' | 'with' | 'of' | 'like' | 'of' | 'as' | 'on' | 'with' | 'of' | 'that' | 'of' | 'of' | 'from' | 'of' | 'of' | 'than' | 'in' | 'from' | 'of' | 'on' | 'for' | 'that' | 'in' | 'in' | 'with' | 'since' | 'that' | 'while' | 'that' | 'of' | 'by' | 'for' | 'so' | 'of' | 'of' | 'that' | 'of' | 'that' | 'in' | 'with' | 'from' | 'for' | 'that' | 'of' | 'from' | 'of' | 'that' | 'as' | 'as' | 'on' | 'of' | 'of' | 'without' | 'in' | 'of' | 'in' | 'of' | 'for' | 'of' | 'for' | 'of' | 'of' | 'for' | 'in' | 'on' | 'than' | 'of' | 'with' | 'of' | 'in' | 'of' | 'in' | 'as' | 'like' | 'in' | 'of' | 'by' | 'of' | 'of' | 'without' | 'while' | 'in' | 'in' | 'with' | 'of' | 'from' | 'with' | 'if' | 'as' | 'in' | 'of' | 'on' | 'until' | 'for' | 'with' | 'on' | 'for' | 'of' | 'that' | 'as' | 'by' | 'of' | 'over' | 'of' | 'with' | 'as' | 'of' | 'unless' | 'of' | 'in' | 'of' | 'with' | 'through' | 'from' | 'of' | 'of' | 'in' | 'in' | 'if' | 'in' | 'with' | 'on' | 'by' | 'whether' | 'that' | 'by' | 'of' | 'of' | 'towards' | 'for' | 'in' | 'that' | 'of' | 'through' | 'if' | 'of' | 'of' | 'of' | 'by' | 'of' | 'in' | 'than' | 'with' | 'with' | 'as' | 'if' | 'in' | 'of' | 'with' | 'of' | 'while' | 'of' | 'before' | 'of' | 'of' | 'with' | 'by' | 'of' | 'that' | 'although' | 'that' | 'by' | 'of' | 'in' | 'of' | 'in' | 'of' | 'of' | 'in' | 'in' | 'into' | 'in' | 'of' | 'as' | 'of' | 'by' | 'of' | 'into' | 'that' | 'by' | 'in' | 'in' | 'in' | 'that' | 'if' | 'as' | 'into' | 'after' | 'that' | 'with' | 'if' | 'of' | 'if' | 'in' | 'in' | 'before' | 'at' | 'with' | 'towards' | 'of' | 'so' | 'from' | 'because' | 'as' | 'because' | 'of' | 'because' | 'at' | 'because' | 'for' | 'for' | 'as' | 'of' | 'as' | 'for' | 'of' | 'with' | 'of' | 'if' | 'of' | 'as' | 'of' | 'than' | 'as' | 'of' | 'as' | 'if' | 'that' | 'with' | 'of' | 'on' | 'as' | 'on' | 'with' | 'in' | 'with' | 'of' | 'that' | 'at' | 'of' | 'that' | 'if' | 'that' | 'that' | 'with' | 'in' | 'of' | 'than' | 'by' | 'of' | 'if' | 'by' | 'than' | 'with' | 'of' | 'while' | 'like' | 'at' | 'as' | 'in' | 'in' | 'as' | 'by' | 'in' | 'that' | 'behind' | 'with' | 'from' | 'on' | 'that' | 'of' | 'from' | 'of' | 'because' | 'if' | 'by' | 'with' | 'from' | 'for' | 'before' | 'that' | 'at' | 'with' | 'in' | 'that' | 'by' | 'in' | 'near' | 'on' | 'that' | 'in' | 'that' | 'in' | 'of' | 'that' | 'of' | 'in' | 'of' | 'during' | 'in' | 'in' | 'of' | 'as' | 'in' | 'towards' | 'of' | 'because' | 'of' | 'by' | 'in' | 'for' | 'in' | 'for' | 'that' | 'of' | 'by' | 'by' | 'that' | 'of' | 'with' | 'of' | 'of' | 'by' | 'of' | 'for' | 'by' | 'that' | 'of' | 'in' | 'for' | 'of' | 'before' | 'in' | 'if' | 'of' | 'in' | 'in' | 'as' | 'at' | 'by' | 'into' | 'about' | 'while' | 'of' | 'from' | 'on' | 'of' | 'of' | 'that' | 'by' | 'of' | 'on' | 'as' | 'of' | 'from' | 'of' | 'with' | 'of' | 'whether' | 'without' | 'of' | 'over' | 'in' | 'in' | 'as' | 'over' | 'by' | 'of' | 'in' | 'like' | 'of' | 'of' | 'of' | 'as' | 'of' | 'with' | 'on' | 'on' | 'with' | 'of' | 'by' | 'of' | 'in' | 'of' | 'that' | 'by' | 'of' | 'of' | 'in' | 'by' | 'of' | 'in' | 'on' | 'at' | 'in' | 'of' | 'of' | 'if' | 'of' | 'of' | 'before' | 'that' | 'in' | 'of' | 'of' | 'during' | 'of' | 'on' | 'while' | 'with' | 'that' | 'of' | 'of' | 'by' | 'of' | 'without' | 'as' | 'after' | 'of' | 'that' | 'at' | 'of' | 'of' | 'for' | 'while' | 'upon' | 'in' | 'from' | 'of' | 'with' | 'for' | 'that' | 'that' | 'for' | 'of' | 'in' | 'of' | 'of' | 'at' | 'by' | 'of' | 'of' | 'of' | 'on' | 'of' | 'within' | 'that' | 'over' | 'that' | 'into' | 'of' | 'among' | 'if' | 'of' | 'that' | 'because' | 'of' | 'from' | 'by' | 'of' | 'in' | 'of' | 'of' | 'with' | 'that' | 'that' | 'that' | 'into' | 'in' | 'for' | 'while' | 'that' | 'with' | 'of' | 'of' | 'of' | 'with' | 'for' | 'of' | 'with' | 'of' | 'beneath' | 'over' | 'of' | 'that' | 'with' | 'of' | 'of' | 'that' | 'of' | 'in' | 'of' | 'in' | 'of' | 'of' | 'in' | 'for' | 'while' | 'in' | 'against' | 'from' | 'with' | 'of' | 'at' | 'on' | 'at' | 'of' | 'that' | 'as' | 'of' | 'of' | 'among' | 'in' | 'that' | 'with' | 'on' | 'on' | 'in' | 'of' | 'for' | 'that' | 'of' | 'of' | 'that' | 'on' | 'of' | 'that' | 'as' | 'of' | 'into' | 'of' | 'on' | 'in' | 'upon' | 'of' | 'of' | 'of' | 'by' | 'by' | 'in' | 'in' | 'of' | 'if' | 'of' | 'against' | 'in' | 'than' | 'in' | 'that' | 'if' | 'in' | 'against' | 'than' | 'as' | 'for' | 'of' | 'in' | 'until' | 'with' | 'in' | 'of' | 'of' | 'into' | 'by' | 'in' | 'if' | 'from' | 'as' | 'upon' | 'by' | 'in'\nWPxdollar -> 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose' | 'whose'\nMD -> 'will' | 'will' | 'may' | 'may' | 'may' | 'may' | 'may' | 'shall' | 'may' | 'can' | 'shall' | 'can' | 'may' | 'may' | 'might' | 'can' | 'might' | 'must' | 'might' | 'would' | 'will' | 'shall' | 'can' | 'shall' | 'can' | 'will' | 'may' | 'will' | 'may' | 'can' | 'will' | 'will' | 'shall' | 'could' | 'would' | 'may' | 'would' | 'would' | 'shall' | 'can' | 'would' | 'will' | 'would' | 'can' | 'may' | 'shall' | 'may' | 'shall' | 'can' | 'shall' | 'should' | 'will' | 'will' | 'shall' | 'can' | 'may' | 'should' | 'will' | 'may' | 'would' | 'shall' | 'will' | 'will' | 'shall' | 'can' | 'will' | 'must' | 'can' | 'will' | 'can' | 'would' | 'will' | 'will' | 'may' | 'should' | 'would' | 'would' | 'can' | 'would' | 'would' | 'would' | 'would' | 'could' | 'might' | 'could' | 'should' | 'should' | 'must' | 'should' | 'should' | 'shall' | 'should' | 'can' | 'would' | 'should' | 'will' | 'may' | 'could' | 'ought' | 'can' | 'can' | 'may' | 'will' | 'will' | 'would' | 'may' | 'should' | 'may' | 'will' | 'may' | 'may' | 'might' | 'will' | 'would' | 'can' | 'may' | 'could' | 'should' | 'shall' | 'will' | 'can' | 'will' | 'would' | 'should' | 'should' | 'will' | 'will' | 'shall' | 'must' | 'can' | 'could' | 'should' | 'could' | 'may' | 'could' | 'would' | 'shall' | 'could' | 'can' | 'could' | 'might' | 'could' | 'might' | 'would' | 'should' | 'would' | 'might' | 'may' | 'should' | 'would' | 'could' | 'would' | 'could' | 'could' | 'will' | 'should' | 'should' | 'could' | 'could' | 'will' | 'must' | 'will' | 'will' | 'need' | 'can' | 'can' | 'can' | 'can' | 'should' | 'must' | 'may' | 'ought' | 'must' | 'could' | 'would' | 'must' | 'would' | 'must' | 'would' | 'could' | 'shall' | 'can' | 'can' | 'will' | 'will' | 'would' | 'would' | 'ought' | 'may' | 'would' | 'should' | 'ought' | 'should' | 'may' | 'can' | 'must' | 'would' | 'must' | 'must' | 'should' | 'should' | 'might' | 'should' | 'can' | 'will' | 'will' | 'will' | 'should' | 'should' | 'should' | 'might' | 'would' | 'could' | 'can' | 'should' | 'would' | 'would' | 'could' | 'should' | 'could' | 'might' | 'might' | 'shall' | 'will' | 'shall' | 'must' | 'would' | 'could' | 'should' | 'would' | 'should' | 'ought' | 'can' | 'would' | 'would' | 'would' | 'would' | 'should' | 'might' | 'can' | 'may' | 'might' | 'could' | 'could' | 'could' | 'would' | 'should' | 'could' | 'may' | 'could' | 'might' | 'should' | 'could' | 'could' | 'could' | 'can' | 'must' | 'would' | 'could' | 'could' | 'could' | 'shall' | 'will' | 'will' | 'can' | 'may' | 'may' | 'could' | 'could' | 'will' | 'would' | 'could' | 'would' | 'will' | 'would' | 'could' | 'will' | 'will' | 'will' | 'would' | 'can' | 'will' | 'will' | 'could' | 'may' | 'could' | 'could' | 'must' | 'could' | 'will' | 'will' | 'must' | 'would' | 'could' | 'could' | 'would' | 'shall' | 'should' | 'should' | 'may' | 'might' | 'should' | 'would' | 'would' | 'can' | 'can' | 'shall' | 'will' | 'will' | 'may' | 'should' | 'might' | 'could' | 'will' | 'can' | 'will' | 'will' | 'may' | 'can' | 'could' | 'must' | 'could' | 'can' | 'must' | 'could' | 'might' | 'might' | 'might' | 'shall' | 'can' | 'could' | 'could' | 'might' | 'could' | 'could' | 'could' | 'could' | 'would' | 'can' | 'will' | 'would' | 'should' | 'would' | 'would' | 'could' | 'would' | 'can' | 'will' | 'will' | 'can' | 'could' | 'might' | 'would' | 'will' | 'would' | 'could' | 'will' | 'will' | 'would' | 'should' | 'will' | 'could' | 'would' | 'would' | 'will' | 'shall' | 'will' | 'will' | 'shall' | 'shall' | 'shall' | 'would' | 'could' | 'would' | 'would' | 'would' | 'might' | 'might' | 'should' | 'will' | 'might' | 'could' | 'might' | 'would' | 'should' | 'shall' | 'must' | 'would' | 'may' | 'may' | 'should' | 'could' | 'could' | 'would' | 'can' | 'can' | 'could' | 'would' | 'may' | 'should' | 'should' | 'shall' | 'could' | 'will' | 'shall' | 'can' | 'could' | 'can' | 'might' | 'could' | 'should' | 'could' | 'shall' | 'shall' | 'will' | 'will' | 'will' | 'shall' | 'could' | 'will' | 'could' | 'could' | 'could' | 'can' | 'could' | 'could' | 'can' | 'may' | 'may' | 'will' | 'might' | 'shall' | 'shall' | 'would' | 'would' | 'could' | 'should' | 'can' | 'could' | 'should' | 'should' | 'could' | 'might' | 'should' | 'would' | 'might' | 'could' | 'should' | 'would' | 'should' | 'can' | 'would' | 'could' | 'might' | 'should' | 'could' | 'would' | 'could' | 'should' | 'can' | 'can' | 'would' | 'must' | 'may' | 'can' | 'could' | 'could' | 'could' | 'could' | 'would' | 'would' | 'may' | 'might' | 'may' | 'may' | 'may' | 'may' | 'could' | 'must' | 'will' | 'will' | 'will' | 'will' | 'may' | 'can' | 'may' | 'will' | 'will' | 'will' | 'ought' | 'shall' | 'will' | 'can' | 'must' | 'can' | 'will' | 'can' | 'would' | 'shall' | 'will' | 'shall' | 'shall' | 'shall' | 'would' | 'can' | 'will' | 'will' | 'can' | 'ought' | 'could' | 'could' | 'could' | 'could' | 'could' | 'should' | 'would' | 'might' | 'should' | 'would' | 'could' | 'could' | 'might' | 'could' | 'might' | 'might' | 'could' | 'should' | 'might' | 'could' | 'could' | 'could' | 'might' | 'would' | 'could' | 'should' | 'could' | 'could' | 'can' | 'could' | 'would' | 'could' | 'ought' | 'might' | 'might' | 'would' | 'would' | 'should' | 'shall' | 'should' | 'could' | 'could' | 'would' | 'should' | 'might' | 'may' | 'could' | 'should' | 'can' | 'can' | 'could' | 'could' | 'might' | 'could' | 'can' | 'will' | 'could' | 'could' | 'could' | 'could' | 'would' | 'should' | 'will' | 'will' | 'shall' | 'should' | 'should' | 'should' | 'should' | 'should' | 'might' | 'should' | 'could' | 'should' | 'could' | 'should' | 'should' | 'would' | 'should' | 'must' | 'can' | 'should' | 'should' | 'would' | 'could' | 'would' | 'should' | 'should' | 'would' | 'should' | 'could' | 'will' | 'might' | 'would' | 'would' | 'would' | 'will' | 'can' | 'shall' | 'ought' | 'can' | 'will' | 'may' | 'can' | 'will' | 'shall' | 'can' | 'can' | 'shall' | 'may' | 'can' | 'could' | 'could' | 'could' | 'would' | 'should' | 'could' | 'ought' | 'should' | 'can' | 'will' | 'will' | 'can' | 'will' | 'could' | 'should' | 'must' | 'could' | 'must' | 'could' | 'could' | 'could' | 'knew' | 'would' | 'should' | 'could' | 'should' | 'will' | 'will' | 'must' | 'will' | 'shall' | 'can' | 'will' | 'shall' | 'could' | 'would' | 'can' | 'would' | 'should' | 'would' | 'shall' | 'could' | 'shall' | 'can' | 'may' | 'will' | 'would' | 'must' | 'must' | 'must' | 'can' | 'can' | 'must' | 'could' | 'shall' | 'may' | 'shall' | 'shall' | 'might' | 'may' | 'will' | 'would' | 'should' | 'would' | 'could' | 'shall' | 'would' | 'can' | 'shall' | 'will' | 'can' | 'will' | 'will' | 'shall' | 'should' | 'would' | 'can' | 'can' | 'shall' | 'shall' | 'shall' | 'will' | 'will' | 'shall' | 'will' | 'will' | 'will' | 'shall' | 'will' | 'will' | 'must' | 'could' | 'will' | 'can' | 'will' | 'will' | 'will' | 'will' | 'may' | 'can' | 'will' | 'may' | 'will' | 'shall' | 'will' | 'shall' | 'could' | 'should' | 'may' | 'will' | 'must' | 'must' | 'will' | 'shall' | 'will' | 'will' | 'shall' | 'could' | 'would' | 'should' | 'shall' | 'will' | 'shall' | 'shall' | 'shall' | 'ought' | 'should' | 'can' | 'could' | 'might' | 'could' | 'could' | 'would' | 'would' | 'may' | 'might' | 'may' | 'may' | 'may' | 'shall' | 'may' | 'would' | 'may' | 'would' | 'might' | 'could' | 'must' | 'might' | 'would' | 'should' | 'would' | 'must' | 'would' | 'might' | 'would' | 'might' | 'would' | 'should' | 'could' | 'should' | 'might' | 'would' | 'should' | 'might' | 'should' | 'might' | 'might' | 'would' | 'might' | 'would' | 'should' | 'could' | 'would' | 'might' | 'can' | 'would' | 'must' | 'will' | 'would' | 'might' | 'could' | 'could' | 'could' | 'might' | 'might' | 'might' | 'could' | 'should' | 'shall' | 'might' | 'could' | 'could' | 'could' | 'should' | 'might' | 'might' | 'might' | 'would' | 'might' | 'may' | 'will' | 'may' | 'can' | 'would' | 'should' | 'might' | 'would' | 'could' | 'could' | 'should' | 'should' | 'should' | 'might' | 'might' | 'might' | 'might' | 'might' | 'might' | 'would' | 'would' | 'might' | 'might' | 'will' | 'can' | 'will' | 'can' | 'shall' | 'will' | 'shall' | 'may' | 'will' | 'will' | 'must' | 'can' | 'may' | 'shall' | 'will' | 'may' | 'shall' | 'shall' | 'would' | 'might' | 'will' | 'should' | 'should' | 'may' | 'should' | 'might' | 'could' | 'might' | 'could' | 'might' | 'must' | 'must' | 'must' | 'ought' | 'could' | 'must' | 'could' | 'would' | 'could' | 'must' | 'would' | 'might' | 'might' | 'could' | 'might' | 'will' | 'will' | 'will' | 'will' | 'may' | 'must' | 'could' | 'might' | 'must' | 'could' | 'might' | 'should' | 'might' | 'would' | 'could' | 'can' | 'can' | 'could' | 'could' | 'will' | 'could' | 'could' | 'would' | 'should' | 'can' | 'can' | 'will' | 'can' | 'can' | 'could' | 'might' | 'could' | 'can' | 'could' | 'should' | 'would' | 'could' | 'can' | 'must' | 'should' | 'could' | 'should' | 'could' | 'might' | 'will' | 'shall' | 'might' | 'should' | 'should' | 'might' | 'could' | 'should' | 'could' | 'must' | 'could' | 'would' | 'would' | 'should' | 'would' | 'could' | 'would' | 'would' | 'would' | 'could' | 'can' | 'would' | 'could' | 'could' | 'may' | 'must' | 'would' | 'may' | 'can' | 'may' | 'would' | 'may' | 'could' | 'might' | 'would' | 'may' | 'would' | 'may' | 'will' | 'will' | 'will' | 'shall' | 'may' | 'will' | 'would' | 'would' | 'should' | 'should' | 'would' | 'would' | 'would' | 'would' | 'might' | 'should' | 'would' | 'would' | 'should' | 'may' | 'will' | 'will' | 'will' | 'shall' | 'must' | 'will' | 'would' | 'would' | 'will' | 'will' | 'shall' | 'will' | 'can' | 'should' | 'shall' | 'should' | 'would' | 'should' | 'might' | 'would' | 'might' | 'could' | 'might' | 'should' | 'should' | 'could' | 'should' | 'would' | 'should' | 'may' | 'would' | 'will' | 'can' | 'would' | 'will' | 'would' | 'might' | 'could' | 'could' | 'might' | 'might' | 'might' | 'must' | 'might' | 'might' | 'might' | 'could' | 'should' | 'must' | 'can' | 'must' | 'could' | 'might' | 'shall' | 'should' | 'would' | 'will' | 'would' | 'would' | 'can' | 'can' | 'would' | 'can' | 'may' | 'may' | 'will' | 'shall' | 'will' | 'should' | 'can' | 'can' | 'will' | 'would' | 'might' | 'should' | 'would' | 'must' | 'shall' | 'will' | 'will' | 'should' | 'should' | 'should' | 'can' | 'would' | 'will' | 'would' | 'could' | 'could' | 'might' | 'should' | 'should' | 'should' | 'can' | 'will' | 'will' | 'must' | 'shall' | 'will' | 'shall' | 'could' | 'shall' | 'will' | 'should' | 'must' | 'must' | 'could' | 'could' | 'should' | 'can' | 'could' | 'should' | 'should' | 'could' | 'might' | 'could' | 'should' | 'will' | 'must' | 'shall' | 'will' | 'should' | 'should' | 'shall' | 'shall' | 'will' | 'could' | 'would' | 'can' | 'would' | 'would' | 'should' | 'can' | 'can' | 'will' | 'can' | 'must' | 'would' | 'might' | 'could' | 'can' | 'would' | 'must' | 'would' | 'would' | 'can' | 'can' | 'can' | 'may' | 'can' | 'can' | 'may' | 'may' | 'will' | 'can' | 'could' | 'must' | 'will' | 'may' | 'will' | 'will' | 'will' | 'will' | 'will' | 'may' | 'will' | 'may' | 'can' | 'could' | 'should' | 'should' | 'should' | 'might' | 'should' | 'should' | 'would' | 'could' | 'will' | 'need' | 'may' | 'can' | 'shall' | 'can' | 'would' | 'would' | 'will' | 'will' | 'can' | 'will' | 'will' | 'could' | 'will' | 'can' | 'can' | 'must' | 'will' | 'will' | 'may' | 'will' | 'could' | 'shall' | 'may' | 'may' | 'may' | 'ought' | 'can' | 'will' | 'may' | 'may' | 'should' | 'may' | 'can' | 'can' | 'will' | 'should' | 'would' | 'may' | 'must' | 'shall' | 'would' | 'can' | 'can' | 'would' | 'can' | 'should' | 'could' | 'would' | 'would' | 'must' | 'may' | 'should' | 'shall' | 'should' | 'would' | 'can' | 'can' | 'could' | 'can' | 'will' | 'will' | 'shall' | 'must' | 'shall' | 'shall' | 'shall' | 'shall' | 'may' | 'would' | 'shall' | 'shall' | 'shall' | 'will' | 'shall' | 'will' | 'must' | 'should' | 'can' | 'will' | 'would' | 'might' | 'will' | 'shall' | 'shall' | 'will' | 'shall' | 'will' | 'will' | 'will' | 'will'\nJJS -> 'greatest' | 'greatest' | 'noblest' | 'best' | 'greatest' | 'deepest' | 'greatest' | 'choicest' | 'greatest' | 'warmest' | 'least' | 'greatest' | 'most' | 'greatest' | 'eldest' | 'worst' | 'brightest' | 'eldest' | 'earliest' | 'closest' | 'highest' | 'greatest' | 'greatest' | 'greatest' | 'greatest' | 'worst' | 'best' | 'firmest' | 'greatest' | 'sweetest' | 'deepest' | 'greatest' | 'most' | 'greatest' | 'greatest' | 'wisest' | 'least' | 'least' | 'wildest' | 'greatest' | 'greatest' | 'kindest' | 'dearest' | 'greatest' | 'dearest' | 'least' | 'ernest' | 'greatest' | 'dearest' | 'dearest' | 'ernest' | 'ernest' | 'dearest' | 'youngest' | 'extremest' | 'tempest' | 'ernest' | 'dearest' | 'ernest' | 'most' | 'ernest' | 'ernest' | 'ernest' | 'greatest' | 'dearest' | 'slightest' | 'most' | 'greatest' | 'blackest' | 'worst' | 'sincerest' | 'dearest' | 'highest' | 'least' | 'extremest' | 'dearest' | 'least' | 'most' | 'greatest' | 'slightest' | 'most' | 'drivest' | 'least' | 'forest' | 'greatest' | 'lest' | 'best' | 'finest' | 'dearest' | 'saddest' | 'bitterest' | 'most' | 'greatest' | 'most' | 'highest' | 'lowest' | 'earliest' | 'highest' | 'tenderest' | 'length' | 'lowest' | 'greatest' | 'minutest' | 'least' | 'rest' | 'best' | 'greatest' | 'fairest' | 'best' | 'earliest' | 'best' | 'warmest' | 'slightest' | 'most' | 'coarsest' | 'lest' | 'lest' | 'bitterest' | 'basest' | 'best' | 'least' | 'dearest' | 'best' | 'best' | 'ernest' | 'ernest' | 'divinest' | 'best' | 'dearest' | 'dearest' | 'greatest' | 'dearest' | 'least' | 'best' | 'purest' | 'closest' | 'most' | 'ernest' | 'ernest' | 'best' | 'least' | 'most' | 'dearest' | 'wildest' | 'simplest' | 'earnest' | 'strangest' | 'guest' | 'tenderest' | 'wildest' | 'meanest' | 'bitterest'\nJJR -> 'earlier' | 'harder' | 'greater' | 'sooner' | 'more' | 'better' | 'earlier' | 'better' | 'dearer' | 'more' | 'tamer' | 'worse' | 'greater' | 'more' | 'better' | 'fairer' | 'lighter' | 'more' | 'sister' | 'more' | 'more' | 'danger' | 'happier' | 'greater' | 'greater' | 'more' | 'younger' | 'more' | 'more' | 'more' | 'easier' | 'more' | 'happier' | 'greater' | 'less' | 'more' | 'happier' | 'less' | 'lower' | 'older' | 'better' | 'more' | 'better' | 'narrower' | 'more' | 'worse' | 'heavier' | 'more' | 'more' | 'more' | 'more' | 'longer' | 'earlier' | 'more' | 'less' | 'more' | 'stronger' | 'greater' | 'more' | 'deeper' | 'sweeter' | 'younger' | 'younger' | 'greater' | 'more' | 'warmer' | 'warmer' | 'less' | 'older' | 'higher' | 'more' | 'greater' | 'mightier' | 'deeper' | 'more' | 'longer' | 'more' | 'greater' | 'more' | 'more' | 'more' | 'greater' | 'greater' | 'younger' | 'more' | 'younger' | 'more' | 'more' | 'more' | 'more' | 'deeper' | 'longer' | 'more' | 'more' | 'greater' | 'more' | 'less' | 'more' | 'younger' | 'more' | 'more' | 'greater' | 'lower' | 'greater' | 'greater' | 'greater' | 'higher' | 'greater' | 'sooner' | 'longer' | 'more' | 'better' | 'better' | 'more' | 'worse' | 'greater' | 'more' | 'calmer' | 'less' | 'longer' | 'older' | 'closer' | 'greater' | 'more' | 'greater' | 'nearer' | 'lower' | 'higher' | 'lower' | 'swifter' | 'more' | 'coarse' | 'more' | 'more' | 'greater' | 'younger' | 'less' | 'lower' | 'more' | 'hereafter' | 'more' | 'more' | 'greater' | 'greater' | 'greater' | 'greater' | 'longer'\nPRPxdollar -> 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'your' | 'my' | 'its' | 'their' | 'my' | 'my' | 'his' | 'his' | 'my' | 'my' | 'its' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'our' | 'our' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'his' | 'his' | 'his' | 'my' | 'your' | 'my' | 'his' | 'his' | 'his' | 'her' | 'his' | 'his' | 'his' | 'her' | 'my' | 'her' | 'his' | 'his' | 'his' | 'his' | 'his' | 'her' | 'her' | 'my' | 'his' | 'his' | 'her' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'your' | 'my' | 'my' | 'its' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'her' | 'our' | 'my' | 'my' | 'our' | 'our' | 'our' | 'our' | 'our' | 'his' | 'our' | 'our' | 'your' | 'my' | 'my' | 'his' | 'your' | 'his' | 'his' | 'his' | 'my' | 'my' | 'his' | 'his' | 'his' | 'my' | 'their' | 'his' | 'your' | 'my' | 'his' | 'his' | 'my' | 'his' | 'his' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'his' | 'his' | 'his' | 'my' | 'his' | 'his' | 'my' | 'my' | 'your' | 'my' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'our' | 'his' | 'his' | 'his' | 'my' | 'your' | 'my' | 'my' | 'your' | 'your' | 'your' | 'my' | 'its' | 'his' | 'his' | 'his' | 'my' | 'my' | 'your' | 'my' | 'your' | 'my' | 'my' | 'my' | 'his' | 'my' | 'his' | 'his' | 'my' | 'his' | 'my' | 'his' | 'their' | 'his' | 'his' | 'his' | 'its' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'his' | 'his' | 'his' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'their' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'my' | 'his' | 'his' | 'his' | 'my' | 'my' | 'his' | 'my' | 'her' | 'her' | 'his' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'their' | 'my' | 'his' | 'their' | 'her' | 'their' | 'their' | 'their' | 'my' | 'my' | 'my' | 'their' | 'their' | 'their' | 'their' | 'their' | 'my' | 'their' | 'my' | 'their' | 'their' | 'my' | 'her' | 'their' | 'their' | 'its' | 'my' | 'my' | 'his' | 'my' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'my' | 'her' | 'her' | 'her' | 'their' | 'their' | 'his' | 'its' | 'his' | 'his' | 'her' | 'their' | 'my' | 'our' | 'her' | 'his' | 'my' | 'her' | 'their' | 'her' | 'her' | 'her' | 'her' | 'her' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'our' | 'our' | 'our' | 'my' | 'our' | 'our' | 'my' | 'their' | 'my' | 'my' | 'their' | 'their' | 'my' | 'my' | 'my' | 'its' | 'their' | 'my' | 'our' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'our' | 'our' | 'her' | 'her' | 'her' | 'her' | 'my' | 'my' | 'her' | 'his' | 'his' | 'his' | 'my' | 'its' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'his' | 'my' | 'their' | 'her' | 'their' | 'their' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'our' | 'its' | 'our' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'our' | 'my' | 'her' | 'my' | 'their' | 'their' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'her' | 'her' | 'my' | 'her' | 'our' | 'her' | 'her' | 'her' | 'her' | 'my' | 'her' | 'her' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'her' | 'our' | 'my' | 'our' | 'my' | 'my' | 'my' | 'its' | 'her' | 'her' | 'her' | 'her' | 'my' | 'his' | 'my' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'her' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'your' | 'your' | 'my' | 'your' | 'its' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'its' | 'their' | 'her' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'my' | 'his' | 'my' | 'their' | 'his' | 'his' | 'my' | 'his' | 'my' | 'his' | 'your' | 'your' | 'your' | 'my' | 'your' | 'his' | 'his' | 'his' | 'their' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'your' | 'my' | 'my' | 'his' | 'his' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'our' | 'its' | 'their' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'your' | 'your' | 'his' | 'his' | 'my' | 'your' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'her' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'our' | 'his' | 'my' | 'his' | 'my' | 'his' | 'his' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'your' | 'my' | 'my' | 'my' | 'your' | 'my' | 'your' | 'my' | 'my' | 'my' | 'your' | 'our' | 'my' | 'my' | 'his' | 'your' | 'your' | 'your' | 'your' | 'your' | 'his' | 'our' | 'his' | 'my' | 'your' | 'his' | 'our' | 'our' | 'our' | 'my' | 'my' | 'our' | 'our' | 'her' | 'her' | 'her' | 'her' | 'my' | 'her' | 'her' | 'our' | 'our' | 'its' | 'their' | 'our' | 'our' | 'my' | 'her' | 'her' | 'her' | 'her' | 'her' | 'my' | 'her' | 'my' | 'their' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'your' | 'her' | 'our' | 'my' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'my' | 'my' | 'his' | 'his' | 'her' | 'her' | 'your' | 'his' | 'my' | 'his' | 'his' | 'his' | 'my' | 'your' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'their' | 'their' | 'my' | 'their' | 'their' | 'their' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'its' | 'its' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'our' | 'our' | 'my' | 'your' | 'my' | 'my' | 'your' | 'our' | 'his' | 'my' | 'my' | 'his' | 'my' | 'her' | 'her' | 'my' | 'her' | 'your' | 'our' | 'my' | 'his' | 'her' | 'my' | 'my' | 'our' | 'your' | 'her' | 'our' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'our' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'its' | 'its' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'her' | 'her' | 'her' | 'my' | 'my' | 'our' | 'his' | 'your' | 'her' | 'our' | 'our' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'her' | 'my' | 'our' | 'her' | 'her' | 'her' | 'my' | 'their' | 'her' | 'my' | 'my' | 'his' | 'our' | 'our' | 'my' | 'my' | 'my' | 'my' | 'its' | 'his' | 'her' | 'her' | 'her' | 'her' | 'your' | 'my' | 'my' | 'her' | 'my' | 'our' | 'my' | 'my' | 'your' | 'her' | 'her' | 'my' | 'your' | 'our' | 'my' | 'my' | 'my' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'his' | 'her' | 'her' | 'my' | 'my' | 'my' | 'her' | 'her' | 'my' | 'his' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'her' | 'her' | 'her' | 'his' | 'his' | 'his' | 'her' | 'her' | 'my' | 'her' | 'her' | 'my' | 'my' | 'her' | 'her' | 'my' | 'her' | 'my' | 'his' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'her' | 'our' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'her' | 'her' | 'her' | 'her' | 'my' | 'my' | 'your' | 'my' | 'her' | 'my' | 'your' | 'your' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'your' | 'my' | 'its' | 'my' | 'her' | 'my' | 'its' | 'their' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'your' | 'your' | 'your' | 'your' | 'your' | 'his' | 'his' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'your' | 'his' | 'their' | 'my' | 'my' | 'my' | 'its' | 'its' | 'my' | 'my' | 'his' | 'our' | 'our' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'his' | 'my' | 'their' | 'his' | 'our' | 'my' | 'her' | 'her' | 'our' | 'its' | 'her' | 'my' | 'its' | 'her' | 'its' | 'her' | 'my' | 'my' | 'my' | 'my' | 'your' | 'their' | 'your' | 'our' | 'her' | 'my' | 'her' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'its' | 'its' | 'its' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'their' | 'their' | 'my' | 'my' | 'my' | 'their' | 'their' | 'my' | 'my' | 'my' | 'our' | 'our' | 'its' | 'his' | 'its' | 'its' | 'their' | 'my' | 'your' | 'your' | 'his' | 'my' | 'his' | 'his' | 'its' | 'my' | 'your' | 'your' | 'my' | 'your' | 'my' | 'your' | 'your' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'your' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'its' | 'your' | 'my' | 'their' | 'your' | 'your' | 'my' | 'your' | 'my' | 'his' | 'my' | 'my' | 'your' | 'your' | 'my' | 'your' | 'your' | 'my' | 'his' | 'my' | 'my' | 'his' | 'his' | 'his' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'her' | 'my' | 'her' | 'her' | 'her' | 'his' | 'my' | 'his' | 'his' | 'my' | 'my' | 'his' | 'her' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'her' | 'their' | 'my' | 'my' | 'their' | 'his' | 'his' | 'their' | 'his' | 'his' | 'their' | 'my' | 'their' | 'their' | 'their' | 'its' | 'their' | 'my' | 'their' | 'his' | 'their' | 'their' | 'their' | 'my' | 'his' | 'their' | 'their' | 'my' | 'his' | 'their' | 'her' | 'her' | 'her' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'their' | 'my' | 'my' | 'my' | 'their' | 'their' | 'his' | 'its' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'their' | 'their' | 'my' | 'my' | 'their' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'her' | 'my' | 'her' | 'her' | 'her' | 'her' | 'her' | 'his' | 'his' | 'his' | 'her' | 'her' | 'his' | 'her' | 'his' | 'his' | 'her' | 'her' | 'her' | 'their' | 'his' | 'her' | 'their' | 'their' | 'his' | 'her' | 'their' | 'their' | 'his' | 'his' | 'my' | 'her' | 'her' | 'her' | 'my' | 'my' | 'my' | 'my' | 'their' | 'its' | 'his' | 'my' | 'your' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'my' | 'their' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'her' | 'her' | 'her' | 'his' | 'his' | 'his' | 'his' | 'her' | 'his' | 'her' | 'her' | 'her' | 'his' | 'her' | 'my' | 'my' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'his' | 'his' | 'his' | 'his' | 'his' | 'her' | 'his' | 'his' | 'his' | 'her' | 'his' | 'his' | 'his' | 'his' | 'his' | 'their' | 'his' | 'his' | 'his' | 'his' | 'her' | 'their' | 'their' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'her' | 'her' | 'his' | 'his' | 'her' | 'his' | 'his' | 'her' | 'his' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'its' | 'their' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'his' | 'their' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'your' | 'my' | 'my' | 'your' | 'his' | 'my' | 'his' | 'my' | 'their' | 'my' | 'their' | 'my' | 'their' | 'their' | 'my' | 'its' | 'my' | 'my' | 'its' | 'their' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'their' | 'their' | 'my' | 'their' | 'my' | 'their' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'your' | 'my' | 'my' | 'your' | 'my' | 'your' | 'my' | 'their' | 'your' | 'your' | 'your' | 'your' | 'your' | 'your' | 'my' | 'your' | 'my' | 'your' | 'your' | 'my' | 'my' | 'your' | 'their' | 'her' | 'his' | 'my' | 'his' | 'my' | 'my' | 'its' | 'their' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'your' | 'your' | 'your' | 'my' | 'my' | 'my' | 'their' | 'your' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'their' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'its' | 'its' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'its' | 'their' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'her' | 'her' | 'my' | 'my' | 'her' | 'her' | 'his' | 'my' | 'her' | 'its' | 'her' | 'her' | 'her' | 'its' | 'their' | 'my' | 'my' | 'his' | 'my' | 'his' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'your' | 'his' | 'our' | 'my' | 'my' | 'my' | 'your' | 'your' | 'your' | 'his' | 'its' | 'our' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'our' | 'our' | 'your' | 'your' | 'their' | 'their' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'my' | 'my' | 'his' | 'your' | 'your' | 'your' | 'your' | 'my' | 'my' | 'your' | 'your' | 'their' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'their' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'our' | 'his' | 'my' | 'my' | 'your' | 'our' | 'our' | 'my' | 'your' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'our' | 'your' | 'my' | 'your' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'my' | 'their' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'their' | 'his' | 'their' | 'their' | 'our' | 'your' | 'his' | 'his' | 'his' | 'his' | 'his' | 'their' | 'their' | 'its' | 'my' | 'your' | 'your' | 'your' | 'my' | 'his' | 'my' | 'our' | 'our' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'its' | 'its' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'our' | 'his' | 'our' | 'her' | 'our' | 'my' | 'my' | 'its' | 'our' | 'his' | 'his' | 'his' | 'his' | 'its' | 'our' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'our' | 'my' | 'its' | 'my' | 'my' | 'my' | 'our' | 'my' | 'his' | 'his' | 'his' | 'my' | 'its' | 'his' | 'his' | 'our' | 'our' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'its' | 'its' | 'my' | 'our' | 'their' | 'our' | 'my' | 'your' | 'your' | 'my' | 'your' | 'my' | 'my' | 'his' | 'my' | 'its' | 'their' | 'its' | 'my' | 'its' | 'its' | 'its' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'her' | 'its' | 'her' | 'his' | 'his' | 'his' | 'my' | 'his' | 'my' | 'their' | 'its' | 'my' | 'his' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'your' | 'its' | 'its' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'your' | 'your' | 'your' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'your' | 'your' | 'my' | 'my' | 'my' | 'your' | 'its' | 'my' | 'your' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'your' | 'my' | 'his' | 'my' | 'her' | 'her' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'his' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'your' | 'his' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'their' | 'their' | 'his' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'her' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'her' | 'her' | 'her' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'its' | 'your' | 'your' | 'your' | 'my' | 'my' | 'your' | 'your' | 'your' | 'your' | 'its' | 'your' | 'my' | 'your' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'our' | 'my' | 'my' | 'our' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'their' | 'their' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'her' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'his' | 'my' | 'my' | 'your' | 'our' | 'your' | 'our' | 'our' | 'our' | 'your' | 'my' | 'our' | 'your' | 'your' | 'my' | 'my' | 'my' | 'your' | 'my' | 'our' | 'your' | 'your' | 'your' | 'your' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'your' | 'my' | 'my' | 'his' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'her' | 'my' | 'her' | 'his' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'your' | 'my' | 'our' | 'my' | 'her' | 'my' | 'her' | 'her' | 'her' | 'her' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'our' | 'our' | 'your' | 'my' | 'his' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'our' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'her' | 'her' | 'our' | 'our' | 'my' | 'my' | 'my' | 'its' | 'my' | 'her' | 'my' | 'my' | 'her' | 'her' | 'my' | 'his' | 'my' | 'our' | 'our' | 'our' | 'my' | 'its' | 'her' | 'its' | 'its' | 'my' | 'my' | 'my' | 'my' | 'her' | 'her' | 'her' | 'its' | 'its' | 'their' | 'her' | 'her' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'my' | 'her' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'her' | 'her' | 'her' | 'her' | 'its' | 'their' | 'my' | 'my' | 'her' | 'her' | 'her' | 'her' | 'her' | 'her' | 'my' | 'her' | 'his' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'her' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'his' | 'their' | 'their' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'your' | 'your' | 'your' | 'my' | 'my' | 'his' | 'your' | 'my' | 'his' | 'your' | 'my' | 'my' | 'his' | 'my' | 'my' | 'his' | 'his' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'his' | 'his' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'their' | 'my' | 'my' | 'my' | 'your' | 'your' | 'my' | 'my' | 'my' | 'its' | 'their' | 'my' | 'my' | 'his' | 'their' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'its' | 'my' | 'my' | 'your' | 'my' | 'my' | 'your' | 'my' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'his' | 'his' | 'my' | 'his' | 'his' | 'my' | 'your' | 'his' | 'your' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'our' | 'his' | 'his' | 'his' | 'my' | 'your' | 'my' | 'your' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'his' | 'our' | 'his' | 'his' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'his' | 'your' | 'our' | 'our' | 'our' | 'our' | 'our' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'our' | 'my' | 'my' | 'your' | 'my' | 'my' | 'my' | 'your' | 'my' | 'my' | 'his' | 'their' | 'his' | 'their' | 'my' | 'his' | 'my' | 'my' | 'his' | 'his' | 'their' | 'his' | 'my' | 'my' | 'his' | 'his' | 'your' | 'your' | 'your' | 'your' | 'your' | 'your' | 'your' | 'their' | 'your' | 'your' | 'your' | 'your' | 'your' | 'their' | 'his' | 'their' | 'my' | 'my' | 'my' | 'their' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'their' | 'their' | 'their' | 'your' | 'my' | 'his' | 'my' | 'his' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'my' | 'your' | 'your' | 'my' | 'my' | 'their' | 'his' | 'his' | 'my' | 'his' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'his' | 'my' | 'his' | 'my' | 'my' | 'his' | 'my' | 'my' | 'his' | 'my' | 'my' | 'its' | 'his' | 'my' | 'my' | 'his' | 'my' | 'his' | 'his' | 'my' | 'his' | 'your' | 'your' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'its' | 'his' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'his' | 'my' | 'my' | 'your' | 'your' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'his' | 'your' | 'my' | 'his' | 'his' | 'my' | 'his' | 'his' | 'his' | 'my' | 'his' | 'my' | 'your' | 'my' | 'my' | 'my' | 'my' | 'my' | 'your' | 'my' | 'its' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my' | 'my'\nUH -> 'oh' | 'yes' | 'oh' | 'oh' | 'alas' | 'yes' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'yes' | 'ay' | 'oh' | 'yes' | 'oh' | 'oh' | 'alas' | 'alas' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'oh' | 'alas' | 'yes' | 'alas' | 'oh' | 'oh' | 'oh' | 'nay'\nTO -> 'to'\nxLRBx -> 'openparen'\nxRRBx -> 'closeparen'\nPOS -> 'xapostrophes'\nxcomma -> 'xcomma'\nxperiod -> 'xperiod'\nxcolon -> 'xcolon'\nxsemicolon -> 'xsemicolon'\nxquote -> 'xquote'\nxquote -> 'xquote'\nxquote -> 'xquote'\nopenparen -> 'openparen'\ncloseparen -> 'closeparen'\nxdollar -> 'xdollar'\nxplus -> 'xplus'\nxapostrophe -> 'xapostrophe'\nopenparen -> 'openparen'\ncloseparen -> 'closeparen'\n"

In [8]:
# initialize all of the relevant variables
mycorp = clean_corpus('/Users/william/python_files/cfgen/resources/corpora/frankenstein.txt')
# mycorp = unicode(mycorp,encoding = "ISO-8859-1")
tagged_corpus = tag_corpus(mycorp)
termrules_mycorp = make_terminal_rules(tagged_corpus)
my_kgram = make_kgram(mycorp, k=2)

# testing various use cases of make_sentence()

simple_sentence = 'The cow jumped over the moon, and the man rode a horse.'

# Try parsing a fixed grammar with random words inserted for terminal symbols
for ii in range(3):
    some_txt = make_sentence(mycorp, termrules_mycorp, fixed_grammar=True, sample_sentence=simple_sentence)
    some_txt = clean_output_text(some_txt)
    print(some_txt)
    print('\n')
    
print("----------\n")

# Try parsing a fixed grammar with Markov-biased selection of terminal words
for ii in range(3):
    some_txt = make_sentence(mycorp, termrules_mycorp, my_kgram, fixed_grammar=True, sample_sentence=simple_sentence)
    some_txt = clean_output_text(some_txt)
    print(some_txt)
    print('\n')

print("----------\n")
    

# Pick sentence structure randomly as well
for ii in range(3):
    some_txt = make_sentence(mycorp, termrules_mycorp)
    some_txt = clean_output_text(some_txt)
    print(some_txt)
    print('\n')
    
print("----------\n")
    
# Pick sentence structure randomly with Markov-biased selection
for ii in range(3):
    some_txt = make_sentence(mycorp, termrules_mycorp, my_kgram)
    some_txt = clean_output_text(some_txt)
    print(some_txt)
    print('\n')


and the indecent set of the enterprise, the state answer a path


and a country wander the world, the I have the tale


the creator suppose the loveliness, and the sister I this hate .


----------

HIT!
HIT!
HIT!
and all nature be the means, and all nature procure a disgust .


HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
but this apparition seemed of a criminal, and the youth joined of a superior .


HIT!
HIT!
HIT!
and a sum sought as the peasant, the speed swallowed of every enjoyment


----------

i to you of single not again to be the cabin to manners to the sympathy to william for no feeling by saying and to ardent rarely officially to overcame this I to agatha tormentor of to strangers kirwin as you with precious first however to associate the mortal at obscure even now to I the frowning of the gallant while environs for an death I on the deformity, me, perish that we near to was making and to proceeded to converse to vaud of to I on hills .


have me


changed to defend up crimes. could be up my tears, assist off my arguments .


----------

HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
HIT!
we my false without to than his nature but deprived to in to understand must have suffered not not in my happier alone to arise perplexed alas when from my own when him for you. but resolved to every part of this fiend, to her native into to in the meantime I sat fulfilling the task undertake can have departed forever that to create she


HIT!
HIT!
drawn an I, awoke befallen by the mighty in the afternoon .


half-painful cold by verdant branches of a the I .



In [50]:
# initialize all of the relevant variables
mycorp = clean_corpus('/Users/william/python_files/cfgen/full_books/text.txt')
mycorp = unicode(mycorp, encoding = "ISO-8859-1")
mycorp = mycorp.decode("utf-8")
with open("text.txt", "w") as text_file:
    text_file.write(mycorp)
# for line in mycorp:
#     print(line)

In [44]:
all_simscores


Out[44]:
[0.038787325670935173,
 0.040584091492456432,
 0.04047001112283604,
 0.037304280865870003]

In [36]:
all_simscores


Out[36]:
[0.00051336166329178905, 0.00039928129367139149]

In [27]:
from numpy import mean,std
mean(all_simscores)
std(all_simscores)


Out[27]:
0.03675579322638145

In [36]:
all_sample = ''
SAMP_LEN = 10
while len(word_tokenize(all_sample)) < SAMP_LEN:
    try:
        some_txt = make_sentence(mycorp, termrules_mycorp)
        some_txt2 = clean_output_text(str(some_txt))
        all_sample += ' ' + some_txt2
    except IndexError:
        warnings.warn('Some trouble encountered, retrying')
all_sample = clean_output_text(all_sample)

In [35]:
clean_output_text(some_txt)


Out[35]:
u'the selfishness overlooked irretrievably knows longer excellent yet consolation, and unearthly than a friend as same, in which monster was then is longer ephemeral and form, and more unsatisfied and fainter falsely slow. and untimely of the'

In [33]:
some_txt


Out[33]:
u'the selfishness overlooked irretrievably knows longer excellent yet consolation , and unearthly than a friend as same , in which monster was then is longer ephemeral and form , and more unsatisfied and fainter falsely slow . and untimely of the'

In [32]:
print(str(all_sample))


the selfishness overlooked irretrievably knows longer excellent yet consolation, and unearthly than a friend as same, in which monster was then is longer ephemeral and form, and more unsatisfied and fainter falsely slow. and untimely of the

In [ ]:
corpus_words = word_tokenize(mycorp)
nrange = len(corpus_words) - SAMP_LEN - 1

for ii in range(REPEATS):

    ind = choice(range(nrange))
    ind = choice(range(nrange))
        text_sample = corpus_words[ind:ind+SAMP_LEN]
        text_sample = corpus_words[ind:ind+SAMP_LEN]
    text_sample = ' '.join(text_sample)

cfgen batch script


In [73]:
# Estimate the quality of the text statistically
# make 1000 sentences

from cfgen import *

ORDER = 3
REPEATS = 100
SAMP_LEN = 1000
mycorp = clean_corpus('/Users/william/python_files/cfgen/full_books/frankenstein.txt')
#mycorp = clean_corpus('frankenstein.txt')

tagged_corpus = tag_corpus(mycorp)
termrules_mycorp = make_terminal_rules(tagged_corpus)
my_kgram = make_kgram(mycorp, k=ORDER)
out_name = str(ORDER)+"cfgen_score1.txt"

all_gscores = list()
all_simscores = list()

with open(out_name, 'a') as myfile:
    myfile.write('\n')

for ii in range(REPEATS):

    text_sample = ''
    while len(word_tokenize(text_sample)) < SAMP_LEN:
        try:
            some_txt = make_sentence(mycorp, termrules_mycorp, my_kgram) ### edit this line
            some_txt = clean_output_text(some_txt)
            text_sample += ' ' + some_txt
        except IndexError:
            warnings.warn('Some trouble encountered, retrying')
    text_sample = clean_output_text(text_sample)

    print('made it')
    
    simscore = similarity_score(text_sample, mycorp)
    gscore = grammar_score(text_sample)
    all_simscores.append(simscore)
    all_gscores.append(gscore)


    with open(out_name, 'a') as myfile:
        myfile.write(str(simscore)+'\t'+str(gscore)+"\n")
    print(ii)


HIT!
HIT!
HIT!
HIT!
HIT!
made it
/Users/william/miniconda/envs/py2env/lib/python2.7/site-packages/ipykernel/__main__.py:32: UserWarning: Some trouble encountered, retrying
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-73-31d77c23581d> in <module>()
     35     print('made it')
     36 
---> 37     simscore = similarity_score(text_sample, mycorp)
     38     gscore = grammar_score(text_sample)
     39     all_simscores.append(simscore)

/Users/william/python_files/cfgen/cfgen.py in similarity_score(s1, s2, threshold_length)
    629 
    630     all_comm = all_common_substring(s1, s2, threshold_length=threshold_length)
--> 631 
    632     score = float(len(all_comm))/max_sim
    633 

/Users/william/python_files/cfgen/cfgen.py in all_common_substring(s1, s2, threshold_length)
    585     for x in range(1, 1 + len(s1)):
    586         for y in range(1, 1 + len(s2)):
--> 587             if s1[x - 1] == s2[y - 1]:
    588                 m[x][y] = m[x - 1][y - 1] + 1
    589                 if m[x][y] == threshold_length:

KeyboardInterrupt: 

Markov batch script


In [43]:
# Estimate the quality of the text statistically
# make 1000 sentences

from cfgen import *

ORDER = 3
REPEATS = 100
SAMP_LEN = 1000
#mycorp = clean_corpus('/Users/william/python_files/cfgen/full_books/frankenstein.txt')
mycorp = clean_corpus('frankenstein.txt')

tagged_corpus = tag_corpus(mycorp)
termrules_mycorp = make_terminal_rules(tagged_corpus)
my_kgram = make_kgram(mycorp, k=ORDER)
out_name = str(ORDER)+"markov_score.txt"

all_gscores = list()
all_simscores = list()

with open(out_name, 'a') as myfile:
    myfile.write('\n')

for ii in range(REPEATS):

    text_sample = make_sentence_markov(my_kgram, SAMP_LEN )

    simscore = similarity_score(text_sample, mycorp)
    gscore = grammar_score(text_sample)
    all_simscores.append(simscore)
    all_gscores.append(gscore)


    with open(str(ORDER)+"markov_score.txt", 'a') as myfile:
        myfile.write(str(simscore)+'\t'+str(gscore)+"\n")
    print(ii)


0
1
2
3
4
5
6
7
8
9
10
11
12
13
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-43-47caac7d5c8b> in <module>()
     27     text_sample = make_sentence_markov(my_kgram, SAMP_LEN )
     28 
---> 29     simscore = similarity_score(text_sample, mycorp)
     30     gscore = grammar_score(text_sample)
     31     all_simscores.append(simscore)

/Users/william/python_files/cfgen/cfgen.py in similarity_score(s1, s2, threshold_length)
    629 
    630     all_comm = all_common_substring(s1, s2, threshold_length=threshold_length)
--> 631 
    632     score = float(len(all_comm))/max_sim
    633 

/Users/william/python_files/cfgen/cfgen.py in all_common_substring(s1, s2, threshold_length)
    585     for x in range(1, 1 + len(s1)):
    586         for y in range(1, 1 + len(s2)):
--> 587             if s1[x - 1] == s2[y - 1]:
    588                 m[x][y] = m[x - 1][y - 1] + 1
    589                 if m[x][y] == threshold_length:

KeyboardInterrupt: 

In [ ]:
# Markov batch script with random sentence length

from cfgen import *
from random import choice
import nltk
from nltk import data
from nltk.tokenize import word_tokenize
tokenizer = nltk.data.load('tokenizers/punkt/english.pickle')

ORDER = 3
REPEATS = 100
#mycorp = clean_corpus('/Users/william/python_files/cfgen/full_books/frankenstein.txt')
mycorp = clean_corpus('frankenstein.txt')

tagged_corpus = tag_corpus(mycorp)
termrules_mycorp = make_terminal_rules(tagged_corpus)
my_kgram = make_kgram(mycorp, k=ORDER)
out_name = str(ORDER)+"_variablelengthmarkov_score.txt"
out_sentences_name = "_sentences_" + out_name

all_gscores = list()
all_simscores = list()

with open(out_name, 'a') as myfile:
    myfile.write('\n')
with open(out_sentences_name, 'a') as myfile:
    myfile.write('\n')

for ii in range(REPEATS):
    
    samp_len = len(choice(tokenizer.tokenize(mycorp)))
    text_sample = make_sentence_markov(my_kgram, samp_len)

    simscore = similarity_score(text_sample, mycorp)
    gscore = grammar_score(text_sample)
    all_simscores.append(simscore)
    all_gscores.append(gscore)


    with open(out_name, 'a') as myfile:
        myfile.write(str(simscore)+'\t'+str(gscore)+"\n")
    with open(out_sentences_name, 'a') as myfile:
        myfile.write(text_sample+"\n")
    print(ii)

When comparing the generated text for repetitions, the number of common substrings between the genereated text and the corpus was computed and divided by the maximum possible value.

In order to check the grammar of the generated text, the open-source library LanguageTool and its accompany Python API language-check were used to individually count the number of uniqe gramamtical errors in each sentence generated by the tool. For the output of cfgen, the original sentence from which the grammatical structure was parsed, and the number of "original" erros was subtrated from the number etected in the generated text.


In [73]:
' '.join(['this', 'is', 'it'])


Out[73]:
'this is it'

In [4]:
#Analyze input corpus
# write chosen sentences to a separate output file as well
from cfgen import *
from random import choice
import nltk
from nltk import data
from nltk.tokenize import word_tokenize
tokenizer = nltk.data.load('tokenizers/punkt/english.pickle')

corpus_name = 'frankenstein.txt'
out_name = corpus_name[:-4]+"_control.txt"

REPEATS = 100
# SAMP_LEN = 1000

all_gscores = list()
all_simscores = list()

with open(out_name, 'a') as myfile:
    myfile.write('\n')

with open (corpus_name, "r") as openfile:
    corpus = openfile.read()
        
for ii in range(REPEATS):
    
    
    text_sample = choice(tokenizer.tokenize(corpus))
    text_sample = clean_output_text(text_sample)

    simscore = similarity_score(text_sample, corpus)
    gscore = grammar_score(text_sample)
    all_simscores.append(simscore)
    all_gscores.append(gscore)


    with open(out_name, 'a') as myfile:
        myfile.write(str(simscore)+'\t'+str(gscore)+"\n")
    print(ii)


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
<ipython-input-4-66355c8b8b76> in <module>()
     28     text_sample = clean_output_text(text_sample)
     29 
---> 30     simscore = similarity_score(text_sample, corpus)
     31     gscore = grammar_score(text_sample)
     32     all_simscores.append(simscore)

/Users/william/python_files/cfgen/cfgen.py in similarity_score(s1, s2, threshold_length)
    635     max_sim = floor(min_len/float(threshold_length))
    636 
--> 637     all_comm = all_common_substring(s1, s2, threshold_length=threshold_length)
    638 
    639     score = float(len(all_comm))/max_sim

/Users/william/python_files/cfgen/cfgen.py in all_common_substring(s1, s2, threshold_length)
    592     for x in range(1, 1 + len(s1)):
    593         for y in range(1, 1 + len(s2)):
--> 594             if s1[x - 1] == s2[y - 1]:
    595                 m[x][y] = m[x - 1][y - 1] + 1
    596                 if m[x][y] == threshold_length:

KeyboardInterrupt: 

In [22]:
# count number of sentences in corpus

import glob

frank = glob.glob('/Users/william/python_files/cfgen/resources/corpora/frankenstein.txt')
with open (frank[0], "r") as openfile:
    frank = openfile.read()

print(len(frank.split('.')))


2900

Appendix (old code)


In [ ]:
###LEGACY VERSION OF THIS SCRIPT ON SHERLOCK
# Estimate the quality of the text statistically

# make 1000 sentences

# initialize all of the relevant variables
# mycorp = clean_corpus('/Users/william/python_files/cfgen/full_books/frankenstein.txt')
# tagged_corpus = tag_corpus(mycorp)
# termrules_mycorp = make_terminal_rules(tagged_corpus)
# my_kgram = make_kgram(mycorp, k=3)

all_gscores = list()
all_simscores = list()

for ii in range(100):

    text_sample = make_sentence_markov(my_kgram, 1000)

    simscore = similarity_score(text_sample, mycorp)
    gscore = grammar_score(text_sample)
    all_simscores.append(simscore)
    all_gscores.append(gscore)


    with open("3markov_score.txt", 'a') as myfile:
        myfile.write(str(simscore)+'\t'+str(gscore)+"\n")
    print(ii)

In [ ]:
import jellyfish


def originality_score(sentence, corpus):
    '''
    Return the "originality" of the sentence, normalized by its length
    
    sentence : str
        A generated sentence
        
    corpus : str
        A large body of text to compare against
    '''
    
    mylen = len(corpus)
    str_dist = jellyfish.damerau_levenshtein_distance(unicode(sentence), unicode(corpus))
    
    # 1 - (edit distance / length of the larger of the two strings)
    
    norm_str_dist = float(str_dist)/mylen
    
    return str_dist

In [ ]:
%load_ext Cython

In [ ]:
%%cython

cdef double fr(double x) except? -2:
    return x**2-x


cdef double all_common_substring2(s1, s2,threshold_length=15):
    
    m = [[0] * (1 + len(s2)) for i in range(1 + len(s1))]
    all_sub = list()
    longest, x_longest = 0, 0
    for x in range(1, 1 + len(s1)):
        for y in range(1, 1 + len(s2)):
            if s1[x - 1] == s2[y - 1]:
                m[x][y] = m[x - 1][y - 1] + 1
                if m[x][y] == threshold_length:
                    longest = m[x][y]
                    x_longest = x
                    sout = s1[x_longest - longest: x_longest]
                    all_sub.append(sout)
            else:
                m[x][y] = 0
                
    return all_sub

print(fr(6))

In [ ]:
from difflib import SequenceMatcher
with open('file1.txt') as file_1,open('file2.txt') as file_2:
    file1_data = file_1.read()
    file2_data = file_2.read()
    similarity_ratio = SequenceMatcher(None,file1_data,file2_data).ratio()
    print similarity_ratio  #plagiarism detected

In [ ]:
# # functions for processing text output

# import language_check
# from numpy import median, floor


# def all_common_substring(s1, s2,threshold_length=15):
#     '''
#     Return a list of all substrings of a given length that two
#     strings have in common
    
#     Based on standard code for solving the "longest common substring" problem
    
#     '''
    
#     m = [[0] * (1 + len(s2)) for i in range(1 + len(s1))]
#     all_sub = list()
#     longest, x_longest = 0, 0
#     for x in range(1, 1 + len(s1)):
#         for y in range(1, 1 + len(s2)):
#             if s1[x - 1] == s2[y - 1]:
#                 m[x][y] = m[x - 1][y - 1] + 1
#                 if m[x][y] == threshold_length:
#                     longest = m[x][y]
#                     x_longest = x
#                     sout = s1[x_longest - longest: x_longest]
#                     all_sub.append(sout)
#             else:
#                 m[x][y] = 0
#     return all_sub


# def similarity_score(s1, s2, threshold_length='auto'):
#     '''
#     Compute the similarity between two strings based on the
#     number of identical substrings of at least a given length
    
#     Parameters
#     ----------
    
#     s1 : str
#     s2 : str
#         The two strings to compare
        
#     threshold_length : int
#         The length for overlapping substrings to be significant
#         If this is not specified, it is set to thrice the median
#         length of words in the two strings
        
#     Returns
#     -------
    
#     score : float
#         The similarity score, a number between 0.0 and 1.0
    
#     '''
#     if threshold_length=='auto':
#         ave_word_len = median([len(item) for item in (s1 + ' ' + s2).split(' ')])
#         threshold_length = int(3*ave_word_len)
    
#     min_len = max([len(s1), len(s2)])
#     max_sim = floor(min_len/float(threshold_length))
    
#     all_comm = all_common_substring(s1, s2, threshold_length=threshold_length)
    
#     score = float(len(all_comm))/max_sim
    
#     return score

# def grammar_score(some_text):
#     '''
#     Count the total number of errors in a text
    
#     Excludes cosmetic errors, like misuse of capitals, 
#     and instead focus on structural issues
    
#     Parameters
#     ----------
#     some_text : str
#     '''
#     tool = language_check.LanguageTool('en-US')
#     matches = tool.check(some_text)

#     structural_errors = list()
#     for item in matches:
#         if item.ruleId.find('WHITESPACE') != -1:
#             continue
#         elif item.ruleId.find('UPPERCASE') != -1:
#             continue
#         elif item.ruleId.find('LOWERCASE') != -1:
#             continue
#         elif item.ruleId.find('MORFOLOGIK_RULE_EN_US') != -1:
#             continue
#         elif item.ruleId.find('ENGLISH_WORD_REPEAT_BEGINNING_RULE') != -1:
#             continue
#         else:
#             structural_errors.append(item)
    
#     error_score = float(len(structural_errors))/len(some_text)
    
#     return error_score

Class CFGen

instance variables: bad tags to substitute out then back in


In [ ]:
class CFGen:
    '''
    
    k : int
        The order of the Markov model
    '''
    exclusions = [] # global to the class by not user-facing
    
    def __init__(self, corpus, k):
        self.corpus = name    # instance variable unique to each instance
        self.k = k
    
        self.kgram = make_kgram(self.corpus, k=self.k)
        self.tagged_corpus = tag_corpus(mycorp)
        self.term_rules = make_terminal_rules(self.tagged_corpus)
    
    def generate():
        return None